Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] [WIP] Python 3.8
@ 2019-10-19 15:16 voidlinux-github
  2019-10-19 15:23 ` voidlinux-github
                   ` (32 more replies)
  0 siblings, 33 replies; 34+ messages in thread
From: voidlinux-github @ 2019-10-19 15:16 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 930 bytes --]

There is a new pull request by leahneukirchen against master on the void-packages repository

https://github.com/leahneukirchen/void-packages python38
https://github.com/void-linux/void-packages/pull/15623

[WIP] Python 3.8
This huge PR tries to bump all packages that either shlib-require
libpython3.6m.so.1.0 or put files into /usr/lib/python3.6/site-packages.

Broken packages (on x86_64):

- [ ] attic -> upstream dead, remove?
- [ ] blender -> update to 2.80
- [ ] eolie
- [ ] fontforge
- [ ] freecad
- [ ] gst1-python
- [ ] libopenshot
- [ ] libpeas
- [ ] nagstamon
- [ ] paraview
- [ ] pockyt
- [ ] scudcloud
- [ ] torbrowser-launcher
- [ ] unknown-horizons
- [ ] vapoursynth
- [ ] variety
- [ ] kdevelop-python
- [ ] krita: SHA256 mismatch
- [ ] shiboken
- [ ] renderdoc

Untested:

- [ ] libreoffice


A patch file from https://github.com/void-linux/void-packages/pull/15623.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python38-15623.patch --]
[-- Type: text/x-diff, Size: 611192 bytes --]

From 9907b26ec9aacb2c9c990c665c32502ef0f7c808 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:06:59 +0200
Subject: [PATCH 001/865] python3: update to 3.8.0.

---
 common/shlibs                                 |  3 ++-
 .../python3/patches/fix-xattrs-glibc.patch    | 13 ----------
 srcpkgs/python3/patches/libressl-2.6.patch    | 26 -------------------
 srcpkgs/python3/template                      | 23 ++++++++--------
 4 files changed, 13 insertions(+), 52 deletions(-)
 delete mode 100644 srcpkgs/python3/patches/fix-xattrs-glibc.patch
 delete mode 100644 srcpkgs/python3/patches/libressl-2.6.patch

diff --git a/common/shlibs b/common/shlibs
index cc3fd8383d8..f5133935773 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1698,8 +1698,9 @@ libefiboot.so.1 libefivar-31_1
 libportaudio.so.2 portaudio-19.20140130_1
 libportaudiocpp.so.0 portaudio-cpp-19.20140130_1
 libdar.so.5000 libdar-2.4.14_1
-libpython3.so python3-3.6.2_1
 libpython3.6m.so.1.0 python3-3.6.2_1
+libpython3.so python3-3.8.0_1
+libpython3.8.so.1.0 python3-3.8.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.25.28_1
diff --git a/srcpkgs/python3/patches/fix-xattrs-glibc.patch b/srcpkgs/python3/patches/fix-xattrs-glibc.patch
deleted file mode 100644
index 909901293d5..00000000000
--- a/srcpkgs/python3/patches/fix-xattrs-glibc.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- Modules/posixmodule.c.orig
-+++ Modules/posixmodule.c
-@@ -103,8 +103,9 @@ corresponding Unix manual entries for more information on calls.");
- #undef HAVE_SCHED_SETAFFINITY
- #endif
- 
--#if defined(HAVE_SYS_XATTR_H) && defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
-+#if defined(HAVE_SYS_XATTR_H) && defined(__linux__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
- #define USE_XATTRS
-+#include <linux/limits.h>
- #endif
- 
- #ifdef USE_XATTRS
diff --git a/srcpkgs/python3/patches/libressl-2.6.patch b/srcpkgs/python3/patches/libressl-2.6.patch
deleted file mode 100644
index 92dcf1ef06e..00000000000
--- a/srcpkgs/python3/patches/libressl-2.6.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-https://github.com/python/cpython/pull/4930
-
---- Lib/test/test_ssl.py.orig
-+++ Lib/test/test_ssl.py
-@@ -29,6 +29,12 @@
- PROTOCOLS = sorted(ssl._PROTOCOL_NAMES)
- HOST = support.HOST
- IS_LIBRESSL = ssl.OPENSSL_VERSION.startswith('LibreSSL')
-+if IS_LIBRESSL:
-+    LIBRESSL_VERSION = tuple(
-+        int(s) for s in ssl.OPENSSL_VERSION.rsplit(' ')[-1].split('.')
-+    )
-+else:
-+    LIBRESSL_VERSION = ()
- IS_OPENSSL_1_1 = not IS_LIBRESSL and ssl.OPENSSL_VERSION_INFO >= (1, 1, 0)
- 
- 
-@@ -3392,6 +3398,8 @@ def test_selected_npn_protocol(self):
-                                        chatty=True, connectionchatty=True)
-             self.assertIs(stats['client_npn_protocol'], None)
- 
-+        @unittest.skipIf(IS_LIBRESSL and LIBRESSL_VERSION >= (2, 6, 1),
-+                         "LibreSSL 2.6.1+ has broken NPN support")
-         @unittest.skipUnless(ssl.HAS_NPN, "NPN support needed for this test")
-         def test_npn_protocols(self):
-             server_protocols = ['http/1.1', 'spdy/2']
diff --git a/srcpkgs/python3/template b/srcpkgs/python3/template
index 60bd4411ba8..b03a59beea8 100644
--- a/srcpkgs/python3/template
+++ b/srcpkgs/python3/template
@@ -3,7 +3,7 @@
 # THIS PKG MUST BE SYNCHRONIZED WITH "srcpkgs/python3-tkinter".
 #
 pkgname=python3
-version=3.6.9
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 short_desc="Interpreted, interactive, object-oriented programming language (${version%.*} series)"
@@ -11,7 +11,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=5e2f5f554e3f8f7f0296f7e73d8600c4e9acbaee6b2555b83206edf5153870da
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pycompile_dirs="usr/lib/python${version%.*}"
 hostmakedepends="pkg-config"
@@ -27,8 +27,7 @@ alternatives="
  python:python.1:/usr/share/man/man1/python${version%.*}.1"
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,13 +71,13 @@ do_install() {
 	rm -rf ${DESTDIR}/usr/lib/python${version%.*}/lib2to3/tests
 	# Remove references to the install(1) wrapper.
 	sed -e "s,${XBPS_WRAPPERDIR},/usr/bin,g" -i \
-		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/Makefile
 	if [ "$CROSS_BUILD" ]; then
 		# Remove references to cross toolchain.
 		sed -i "s/$XBPS_CROSS_TRIPLET-//g" \
-			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}/Makefile
 	fi
 }
 
@@ -89,10 +88,10 @@ python3-devel_package() {
 		vmove usr/bin/python*-config
 		vmove usr/lib/pkgconfig
 		vmove usr/include
-		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/libpython${version%.*}m.a \
+		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/libpython${version%.*}*.a \
 			${PKGDESTDIR}/usr/lib
-		mkdir -p ${DESTDIR}/usr/include/python${version%.*}m
-		mv ${PKGDESTDIR}/usr/include/python${version%.*}m/pyconfig.h \
-			${DESTDIR}/usr/include/python${version%.*}m
+		mkdir -p ${DESTDIR}/usr/include/python${version%.*}
+		mv ${PKGDESTDIR}/usr/include/python${version%.*}/pyconfig.h \
+			${DESTDIR}/usr/include/python${version%.*}
 	}
 }

From 82deb1f06d09e93aabaa46495a066cec2647de81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 17:09:57 +0200
Subject: [PATCH 002/865] python3-tkinter: update to 3.8.0.

---
 srcpkgs/python3-tkinter/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template
index 83906219af8..874be51ebdf 100644
--- a/srcpkgs/python3-tkinter/template
+++ b/srcpkgs/python3-tkinter/template
@@ -7,7 +7,7 @@
 _desc="Interpreted, interactive, object-oriented programming language"
 
 pkgname=python3-tkinter
-version=3.6.8
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 pycompile_dirs="
@@ -22,11 +22,10 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=35446241e995773b1bed7d196f4b624dadcadc8429f26282e756b2fb8a351193
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used.
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used.
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,7 +71,7 @@ do_install() {
 		mv ${wrksrc}/${pkgname}-${version}-install/usr/lib/python${version%.*}/${lib} \
 			${DESTDIR}/usr/lib/python${version%.*}/
 	done
-	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*m*.so \
+	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*.so \
 		${DESTDIR}/usr/lib/python${version%.*}/lib-dynload/
 	ln -sf idle${version%.*} ${DESTDIR}/usr/bin/idle3
 }

From 8bb33f77d591103b56f40685a4b61f57b43219cd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:42:15 +0200
Subject: [PATCH 003/865] common/environment/setup/python.sh: update to Python
 3.8.

---
 common/build-style/python-module.sh | 14 ++++----------
 common/environment/setup/python.sh  |  4 ++--
 2 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/common/build-style/python-module.sh b/common/build-style/python-module.sh
index da6ed586cff..ff8f107745f 100644
--- a/common/build-style/python-module.sh
+++ b/common/build-style/python-module.sh
@@ -4,7 +4,7 @@
 
 do_build() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
+	local pyver= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
@@ -12,10 +12,7 @@ do_build() {
 			LDFLAGS="$tmp_ldflags"
 
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
@@ -49,15 +46,12 @@ do_check() {
 
 do_install() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx=
+	local pyver=
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
diff --git a/common/environment/setup/python.sh b/common/environment/setup/python.sh
index d1f4d49a10a..ba181d45361 100644
--- a/common/environment/setup/python.sh
+++ b/common/environment/setup/python.sh
@@ -10,8 +10,8 @@ py2_lib="/usr/lib/python${py2_ver}"
 py2_sitelib="${py2_lib}/site-packages"
 py2_inc="/usr/include/python${py2_ver}"
 
-py3_ver="3.6"
-py3_abiver="m"
+py3_ver="3.8"
+py3_abiver=""
 py3_lib="/usr/lib/python${py3_ver}"
 py3_sitelib="${py3_lib}/site-packages"
 py3_inc="/usr/include/python${py3_ver}${py3_abiver}"

From 75fdcb94c7c7be7dc2c232d271de721d74dc1a6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 004/865] python3-3to2: rebuild for Python 3.8.

---
 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 b6ab94fe7c9..38558f1fcff 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=1
+revision=2
 archs=noarch
 wrksrc="3to2-${version}"
 build_style=python3-module

From 043957a8bcc69ef2ef270f7acd2753a544054759 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 005/865] python-Arrow: rebuild for Python 3.8.

---
 srcpkgs/python-Arrow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Arrow/template b/srcpkgs/python-Arrow/template
index 456e3776188..a3785d60075 100644
--- a/srcpkgs/python-Arrow/template
+++ b/srcpkgs/python-Arrow/template
@@ -2,7 +2,7 @@
 pkgname=python-Arrow
 reverts=0.13.1_1
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="arrow-${version}"
 build_style=python-module

From 5d1bc07743d348083ebd7dfbd1a4ece4913e6a70 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 006/865] python-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Babel/template b/srcpkgs/python-Babel/template
index 34d7a7728ce..619ae432ba4 100644
--- a/srcpkgs/python-Babel/template
+++ b/srcpkgs/python-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Babel'
 pkgname=python-Babel
 version=2.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38e28e565317345549892f5b8da9e3ab1cc3d513 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 007/865] python-BeautifulSoup4: rebuild for Python 3.8.

---
 srcpkgs/python-BeautifulSoup4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-BeautifulSoup4/template b/srcpkgs/python-BeautifulSoup4/template
index 70e4f8a58da..1f6074230c2 100644
--- a/srcpkgs/python-BeautifulSoup4/template
+++ b/srcpkgs/python-BeautifulSoup4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-BeautifulSoup4'
 pkgname=python-BeautifulSoup4
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="beautifulsoup4-${version}"
 build_style=python-module

From 193dc4fe709e1bccd18b84a58f880fde1e4394e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 008/865] python-Bottleneck: rebuild for Python 3.8.

---
 srcpkgs/python-Bottleneck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Bottleneck/template b/srcpkgs/python-Bottleneck/template
index 0c308d5dbb5..28195e99bca 100644
--- a/srcpkgs/python-Bottleneck/template
+++ b/srcpkgs/python-Bottleneck/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Bottleneck'
 pkgname=python-Bottleneck
 version=1.2.1
-revision=4
+revision=5
 wrksrc="Bottleneck-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ff4c422045070300d874353cc6c9750143422e2b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 009/865] python-Cheroot: rebuild for Python 3.8.

---
 srcpkgs/python-Cheroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Cheroot/template b/srcpkgs/python-Cheroot/template
index fcfdf76e69d..7a5375258f4 100644
--- a/srcpkgs/python-Cheroot/template
+++ b/srcpkgs/python-Cheroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Cheroot'
 pkgname=python-Cheroot
 version=8.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cheroot-${version}"
 build_style=python-module

From 6eb51b02b428d8054b1d3a3aa21e6bdcde31cf9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 010/865] python3-CherryPy: rebuild for Python 3.8.

---
 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 b78c01eba2c..450e5791508 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.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python3-module

From 8522b77c798415c2f59fc3b26adc757f66aa0fa7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 011/865] python-ConfigArgParse: rebuild for Python 3.8.

---
 srcpkgs/python-ConfigArgParse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ConfigArgParse/template b/srcpkgs/python-ConfigArgParse/template
index c9a00a04508..d90ca739aee 100644
--- a/srcpkgs/python-ConfigArgParse/template
+++ b/srcpkgs/python-ConfigArgParse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ConfigArgParse'
 pkgname=python-ConfigArgParse
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ConfigArgParse-${version}"
 build_style=python-module

From 3dcbda27301f3e918539317bc411ff556115ef1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 012/865] python-Cython: rebuild for Python 3.8.

---
 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 dc39d54e9c2..675160b3744 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.13
-revision=1
+revision=2
 wrksrc="Cython-${version}"
 build_style=python-module
 pycompile_module="Cython pyximport cython.py"

From 7c69ef59e0a628c13ece955c9f7322631824adca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 013/865] python-Django: rebuild for Python 3.8.

---
 srcpkgs/python-Django/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Django/template b/srcpkgs/python-Django/template
index 21aa405fba1..65a98e41032 100644
--- a/srcpkgs/python-Django/template
+++ b/srcpkgs/python-Django/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Django'
 pkgname=python-Django
 version=1.11.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="Django-${version}"
 build_style=python-module

From 33b250adb0abf2e46663f0a05749097633fce228 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 014/865] python-Flask: rebuild for Python 3.8.

---
 srcpkgs/python-Flask/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask/template b/srcpkgs/python-Flask/template
index 149a76c077e..b75b306701b 100644
--- a/srcpkgs/python-Flask/template
+++ b/srcpkgs/python-Flask/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask'
 pkgname=python-Flask
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9167e534992bd8d17a79a70e22a3b06c68c9762b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 015/865] python-Flask-Assets: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Assets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Assets/template b/srcpkgs/python-Flask-Assets/template
index 339f629f77a..eb81201396b 100644
--- a/srcpkgs/python-Flask-Assets/template
+++ b/srcpkgs/python-Flask-Assets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Assets'
 pkgname=python-Flask-Assets
 version=0.12
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c65d524eb8ee83f7c8eae3ca16878857a374e06c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 016/865] python-Flask-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Babel/template b/srcpkgs/python-Flask-Babel/template
index 3028d15d7bd..b3cc35f230e 100644
--- a/srcpkgs/python-Flask-Babel/template
+++ b/srcpkgs/python-Flask-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Babel'
 pkgname=python-Flask-Babel
 version=0.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From d52f7742820844af3ec25f4b6d4d6d58b19ad722 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 017/865] python-Flask-Login: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Login/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Login/template b/srcpkgs/python-Flask-Login/template
index 8fecf240963..ccaab92d857 100644
--- a/srcpkgs/python-Flask-Login/template
+++ b/srcpkgs/python-Flask-Login/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Login'
 pkgname=python-Flask-Login
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 112c53663ece086d477e4d4fcbc667ae6a2fb518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 018/865] python-Flask-OAuthlib: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-OAuthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-OAuthlib/template b/srcpkgs/python-Flask-OAuthlib/template
index d53157e37b2..958f05a836c 100644
--- a/srcpkgs/python-Flask-OAuthlib/template
+++ b/srcpkgs/python-Flask-OAuthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-OAuthlib'
 pkgname=python-Flask-OAuthlib
 version=0.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From aca82b53b5330ee4a154f2246569006b2d3a38c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 019/865] python3-Flask-RESTful: rebuild for Python 3.8.

---
 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 d0ed467f666..5a05eed0e93 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.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="flask-restful-${version}"
 build_style=python3-module

From 3121295fb06a2b12c0e42b9a6412c1fa52bb86fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 020/865] python-Flask-Script: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Script/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Script/template b/srcpkgs/python-Flask-Script/template
index 19d13887b8e..41312eae57f 100644
--- a/srcpkgs/python-Flask-Script/template
+++ b/srcpkgs/python-Flask-Script/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Script'
 pkgname=python-Flask-Script
 version=2.0.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From cfadd6a4c47e4e611c9d739113006da88f9cb8e7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 021/865] python-Flask-WTF: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-WTF/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-WTF/template b/srcpkgs/python-Flask-WTF/template
index 8edb1d39e35..b2be1e630fb 100644
--- a/srcpkgs/python-Flask-WTF/template
+++ b/srcpkgs/python-Flask-WTF/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-WTF'
 pkgname=python-Flask-WTF
 version=0.14.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 11896d4bd9e1767f6ad8b10e737f0e6a0f5df44f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 022/865] python-GitPython: rebuild for Python 3.8.

---
 srcpkgs/python-GitPython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-GitPython/template b/srcpkgs/python-GitPython/template
index 0edb43cc811..232429265f1 100644
--- a/srcpkgs/python-GitPython/template
+++ b/srcpkgs/python-GitPython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-GitPython'
 pkgname=python-GitPython
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="GitPython-${version}"
 build_style=python-module

From 7008fe32294cead7ef25084a09f874e87cad05e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 023/865] python-IPy: rebuild for Python 3.8.

---
 srcpkgs/python-IPy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-IPy/template b/srcpkgs/python-IPy/template
index d28276383ce..aaae9fcd002 100644
--- a/srcpkgs/python-IPy/template
+++ b/srcpkgs/python-IPy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-IPy'
 pkgname=python-IPy
 version=1.00
-revision=1
+revision=2
 archs=noarch
 wrksrc="IPy-${version}"
 build_style=python-module

From 4ee5b9129c818c4db475e75f899f1f21eb9c312c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 024/865] python3-Inflector: rebuild for Python 3.8.

---
 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 1bfe9ccef7c..e9ee0ffe8d1 100644
--- a/srcpkgs/python3-Inflector/template
+++ b/srcpkgs/python3-Inflector/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-Inflector'
 pkgname=python3-Inflector
 version=2.0.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="Inflector-${version}"
 build_style=python3-module

From 631236d908cbeed8345c2fb159c73e7c54fe1571 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 025/865] python-Jinja2: rebuild for Python 3.8.

---
 srcpkgs/python-Jinja2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Jinja2/template b/srcpkgs/python-Jinja2/template
index c67e6f47f06..3fcd44dc198 100644
--- a/srcpkgs/python-Jinja2/template
+++ b/srcpkgs/python-Jinja2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Jinja2'
 pkgname=python-Jinja2
 version=2.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Jinja2-${version}"
 build_style=python-module

From 3a7808b9f47226adec7dd1e59bef222cf38d7e9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 026/865] python-Levenshtein: rebuild for Python 3.8.

---
 srcpkgs/python-Levenshtein/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Levenshtein/template b/srcpkgs/python-Levenshtein/template
index 26f57d90e70..7d97147ccc8 100644
--- a/srcpkgs/python-Levenshtein/template
+++ b/srcpkgs/python-Levenshtein/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Levenshtein'
 pkgname=python-Levenshtein
 version=0.12.0
-revision=2
+revision=3
 build_style=python-module
 pycompile_module="Levenshtein"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"

From 6d2a898ccc971553cf9dab7239daf8d626350b19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 027/865] python-M2Crypto: rebuild for Python 3.8.

---
 srcpkgs/python-M2Crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-M2Crypto/template b/srcpkgs/python-M2Crypto/template
index 102dbb7261e..6febd5a9ea1 100644
--- a/srcpkgs/python-M2Crypto/template
+++ b/srcpkgs/python-M2Crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-M2Crypto'
 pkgname=python-M2Crypto
 version=0.35.2
-revision=1
+revision=2
 wrksrc="M2Crypto-${version}"
 build_style=python-module
 pycompile_module="M2Crypto"

From 3597aa866d7cb1ff4d5316a0cfe52c8aa8ab717c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 028/865] python-Mako: rebuild for Python 3.8.

---
 srcpkgs/python-Mako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Mako/template b/srcpkgs/python-Mako/template
index e5c3c76170c..f0184179b83 100644
--- a/srcpkgs/python-Mako/template
+++ b/srcpkgs/python-Mako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Mako'
 pkgname=python-Mako
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Mako-${version}"
 build_style=python-module

From 164d5bbfa645fb7b1ddbfbccebb7b85e407c578f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 029/865] python-Markdown: rebuild for Python 3.8.

---
 srcpkgs/python-Markdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markdown/template b/srcpkgs/python-Markdown/template
index 935dcc12bca..03a0d18e23b 100644
--- a/srcpkgs/python-Markdown/template
+++ b/srcpkgs/python-Markdown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markdown'
 pkgname=python-Markdown
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python-module

From c5fcb10688938a17e3acb9f9c630c300f5fe9672 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 030/865] python-MarkupSafe: rebuild for Python 3.8.

---
 srcpkgs/python-MarkupSafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MarkupSafe/template b/srcpkgs/python-MarkupSafe/template
index c12dbb7e656..ae22857aa7a 100644
--- a/srcpkgs/python-MarkupSafe/template
+++ b/srcpkgs/python-MarkupSafe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MarkupSafe'
 pkgname=python-MarkupSafe
 version=1.1.1
-revision=1
+revision=2
 wrksrc="MarkupSafe-${version}"
 build_style=python-module
 pycompile_module="markupsafe"

From b7a4bc0f45110c5c3bd019a437078724336d1888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 031/865] python-Markups: rebuild for Python 3.8.

---
 srcpkgs/python-Markups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markups/template b/srcpkgs/python-Markups/template
index d4817feb430..02ba25ee05c 100644
--- a/srcpkgs/python-Markups/template
+++ b/srcpkgs/python-Markups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markups'
 pkgname=python-Markups
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markups-${version}"
 build_style=python-module

From af8fe2e4b17c908737f599cc43d860493f7da689 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 032/865] python3-MechanicalSoup: rebuild for Python 3.8.

---
 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 b1bbfa4184c..5a3b0b3eb03 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=1
+revision=2
 archs=noarch
 wrksrc=MechanicalSoup-${version}
 build_style=python3-module

From 4d05157344a63fb3d617b00a4268732231187cb4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 033/865] python-MiniMock: rebuild for Python 3.8.

---
 srcpkgs/python-MiniMock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MiniMock/template b/srcpkgs/python-MiniMock/template
index 38c0723f374..8b8c4f5f1e6 100644
--- a/srcpkgs/python-MiniMock/template
+++ b/srcpkgs/python-MiniMock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MiniMock'
 pkgname=python-MiniMock
 version=1.2.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 25b62a34488966009bf8450b60653f01872e2310 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 034/865] python-Pillow: rebuild for Python 3.8.

---
 srcpkgs/python-Pillow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pillow/template b/srcpkgs/python-Pillow/template
index e43d22b8f62..f1791b46d79 100644
--- a/srcpkgs/python-Pillow/template
+++ b/srcpkgs/python-Pillow/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pillow'
 pkgname=python-Pillow
 version=6.2.0
-revision=1
+revision=2
 wrksrc="Pillow-${version}"
 build_style=python-module
 pycompile_module="PIL"

From f79ffe3fe477b7fff206250125a96da96c80c086 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 035/865] python-PyAudio: rebuild for Python 3.8.

---
 srcpkgs/python-PyAudio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyAudio/template b/srcpkgs/python-PyAudio/template
index 5c3286caae0..2e84cf5cc8f 100644
--- a/srcpkgs/python-PyAudio/template
+++ b/srcpkgs/python-PyAudio/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyAudio'
 pkgname=python-PyAudio
 version=0.2.11
-revision=2
+revision=3
 wrksrc="PyAudio-${version}"
 build_style=python-module
 pycompile_module="pyaudio.py"

From 11c99c939a4791ec394842255e6aac23eaae5920 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 036/865] python3-PyBrowserID: rebuild for Python 3.8.

---
 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 abec9dac54e..eefd0175f1b 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=2
+revision=3
 archs=noarch
 wrksrc="PyBrowserID-${version}"
 build_style=python3-module

From d49beb289c07b8d33e8e2f286e068c0e8b3fe4b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 037/865] python3-PyFxA: rebuild for Python 3.8.

---
 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 31175c92435..6fc6791efdd 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=1
+revision=2
 archs=noarch
 wrksrc="PyFxA-${version}"
 build_style=python3-module

From d0eb109c7435d396e67de8f37a376ca0a2958d93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 038/865] python-PyHamcrest: rebuild for Python 3.8.

---
 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 61078241d8a..48f001595aa 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=1
+revision=2
 archs=noarch
 wrksrc="PyHamcrest-${version}"
 build_style=python-module

From 4afc9e488b53ee7025095fe93072953c256fc630 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 039/865] python-PyICU: rebuild for Python 3.8.

---
 srcpkgs/python-PyICU/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyICU/template b/srcpkgs/python-PyICU/template
index be4aaf88639..aab2934cbbd 100644
--- a/srcpkgs/python-PyICU/template
+++ b/srcpkgs/python-PyICU/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyICU'
 pkgname=python-PyICU
 version=2.3.1
-revision=2
+revision=3
 wrksrc="PyICU-${version}"
 build_style=python-module
 pycompile_module="icu PyICU.py"

From a0c3f96b4df2b1efda070832287f3728314c717a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 040/865] python3-PyJWT: rebuild for Python 3.8.

---
 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 6f0830125c1..bf1dda0753e 100644
--- a/srcpkgs/python3-PyJWT/template
+++ b/srcpkgs/python3-PyJWT/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-PyJWT'
 pkgname=python3-PyJWT
 version=1.7.1
-revision=1
+revision=2
 wrksrc="PyJWT-${version}"
 build_style=python3-module
 pycompile_module="PyJWT.py"

From 0355fd4b78af7fbf4ffad4b12dc8e153b70d703d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 041/865] python-PyOpenGL: rebuild for Python 3.8.

---
 srcpkgs/python-PyOpenGL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyOpenGL/template b/srcpkgs/python-PyOpenGL/template
index ec08e0bd667..eafc3be1210 100644
--- a/srcpkgs/python-PyOpenGL/template
+++ b/srcpkgs/python-PyOpenGL/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL'
 pkgname=python-PyOpenGL
 version=3.1.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="PyOpenGL-${version}"
 build_style=python-module

From 1a8da5c4a7dbf53ec6c03efd5387e02d2b0be720 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 17:15:54 +0200
Subject: [PATCH 042/865] python-PyOpenGL-accelerate: update to 3.1.3b1.

---
 srcpkgs/python-PyOpenGL-accelerate/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python-PyOpenGL-accelerate/template b/srcpkgs/python-PyOpenGL-accelerate/template
index 25d84abffcb..5d16a82b845 100644
--- a/srcpkgs/python-PyOpenGL-accelerate/template
+++ b/srcpkgs/python-PyOpenGL-accelerate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL-accelerate'
 pkgname=python-PyOpenGL-accelerate
-version=3.1.0
-revision=5
+version=3.1.3b1
+revision=1
 wrksrc="PyOpenGL-accelerate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"
@@ -9,10 +9,10 @@ makedepends="python-devel python3-devel python-numpy python3-numpy"
 depends="python-numpy"
 short_desc="Acceleration code for PyOpenGL (Python2)"
 maintainer="Alain Kalker <a.c.kalker@gmail.com>"
-license="3-clause-BSD"
+license="BSD-3-Clause"
 homepage="http://pyopengl.sourceforge.net/"
 distfiles="${PYPI_SITE}/P/PyOpenGL-accelerate/PyOpenGL-accelerate-${version}.tar.gz"
-checksum=927f4670b893d46e2f6273ae938bf0a1db27ffae3336eba94813ccef6260c410
+checksum=e687eea7e006d65f531933b49b3b3d2feaaf51279147a904247f9d189762a36f
 
 post_install() {
 	vlicense license.txt LICENSE

From 2f6b6f2c3880b16991df568d3ac18efca5c970c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 043/865] python-PyQt5: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5/template b/srcpkgs/python-PyQt5/template
index 6534d4e22e6..9eba20dc514 100644
--- a/srcpkgs/python-PyQt5/template
+++ b/srcpkgs/python-PyQt5/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5'
 pkgname=python-PyQt5
 version=5.13.0
-revision=1
+revision=2
 _sipver=4.19.18
 lib32disabled=yes
 wrksrc="PyQt5_gpl-${version}"

From cf20a1f23e0c305d2e9672610364b2fd4f566695 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 044/865] python-PyQt5-webengine: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5-webengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5-webengine/template b/srcpkgs/python-PyQt5-webengine/template
index 996ef6b00e2..af7162d20cb 100644
--- a/srcpkgs/python-PyQt5-webengine/template
+++ b/srcpkgs/python-PyQt5-webengine/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5-webengine'
 pkgname=python-PyQt5-webengine
 version=5.13.0
-revision=1
+revision=2
 wrksrc="PyQtWebEngine_gpl-${version}"
 pycompile_module="PyQt5WebEngine"
 hostmakedepends="pkg-config qt5-qmake

From 84502fbd3a591ad0db01072998b5a2b3fcfcf192 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 045/865] python-Pygments: rebuild for Python 3.8.

---
 srcpkgs/python-Pygments/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pygments/template b/srcpkgs/python-Pygments/template
index f5a72ca6cea..8d2214a6bfc 100644
--- a/srcpkgs/python-Pygments/template
+++ b/srcpkgs/python-Pygments/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pygments'
 pkgname=python-Pygments
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Pygments-${version}"
 build_style=python-module

From ef2467b2248b773e2d940058876cf81a2b935043 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 046/865] python-Pyro4: rebuild for Python 3.8.

---
 srcpkgs/python-Pyro4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pyro4/template b/srcpkgs/python-Pyro4/template
index d8925aa141f..0417e9f6a8a 100644
--- a/srcpkgs/python-Pyro4/template
+++ b/srcpkgs/python-Pyro4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pyro4'
 pkgname=python-Pyro4
 version=4.75
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a80785231122d63ad91b973744bf59b0a1b59506 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 047/865] python3-ReParser: rebuild for Python 3.8.

---
 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 5e7b5de3790..5959de9d0e3 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=1
+revision=2
 archs=noarch
 wrksrc=ReParser-${version}
 build_style=python3-module

From 543272b7ff22e6f0642d879c60f19717643fec8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 048/865] python-SPARQLWrapper: rebuild for Python 3.8.

---
 srcpkgs/python-SPARQLWrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-SPARQLWrapper/template b/srcpkgs/python-SPARQLWrapper/template
index d014eb8aab4..8d2db9a02b3 100644
--- a/srcpkgs/python-SPARQLWrapper/template
+++ b/srcpkgs/python-SPARQLWrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'python-SPARQLWrapper'
 pkgname=python-SPARQLWrapper
 version=1.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a01a9e6bc3bd9fddfdd13341f78e625b063be5c8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 049/865] python-SQLAlchemy: rebuild for Python 3.8.

---
 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 7b529ade621..110430ff9f5 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.8
-revision=1
+revision=2
 wrksrc="SQLAlchemy-${version}"
 build_style=python-module
 pycompile_module="sqlalchemy"

From 46382571cad86b54ca46e129f7c2988772d0a48e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 050/865] python3-SecretStorage: rebuild for Python 3.8.

---
 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 8df813ad247..b19d4865f7e 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.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="SecretStorage-${version}"
 build_style=python3-module

From c79427640956f1961211ce3322c3811958e0f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 051/865] python3-SoCo: rebuild for Python 3.8.

---
 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 f0ac9825f57..01ebbeff15a 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="SoCo-${version}"
 build_style=python3-module

From 20a1ac5477ca4a76e0257e06bf6f353835eac7bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 052/865] python-Sphinx: rebuild for Python 3.8.

---
 srcpkgs/python-Sphinx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Sphinx/template b/srcpkgs/python-Sphinx/template
index e70dc9b238e..42969925f9e 100644
--- a/srcpkgs/python-Sphinx/template
+++ b/srcpkgs/python-Sphinx/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Sphinx'
 pkgname=python-Sphinx
 version=1.8.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="Sphinx-${version}"
 build_style=python-module

From 863c01ff80faa4de651a55ba2a354f8da5e6b025 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 053/865] python3-Telethon: rebuild for Python 3.8.

---
 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 b0786559591..d0fa8e34d3f 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.10.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="Telethon-${version}"
 build_style=python3-module

From efc9766b9866c660a4cb508c49be4df48f1e5809 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 054/865] python-Twisted: rebuild for Python 3.8.

---
 srcpkgs/python-Twisted/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Twisted/template b/srcpkgs/python-Twisted/template
index 519a1e251a9..e94e0edf26e 100644
--- a/srcpkgs/python-Twisted/template
+++ b/srcpkgs/python-Twisted/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Twisted'
 pkgname=python-Twisted
 version=18.9.0
-revision=3
+revision=4
 wrksrc="Twisted-${version}"
 build_style=python-module
 pycompile_module="twisted"

From 5fd974f3940d5ee91fe712fef2e93ce539743b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 055/865] python3-TxSNI: rebuild for Python 3.8.

---
 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 403010da5be..d9d7c2a0c83 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.1.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="TxSNI-${version}"
 build_style=python3-module

From 559184031fe43c0ff648fb7fab55ede08fff2c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 056/865] python-Unidecode: rebuild for Python 3.8.

---
 srcpkgs/python-Unidecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Unidecode/template b/srcpkgs/python-Unidecode/template
index 035c5d846be..444eb1427d6 100644
--- a/srcpkgs/python-Unidecode/template
+++ b/srcpkgs/python-Unidecode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Unidecode'
 pkgname=python-Unidecode
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Unidecode-${version}"
 build_style=python-module

From 07f0904b4cb8f2de0b7bc39c0ca28d225c91257d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 057/865] python-WTForms: rebuild for Python 3.8.

---
 srcpkgs/python-WTForms/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-WTForms/template b/srcpkgs/python-WTForms/template
index 06af2366050..98dff7d092f 100644
--- a/srcpkgs/python-WTForms/template
+++ b/srcpkgs/python-WTForms/template
@@ -1,7 +1,7 @@
 # Template file for 'python-WTForms'
 pkgname=python-WTForms
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="WTForms-${version}"
 build_style=python-module

From ec81beba1921fe189a8dd80810da306514a86c1a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 058/865] python3-WebOb: rebuild for Python 3.8.

---
 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 c360542a1f2..53e63879f2c 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=1
+revision=2
 archs=noarch
 wrksrc="WebOb-${version}"
 build_style=python3-module

From 0b7a4a756b3ead4c188a3819311c4471c1b0a21c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 059/865] python-Werkzeug: rebuild for Python 3.8.

---
 srcpkgs/python-Werkzeug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Werkzeug/template b/srcpkgs/python-Werkzeug/template
index 24fff62f1ae..1ca303822e8 100644
--- a/srcpkgs/python-Werkzeug/template
+++ b/srcpkgs/python-Werkzeug/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Werkzeug'
 pkgname=python-Werkzeug
 version=0.15.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c530a6e11127606a3b29b73da4cb31f010d97b5c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 060/865] python-Whoosh: rebuild for Python 3.8.

---
 srcpkgs/python-Whoosh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Whoosh/template b/srcpkgs/python-Whoosh/template
index f2118ed0af2..66856b206a7 100644
--- a/srcpkgs/python-Whoosh/template
+++ b/srcpkgs/python-Whoosh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-whoosh'
 pkgname=python-Whoosh
 version=2.7.4
-revision=1
+revision=2
 wrksrc="Whoosh-${version}"
 archs=noarch
 build_style=python-module

From 3e3ad6526265ded86e6e1b5539061302a3890381 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 061/865] python3-XlsxWriter: rebuild for Python 3.8.

---
 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 ea68ced9a03..b991457e01e 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.1.8
-revision=1
+revision=2
 archs="noarch"
 wrksrc="XlsxWriter-RELEASE_${version}"
 build_style=python3-module

From ed808be70fb42a5a7e827e43a5d8a9954d85823a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 062/865] python-Yapsy: rebuild for Python 3.8.

---
 srcpkgs/python-Yapsy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Yapsy/template b/srcpkgs/python-Yapsy/template
index 9f79423f91d..5ad8b234f5d 100644
--- a/srcpkgs/python-Yapsy/template
+++ b/srcpkgs/python-Yapsy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Yapsy'
 pkgname=python-Yapsy
 version=1.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Yapsy-${version}"
 build_style=python-module

From ef3f8b60f72752d3ec1c7676df4597cc6cfdfb42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 063/865] python-aalib: rebuild for Python 3.8.

---
 srcpkgs/python-aalib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-aalib/template b/srcpkgs/python-aalib/template
index 349b8407343..f9621a9c8dc 100644
--- a/srcpkgs/python-aalib/template
+++ b/srcpkgs/python-aalib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-aalib'
 pkgname=python-aalib
 version=0.3.2
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="aalib.py"
 hostmakedepends="python-setuptools python3-setuptools"

From 1aee008231a9354b62bbf679e89e620deeba0d34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 064/865] python3-acme: rebuild for Python 3.8.

---
 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 d7ef20f2301..844dde9c814 100644
--- a/srcpkgs/python3-acme/template
+++ b/srcpkgs/python3-acme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-acme'
 pkgname=python3-acme
 version=0.39.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="acme-${version}"
 build_style=python3-module

From 877668118087bb2d0bd4b8ebf34db7c6c4308c31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 065/865] python3-aiodns: rebuild for Python 3.8.

---
 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 cca9f45dbf5..8e06ea6e614 100644
--- a/srcpkgs/python3-aiodns/template
+++ b/srcpkgs/python3-aiodns/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiodns'
 pkgname=python3-aiodns
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiodns-${version}"
 build_style=python3-module

From de87766918ac8688cf8992433b56e9b1ad222108 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 066/865] python3-aiohttp: rebuild for Python 3.8.

---
 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 fbe98e07b2b..67e450e6aab 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.5.4
-revision=3
+revision=4
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 0c2d285f8d7edc438e657ec9bc4a2b16982a4a57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 067/865] python3-aiohttp-cors: rebuild for Python 3.8.

---
 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 8a643ca1797..b621716e3cd 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=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 4643a6f9e03d1657e1ac2f5ca93bf616979b58de Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 068/865] python3-aiohttp-cors2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp-cors2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp-cors2/template b/srcpkgs/python3-aiohttp-cors2/template
index 7ff1206538b..f13b0598456 100644
--- a/srcpkgs/python3-aiohttp-cors2/template
+++ b/srcpkgs/python3-aiohttp-cors2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp-cors2'
 pkgname=python3-aiohttp-cors2
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 9db81023f9f60f7a78d62f9f9b8f1fa8afbb9fa8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 069/865] python3-aiohttp2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp2/template b/srcpkgs/python3-aiohttp2/template
index b570043baba..db3704b5700 100644
--- a/srcpkgs/python3-aiohttp2/template
+++ b/srcpkgs/python3-aiohttp2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp2'
 pkgname=python3-aiohttp2
 version=2.3.10
-revision=2
+revision=3
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 9bf56f834aca73a7ea8141ab0c95b4aed0d1f09a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 070/865] python3-aiohttp_socks: rebuild for Python 3.8.

---
 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 93c45ff24c4..10ab967ef76 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.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp_socks-${version}"
 build_style=python3-module

From acad4e265f43c8bc2098168adb1c0442a0c22445 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 071/865] python3-aiorpcx: rebuild for Python 3.8.

---
 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 42b6dc541bf..07922e15ccd 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.17.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiorpcX-${version}"
 build_style=python3-module

From b4945f68890b617f5b513871e533769a2149f07f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 072/865] python-alabaster: rebuild for Python 3.8.

---
 srcpkgs/python-alabaster/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alabaster/template b/srcpkgs/python-alabaster/template
index e4ece5c2991..b33009d5efb 100644
--- a/srcpkgs/python-alabaster/template
+++ b/srcpkgs/python-alabaster/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alabaster'
 pkgname=python-alabaster
 version=0.7.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="alabaster-${version}"
 build_style=python-module

From 04c416b8fb310277c61713ee1b8dd702a970240b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 073/865] python-alembic: rebuild for Python 3.8.

---
 srcpkgs/python-alembic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alembic/template b/srcpkgs/python-alembic/template
index 4011b33c0fa..aecbe10e7d0 100644
--- a/srcpkgs/python-alembic/template
+++ b/srcpkgs/python-alembic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alembic'
 pkgname=python-alembic
 version=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="alembic-${version}"
 build_style=python-module

From 5c2d4bcc3255cb59561524d151fe84b3a70e8ad4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 074/865] python3-altgraph: rebuild for Python 3.8.

---
 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 eff10f7aef4..2bf433edb6e 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.16.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="altgraph-${version}"
 build_style=python3-module

From 3c6234d42f7adffca219ea7f98f11d5283dce900 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 075/865] python3-aniso8601: rebuild for Python 3.8.

---
 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 26540bc8c3f..0253b89b5a3 100644
--- a/srcpkgs/python3-aniso8601/template
+++ b/srcpkgs/python3-aniso8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aniso8601'
 pkgname=python3-aniso8601
 version=8.0.0
-revision=1
+revision=2
 archs=noarch
 _gitver=0ec13b9d81c9
 wrksrc="nielsenb-aniso8601-${_gitver}"

From b4fecde90241517d0629d46de55f99a1ef7edbaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 076/865] python-ansicolor: rebuild for Python 3.8.

---
 srcpkgs/python-ansicolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ansicolor/template b/srcpkgs/python-ansicolor/template
index af18c5b946d..3663a82f0cc 100644
--- a/srcpkgs/python-ansicolor/template
+++ b/srcpkgs/python-ansicolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ansicolor'
 pkgname=python-ansicolor
 version=0.2.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="ansicolor-${version}"
 build_style=python-module

From 3983fbed547fd194f9eefaaf58d10c7770e27350 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 077/865] python3-anytree: rebuild for Python 3.8.

---
 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 5a37dba6581..7368754c426 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.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="anytree-${version}"
 build_style=python3-module

From 6d797f541c2cb160f9cfebd0a3e71dace50cceb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 078/865] python-appdirs: rebuild for Python 3.8.

---
 srcpkgs/python-appdirs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-appdirs/template b/srcpkgs/python-appdirs/template
index fdae1fe184b..15354ec5768 100644
--- a/srcpkgs/python-appdirs/template
+++ b/srcpkgs/python-appdirs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-appdirs'
 pkgname=python-appdirs
 version=1.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 7a7c86554157d7224efc221e706b9aebfc1ff796 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 079/865] python3-applib: rebuild for Python 3.8.

---
 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 95f589dc65a..0fb5a42e618 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=1
+revision=2
 archs=noarch
 wrksrc="applib-${version}"
 build_style=python3-module

From 642416934e5f74b49e1a38fe6e941287cbccbf83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 080/865] python-apsw: rebuild for Python 3.8.

---
 srcpkgs/python-apsw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-apsw/template b/srcpkgs/python-apsw/template
index ed47b4a7803..6146ea639db 100644
--- a/srcpkgs/python-apsw/template
+++ b/srcpkgs/python-apsw/template
@@ -3,7 +3,7 @@ pkgname=python-apsw
 _distver=3.29.0
 _patchver=r1
 version=${_distver}${_patchver}
-revision=1
+revision=2
 wrksrc="apsw-${_distver}-${_patchver}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 765bd2f2b82c6226b12a5d6bbe156b07c03a1bca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 081/865] python-argh: rebuild for Python 3.8.

---
 srcpkgs/python-argh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argh/template b/srcpkgs/python-argh/template
index 4b7aec3b525..656da441757 100644
--- a/srcpkgs/python-argh/template
+++ b/srcpkgs/python-argh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argh'
 pkgname=python-argh
 version=0.26.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="argh-${version}"
 build_style=python-module

From 1f6f709fcbb4353d419be8d129ce581747dae1ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 082/865] python-argon2: rebuild for Python 3.8.

---
 srcpkgs/python-argon2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argon2/template b/srcpkgs/python-argon2/template
index 0b4b132cddd..1b5216cc9c0 100644
--- a/srcpkgs/python-argon2/template
+++ b/srcpkgs/python-argon2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argon2'
 pkgname=python-argon2
 version=18.3.0
-revision=2
+revision=3
 wrksrc="argon2_cffi-${version}"
 build_style=python-module
 pycompile_module="argon2"

From 26f299203792a3fe43e8944054d8c61c83416097 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 083/865] python-arxiv2bib: rebuild for Python 3.8.

---
 srcpkgs/python-arxiv2bib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-arxiv2bib/template b/srcpkgs/python-arxiv2bib/template
index 8bbc6bcf78e..4f245755dcf 100644
--- a/srcpkgs/python-arxiv2bib/template
+++ b/srcpkgs/python-arxiv2bib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-arxiv2bib'
 pkgname=python-arxiv2bib
 version=1.0.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="arxiv2bib-${version}"
 build_style=python-module

From 5d25b8642b8f8043e54a95f2ff5efc880044395a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 084/865] python-asn1crypto: rebuild for Python 3.8.

---
 srcpkgs/python-asn1crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-asn1crypto/template b/srcpkgs/python-asn1crypto/template
index 369c20af98f..e7ffe7415fc 100644
--- a/srcpkgs/python-asn1crypto/template
+++ b/srcpkgs/python-asn1crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-asn1crypto'
 pkgname=python-asn1crypto
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="asn1crypto-${version}"
 build_style=python-module

From c0625af704339d35d7423cd750ef2620c53c39bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 085/865] python-astral: rebuild for Python 3.8.

---
 srcpkgs/python-astral/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-astral/template b/srcpkgs/python-astral/template
index b8fdaee27ac..07aaeee166b 100644
--- a/srcpkgs/python-astral/template
+++ b/srcpkgs/python-astral/template
@@ -1,7 +1,7 @@
 # Template file for 'python-astral'
 pkgname=python-astral
 version=1.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python-}-${version}"
 build_style=python-module

From 6cdbd1584336605868e949368279bb6c2143b1d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 086/865] python3-astroid: rebuild for Python 3.8.

---
 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 28f01bd4445..d964fd2cdf3 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.2.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="astroid-${version}"
 build_style=python3-module

From c0642f6c760884c3209a89e643de35660419627a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 087/865] python3-async-timeout: rebuild for Python 3.8.

---
 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 d949a4fdf9a..854584fb5b2 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=1
+revision=2
 archs=noarch
 wrksrc="async-timeout-${version}"
 build_style=python3-module

From 17cdd1aac68337b8859ce0d970b309f841b8a456 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 088/865] python3-async_generator: rebuild for Python 3.8.

---
 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 c2053d7bf1f..20d9f7ea0d1 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=1
+revision=2
 archs=noarch
 wrksrc="async_generator-${version}"
 build_style=python3-module

From e57ec7e6820968645a23bcc13867add4c9a62399 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 089/865] python-atomicwrites: rebuild for Python 3.8.

---
 srcpkgs/python-atomicwrites/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atomicwrites/template b/srcpkgs/python-atomicwrites/template
index 849272e53f9..ec411d981d4 100644
--- a/srcpkgs/python-atomicwrites/template
+++ b/srcpkgs/python-atomicwrites/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atomicwrites'
 pkgname=python-atomicwrites
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="atomicwrites-${version}"
 build_style=python-module

From 61df9fa27dc05bc6bb5d5a2c5e806fd041d9adb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 090/865] python-atspi: rebuild for Python 3.8.

---
 srcpkgs/python-atspi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atspi/template b/srcpkgs/python-atspi/template
index 4a2007fa319..cfa1ef35377 100644
--- a/srcpkgs/python-atspi/template
+++ b/srcpkgs/python-atspi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atspi'
 pkgname=python-atspi
 version=2.32.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure

From d24c76e2f70e9a9dd9a6aa66a323bf79f37f9110 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 091/865] python-attrs: rebuild for Python 3.8.

---
 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 aaddb13f5be..6e2297a9553 100644
--- a/srcpkgs/python-attrs/template
+++ b/srcpkgs/python-attrs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-attrs'
 pkgname=python-attrs
 version=19.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="attrs-${version}"
 build_style=python-module

From dba37b5f26f28057cb10e86a08a4d2281ee09b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 092/865] python-audioread: rebuild for Python 3.8.

---
 srcpkgs/python-audioread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-audioread/template b/srcpkgs/python-audioread/template
index fc788a2778c..bc878d4b82d 100644
--- a/srcpkgs/python-audioread/template
+++ b/srcpkgs/python-audioread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-audioread'
 pkgname=python-audioread
 version=2.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="audioread-${version}"
 build_style=python-module

From 789a6f2ae1cd503ad69b6a968651c7745f878718 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 093/865] audit: rebuild for Python 3.8.

---
 srcpkgs/audit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/audit/template b/srcpkgs/audit/template
index c624aae0f6d..3e0d21784c0 100644
--- a/srcpkgs/audit/template
+++ b/srcpkgs/audit/template
@@ -1,7 +1,7 @@
 # Template file for 'audit'
 pkgname=audit
 version=2.8.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--libdir=/usr/lib --enable-shared=audit --enable-gssapi-krb5
  --with-apparmor --with-libcap-ng --with-python3"

From e2efc441ba2dda6eac89d6d19f7960be2fb6cb6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 094/865] python3-autobahn: rebuild for Python 3.8.

---
 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 053e45608e5..524ba4b4566 100644
--- a/srcpkgs/python3-autobahn/template
+++ b/srcpkgs/python3-autobahn/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-autobahn'
 pkgname=python3-autobahn
 version=19.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="autobahn-${version}"
 build_style=python3-module

From 9ad07e924752896ad77bccca2019163eb738ebc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 095/865] python-automat: rebuild for Python 3.8.

---
 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 4d0f89a89f5..984f5e9642a 100644
--- a/srcpkgs/python-automat/template
+++ b/srcpkgs/python-automat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-automat'
 pkgname=python-automat
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Automat-${version}"
 build_style=python-module

From a104c6986268b798f373e1fb36de2b20efb9f618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 096/865] python-axolotl: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl/template b/srcpkgs/python-axolotl/template
index cf24db1b6e7..74480b5a9fe 100644
--- a/srcpkgs/python-axolotl/template
+++ b/srcpkgs/python-axolotl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl'
 pkgname=python-axolotl
 version=0.2.3
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="axolotl"

From c0e16521a2125c2ae2c155dd483904a3dce7bd8c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 097/865] python-axolotl-curve25519: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl-curve25519/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl-curve25519/template b/srcpkgs/python-axolotl-curve25519/template
index f7b273b8385..897de4e7cdf 100644
--- a/srcpkgs/python-axolotl-curve25519/template
+++ b/srcpkgs/python-axolotl-curve25519/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl-curve25519'
 pkgname=python-axolotl-curve25519
 version=0.4.1.post2
-revision=2
+revision=3
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 makedepends="python-devel python3-devel"

From 6c250811341de25ed60e2bdfaae58eb8f5a8c159 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 098/865] python-babelfish: rebuild for Python 3.8.

---
 srcpkgs/python-babelfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-babelfish/template b/srcpkgs/python-babelfish/template
index c156255f418..47d5bb176cc 100644
--- a/srcpkgs/python-babelfish/template
+++ b/srcpkgs/python-babelfish/template
@@ -1,7 +1,7 @@
 # Template file for 'python-babelfish'
 pkgname=python-babelfish
 version=0.5.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="babelfish-${version}"
 build_style=python-module

From 3bbb2fa6599ab0470a4209080a69ad4f8476f1ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 099/865] python-backcall: rebuild for Python 3.8.

---
 srcpkgs/python-backcall/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-backcall/template b/srcpkgs/python-backcall/template
index 01dfab9c25d..a55af727ab6 100644
--- a/srcpkgs/python-backcall/template
+++ b/srcpkgs/python-backcall/template
@@ -1,7 +1,7 @@
 # Template file for 'python-backcall'
 pkgname=python-backcall
 version=0.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="backcall-${version}"
 build_style=python-module

From d263efaab1b83cfdc94e9b33011f3cfefc52dcd2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 100/865] bcc: rebuild for Python 3.8.

---
 srcpkgs/bcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template
index a4d32bce7a4..e872cb6a4a8 100644
--- a/srcpkgs/bcc/template
+++ b/srcpkgs/bcc/template
@@ -1,7 +1,7 @@
 # Template file for 'bcc'
 pkgname=bcc
 version=0.11.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DREVISION=${version}"
 hostmakedepends="flex"

From 95aa25d2f02529207de0d9d62aa57353f202d9a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 101/865] python-bcrypt: rebuild for Python 3.8.

---
 srcpkgs/python-bcrypt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bcrypt/template b/srcpkgs/python-bcrypt/template
index 1ccac21ee94..664b5c9df07 100644
--- a/srcpkgs/python-bcrypt/template
+++ b/srcpkgs/python-bcrypt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bcrypt'
 pkgname=python-bcrypt
 version=3.1.7
-revision=1
+revision=2
 wrksrc="bcrypt-${version}"
 build_style=python-module
 pycompile_module="bcrypt"

From 91e29d8f93186f3c597658d4746f864cc6ed9fb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 102/865] python-bibtexparser: rebuild for Python 3.8.

---
 srcpkgs/python-bibtexparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bibtexparser/template b/srcpkgs/python-bibtexparser/template
index 1eff201e6b8..c40115c9fb8 100644
--- a/srcpkgs/python-bibtexparser/template
+++ b/srcpkgs/python-bibtexparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bibtexparser'
 pkgname=python-bibtexparser
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bibtexparser-${version}"
 build_style=python-module

From 6a95de33763230908ad4e9ae408dedcdd2cc431d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 103/865] python-bitarray: rebuild for Python 3.8.

---
 srcpkgs/python-bitarray/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitarray/template b/srcpkgs/python-bitarray/template
index 4f2b4ee392c..f928718a9df 100644
--- a/srcpkgs/python-bitarray/template
+++ b/srcpkgs/python-bitarray/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitarray'
 pkgname=python-bitarray
 version=1.0.1
-revision=1
+revision=2
 wrksrc="bitarray-${version}"
 build_style=python-module
 pycompile_module="bitarray"

From 1f892b7a3495cc0eddd59d14baf8fa6473521ce4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 104/865] python-bitbucket-api: rebuild for Python 3.8.

---
 srcpkgs/python-bitbucket-api/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitbucket-api/template b/srcpkgs/python-bitbucket-api/template
index 27747866baf..448ea60d53d 100644
--- a/srcpkgs/python-bitbucket-api/template
+++ b/srcpkgs/python-bitbucket-api/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitbucket-api'
 pkgname=python-bitbucket-api
 version=0.5.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="bitbucket-api-${version}"
 build_style=python-module

From 9f464ba19a5d403e830d05b84d5b86c6a9bf0209 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 105/865] python-bleach: rebuild for Python 3.8.

---
 srcpkgs/python-bleach/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bleach/template b/srcpkgs/python-bleach/template
index da389c319a5..6e3d4a3bf4c 100644
--- a/srcpkgs/python-bleach/template
+++ b/srcpkgs/python-bleach/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bleach'
 pkgname=python-bleach
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bleach-${version}"
 build_style=python-module

From a79c0811d86d64b345ee5b056c280a062c8e810a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 106/865] python3-blessed: rebuild for Python 3.8.

---
 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 4d494883f9a..8527379351f 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.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessed-${version}"
 build_style=python3-module

From ec38850242ede1700a4b6234199fba116a530b3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 107/865] python-blessings: rebuild for Python 3.8.

---
 srcpkgs/python-blessings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blessings/template b/srcpkgs/python-blessings/template
index f8e396da5c5..baa4938c328 100644
--- a/srcpkgs/python-blessings/template
+++ b/srcpkgs/python-blessings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blessings'
 pkgname=python-blessings
 version=1.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessings-${version}"
 build_style=python-module

From 19252293b6f311e3a280441f83e7ec1589711b77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 108/865] python-blinker: rebuild for Python 3.8.

---
 srcpkgs/python-blinker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blinker/template b/srcpkgs/python-blinker/template
index e34a4a9721a..b6d1d63d19a 100644
--- a/srcpkgs/python-blinker/template
+++ b/srcpkgs/python-blinker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blinker'
 pkgname=python-blinker
 version=1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="blinker-${version}"
 build_style=python-module

From 7cd7b832b55b68ab081454f2b86c254476bd5132 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 109/865] python-bluez: rebuild for Python 3.8.

---
 srcpkgs/python-bluez/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bluez/template b/srcpkgs/python-bluez/template
index 1112352e8ab..4734e47038d 100644
--- a/srcpkgs/python-bluez/template
+++ b/srcpkgs/python-bluez/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bluez'
 pkgname=python-bluez
 version=0.22
-revision=4
+revision=5
 wrksrc="pybluez-${version}"
 build_style=python-module
 pycompile_module="bluetooth"

From 47f9a18cc42f2afe1e8f31696b6928e35b8105c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 110/865] python3-boltons: rebuild for Python 3.8.

---
 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 84a991feef4..1083eb98c51 100644
--- a/srcpkgs/python3-boltons/template
+++ b/srcpkgs/python3-boltons/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-boltons'
 pkgname=python3-boltons
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boltons-${version}"
 build_style=python3-module

From 05f9cb79aa092e2ddeede56d09676742c60cb788 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 111/865] python-boto: rebuild for Python 3.8.

---
 srcpkgs/python-boto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-boto/template b/srcpkgs/python-boto/template
index 40bd3d888b9..684c00feee0 100644
--- a/srcpkgs/python-boto/template
+++ b/srcpkgs/python-boto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-boto'
 pkgname=python-boto
 version=2.49.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boto-${version}"
 build_style=python-module

From ad258b30e35aadb84fd8cd6395bb3d382b429ce9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 112/865] python-botocore: rebuild for Python 3.8.

---
 srcpkgs/python-botocore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-botocore/template b/srcpkgs/python-botocore/template
index ae1a4c17964..0610007f36e 100644
--- a/srcpkgs/python-botocore/template
+++ b/srcpkgs/python-botocore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-botocore'
 pkgname=python-botocore
 version=1.12.243
-revision=1
+revision=2
 archs=noarch
 wrksrc="botocore-${version}"
 build_style=python-module

From 5bc87295c4d5b8af514da116d9b83154488da331 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 113/865] python-bottle: rebuild for Python 3.8.

---
 srcpkgs/python-bottle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bottle/template b/srcpkgs/python-bottle/template
index 8e3a2ad5ad7..0ffc8adfec7 100644
--- a/srcpkgs/python-bottle/template
+++ b/srcpkgs/python-bottle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bottle'
 pkgname=python-bottle
 version=0.12.17
-revision=1
+revision=2
 archs=noarch
 wrksrc="bottle-${version}"
 build_style=python-module

From 86d7964c563357cfa4aec17ced1fefb9e2c974d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 114/865] brltty: rebuild for Python 3.8.

---
 srcpkgs/brltty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/brltty/template b/srcpkgs/brltty/template
index 33f3354a219..a838cd62d55 100644
--- a/srcpkgs/brltty/template
+++ b/srcpkgs/brltty/template
@@ -1,7 +1,7 @@
 # Template file for 'brltty'
 pkgname=brltty
 version=6.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-gpm --with-screen-driver=lx,sc
  --with-tables-directory=/usr/share/brltty PYTHON=/usr/bin/python3"

From 59305e4244220895606aef8a8016d356cee63dff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 115/865] python-bsddb3: rebuild for Python 3.8.

---
 srcpkgs/python-bsddb3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bsddb3/template b/srcpkgs/python-bsddb3/template
index f719a3f9560..1df37cc0e71 100644
--- a/srcpkgs/python-bsddb3/template
+++ b/srcpkgs/python-bsddb3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bsddb3'
 pkgname=python-bsddb3
 version=6.2.6
-revision=2
+revision=3
 wrksrc="bsddb3-${version}"
 build_style=python-module
 make_build_args="--berkeley-db=${XBPS_CROSS_BASE}/usr"

From 8e91ab0e55145cdc83aae10c6f0277d467cb5057 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 116/865] python-cached-property: rebuild for Python 3.8.

---
 srcpkgs/python-cached-property/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cached-property/template b/srcpkgs/python-cached-property/template
index ca2f8536260..16c89346565 100644
--- a/srcpkgs/python-cached-property/template
+++ b/srcpkgs/python-cached-property/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cached-property'
 pkgname=python-cached-property
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cached-property-${version}"
 build_style=python-module

From 3047633291296a9279b5c2a9c0ff04a0cea875f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 117/865] python-cachetools: rebuild for Python 3.8.

---
 srcpkgs/python-cachetools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cachetools/template b/srcpkgs/python-cachetools/template
index ee3ed3a4c94..0f2fdcaed32 100644
--- a/srcpkgs/python-cachetools/template
+++ b/srcpkgs/python-cachetools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cachetools'
 pkgname=python-cachetools
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cachetools-${version}"
 build_style=python-module

From 52e0110b2dc8419583a18babfa62796ef6410ac7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 118/865] python3-cairo: rebuild for Python 3.8.

---
 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 cdde1b83d20..ac158237dd2 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.18.1
-revision=1
+revision=2
 wrksrc="pycairo-${version}"
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From d8f9c3f93f495874237c23477fb548be8b2c0da2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 119/865] python-cairocffi: rebuild for Python 3.8.

---
 srcpkgs/python-cairocffi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cairocffi/template b/srcpkgs/python-cairocffi/template
index baa61334a2a..c057739b03d 100644
--- a/srcpkgs/python-cairocffi/template
+++ b/srcpkgs/python-cairocffi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cairocffi'
 pkgname=python-cairocffi
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cairocffi-${version}"
 build_style=python-module

From bc01f22fb9a5d16bae1b724b675fc57b1f732baa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 120/865] python3-canonicaljson: rebuild for Python 3.8.

---
 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 abc8e95820d..1cbe15f14ae 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.1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="canonicaljson-${version}"
 build_style=python3-module

From e4cba931e3e55f565bc084f8171dea2a8baa9aaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 121/865] python3-casttube: rebuild for Python 3.8.

---
 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 ccd95f3f31c..9e5544b0101 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=1
+revision=2
 archs=noarch
 wrksrc="casttube-${version}"
 build_style=python3-module

From 255661e350728911e6dc85db4bd8a0a0f059b561 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 122/865] python-cffi: rebuild for Python 3.8.

---
 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 27ae03879ac..8501b202bf2 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.12.3
-revision=1
+revision=2
 wrksrc="cffi-${version}"
 build_style=python-module
 pycompile_module="cffi"

From 1b85c0971a1d2d810331d3392d4ecedf140eeb47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 123/865] python3-changelogs: rebuild for Python 3.8.

---
 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 5c2a4889959..d9a7784cf3b 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.14.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="changelogs-${version}"
 build_style=python3-module

From 38e9561402e4ea4c3c4b27c8c747e6b710aec2fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 124/865] python-chardet: rebuild for Python 3.8.

---
 srcpkgs/python-chardet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chardet/template b/srcpkgs/python-chardet/template
index 685d3ab767f..bd502bbbddf 100644
--- a/srcpkgs/python-chardet/template
+++ b/srcpkgs/python-chardet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chardet'
 pkgname=python-chardet
 version=3.0.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="chardet-${version}"
 build_style=python-module

From de1193127ae80857e0f21f1d0499748b6ccafa40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 125/865] python3-cheetah3: rebuild for Python 3.8.

---
 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 40dfee6e322..b2149b2bc22 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.4
-revision=1
+revision=2
 wrksrc="Cheetah3-${version}"
 build_style=python3-module
 pycompile_module="Cheetah"

From 654378c7da0932e5e48085409868c2639efb5294 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 126/865] python3-chess: rebuild for Python 3.8.

---
 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 54b397517cf..e87dab6ca02 100644
--- a/srcpkgs/python3-chess/template
+++ b/srcpkgs/python3-chess/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chess'
 pkgname=python3-chess
 version=0.27.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-chess-${version}"
 build_style=python3-module

From 10db1a1daa9e65a8a20ebc6e20f512884e23f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 127/865] python3-chromecast: rebuild for Python 3.8.

---
 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 16df7502633..cfa41c5dfb5 100644
--- a/srcpkgs/python3-chromecast/template
+++ b/srcpkgs/python3-chromecast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chromecast'
 pkgname=python3-chromecast
 version=4.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychromecast-${version}"
 build_style=python3-module

From 9ff3e7dae7d0ebe28421538f18f150ecd58104e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 128/865] python-chroot: rebuild for Python 3.8.

---
 srcpkgs/python-chroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chroot/template b/srcpkgs/python-chroot/template
index 36853e9f2c0..7faa0f4cce9 100644
--- a/srcpkgs/python-chroot/template
+++ b/srcpkgs/python-chroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chroot'
 pkgname=python-chroot
 version=0.9.18
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychroot-${version}"
 build_style=python-module

From 8d2b57d7f0075beb9134ebd5f7e517ef8a7f20a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 129/865] python3-cli-ui: rebuild for Python 3.8.

---
 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 8303d44eed2..15a9bd32fce 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.9.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-cli-ui-${version}"
 build_style=python3-module

From ecf175e67cdb7bd1e27d29cc47a7e945a6660996 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 130/865] python3-cli_helpers: rebuild for Python 3.8.

---
 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 74b4abf2200..87b284e3cb5 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=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cli_helpers-${version}"
 build_style=python3-module

From aa87c50665110997328e9b80b9b6ba62c47f18bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 131/865] python-click: rebuild for Python 3.8.

---
 srcpkgs/python-click/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click/template b/srcpkgs/python-click/template
index 217e617e73e..4014cb66a83 100644
--- a/srcpkgs/python-click/template
+++ b/srcpkgs/python-click/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click'
 pkgname=python-click
 version=7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Click-${version}"
 build_style="python-module"

From cac08babb361a709a7b7a93c7a825b4682273115 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 132/865] python-click-log: rebuild for Python 3.8.

---
 srcpkgs/python-click-log/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-log/template b/srcpkgs/python-click-log/template
index 37b53f04af0..b57a7a74b4a 100644
--- a/srcpkgs/python-click-log/template
+++ b/srcpkgs/python-click-log/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-log'
 pkgname=python-click-log
 version=0.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-log-${version}"
 build_style="python-module"

From 5a0f06ded0599ac889d808c93865db1723b2ed95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 133/865] python3-click-plugins: rebuild for Python 3.8.

---
 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 cee484018d1..0ef6ce6b248 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=1
+revision=2
 archs=noarch
 wrksrc="click-plugins-${version}"
 build_style=python3-module

From cf104fe4106995307daeb70eb8d34554c238b5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 134/865] python-click-threading: rebuild for Python 3.8.

---
 srcpkgs/python-click-threading/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-threading/template b/srcpkgs/python-click-threading/template
index 76125224992..49b4a4a9aae 100644
--- a/srcpkgs/python-click-threading/template
+++ b/srcpkgs/python-click-threading/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-threading'
 pkgname=python-click-threading
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-threading-${version}"
 build_style="python-module"

From 4bcf653af73bc8e5a6492eee92e5d2826a779d38 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 135/865] python3-cmdln: rebuild for Python 3.8.

---
 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 f00c9a63908..2b7e21f3980 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=1
+revision=2
 archs=noarch
 wrksrc="cmdln-${version}"
 build_style=python3-module

From 52e9257d3be602d0748918c1440a3eae0b6baa51 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 136/865] python-codespell: rebuild for Python 3.8.

---
 srcpkgs/python-codespell/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-codespell/template b/srcpkgs/python-codespell/template
index 92134285a58..211626f33d7 100644
--- a/srcpkgs/python-codespell/template
+++ b/srcpkgs/python-codespell/template
@@ -1,7 +1,7 @@
 # Template file for 'python-codespell'
 pkgname=python-codespell
 version=1.14.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="codespell-${version}"
 build_style=python-module

From 65299f402e3d3a2991e33defee28d85043e0b40f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 137/865] python-colorama: rebuild for Python 3.8.

---
 srcpkgs/python-colorama/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-colorama/template b/srcpkgs/python-colorama/template
index 98ea0d3be78..09562385243 100644
--- a/srcpkgs/python-colorama/template
+++ b/srcpkgs/python-colorama/template
@@ -1,7 +1,7 @@
 # Template file for 'python-colorama'
 pkgname=python-colorama
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="colorama-${version}"
 build_style=python-module

From ec6a8fb7b9e3330e2d7f3fbe139c7a3742013bd8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 138/865] python3-colorclass: rebuild for Python 3.8.

---
 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 4a80f379206..ed8d2d2ea02 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=1
+revision=2
 archs=noarch
 wrksrc="colorclass-${version}"
 build_style=python3-module

From 4b254d3097fa01cb641af24639c6b9a230345954 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 139/865] python-configobj: rebuild for Python 3.8.

---
 srcpkgs/python-configobj/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-configobj/template b/srcpkgs/python-configobj/template
index 95f30d4631a..a8cb5d5d34e 100644
--- a/srcpkgs/python-configobj/template
+++ b/srcpkgs/python-configobj/template
@@ -1,7 +1,7 @@
 # Template file for 'python-configobj'
 pkgname=python-configobj
 version=5.0.6
-revision=5
+revision=6
 archs=noarch
 wrksrc="configobj-${version}"
 build_style=python-module

From 530a6b84ff81274981ed1aa92a2ff85a78dc9775 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 140/865] python-constantly: rebuild for Python 3.8.

---
 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 b5530908ac4..9160aec9edd 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=2
+revision=3
 archs=noarch
 wrksrc="constantly-${version}"
 build_style=python-module

From d2c0a853f5cd6634cca304f7db191fcb1d9a6afa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 141/865] python-construct: rebuild for Python 3.8.

---
 srcpkgs/python-construct/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-construct/template b/srcpkgs/python-construct/template
index 2afe435652c..d6d0b8010e2 100644
--- a/srcpkgs/python-construct/template
+++ b/srcpkgs/python-construct/template
@@ -1,7 +1,7 @@
 # Template file for 'python-construct'
 pkgname=python-construct
 version=2.9.45
-revision=2
+revision=3
 archs=noarch
 wrksrc="construct-${version}"
 build_style=python-module

From 9ba618aa4a4db0062002fcb1ad540bee9b702ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 142/865] python-coverage: rebuild for Python 3.8.

---
 srcpkgs/python-coverage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-coverage/template b/srcpkgs/python-coverage/template
index df6064b9879..1c44b5e18fb 100644
--- a/srcpkgs/python-coverage/template
+++ b/srcpkgs/python-coverage/template
@@ -1,7 +1,7 @@
 # Template file for 'python-coverage'
 pkgname=python-coverage
 version=4.5.4
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="coverage"

From 9adf4621a4960d8a331e1b723971cb326ad2429f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 143/865] python-cram: rebuild for Python 3.8.

---
 srcpkgs/python-cram/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cram/template b/srcpkgs/python-cram/template
index f1fce32149f..8c5d65fe260 100644
--- a/srcpkgs/python-cram/template
+++ b/srcpkgs/python-cram/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cram'
 pkgname=python-cram
 version=0.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="cram-${version}"
 build_style=python-module

From 47ef41a3931be5da08ee8d6fb0ff35b5e1a95d62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 144/865] python3-crcmod: rebuild for Python 3.8.

---
 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 4cd433d2420..9311dedc8ac 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=1
+revision=2
 wrksrc="crcmod-${version}"
 build_style=python3-module
 pycompile_module="crcmod"

From 8b8750f3919e1f23aa6930671f096a365391611a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 145/865] python-cryptography: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography/template b/srcpkgs/python-cryptography/template
index ce3184715dd..39e63d22f7d 100644
--- a/srcpkgs/python-cryptography/template
+++ b/srcpkgs/python-cryptography/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography'
 pkgname=python-cryptography
 version=2.7
-revision=1
+revision=2
 wrksrc="cryptography-${version}"
 build_style=python-module
 pycompile_module="cryptography"

From 676ecf3ea008b8ccabdd3d2798c449a061abb9dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 146/865] python-cryptography_vectors: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography_vectors/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography_vectors/template b/srcpkgs/python-cryptography_vectors/template
index d52e5f5e47c..8fba3a0ce27 100644
--- a/srcpkgs/python-cryptography_vectors/template
+++ b/srcpkgs/python-cryptography_vectors/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography_vectors'
 pkgname=python-cryptography_vectors
 version=2.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="cryptography_vectors-${version}"
 build_style=python-module

From b78a89dedf3b15094ae7febdff460a2cbf547464 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 147/865] python-css-parser: rebuild for Python 3.8.

---
 srcpkgs/python-css-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-css-parser/template b/srcpkgs/python-css-parser/template
index e90b103e4a0..f6d2d0cbf8b 100644
--- a/srcpkgs/python-css-parser/template
+++ b/srcpkgs/python-css-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-css-parser'
 pkgname=python-css-parser
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="css-parser-${version}"
 build_style=python-module

From 036f8b87a68dcb362c7037f58abcffb763571601 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 148/865] python-cssselect: rebuild for Python 3.8.

---
 srcpkgs/python-cssselect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssselect/template b/srcpkgs/python-cssselect/template
index d7dbcebc0ea..c7f43ebca9f 100644
--- a/srcpkgs/python-cssselect/template
+++ b/srcpkgs/python-cssselect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssselect'
 pkgname=python-cssselect
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d4b52974f5f9e8a86060d3dfccc041298c1d666 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 149/865] python-cssutils: rebuild for Python 3.8.

---
 srcpkgs/python-cssutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssutils/template b/srcpkgs/python-cssutils/template
index 648c4754c22..5f08903b9a0 100644
--- a/srcpkgs/python-cssutils/template
+++ b/srcpkgs/python-cssutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssutils'
 pkgname=python-cssutils
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="cssutils-${version}"
 build_style=python-module

From bfb2835290dfefddc0781e2b463d410bf121efa5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 150/865] python-cups: rebuild for Python 3.8.

---
 srcpkgs/python-cups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cups/template b/srcpkgs/python-cups/template
index 2c26e9ef3d0..62c384c9db8 100644
--- a/srcpkgs/python-cups/template
+++ b/srcpkgs/python-cups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cups'
 pkgname=python-cups
 version=1.9.74
-revision=2
+revision=3
 wrksrc="pycups-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 32daac09af71a30483e9985028381670b4ab6245 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 151/865] system-config-printer: rebuild for Python 3.8.

---
 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 e8f8eca46ae..04fe74ff808 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.11
-revision=5
+revision=6
 build_style=gnu-configure
 configure_args="--with-udev-rules"
 make_build_args="udevhelperdir=/usr/lib/udev"

From 582813b2756ce1d1d397113a752b81189680c001 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 152/865] python-curl: rebuild for Python 3.8.

---
 srcpkgs/python-curl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curl/template b/srcpkgs/python-curl/template
index f1f9051d53a..685c63ce68a 100644
--- a/srcpkgs/python-curl/template
+++ b/srcpkgs/python-curl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curl'
 pkgname=python-curl
 version=7.43.0.3
-revision=4
+revision=5
 wrksrc="pycurl-${version}"
 build_style=python-module
 pycompile_module="curl"

From 0eda981910702bfaac2a8af2041fe2c534c13618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 153/865] python-curtsies: rebuild for Python 3.8.

---
 srcpkgs/python-curtsies/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curtsies/template b/srcpkgs/python-curtsies/template
index 158d1c5ce76..6126a11e9b4 100644
--- a/srcpkgs/python-curtsies/template
+++ b/srcpkgs/python-curtsies/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curtsies'
 pkgname=python-curtsies
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="curtsies-${version}"
 build_style=python-module

From 7db16365daaa931d774701441c01b698be457cb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 154/865] python-cycler: rebuild for Python 3.8.

---
 srcpkgs/python-cycler/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cycler/template b/srcpkgs/python-cycler/template
index ee6c985b288..0b53c195dae 100644
--- a/srcpkgs/python-cycler/template
+++ b/srcpkgs/python-cycler/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cycler'
 pkgname=python-cycler
 version=0.10.0
-revision=4
+revision=5
 archs=noarch
 wrksrc="cycler-${version}"
 build_style=python-module

From 2c59e6772ee31b855fe302a27b9b9544cd865e6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 155/865] python-daemonize: rebuild for Python 3.8.

---
 srcpkgs/python-daemonize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-daemonize/template b/srcpkgs/python-daemonize/template
index 699a156b26b..efaf163e573 100644
--- a/srcpkgs/python-daemonize/template
+++ b/srcpkgs/python-daemonize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-daemonize'
 pkgname=python-daemonize
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="daemonize-${version}"
 build_style=python-module

From 84cc63fece0763c8b6920e56e78508551e0fc727 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 156/865] python-dateutil: rebuild for Python 3.8.

---
 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 d9c0f73c883..7675b8f9447 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.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="dateutil"

From 9a19173186ae564f17114f530ac8077484d43c82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 157/865] python-dbus: rebuild for Python 3.8.

---
 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 869c10b2969..3845f6ce34a 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.12
-revision=1
+revision=2
 wrksrc="dbus-python-${version}"
 build_style=gnu-configure
 pycompile_module="dbus"

From 06a9a5b6965485369e669181d99123d7beabf81f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 158/865] python3-dbusmock: rebuild for Python 3.8.

---
 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 67e0ed68078..4abd47843cc 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.18.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-dbusmock-${version}"
 build_style=python3-module

From 694c57d69d63d9f59bef9d31d20a0b16dc73a2a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 159/865] python-decorator: rebuild for Python 3.8.

---
 srcpkgs/python-decorator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-decorator/template b/srcpkgs/python-decorator/template
index 14090c537c9..7f14fef90a6 100644
--- a/srcpkgs/python-decorator/template
+++ b/srcpkgs/python-decorator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-decorator'
 pkgname=python-decorator
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="decorator-${version}"
 build_style=python-module

From 3bd4b100eb970e16e93bbbed8ce2ac91a36e3df5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 160/865] python-defusedxml: rebuild for Python 3.8.

---
 srcpkgs/python-defusedxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-defusedxml/template b/srcpkgs/python-defusedxml/template
index afd62e94414..96234eb18c7 100644
--- a/srcpkgs/python-defusedxml/template
+++ b/srcpkgs/python-defusedxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-defusedxml'
 pkgname=python-defusedxml
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="defusedxml-${version}"
 build_style=python-module

From 442acbe58cd337c55658908f41ec5b6221ca8fcb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 161/865] python3-discid: rebuild for Python 3.8.

---
 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 be5eae1f07f..cc4bc27a1aa 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=1
+revision=2
 archs=noarch
 wrksrc="discid-${version}"
 build_style=python3-module

From 31db2101853fbced7b2655f48906b9054bce07ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 162/865] python-discogs_client: rebuild for Python 3.8.

---
 srcpkgs/python-discogs_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-discogs_client/template b/srcpkgs/python-discogs_client/template
index a27cc50f93c..5af18eda664 100644
--- a/srcpkgs/python-discogs_client/template
+++ b/srcpkgs/python-discogs_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-discogs_client'
 pkgname=python-discogs_client
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="discogs-client-${version}"
 build_style=python-module

From 0aba2b232148b832c27ebd8703c24f42c5018f15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 163/865] python3-distro: rebuild for Python 3.8.

---
 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 86e94572ed7..f1205ace151 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.4.0
-revision=1
+revision=2
 wrksrc=distro-${version}
 build_style=python3-module
 pycompile_module="distro"

From 990a3bd7cef20bd21b781caccd807a7cadf6a0fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 164/865] python-distutils-extra: rebuild for Python 3.8.

---
 srcpkgs/python-distutils-extra/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-distutils-extra/template b/srcpkgs/python-distutils-extra/template
index 9e5728ba08f..46bb0cccc31 100644
--- a/srcpkgs/python-distutils-extra/template
+++ b/srcpkgs/python-distutils-extra/template
@@ -1,7 +1,7 @@
 # Template file for 'python-distutils-extra'
 pkgname=python-distutils-extra
 version=2.39
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 pycompile_module="DistUtilsExtra"

From cc8c6f7c74e5660152cb87b99e7d7b88b5c3d077 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 165/865] python-dkimpy: rebuild for Python 3.8.

---
 srcpkgs/python-dkimpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dkimpy/template b/srcpkgs/python-dkimpy/template
index 4ca5ad386b0..1da26c5de5d 100644
--- a/srcpkgs/python-dkimpy/template
+++ b/srcpkgs/python-dkimpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dkimpy'
 pkgname=python-dkimpy
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="dkimpy-${version}"
 build_style=python-module

From 8560c730ee4396275d04f5b5649fc0b2a1a8819e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 166/865] python-dnspython: rebuild for Python 3.8.

---
 srcpkgs/python-dnspython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dnspython/template b/srcpkgs/python-dnspython/template
index 15d4d7a8a73..66d237e89ee 100644
--- a/srcpkgs/python-dnspython/template
+++ b/srcpkgs/python-dnspython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dnspython'
 pkgname=python-dnspython
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dnspython-${version}"
 build_style=python-module

From c723160d02d838faad8761fcdaa9cfaed2df756f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 167/865] python-docker: rebuild for Python 3.8.

---
 srcpkgs/python-docker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker/template b/srcpkgs/python-docker/template
index b3f8cb2076b..83265bbb606 100644
--- a/srcpkgs/python-docker/template
+++ b/srcpkgs/python-docker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker'
 pkgname=python-docker
 version=3.7.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-${version}"
 build_style=python-module

From 116d9592b10bcde7a5b2f78ed23e0c2e382394da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 168/865] python-docker-pycreds: rebuild for Python 3.8.

---
 srcpkgs/python-docker-pycreds/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker-pycreds/template b/srcpkgs/python-docker-pycreds/template
index c478ded9de6..2224be0d21d 100644
--- a/srcpkgs/python-docker-pycreds/template
+++ b/srcpkgs/python-docker-pycreds/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker-pycreds'
 pkgname=python-docker-pycreds
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-pycreds-${version}"
 build_style=python-module

From 339d2fc160bc67c015b61704b1ade0e15a729050 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 169/865] python-dockerpty: rebuild for Python 3.8.

---
 srcpkgs/python-dockerpty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dockerpty/template b/srcpkgs/python-dockerpty/template
index 78ba5bc3b09..4a0b3a7a33f 100644
--- a/srcpkgs/python-dockerpty/template
+++ b/srcpkgs/python-dockerpty/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dockerpty'
 pkgname=python-dockerpty
 version=0.4.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="dockerpty-${version}"
 build_style=python-module

From 9925e97e6e19313f6899b14640957a47c12c3c6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 170/865] python-docopt: rebuild for Python 3.8.

---
 srcpkgs/python-docopt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docopt/template b/srcpkgs/python-docopt/template
index 4b8661ed2e1..48e5f86c1e0 100644
--- a/srcpkgs/python-docopt/template
+++ b/srcpkgs/python-docopt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docopt'
 pkgname=python-docopt
 version=0.6.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="docopt-${version}"
 build_style=python-module

From b274270fc5a58198a59400d9c8eb825546cf64ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 171/865] python-docutils: rebuild for Python 3.8.

---
 srcpkgs/python-docutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docutils/template b/srcpkgs/python-docutils/template
index 62f080f416a..8fd21a7450b 100644
--- a/srcpkgs/python-docutils/template
+++ b/srcpkgs/python-docutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docutils'
 pkgname=python-docutils
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docutils-${version}"
 build_style=python-module

From 6db8d0a9fb5d7b1cd339f5102d86a29dda19f348 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 172/865] python-dogpile.cache: rebuild for Python 3.8.

---
 srcpkgs/python-dogpile.cache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index f6e106fb4e8..894c6f695bf 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dogpile.cache'
 pkgname=python-dogpile.cache
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dogpile.cache-${version}"
 build_style=python-module

From e603b2f5de239ac8c6e7b8322f560ed5249fe887 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 173/865] python-dominate: rebuild for Python 3.8.

---
 srcpkgs/python-dominate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dominate/template b/srcpkgs/python-dominate/template
index 14ec659bac8..6d6f2caa323 100644
--- a/srcpkgs/python-dominate/template
+++ b/srcpkgs/python-dominate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dominate'
 pkgname=python-dominate
 version=2.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dominate-${version}"
 build_style=python-module

From 2bd7c3e739559614758b25140591fa8bb623a73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 174/865] python-dulwich: rebuild for Python 3.8.

---
 srcpkgs/python-dulwich/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dulwich/template b/srcpkgs/python-dulwich/template
index 0bddda65069..7b8ac45011e 100644
--- a/srcpkgs/python-dulwich/template
+++ b/srcpkgs/python-dulwich/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dulwich'
 pkgname=python-dulwich
 version=0.19.13
-revision=1
+revision=2
 wrksrc="dulwich-${version}"
 build_style=python-module
 pycompile_module="dulwich"

From 9d0b79dad0746da7669be20a38791a7eff4a42dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 175/865] python3-easygui: rebuild for Python 3.8.

---
 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 c1ec4767ae9..a9a2f66d865 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="easygui-${version}"
 build_style=python3-module

From eaa3ee113511523004b2d78a2119becc627b2dcf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 176/865] python-ecdsa: rebuild for Python 3.8.

---
 srcpkgs/python-ecdsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ecdsa/template b/srcpkgs/python-ecdsa/template
index 5e0b217fa73..e6e7d58cd10 100644
--- a/srcpkgs/python-ecdsa/template
+++ b/srcpkgs/python-ecdsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ecdsa'
 pkgname=python-ecdsa
 version=0.13.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 5d7cb5b032b5814415f5b21646b09bceda211fd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 177/865] python-editor: rebuild for Python 3.8.

---
 srcpkgs/python-editor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-editor/template b/srcpkgs/python-editor/template
index 4b86afa6924..3594e407205 100644
--- a/srcpkgs/python-editor/template
+++ b/srcpkgs/python-editor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-editor'
 pkgname=python-editor
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="editor"

From 19c3e09b30ed3cf9c6ffee8cee652d54c672a599 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 178/865] python-efl: rebuild for Python 3.8.

---
 srcpkgs/python-efl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-efl/template b/srcpkgs/python-efl/template
index a49e7d35847..2096f6916da 100644
--- a/srcpkgs/python-efl/template
+++ b/srcpkgs/python-efl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-efl'
 pkgname=python-efl
 version=1.22.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="efl"
 hostmakedepends="pkg-config python-devel python3-devel"

From 82198e93fcca38bb8b5f4f754bcbd6fd7baf59da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 179/865] python3-eliot: rebuild for Python 3.8.

---
 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 15b05dd7331..8453789b688 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="eliot-${version}"
 build_style=python3-module

From bcfe6b0d9db4104d00cb6a16d6012f2258515d59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 180/865] python-empy: rebuild for Python 3.8.

---
 srcpkgs/python-empy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-empy/template b/srcpkgs/python-empy/template
index 97476250cf2..4668a9cc814 100644
--- a/srcpkgs/python-empy/template
+++ b/srcpkgs/python-empy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-empy'
 pkgname=python-empy
 version=3.3.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="empy-${version}"
 build_style=python-module

From 6a91fa7210bd83ced5963d69be69166cd7ad72e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 181/865] python-enchant: rebuild for Python 3.8.

---
 srcpkgs/python-enchant/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enchant/template b/srcpkgs/python-enchant/template
index a443877d821..e499957b47e 100644
--- a/srcpkgs/python-enchant/template
+++ b/srcpkgs/python-enchant/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enchant'
 pkgname=python-enchant
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python-module

From 6ec52886dc67e49d1440bf8d0d1fe8fab07df30a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 182/865] python-entrypoints: rebuild for Python 3.8.

---
 srcpkgs/python-entrypoints/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-entrypoints/template b/srcpkgs/python-entrypoints/template
index ebefb2d04dc..6070650f35d 100644
--- a/srcpkgs/python-entrypoints/template
+++ b/srcpkgs/python-entrypoints/template
@@ -1,7 +1,7 @@
 # Template file for 'python-entrypoints'
 pkgname=python-entrypoints
 version=0.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="entrypoints-${version}"
 build_style=python-module

From 612a78254c1f46db87994e41646495e245a3facf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 183/865] python-envdir: rebuild for Python 3.8.

---
 srcpkgs/python-envdir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-envdir/template b/srcpkgs/python-envdir/template
index 622fcee6b34..b8cccad60ac 100644
--- a/srcpkgs/python-envdir/template
+++ b/srcpkgs/python-envdir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-envdir'
 pkgname=python-envdir
 version=1.0.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 50f8488d9ea7d659590f7d09f42dd5b94e19152c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 184/865] python-enzyme: rebuild for Python 3.8.

---
 srcpkgs/python-enzyme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enzyme/template b/srcpkgs/python-enzyme/template
index 637c858195b..f28f40b0319 100644
--- a/srcpkgs/python-enzyme/template
+++ b/srcpkgs/python-enzyme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enzyme'
 pkgname=python-enzyme
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="enzyme-${version}"
 build_style=python-module

From 0927e611429f29f17290f1e10cf2c0b872d1feb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 185/865] python3-esprima: rebuild for Python 3.8.

---
 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 c3a564123de..aec8930a6bf 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=1
+revision=2
 wrksrc="esprima-${version}"
 build_style=python3-module
 pycompile_module="esprima"

From d10708d4fcebbbc7dccf424ca1a596b43ae8df59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 186/865] python-evdev: rebuild for Python 3.8.

---
 srcpkgs/python-evdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-evdev/template b/srcpkgs/python-evdev/template
index 3c1a5253513..cff10211628 100644
--- a/srcpkgs/python-evdev/template
+++ b/srcpkgs/python-evdev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-evdev'
 pkgname=python-evdev
 version=1.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="evdev"
 hostmakedepends="python-setuptools python3-setuptools"

From d4f74f5bad705da704a6773a834e3939d7700c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 187/865] python-ewmh: rebuild for Python 3.8.

---
 srcpkgs/python-ewmh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ewmh/template b/srcpkgs/python-ewmh/template
index be6d04316b0..a96490fb56d 100644
--- a/srcpkgs/python-ewmh/template
+++ b/srcpkgs/python-ewmh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ewmh'
 pkgname=python-ewmh
 version=0.1.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From afbcc47e23517b6d56ec485dc40f389c1af31701 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 188/865] python-exifread: rebuild for Python 3.8.

---
 srcpkgs/python-exifread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-exifread/template b/srcpkgs/python-exifread/template
index 853f885fff8..834aa7730ee 100644
--- a/srcpkgs/python-exifread/template
+++ b/srcpkgs/python-exifread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-exifread'
 pkgname=python-exifread
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="exif-py-${version}"
 build_style="python-module"

From d05fad06fa4306ef7f685f49a366fcc27e64a40c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 189/865] python-fasteners: rebuild for Python 3.8.

---
 srcpkgs/python-fasteners/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fasteners/template b/srcpkgs/python-fasteners/template
index 34ca4e0e9db..24d2ec0611f 100644
--- a/srcpkgs/python-fasteners/template
+++ b/srcpkgs/python-fasteners/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fasteners'
 pkgname=python-fasteners
 version=0.15
-revision=1
+revision=2
 archs=noarch
 wrksrc="fasteners-${version}"
 build_style=python-module

From 8c663b7a9f12675a94dea8c33eddeededd3c56bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 190/865] python-feedgenerator: rebuild for Python 3.8.

---
 srcpkgs/python-feedgenerator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedgenerator/template b/srcpkgs/python-feedgenerator/template
index 3e5abc4f433..bcffb6728aa 100644
--- a/srcpkgs/python-feedgenerator/template
+++ b/srcpkgs/python-feedgenerator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedgenerator'
 pkgname=python-feedgenerator
 version=1.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="feedgenerator-${version}"
 build_style=python-module

From ab9e5bccaa31f32d93549c21e47bc12c4e5ac181 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 191/865] python-feedparser: rebuild for Python 3.8.

---
 srcpkgs/python-feedparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedparser/template b/srcpkgs/python-feedparser/template
index c5c5e8783eb..94f0a58ec88 100644
--- a/srcpkgs/python-feedparser/template
+++ b/srcpkgs/python-feedparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedparser'
 pkgname=python-feedparser
 version=5.2.1
-revision=5
+revision=6
 archs=noarch
 wrksrc="feedparser-${version}"
 build_style=python-module

From 157719696415e499518e188417324c7d97359d36 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 192/865] python3-fido2: rebuild for Python 3.8.

---
 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 fafb4d61d56..fb737d68d20 100644
--- a/srcpkgs/python3-fido2/template
+++ b/srcpkgs/python3-fido2/template
@@ -2,7 +2,7 @@
 pkgname=python3-fido2
 _pkgname=fido2
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From cbab3fd166f79dc7d2659a802e1953c697f94a95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 193/865] python3-filelock: rebuild for Python 3.8.

---
 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 8e0bc8f1070..9105ff8689d 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.0.12
-revision=1
+revision=2
 wrksrc="filelock-${version}"
 build_style=python3-module
 pycompile_module="filelock.py"

From df9deb02719807bdcb49f7c41040cd8748efd6fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 194/865] python-filetype: rebuild for Python 3.8.

---
 srcpkgs/python-filetype/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-filetype/template b/srcpkgs/python-filetype/template
index 37896cff9d8..10b974794b5 100644
--- a/srcpkgs/python-filetype/template
+++ b/srcpkgs/python-filetype/template
@@ -1,7 +1,7 @@
 # Template file for 'python-filetype'
 pkgname=python-filetype
 version=1.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="filetype-${version}"
 build_style=python-module

From b71ed5528581f9bba57653ff2acb45edf6dcbd81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 195/865] python3-fishnet: rebuild for Python 3.8.

---
 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 9dde60cbb6c..6280ae8e966 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=1
+revision=2
 archs=noarch
 wrksrc="fishnet-${version}"
 build_style=python3-module

From 25bc415f7d96b99e98c97ab0abad6a531786f9e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 196/865] python-flaky: rebuild for Python 3.8.

---
 srcpkgs/python-flaky/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-flaky/template b/srcpkgs/python-flaky/template
index d5211c9cb60..e8e681421f7 100644
--- a/srcpkgs/python-flaky/template
+++ b/srcpkgs/python-flaky/template
@@ -1,7 +1,7 @@
 # Template file for 'python-flaky'
 pkgname=python-flaky
 version=3.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 6dfa18d602ed8d6414a040466c4e0eef4db1d0d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 197/865] python3-flexmock: rebuild for Python 3.8.

---
 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 0663ed5122d..8a7c9a2894d 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.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="flexmock-${version}"
 build_style=python3-module

From 8c90b86b18b06e68260df59166a7228f7af5e5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 198/865] python3-fonttools: rebuild for Python 3.8.

---
 srcpkgs/python3-fonttools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-fonttools/template b/srcpkgs/python3-fonttools/template
index 15cf36585fb..ccd4b66c5d8 100644
--- a/srcpkgs/python3-fonttools/template
+++ b/srcpkgs/python3-fonttools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-fonttools'
 pkgname=python3-fonttools
 version=4.0.2
-revision=1
+revision=2
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 pycompile_module="fonttools"

From 423903ec28541ea1cd89f97400529121dca5e065 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 199/865] python3-frozendict: rebuild for Python 3.8.

---
 srcpkgs/python3-frozendict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-frozendict/template b/srcpkgs/python3-frozendict/template
index d3b4dc91602..739000a887c 100644
--- a/srcpkgs/python3-frozendict/template
+++ b/srcpkgs/python3-frozendict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-frozendict'
 pkgname=python3-frozendict
 version=1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="frozendict-${version}"
 build_style=python3-module

From 0929953d079922e685a9b46372630d69c2c6776d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 200/865] python-fuse: rebuild for Python 3.8.

---
 srcpkgs/python-fuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fuse/template b/srcpkgs/python-fuse/template
index 6449cc36a02..2e99e9866d3 100644
--- a/srcpkgs/python-fuse/template
+++ b/srcpkgs/python-fuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fuse'
 pkgname=python-fuse
 version=0.3.1
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="fuseparts fuse.py"
 hostmakedepends="pkg-config python-setuptools python3-setuptools"

From 505bca67544c8cca26d3f7675eb746bb98abf44e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 201/865] python-future: rebuild for Python 3.8.

---
 srcpkgs/python-future/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-future/template b/srcpkgs/python-future/template
index 1844be2efbc..6cd53908823 100644
--- a/srcpkgs/python-future/template
+++ b/srcpkgs/python-future/template
@@ -1,7 +1,7 @@
 # Template file for 'python-future'
 pkgname=python-future
 version=0.17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="future-${version}"
 build_style=python-module

From 4b595c01c8dcf28a72cf0a96960609ab9788b6ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 202/865] python3-geojson: rebuild for Python 3.8.

---
 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 6bcd0c3092e..90e7d5a0e60 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=1
+revision=2
 archs=noarch
 wrksrc="geojson-${version}"
 build_style=python3-module

From 5e44d64f54a2983f4d5fefba49ef65a6803bd024 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 203/865] python-gevent: rebuild for Python 3.8.

---
 srcpkgs/python-gevent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gevent/template b/srcpkgs/python-gevent/template
index 2bbabee00fc..35c76146d56 100644
--- a/srcpkgs/python-gevent/template
+++ b/srcpkgs/python-gevent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gevent'
 pkgname=python-gevent
 version=1.4.0
-revision=1
+revision=2
 wrksrc="gevent-${version}"
 build_style=python-module
 pycompile_module="gevent"

From 5fed10c6460512a1f1391f079ed47645f9df532e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 204/865] python3-gitchangelog: rebuild for Python 3.8.

---
 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 ed381e07d78..cc1945f2623 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=1
+revision=2
 archs=noarch
 wrksrc="gitchangelog-${version}"
 build_style=python3-module

From b52557ed164619919a05cdf8fae5e77e5b4f53db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 205/865] python-gitdb: rebuild for Python 3.8.

---
 srcpkgs/python-gitdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitdb/template b/srcpkgs/python-gitdb/template
index d9e624b9f53..253ddaa07bd 100644
--- a/srcpkgs/python-gitdb/template
+++ b/srcpkgs/python-gitdb/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitdb'
 pkgname=python-gitdb
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="gitdb2-${version}"
 build_style=python-module

From 53365dcec4eb25138ea4bb248d57c1b2aa7aa311 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 206/865] python-github3: rebuild for Python 3.8.

---
 srcpkgs/python-github3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-github3/template b/srcpkgs/python-github3/template
index 2cb71368f3d..425fe1b7362 100644
--- a/srcpkgs/python-github3/template
+++ b/srcpkgs/python-github3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-github3'
 pkgname=python-github3
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="github3.py-${version}"
 build_style=python-module

From 2b4c90de9a0cbcbb5902a9407f229864bd81a7f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 207/865] python-gitlab: rebuild for Python 3.8.

---
 srcpkgs/python-gitlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitlab/template b/srcpkgs/python-gitlab/template
index 7db583b54c4..0f71b4c7153 100644
--- a/srcpkgs/python-gitlab/template
+++ b/srcpkgs/python-gitlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitlab'
 pkgname=python-gitlab
 version=1.12.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gitlab"

From 51613301779bb891e87daba6b634dca18654d29f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 208/865] python-gmpy2: rebuild for Python 3.8.

---
 srcpkgs/python-gmpy2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gmpy2/template b/srcpkgs/python-gmpy2/template
index c41a9f4595b..74e9b583288 100644
--- a/srcpkgs/python-gmpy2/template
+++ b/srcpkgs/python-gmpy2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gmpy2'
 pkgname=python-gmpy2
 version=2.0.8
-revision=5
+revision=6
 wrksrc="gmpy2-${version}"
 build_style=python-module
 hostmakedepends="unzip python-setuptools python3-setuptools

From a6f4b9ed74b787b741e6297520186bd60de2b46e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 209/865] python-gntp: rebuild for Python 3.8.

---
 srcpkgs/python-gntp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gntp/template b/srcpkgs/python-gntp/template
index 14bd36518f8..7b3bb5a7bb7 100644
--- a/srcpkgs/python-gntp/template
+++ b/srcpkgs/python-gntp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gntp'
 pkgname=python-gntp
 version=1.0.3
-revision=4
+revision=5
 archs=noarch
 wrksrc="gntp-${version}"
 build_style=python-module

From 0730dc20e341ef5247184f85a47f2d1200750698 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 210/865] python-gnupg: rebuild for Python 3.8.

---
 srcpkgs/python-gnupg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gnupg/template b/srcpkgs/python-gnupg/template
index ae6f49c7e27..24c0943d1e4 100644
--- a/srcpkgs/python-gnupg/template
+++ b/srcpkgs/python-gnupg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gnupg'
 pkgname=python-gnupg
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gnupg.py"

From 2c78f38b921da1d4ac2ddf5c200a378cadd75590 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 211/865] python3-gobject: rebuild for Python 3.8.

---
 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 242d33ed3ac..8713ddf5334 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.32.2
-revision=1
+revision=2
 wrksrc="pygobject-${version}"
 build_style=meson
 build_helper="gir"

From 15ed888e45d37128f9852cfc492a14182186f1a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 212/865] python-gogs-client: rebuild for Python 3.8.

---
 srcpkgs/python-gogs-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gogs-client/template b/srcpkgs/python-gogs-client/template
index e8189bc8805..027135d430c 100644
--- a/srcpkgs/python-gogs-client/template
+++ b/srcpkgs/python-gogs-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gogs-client'
 pkgname=python-gogs-client
 version=1.0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="gogs_client-${version}"
 build_style=python-module

From 1ce661eb8f15d8e6d56a3f1e197897c332fa224e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 213/865] python-google-api-python-client: rebuild for Python
 3.8.

---
 srcpkgs/python-google-api-python-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-api-python-client/template b/srcpkgs/python-google-api-python-client/template
index 273cd0722b8..69c2d4e96eb 100644
--- a/srcpkgs/python-google-api-python-client/template
+++ b/srcpkgs/python-google-api-python-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-api-python-client'
 pkgname=python-google-api-python-client
 version=1.7.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From abc55893b0e34778f73646713ec111220a9cafbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 214/865] python-google-auth: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth/template b/srcpkgs/python-google-auth/template
index 708fe08325a..1de6800e3d2 100644
--- a/srcpkgs/python-google-auth/template
+++ b/srcpkgs/python-google-auth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth'
 pkgname=python-google-auth
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 345385c7c36d4b9e58aad80d36b1cd93575ecd95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 215/865] python-google-auth-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth-httplib2/template b/srcpkgs/python-google-auth-httplib2/template
index 9a7fd093ce5..9e43bc92292 100644
--- a/srcpkgs/python-google-auth-httplib2/template
+++ b/srcpkgs/python-google-auth-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth-httplib2'
 pkgname=python-google-auth-httplib2
 version=0.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 659bb740f4ecc98b01dc400608f6b524416a0b86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 216/865] python-gpg: rebuild for Python 3.8.

---
 srcpkgs/python-gpg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gpg/template b/srcpkgs/python-gpg/template
index 4ef85846b42..a17a0324af8 100644
--- a/srcpkgs/python-gpg/template
+++ b/srcpkgs/python-gpg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gpg'
 pkgname=python-gpg
 version=1.10.0
-revision=3
+revision=4
 wrksrc="gpg-${version}"
 build_style=python-module
 hostmakedepends="swig gpgme-devel python-devel python3-devel"

From 873dc5b9b60d819c83e9d76fd366d7e22b1e3bc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 217/865] python-grako: rebuild for Python 3.8.

---
 srcpkgs/python-grako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-grako/template b/srcpkgs/python-grako/template
index cc02973b31e..2b401732735 100644
--- a/srcpkgs/python-grako/template
+++ b/srcpkgs/python-grako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-grako'
 pkgname=python-grako
 version=3.99.9
-revision=3
+revision=4
 wrksrc="neogeny-${pkgname/python-/}-275d3c4fe4ac"
 build_style=python-module
 pycompile_module="grako"

From d47059d2656db0b58c65856428cabac0432d40b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 218/865] python-graphviz: rebuild for Python 3.8.

---
 srcpkgs/python-graphviz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-graphviz/template b/srcpkgs/python-graphviz/template
index 521f2e81213..e3d487a2db7 100644
--- a/srcpkgs/python-graphviz/template
+++ b/srcpkgs/python-graphviz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-graphviz'
 pkgname=python-graphviz
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 604137947acf2b7cd302f3f32e778c96a0f521f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 219/865] python-greenlet: rebuild for Python 3.8.

---
 srcpkgs/python-greenlet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-greenlet/template b/srcpkgs/python-greenlet/template
index d1e63ac7adb..b540e9a286b 100644
--- a/srcpkgs/python-greenlet/template
+++ b/srcpkgs/python-greenlet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-greenlet'
 pkgname=python-greenlet
 version=0.4.15
-revision=2
+revision=3
 wrksrc="greenlet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From c75b3ed338515fef098deb3e5b0d7a6afb7e4027 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 220/865] python-guessit: rebuild for Python 3.8.

---
 srcpkgs/python-guessit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-guessit/template b/srcpkgs/python-guessit/template
index 5029048a041..a962f14522f 100644
--- a/srcpkgs/python-guessit/template
+++ b/srcpkgs/python-guessit/template
@@ -1,7 +1,7 @@
 # Template file for 'python-guessit'
 pkgname=python-guessit
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="guessit-${version}"
 build_style=python-module

From be7acc08bc4f5ffb222fcebc23a391553273ece1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 221/865] python-h11: rebuild for Python 3.8.

---
 srcpkgs/python-h11/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-h11/template b/srcpkgs/python-h11/template
index 88040dfadec..b2e007533a7 100644
--- a/srcpkgs/python-h11/template
+++ b/srcpkgs/python-h11/template
@@ -1,7 +1,7 @@
 # Template file for 'python-h11'
 pkgname=python-h11
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=h11-${version}
 build_style=python-module

From bdf55bd416f8bc2ed44be6c4c54d162c18a8ea97 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 222/865] python-habanero: rebuild for Python 3.8.

---
 srcpkgs/python-habanero/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-habanero/template b/srcpkgs/python-habanero/template
index 86d66befc3d..a914f21ecb7 100644
--- a/srcpkgs/python-habanero/template
+++ b/srcpkgs/python-habanero/template
@@ -1,7 +1,7 @@
 # Template file for 'python-habanero'
 pkgname=python-habanero
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="habanero-${version}"
 build_style=python-module

From 9c07301e6c8b8cbc8282f2c49eee7ea5572650fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 223/865] python3-hawkauthlib: rebuild for Python 3.8.

---
 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 fd7f1405790..1456fa7d814 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=2
+revision=3
 archs=noarch
 wrksrc="hawkauthlib-${version}"
 build_style=python3-module

From 66941ef99dc3f45dea432a38889d9aedcbc58e8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 224/865] python-hiredis: rebuild for Python 3.8.

---
 srcpkgs/python-hiredis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hiredis/template b/srcpkgs/python-hiredis/template
index 23694ae92d7..82a97d5eaf3 100644
--- a/srcpkgs/python-hiredis/template
+++ b/srcpkgs/python-hiredis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hiredis'
 pkgname=python-hiredis
 version=0.2.0
-revision=4
+revision=5
 wrksrc="hiredis-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 335237d6c8ffbf9d850fddc0047cb4ea28057efd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 225/865] python3-hkdf: rebuild for Python 3.8.

---
 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 fabc91ee974..0faaf05b5fe 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=1
+revision=2
 archs=noarch
 wrksrc="hkdf-${version}"
 build_style=python3-module

From fa28e1e2a5b4f298ee9762f0f595a5b1b16db0c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 226/865] python-hoedown: rebuild for Python 3.8.

---
 srcpkgs/python-hoedown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hoedown/template b/srcpkgs/python-hoedown/template
index a964fbbb709..4b82aba9afc 100644
--- a/srcpkgs/python-hoedown/template
+++ b/srcpkgs/python-hoedown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hoedown'
 pkgname=python-hoedown
 version=0.3.0
-revision=2
+revision=3
 wrksrc="hoedown-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 1b9ab7e23ce8f84563cdaac18cbe35d6b5b377eb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 227/865] python-hpack: rebuild for Python 3.8.

---
 srcpkgs/python-hpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hpack/template b/srcpkgs/python-hpack/template
index c69e91daa0e..ffbac313103 100644
--- a/srcpkgs/python-hpack/template
+++ b/srcpkgs/python-hpack/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hpack'
 pkgname=python-hpack
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hpack-${version}
 build_style=python-module

From b6095882129bc28d1a3eec0f996353011126ed10 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 228/865] python3-html2text: rebuild for Python 3.8.

---
 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 006f2a127ad..c74e236a053 100644
--- a/srcpkgs/python3-html2text/template
+++ b/srcpkgs/python3-html2text/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-html2text'
 pkgname=python3-html2text
 version=2019.9.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module

From 78741dc5f018f23c93acabc2cdd16c97d5e08012 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 229/865] python-html5-parser: rebuild for Python 3.8.

---
 srcpkgs/python-html5-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5-parser/template b/srcpkgs/python-html5-parser/template
index 130c5037e57..41bbd0ea157 100644
--- a/srcpkgs/python-html5-parser/template
+++ b/srcpkgs/python-html5-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5-parser'
 pkgname=python-html5-parser
 version=0.4.8
-revision=1
+revision=2
 wrksrc="html5-parser-${version}"
 build_style=python-module
 pycompile_module="html5_parser"

From f69efbb44a9aa15f6b7468ff70a20786ec1a04d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 230/865] python-html5lib: rebuild for Python 3.8.

---
 srcpkgs/python-html5lib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5lib/template b/srcpkgs/python-html5lib/template
index 81e683f7bcf..2565de64fd2 100644
--- a/srcpkgs/python-html5lib/template
+++ b/srcpkgs/python-html5lib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5lib'
 pkgname=python-html5lib
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="html5lib-${version}"
 build_style=python-module

From 6bd979521876c876eea2022ebe023cdbb30777c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 231/865] python-httmock: rebuild for Python 3.8.

---
 srcpkgs/python-httmock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httmock/template b/srcpkgs/python-httmock/template
index 61a60126936..e798b4fc1b3 100644
--- a/srcpkgs/python-httmock/template
+++ b/srcpkgs/python-httmock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httmock'
 pkgname=python-httmock
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="httmock-${version}"
 build_style=python-module

From 7f5b2e5c5738ca5824c255406195ff59f30f2c80 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 232/865] python-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httplib2/template b/srcpkgs/python-httplib2/template
index edcb6abf0c1..fe76a729328 100644
--- a/srcpkgs/python-httplib2/template
+++ b/srcpkgs/python-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httplib2'
 pkgname=python-httplib2
 version=0.13.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="httplib2-${version}"
 build_style=python-module

From 9bd4d3d3c99054f61ceb650933dcd9c5740d5ff0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 233/865] python3-humanize: rebuild for Python 3.8.

---
 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 c82c20fb0f2..d1011fb92e9 100644
--- a/srcpkgs/python3-humanize/template
+++ b/srcpkgs/python3-humanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-humanize'
 pkgname=python3-humanize
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="humanize-${version}"
 build_style=python3-module

From ead6f9504cd4015bc13944d58d676ef457b0fb34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 234/865] python-hyper-h2: rebuild for Python 3.8.

---
 srcpkgs/python-hyper-h2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyper-h2/template b/srcpkgs/python-hyper-h2/template
index 5dcf7ed1c4d..9e5eee3b69b 100644
--- a/srcpkgs/python-hyper-h2/template
+++ b/srcpkgs/python-hyper-h2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyper-h2'
 pkgname=python-hyper-h2
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyper-h2-${version}"
 build_style=python-module

From 8ac54f95c067c3f715c23a58d7f2b6d0683988cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 235/865] python-hyperframe: rebuild for Python 3.8.

---
 srcpkgs/python-hyperframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyperframe/template b/srcpkgs/python-hyperframe/template
index e4cea346f7e..6b544c2061c 100644
--- a/srcpkgs/python-hyperframe/template
+++ b/srcpkgs/python-hyperframe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperframe'
 pkgname=python-hyperframe
 version=5.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hyperframe-${version}
 build_style=python-module

From cb929edb0d026e58d2d6c7e6f9baeee9fedf523e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 236/865] python-hyperlink: rebuild for Python 3.8.

---
 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 1cc7aa0670a..945bf72ee59 100644
--- a/srcpkgs/python-hyperlink/template
+++ b/srcpkgs/python-hyperlink/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperlink'
 pkgname=python-hyperlink
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyperlink-${version}"
 build_style=python-module

From da7a9015ccf93b07d390988b03b1403702cfa14a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 237/865] python-hypothesis: rebuild for Python 3.8.

---
 srcpkgs/python-hypothesis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hypothesis/template b/srcpkgs/python-hypothesis/template
index f3eb931e410..de55593fc02 100644
--- a/srcpkgs/python-hypothesis/template
+++ b/srcpkgs/python-hypothesis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hypothesis'
 pkgname=python-hypothesis
 version=4.38.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="hypothesis-hypothesis-python-${version}"
 build_wrksrc=hypothesis-python

From f091030376534d6a6f7c625b82a8405350e7cdcd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 238/865] python-icalendar: rebuild for Python 3.8.

---
 srcpkgs/python-icalendar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-icalendar/template b/srcpkgs/python-icalendar/template
index b2129648ea6..be45f2d608d 100644
--- a/srcpkgs/python-icalendar/template
+++ b/srcpkgs/python-icalendar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-icalendar'
 pkgname=python-icalendar
 version=4.0.3
-revision=1
+revision=2
 wrksrc="icalendar-${version}"
 archs=noarch
 build_style=python-module

From 474626af886f96ef30849e5aca015775f7edfb8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 239/865] icdiff: rebuild for Python 3.8.

---
 srcpkgs/icdiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template
index 31cfc3e2354..396448b86f4 100644
--- a/srcpkgs/icdiff/template
+++ b/srcpkgs/icdiff/template
@@ -1,7 +1,7 @@
 # Template file for 'icdiff'
 pkgname=icdiff
 version=1.9.5
-revision=1
+revision=2
 wrksrc="${pkgname}-release-${version}"
 archs=noarch
 build_style=python-module

From 21e5ba4fadd590c9e0dd7afde206429c99c46c56 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 240/865] python-idna: rebuild for Python 3.8.

---
 srcpkgs/python-idna/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-idna/template b/srcpkgs/python-idna/template
index 4c6baefd41b..446a04da7d7 100644
--- a/srcpkgs/python-idna/template
+++ b/srcpkgs/python-idna/template
@@ -1,7 +1,7 @@
 # Template file for 'python-idna'
 pkgname=python-idna
 version=2.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-${version}"
 build_style=python-module

From a012eff0de75e8caab0be24964731b749fe6ad8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 241/865] python3-idna-ssl: rebuild for Python 3.8.

---
 srcpkgs/python3-idna-ssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-idna-ssl/template b/srcpkgs/python3-idna-ssl/template
index df953f4d0d9..0608fb7278c 100644
--- a/srcpkgs/python3-idna-ssl/template
+++ b/srcpkgs/python3-idna-ssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-idna-ssl'
 pkgname=python3-idna-ssl
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-ssl-${version}"
 build_style=python3-module

From ac112b7dfc3aadb93225736a4504f7965af29838 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 242/865] python3-ifaddr: rebuild for Python 3.8.

---
 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 37bc2bbaf73..683d76662a3 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ifaddr-${version}"
 build_style=python3-module

From 32d0218ef7a7a721759e4c421d70255f49b3cfd0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 243/865] python-imagesize: rebuild for Python 3.8.

---
 srcpkgs/python-imagesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-imagesize/template b/srcpkgs/python-imagesize/template
index ee231eb9f24..f64c86812b5 100644
--- a/srcpkgs/python-imagesize/template
+++ b/srcpkgs/python-imagesize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-imagesize'
 pkgname=python-imagesize
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="imagesize-${version}"
 build_style=python-module

From f0bf351c50949a7348409d8c132926c401dabf43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 244/865] python3-importlib_metadata: rebuild for Python 3.8.

---
 srcpkgs/python3-importlib_metadata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-importlib_metadata/template b/srcpkgs/python3-importlib_metadata/template
index 9acbe968e10..f88e9d9b780 100644
--- a/srcpkgs/python3-importlib_metadata/template
+++ b/srcpkgs/python3-importlib_metadata/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-importlib_metadata'
 pkgname=python3-importlib_metadata
 version=0.23
-revision=1
+revision=2
 archs=noarch
 wrksrc="importlib_metadata-${version}"
 build_style=python3-module

From 73cc1c05e8e0ccf9063a33dd203d70df2ab135ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 245/865] python-incremental: rebuild for Python 3.8.

---
 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 a1c07042365..70477e26866 100644
--- a/srcpkgs/python-incremental/template
+++ b/srcpkgs/python-incremental/template
@@ -1,7 +1,7 @@
 # Template file for 'python-incremental'
 pkgname=python-incremental
 version=17.5.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="incremental-${version}"
 build_style=python-module

From 82a10b837fff5c5ce2f37ede93dad161025a109c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 246/865] python-inotify: rebuild for Python 3.8.

---
 srcpkgs/python-inotify/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-inotify/template b/srcpkgs/python-inotify/template
index f8e26bcc415..64e48fd9330 100644
--- a/srcpkgs/python-inotify/template
+++ b/srcpkgs/python-inotify/template
@@ -1,7 +1,7 @@
 # Template file for 'python-inotify'
 pkgname=python-inotify
 version=0.9.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="pyinotify-${version}"
 build_style=python-module

From 70f558982c4846e9de5243694f048c7014c7089a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 247/865] python-iptools: rebuild for Python 3.8.

---
 srcpkgs/python-iptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iptools/template b/srcpkgs/python-iptools/template
index 599a85ccdba..3c53013fb9d 100644
--- a/srcpkgs/python-iptools/template
+++ b/srcpkgs/python-iptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iptools'
 pkgname=python-iptools
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9962727fd608ce59af5a55c73c8b4c3d0c17fe71 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 248/865] python3-ipython: rebuild for Python 3.8.

---
 srcpkgs/python3-ipython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template
index 63242f382db..2c08bad1e41 100644
--- a/srcpkgs/python3-ipython/template
+++ b/srcpkgs/python3-ipython/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-ipython'
 pkgname=python3-ipython
 version=7.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipython-${version}"
 build_style=python3-module

From ecafa2b5530001ac56b03e639dff4ae00027d1ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 249/865] python-ipython_genutils: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_genutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_genutils/template b/srcpkgs/python-ipython_genutils/template
index 9af9604ca00..d46a3b0b716 100644
--- a/srcpkgs/python-ipython_genutils/template
+++ b/srcpkgs/python-ipython_genutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_genutils'
 pkgname=python-ipython_genutils
 version=0.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="ipython_genutils-${version}"
 build_style=python-module

From 1349d0a55b00bc5b30629934ad23ae1ed8839d98 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 250/865] python-ipython_ipykernel: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_ipykernel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_ipykernel/template b/srcpkgs/python-ipython_ipykernel/template
index 5ddc333798a..ca17b58c006 100644
--- a/srcpkgs/python-ipython_ipykernel/template
+++ b/srcpkgs/python-ipython_ipykernel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_ipykernel'
 pkgname=python-ipython_ipykernel
 version=4.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipykernel-${version}"
 build_style=python-module

From 1b146320a422b57ba1db41491ccff040d9ee719d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 251/865] python3-irc: rebuild for Python 3.8.

---
 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 eea3a629128..714c11dc943 100644
--- a/srcpkgs/python3-irc/template
+++ b/srcpkgs/python3-irc/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-irc'
 pkgname=python3-irc
 version=17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="irc-${version}"
 build_style=python3-module

From e04c4f250fda964ab555eb6b636f701d995009e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 252/865] python-isbnlib: rebuild for Python 3.8.

---
 srcpkgs/python-isbnlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isbnlib/template b/srcpkgs/python-isbnlib/template
index 3e2f66c6b66..1cc46a060d6 100644
--- a/srcpkgs/python-isbnlib/template
+++ b/srcpkgs/python-isbnlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isbnlib'
 pkgname=python-isbnlib
 version=3.9.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="isbnlib-${version}"
 build_style=python-module

From 2debe6131c52d94acd065961f9ea9ae22176a34c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 253/865] python-iso-8601: rebuild for Python 3.8.

---
 srcpkgs/python-iso-8601/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iso-8601/template b/srcpkgs/python-iso-8601/template
index a483e55b0bd..a841866d439 100644
--- a/srcpkgs/python-iso-8601/template
+++ b/srcpkgs/python-iso-8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iso-8601'
 pkgname=python-iso-8601
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="iso-8601-${version}"
 build_style=python-module

From 8b4be7b5324ac1347d55cc4f4e9eaa552465beec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 254/865] python-isodate: rebuild for Python 3.8.

---
 srcpkgs/python-isodate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isodate/template b/srcpkgs/python-isodate/template
index b2a7eb46591..74e4e813e64 100644
--- a/srcpkgs/python-isodate/template
+++ b/srcpkgs/python-isodate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isodate'
 pkgname=python-isodate
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="isodate-${version}"
 build_style=python-module

From a9c9e144908d37411616dd357e9fdc7575aaa8c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 255/865] python-isort: rebuild for Python 3.8.

---
 srcpkgs/python-isort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isort/template b/srcpkgs/python-isort/template
index df7fcfbf2d2..cd8e43b69ea 100644
--- a/srcpkgs/python-isort/template
+++ b/srcpkgs/python-isort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isort'
 pkgname=python-isort
 version=4.3.21
-revision=1
+revision=2
 archs=noarch
 wrksrc="isort-${version}"
 build_style=python-module

From a81f38d5db390cc4ae2c6be89747bebd3f1f15dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 256/865] python-itsdangerous: rebuild for Python 3.8.

---
 srcpkgs/python-itsdangerous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-itsdangerous/template b/srcpkgs/python-itsdangerous/template
index d1d9234df88..6e6fe5dcb2b 100644
--- a/srcpkgs/python-itsdangerous/template
+++ b/srcpkgs/python-itsdangerous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-itsdangerous'
 pkgname=python-itsdangerous
 version=0.24
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 2d842da30a2a65a2405487fdd5929ca2a0555251 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 257/865] python-iwlib: rebuild for Python 3.8.

---
 srcpkgs/python-iwlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iwlib/template b/srcpkgs/python-iwlib/template
index 2c58d4c8d29..2f4149b4e92 100644
--- a/srcpkgs/python-iwlib/template
+++ b/srcpkgs/python-iwlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iwlib'
 pkgname=python-iwlib
 version=1.6.2
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="iwlib"

From c09cc84b06cf4332a02b0a826494a74c81409175 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 258/865] python-jedi: rebuild for Python 3.8.

---
 srcpkgs/python-jedi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jedi/template b/srcpkgs/python-jedi/template
index 136e6adbea4..a994f0e2861 100644
--- a/srcpkgs/python-jedi/template
+++ b/srcpkgs/python-jedi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jedi'
 pkgname=python-jedi
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 _parsover=0.5.0
 wrksrc="jedi-${version}"

From 235b9031c126ebf53355a5ef0c337423c0df1d95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 259/865] python3-jeepney: rebuild for Python 3.8.

---
 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 2ae308a6fc6..9c5c007aa17 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.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="jeepney-${version}"
 build_style=python3-module

From 4868c0871bc763937dd6b8573e91ee86064e0595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 260/865] python3-jellyfish: rebuild for Python 3.8.

---
 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 dec74539e3f..5d0a614c397 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.7.2
-revision=1
+revision=2
 wrksrc="jellyfish-${version}"
 build_style=python3-module
 pycompile_module="jellyfish"

From a9c225f19782a27d8e5e28a508ea0acc39991390 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 261/865] python-jmespath: rebuild for Python 3.8.

---
 srcpkgs/python-jmespath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jmespath/template b/srcpkgs/python-jmespath/template
index 47508a3a0c2..220f1a33c07 100644
--- a/srcpkgs/python-jmespath/template
+++ b/srcpkgs/python-jmespath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jmespath'
 pkgname=python-jmespath
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jmespath.py-${version}"
 build_style=python-module

From 30e8e2e1619bdf45652db8c6ecdd0e0a4fc90d8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 262/865] python3-josepy: rebuild for Python 3.8.

---
 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 6d6e4547d38..903bd7028ed 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="josepy-${version}"
 build_style=python3-module

From c06d36cf857257f3cf63a7e677498487d37168d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 263/865] python-jsonpointer: rebuild for Python 3.8.

---
 srcpkgs/python-jsonpointer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonpointer/template b/srcpkgs/python-jsonpointer/template
index ed865fbfcba..fd103d123aa 100644
--- a/srcpkgs/python-jsonpointer/template
+++ b/srcpkgs/python-jsonpointer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonpointer'
 pkgname=python-jsonpointer
 version=2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonpointer-${version}"
 build_style=python-module

From be483d0bbf53a22e23a3c2db3d77dc61bff17915 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 264/865] python-jsonrpclib: rebuild for Python 3.8.

---
 srcpkgs/python-jsonrpclib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonrpclib/template b/srcpkgs/python-jsonrpclib/template
index 7253607fe57..a245168a824 100644
--- a/srcpkgs/python-jsonrpclib/template
+++ b/srcpkgs/python-jsonrpclib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonrpclib'
 pkgname=python-jsonrpclib
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonrpclib-pelix-${version}"
 build_style=python-module

From 15ad75adf989474229acc1fdac0c5d5887528bd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 265/865] python-jsonschema: rebuild for Python 3.8.

---
 srcpkgs/python-jsonschema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonschema/template b/srcpkgs/python-jsonschema/template
index 63c30ce6863..326b5609d36 100644
--- a/srcpkgs/python-jsonschema/template
+++ b/srcpkgs/python-jsonschema/template
@@ -2,7 +2,7 @@
 pkgname=python-jsonschema
 reverts="3.0.2_1"
 version=2.6.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="jsonschema-${version}"
 build_style=python-module

From 8bf3797435c040a1682d5e3e4c6c41f650d82b34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 266/865] python-jupyter_client: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_client/template b/srcpkgs/python-jupyter_client/template
index ab5cd0c5b3c..6365dd9e175 100644
--- a/srcpkgs/python-jupyter_client/template
+++ b/srcpkgs/python-jupyter_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_client'
 pkgname=python-jupyter_client
 version=5.2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_client-${version}"
 build_style=python-module

From e732ed651c399cb8d7e96a618444e815bf86ce4b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 267/865] python3-jupyter_console: rebuild for Python 3.8.

---
 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 25b2eda4c2f..3837e5b3bbf 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_console-${version}"
 build_style=python3-module

From b264bc5200c6942b1507777e0bc169838cb6a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 268/865] python-jupyter_core: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_core/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_core/template b/srcpkgs/python-jupyter_core/template
index fcce4e0fe0b..f1629208e86 100644
--- a/srcpkgs/python-jupyter_core/template
+++ b/srcpkgs/python-jupyter_core/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_core'
 pkgname=python-jupyter_core
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_core-${version}"
 build_style=python-module

From 54845c515258535f8793ff37241d0daad10fcddc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 269/865] python-jupyter_ipywidgets: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_ipywidgets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_ipywidgets/template b/srcpkgs/python-jupyter_ipywidgets/template
index 3d511a25152..44570cf390a 100644
--- a/srcpkgs/python-jupyter_ipywidgets/template
+++ b/srcpkgs/python-jupyter_ipywidgets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_ipywidgets'
 pkgname=python-jupyter_ipywidgets
 version=7.4.2
-revision=1
+revision=2
 archs=noarch
 _widgetsnbextver=3.4.0
 wrksrc="ipywidgets-${version}"

From da9dc8f246174d7b5fed1a61f1b4bb127c2bc9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 270/865] python-jupyter_nbconvert: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbconvert/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbconvert/template b/srcpkgs/python-jupyter_nbconvert/template
index 57ac5cce23f..e6cdad7d21c 100644
--- a/srcpkgs/python-jupyter_nbconvert/template
+++ b/srcpkgs/python-jupyter_nbconvert/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbconvert'
 pkgname=python-jupyter_nbconvert
 version=5.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="nbconvert-${version}"
 build_style=python-module

From 8e126f65404eaa5a5b69bca1aa41b4be58abe4b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 271/865] python-jupyter_nbformat: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbformat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbformat/template b/srcpkgs/python-jupyter_nbformat/template
index 11098fd3f90..e2addc8866f 100644
--- a/srcpkgs/python-jupyter_nbformat/template
+++ b/srcpkgs/python-jupyter_nbformat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbformat'
 pkgname=python-jupyter_nbformat
 version=4.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="nbformat-${version}"
 build_style=python-module

From 3d7a11f09a2f159b9e42c935154654a47117f3a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 272/865] python-jupyter_notebook: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_notebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_notebook/template b/srcpkgs/python-jupyter_notebook/template
index c3f478c1fb4..4f6de0f642d 100644
--- a/srcpkgs/python-jupyter_notebook/template
+++ b/srcpkgs/python-jupyter_notebook/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_notebook'
 pkgname=python-jupyter_notebook
 version=5.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="notebook-${version}"
 build_style=python-module

From eab8a5bd67b168048f40a3d2fe199e073715a1b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 273/865] python-jupyter_qtconsole: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_qtconsole/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_qtconsole/template b/srcpkgs/python-jupyter_qtconsole/template
index f8f85534bbd..ea7f89a62af 100644
--- a/srcpkgs/python-jupyter_qtconsole/template
+++ b/srcpkgs/python-jupyter_qtconsole/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_qtconsole'
 pkgname=python-jupyter_qtconsole
 version=4.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="qtconsole-${version}"
 build_style=python-module

From 96c7c1f6f484f9a33a17b0213142b8a97a7c69e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 274/865] python-jupyter_widgetsnbextension: rebuild for Python
 3.8.

---
 srcpkgs/python-jupyter_widgetsnbextension/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_widgetsnbextension/template b/srcpkgs/python-jupyter_widgetsnbextension/template
index dacd88ccb4f..05e9c0d00a3 100644
--- a/srcpkgs/python-jupyter_widgetsnbextension/template
+++ b/srcpkgs/python-jupyter_widgetsnbextension/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_widgetsnbextension'
 pkgname=python-jupyter_widgetsnbextension
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="widgetsnbextension-${version}"
 build_style=python-module

From 6175c117f039e76b8fff45d549f50360a92742b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 275/865] python-kaptan: rebuild for Python 3.8.

---
 srcpkgs/python-kaptan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kaptan/template b/srcpkgs/python-kaptan/template
index 649eeec8568..6668b240008 100644
--- a/srcpkgs/python-kaptan/template
+++ b/srcpkgs/python-kaptan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kaptan'
 pkgname=python-kaptan
 version=0.5.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="kaptan-${version}"
 build_style=python-module

From 6668dcf37c32ef8390c8f45e6cd206d8478b963b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 276/865] python-keepalive: rebuild for Python 3.8.

---
 srcpkgs/python-keepalive/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keepalive/template b/srcpkgs/python-keepalive/template
index deb95a07236..50e1d7e6e78 100644
--- a/srcpkgs/python-keepalive/template
+++ b/srcpkgs/python-keepalive/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keepalive'
 pkgname=python-keepalive
 version=0.5
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9e9d4a781427bc1296f59529a4d83b4a1271c5e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 277/865] python-keyring: rebuild for Python 3.8.

---
 srcpkgs/python-keyring/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyring/template b/srcpkgs/python-keyring/template
index df1c21ee1be..2a87160b04d 100644
--- a/srcpkgs/python-keyring/template
+++ b/srcpkgs/python-keyring/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyring'
 pkgname=python-keyring
 version=18.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyring-${version}"
 build_style=python-module

From 8fea0f10f3e8aebfe92a9d090368b1cda777a405 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 278/865] python3-keyrings-alt: rebuild for Python 3.8.

---
 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 d5820535e54..ed09cfac4a7 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=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyrings.alt-${version}"
 build_style=python3-module

From 271539dc3ed1e21733c374ff971770403194a1d1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 279/865] python-keyutils: rebuild for Python 3.8.

---
 srcpkgs/python-keyutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyutils/template b/srcpkgs/python-keyutils/template
index d56ada0e30e..a72819e963a 100644
--- a/srcpkgs/python-keyutils/template
+++ b/srcpkgs/python-keyutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyutils'
 pkgname=python-keyutils
 version=0.6
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="keyutils"
 hostmakedepends="python-setuptools python3-setuptools"

From 0556a11defcdebd2c4319e286451ce3f45f87ebd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 280/865] python-kitchen: rebuild for Python 3.8.

---
 srcpkgs/python-kitchen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kitchen/template b/srcpkgs/python-kitchen/template
index 2bbd68c13c9..68a46986de9 100644
--- a/srcpkgs/python-kitchen/template
+++ b/srcpkgs/python-kitchen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kitchen'
 pkgname=python-kitchen
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="kitchen-${version}"
 build_style=python-module

From fe5070b00515733fcafbeebc62a10ba2029b40db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 281/865] python-kiwisolver: rebuild for Python 3.8.

---
 srcpkgs/python-kiwisolver/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kiwisolver/template b/srcpkgs/python-kiwisolver/template
index 072bd5af038..67f0805aa51 100644
--- a/srcpkgs/python-kiwisolver/template
+++ b/srcpkgs/python-kiwisolver/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kiwisolver'
 pkgname=python-kiwisolver
 version=1.0.1
-revision=2
+revision=3
 wrksrc="kiwisolver-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From d1c550f6959162ec91e7bb39c54ecdd1d5b7c0ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 282/865] python-lazy-object-proxy: rebuild for Python 3.8.

---
 srcpkgs/python-lazy-object-proxy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lazy-object-proxy/template b/srcpkgs/python-lazy-object-proxy/template
index 07efb7b4777..ab2c6dce05c 100644
--- a/srcpkgs/python-lazy-object-proxy/template
+++ b/srcpkgs/python-lazy-object-proxy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lazy-object-proxy'
 pkgname=python-lazy-object-proxy
 version=1.3.1
-revision=3
+revision=4
 wrksrc="lazy-object-proxy-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e5c9a0cf8e6e0714fba4433b9deb1aaf40d43ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 283/865] python-ldap: rebuild for Python 3.8.

---
 srcpkgs/python-ldap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap/template b/srcpkgs/python-ldap/template
index 7770baa8774..e3efc2fc6b3 100644
--- a/srcpkgs/python-ldap/template
+++ b/srcpkgs/python-ldap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap'
 pkgname=python-ldap
 version=3.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="ldap ldapurl.py ldif.py slapdtest"
 hostmakedepends="python-setuptools python3-setuptools"

From dca16bc247cccf1bc7020afca5594d857514100a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 284/865] python-ldap3: rebuild for Python 3.8.

---
 srcpkgs/python-ldap3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap3/template b/srcpkgs/python-ldap3/template
index 676251a85ff..e8e4cade72b 100644
--- a/srcpkgs/python-ldap3/template
+++ b/srcpkgs/python-ldap3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap3'
 pkgname=python-ldap3
 version=2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ldap3-${version}"
 build_style=python-module

From 8f3e1b0bf64fb527d029fec15229e079f326c373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 285/865] python3-libevdev: rebuild for Python 3.8.

---
 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 0a79893726c..f0295cdee9b 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.8
-revision=1
+revision=2
 _githash=1827bebcf789adee8492cbfcc7cf8d56059a42a4
 wrksrc="python-libevdev-${version}-${_githash}"
 build_style=python3-module

From a5b674c4366c36182e29f21b8071faff59006106 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 286/865] libsmbios: rebuild for Python 3.8.

---
 srcpkgs/libsmbios/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsmbios/template b/srcpkgs/libsmbios/template
index 31d8ffda65f..161cb79deb9 100644
--- a/srcpkgs/libsmbios/template
+++ b/srcpkgs/libsmbios/template
@@ -1,7 +1,7 @@
 # Template file for 'libsmbios'
 pkgname=libsmbios
 version=2.4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--sbindir=/usr/bin --disable-static"
 hostmakedepends="automake doxygen gettext-devel help2man libtool pkg-config"

From 7762c8392d1a03ae7a320bdec0b5402b7147d0b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 287/865] python-libtmux: rebuild for Python 3.8.

---
 srcpkgs/python-libtmux/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-libtmux/template b/srcpkgs/python-libtmux/template
index 36fa7ca7ffd..20f43af5f7d 100644
--- a/srcpkgs/python-libtmux/template
+++ b/srcpkgs/python-libtmux/template
@@ -1,7 +1,7 @@
 # Template file for 'python-libtmux'
 pkgname=python-libtmux
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="libtmux-${version}"
 build_style=python-module

From 16a2a1b8ba0ad9f9032d52092294e8a39041bba2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 288/865] python-llfuse: rebuild for Python 3.8.

---
 srcpkgs/python-llfuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-llfuse/template b/srcpkgs/python-llfuse/template
index 203c5e2fd84..b453c67e91d 100644
--- a/srcpkgs/python-llfuse/template
+++ b/srcpkgs/python-llfuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-llfuse'
 pkgname=python-llfuse
 version=1.3.6
-revision=1
+revision=2
 wrksrc="llfuse-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pkg-config"

From ae7f34ffc994fc4606c9209683fae6625f3e781e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 289/865] python-lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lockfile/template b/srcpkgs/python-lockfile/template
index 4c4612ed144..778cecba7e9 100644
--- a/srcpkgs/python-lockfile/template
+++ b/srcpkgs/python-lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lockfile'
 pkgname=python-lockfile
 version=0.12.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="lockfile-${version}"
 build_style=python-module

From 5fd2f78e26b399ed936b12f51886dae3a8d35cb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 290/865] python-logfury: rebuild for Python 3.8.

---
 srcpkgs/python-logfury/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-logfury/template b/srcpkgs/python-logfury/template
index 4b1c435e34a..1b52d2d7fdf 100644
--- a/srcpkgs/python-logfury/template
+++ b/srcpkgs/python-logfury/template
@@ -1,7 +1,7 @@
 # Template file for 'python-logfury'
 pkgname=python-logfury
 version=0.1.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="logfury-${version}"
 build_style=python-module

From 747dc28bedc27e7b5c8738113573012f545333a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 291/865] python-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lxml/template b/srcpkgs/python-lxml/template
index c3aeabfbf1b..1a6a3ac9113 100644
--- a/srcpkgs/python-lxml/template
+++ b/srcpkgs/python-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lxml'
 pkgname=python-lxml
 version=4.4.1
-revision=1
+revision=2
 wrksrc="lxml-lxml-${version}"
 build_style=python-module
 pycompile_module="lxml"

From ebc274c0463316f63fe99e5df0c704e3d324c885 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 292/865] python-lz4: rebuild for Python 3.8.

---
 srcpkgs/python-lz4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lz4/template b/srcpkgs/python-lz4/template
index dab8e8ed542..76a2e800e38 100644
--- a/srcpkgs/python-lz4/template
+++ b/srcpkgs/python-lz4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lz4'
 pkgname=python-lz4
 version=2.1.6
-revision=2
+revision=3
 wrksrc="lz4-${version}"
 build_style=python-module
 pycompile_module="lz4"

From 8eb3f4d6193b25ae716fa2fdfae1f929deb65a91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 293/865] python3-macaroons: rebuild for Python 3.8.

---
 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 d44100c20f2..420f5aff043 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=1
+revision=2
 archs=noarch
 wrksrc="pymacaroons-${version}"
 build_style=python3-module

From 437e300b76670db404728daad9f6224630daaa3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 294/865] python3-macholib: rebuild for Python 3.8.

---
 srcpkgs/python3-macholib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-macholib/template b/srcpkgs/python3-macholib/template
index a2738f57eb0..525b5f7106b 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.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="macholib-${version}"
 build_style=python3-module

From b08f229d26f5b2c915caabe213234afc1e4002e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 295/865] python-magic: rebuild for Python 3.8.

---
 srcpkgs/python-magic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-magic/template b/srcpkgs/python-magic/template
index 98e3c0802ab..5a59efa4808 100644
--- a/srcpkgs/python-magic/template
+++ b/srcpkgs/python-magic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-magic'
 pkgname=python-magic
 version=0.4.15
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="magic.py"

From c597fee1945d8f994f591622074acf3670a81484 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 296/865] python-marisa-trie: rebuild for Python 3.8.

---
 srcpkgs/python-marisa-trie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-marisa-trie/template b/srcpkgs/python-marisa-trie/template
index bb09c933335..5e46b686ace 100644
--- a/srcpkgs/python-marisa-trie/template
+++ b/srcpkgs/python-marisa-trie/template
@@ -1,7 +1,7 @@
 # Template file for 'python-marisa-trie'
 pkgname=python-marisa-trie
 version=0.7.5
-revision=2
+revision=3
 wrksrc="marisa-trie-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 5366314fc7ba3b340ccf5b4658edff33f5ec148a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 297/865] python-markdown2: rebuild for Python 3.8.

---
 srcpkgs/python-markdown2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-markdown2/template b/srcpkgs/python-markdown2/template
index 2d352ba029d..e9068f64202 100644
--- a/srcpkgs/python-markdown2/template
+++ b/srcpkgs/python-markdown2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-markdown2'
 pkgname=python-markdown2
 version=2.3.8
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="markdown2"

From b56d284bcbb50ddece287bde845145e6481e4d39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 298/865] python3-matplotlib: rebuild for Python 3.8.

---
 srcpkgs/python3-matplotlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template
index 857ba17cacf..be02817a4d3 100644
--- a/srcpkgs/python3-matplotlib/template
+++ b/srcpkgs/python3-matplotlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-matplotlib'
 pkgname=python3-matplotlib
 version=3.1.1
-revision=1
+revision=2
 wrksrc="matplotlib-${version}"
 build_style=python3-module
 pycompile_module="matplotlib mpl_toolkits pylab.py"

From 8b3780e8f6f50712735239defc569952763e8894 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 299/865] python-mccabe: rebuild for Python 3.8.

---
 srcpkgs/python-mccabe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mccabe/template b/srcpkgs/python-mccabe/template
index b6a01929540..1e2ed6328b8 100644
--- a/srcpkgs/python-mccabe/template
+++ b/srcpkgs/python-mccabe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mccabe'
 pkgname=python-mccabe
 version=0.6.1
-revision=2
+revision=3
 archs=noarch
 replaces="mccabe>=0"
 wrksrc="mccabe-${version}"

From 954d38992e9a83e3214b79375b895ee1072db4e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 300/865] python-mechanize: rebuild for Python 3.8.

---
 srcpkgs/python-mechanize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mechanize/template b/srcpkgs/python-mechanize/template
index c5b2b5789a7..ca29bbd0d23 100644
--- a/srcpkgs/python-mechanize/template
+++ b/srcpkgs/python-mechanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mechanize'
 pkgname=python-mechanize
 version=0.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="mechanize-${version}"
 build_style=python-module

From e8762f4af80ad5b1cb6a41af3183141ec903485f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 301/865] python3-minidb: rebuild for Python 3.8.

---
 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 50490794600..140964b7a8a 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.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="minidb-${version}"
 build_style=python3-module

From 93febdb59f89cf4939f3684acd832f879fc774d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 302/865] python-miniupnpc: rebuild for Python 3.8.

---
 srcpkgs/python-miniupnpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-miniupnpc/template b/srcpkgs/python-miniupnpc/template
index 500c217c78e..f7892bab073 100644
--- a/srcpkgs/python-miniupnpc/template
+++ b/srcpkgs/python-miniupnpc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-miniupnpc'
 pkgname=python-miniupnpc
 version=2.0.2
-revision=2
+revision=3
 wrksrc="${pkgname#python-}-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ab280bf26207a66e5e3f418768bf3358cc2c76ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 303/865] python-mistune: rebuild for Python 3.8.

---
 srcpkgs/python-mistune/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mistune/template b/srcpkgs/python-mistune/template
index 0ee8dfde5b1..ef5c054ba75 100644
--- a/srcpkgs/python-mistune/template
+++ b/srcpkgs/python-mistune/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mistune'
 pkgname=python-mistune
 version=0.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="mistune-${version}"
 build_style=python-module

From 05abf67487f6ac161862195dfb2069fade248fbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 304/865] python3-more-itertools: rebuild for Python 3.8.

---
 srcpkgs/python3-more-itertools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-more-itertools/template b/srcpkgs/python3-more-itertools/template
index b089992f84e..a765da98495 100644
--- a/srcpkgs/python3-more-itertools/template
+++ b/srcpkgs/python3-more-itertools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-more-itertools'
 pkgname=python3-more-itertools
 version=7.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python3-module

From efcbd7f439e04ca5dc43be057047c93f1051b5cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 305/865] python-mpd2: rebuild for Python 3.8.

---
 srcpkgs/python-mpd2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template
index 682d9a85f5e..0389f8c2a28 100644
--- a/srcpkgs/python-mpd2/template
+++ b/srcpkgs/python-mpd2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpd2'
 pkgname=python-mpd2
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mpd"

From 507a89e7a29ba5dd81f66830577542bb3a098780 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 306/865] python3-mpi4py: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-mpi4py/template | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/python3-mpi4py/template b/srcpkgs/python3-mpi4py/template
index 94a83b688f2..8f9e76867cc 100644
--- a/srcpkgs/python3-mpi4py/template
+++ b/srcpkgs/python3-mpi4py/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpi4py'
 pkgname=python3-mpi4py
 version=3.0.2
-revision=1
+revision=2
 wrksrc="mpi4py-${version}"
 build_style=python3-module
 pycompile_module="mpi4py"
@@ -15,6 +15,12 @@ homepage="https://bitbucket.org/mpi4py/mpi4py"
 distfiles="$PYPI_SITE/m/mpi4py/mpi4py-${version}.tar.gz"
 checksum=f8d629d1e3e3b7b89cb99d0e3bc5505e76cc42089829807950d5c56606ed48e0
 
+post_extract() {
+	# recythonize
+	rm src/mpi4py/include/mpi4py/mpi4py.MPI.h \
+		src/mpi4py/include/mpi4py/mpi4py.MPI_api.h \
+		src/mpi4py.MPI.c
+}
 post_install() {
 	vlicense LICENSE.rst
 }

From d71d04b6dbfad4ce9460041fe001aab7c4cab301 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 307/865] python-mpmath: rebuild for Python 3.8.

---
 srcpkgs/python-mpmath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpmath/template b/srcpkgs/python-mpmath/template
index b0a38c01514..8fd4873dd62 100644
--- a/srcpkgs/python-mpmath/template
+++ b/srcpkgs/python-mpmath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpmath'
 pkgname=python-mpmath
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="mpmath-${version}"
 build_style=python-module

From f050643cc3d8a1927b2b43a4d6bc3a47fce265d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 308/865] python3-mpv: rebuild for Python 3.8.

---
 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 2780c02610b..1910a4d231d 100644
--- a/srcpkgs/python3-mpv/template
+++ b/srcpkgs/python3-mpv/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpv'
 pkgname=python3-mpv
 version=0.3.9
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-mpv-${version}"
 build_style=python3-module

From 076ab982ba68fae19b6a637c3190d501b6f11afb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 309/865] python-msgpack: rebuild for Python 3.8.

---
 srcpkgs/python-msgpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-msgpack/template b/srcpkgs/python-msgpack/template
index 395d854d638..59571d6a208 100644
--- a/srcpkgs/python-msgpack/template
+++ b/srcpkgs/python-msgpack/template
@@ -2,7 +2,7 @@
 pkgname=python-msgpack
 reverts="0.6.0_1"
 version=0.5.6
-revision=3
+revision=4
 wrksrc="msgpack-${version}"
 build_style=python-module
 pycompile_module="msgpack"

From c0b498d4aabae1c0cc1564a796b43c28045b08f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 310/865] python3-msoffcrypto-tool: rebuild for Python 3.8.

---
 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 5996d3bf355..d1b369fc773 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=4.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="msoffcrypto-tool-${version}"
 build_style=python3-module

From a02ae9dc7e657d6823c09d222a46aaaad0b52e6e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 311/865] python-mtranslate: rebuild for Python 3.8.

---
 srcpkgs/python-mtranslate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mtranslate/template b/srcpkgs/python-mtranslate/template
index d56fa18f0f0..992c7b76fe9 100644
--- a/srcpkgs/python-mtranslate/template
+++ b/srcpkgs/python-mtranslate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mtranslate'
 pkgname=python-mtranslate
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="mtranslate-${version}"
 build_style=python-module

From 1db5126bddf0129431159c083c0e8c7feeda0e24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 312/865] python3-multidict: rebuild for Python 3.8.

---
 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 82888db842f..62054db71f1 100644
--- a/srcpkgs/python3-multidict/template
+++ b/srcpkgs/python3-multidict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-multidict'
 pkgname=python3-multidict
 version=4.5.2
-revision=2
+revision=3
 wrksrc="multidict-${version}"
 build_style=python3-module
 pycompile_module="multidict"

From db397601599182d62444486443fe7887f1bf0869 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 313/865] python3-munkres: rebuild for Python 3.8.

---
 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 15767afe3fe..d0d0a013e80 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python3-module

From f6bec8102ac4a1433f716928258d680f0546e9f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 314/865] python-musicbrainzngs: rebuild for Python 3.8.

---
 srcpkgs/python-musicbrainzngs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-musicbrainzngs/template b/srcpkgs/python-musicbrainzngs/template
index 588c25f7cd8..3d738f0c3c0 100644
--- a/srcpkgs/python-musicbrainzngs/template
+++ b/srcpkgs/python-musicbrainzngs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-musicbrainzngs'
 pkgname=python-musicbrainzngs
 version=0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="musicbrainzngs-${version}"
 build_style="python-module"

From 59d602d19ea627b5ddd3ac33170326df511f1b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 315/865] python3-musicpd: rebuild for Python 3.8.

---
 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 3328b2f4bbf..8c6ba2fb451 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=1
+revision=2
 archs=noarch
 wrksrc="python-musicpd-${version}"
 build_style=python3-module

From e4271deae6b4b0258165475e34a0174f837576d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 316/865] mutagen: rebuild for Python 3.8.

---
 srcpkgs/mutagen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mutagen/template b/srcpkgs/mutagen/template
index cbf05ea8583..8b24cc82dc8 100644
--- a/srcpkgs/mutagen/template
+++ b/srcpkgs/mutagen/template
@@ -1,7 +1,7 @@
 # Template file for 'mutagen'
 pkgname=mutagen
 version=1.42.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mutagen"

From c726c7e86676ccc5612045570a6821438d6541cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 317/865] python-mygpoclient: rebuild for Python 3.8.

---
 srcpkgs/python-mygpoclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mygpoclient/template b/srcpkgs/python-mygpoclient/template
index 3f85c72cc0c..ffad63a70a1 100644
--- a/srcpkgs/python-mygpoclient/template
+++ b/srcpkgs/python-mygpoclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mygpoclient'
 pkgname=python-mygpoclient
 version=1.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="mygpoclient-${version}"
 build_style=python-module

From 1d17c7a2672083ac8c194b767f1be1d8778d6f42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 318/865] python3-mypy: rebuild for Python 3.8.

---
 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 37ecd732c06..564c0a4d47c 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.730
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy-${version}"
 build_style=python3-module

From d44ba12caf9958f6f6d708b0e5061d3ca01990e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 319/865] python3-mypy_extensions: rebuild for Python 3.8.

---
 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 2761924248e..25de48ea141 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy_extensions-${version}"
 build_style=python3-module

From 8c03f1eb83b224187a7b0fb11b5c780c96875438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 320/865] python-mysqlclient: rebuild for Python 3.8.

---
 srcpkgs/python-mysqlclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mysqlclient/template b/srcpkgs/python-mysqlclient/template
index 43fed28d4f0..079666a6dab 100644
--- a/srcpkgs/python-mysqlclient/template
+++ b/srcpkgs/python-mysqlclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mysqlclient'
 pkgname=python-mysqlclient
 version=1.3.14
-revision=2
+revision=3
 wrksrc="mysqlclient-${version}"
 build_style=python-module
 pycompile_module="MySQLdb _mysql_exceptions.py"

From 8b80cedc0b4331f2c1827c959c67be32d904a6b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 321/865] python3-nacl: rebuild for Python 3.8.

---
 srcpkgs/python3-nacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-nacl/template b/srcpkgs/python3-nacl/template
index 5dd6a71ad6a..b59ea0196ac 100644
--- a/srcpkgs/python3-nacl/template
+++ b/srcpkgs/python3-nacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-nacl'
 pkgname=python3-nacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python3-module
 pycompile_module="nacl"

From 4b93d8f922559d3f9f9693969307cdb0dedd22c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 322/865] python-namedlist: rebuild for Python 3.8.

---
 srcpkgs/python-namedlist/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-namedlist/template b/srcpkgs/python-namedlist/template
index 4c6e6f1f3d5..75626b9f6d5 100644
--- a/srcpkgs/python-namedlist/template
+++ b/srcpkgs/python-namedlist/template
@@ -1,7 +1,7 @@
 # Template file for 'python-namedlist'
 pkgname=python-namedlist
 version=1.7
-revision=5
+revision=6
 archs=noarch
 wrksrc="namedlist-${version}"
 build_style=python-module

From 643225c4205051b03e6b58dd88dd0fe79a960880 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 323/865] python-natsort: rebuild for Python 3.8.

---
 srcpkgs/python-natsort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-natsort/template b/srcpkgs/python-natsort/template
index 754ac50c419..7101e297aad 100644
--- a/srcpkgs/python-natsort/template
+++ b/srcpkgs/python-natsort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-natsort'
 pkgname=python-natsort
 version=6.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="natsort-${version}"
 build_style=python-module

From 1b4401089b676f8d76d5cbdf86f7cff95a90063f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 324/865] python-nbxmpp: rebuild for Python 3.8.

---
 srcpkgs/python-nbxmpp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nbxmpp/template b/srcpkgs/python-nbxmpp/template
index 4952ee1e102..8c39a93bca7 100644
--- a/srcpkgs/python-nbxmpp/template
+++ b/srcpkgs/python-nbxmpp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nbxmpp'
 pkgname=python-nbxmpp
 version=0.6.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 1ee192bdc19afbca9bbbc456945aaed8e882dc3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 325/865] python-ndg_httpsclient: rebuild for Python 3.8.

---
 srcpkgs/python-ndg_httpsclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ndg_httpsclient/template b/srcpkgs/python-ndg_httpsclient/template
index 908d7137391..54b653f68a9 100644
--- a/srcpkgs/python-ndg_httpsclient/template
+++ b/srcpkgs/python-ndg_httpsclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ndg_httpsclient'
 pkgname=python-ndg_httpsclient
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ndg_httpsclient-${version}"
 build_style=python-module

From 37b5c7920c617c4f55d5abe58df690c621598a93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 326/865] python3-neovim: rebuild for Python 3.8.

---
 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 44068f17b66..2730cd1b92b 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.3.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="pynvim-${version}"
 build_style="python3-module"

From 8136ec791e98badf101712f4f44830a6721d4849 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 327/865] python-netaddr: rebuild for Python 3.8.

---
 srcpkgs/python-netaddr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netaddr/template b/srcpkgs/python-netaddr/template
index 851095a3c7c..20cc1c93134 100644
--- a/srcpkgs/python-netaddr/template
+++ b/srcpkgs/python-netaddr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netaddr'
 pkgname=python-netaddr
 version=0.7.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="netaddr-${version}"
 build_style=python-module

From ebe247f557b410a62febae438785f8f011964023 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 328/865] python-netifaces: rebuild for Python 3.8.

---
 srcpkgs/python-netifaces/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netifaces/template b/srcpkgs/python-netifaces/template
index b8d6e505879..760f657aaba 100644
--- a/srcpkgs/python-netifaces/template
+++ b/srcpkgs/python-netifaces/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netifaces'
 pkgname=python-netifaces
 version=0.10.9
-revision=1
+revision=2
 wrksrc="netifaces-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 07d0e05094764c4ef127de2a4d489537d8ab5708 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 329/865] python3-networkx: rebuild for Python 3.8.

---
 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 eae29038d94..84acd3e929c 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.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="networkx-${version}"
 build_style=python3-module

From 8a3aeb59a75fbf1b7f0394b94c325ef8827b6b5d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 330/865] python-nose: rebuild for Python 3.8.

---
 srcpkgs/python-nose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose/template b/srcpkgs/python-nose/template
index c9fbe9d28d3..f2cd7fe5c3f 100644
--- a/srcpkgs/python-nose/template
+++ b/srcpkgs/python-nose/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose'
 pkgname=python-nose
 version=1.3.7
-revision=3
+revision=4
 archs=noarch
 wrksrc="nose-${version}"
 build_style=python-module

From f86abdbaaaa9e7e8236c4d39cd7e46a733425805 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 331/865] python-nose2: rebuild for Python 3.8.

---
 srcpkgs/python-nose2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose2/template b/srcpkgs/python-nose2/template
index a9ddf5969a1..058abbd4253 100644
--- a/srcpkgs/python-nose2/template
+++ b/srcpkgs/python-nose2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose2'
 pkgname=python-nose2
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 18b92c10ef3291636c1e7e28d721c5e994bf6302 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 332/865] python-npyscreen: rebuild for Python 3.8.

---
 srcpkgs/python-npyscreen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-npyscreen/template b/srcpkgs/python-npyscreen/template
index 0457fa1aaed..2223850f22e 100644
--- a/srcpkgs/python-npyscreen/template
+++ b/srcpkgs/python-npyscreen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-npyscreen'
 pkgname=python-npyscreen
 version=4.10.5.1
-revision=1
+revision=2
 wrksrc="npyscreen-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 9ea98fac2c37960db9a7b76cea2be115e8a2bed7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 333/865] python-ntplib: rebuild for Python 3.8.

---
 srcpkgs/python-ntplib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ntplib/template b/srcpkgs/python-ntplib/template
index 81bac24971e..0582fb326c1 100644
--- a/srcpkgs/python-ntplib/template
+++ b/srcpkgs/python-ntplib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ntplib'
 pkgname=python-ntplib
 version=0.3.3
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 wrksrc="ntplib-${version}"

From 42e7c3606ad17794721afef48ff01de438abbfde Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 334/865] python-numexpr: rebuild for Python 3.8.

---
 srcpkgs/python-numexpr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numexpr/template b/srcpkgs/python-numexpr/template
index 1db40092411..baf91175a33 100644
--- a/srcpkgs/python-numexpr/template
+++ b/srcpkgs/python-numexpr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numexpr'
 pkgname=python-numexpr
 version=2.7.0
-revision=1
+revision=2
 wrksrc="numexpr-${version}"
 build_style=python-module
 pycompile_module="numexpr"

From 30d9e4a8b4a096dfdf5ebfa58ffcadefb1dc1208 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 335/865] python3-numpy: rebuild for Python 3.8.

---
 srcpkgs/python3-numpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-numpy/template b/srcpkgs/python3-numpy/template
index c4c1936cc0d..f5e8ce2cc32 100644
--- a/srcpkgs/python3-numpy/template
+++ b/srcpkgs/python3-numpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-numpy'
 pkgname=python3-numpy
 version=1.17.2
-revision=1
+revision=2
 wrksrc="numpy-${version}"
 build_style=python3-module
 pycompile_module="numpy"

From 0172497dfdbc4c61b890a5cb33fdf7a4c4f8d99a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 336/865] python-numpy-stl: rebuild for Python 3.8.

---
 srcpkgs/python-numpy-stl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numpy-stl/template b/srcpkgs/python-numpy-stl/template
index 3eed838e4f6..cce1a8ead1f 100644
--- a/srcpkgs/python-numpy-stl/template
+++ b/srcpkgs/python-numpy-stl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numpy-stl'
 pkgname=python-numpy-stl
 version=2.10.1
-revision=1
+revision=2
 wrksrc="numpy-stl-v${version}"
 build_style=python-module
 pycompile_module="stl"

From f24b29a48d74aeaddb7b697a5daffdddbd861096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 337/865] python-oauth2client: rebuild for Python 3.8.

---
 srcpkgs/python-oauth2client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauth2client/template b/srcpkgs/python-oauth2client/template
index fd135e4e98f..2398adba276 100644
--- a/srcpkgs/python-oauth2client/template
+++ b/srcpkgs/python-oauth2client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauth2client'
 pkgname=python-oauth2client
 version=4.1.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 4c0ff2a063a36adf86c97b9d4c835ca20b5edfc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 338/865] python-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauthlib/template b/srcpkgs/python-oauthlib/template
index 5bbaa7df29b..036f1b31c92 100644
--- a/srcpkgs/python-oauthlib/template
+++ b/srcpkgs/python-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauthlib'
 pkgname=python-oauthlib
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 661bc27cfe08965221daa2747362d72e4fc27178 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 339/865] python-olefile: rebuild for Python 3.8.

---
 srcpkgs/python-olefile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-olefile/template b/srcpkgs/python-olefile/template
index 4346cfcf667..803d7b67cd8 100644
--- a/srcpkgs/python-olefile/template
+++ b/srcpkgs/python-olefile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-olefile'
 pkgname=python-olefile
 version=0.46
-revision=1
+revision=2
 archs=noarch
 wrksrc="olefile-${version}"
 build_style=python-module

From 81ad48cc99baa98fff2bb93d2c9ddbfe5bd36422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 340/865] python3-oletools: rebuild for Python 3.8.

---
 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 af9a91ff273..a4fda46427b 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.54.2b
-revision=1
+revision=2
 archs=noarch
 wrksrc="oletools-${version}"
 build_style=python3-module

From 0ae1454dacdb40d36d6c46872241d8b7f943ac15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 341/865] openrazer-meta: rebuild for Python 3.8.

---
 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 d4bd24878b2..112cb9e900b 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=1
+revision=2
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 827b1a86d790e29df3f5448f95b7d7583439ebc7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 342/865] python-openssl: rebuild for Python 3.8.

---
 srcpkgs/python-openssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-openssl/template b/srcpkgs/python-openssl/template
index 94bccaa166f..8aabda074fa 100644
--- a/srcpkgs/python-openssl/template
+++ b/srcpkgs/python-openssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-openssl'
 pkgname=python-openssl
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyOpenSSL-${version}"
 build_style=python-module

From 0b35d1d0b8e9ec0f17cb71edb12538b78cf15fa9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 343/865] python3-orocos-kdl: rebuild for Python 3.8.

---
 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 df3e27d5e7b..85b573b2fa4 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=1
+revision=2
 wrksrc=orocos_kinematics_dynamics-${version}
 build_wrksrc=python_orocos_kdl
 build_style=cmake

From 1f599cbc677804bd62252474063a3f44bab1963f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 344/865] python3-owm: rebuild for Python 3.8.

---
 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 d51e01831e6..acdb960ab45 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=1
+revision=2
 wrksrc="pyowm-${version}"
 build_style=python3-module
 pycompile_module="pyowm"

From 04d5ca1141107a7e08a15eccec26eae0cef6ddfc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 345/865] python-packaging: rebuild for Python 3.8.

---
 srcpkgs/python-packaging/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-packaging/template b/srcpkgs/python-packaging/template
index 505631bb29c..06042d12b90 100644
--- a/srcpkgs/python-packaging/template
+++ b/srcpkgs/python-packaging/template
@@ -1,7 +1,7 @@
 # Template file for 'python-packaging'
 pkgname=python-packaging
 version=19.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="packaging-${version}"
 build_style=python-module

From 3d4f635d1909bcc10be550a6ba92c93bab657d24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 346/865] python-pam: rebuild for Python 3.8.

---
 srcpkgs/python-pam/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pam/template b/srcpkgs/python-pam/template
index e696a05ae7f..28c22cfd6ea 100644
--- a/srcpkgs/python-pam/template
+++ b/srcpkgs/python-pam/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pam'
 pkgname=python-pam
 version=1.8.4
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="pam.py"

From 7906adb846a053b93372b360401c778862703de5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 347/865] python3-pandas: rebuild for Python 3.8.

---
 srcpkgs/python3-pandas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pandas/template b/srcpkgs/python3-pandas/template
index ad282b4d5d4..10f9d5a77d9 100644
--- a/srcpkgs/python3-pandas/template
+++ b/srcpkgs/python3-pandas/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pandas'
 pkgname=python3-pandas
 version=0.25.1
-revision=1
+revision=2
 wrksrc="pandas-${version}"
 build_style=python3-module
 pycompile_module="pandas"

From 5f63764964faf4b0d244098f5f64ba1225e14c5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 348/865] python-pandocfilters: rebuild for Python 3.8.

---
 srcpkgs/python-pandocfilters/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pandocfilters/template b/srcpkgs/python-pandocfilters/template
index a7a3d442052..8650d20256f 100644
--- a/srcpkgs/python-pandocfilters/template
+++ b/srcpkgs/python-pandocfilters/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pandocfilters'
 pkgname=python-pandocfilters
 version=1.4.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="pandocfilters-${version}"
 build_style=python-module

From cedefda1104de9c58b20c6b7e1d8a0f4d5385b24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 349/865] python-paramiko: rebuild for Python 3.8.

---
 srcpkgs/python-paramiko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-paramiko/template b/srcpkgs/python-paramiko/template
index c512ceb951f..d6f75508a03 100644
--- a/srcpkgs/python-paramiko/template
+++ b/srcpkgs/python-paramiko/template
@@ -1,7 +1,7 @@
 # Template file for 'python-paramiko'
 pkgname=python-paramiko
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 6c5cdbb0603a5742137ad2399e1f282d7135ecbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 350/865] python-parse: rebuild for Python 3.8.

---
 srcpkgs/python-parse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parse/template b/srcpkgs/python-parse/template
index 298d0b65e78..ded581b4420 100644
--- a/srcpkgs/python-parse/template
+++ b/srcpkgs/python-parse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parse'
 pkgname=python-parse
 version=1.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="parse-${version}"
 build_style=python-module

From 06c32d13c6ecc8f5c59fd3d28c856cddb7e55b69 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 351/865] python3-parsedatetime: rebuild for Python 3.8.

---
 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 d3ac21d7d34..34e9ba0f416 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="parsedatetime-${version}"
 build_style=python3-module

From 149092afd6b238ec9977aa2ba8d8f244d5357e67 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 352/865] python-parsing: rebuild for Python 3.8.

---
 srcpkgs/python-parsing/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parsing/template b/srcpkgs/python-parsing/template
index 0cc744eaf79..bd6cf2c2238 100644
--- a/srcpkgs/python-parsing/template
+++ b/srcpkgs/python-parsing/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parsing'
 pkgname=python-parsing
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyparsing-pyparsing_${version}"
 build_style=python-module

From c302574bea31ba81d3f2e4d6c1b8b8212592985d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 353/865] python-parso: rebuild for Python 3.8.

---
 srcpkgs/python-parso/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parso/template b/srcpkgs/python-parso/template
index 20e5fe306c0..1959b42622a 100644
--- a/srcpkgs/python-parso/template
+++ b/srcpkgs/python-parso/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parso'
 pkgname=python-parso
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="parso-${version}"
 build_style=python-module

From 6b9c95f942435b16d67021b0ce8f182c24bb943f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 354/865] python-passlib: rebuild for Python 3.8.

---
 srcpkgs/python-passlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-passlib/template b/srcpkgs/python-passlib/template
index 3af12ce7b1b..f46a3e92642 100644
--- a/srcpkgs/python-passlib/template
+++ b/srcpkgs/python-passlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-passlib'
 pkgname=python-passlib
 version=1.7.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="passlib-${version}"
 build_style=python-module

From 49600da0619f7152e3ea828c366d9a4680ebac40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 355/865] python-pathlib2: rebuild for Python 3.8.

---
 srcpkgs/python-pathlib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathlib2/template b/srcpkgs/python-pathlib2/template
index bb7bec778f5..fa600b78fbe 100644
--- a/srcpkgs/python-pathlib2/template
+++ b/srcpkgs/python-pathlib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathlib2'
 pkgname=python-pathlib2
 version=2.3.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pathlib2-${version}"
 build_style=python-module

From a0a108aec87134d5b6d2e03e731f48739e1226c0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 356/865] python-pathspec: rebuild for Python 3.8.

---
 srcpkgs/python-pathspec/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathspec/template b/srcpkgs/python-pathspec/template
index 7c5fe04097a..2fa8fa1a811 100644
--- a/srcpkgs/python-pathspec/template
+++ b/srcpkgs/python-pathspec/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathspec'
 pkgname=python-pathspec
 version=0.5.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathspec-${version}"
 build_style=python-module

From c66de315dc6f359ddb581056e8ef350e92acb135 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 357/865] python-pathtools: rebuild for Python 3.8.

---
 srcpkgs/python-pathtools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathtools/template b/srcpkgs/python-pathtools/template
index 218e6ed2f57..47dc6ef6a71 100644
--- a/srcpkgs/python-pathtools/template
+++ b/srcpkgs/python-pathtools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathtools'
 pkgname=python-pathtools
 version=0.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathtools-${version}"
 build_style=python-module

From d3d8ba877ce3e383a472c68a51b4eb6138da7d25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 358/865] python-pbkdf2: rebuild for Python 3.8.

---
 srcpkgs/python-pbkdf2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pbkdf2/template b/srcpkgs/python-pbkdf2/template
index edc50f824c2..956d0b4cad9 100644
--- a/srcpkgs/python-pbkdf2/template
+++ b/srcpkgs/python-pbkdf2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pbkdf2'
 pkgname=python-pbkdf2
 version=1.3
-revision=3
+revision=4
 archs=noarch
 wrksrc="pbkdf2-${version}"
 build_style=python-module

From 92b150f4aee95d71074c2bc7e253e089372033b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 359/865] python-pbr: rebuild for Python 3.8.

---
 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 7ab0b39539f..9c7216056fe 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.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pbr-${version}"
 build_style=python-module

From a5f7f198ba9557855d1662cf7b3d806286d735b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 360/865] python3-pcodedmp: rebuild for Python 3.8.

---
 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 efe8cc83ee7..eb52c809fae 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=1
+revision=2
 archs=noarch
 wrksrc="pcodedmp-${version}"
 build_style=python3-module

From c6f7d3cab5a62a3302eedc82e3ce1b5af007e967 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 361/865] python-pdfrw: rebuild for Python 3.8.

---
 srcpkgs/python-pdfrw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pdfrw/template b/srcpkgs/python-pdfrw/template
index ddb43b928fc..ef7db98e491 100644
--- a/srcpkgs/python-pdfrw/template
+++ b/srcpkgs/python-pdfrw/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pdfrw'
 pkgname=python-pdfrw
 version=0.4
-revision=2
+revision=3
 archs=noarch
 replaces="python-pdfrw-example<${version}_${revision}"
 wrksrc="${pkgname/python-//}-${version}"

From 8f02a9d6b13212de51e3921f641914d153244a1d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 362/865] python-peewee: rebuild for Python 3.8.

---
 srcpkgs/python-peewee/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-peewee/template b/srcpkgs/python-peewee/template
index 9b07ed413b9..de0068a330e 100644
--- a/srcpkgs/python-peewee/template
+++ b/srcpkgs/python-peewee/template
@@ -1,7 +1,7 @@
 # Template file for 'python-peewee'
 pkgname=python-peewee
 version=3.11.2
-revision=1
+revision=2
 wrksrc="peewee-${version}"
 build_style=python-module
 pycompile_module="playhouse peewee.py pwiz.py"

From 8c541b3666a838b55909e5f7ca46b7318c1e315e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 363/865] python3-pefile: rebuild for Python 3.8.

---
 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 305d64e0758..8791f06640b 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=1
+revision=2
 archs=noarch
 wrksrc="pefile-${version}"
 build_style=python3-module

From edc8e4f2bb803865815c3d0bd64a2e50bfdf5da8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 364/865] python3-pem: rebuild for Python 3.8.

---
 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 3517c80b66a..15417666597 100644
--- a/srcpkgs/python3-pem/template
+++ b/srcpkgs/python3-pem/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pem'
 pkgname=python3-pem
 version=19.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pem-${version}"
 build_style=python3-module

From 164760eb3d8d28400ea4be2967d7678696839866 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 365/865] python-pex: rebuild for Python 3.8.

---
 srcpkgs/python-pex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pex/template b/srcpkgs/python-pex/template
index 4beafcf7b4b..e36ccda8180 100644
--- a/srcpkgs/python-pex/template
+++ b/srcpkgs/python-pex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pex'
 pkgname=python-pex
 version=1.6.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="pex-${version}"
 build_style=python-module

From b4043ec822756e0711d025e31db342f81853fc0b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 366/865] python-pexpect: rebuild for Python 3.8.

---
 srcpkgs/python-pexpect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pexpect/template b/srcpkgs/python-pexpect/template
index 8d03a1945f3..03102c3d294 100644
--- a/srcpkgs/python-pexpect/template
+++ b/srcpkgs/python-pexpect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pexpect'
 pkgname=python-pexpect
 version=4.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pexpect-${version}"
 build_style=python-module

From 50f6291ca752dc88af34a7df4987b99f11369c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 367/865] python-pgmigrate: rebuild for Python 3.8.

---
 srcpkgs/python-pgmigrate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgmigrate/template b/srcpkgs/python-pgmigrate/template
index b441ba2a89f..767b6cf8921 100644
--- a/srcpkgs/python-pgmigrate/template
+++ b/srcpkgs/python-pgmigrate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgmigrate'
 pkgname=python-pgmigrate
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgmigrate-${version}"
 build_style=python-module

From 19bc6f8c731b45f52c358d34830221558e54f36f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 368/865] python-pgpdump: rebuild for Python 3.8.

---
 srcpkgs/python-pgpdump/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgpdump/template b/srcpkgs/python-pgpdump/template
index 58be9116feb..a28b6e209e7 100644
--- a/srcpkgs/python-pgpdump/template
+++ b/srcpkgs/python-pgpdump/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgpdump'
 pkgname=python-pgpdump
 version=1.5
-revision=5
+revision=6
 archs=noarch
 build_style=python-module
 pycompile_module="pgpdump"

From d3bc17a7484bd198f2f0e5d449b183920ca6ef9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 369/865] python3-pgspecial: rebuild for Python 3.8.

---
 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 dc52d12c214..c4f67a707f1 100644
--- a/srcpkgs/python3-pgspecial/template
+++ b/srcpkgs/python3-pgspecial/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pgspecial'
 pkgname=python3-pgspecial
 version=1.11.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgspecial-${version}"
 build_style=python3-module

From 630e0f8ca443d21d7a84c4cb44ab119db356b6fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 370/865] python3-pgzero: rebuild for Python 3.8.

---
 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 9653505acda..8b8f477112d 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgzero-${version}"
 build_style=python3-module

From b39841f2f8458d2865aac460282b318538b727c4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 371/865] python3-phonenumbers: rebuild for Python 3.8.

---
 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 ebf33f226e4..7b4e889fd8d 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.10.20
-revision=1
+revision=2
 archs=noarch
 wrksrc="phonenumbers-${version}"
 build_style=python3-module

From c4dbacfe25a16b0526190c66a838b7e407125426 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 372/865] python-picamera: rebuild for Python 3.8.

---
 srcpkgs/python-picamera/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-picamera/template b/srcpkgs/python-picamera/template
index 92bc2a57a6d..e3c9a17bfdc 100644
--- a/srcpkgs/python-picamera/template
+++ b/srcpkgs/python-picamera/template
@@ -1,7 +1,7 @@
 # Template file for 'python-picamera'
 pkgname=python-picamera
 version=1.13
-revision=1
+revision=2
 archs=noarch
 wrksrc="picamera-${version}"
 build_style=python-module

From 29473c016c6cd2d720c417714e89e9eaba3b321e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 373/865] python-pickleshare: rebuild for Python 3.8.

---
 srcpkgs/python-pickleshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pickleshare/template b/srcpkgs/python-pickleshare/template
index 2485c95230a..c1d86826c15 100644
--- a/srcpkgs/python-pickleshare/template
+++ b/srcpkgs/python-pickleshare/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pickleshare'
 pkgname=python-pickleshare
 version=0.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pickleshare-${version}"
 build_style=python-module

From 7c358da397b1273369bbeb98240a250157d4fe9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 374/865] python3-pillow-simd: rebuild for Python 3.8.

---
 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 7bab9fb20c3..4c756b07c79 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=5.3.0.post1
-revision=1
+revision=2
 archs="x86_64*"
 wrksrc="pillow-simd-${version}"
 build_style=python3-module

From 06b38c4e7a2c4a5ec22c8a9c530dbe56d846260f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 375/865] python-pip: rebuild for Python 3.8.

---
 srcpkgs/python-pip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pip/template b/srcpkgs/python-pip/template
index 75f11561816..9d4607095c7 100644
--- a/srcpkgs/python-pip/template
+++ b/srcpkgs/python-pip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pip'
 pkgname=python-pip
 version=19.2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pip-${version}"
 build_style=python-module

From 16067b9358434ea80b4b86a4dcd5a60f6b9e575b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 376/865] python-pipenv: rebuild for Python 3.8.

---
 srcpkgs/python-pipenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pipenv/template b/srcpkgs/python-pipenv/template
index e7ce3922875..210a0813673 100644
--- a/srcpkgs/python-pipenv/template
+++ b/srcpkgs/python-pipenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pipenv'
 pkgname=python-pipenv
 version=2018.11.26
-revision=3
+revision=4
 archs=noarch
 wrksrc="pipenv-${version}"
 build_style=python-module

From cb995aed1307a20f4ffe7746dbe54e4099ce9670 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 377/865] python-pkgconfig: rebuild for Python 3.8.

---
 srcpkgs/python-pkgconfig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pkgconfig/template b/srcpkgs/python-pkgconfig/template
index 13e1dcd3bf7..e9e5480907d 100644
--- a/srcpkgs/python-pkgconfig/template
+++ b/srcpkgs/python-pkgconfig/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pkgconfig'
 pkgname=python-pkgconfig
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pkgconfig-${version}"
 build_style=python-module

From f284340f35211b5c0879b7a5338c325e6cfe62da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 378/865] python-plotly: rebuild for Python 3.8.

---
 srcpkgs/python-plotly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-plotly/template b/srcpkgs/python-plotly/template
index fbbb3a3a520..1593b108f7a 100644
--- a/srcpkgs/python-plotly/template
+++ b/srcpkgs/python-plotly/template
@@ -1,7 +1,7 @@
 # Template file for 'python-plotly'
 pkgname=python-plotly
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 #wrksrc="${pkgname#*-}-${version}"
 wrksrc="plotly.py-${version}"

From ee0d515dc265db17d6c90029fc5ffad4fbfb17ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 379/865] python3-pluggy: rebuild for Python 3.8.

---
 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 37ebc2dae40..6f97cb25f21 100644
--- a/srcpkgs/python3-pluggy/template
+++ b/srcpkgs/python3-pluggy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pluggy'
 pkgname=python3-pluggy
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python3-module

From 60f109b4924812d3cbb6107b8d070a2fdb642962 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 380/865] python-ply: rebuild for Python 3.8.

---
 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 034fbcfa531..04a3defa6aa 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=1
+revision=2
 archs=noarch
 wrksrc="ply-${version}"
 build_style=python-module

From 95b0bc668a60a91dbbd68944bdc712d271e93723 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 381/865] python3-pmw: rebuild for Python 3.8.

---
 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 646e7129443..289b5ef1d0d 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=1
+revision=2
 archs=noarch
 short_desc="Python 3 Tkinter widget toolkit"
 homepage="http://pmw.sourceforge.net/"

From 760b2aa66f385f882c6da4545bc93c906a387d73 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 382/865] python-podcastparser: rebuild for Python 3.8.

---
 srcpkgs/python-podcastparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-podcastparser/template b/srcpkgs/python-podcastparser/template
index e4847d3ed65..61702f0d28b 100644
--- a/srcpkgs/python-podcastparser/template
+++ b/srcpkgs/python-podcastparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-podcastparser'
 pkgname=python-podcastparser
 version=0.6.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="podcastparser-${version}"
 build_style=python-module

From e0ad0641945e1dea937fb2ca555a61603e4560b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 383/865] python-polib: rebuild for Python 3.8.

---
 srcpkgs/python-polib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-polib/template b/srcpkgs/python-polib/template
index b0ade05d90d..8b8d4b66c68 100644
--- a/srcpkgs/python-polib/template
+++ b/srcpkgs/python-polib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-polib'
 pkgname=python-polib
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="polib-${version}"
 build_style=python-module

From 0030be5c9ea47539a72b9d5b5131abeac8412e47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 384/865] python-portend: rebuild for Python 3.8.

---
 srcpkgs/python-portend/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python-portend/template b/srcpkgs/python-portend/template
index 216ae413d09..0538f68083f 100644
--- a/srcpkgs/python-portend/template
+++ b/srcpkgs/python-portend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-portend'
 pkgname=python-portend
 version=2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="portend-${version}"
 build_style=python-module
@@ -14,7 +14,7 @@ license="MIT"
 homepage="https://github.com/jaraco/portend"
 changelog="https://github.com/jaraco/portend/blob/master/CHANGES.rst"
 distfiles="https://github.com/jaraco/portend/archive/${version}.tar.gz"
-checksum=61aa1a8fd76d64bd6093e4151a2bfeda177d5083bf2e2bcc92a053bd2104fde3
+checksum=c0740375a19168e117d291e7ed307e985d2c0e2dc732ca97444bc58a28076dfa
 
 pre_build() {
 	sed -i setup.py \

From 86c2211e1837e156275077b9efe1e25572514867 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 385/865] python-prctl: rebuild for Python 3.8.

---
 srcpkgs/python-prctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prctl/template b/srcpkgs/python-prctl/template
index 2b420d655cf..e8bf54b98fd 100644
--- a/srcpkgs/python-prctl/template
+++ b/srcpkgs/python-prctl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prctl'
 pkgname=python-prctl
 version=1.7
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="prctl.py"
 hostmakedepends="python-setuptools python3-setuptools libcap-devel"

From e7c53afc196d066076f9117158bd6a0b7b28bf52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 386/865] python3-precis-i18n: rebuild for Python 3.8.

---
 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 19612bc818b..be7bb0b0b56 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=1
+revision=2
 archs=noarch
 wrksrc="precis_i18n-${version}"
 build_style=python3-module

From fc6a6a6ae9e2454bc6e5aa117ab2f5f747f1c3d2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 387/865] python-pretend: rebuild for Python 3.8.

---
 srcpkgs/python-pretend/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pretend/template b/srcpkgs/python-pretend/template
index 9a647271b57..6d8063fc43a 100644
--- a/srcpkgs/python-pretend/template
+++ b/srcpkgs/python-pretend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pretend'
 pkgname=python-pretend
 version=1.0.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pretend-${version}"
 build_style=python-module

From 990266b8ce207f64d2a8e2f2f2c11473236e4a2d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 388/865] python-progress: rebuild for Python 3.8.

---
 srcpkgs/python-progress/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-progress/template b/srcpkgs/python-progress/template
index 7d3924e3618..0d6bd1db69d 100644
--- a/srcpkgs/python-progress/template
+++ b/srcpkgs/python-progress/template
@@ -1,7 +1,7 @@
 # Template file for 'python-progress'
 pkgname=python-progress
 version=1.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="progress-${version}"
 build_style=python-module

From 1259abece823637c18eaca058493cebdf15842ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 389/865] python-prometheus_client: rebuild for Python 3.8.

---
 srcpkgs/python-prometheus_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prometheus_client/template b/srcpkgs/python-prometheus_client/template
index 46df561f7d4..7b71fbeffc2 100644
--- a/srcpkgs/python-prometheus_client/template
+++ b/srcpkgs/python-prometheus_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prometheus_client'
 pkgname=python-prometheus_client
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="prometheus_client-${version}"
 build_style=python-module

From 67527aa7cf723b45f2c49017717337d56884bf4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 390/865] python-prompt_toolkit1: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit1/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit1/template b/srcpkgs/python-prompt_toolkit1/template
index d117d620ba5..7afe6179f33 100644
--- a/srcpkgs/python-prompt_toolkit1/template
+++ b/srcpkgs/python-prompt_toolkit1/template
@@ -2,7 +2,7 @@
 pkgname=python-prompt_toolkit1
 reverts="2.0.9_1"
 version=1.0.15
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From ad672131c8ab27e3e4dfa04ab7264c23d46f206e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 391/865] python-prompt_toolkit2: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit2/template b/srcpkgs/python-prompt_toolkit2/template
index 0fa71fa06dc..d7f2fd11e14 100644
--- a/srcpkgs/python-prompt_toolkit2/template
+++ b/srcpkgs/python-prompt_toolkit2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prompt_toolkit2'
 pkgname=python-prompt_toolkit2
 version=2.0.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From 2d3dfe28989a26dbea6bd90097a7a4046839373e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 392/865] python-proselint: rebuild for Python 3.8.

---
 srcpkgs/python-proselint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-proselint/template b/srcpkgs/python-proselint/template
index c017c497386..b1da90de474 100644
--- a/srcpkgs/python-proselint/template
+++ b/srcpkgs/python-proselint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-proselint'
 pkgname=python-proselint
 version=0.10.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="proselint-${version}"
 build_style=python-module

From 3dceefa27e529cfd28f51c8b96cec007bd4464e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 393/865] python-protobuf: rebuild for Python 3.8.

---
 srcpkgs/python-protobuf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-protobuf/template b/srcpkgs/python-protobuf/template
index 4b736f1e7af..7dbed97fb76 100644
--- a/srcpkgs/python-protobuf/template
+++ b/srcpkgs/python-protobuf/template
@@ -1,7 +1,7 @@
 # Template file for 'python-protobuf'
 pkgname=python-protobuf
 version=3.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="protobuf-${version}"
 build_style=python-module

From abc13cfff04878580efaf4333ca9548112b11049 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 394/865] python-psutil: rebuild for Python 3.8.

---
 srcpkgs/python-psutil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psutil/template b/srcpkgs/python-psutil/template
index 96cbb3c399f..11353ed2179 100644
--- a/srcpkgs/python-psutil/template
+++ b/srcpkgs/python-psutil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psutil'
 pkgname=python-psutil
 version=5.6.3
-revision=1
+revision=2
 wrksrc="psutil-${version}"
 build_style=python-module
 pycompile_module="psutil"

From 970bcf29dafb825894593f644c2fb7b4f1b86aff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 395/865] python-psycopg2: rebuild for Python 3.8.

---
 srcpkgs/python-psycopg2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psycopg2/template b/srcpkgs/python-psycopg2/template
index f41de2880e6..14b28b8aed1 100644
--- a/srcpkgs/python-psycopg2/template
+++ b/srcpkgs/python-psycopg2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psycopg2'
 pkgname=python-psycopg2
 version=2.8.3
-revision=1
+revision=2
 wrksrc="psycopg2-${version}"
 build_style=python-module
 pycompile_module="psycopg2"

From f987fad321d899f07d159588838ad3f3bfd1eb12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 396/865] python-ptyprocess: rebuild for Python 3.8.

---
 srcpkgs/python-ptyprocess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ptyprocess/template b/srcpkgs/python-ptyprocess/template
index 04c4cf89391..fd2e51fa3ac 100644
--- a/srcpkgs/python-ptyprocess/template
+++ b/srcpkgs/python-ptyprocess/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ptyprocess'
 pkgname=python-ptyprocess
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ptyprocess-${version}"
 build_style=python-module

From 6854ff4b103875e8ed393d695b71afd7a2589626 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 397/865] python3-pulsectl: rebuild for Python 3.8.

---
 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 429dd1abe45..045afdb411b 100644
--- a/srcpkgs/python3-pulsectl/template
+++ b/srcpkgs/python3-pulsectl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pulsectl'
 pkgname=python3-pulsectl
 version=19.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pulsectl-${version}"
 build_style=python3-module

From e8331ef1c889bc2b1756c6ed55a1cc93186445af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 398/865] python-py: rebuild for Python 3.8.

---
 srcpkgs/python-py/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-py/template b/srcpkgs/python-py/template
index 99644bc228a..07a1ae2a21b 100644
--- a/srcpkgs/python-py/template
+++ b/srcpkgs/python-py/template
@@ -1,7 +1,7 @@
 # Template file for 'python-py'
 pkgname=python-py
 version=1.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="py-${version}"
 build_style=python-module

From 1f71c5025d9cb40d86e4245b6a90731b3f25c6fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 399/865] python-pyPEG2: rebuild for Python 3.8.

---
 srcpkgs/python-pyPEG2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyPEG2/template b/srcpkgs/python-pyPEG2/template
index 113948af730..6ba175687f1 100644
--- a/srcpkgs/python-pyPEG2/template
+++ b/srcpkgs/python-pyPEG2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyPEG2'
 pkgname=python-pyPEG2
 version=2.15.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 3f82483327ba7958b0a6f8b67e63abf009c360ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 400/865] python-pyacoustid: rebuild for Python 3.8.

---
 srcpkgs/python-pyacoustid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyacoustid/template b/srcpkgs/python-pyacoustid/template
index 068d3d52649..d5b2d967f4e 100644
--- a/srcpkgs/python-pyacoustid/template
+++ b/srcpkgs/python-pyacoustid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyacoustid'
 pkgname=python-pyacoustid
 version=1.1.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyacoustid-${version}"
 build_style=python-module

From da477a37411d7cf0d00da2dea60d734072705be7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 401/865] python-pyaes: rebuild for Python 3.8.

---
 srcpkgs/python-pyaes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyaes/template b/srcpkgs/python-pyaes/template
index a8c812a9e01..d31766d0481 100644
--- a/srcpkgs/python-pyaes/template
+++ b/srcpkgs/python-pyaes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyaes'
 pkgname=python-pyaes
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyaes-${version}"
 build_style=python-module

From 9e2b6fe7e7b67777d70eb25705c27d4ed6462a3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 402/865] python-pyasn1: rebuild for Python 3.8.

---
 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 510dfa09816..fcddad43633 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyasn1-${version}"
 build_style=python-module

From 712c6a81632d8741a302138a46ffd3b1c8fb079f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 403/865] python-pyasn1-modules: rebuild for Python 3.8.

---
 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 bc19e4940ed..b142819a272 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 989e8e1bc0a51f2fa1a88ec8f99eae20dd3e21ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 404/865] python3-pycares: rebuild for Python 3.8.

---
 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 c52702904b4..ed82808bada 100644
--- a/srcpkgs/python3-pycares/template
+++ b/srcpkgs/python3-pycares/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pycares'
 pkgname=python3-pycares
 version=2.3.0
-revision=2
+revision=3
 wrksrc="pycares-${version}"
 build_style=python3-module
 pycompile_module="pycares"

From 0885c6a30ff0765b465e0e4c84803b48b9090dc5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 405/865] python-pycodestyle: rebuild for Python 3.8.

---
 srcpkgs/python-pycodestyle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycodestyle/template b/srcpkgs/python-pycodestyle/template
index ca20d8e0c97..08bc8c8bec7 100644
--- a/srcpkgs/python-pycodestyle/template
+++ b/srcpkgs/python-pycodestyle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycodestyle'
 pkgname=python-pycodestyle
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycodestyle-${version}"
 build_style=python-module

From 61d0268320bb8306c2b2823a663588c885a01df6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 406/865] python-pycountry: rebuild for Python 3.8.

---
 srcpkgs/python-pycountry/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycountry/template b/srcpkgs/python-pycountry/template
index 88a0025f258..205db6240b7 100644
--- a/srcpkgs/python-pycountry/template
+++ b/srcpkgs/python-pycountry/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycountry'
 pkgname=python-pycountry
 version=18.12.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycountry-${version}"
 build_style=python-module

From e3a689e939cf482e09d50cf25b8f244cbec3dc12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 407/865] python-pycparser: rebuild for Python 3.8.

---
 srcpkgs/python-pycparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycparser/template b/srcpkgs/python-pycparser/template
index a521b3494ab..d2e83aa79b2 100644
--- a/srcpkgs/python-pycparser/template
+++ b/srcpkgs/python-pycparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycparser'
 pkgname=python-pycparser
 version=2.19
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycparser-${version}"
 build_style=python-module

From a86a5e2a75c91a868bf9b10f7ad9d86ca4df85d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 408/865] python-pycryptodome: rebuild for Python 3.8.

---
 srcpkgs/python-pycryptodome/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycryptodome/template b/srcpkgs/python-pycryptodome/template
index f01b5731c45..a4368d61b39 100644
--- a/srcpkgs/python-pycryptodome/template
+++ b/srcpkgs/python-pycryptodome/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycryptodome'
 pkgname=python-pycryptodome
 version=3.9.0
-revision=1
+revision=2
 wrksrc="pycryptodome-${version}"
 build_style=python-module
 pycompile_module="Crypto"

From 0cd2d63524942e2cfe5220436720dab24ef75308 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 409/865] python-pyelftools: rebuild for Python 3.8.

---
 srcpkgs/python-pyelftools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyelftools/template b/srcpkgs/python-pyelftools/template
index a6e9e9b644e..193650442fc 100644
--- a/srcpkgs/python-pyelftools/template
+++ b/srcpkgs/python-pyelftools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyelftools'
 pkgname=python-pyelftools
 version=0.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyelftools-${version}"
 build_style=python-module

From 61ae993767f544e608a601e6727e58b8c73400fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 410/865] python3-pyfiglet: rebuild for Python 3.8.

---
 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 d00b4fda62a..a4a67b12d42 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=1
+revision=2
 archs=noarch
 wrksrc="pyfiglet-${version}"
 build_style="python3-module"

From 7f5bd3a27f56badc9d95d3b2b7a684604262af1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 411/865] python-pyflakes: rebuild for Python 3.8.

---
 srcpkgs/python-pyflakes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyflakes/template b/srcpkgs/python-pyflakes/template
index 86d477c47f2..19229ebb3a4 100644
--- a/srcpkgs/python-pyflakes/template
+++ b/srcpkgs/python-pyflakes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyflakes'
 pkgname=python-pyflakes
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyflakes-${version}"
 build_style=python-module

From a811c56d34b1f53ac8aeca03f5247410137fe8d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 412/865] python-pygame: rebuild for Python 3.8.

---
 srcpkgs/python-pygame/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pygame/template b/srcpkgs/python-pygame/template
index a510333df6e..a900d62dbe3 100644
--- a/srcpkgs/python-pygame/template
+++ b/srcpkgs/python-pygame/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pygame'
 pkgname=python-pygame
 version=1.9.4
-revision=2
+revision=3
 wrksrc="pygame-${version}"
 build_style=python-module
 pycompile_module="pygame"

From e62822b2e5fa56868e80f10a019c7a0d66abbcbd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 413/865] python-pyglet: rebuild for Python 3.8.

---
 srcpkgs/python-pyglet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyglet/template b/srcpkgs/python-pyglet/template
index f8315bdf616..ee6ed16064c 100644
--- a/srcpkgs/python-pyglet/template
+++ b/srcpkgs/python-pyglet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyglet'
 pkgname=python-pyglet
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyglet-${version}"
 build_style=python-module

From 1f0bf2cea3a10c9982132fbe81c5ebd884defa35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 414/865] python3-pykeepass: rebuild for Python 3.8.

---
 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 c0e0fd4db41..135da6fea65 100644
--- a/srcpkgs/python3-pykeepass/template
+++ b/srcpkgs/python3-pykeepass/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pykeepass'
 pkgname=python3-pykeepass
 version=3.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="pykeepass-${version}"
 build_style=python3-module

From f2d7f9a6199d6780975ad9efb639642e96acc8c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 415/865] python3-pykwalify: rebuild for Python 3.8.

---
 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 27bc0c37355..b3727aba651 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pykwalify-${version}"
 build_style=python3-module

From cb348b8cc013bee10cb1adcdd5b9dac8e8f37a83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 416/865] python3-pylast: rebuild for Python 3.8.

---
 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 187b51943a8..60184348d80 100644
--- a/srcpkgs/python3-pylast/template
+++ b/srcpkgs/python3-pylast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylast'
 pkgname=python3-pylast
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylast-${version}"
 build_style=python3-module

From 6629ec0088134c22cfb115f29fd4a90a9b38e7a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 417/865] python3-pylibgen: rebuild for Python 3.8.

---
 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 641bf649c17..540ccb32790 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylibgen-${version}"
 build_style=python3-module

From 953751fa6deeafefea78df4f5ec27ee5c5c9902d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 418/865] python3-pylint: rebuild for Python 3.8.

---
 srcpkgs/python3-pylint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pylint/template b/srcpkgs/python3-pylint/template
index 6c8800069f0..315dbffb3fc 100644
--- a/srcpkgs/python3-pylint/template
+++ b/srcpkgs/python3-pylint/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylint'
 pkgname=python3-pylint
 version=2.3.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="pylint-${version}"
 build_style=python3-module

From 96bc4e17e1f144c3528e0ec3b455d501c2c3efdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 419/865] python-pynacl: rebuild for Python 3.8.

---
 srcpkgs/python-pynacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pynacl/template b/srcpkgs/python-pynacl/template
index 6ead91820b1..7a7fe246821 100644
--- a/srcpkgs/python-pynacl/template
+++ b/srcpkgs/python-pynacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pynacl'
 pkgname=python-pynacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python-module
 pycompile_module="nacl"

From ec1da9dfd353e059b23780a676ef1561f56f9b2e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 420/865] python-pyotp: rebuild for Python 3.8.

---
 srcpkgs/python-pyotp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyotp/template b/srcpkgs/python-pyotp/template
index 54714ee2ebb..b70bd73d4aa 100644
--- a/srcpkgs/python-pyotp/template
+++ b/srcpkgs/python-pyotp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyotp'
 pkgname=python-pyotp
 version=2.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyotp-${version}"
 build_style=python-module

From 3c83515599af94f7483a3e165f03547f9daa2835 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 421/865] python-pyperclip: rebuild for Python 3.8.

---
 srcpkgs/python-pyperclip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyperclip/template b/srcpkgs/python-pyperclip/template
index 512dc8d3dfb..b173f1479a5 100644
--- a/srcpkgs/python-pyperclip/template
+++ b/srcpkgs/python-pyperclip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyperclip'
 pkgname=python-pyperclip
 version=1.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=pyperclip-${version}
 build_style=python-module

From 6d17f7510d6ce4ec430e8bf72567fecdbd521681 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 422/865] python-pyqtgraph: rebuild for Python 3.8.

---
 srcpkgs/python-pyqtgraph/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyqtgraph/template b/srcpkgs/python-pyqtgraph/template
index f90e2b15319..1bea9c2ffdf 100644
--- a/srcpkgs/python-pyqtgraph/template
+++ b/srcpkgs/python-pyqtgraph/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyqtgraph'
 pkgname=python-pyqtgraph
 version=0.10.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${pkgname#*-}-${version}"
 build_style=python-module

From fff21c3dd38242e2992b276e00f6970f96a34293 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 423/865] python-pyrfc3339: rebuild for Python 3.8.

---
 srcpkgs/python-pyrfc3339/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyrfc3339/template b/srcpkgs/python-pyrfc3339/template
index 618e46d1c4b..cd81c4d0624 100644
--- a/srcpkgs/python-pyrfc3339/template
+++ b/srcpkgs/python-pyrfc3339/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyrfc3339'
 pkgname=python-pyrfc3339
 version=1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="pyrfc3339"

From bdfc6ef4d47bd373ff649510c96f640b48da738a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 424/865] python-pyscss: rebuild for Python 3.8.

---
 srcpkgs/python-pyscss/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyscss/template b/srcpkgs/python-pyscss/template
index 1f7d8b7d8cd..1a8e9c44d7d 100644
--- a/srcpkgs/python-pyscss/template
+++ b/srcpkgs/python-pyscss/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyscss'
 pkgname=python-pyscss
 version=1.3.5
-revision=6
+revision=7
 wrksrc="pyScss-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pcre-devel"

From 6bdfad32f6894df0a7f3eb185662fa32228408ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 425/865] python3-pysdl2: rebuild for Python 3.8.

---
 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 d59ea7d7fa2..3efdca5b667 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=1
+revision=2
 archs=noarch
 wrksrc="py-sdl2-rel_${version//./_}"
 build_style=python3-module

From 67dab081767478a600fbc44d5333dc2746a683ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 426/865] python-pyserial: rebuild for Python 3.8.

---
 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 8808e76d206..354be493b16 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=2
+revision=3
 archs=noarch
 wrksrc="pyserial-${version}"
 build_style=python-module

From a6914f6aa35af001fd954260658bed6e1e5df2bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 427/865] python3-pyside2: rebuild for Python 3.8.

---
 srcpkgs/python3-pyside2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pyside2/template b/srcpkgs/python3-pyside2/template
index a5d60b17568..1da3400f239 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.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From deee942f64ef5e0e70f6a45a7f9e3a2593d53add Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 428/865] python3-pysigset: rebuild for Python 3.8.

---
 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 8de87145a09..50d9162ea70 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.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysigset-${version}"
 build_style=python3-module

From 913752d5b84f0054c829fc060939c366bf5b28cb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 429/865] python-pysocks: rebuild for Python 3.8.

---
 srcpkgs/python-pysocks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysocks/template b/srcpkgs/python-pysocks/template
index 68a27819e3d..d9b216aeab8 100644
--- a/srcpkgs/python-pysocks/template
+++ b/srcpkgs/python-pysocks/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysocks'
 pkgname=python-pysocks
 version=1.6.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="PySocks-${version}"
 build_style=python-module

From e256b35c573b66ccaaffbf92ee92ecad250db3c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 430/865] python3-pysol_cards: rebuild for Python 3.8.

---
 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 e03d92fe077..a37429754a2 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.8.6
-revision=1
+revision=2
 wrksrc="pysol_cards-${version}"
 build_style=python3-module
 pycompile_module="pysol_cards"

From d29dab0ddee296649a1f4ace5c33678cc349d6ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 431/865] python-pysrt: rebuild for Python 3.8.

---
 srcpkgs/python-pysrt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysrt/template b/srcpkgs/python-pysrt/template
index 061435a52c7..7e154825bef 100644
--- a/srcpkgs/python-pysrt/template
+++ b/srcpkgs/python-pysrt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysrt'
 pkgname=python-pysrt
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysrt-${version}"
 build_style=python-module

From 4ba7eb802460f8e4e15f1389bebd64237c6f1aec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 432/865] python-pystache: rebuild for Python 3.8.

---
 srcpkgs/python-pystache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pystache/template b/srcpkgs/python-pystache/template
index 13f8b04aa88..c1a5bcd57d9 100644
--- a/srcpkgs/python-pystache/template
+++ b/srcpkgs/python-pystache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pystache'
 pkgname=python-pystache
 version=0.5.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pystache-${version}"
 build_style=python-module

From a6a1d8010f3909cc551f70485efc660b22168f46 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 433/865] python-pyte: rebuild for Python 3.8.

---
 srcpkgs/python-pyte/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyte/template b/srcpkgs/python-pyte/template
index 43b708adc66..76efbec91d1 100644
--- a/srcpkgs/python-pyte/template
+++ b/srcpkgs/python-pyte/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyte'
 pkgname=python-pyte
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyte-${version}"
 build_style=python-module

From 03679e357b0bdbd90ddbb6deba5693594ef9d592 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 434/865] python-pytest: rebuild for Python 3.8.

---
 srcpkgs/python-pytest/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest/template b/srcpkgs/python-pytest/template
index 6481f21e677..d5c246599c6 100644
--- a/srcpkgs/python-pytest/template
+++ b/srcpkgs/python-pytest/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest'
 pkgname=python-pytest
 version=3.7.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From d8ff8818fa4f90c63cf468feb2bba5d8b9dca026 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 435/865] python3-pytest-asyncio: rebuild for Python 3.8.

---
 srcpkgs/python3-pytest-asyncio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template
index bd104f99e2c..0c90d33a9e5 100644
--- a/srcpkgs/python3-pytest-asyncio/template
+++ b/srcpkgs/python3-pytest-asyncio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pytest-asyncio'
 pkgname=python3-pytest-asyncio
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytest-asyncio-${version}"
 build_style=python3-module

From 8bdff4905b1d2e832656b8dde532b566e516752c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 436/865] python-pytest-fixture-config: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-fixture-config/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-fixture-config/template b/srcpkgs/python-pytest-fixture-config/template
index cd3e38a592a..14255af8a35 100644
--- a/srcpkgs/python-pytest-fixture-config/template
+++ b/srcpkgs/python-pytest-fixture-config/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-fixture-config'
 pkgname=python-pytest-fixture-config
 version=1.3.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 89c93c6cebe4d9e57d61a6e1c0d1782514496073 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 437/865] python-pytest-mock: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-mock/template b/srcpkgs/python-pytest-mock/template
index f3dc85810b6..240e8773aaa 100644
--- a/srcpkgs/python-pytest-mock/template
+++ b/srcpkgs/python-pytest-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-mock'
 pkgname=python-pytest-mock
 version=1.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From e10ffc843814c368a7fd76e24e6afa8512ce198c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 438/865] python-pytz: rebuild for Python 3.8.

---
 srcpkgs/python-pytz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytz/template b/srcpkgs/python-pytz/template
index d6becf829a7..40f582962c8 100644
--- a/srcpkgs/python-pytz/template
+++ b/srcpkgs/python-pytz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytz'
 pkgname=python-pytz
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytz-${version}"
 build_style=python-module

From 562767d788b8e163bcde2dbd45de9eca2899bd90 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 439/865] python-pyudev: rebuild for Python 3.8.

---
 srcpkgs/python-pyudev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyudev/template b/srcpkgs/python-pyudev/template
index d059b7882a2..2ec53088636 100644
--- a/srcpkgs/python-pyudev/template
+++ b/srcpkgs/python-pyudev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyudev'
 pkgname=python-pyudev
 version=0.21.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyudev-${version}"
 build_style=python-module

From bb91a3d4616a0e9dbf1a34b271d62527a455f4ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 440/865] python3-pyx: rebuild for Python 3.8.

---
 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 87608c43428..89963bed89f 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.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="PyX-${version}"
 build_style=python3-module

From caa3ad83cde6d2b66687ae0ac2bb87dfd8eb100f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 441/865] python-pyzbar: rebuild for Python 3.8.

---
 srcpkgs/python-pyzbar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzbar/template b/srcpkgs/python-pyzbar/template
index 06ae37a5708..35b568eb4e6 100644
--- a/srcpkgs/python-pyzbar/template
+++ b/srcpkgs/python-pyzbar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzbar'
 pkgname=python-pyzbar
 version=0.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyzbar-${version}"
 build_style=python-module

From 83e0ba8fd12c3f07b4f3c2f8109ff0cd9a69353b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 442/865] python-pyzmq: rebuild for Python 3.8.

---
 srcpkgs/python-pyzmq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzmq/template b/srcpkgs/python-pyzmq/template
index 859aab5983d..27dbe29e516 100644
--- a/srcpkgs/python-pyzmq/template
+++ b/srcpkgs/python-pyzmq/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzmq'
 pkgname=python-pyzmq
 version=18.0.1
-revision=1
+revision=2
 wrksrc="pyzmq-${version}"
 build_style=python-module
 make_build_args="--zmq=${XBPS_CROSS_BASE}/usr"

From 2d71150f372801e322d8ee5f31b2bc67795fc3a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 443/865] python-qrcode: rebuild for Python 3.8.

---
 srcpkgs/python-qrcode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-qrcode/template b/srcpkgs/python-qrcode/template
index 9deb485855f..bf35c82757e 100644
--- a/srcpkgs/python-qrcode/template
+++ b/srcpkgs/python-qrcode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-qrcode'
 pkgname=python-qrcode
 version=6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="qrcode-${version}"
 build_style=python-module

From 55eeefa7bb378b38024ce5c57d228c5d2c24875f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 444/865] python-random2: rebuild for Python 3.8.

---
 srcpkgs/python-random2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-random2/template b/srcpkgs/python-random2/template
index 92f36fee139..2603cae3584 100644
--- a/srcpkgs/python-random2/template
+++ b/srcpkgs/python-random2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-random2'
 pkgname=python-random2
 version=1.0.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="random2-${version}"
 build_style=python-module

From 4aa520f994404a836b859a95bf53280ec662d779 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 445/865] python-rarfile: rebuild for Python 3.8.

---
 srcpkgs/python-rarfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rarfile/template b/srcpkgs/python-rarfile/template
index e0c597c1fb1..e3b6f3e2887 100644
--- a/srcpkgs/python-rarfile/template
+++ b/srcpkgs/python-rarfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rarfile'
 pkgname=python-rarfile
 version=3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="rarfile-${version}"
 build_style=python-module

From 77edc413dd0a2b7d7423d47946137d1db7452b91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 446/865] python-raven: rebuild for Python 3.8.

---
 srcpkgs/python-raven/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-raven/template b/srcpkgs/python-raven/template
index eec4e5f49b6..87382c21602 100644
--- a/srcpkgs/python-raven/template
+++ b/srcpkgs/python-raven/template
@@ -1,7 +1,7 @@
 # Template file for 'python-raven'
 pkgname=python-raven
 version=6.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="raven-${version}"
 build_style=python-module

From 0fd244bc29d49109b475295b68c11c496626bd43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 447/865] python-rdflib: rebuild for Python 3.8.

---
 srcpkgs/python-rdflib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rdflib/template b/srcpkgs/python-rdflib/template
index 0512abb0e5a..f676dedfb2f 100644
--- a/srcpkgs/python-rdflib/template
+++ b/srcpkgs/python-rdflib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rdflib'
 pkgname=python-rdflib
 version=4.2.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="rdflib-${version}"
 build_style=python-module

From 52682c54b0a7808306dcb6c0c9af5436d056d6a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 448/865] python-readability-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-readability-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-readability-lxml/template b/srcpkgs/python-readability-lxml/template
index ddf0602b730..19dadaa336f 100644
--- a/srcpkgs/python-readability-lxml/template
+++ b/srcpkgs/python-readability-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-readability-lxml'
 pkgname=python-readability-lxml
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="readability-lxml-${version}"
 build_style=python-module

From 5b239aeb5613465b0d414e14b8b37a83f65232fc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 449/865] python3-readlike: rebuild for Python 3.8.

---
 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 cbba969b076..43159962442 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=1
+revision=2
 archs=noarch
 wrksrc=readlike-${version}
 build_style=python3-module

From 10ff7da432e0f1563ed8c4feb921648f20e75246 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 450/865] python-rebulk: rebuild for Python 3.8.

---
 srcpkgs/python-rebulk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rebulk/template b/srcpkgs/python-rebulk/template
index 1cf6cf623c8..8f9c2621304 100644
--- a/srcpkgs/python-rebulk/template
+++ b/srcpkgs/python-rebulk/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rebulk'
 pkgname=python-rebulk
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rebulk-${version}"
 build_style=python-module

From b720f89f9fb6ecb79aa43ff92f151239049cb9c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 451/865] python-redis: rebuild for Python 3.8.

---
 srcpkgs/python-redis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-redis/template b/srcpkgs/python-redis/template
index f57c0d841b3..b7e773fde54 100644
--- a/srcpkgs/python-redis/template
+++ b/srcpkgs/python-redis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-redis'
 pkgname=python-redis
 version=2.10.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="redis-${version}"
 build_style=python-module

From 90d47f03a3f7a55f623c0b5019b0b58b6169aae5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 452/865] python-regex: rebuild for Python 3.8.

---
 srcpkgs/python-regex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-regex/template b/srcpkgs/python-regex/template
index 33e99b0127b..7a624db9477 100644
--- a/srcpkgs/python-regex/template
+++ b/srcpkgs/python-regex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-regex'
 pkgname=python-regex
 version=2019.08.19
-revision=1
+revision=2
 wrksrc="regex-${version}"
 build_style=python-module
 pycompile_module="_regex_core.py regex.py test_regex.py"

From e132fc559392a2f2a5268100218ef2061759c476 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 453/865] python-rencode: rebuild for Python 3.8.

---
 srcpkgs/python-rencode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rencode/template b/srcpkgs/python-rencode/template
index 7176038a60a..021e1d414b8 100644
--- a/srcpkgs/python-rencode/template
+++ b/srcpkgs/python-rencode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rencode'
 pkgname=python-rencode
 version=1.0.6
-revision=2
+revision=3
 wrksrc="rencode-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"

From 635743944483bd5fdbf4a909ef4874532f1035b9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 454/865] python-reportlab: rebuild for Python 3.8.

---
 srcpkgs/python-reportlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-reportlab/template b/srcpkgs/python-reportlab/template
index 7f153d65a2a..3915767b6d3 100644
--- a/srcpkgs/python-reportlab/template
+++ b/srcpkgs/python-reportlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-reportlab'
 pkgname=python-reportlab
 version=3.5.23
-revision=1
+revision=2
 wrksrc="reportlab-${version}"
 build_style=python-module
 pycompile_module="reportlab"

From 4a6d7b1e5e0d64a6834cc210da11806cbe217453 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 455/865] python-requests: rebuild for Python 3.8.

---
 srcpkgs/python-requests/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests/template b/srcpkgs/python-requests/template
index fc806b611e9..73d2d5945ef 100644
--- a/srcpkgs/python-requests/template
+++ b/srcpkgs/python-requests/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests'
 pkgname=python-requests
 version=2.22.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-${version}"
 build_style=python-module

From 61f6560b710773eab8296ef28bd943f5dc0d290d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 456/865] python-requests-mock: rebuild for Python 3.8.

---
 srcpkgs/python-requests-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-mock/template b/srcpkgs/python-requests-mock/template
index 5b89b5ed3b8..2d1410fcd1b 100644
--- a/srcpkgs/python-requests-mock/template
+++ b/srcpkgs/python-requests-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-mock'
 pkgname=python-requests-mock
 version=1.5.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="requests-mock-${version}"
 build_style=python-module

From f4f04d85ce7abb39fbbf306bc3c1dcfc467cdf14 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 457/865] python-requests-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-requests-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-oauthlib/template b/srcpkgs/python-requests-oauthlib/template
index b011ea17a36..8cd838090a7 100644
--- a/srcpkgs/python-requests-oauthlib/template
+++ b/srcpkgs/python-requests-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-oauthlib'
 pkgname=python-requests-oauthlib
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5853f21b57bde4c4e66293b132fba4fc03804518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 458/865] python-requests-toolbelt: rebuild for Python 3.8.

---
 srcpkgs/python-requests-toolbelt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-toolbelt/template b/srcpkgs/python-requests-toolbelt/template
index 3ba66a0a007..13a81586221 100644
--- a/srcpkgs/python-requests-toolbelt/template
+++ b/srcpkgs/python-requests-toolbelt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-toolbelt'
 pkgname=python-requests-toolbelt
 version=0.9.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 14171483829854051f0c8030562c1052094d78c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 459/865] python3-requests-unixsocket: rebuild for Python 3.8.

---
 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 ec9e1074566..fd389ec2d13 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-unixsocket-${version}"
 build_style=python3-module

From 9b589212b423bd7e2dfbb7ab7ef63c65b9dd07cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 460/865] python-rfc6555: rebuild for Python 3.8.

---
 srcpkgs/python-rfc6555/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rfc6555/template b/srcpkgs/python-rfc6555/template
index c3babc25b93..2522872cc32 100644
--- a/srcpkgs/python-rfc6555/template
+++ b/srcpkgs/python-rfc6555/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rfc6555'
 pkgname=python-rfc6555
 version=0.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rfc6555-${version}"
 build_style=python-module

From a399a96d8293a9387f5648001a03178d2550059b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 461/865] python-ripe-atlas-cousteau: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-cousteau/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-cousteau/template b/srcpkgs/python-ripe-atlas-cousteau/template
index ac16300fe3d..72f32a9da0d 100644
--- a/srcpkgs/python-ripe-atlas-cousteau/template
+++ b/srcpkgs/python-ripe-atlas-cousteau/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-cousteau'
 pkgname=python-ripe-atlas-cousteau
 version=1.4.2
-revision=1
+revision=2
 build_style=python-module
 archs=noarch
 pycompile_module="ripe/atlas/cousteau"

From 4c2ddc085f45f52b438013ad3d494f8f59859504 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 462/865] python-ripe-atlas-sagan: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-sagan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-sagan/template b/srcpkgs/python-ripe-atlas-sagan/template
index 60a9b883b93..22abb48af46 100644
--- a/srcpkgs/python-ripe-atlas-sagan/template
+++ b/srcpkgs/python-ripe-atlas-sagan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-sagan'
 pkgname=python-ripe-atlas-sagan
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ripe.atlas.sagan-${version}"
 build_style=python-module

From 10e7db3d51d8370e317d667edc372d0fcfd5bad9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 463/865] python-rsa: rebuild for Python 3.8.

---
 srcpkgs/python-rsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rsa/template b/srcpkgs/python-rsa/template
index a4ae59846ff..11e9bf2c60d 100644
--- a/srcpkgs/python-rsa/template
+++ b/srcpkgs/python-rsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rsa'
 pkgname=python-rsa
 version=4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a3bbda3918c5b4bb668860ba5bbd81f83f1a4925 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 464/865] python3-rsistent: rebuild for Python 3.8.

---
 srcpkgs/python3-rsistent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-rsistent/template b/srcpkgs/python3-rsistent/template
index 13019f472cd..7897e107b2b 100644
--- a/srcpkgs/python3-rsistent/template
+++ b/srcpkgs/python3-rsistent/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-rsistent'
 pkgname=python3-rsistent
 version=0.15.4
-revision=1
+revision=2
 wrksrc="pyrsistent-${version}"
 build_style=python3-module
 pycompile_module="pyrsistent"

From 7d4c9082b7051c6ce978ca21f34f138189c7f2d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 465/865] python3-rss2email: rebuild for Python 3.8.

---
 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 d07984d33d8..34e7d4e65a6 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.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="rss2email-${version}"
 build_style=python3-module

From a0a5e6df8a02d98f37c3c22c043adb325c8a8a62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 466/865] python-ruamel.yaml: rebuild for Python 3.8.

---
 srcpkgs/python-ruamel.yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ruamel.yaml/template b/srcpkgs/python-ruamel.yaml/template
index d86ddfc67c9..789f8a7acd2 100644
--- a/srcpkgs/python-ruamel.yaml/template
+++ b/srcpkgs/python-ruamel.yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ruamel.yaml'
 pkgname=python-ruamel.yaml
 version=0.15.92
-revision=1
+revision=2
 wrksrc="ruamel.yaml-${version}"
 build_style=python-module
 pycompile_module="ruamel/yaml"

From 6b579f083949bbd67a78d66ae983de1f36f03a82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 467/865] python3-s-tui: rebuild for Python 3.8.

---
 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 4c7db6ff3c9..85a945b1b09 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=0.8.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="s-tui-${version}"
 build_style=python3-module

From 5cc92799a690ba40dd26192e3f0182e07089683a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 468/865] python-s3transfer: rebuild for Python 3.8.

---
 srcpkgs/python-s3transfer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-s3transfer/template b/srcpkgs/python-s3transfer/template
index e306c3c3b1a..dd92eeff657 100644
--- a/srcpkgs/python-s3transfer/template
+++ b/srcpkgs/python-s3transfer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-s3transfer'
 pkgname=python-s3transfer
 version=0.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="s3transfer-${version}"
 build_style=python-module

From 2ec5386706a289e510b5b03e33cf74e0a23596a6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 469/865] python3-saml2: rebuild for Python 3.8.

---
 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 e94602a82ea..c0dabb5e9d0 100644
--- a/srcpkgs/python3-saml2/template
+++ b/srcpkgs/python3-saml2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-saml2'
 pkgname=python3-saml2
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysaml2-${version}"
 build_style=python3-module

From e856d28eb580f0af5442d11d24ffacdd7fade12b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 470/865] python-scandir: rebuild for Python 3.8.

---
 srcpkgs/python-scandir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scandir/template b/srcpkgs/python-scandir/template
index 774fac91b8f..b02fe6d0281 100644
--- a/srcpkgs/python-scandir/template
+++ b/srcpkgs/python-scandir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scandir'
 pkgname=python-scandir
 version=1.10.0
-revision=2
+revision=3
 wrksrc="scandir-${version}"
 build_style=python-module
 pycompile_module="scandir.py"

From 3b5e1eeb2ce0519b51592cebffc1bd89dce0f96c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 471/865] python3-scard: rebuild for Python 3.8.

---
 srcpkgs/python3-scard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scard/template b/srcpkgs/python3-scard/template
index 793f144a74b..279419ac3e3 100644
--- a/srcpkgs/python3-scard/template
+++ b/srcpkgs/python3-scard/template
@@ -2,7 +2,7 @@
 pkgname=python3-scard
 _pkgname=pyscard
 version=1.9.8
-revision=1
+revision=2
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module
 pycompile_module=smartcard

From f62ba61eaebce26c267e2d453d8e0ea6e005a285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 472/865] python3-scikit-learn: rebuild for Python 3.8.

---
 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 73799b9f420..8ac82167832 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.20.4
-revision=1
+revision=2
 wrksrc="scikit-learn-${version}"
 build_style=python3-module
 pycompile_module="sklearn"

From ccf4f6aa1bd0ba8aaf9499dcacb1320a77221004 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 473/865] python3-scipy: rebuild for Python 3.8.

---
 srcpkgs/python3-scipy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scipy/template b/srcpkgs/python3-scipy/template
index 291ac3734f1..2cef9ac33e1 100644
--- a/srcpkgs/python3-scipy/template
+++ b/srcpkgs/python3-scipy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-scipy'
 pkgname=python3-scipy
 version=1.3.1
-revision=1
+revision=2
 wrksrc="scipy-${version}"
 build_style=python3-module
 pycompile_module="scipy"

From 04cbe0c6403a4ecd9cda36e10bba5d06e472823d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 474/865] python-scour: rebuild for Python 3.8.

---
 srcpkgs/python-scour/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scour/template b/srcpkgs/python-scour/template
index b78cf37f057..0db5b157ce1 100644
--- a/srcpkgs/python-scour/template
+++ b/srcpkgs/python-scour/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scour'
 pkgname=python-scour
 version=0.37
-revision=1
+revision=2
 archs=noarch
 wrksrc="scour-${version}"
 build_style=python-module

From 0fd08871993ece59d562feb8472d05249ae1d76a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 475/865] python3-scruffy: rebuild for Python 3.8.

---
 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 e797b110f42..62a21a74eca 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="scruffy-${version}"
 build_style=python3-module

From 65cb259cf8f67f78fe484e4423fe0006aae17045 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 476/865] python-send2trash: rebuild for Python 3.8.

---
 srcpkgs/python-send2trash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-send2trash/template b/srcpkgs/python-send2trash/template
index 49c3a2b3d77..94f56545695 100644
--- a/srcpkgs/python-send2trash/template
+++ b/srcpkgs/python-send2trash/template
@@ -1,7 +1,7 @@
 # Template file for 'python-send2trash'
 pkgname=python-send2trash
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="send2trash-${version}"
 build_style=python-module

From 04a4413d706d49df8a415b9714091b0e4bb0fdfa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 477/865] python-serpent: rebuild for Python 3.8.

---
 srcpkgs/python-serpent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-serpent/template b/srcpkgs/python-serpent/template
index b60d390c1ab..a40f0d44515 100644
--- a/srcpkgs/python-serpent/template
+++ b/srcpkgs/python-serpent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-serpent'
 pkgname=python-serpent
 version=1.28
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38131f811a874463c71c55408ef6e629166a5b8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 478/865] python-service_identity: rebuild for Python 3.8.

---
 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 eae084c858f..e21a1520a75 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=1
+revision=2
 archs=noarch
 wrksrc="service_identity-${version}"
 build_style=python-module

From 9a538d41d8b848da9da43cd5d6f80428b7208be8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 479/865] setconf: rebuild for Python 3.8.

---
 srcpkgs/setconf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/setconf/template b/srcpkgs/setconf/template
index a3d22376a5b..1911c558c77 100644
--- a/srcpkgs/setconf/template
+++ b/srcpkgs/setconf/template
@@ -1,7 +1,7 @@
 # Template file for 'setconf'
 pkgname=setconf
 version=0.7.6
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="setconf.py"

From aacff3894cc42a49ab1becc06f64f23197302443 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 480/865] python-setproctitle: rebuild for Python 3.8.

---
 srcpkgs/python-setproctitle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setproctitle/template b/srcpkgs/python-setproctitle/template
index d0d41ae888d..c47e3a9db53 100644
--- a/srcpkgs/python-setproctitle/template
+++ b/srcpkgs/python-setproctitle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setproctitle'
 pkgname=python-setproctitle
 version=1.1.10
-revision=5
+revision=6
 wrksrc="setproctitle-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e2b8c2ac8d355cdb0f221b80ab39e2ef92beb3e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 481/865] python-setuptools: rebuild for Python 3.8.

---
 srcpkgs/python-setuptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setuptools/template b/srcpkgs/python-setuptools/template
index 382a9b45bcd..a172f8e8e09 100644
--- a/srcpkgs/python-setuptools/template
+++ b/srcpkgs/python-setuptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setuptools'
 pkgname=python-setuptools
 version=41.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python-module

From 5feb793ba33633318f41644f84b5ffd5428e2d4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 482/865] python-sh: rebuild for Python 3.8.

---
 srcpkgs/python-sh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sh/template b/srcpkgs/python-sh/template
index 1826986b25c..76985dc1f01 100644
--- a/srcpkgs/python-sh/template
+++ b/srcpkgs/python-sh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sh'
 pkgname=python-sh
 version=1.12.14
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From f0cfe151eea6fcf86d1196385a1ac0057a65ab48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 483/865] python-shapely: rebuild for Python 3.8.

---
 srcpkgs/python-shapely/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-shapely/template b/srcpkgs/python-shapely/template
index 25cc875a02c..114726838f9 100644
--- a/srcpkgs/python-shapely/template
+++ b/srcpkgs/python-shapely/template
@@ -1,7 +1,7 @@
 # Template file for 'python-shapely'
 pkgname=python-shapely
 version=1.7a1
-revision=2
+revision=3
 wrksrc="Shapely-${version}"
 build_style=python-module
 pycompile_module="shapely"

From 0908618383925caf43243de8097dbf6491149f8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 484/865] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index d552ce8432d..1f9c8043b46 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=4
+revision=5
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From 14af86f199e28c6eae170b10c1c662bd0184b73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 485/865] shiboken2: rebuild for Python 3.8.

---
 srcpkgs/shiboken2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken2/template b/srcpkgs/shiboken2/template
index 394d9ba4f94..a08edf3f2a0 100644
--- a/srcpkgs/shiboken2/template
+++ b/srcpkgs/shiboken2/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken2'
 pkgname=shiboken2
 version=5.11.2
-revision=2
+revision=3
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From 9ea535c3baf70c69a2bbe07d057742af1877d648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 486/865] python3-shodan: rebuild for Python 3.8.

---
 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 858a0b921f8..033b5a269ff 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.19.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="shodan-python-${version}"
 build_style=python3-module

From 76805ea236fc7f4ecd5948a492413602efff91e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 487/865] python3-signedjson: rebuild for Python 3.8.

---
 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 6f6fb339fd2..d8f9b06b22f 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-signedjson-${version}"
 build_style=python3-module

From 12e9d209470a13cdd9063e5544ffd00c5952138e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 488/865] python-simplebayes: rebuild for Python 3.8.

---
 srcpkgs/python-simplebayes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplebayes/template b/srcpkgs/python-simplebayes/template
index e76b94ad549..6c95222fa7e 100644
--- a/srcpkgs/python-simplebayes/template
+++ b/srcpkgs/python-simplebayes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplebayes'
 pkgname=python-simplebayes
 version=1.5.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="simplebayes-${version}"
 build_style=python-module

From d1ad830144a3e370bbac6e82affb1d06805dfdbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 489/865] python-simplegeneric: rebuild for Python 3.8.

---
 srcpkgs/python-simplegeneric/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplegeneric/template b/srcpkgs/python-simplegeneric/template
index 3dc4e1dda94..f352387fa1f 100644
--- a/srcpkgs/python-simplegeneric/template
+++ b/srcpkgs/python-simplegeneric/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplegeneric'
 pkgname=python-simplegeneric
 version=0.8.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="simplegeneric-${version}"
 build_style=python-module

From f6d990c1a1436b305f8b5af6f58c1f6430d96dc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 490/865] python-simplejson: rebuild for Python 3.8.

---
 srcpkgs/python-simplejson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplejson/template b/srcpkgs/python-simplejson/template
index b453ae952ba..1b8523d0d46 100644
--- a/srcpkgs/python-simplejson/template
+++ b/srcpkgs/python-simplejson/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplejson'
 pkgname=python-simplejson
 version=3.16.1
-revision=2
+revision=3
 wrksrc="simplejson-${version}"
 build_style=python-module
 pycompile_module="simplejson"

From b6f0878a2894ffdd731251a64a26cb1ddf40038a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 491/865] sip: rebuild for Python 3.8.

---
 srcpkgs/sip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sip/template b/srcpkgs/sip/template
index 9d09b823bb6..0e8a81000b1 100644
--- a/srcpkgs/sip/template
+++ b/srcpkgs/sip/template
@@ -1,7 +1,7 @@
 # Template file for 'sip'
 pkgname=sip
 version=4.19.18
-revision=1
+revision=2
 wrksrc="sip-${version}"
 hostmakedepends="python-devel python3-devel"
 makedepends="${hostmakedepends}"

From 5f24e47fb2b044495bbf0ee108d18220ad3b3bd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 492/865] python-six: rebuild for Python 3.8.

---
 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 c6d91f5ece9..a25323caa2a 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.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="six-${version}"
 build_style=python-module

From 09784cf129c5a66b731964fcda119a53dd9dbb7b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 493/865] python3-slixmpp: rebuild for Python 3.8.

---
 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 db367c3d0ab..cbbde6f394b 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.4.2
-revision=1
+revision=2
 wrksrc="slixmpp-${version}"
 build_style=python3-module
 pycompile_module="slixmpp"

From 5e4eb88ccd16957dc33f6923ae3a72151385e9ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 494/865] python3-slugify: rebuild for Python 3.8.

---
 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 44d37f2aed7..012bb98f063 100644
--- a/srcpkgs/python3-slugify/template
+++ b/srcpkgs/python3-slugify/template
@@ -3,7 +3,7 @@ pkgname=python3-slugify
 # Please don't update. Only required by Transifx-client,
 # doesn't work with newer versions
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-slugify-${version}"
 build_style=python3-module

From 3673d2d0b57421bb69e3ed7407630c26169fab96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 495/865] python-smbc: rebuild for Python 3.8.

---
 srcpkgs/python-smbc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smbc/template b/srcpkgs/python-smbc/template
index abc745f8982..6a280139a25 100644
--- a/srcpkgs/python-smbc/template
+++ b/srcpkgs/python-smbc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smbc'
 pkgname=python-smbc
 version=1.0.16
-revision=1
+revision=2
 wrksrc="pysmbc-${version}"
 build_style=python-module
 pycompile_module="smbc"

From 2e7eca88dff9a562419fb01bfafbdaf55a6c2bd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 496/865] python-smmap: rebuild for Python 3.8.

---
 srcpkgs/python-smmap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smmap/template b/srcpkgs/python-smmap/template
index 4aa0c37ff40..8c8ea952285 100644
--- a/srcpkgs/python-smmap/template
+++ b/srcpkgs/python-smmap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smmap'
 pkgname=python-smmap
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="smmap-${version}"
 build_style=python-module

From fd787d6092a892885c1a37ff836d919c3268746b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 497/865] python-snakeoil: rebuild for Python 3.8.

---
 srcpkgs/python-snakeoil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snakeoil/template b/srcpkgs/python-snakeoil/template
index 9c98461c555..79e964d9254 100644
--- a/srcpkgs/python-snakeoil/template
+++ b/srcpkgs/python-snakeoil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snakeoil'
 pkgname=python-snakeoil
 version=0.7.5
-revision=2
+revision=3
 wrksrc="snakeoil-${version}"
 build_style=python-module
 pycompile_module="snakeoil"

From c023c48bda41f4e9b16718923037b0abc4c9cc57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 498/865] python-snappy: rebuild for Python 3.8.

---
 srcpkgs/python-snappy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snappy/template b/srcpkgs/python-snappy/template
index ac386f64fae..b1870cbe681 100644
--- a/srcpkgs/python-snappy/template
+++ b/srcpkgs/python-snappy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snappy'
 pkgname=python-snappy
 version=0.5.4
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="snappy"
 hostmakedepends="python-setuptools python3-setuptools"

From cf3b5c203b490e3aa45e74d0cef8b0d0c4d9cbd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 499/865] python-snowballstemmer: rebuild for Python 3.8.

---
 srcpkgs/python-snowballstemmer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snowballstemmer/template b/srcpkgs/python-snowballstemmer/template
index 6c21632cffa..221478860e5 100644
--- a/srcpkgs/python-snowballstemmer/template
+++ b/srcpkgs/python-snowballstemmer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snowballstemmer'
 pkgname=python-snowballstemmer
 version=1.2.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="snowballstemmer-${version}"
 build_style=python-module

From ebbd083848ced4227417bedacb81db1e46b3b0d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 500/865] python-socketIO-client: rebuild for Python 3.8.

---
 srcpkgs/python-socketIO-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-socketIO-client/template b/srcpkgs/python-socketIO-client/template
index 32fdac4117d..9495d7cf40b 100644
--- a/srcpkgs/python-socketIO-client/template
+++ b/srcpkgs/python-socketIO-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-socketIO-client'
 pkgname=python-socketIO-client
 version=0.7.2
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="socketIO_client"

From bf4912c1b4d342f253c99ee2ff30408cc72ef150 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 501/865] python3-sortedcontainers: rebuild for Python 3.8.

---
 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 2b531ded9b6..41d87d4ebd0 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.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="sortedcontainers-${version}"
 build_style=python3-module

From d111b9221a51cf160ffadb598d8ab186bac3562f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 502/865] python-soupsieve: rebuild for Python 3.8.

---
 srcpkgs/python-soupsieve/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-soupsieve/template b/srcpkgs/python-soupsieve/template
index 586553ca759..63b65c5910f 100644
--- a/srcpkgs/python-soupsieve/template
+++ b/srcpkgs/python-soupsieve/template
@@ -1,7 +1,7 @@
 # Template file for 'python-soupsieve'
 pkgname=python-soupsieve
 version=1.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="soupsieve-${version}"
 build_style=python-module

From 505955408532e39107891c66bb40c986d8a5da3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 503/865] python3-spake2: rebuild for Python 3.8.

---
 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 ff83afed1d6..dc0cdced747 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=1
+revision=2
 archs=noarch
 wrksrc="python-spake2-${version}"
 build_style=python3-module

From ed28cd6c33b5a607891182e27d4edc4b33e42c75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 504/865] python-sphinx_rtd_theme: rebuild for Python 3.8.

---
 srcpkgs/python-sphinx_rtd_theme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinx_rtd_theme/template b/srcpkgs/python-sphinx_rtd_theme/template
index 90def1c9d1d..ebd4f13da8f 100644
--- a/srcpkgs/python-sphinx_rtd_theme/template
+++ b/srcpkgs/python-sphinx_rtd_theme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinx_rtd_theme'
 pkgname=python-sphinx_rtd_theme
 version=0.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinx_rtd_theme-${version}"
 build_style=python-module

From dc5c184f3eb8653ed7620ead5c8c28a67daed07d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 505/865] python-sphinxcontrib: rebuild for Python 3.8.

---
 srcpkgs/python-sphinxcontrib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib/template b/srcpkgs/python-sphinxcontrib/template
index ce3befc56d7..c6789cc77f5 100644
--- a/srcpkgs/python-sphinxcontrib/template
+++ b/srcpkgs/python-sphinxcontrib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib'
 pkgname=python-sphinxcontrib
 version=1.0
-revision=2
+revision=3
 archs=noarch
 create_wrksrc=yes
 pycompile_module="sphinxcontrib"

From 044129ada15eeb9695b554976702e8af049dcfd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 506/865] python-sphinxcontrib-websupport: rebuild for Python
 3.8.

---
 srcpkgs/python-sphinxcontrib-websupport/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib-websupport/template b/srcpkgs/python-sphinxcontrib-websupport/template
index 2236e50b25b..5387dec6519 100644
--- a/srcpkgs/python-sphinxcontrib-websupport/template
+++ b/srcpkgs/python-sphinxcontrib-websupport/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib-websupport'
 pkgname=python-sphinxcontrib-websupport
 version=1.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinxcontrib-websupport-${version}"
 build_style=python-module

From d4fb3b78447ca7349e0a94033b436c3e0caa5dc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 507/865] python-sqlalchemy-migrate: rebuild for Python 3.8.

---
 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 cfdf6166695..bb002660c0f 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=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 863a48d9543b2461c699350ad32bb2ae925e30c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 508/865] python-sqlparse: rebuild for Python 3.8.

---
 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 29a477db392..0f8c6f8ea2e 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=1
+revision=2
 archs=noarch
 wrksrc="sqlparse-${version}"
 build_style=python-module

From b477355bf26b723b8ab7cab61902be1e4aaee7bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 509/865] python-stem: rebuild for Python 3.8.

---
 srcpkgs/python-stem/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index e04ae0a848c..e16e79d84bb 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stem'
 pkgname=python-stem
 version=1.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stem-${version/b/}"
 build_style=python-module

From 82d435bdfc12ea7b4a3dabd17da5113470bffe26 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 510/865] python-stevedore: rebuild for Python 3.8.

---
 srcpkgs/python-stevedore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stevedore/template b/srcpkgs/python-stevedore/template
index 281538211af..4f781304d3f 100644
--- a/srcpkgs/python-stevedore/template
+++ b/srcpkgs/python-stevedore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stevedore'
 pkgname=python-stevedore
 version=1.30.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stevedore-${version}"
 build_style=python-module

From 2afe8f7a4ce71437484d9258f44ead34ae2f6647 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 511/865] python-stormssh: rebuild for Python 3.8.

---
 srcpkgs/python-stormssh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stormssh/template b/srcpkgs/python-stormssh/template
index 250e838e582..11f63f67bba 100644
--- a/srcpkgs/python-stormssh/template
+++ b/srcpkgs/python-stormssh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stormssh'
 pkgname=python-stormssh
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=storm-${version}
 build_style=python-module

From 754addaa6845cd505b5d744fa4e54a66dba9c4ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 512/865] python-subliminal: rebuild for Python 3.8.

---
 srcpkgs/python-subliminal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-subliminal/template b/srcpkgs/python-subliminal/template
index 035ca844880..216c11bb4c0 100644
--- a/srcpkgs/python-subliminal/template
+++ b/srcpkgs/python-subliminal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-subliminal'
 pkgname=python-subliminal
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="subliminal-${version}"
 build_style=python-module

From da488d7b04fb3b00046be4293c33ae0809dad8e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 513/865] python-sympy: rebuild for Python 3.8.

---
 srcpkgs/python-sympy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sympy/template b/srcpkgs/python-sympy/template
index 21d8cf69840..d41c8a392b0 100644
--- a/srcpkgs/python-sympy/template
+++ b/srcpkgs/python-sympy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sympy'
 pkgname=python-sympy
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="sympy-${version}"
 build_style=python-module

From 78857098e3058d7f0df7ece8be24b84196d16921 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 514/865] python-tables: rebuild for Python 3.8.

---
 srcpkgs/python-tables/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tables/template b/srcpkgs/python-tables/template
index 644ae3d1a35..5f61fe8fb88 100644
--- a/srcpkgs/python-tables/template
+++ b/srcpkgs/python-tables/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tables'
 pkgname=python-tables
 version=3.5.2
-revision=1
+revision=2
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="tables"

From 45955cd565bccabbc642dce6684af05ad7651ba5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 515/865] python3-tabulate: rebuild for Python 3.8.

---
 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 19b61edd88c..6f142077300 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="tabulate-${version}"
 build_style=python3-module

From 285f369cadcf0d14f66db8045bb3fb979e69937f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 516/865] python-tempita: rebuild for Python 3.8.

---
 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 9e7123fbd9d..c1c75ee1cac 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=3
+revision=4
 archs=noarch
 wrksrc="Tempita-${version}"
 build_style=python-module

From efa04f85df83993e48813e00587c05cd6c722387 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 517/865] python-tempora: rebuild for Python 3.8.

---
 srcpkgs/python-tempora/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tempora/template b/srcpkgs/python-tempora/template
index fa1cbd4fbd1..866d163f367 100644
--- a/srcpkgs/python-tempora/template
+++ b/srcpkgs/python-tempora/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tempora'
 pkgname=python-tempora
 version=1.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tempora-${version}"
 build_style=python-module

From 783b09196fc04d62a7e7a220ffffc941acedfeeb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 518/865] python-termcolor: rebuild for Python 3.8.

---
 srcpkgs/python-termcolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-termcolor/template b/srcpkgs/python-termcolor/template
index 877e5e59d9b..73c18fc79eb 100644
--- a/srcpkgs/python-termcolor/template
+++ b/srcpkgs/python-termcolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-termcolor'
 pkgname=python-termcolor
 version=1.1.0
-revision=5
+revision=6
 archs=noarch
 wrksrc="termcolor-${version}"
 build_style=python-module

From 469ef1b462bbb9fb2d5d97b38e357b662f5009d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 519/865] python-terminado: rebuild for Python 3.8.

---
 srcpkgs/python-terminado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-terminado/template b/srcpkgs/python-terminado/template
index cdfe6163991..d649364d88d 100644
--- a/srcpkgs/python-terminado/template
+++ b/srcpkgs/python-terminado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-terminado'
 pkgname=python-terminado
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="terminado-${version}"
 build_style=python-module

From ced3b80cce126ab9d23dd2a4bc9505e23b5a4888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 520/865] python3-terminaltables: rebuild for Python 3.8.

---
 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 60ada7ffcb6..4f781eab76d 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=1
+revision=2
 archs=noarch
 wrksrc="terminaltables-${version}"
 build_style=python3-module

From 7a90fec1dbe0347ede0762e747d8edf378bd497c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 521/865] python-testpath: rebuild for Python 3.8.

---
 srcpkgs/python-testpath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-testpath/template b/srcpkgs/python-testpath/template
index bac7270fd40..abfc59900c0 100644
--- a/srcpkgs/python-testpath/template
+++ b/srcpkgs/python-testpath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-testpath'
 pkgname=python-testpath
 version=0.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="testpath-${version}"
 build_style=python-module

From f8761f2f7116f9b2691807d35d9836a34fbbbf32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 522/865] python3-text-unidecode: rebuild for Python 3.8.

---
 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 77163d9e0b6..b3b5aa95575 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="text-unidecode-${version}"
 build_style=python3-module

From 2d2f99664b0644e22e4876b9d54048008a392289 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 523/865] python-texttable: rebuild for Python 3.8.

---
 srcpkgs/python-texttable/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-texttable/template b/srcpkgs/python-texttable/template
index a9c5ec66db1..24bac87af6a 100644
--- a/srcpkgs/python-texttable/template
+++ b/srcpkgs/python-texttable/template
@@ -1,7 +1,7 @@
 # Template file for 'python-texttable'
 pkgname=python-texttable
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="texttable-${version}"
 build_style=python-module

From c671c144e8fe81895f6995347d19725f72165b25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 524/865] python3-tinycss: rebuild for Python 3.8.

---
 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 91fda6f808d..3b4717c234e 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=1
+revision=2
 archs=noarch
 wrksrc=tinycss-${version}
 build_style=python3-module

From 9aa3e8105128dc5e3b86a83bd0ae76e7d9c9cf86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 525/865] python-tmuxp: rebuild for Python 3.8.

---
 srcpkgs/python-tmuxp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tmuxp/template b/srcpkgs/python-tmuxp/template
index 00c86730cbe..45b4a9772b2 100644
--- a/srcpkgs/python-tmuxp/template
+++ b/srcpkgs/python-tmuxp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tmuxp'
 pkgname=python-tmuxp
 version=1.5.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="tmuxp-${version}"
 build_style=python-module

From 995158f34c29d704b44eae2b32df801023781096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 526/865] python-toml: rebuild for Python 3.8.

---
 srcpkgs/python-toml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-toml/template b/srcpkgs/python-toml/template
index 0eee1b0b2c3..2fd6eaa0cea 100644
--- a/srcpkgs/python-toml/template
+++ b/srcpkgs/python-toml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-toml'
 pkgname=python-toml
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="toml-${version}"
 build_style=python-module

From 6270afd962719dd0e9b876b40ab7bf9be9936cf5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 527/865] python-tornado: rebuild for Python 3.8.

---
 srcpkgs/python-tornado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tornado/template b/srcpkgs/python-tornado/template
index 7e5700177f5..bd558d251f5 100644
--- a/srcpkgs/python-tornado/template
+++ b/srcpkgs/python-tornado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tornado'
 pkgname=python-tornado
 version=5.1.1
-revision=1
+revision=2
 wrksrc="tornado-${version}"
 build_style=python-module
 pycompile_module="tornado"

From cd9e416288ae101465f91c75453326fdead7d148 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 528/865] python-tqdm: rebuild for Python 3.8.

---
 srcpkgs/python-tqdm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tqdm/template b/srcpkgs/python-tqdm/template
index 69369bfd6b9..ef1f07127ad 100644
--- a/srcpkgs/python-tqdm/template
+++ b/srcpkgs/python-tqdm/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tqdm'
 pkgname=python-tqdm
 version=4.36.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tqdm-${version}"
 build_style=python-module

From 4ef8d34c3ab05cf43591d92220fc001007644a6d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 529/865] python-traitlets: rebuild for Python 3.8.

---
 srcpkgs/python-traitlets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-traitlets/template b/srcpkgs/python-traitlets/template
index d2d1b85edb6..797dd0268da 100644
--- a/srcpkgs/python-traitlets/template
+++ b/srcpkgs/python-traitlets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-traitlets'
 pkgname=python-traitlets
 version=4.3.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="traitlets-${version}"
 build_style=python-module

From f41edcb16535bb92b415439644ee01a61da14478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 530/865] python3-transifex-client: rebuild for Python 3.8.

---
 srcpkgs/python3-transifex-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-transifex-client/template b/srcpkgs/python3-transifex-client/template
index 77ca15313e0..5ea767b5a7d 100644
--- a/srcpkgs/python3-transifex-client/template
+++ b/srcpkgs/python3-transifex-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-transifex-client'
 pkgname=python3-transifex-client
 version=0.13.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="transifex-client-${version}"
 build_style=python3-module

From d2c27a7fe61e206ccbf655146feec32e4b13cfc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 531/865] python3-treq: rebuild for Python 3.8.

---
 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 8f210d13489..e46e1e7e7a5 100644
--- a/srcpkgs/python3-treq/template
+++ b/srcpkgs/python3-treq/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-treq'
 pkgname=python3-treq
 version=18.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="treq-${version}"
 build_style=python3-module

From 26b5427ba0e26d8712ebe081a774396e3ea39d76 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 532/865] python-ttystatus: rebuild for Python 3.8.

---
 srcpkgs/python-ttystatus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ttystatus/template b/srcpkgs/python-ttystatus/template
index 9fbefad3461..43e87ddcdf0 100644
--- a/srcpkgs/python-ttystatus/template
+++ b/srcpkgs/python-ttystatus/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ttystatus'
 pkgname=python-ttystatus
 version=0.38
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="ttystatus"

From dbf349fac2110dc33ad6d676748e46240dec1fbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 533/865] python-twitter: rebuild for Python 3.8.

---
 srcpkgs/python-twitter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-twitter/template b/srcpkgs/python-twitter/template
index c299b28dedf..e5e7194078a 100644
--- a/srcpkgs/python-twitter/template
+++ b/srcpkgs/python-twitter/template
@@ -1,7 +1,7 @@
 # Template file for 'python-twitter'
 pkgname=python-twitter
 version=3.5
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="twitter"

From 58eab12e88f689c694ef474e09d2266b77b5bcc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 534/865] python3-txacme: rebuild for Python 3.8.

---
 srcpkgs/python3-txacme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-txacme/template b/srcpkgs/python3-txacme/template
index e6becf593e7..c678addda4d 100644
--- a/srcpkgs/python3-txacme/template
+++ b/srcpkgs/python3-txacme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txacme'
 pkgname=python3-txacme
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="txacme-${version}"
 build_style=python3-module

From a1a3464258c255e0b73cbdb47e0337d3b8af473e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 535/865] python3-txaio: rebuild for Python 3.8.

---
 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 fa13338cd30..8163f5c90fd 100644
--- a/srcpkgs/python3-txaio/template
+++ b/srcpkgs/python3-txaio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txaio'
 pkgname=python3-txaio
 version=18.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="txaio-${version}"
 build_style=python3-module

From 66d08c9f4945499ccd01b127d7ec1f8cfd468dd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 536/865] python3-txtorcon: rebuild for Python 3.8.

---
 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 3018a65e457..a10ab59c582 100644
--- a/srcpkgs/python3-txtorcon/template
+++ b/srcpkgs/python3-txtorcon/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txtorcon'
 pkgname=python3-txtorcon
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="txtorcon-${version}"
 build_style=python3-module

From f3bf9db3f8b699c67eebc7fa0278fca9de892d75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 537/865] python3-typed-ast: update to 1.4.0.

---
 srcpkgs/python3-typed-ast/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-typed-ast/template b/srcpkgs/python3-typed-ast/template
index ec5b5b9df11..b38f0fe065c 100644
--- a/srcpkgs/python3-typed-ast/template
+++ b/srcpkgs/python3-typed-ast/template
@@ -1,8 +1,8 @@
 # Template file for 'python3-typed-ast'
 pkgname=python3-typed-ast
-version=1.3.4
+version=1.4.0
 revision=1
-wrksrc="typed-ast-${version}"
+wrksrc="typed_ast-${version}"
 build_style=python3-module
 pycompile_module="typed_ast"
 hostmakedepends="python3-devel python3-setuptools"
@@ -11,6 +11,6 @@ short_desc="Ast module with type comment support"
 maintainer="whoami <whoami@systemli.org>"
 license="Apache-2.0"
 homepage="https://github.com/python/typed_ast"
-distfiles="${PYPI_SITE}/t/typed-ast/typed-ast-${version}.tar.gz"
-checksum=68c362848d9fb71d3c3e5f43c09974a0ae319144634e7a47db62f0f2a54a7fa7
+distfiles="${PYPI_SITE}/t/typed-ast/typed_ast-${version}.tar.gz"
+checksum=66480f95b8167c9c5c5c87f32cf437d585937970f3fc24386f313a4c97b44e34
 nocross="https://travis-ci.org/void-linux/void-packages/jobs/509366923#L1009"

From d977434aa35e2c6bc03c5db7514f5409eb21a2a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 538/865] python3-typing_extensions: rebuild for Python 3.8.

---
 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 ab96df4eb2d..605af46216d 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=3.6.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module

From d1368b489e196a385edf9b15df4da773505f8a5e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 539/865] python-tzlocal: rebuild for Python 3.8.

---
 srcpkgs/python-tzlocal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tzlocal/template b/srcpkgs/python-tzlocal/template
index 396eada3982..684d2a21b40 100644
--- a/srcpkgs/python-tzlocal/template
+++ b/srcpkgs/python-tzlocal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tzlocal'
 pkgname=python-tzlocal
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tzlocal-${version}"
 build_style=python-module

From 0ec72579de99edead05daf85e7cac5e0e2ab641b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 540/865] python-unittest-mixins: rebuild for Python 3.8.

---
 srcpkgs/python-unittest-mixins/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-unittest-mixins/template b/srcpkgs/python-unittest-mixins/template
index 6f7c7204112..2ff5c497523 100644
--- a/srcpkgs/python-unittest-mixins/template
+++ b/srcpkgs/python-unittest-mixins/template
@@ -1,7 +1,7 @@
 # Template file for 'python-unittest-mixins'
 pkgname=python-unittest-mixins
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From a5e3289470d7f0e25e09237aa9463d28817818c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 541/865] python3-unpaddedbase64: rebuild for Python 3.8.

---
 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 37df2c1d642..06a47db3b64 100644
--- a/srcpkgs/python3-unpaddedbase64/template
+++ b/srcpkgs/python3-unpaddedbase64/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-unpaddedbase64'
 pkgname=python3-unpaddedbase64
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-unpaddedbase64-${version}"
 build_style=python3-module

From 13043751d10b741546f419a7e9089a5b252fd5c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 542/865] python-urbandict: rebuild for Python 3.8.

---
 srcpkgs/python-urbandict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urbandict/template b/srcpkgs/python-urbandict/template
index ff09e963fa7..ed359c744be 100644
--- a/srcpkgs/python-urbandict/template
+++ b/srcpkgs/python-urbandict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urbandict'
 pkgname=python-urbandict
 version=0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="urbandict-${version}"
 build_style=python-module

From a15bf0893e7a65a070751099b3ddca9172b49912 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 543/865] python-uritemplate: rebuild for Python 3.8.

---
 srcpkgs/python-uritemplate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-uritemplate/template b/srcpkgs/python-uritemplate/template
index 7a530fee03b..cdcda419efe 100644
--- a/srcpkgs/python-uritemplate/template
+++ b/srcpkgs/python-uritemplate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-uritemplate'
 pkgname=python-uritemplate
 version=3.0.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 43c97a015ea83b2b0934ea864a84b324ec83f31a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 544/865] python3-urlgrabber: rebuild for Python 3.8.

---
 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 087087d5ed1..eef67c8e13c 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=1
+revision=2
 archs=noarch
 wrksrc="urlgrabber-${version}"
 build_style=python3-module

From 016dbcff2bb0c1709814f4da4fe214d551e3d4cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 545/865] python-urllib3: rebuild for Python 3.8.

---
 srcpkgs/python-urllib3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urllib3/template b/srcpkgs/python-urllib3/template
index 8056518c9c1..1ff21f7555d 100644
--- a/srcpkgs/python-urllib3/template
+++ b/srcpkgs/python-urllib3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urllib3'
 pkgname=python-urllib3
 version=1.25.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="urllib3-${version}"
 build_style=python-module

From 9629da352be38a0f14bcb680c7fc05dd1d1167f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 546/865] python-urwid: rebuild for Python 3.8.

---
 srcpkgs/python-urwid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwid/template b/srcpkgs/python-urwid/template
index ae6722b1135..7adf8b76b96 100644
--- a/srcpkgs/python-urwid/template
+++ b/srcpkgs/python-urwid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwid'
 pkgname=python-urwid
 version=2.0.1
-revision=2
+revision=3
 wrksrc="urwid-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"

From 4be978b1173afce93e7ff39f6e577059f4c7dd4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 547/865] python-urwidtrees: rebuild for Python 3.8.

---
 srcpkgs/python-urwidtrees/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwidtrees/template b/srcpkgs/python-urwidtrees/template
index be0e906addf..62d214489e2 100644
--- a/srcpkgs/python-urwidtrees/template
+++ b/srcpkgs/python-urwidtrees/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwidtrees'
 pkgname=python-urwidtrees
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="urwidtrees-${version}"
 build_style=python-module

From c9f3ad0ed793593060952aa365e888244dfd07e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 548/865] python3-usb: rebuild for Python 3.8.

---
 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 a081ee5ba76..d26c24df669 100644
--- a/srcpkgs/python3-usb/template
+++ b/srcpkgs/python3-usb/template
@@ -2,7 +2,7 @@
 pkgname=python3-usb
 _pkgname=pyusb
 version=1.0.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From 454ef49754696a81de599e7fa6cf9cab31ccbc31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 549/865] python-utils: rebuild for Python 3.8.

---
 srcpkgs/python-utils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-utils/template b/srcpkgs/python-utils/template
index e881e70c0f0..6745df121a6 100644
--- a/srcpkgs/python-utils/template
+++ b/srcpkgs/python-utils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-utils'
 pkgname=python-utils
 version=2.3.0
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 wrksrc="python-utils-${version}"

From eef5c75b93453defdcb8def5b34c20f20cda0fc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 550/865] python3-validators: rebuild for Python 3.8.

---
 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 29b9fc74c30..6d9da94c4bb 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.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="validators-${version}"
 build_style=python3-module

From 53ce0ff21de84f26405d0314002bb11e85903128 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 551/865] python3-vdf: rebuild for Python 3.8.

---
 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 44c635ecdd6..88bd521beaa 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.2
-revision=1
+revision=2
 wrksrc=vdf-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From f720d6ed8267fa4b27a7ce83dd3a265a18cd13b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 552/865] python-vint: rebuild for Python 3.8.

---
 srcpkgs/python-vint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vint/template b/srcpkgs/python-vint/template
index 4ca693f7eb2..62c663bf18e 100644
--- a/srcpkgs/python-vint/template
+++ b/srcpkgs/python-vint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vint'
 pkgname=python-vint
 version=0.3.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="vim-vint-${version}"
 build_style=python-module

From 573eadbcb861065b712050cf6e7fd200c33a73b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 553/865] python-virtualenv: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv/template b/srcpkgs/python-virtualenv/template
index 1f9166e79a2..cdeda28c53e 100644
--- a/srcpkgs/python-virtualenv/template
+++ b/srcpkgs/python-virtualenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv'
 pkgname=python-virtualenv
 version=16.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="virtualenv-${version}"
 build_style=python-module

From 25eda2949787b488dfc7cfc6512d02a4971d4f96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 554/865] python-virtualenv-clone: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv-clone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv-clone/template b/srcpkgs/python-virtualenv-clone/template
index 3c9f601bc6e..273b9ddf6d3 100644
--- a/srcpkgs/python-virtualenv-clone/template
+++ b/srcpkgs/python-virtualenv-clone/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv-clone'
 pkgname=python-virtualenv-clone
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5a922ea064a496fb01ff970e45a43ef51561b373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 555/865] python3-virustotal-api: rebuild for Python 3.8.

---
 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 2bc6592c91f..fc362c03b39 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=1
+revision=2
 archs=noarch
 wrksrc="virustotal-api-${version}"
 build_style=python3-module

From 65deaff01a3a9a5d82641fe121fdb2964b75346f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 556/865] python-vispy: rebuild for Python 3.8.

---
 srcpkgs/python-vispy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vispy/template b/srcpkgs/python-vispy/template
index b757e5a271f..624ade6f12b 100644
--- a/srcpkgs/python-vispy/template
+++ b/srcpkgs/python-vispy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vispy'
 pkgname=python-vispy
 version=0.6.1
-revision=1
+revision=2
 wrksrc="vispy-${version}"
 build_style=python-module
 pycompile_module="vispy"

From 5e47d846dedfdbef61bd10a33928ce13b600c648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 557/865] python-vobject: rebuild for Python 3.8.

---
 srcpkgs/python-vobject/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vobject/template b/srcpkgs/python-vobject/template
index 54f575aa1a1..2c1c215527c 100644
--- a/srcpkgs/python-vobject/template
+++ b/srcpkgs/python-vobject/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vobject'
 pkgname=python-vobject
 version=0.9.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="vobject-${version}"
 build_style=python-module

From 8125ffd3d4822ca6bf81508ed8b859e079cd9437 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 558/865] python-voluptuous: rebuild for Python 3.8.

---
 srcpkgs/python-voluptuous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-voluptuous/template b/srcpkgs/python-voluptuous/template
index fd44ae2e324..1dd5de27491 100644
--- a/srcpkgs/python-voluptuous/template
+++ b/srcpkgs/python-voluptuous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-voluptuous'
 pkgname=python-voluptuous
 version=0.11.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="voluptuous-${version}"
 build_style=python-module

From 608126ee8043f8d45a8e56608f99e0df6cc2ee9e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 559/865] python-watchdog: rebuild for Python 3.8.

---
 srcpkgs/python-watchdog/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchdog/template b/srcpkgs/python-watchdog/template
index f6027c3b5ca..2eea6397f00 100644
--- a/srcpkgs/python-watchdog/template
+++ b/srcpkgs/python-watchdog/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchdog'
 pkgname=python-watchdog
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="watchdog-${version}"
 build_style=python-module

From a54fc09b58f905a0ed5cd5892db67b7c4ea6ae9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 560/865] python-watchman: rebuild for Python 3.8.

---
 srcpkgs/python-watchman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchman/template b/srcpkgs/python-watchman/template
index 4c41c275ca2..97400668d64 100644
--- a/srcpkgs/python-watchman/template
+++ b/srcpkgs/python-watchman/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchman'
 pkgname=python-watchman
 version=1.4.1
-revision=2
+revision=3
 wrksrc="pywatchman-${version}"
 build_style=python-module
 pycompile_module="pywatchman"

From 4dd6084e6c30a25fb4ff3c44bf2c751eaab07715 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 561/865] python-wcwidth: rebuild for Python 3.8.

---
 srcpkgs/python-wcwidth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wcwidth/template b/srcpkgs/python-wcwidth/template
index 34bc22cbcb6..8ec6d17450c 100644
--- a/srcpkgs/python-wcwidth/template
+++ b/srcpkgs/python-wcwidth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wcwidth'
 pkgname=python-wcwidth
 version=0.1.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="wcwidth-${version}"
 build_style=python-module

From cafaf5868e58cb26c2cdd29d0d1b52f9cf1e31ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 562/865] python-webassets: rebuild for Python 3.8.

---
 srcpkgs/python-webassets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webassets/template b/srcpkgs/python-webassets/template
index 3ad5475bd17..789be9684f7 100644
--- a/srcpkgs/python-webassets/template
+++ b/srcpkgs/python-webassets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webassets'
 pkgname=python-webassets
 version=0.12.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 88d8fa4eb1ca72857d5a1cab8a4f7495a9af1595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 563/865] python-webencodings: rebuild for Python 3.8.

---
 srcpkgs/python-webencodings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webencodings/template b/srcpkgs/python-webencodings/template
index 5a05af10835..f047a9e3c52 100644
--- a/srcpkgs/python-webencodings/template
+++ b/srcpkgs/python-webencodings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webencodings'
 pkgname=python-webencodings
 version=0.5.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="webencodings-${version}"
 build_style=python-module

From 81c9d07c0e756cc87a6cd2c444c0b2f0987463da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 564/865] python-websocket-client: rebuild for Python 3.8.

---
 srcpkgs/python-websocket-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-websocket-client/template b/srcpkgs/python-websocket-client/template
index 8aa276655cb..3df8ab42b36 100644
--- a/srcpkgs/python-websocket-client/template
+++ b/srcpkgs/python-websocket-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-websocket-client'
 pkgname=python-websocket-client
 version=0.56.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="websocket_client-${version}"
 build_style=python-module

From 97fc927913b3f2682b7ddf73982008e9fdc1e42d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 565/865] python-wheel: rebuild for Python 3.8.

---
 srcpkgs/python-wheel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wheel/template b/srcpkgs/python-wheel/template
index 11c50bd65e6..11aeaf42316 100644
--- a/srcpkgs/python-wheel/template
+++ b/srcpkgs/python-wheel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wheel'
 pkgname=python-wheel
 version=0.32.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="wheel-${version}"
 build_style=python-module

From 861d20f2f112cd829f2f06f746680e2c034a812f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 566/865] python-wikipedia: rebuild for Python 3.8.

---
 srcpkgs/python-wikipedia/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wikipedia/template b/srcpkgs/python-wikipedia/template
index e6ebf65f7c2..f8a69755b74 100644
--- a/srcpkgs/python-wikipedia/template
+++ b/srcpkgs/python-wikipedia/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wikipedia'
 pkgname=python-wikipedia
 version=1.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="wikipedia-${version}"
 build_style=python-module

From c58e9b08de69bd19aa3bcf91ec42d1b626a2a6bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 567/865] python-wrapt: rebuild for Python 3.8.

---
 srcpkgs/python-wrapt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wrapt/template b/srcpkgs/python-wrapt/template
index a3a237aa08d..c2d2850bf5a 100644
--- a/srcpkgs/python-wrapt/template
+++ b/srcpkgs/python-wrapt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wrapt'
 pkgname=python-wrapt
 version=1.10.11
-revision=3
+revision=4
 wrksrc="wrapt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From f65cbaf6b92acb78d54d3b498924285bce64fb66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 568/865] python-wsproto: rebuild for Python 3.8.

---
 srcpkgs/python-wsproto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wsproto/template b/srcpkgs/python-wsproto/template
index 88b08f796d4..a93a799be0a 100644
--- a/srcpkgs/python-wsproto/template
+++ b/srcpkgs/python-wsproto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wsproto'
 pkgname=python-wsproto
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="wsproto-${version}"
 build_style=python-module

From 1b60fb796f8ac377a2e31dc0503df215c27fc59e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 569/865] python-xapp: rebuild for Python 3.8.

---
 srcpkgs/python-xapp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xapp/template b/srcpkgs/python-xapp/template
index 9b6938113f2..798041eb946 100644
--- a/srcpkgs/python-xapp/template
+++ b/srcpkgs/python-xapp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xapp'
 pkgname=python-xapp
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="xapp"

From 415bec8de0abe2772c407df9db650bd06ba122ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 570/865] python-xdg: rebuild for Python 3.8.

---
 srcpkgs/python-xdg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xdg/template b/srcpkgs/python-xdg/template
index afa6c180043..4e819c8bec7 100644
--- a/srcpkgs/python-xdg/template
+++ b/srcpkgs/python-xdg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xdg'
 pkgname=python-xdg
 version=0.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyxdg-${version}"
 build_style=python-module

From 4518feeb499caa6631ef29ead0439c5bcc67a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 571/865] python-xlib: rebuild for Python 3.8.

---
 srcpkgs/python-xlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xlib/template b/srcpkgs/python-xlib/template
index 1f97c4117d4..e67d1d82e73 100644
--- a/srcpkgs/python-xlib/template
+++ b/srcpkgs/python-xlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xlib'
 pkgname=python-xlib
 version=0.25
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="Xlib"

From 1cef928049b5216468e701acce714fc14d79694f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 572/865] python-xmldiff: rebuild for Python 3.8.

---
 srcpkgs/python-xmldiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmldiff/template b/srcpkgs/python-xmldiff/template
index a0a8004ea7b..4f3cc2d27b7 100644
--- a/srcpkgs/python-xmldiff/template
+++ b/srcpkgs/python-xmldiff/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmldiff'
 pkgname=python-xmldiff
 version=2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmldiff-${version}"
 build_style=python-module

From cefcbea2ec7904b0c1ad16ec32963bf430b27c4a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 573/865] python-xmltodict: rebuild for Python 3.8.

---
 srcpkgs/python-xmltodict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmltodict/template b/srcpkgs/python-xmltodict/template
index a48e6d46aa6..b3d7ef042e8 100644
--- a/srcpkgs/python-xmltodict/template
+++ b/srcpkgs/python-xmltodict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmltodict'
 pkgname=python-xmltodict
 version=0.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmltodict-${version}"
 build_style=python-module

From 889d5fe9fe9f1830bec336ac52bd8bd32f47f0a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 574/865] python-yaml: rebuild for Python 3.8.

---
 srcpkgs/python-yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yaml/template b/srcpkgs/python-yaml/template
index 8a7caf1d99e..e3bad0ae59b 100644
--- a/srcpkgs/python-yaml/template
+++ b/srcpkgs/python-yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yaml'
 pkgname=python-yaml
 version=5.1.2
-revision=1
+revision=2
 wrksrc="PyYAML-${version}"
 build_style=python-module
 pycompile_module="yaml"

From 1b3e89ca272ae28a62064bf83eaff84332307682 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 575/865] python-yamllint: rebuild for Python 3.8.

---
 srcpkgs/python-yamllint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yamllint/template b/srcpkgs/python-yamllint/template
index 1a05e1043bb..d0b51ba637a 100644
--- a/srcpkgs/python-yamllint/template
+++ b/srcpkgs/python-yamllint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yamllint'
 pkgname=python-yamllint
 version=1.15.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="yamllint-${version}"
 build_style=python-module

From b233bcb50542e39ba02899ef3d1b833e385204e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 576/865] python3-yarl: rebuild for Python 3.8.

---
 srcpkgs/python3-yarl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-yarl/template b/srcpkgs/python3-yarl/template
index 222f176cfcf..ecb79a3cc9c 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.3.0
-revision=2
+revision=3
 wrksrc="yarl-${version}"
 build_style=python3-module
 pycompile_module="yarl"

From 484c2559f18644c63342db467c703e2e998e89b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 577/865] python-zc.lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-zc.lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zc.lockfile/template b/srcpkgs/python-zc.lockfile/template
index cb0bee99506..b77071af04f 100644
--- a/srcpkgs/python-zc.lockfile/template
+++ b/srcpkgs/python-zc.lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zc.lockfile'
 pkgname=python-zc.lockfile
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 364e398c8dd7e3dd141ceb1c22626ecf2a5b9b32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 578/865] python3-zeroconf: rebuild for Python 3.8.

---
 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 497a8bc6b69..dda37bd3dc4 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.23.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-zeroconf-${version}"
 build_style=python3-module

From 22b5d6236d8f0ff0050135b2e77eca608519b1ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 579/865] python3-zipp: rebuild for Python 3.8.

---
 srcpkgs/python3-zipp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-zipp/template b/srcpkgs/python3-zipp/template
index 8445c10825c..ba682915beb 100644
--- a/srcpkgs/python3-zipp/template
+++ b/srcpkgs/python3-zipp/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-zipp'
 pkgname=python3-zipp
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="zipp-${version}"
 build_style=python3-module

From c5c37d6e890a553e458333e610ab56b1a5c9b516 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 580/865] python-zipstream: rebuild for Python 3.8.

---
 srcpkgs/python-zipstream/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zipstream/template b/srcpkgs/python-zipstream/template
index 89079e21b22..2c7390127ac 100644
--- a/srcpkgs/python-zipstream/template
+++ b/srcpkgs/python-zipstream/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zipstream'
 pkgname=python-zipstream
 version=1.1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="python-zipstream-${version}"
 build_style=python-module

From bc31e25a00839c9d3cc5ac70edf0485ee4b21d4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 581/865] python3-zope.cachedescriptors: rebuild for Python
 3.8.

---
 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 bdd5ef41e21..1f1fae5b27b 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.3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="zope.cachedescriptors-${version}"
 build_style=python3-module

From 40a63988f3c2db41391f0a7ab6cde24a9b79ed05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 582/865] python-zope.component: rebuild for Python 3.8.

---
 srcpkgs/python-zope.component/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.component/template b/srcpkgs/python-zope.component/template
index 7cea5b9d71d..66ef109a4aa 100644
--- a/srcpkgs/python-zope.component/template
+++ b/srcpkgs/python-zope.component/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.component'
 pkgname=python-zope.component
 version=4.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 799496c35db93c88e6d00e4b41eeca8b4af5b188 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 583/865] python-zope.event: rebuild for Python 3.8.

---
 srcpkgs/python-zope.event/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.event/template b/srcpkgs/python-zope.event/template
index 3c7fb8dfd6e..6518cb4529b 100644
--- a/srcpkgs/python-zope.event/template
+++ b/srcpkgs/python-zope.event/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.event'
 pkgname=python-zope.event
 version=4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d77b16ecad39877131af8a9c01ea925b33737b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 584/865] python-zope.interface: rebuild for Python 3.8.

---
 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 d3c57be85f7..1dbcbecd377 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=4.6.0
-revision=2
+revision=3
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="zope"

From e5cb80612a71c54facf607c52c7a385badeba668 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 585/865] python3-pivy: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-pivy/patches/73cd928f.patch | 36 +++++++++++++++++++++
 srcpkgs/python3-pivy/template               |  2 +-
 2 files changed, 37 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/python3-pivy/patches/73cd928f.patch

diff --git a/srcpkgs/python3-pivy/patches/73cd928f.patch b/srcpkgs/python3-pivy/patches/73cd928f.patch
new file mode 100644
index 00000000000..edff803822a
--- /dev/null
+++ b/srcpkgs/python3-pivy/patches/73cd928f.patch
@@ -0,0 +1,36 @@
+From 73cd928fe1a9c2abbe6f28844a7fc695ad11d7cf Mon Sep 17 00:00:00 2001
+From: Peter Lama <peterldev94@gmail.com>
+Date: Fri, 24 Aug 2018 17:25:47 -0700
+Subject: [PATCH] Fix issue #39: PyUnicode_AsUTF8 returns const char*
+
+Even with python 2, it doesn't seem like char* is needed
+
+--- Inventor/nodes/SoMarkerSet.i
++++ Inventor/nodes/SoMarkerSet.i
+@@ -5,7 +5,7 @@
+         short WIDTH, HEIGHT;
+         size.getValue(WIDTH, HEIGHT);
+         short BYTEWIDTH = (WIDTH + 7) / 2;
+-        char* coin_marker;
++        const char* coin_marker;
+ #ifdef PY_2
+         if (PyString_Check(string))
+         {
+@@ -49,4 +49,4 @@
+         delete[] bitmapbytes;
+         bitmapbytes = NULL;
+     }
+-}
+\ No newline at end of file
++}
+--- Inventor/sensors/SoSensor.i
++++ Inventor/sensors/SoSensor.i
+@@ -4,7 +4,7 @@ SoSensorPythonCB(void * data, SoSensor * sensor)
+ {
+   PyGILState_STATE gil = PyGILState_Ensure();
+   swig_type_info * swig_type = 0;
+-  char * sensor_cast_name = NULL;
++  const char * sensor_cast_name = NULL;
+   PyObject * func, * arglist;
+   PyObject * result, * pysensor;
+ 
diff --git a/srcpkgs/python3-pivy/template b/srcpkgs/python3-pivy/template
index 4a733e805e3..9caa13837e2 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.4
-revision=1
+revision=2
 wrksrc="Coin3D-${pkgname#python3-}-a84100beff22"
 build_style=python3-module
 pycompile_module="pivy"

From 7d8cfe1721327d4b8695c6abc56d012b27989c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 586/865] python-tweepy: update to 3.8.0.

---
 srcpkgs/python-tweepy/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python-tweepy/template b/srcpkgs/python-tweepy/template
index ef61039dac5..4605bbf83ea 100644
--- a/srcpkgs/python-tweepy/template
+++ b/srcpkgs/python-tweepy/template
@@ -1,6 +1,6 @@
 # Template file for 'python-tweepy'
 pkgname=python-tweepy
-version=3.7.0
+version=3.8.0
 revision=1
 archs=noarch
 wrksrc="tweepy-${version}"
@@ -14,8 +14,8 @@ license="MIT"
 homepage="https://github.com/tweepy/tweepy"
 distfiles="${PYPI_SITE}/t/tweepy/tweepy-${version}.tar.gz
  https://raw.githubusercontent.com/tweepy/tweepy/master/LICENSE>LICENSE.txt"
-checksum="fe85a79f58a01dd335968523b91c5fce760e7fe78bf25a6e71c72204fe499d0b
- deeeae0dcc22dbf108a801b8dc4e484bcc1bfb541b1a4f4615ab3e61def44fb5"
+checksum="8abd828ba51a85a2b5bb7373715d6d3bb32d18ac624e3a4db02e4ef8ab48316b
+ bf9bc5b9dcb8421bb3c342bb7fd29194688e1262b50766bd71b21a07461e74b7"
 
 post_install() {
 	vlicense ../LICENSE.txt

From 5f654f2f6a7eca9a50adb53af9037466723dd82c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 587/865] Electron-Cash: rebuild for Python 3.8.

---
 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 2db05c94832..08670c5f08d 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.0.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electroncash electroncash_gui electroncash_plugins"

From 931f125f8699e33cb16c8ed43a5e910d0056db6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 588/865] OpenLP: rebuild for Python 3.8.

---
 srcpkgs/OpenLP/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/OpenLP/template b/srcpkgs/OpenLP/template
index fb417f8d05e..ccae6d0282e 100644
--- a/srcpkgs/OpenLP/template
+++ b/srcpkgs/OpenLP/template
@@ -1,7 +1,7 @@
 # Template file for 'OpenLP'
 pkgname=OpenLP
 version=2.4.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="openlp"

From 21b02367e81c8635c88830fd008c0ba44ffcccff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 589/865] PhotoCollage: rebuild for Python 3.8.

---
 srcpkgs/PhotoCollage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/PhotoCollage/template b/srcpkgs/PhotoCollage/template
index 2c55ca87ce0..9997d1e7d98 100644
--- a/srcpkgs/PhotoCollage/template
+++ b/srcpkgs/PhotoCollage/template
@@ -1,7 +1,7 @@
 # Template file for 'PhotoCollage'
 pkgname=PhotoCollage
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="photocollage"

From 49dffe4070ca7dff3c38379b8df9d9b0d04395ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 590/865] ReText: rebuild for Python 3.8.

---
 srcpkgs/ReText/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ReText/template b/srcpkgs/ReText/template
index cc092ee6a36..a6551fbdf7c 100644
--- a/srcpkgs/ReText/template
+++ b/srcpkgs/ReText/template
@@ -1,7 +1,7 @@
 # Template file for 'ReText'
 pkgname=ReText
 version=7.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ReText"

From 225e30aaea5daebb0d4fc36c6d73424ad6fb1ec5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 591/865] SoapySDR: rebuild for Python 3.8.

---
 srcpkgs/SoapySDR/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/SoapySDR/template b/srcpkgs/SoapySDR/template
index 1bb66ce0689..bcfe45dc78a 100644
--- a/srcpkgs/SoapySDR/template
+++ b/srcpkgs/SoapySDR/template
@@ -1,7 +1,7 @@
 # Template file for 'SoapySDR'
 pkgname=SoapySDR
 version=0.7.1
-revision=1
+revision=2
 wrksrc="${pkgname}-soapy-sdr-${version}"
 build_style=cmake
 pycompile_module="SoapySDR.py"

From 2e64750e75e61296567ebb0053c46081cbab8e13 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 592/865] Solaar: rebuild for Python 3.8.

---
 srcpkgs/Solaar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Solaar/template b/srcpkgs/Solaar/template
index 2e8f4112e0e..86cab83d497 100644
--- a/srcpkgs/Solaar/template
+++ b/srcpkgs/Solaar/template
@@ -1,7 +1,7 @@
 # Template file for 'Solaar'
 pkgname=Solaar
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="hidapi logitech_receiver solaar"

From 21eb59c332d0765268a9b3a5442e4e265144a4ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 593/865] Trimage: rebuild for Python 3.8.

---
 srcpkgs/Trimage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Trimage/template b/srcpkgs/Trimage/template
index 14fc1d1bd1c..c9f4b047ccd 100644
--- a/srcpkgs/Trimage/template
+++ b/srcpkgs/Trimage/template
@@ -1,7 +1,7 @@
 # Template file for 'Trimage'
 pkgname=Trimage
 version=1.0.6
-revision=1
+revision=2
 wrksrc="Trimage-${version}"
 build_style=python3-module
 hostmakedepends="python3"

From 51428dec66979d2e47361fb2af5e7ad35acbe530 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 594/865] TwitchNotifier: rebuild for Python 3.8.

---
 srcpkgs/TwitchNotifier/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/TwitchNotifier/template b/srcpkgs/TwitchNotifier/template
index 01153bcc710..3bbba11db49 100644
--- a/srcpkgs/TwitchNotifier/template
+++ b/srcpkgs/TwitchNotifier/template
@@ -1,7 +1,7 @@
 # Template file for 'TwitchNotifier'
 pkgname=TwitchNotifier
 version=0.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-devel"
 makedepends="python3-devel"

From 18ad02f16088cf17e66f60da882ead88b4872617 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 595/865] Uranium: rebuild for Python 3.8.

---
 srcpkgs/Uranium/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Uranium/template b/srcpkgs/Uranium/template
index 193d5e211df..7a9509c2079 100644
--- a/srcpkgs/Uranium/template
+++ b/srcpkgs/Uranium/template
@@ -1,7 +1,7 @@
 # Template file for 'Uranium'
 pkgname=Uranium
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=cmake
 pycompile_module="UM"

From 1bfabd6cc63a8b03b99500dc59e362061f7549e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 596/865] afew: rebuild for Python 3.8.

---
 srcpkgs/afew/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/afew/template b/srcpkgs/afew/template
index a9156bbc902..f4b10098e66 100644
--- a/srcpkgs/afew/template
+++ b/srcpkgs/afew/template
@@ -1,7 +1,7 @@
 # Template file for 'afew'
 pkgname=afew
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="afew"

From f0695c0a0e527ead9d61cbbd52e872f5a6e7f422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 597/865] alot: rebuild for Python 3.8.

---
 srcpkgs/alot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/alot/template b/srcpkgs/alot/template
index 4ff75637282..c8e29e36297 100644
--- a/srcpkgs/alot/template
+++ b/srcpkgs/alot/template
@@ -1,7 +1,7 @@
 # Template file for 'alot'
 pkgname=alot
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="alot"

From ec032cb507b4dca0034eab7e0281dedd3b7dc418 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 598/865] ansible: rebuild for Python 3.8.

---
 srcpkgs/ansible/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ansible/template b/srcpkgs/ansible/template
index 413e6f8803e..773f890e114 100644
--- a/srcpkgs/ansible/template
+++ b/srcpkgs/ansible/template
@@ -1,7 +1,7 @@
 # Template file for 'ansible'
 pkgname=ansible
 version=2.8.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ansible"

From a97554cec966a402d73b894865fe2d37f1833cec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 599/865] apparmor: rebuild for Python 3.8.

---
 srcpkgs/apparmor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/apparmor/template b/srcpkgs/apparmor/template
index c0ef28bae03..e4f8e3fb3ae 100644
--- a/srcpkgs/apparmor/template
+++ b/srcpkgs/apparmor/template
@@ -1,7 +1,7 @@
 # Template file for 'apparmor'
 pkgname=apparmor
 version=2.13.3
-revision=1
+revision=2
 wrksrc="${pkgname}-v${version}"
 build_wrksrc=libraries/libapparmor
 build_style=gnu-configure

From 57116ea3c564f2a1852b8583df85c35aefe177a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 600/865] arandr: rebuild for Python 3.8.

---
 srcpkgs/arandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/arandr/template b/srcpkgs/arandr/template
index 71c8cbcd6ed..610dbc28bca 100644
--- a/srcpkgs/arandr/template
+++ b/srcpkgs/arandr/template
@@ -1,7 +1,7 @@
 # Template file for 'arandr'
 pkgname=arandr
 version=0.1.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenlayout"

From 4dbfc32dae63dc77f95207dc5aa5a79d26d2c9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 601/865] asciinema: rebuild for Python 3.8.

---
 srcpkgs/asciinema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/asciinema/template b/srcpkgs/asciinema/template
index 961b2756301..38b8871753c 100644
--- a/srcpkgs/asciinema/template
+++ b/srcpkgs/asciinema/template
@@ -1,7 +1,7 @@
 # Template file for 'asciinema'
 pkgname=asciinema
 version=2.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="asciinema"

From 956b672f4c6db0ea67d9ad05a8308ec5ea193930 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 602/865] attic: rebuild for Python 3.8.

---
 srcpkgs/attic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/attic/template b/srcpkgs/attic/template
index 533ef7377bc..ed454302ce4 100644
--- a/srcpkgs/attic/template
+++ b/srcpkgs/attic/template
@@ -1,7 +1,7 @@
 # Template file for 'attic'
 pkgname=attic
 version=0.16
-revision=14
+revision=15
 wrksrc="Attic-$version"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel python3-Sphinx"

From 3a21ab47b75c96c91b8447979356e5d4d4027fd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 603/865] autorandr: rebuild for Python 3.8.

---
 srcpkgs/autorandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/autorandr/template b/srcpkgs/autorandr/template
index bf38b833632..7f9796be18f 100644
--- a/srcpkgs/autorandr/template
+++ b/srcpkgs/autorandr/template
@@ -1,7 +1,7 @@
 # Template file for 'autorandr'
 pkgname=autorandr
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="autorandr.py"

From ca443f3bf2b2ea4c91fa81f47ea823293476950b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 604/865] avideo: rebuild for Python 3.8.

---
 srcpkgs/avideo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/avideo/template b/srcpkgs/avideo/template
index e4d004aafff..6430d391286 100644
--- a/srcpkgs/avideo/template
+++ b/srcpkgs/avideo/template
@@ -1,7 +1,7 @@
 # Template file for 'avideo'
 pkgname=avideo
 version=2017.9.27
-revision=3
+revision=4
 archs=noarch
 wrksrc="avideo"
 build_style=python3-module

From b1abf9d1270b34913e7bd6dbfcd004dba8a8c5ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 605/865] aws-cli: rebuild for Python 3.8.

---
 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 4e5e200e3f9..4328e203c3c 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.16.253
-revision=1
+revision=2
 archs=noarch
 wrksrc="aws-cli-${version}"
 build_style=python3-module

From af6fd86e4f623114e23d8cd19217a8ba196231c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 606/865] bandit: rebuild for Python 3.8.

---
 srcpkgs/bandit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bandit/template b/srcpkgs/bandit/template
index e6c1aa52d7c..d29873ecf61 100644
--- a/srcpkgs/bandit/template
+++ b/srcpkgs/bandit/template
@@ -1,7 +1,7 @@
 # Template file for 'bandit'
 pkgname=bandit
 version=1.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="bandit"

From acb296380ef65f2682ec382f88706be8dc3bf79f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 607/865] beancount: rebuild for Python 3.8.

---
 srcpkgs/beancount/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beancount/template b/srcpkgs/beancount/template
index b1e2a121668..0ba68fc8f4e 100644
--- a/srcpkgs/beancount/template
+++ b/srcpkgs/beancount/template
@@ -1,7 +1,7 @@
 # Template file for 'beancount'
 pkgname=beancount
 version=2.2.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="beancount"
 hostmakedepends="python3-setuptools"

From 4d085c5998e4472b4e7b4fceabecba11440daceb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 608/865] beets: rebuild for Python 3.8.

---
 srcpkgs/beets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beets/template b/srcpkgs/beets/template
index 7dab56ceef8..975e6ec9f86 100644
--- a/srcpkgs/beets/template
+++ b/srcpkgs/beets/template
@@ -1,7 +1,7 @@
 # Template file for 'beets'
 pkgname=beets
 version=1.4.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="beets beetsplug"

From 1640cb62a84da8a46aff2a9c6ee5f75c0ab73224 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 609/865] black: rebuild for Python 3.8.

---
 srcpkgs/black/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/black/template b/srcpkgs/black/template
index f6d433038b9..38498a1db07 100644
--- a/srcpkgs/black/template
+++ b/srcpkgs/black/template
@@ -1,7 +1,7 @@
 # Template file for 'black'
 pkgname=black
 version=19.3b0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="black.py blib2to3"

From 5939f3d169c384cfe92957888f7b53678a69e770 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 610/865] blueman: rebuild for Python 3.8.

---
 srcpkgs/blueman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blueman/template b/srcpkgs/blueman/template
index 83f9b899583..3616aee7da3 100644
--- a/srcpkgs/blueman/template
+++ b/srcpkgs/blueman/template
@@ -1,7 +1,7 @@
 # Template file for 'blueman'
 pkgname=blueman
 version=2.1.1
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="blueman"
 configure_args="--disable-static"

From 325ad86e9fdcfc900e695cdcb3b40bc448b85d06 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 611/865] borg: rebuild for Python 3.8.

---
 srcpkgs/borg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borg/template b/srcpkgs/borg/template
index 520b1b2f65a..b69c7d3418e 100644
--- a/srcpkgs/borg/template
+++ b/srcpkgs/borg/template
@@ -1,7 +1,7 @@
 # Template file for 'borg'
 pkgname=borg
 version=1.1.10
-revision=2
+revision=3
 wrksrc="borgbackup-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel"

From 73a17277e22d3252a93a66237bf81a04393fc244 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 612/865] borgmatic: rebuild for Python 3.8.

---
 srcpkgs/borgmatic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borgmatic/template b/srcpkgs/borgmatic/template
index 8ef7c0568a6..bdc6446243c 100644
--- a/srcpkgs/borgmatic/template
+++ b/srcpkgs/borgmatic/template
@@ -1,7 +1,7 @@
 # Template file for 'borgmatic'
 pkgname=borgmatic
 version=1.3.24
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="borgmatic"

From 482c5d69113ad10842dfe91f0ac4a0631660ac77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 613/865] btrfs-backup: rebuild for Python 3.8.

---
 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 07d08a1b62b..55a3800a857 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=1
+revision=2
 wrksrc="${pkgname/-/_}-${version}"
 archs=noarch
 build_style=python3-module

From 4fce3c4f00a44852e3f9fcab80a10d4acfc04ad6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 614/865] bum: rebuild for Python 3.8.

---
 srcpkgs/bum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bum/template b/srcpkgs/bum/template
index 58d0bb2b7f7..20f200e74d6 100644
--- a/srcpkgs/bum/template
+++ b/srcpkgs/bum/template
@@ -1,7 +1,7 @@
 # Template file for 'bum'
 pkgname=bum
 version=0.1.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="bum"

From a384e5462965e984f1abca2ca12b7f62b1a415d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 615/865] caffeine-ng: rebuild for Python 3.8.

---
 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 36287fbef5b..455b2f225c4 100644
--- a/srcpkgs/caffeine-ng/template
+++ b/srcpkgs/caffeine-ng/template
@@ -1,7 +1,7 @@
 # Template file for 'caffeine-ng'
 pkgname=caffeine-ng
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="caffeine"

From b857565a7a7fddfbffbcf40b9e784593d099a0a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 616/865] cairo-dock-plugins: rebuild for Python 3.8.

---
 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 9e6149c617f..0c23a7f6928 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=11
+revision=12
 build_style=cmake
 hostmakedepends="pkg-config"
 # XXX libetpan, libdbusmenu, etc

From c0c15488d9189a782c2ab6436de598620d4d2435 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 617/865] canto-curses: rebuild for Python 3.8.

---
 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 0905972b480..4270d61c2e0 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=4
+revision=5
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel ncurses-devel readline-devel"

From a821add22450c016c7b851ee1a0309da5b5d83af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 618/865] canto-next: rebuild for Python 3.8.

---
 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 fff7e82e238..fa28bde891b 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.7
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From fa2afe1224ee7d1e031e769bf84bd596e5ac6de2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 619/865] capstone: rebuild for Python 3.8.

---
 srcpkgs/capstone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/capstone/template b/srcpkgs/capstone/template
index e13c7666ed1..fded7c7157e 100644
--- a/srcpkgs/capstone/template
+++ b/srcpkgs/capstone/template
@@ -1,7 +1,7 @@
 # Template file for 'capstone'
 pkgname=capstone
 version=4.0.1
-revision=1
+revision=2
 build_style=gnu-makefile
 make_use_env=1
 hostmakedepends="python-setuptools python3-setuptools"

From 923fca0cf844d03c602bbae81add86e8be495762 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 620/865] catfish: rebuild for Python 3.8.

---
 srcpkgs/catfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/catfish/template b/srcpkgs/catfish/template
index 1b28ffcafff..b53de6b8ea6 100644
--- a/srcpkgs/catfish/template
+++ b/srcpkgs/catfish/template
@@ -1,7 +1,7 @@
 # Template file for 'catfish'
 pkgname=catfish
 version=1.4.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="catfish catfish_lib"

From fb71b3b941c7341384c307ef6e1654b8d0b54a3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 621/865] ccsm: rebuild for Python 3.8.

---
 srcpkgs/ccsm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ccsm/template b/srcpkgs/ccsm/template
index 0421e587b23..3067003017f 100644
--- a/srcpkgs/ccsm/template
+++ b/srcpkgs/ccsm/template
@@ -1,7 +1,7 @@
 # Template file for 'ccsm'
 pkgname=ccsm
 version=0.8.16
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 hostmakedepends="automake intltool libtool pkg-config python3"

From f4212d55b3ec84e188189bc74a572c728a37c66a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 622/865] cheat: rebuild for Python 3.8.

---
 srcpkgs/cheat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cheat/template b/srcpkgs/cheat/template
index b60b4ba53b2..f1e419c3c5a 100644
--- a/srcpkgs/cheat/template
+++ b/srcpkgs/cheat/template
@@ -1,7 +1,7 @@
 # Template file for 'cheat'
 pkgname=cheat
 version=2.5.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="cheat"
 conf_files="/etc/cheat"

From eb72b0be44091e56a3e5b73cdf6d11ff80ecb8ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 623/865] clearine: rebuild for Python 3.8.

---
 srcpkgs/clearine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/clearine/template b/srcpkgs/clearine/template
index 419bb3c4550..539d494b79b 100644
--- a/srcpkgs/clearine/template
+++ b/srcpkgs/clearine/template
@@ -1,7 +1,7 @@
 # Template file for 'clearine'
 pkgname=clearine
 version=0.7
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="Clearine"
 hostmakedepends="python3-setuptools"

From ca7e63827b68cba4586e81da6e622e70addc8b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 624/865] coccigrep: rebuild for Python 3.8.

---
 srcpkgs/coccigrep/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/coccigrep/template b/srcpkgs/coccigrep/template
index 736f16a458e..a02c2f78bb2 100644
--- a/srcpkgs/coccigrep/template
+++ b/srcpkgs/coccigrep/template
@@ -1,7 +1,7 @@
 # Template file for 'coccigrep'
 pkgname=coccigrep
 version=1.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coccigrep"

From 8b0269365914ae7e030b07b30f4a76f2f1726270 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 625/865] compizconfig-python: rebuild for Python 3.8.

---
 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 b9d9ce2892b..77d53c97f46 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.16
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static"
 hostmakedepends="automake intltool libtool pkg-config glib-devel gettext-devel python3-Cython"

From c7955381746f2b68e5bb140afe81526fd62a2d16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 626/865] coursera-dl: rebuild for Python 3.8.

---
 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 0dfdd73083f..2b09e53d836 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.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coursera"

From 1bf8d7143694f636186cfbdcf357f9b86f5a635b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 627/865] cozy: rebuild for Python 3.8.

---
 srcpkgs/cozy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cozy/template b/srcpkgs/cozy/template
index a35aff61f37..2515388da18 100644
--- a/srcpkgs/cozy/template
+++ b/srcpkgs/cozy/template
@@ -1,7 +1,7 @@
 # Template file for 'cozy'
 pkgname=cozy
 version=0.6.8
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 pycompile_module="cozy"

From 7b58e6f69ae54c84b50dfe4d6041cf861a698c60 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 628/865] cpuset: rebuild for Python 3.8.

---
 srcpkgs/cpuset/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cpuset/template b/srcpkgs/cpuset/template
index cf3910d2304..12b54631617 100644
--- a/srcpkgs/cpuset/template
+++ b/srcpkgs/cpuset/template
@@ -1,7 +1,7 @@
 # Template file for 'cpuset'
 pkgname=cpuset
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="cpuset"

From a542aca478f0e84bbc23d3fd91a236635712a9f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 629/865] ctop: rebuild for Python 3.8.

---
 srcpkgs/ctop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ctop/template b/srcpkgs/ctop/template
index b8ea58515b2..5231b4a4cb3 100644
--- a/srcpkgs/ctop/template
+++ b/srcpkgs/ctop/template
@@ -1,7 +1,7 @@
 # Template file for 'ctop'
 pkgname=ctop
 version=1.0.0
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="cgroup_top.py"

From b3065c411c5e0b3e48432c6901e1e7fb20eb00d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 630/865] cura: rebuild for Python 3.8.

---
 srcpkgs/cura/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cura/template b/srcpkgs/cura/template
index 31318e5aecf..ab5cd315f21 100644
--- a/srcpkgs/cura/template
+++ b/srcpkgs/cura/template
@@ -1,7 +1,7 @@
 # Template file for 'cura'
 pkgname=cura
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Cura-${version}"
 build_style=cmake

From 9f4eb67830feb2103a78edc7651e1f73cc606074 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 631/865] curseradio: rebuild for Python 3.8.

---
 srcpkgs/curseradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/curseradio/template b/srcpkgs/curseradio/template
index 4fe2306364a..f5afe3bba34 100644
--- a/srcpkgs/curseradio/template
+++ b/srcpkgs/curseradio/template
@@ -1,7 +1,7 @@
 # Template file for 'curseradio'
 pkgname=curseradio
 version=0.0.20171017
-revision=3
+revision=4
 archs=noarch
 _commit=1bd4bd0faeec675e0647bac9a100b526cba19f8d
 wrksrc="curseradio-${_commit}"

From fa4e6156adf5c317bb85ee1d8271c9e6ce57b3e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 632/865] d-feet: rebuild for Python 3.8.

---
 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 6930eddf582..7f7d593f30a 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.15
-revision=1
+revision=2
 build_style=meson
 maintainer="Enno Boland <gottox@voidlinux.org>"
 hostmakedepends="pkg-config intltool itstool python3-pycodestyle"

From d6145053ac873c90f6383dee8ec4d696463928f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 633/865] deluge: rebuild for Python 3.8.

---
 srcpkgs/deluge/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/deluge/template b/srcpkgs/deluge/template
index 6dc7f26184d..8148c68033c 100644
--- a/srcpkgs/deluge/template
+++ b/srcpkgs/deluge/template
@@ -1,7 +1,7 @@
 # Template file for 'deluge'
 pkgname=deluge
 version=2.0.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="deluge"

From 0b2691a90e5de63e49a3c3f3adfa709d618b0a05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 634/865] devedeng: rebuild for Python 3.8.

---
 srcpkgs/devedeng/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/devedeng/template b/srcpkgs/devedeng/template
index d971b2e207b..2d0516cedd3 100644
--- a/srcpkgs/devedeng/template
+++ b/srcpkgs/devedeng/template
@@ -1,7 +1,7 @@
 # Template file for 'devedeng'
 pkgname=devedeng
 version=4.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="devedeng"

From 8b7c3bcfced7b21089b0a64ac1c375eb973af343 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 635/865] distcc: rebuild for Python 3.8.

---
 srcpkgs/distcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/distcc/template b/srcpkgs/distcc/template
index ded4255becd..4d6a450533f 100644
--- a/srcpkgs/distcc/template
+++ b/srcpkgs/distcc/template
@@ -1,7 +1,7 @@
 # Template file for 'distcc'
 pkgname=distcc
 version=3.3.3
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-Werror --with-gtk"
 conf_files="

From 98151a807bebdc6d5e41e0b6a1bd0d65659fbb7e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 636/865] docker-compose: rebuild for Python 3.8.

---
 srcpkgs/docker-compose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/docker-compose/template b/srcpkgs/docker-compose/template
index c3383fdf1ad..f4a34005c83 100644
--- a/srcpkgs/docker-compose/template
+++ b/srcpkgs/docker-compose/template
@@ -1,7 +1,7 @@
 # Template file for 'docker-compose'
 pkgname=docker-compose
 version=1.24.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="compose-${version}"
 build_style=python3-module

From 9dc2f62edc54b5e314c24fe7bb303496223adb45 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 637/865] edx-dl: rebuild for Python 3.8.

---
 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 209884640c6..a51c917d606 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.10
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="edx_dl"

From 6a769ff00b2fc959627e96d44172f8a656548751 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 638/865] electrum: rebuild for Python 3.8.

---
 srcpkgs/electrum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template
index 3861becdda9..7525e08e9e2 100644
--- a/srcpkgs/electrum/template
+++ b/srcpkgs/electrum/template
@@ -1,7 +1,7 @@
 # Template file for 'electrum'
 pkgname=electrum
 version=3.3.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electrum electrum_gui electrum_plugins"

From be52dccd4b30af3377095664bf239767a0f7be39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 639/865] electrum-ltc: rebuild for Python 3.8.

---
 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 ad6f745e152..cf7265fbec8 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.6.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"

From 45951afeb4bab3066e0459cf1441d9c3570c85dc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 640/865] eolie: rebuild for Python 3.8.

---
 srcpkgs/eolie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eolie/template b/srcpkgs/eolie/template
index b3da3dcd829..94514510c98 100644
--- a/srcpkgs/eolie/template
+++ b/srcpkgs/eolie/template
@@ -1,7 +1,7 @@
 # Template file for 'eolie'
 pkgname=eolie
 version=0.9.62
-revision=1
+revision=2
 _eolie_hash=bb4aad19272cc636bd17f2f6602127fe
 build_style=meson
 pycompile_module="eolie"

From ad02dba2226dbfc6b1fb5e715af8b58821cd8c07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 641/865] eyeD3: rebuild for Python 3.8.

---
 srcpkgs/eyeD3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eyeD3/template b/srcpkgs/eyeD3/template
index 7be047810bd..211553f0adb 100644
--- a/srcpkgs/eyeD3/template
+++ b/srcpkgs/eyeD3/template
@@ -1,7 +1,7 @@
 # Template file for 'eyeD3'
 pkgname=eyeD3
 version=0.8.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="eyed3"

From 5333d561e8831b7103f00f5e4564ce20bc26e9b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 642/865] fail2ban: rebuild for Python 3.8.

---
 srcpkgs/fail2ban/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 829e93385dc..361bcd12edd 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,7 +1,7 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
 version=0.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From 6ed6f50c8422b21b0f8244e983014120a3467562 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 643/865] fava: rebuild for Python 3.8.

---
 srcpkgs/fava/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fava/template b/srcpkgs/fava/template
index 24e66cac45b..890858b095b 100644
--- a/srcpkgs/fava/template
+++ b/srcpkgs/fava/template
@@ -1,7 +1,7 @@
 # Template file for 'fava'
 pkgname=fava
 version=1.11
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fava"

From cfe04c8e627d5d3626d852a05f3a87ecf053557f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 644/865] fierce: rebuild for Python 3.8.

---
 srcpkgs/fierce/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fierce/template b/srcpkgs/fierce/template
index 86dedb39ad2..86692c6457b 100644
--- a/srcpkgs/fierce/template
+++ b/srcpkgs/fierce/template
@@ -1,7 +1,7 @@
 # Template file for 'fierce'
 pkgname=fierce
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fierce"

From c67a6380bd6f21a660d10cde09cb2930536faee5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 645/865] fifengine: rebuild for Python 3.8.

---
 srcpkgs/fifengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fifengine/template b/srcpkgs/fifengine/template
index 1d4bcbb9297..871c94ad7e0 100644
--- a/srcpkgs/fifengine/template
+++ b/srcpkgs/fifengine/template
@@ -1,7 +1,7 @@
 # Template file for 'fifengine'
 pkgname=fifengine
 version=0.4.2
-revision=1
+revision=2
 build_style=cmake
 pycompile_module="fife"
 hostmakedepends="swig python3"

From 407bb3354f4705ac3e7d9c40479ff7272cbf5478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 646/865] flake8: rebuild for Python 3.8.

---
 srcpkgs/flake8/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/flake8/template b/srcpkgs/flake8/template
index d8f2b095644..4d7ebeba176 100644
--- a/srcpkgs/flake8/template
+++ b/srcpkgs/flake8/template
@@ -1,7 +1,7 @@
 # Template file for 'flake8'
 pkgname=flake8
 version=3.7.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="flake8"

From ec61a4ea9af21e135e85134c6060314c2c564ea5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 647/865] fontforge: rebuild for Python 3.8.

---
 srcpkgs/fontforge/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fontforge/template b/srcpkgs/fontforge/template
index 7fb02d7e371..1da02103d46 100644
--- a/srcpkgs/fontforge/template
+++ b/srcpkgs/fontforge/template
@@ -1,7 +1,7 @@
 # Template file for 'fontforge'
 pkgname=fontforge
 version=20190801
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake ca-certificates git libltdl-devel libtool m4
  pkg-config python3"

From 37d1f517b9367374631622009aed8868dfe99ecd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 648/865] gajim: rebuild for Python 3.8.

---
 srcpkgs/gajim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gajim/template b/srcpkgs/gajim/template
index 8c49c0cf6ef..e81015b3906 100644
--- a/srcpkgs/gajim/template
+++ b/srcpkgs/gajim/template
@@ -1,7 +1,7 @@
 # Template file for 'gajim'
 pkgname=gajim
 version=1.1.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gajim"

From 6764ab529d750b0f000fb70b593f9496f09c50fc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 649/865] gajim-omemo: rebuild for Python 3.8.

---
 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 803f94713be..64d47228496 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.6.29
-revision=1
+revision=2
 wrksrc="omemo"
 hostmakedepends="unzip"
 depends="python3 python3-setuptools python3-cryptography python3-axolotl python3-qrcode"

From bc7772e30c45b0390f3924bc494ace8ebd3d9f36 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 650/865] gallery-dl: rebuild for Python 3.8.

---
 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 a1e8c633fe3..62b338a32e3 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.10.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gallery_dl"

From a8cce20a8f81be2bd1179503bf3fa064745c2f95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 651/865] gandi-cli: rebuild for Python 3.8.

---
 srcpkgs/gandi-cli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gandi-cli/template b/srcpkgs/gandi-cli/template
index c5e805a09fd..4193bfe4638 100644
--- a/srcpkgs/gandi-cli/template
+++ b/srcpkgs/gandi-cli/template
@@ -1,7 +1,7 @@
 # Template file for 'gandi-cli'
 pkgname=gandi-cli
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="gandi.cli-${version}"
 build_style=python3-module

From f24eb9392afdb698a8f6bcb6abdab1b341ce6c2c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 652/865] gcovr: rebuild for Python 3.8.

---
 srcpkgs/gcovr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gcovr/template b/srcpkgs/gcovr/template
index 2b9ff94bf2a..0d4addfc8a7 100644
--- a/srcpkgs/gcovr/template
+++ b/srcpkgs/gcovr/template
@@ -1,7 +1,7 @@
 # Template file for 'gcovr'
 pkgname=gcovr
 version=4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gcovr"

From 21e366047cdceab8cd4dc05cc5b2afd5835b1395 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 653/865] gedit: rebuild for Python 3.8.

---
 srcpkgs/gedit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gedit/template b/srcpkgs/gedit/template
index 904d3b7c3c4..6666c331c52 100644
--- a/srcpkgs/gedit/template
+++ b/srcpkgs/gedit/template
@@ -1,7 +1,7 @@
 # Template file for 'gedit'
 pkgname=gedit
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gi/overrides"

From a34206afb205056883f9d351a89feee4f5a7f1d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 654/865] geis: rebuild for Python 3.8.

---
 srcpkgs/geis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/geis/template b/srcpkgs/geis/template
index fe31a3d2aeb..20afe76b0d8 100644
--- a/srcpkgs/geis/template
+++ b/srcpkgs/geis/template
@@ -1,7 +1,7 @@
 # Template file for 'geis'
 pkgname=geis
 version=2.2.17
-revision=4
+revision=5
 hostmakedepends="pkg-config python3-devel"
 makedepends="dbus-devel grail-devel frame-devel libXi-devel python3-devel xorg-server-devel"
 build_style="gnu-configure"

From 4751615f95639084961d1ceefbad8661cb13b9ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 655/865] git-cola: rebuild for Python 3.8.

---
 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 7eaba90f3be..fd0bbf971d3 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.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/share/git-cola/lib"

From 2fc999adcdffd4a6eaaaaf3b8fdbfb423aa603a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 656/865] git-review: rebuild for Python 3.8.

---
 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 d999dc87b16..c180cc60780 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="git_review"

From c14895b46900cfa2238dafac7db17ef692e75f70 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 657/865] git-revise: rebuild for Python 3.8.

---
 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 4179a52bddc..a1bf51dc447 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.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gitrevise"

From 0379f2d2c9ee002adef1ea67940c16b8e3db800f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 658/865] gitg: rebuild for Python 3.8.

---
 srcpkgs/gitg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gitg/template b/srcpkgs/gitg/template
index e0da8e9490d..a3381fdb3a7 100644
--- a/srcpkgs/gitg/template
+++ b/srcpkgs/gitg/template
@@ -1,7 +1,7 @@
 # Template file for 'gitg'
 pkgname=gitg
 version=3.32.1
-revision=1
+revision=2
 build_style=meson
 hostmakedepends="intltool pkg-config gobject-introspection vala glib-devel"
 makedepends="gtksourceview-devel libgit2-glib-devel libgee08-devel gtkspell3-devel

From a95993c22089700ea90654bb0d14eeb2fb155e04 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 659/865] glances: rebuild for Python 3.8.

---
 srcpkgs/glances/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glances/template b/srcpkgs/glances/template
index 6d4766493c3..753d9e20c92 100644
--- a/srcpkgs/glances/template
+++ b/srcpkgs/glances/template
@@ -1,7 +1,7 @@
 # Template file for 'glances'
 pkgname=glances
 version=3.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Glances-${version}"
 build_style=python3-module

From 24927a3ac9bca47d577a500212e5deed867c8ed4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 660/865] glusterfs: rebuild for Python 3.8.

---
 srcpkgs/glusterfs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glusterfs/template b/srcpkgs/glusterfs/template
index a1304e266fe..90093864286 100644
--- a/srcpkgs/glusterfs/template
+++ b/srcpkgs/glusterfs/template
@@ -1,7 +1,7 @@
 # Template file for 'glusterfs'
 pkgname=glusterfs
 version=6.5
-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 c552b476f065f5e48aaf19f15deb832a11585d19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 661/865] gnome-authenticator: rebuild for Python 3.8.

---
 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 52d161897c7..ab7c505c0fe 100644
--- a/srcpkgs/gnome-authenticator/template
+++ b/srcpkgs/gnome-authenticator/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-authenticator'
 pkgname=gnome-authenticator
 version=0.2.4
-revision=2
+revision=3
 _libgd_hash=7ae254bfc5f641c60566614e08245176f7bc5aa8
 wrksrc="Authenticator-${version}"
 build_style=meson

From 326e3cf399d3c30acca80ebcba381ebee7bedf18 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 662/865] gnome-music: rebuild for Python 3.8.

---
 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 bceb7c369c8..e2fbbcbdeca 100644
--- a/srcpkgs/gnome-music/template
+++ b/srcpkgs/gnome-music/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-music'
 pkgname=gnome-music
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gnomemusic"

From 54dd3e6ac7152bcaa2705310a6ad89c478248392 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 663/865] gnome-passbook: rebuild for Python 3.8.

---
 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 54035dc920b..89047338503 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.1
-revision=1
+revision=2
 _release_hash=0a227cfdf706f4bfcc0b782026f1aeb2
 wrksrc="passbook-${version}"
 build_style=meson

From 3ab30ed862806134529facd2eac26f11c81a6aab Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 664/865] gnome-passwordsafe: rebuild for Python 3.8.

---
 srcpkgs/gnome-passwordsafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnome-passwordsafe/template b/srcpkgs/gnome-passwordsafe/template
index f310ce03a08..8f1f19174d2 100644
--- a/srcpkgs/gnome-passwordsafe/template
+++ b/srcpkgs/gnome-passwordsafe/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-passwordsafe'
 pkgname=gnome-passwordsafe
 version=3.32.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="PasswordSafe-${version}"
 build_style=meson

From 7a85d0114447b9afbe2622d65d9d32ebf25e1b0d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 665/865] gns3-gui: rebuild for Python 3.8.

---
 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 38751dea59b..f4318dc6afc 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.1.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3"

From 5afb15227655d19b08cb6898313406d2adf87cb1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 666/865] gns3-net-converter: rebuild for Python 3.8.

---
 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 b9b7403e8a6..70b6c90e8c8 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=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3converter"

From 691cf14e7e993b7c5328c23b421047495c640117 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 667/865] gns3-server: rebuild for Python 3.8.

---
 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 6bd9c067b20..739c584cb7c 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.1.21
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="gns3server"
 hostmakedepends="python3-setuptools"

From 842c783046557e106e878f50b0379079f610e9dc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 668/865] gnucash: rebuild for Python 3.8.

---
 srcpkgs/gnucash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnucash/template b/srcpkgs/gnucash/template
index 68bb811fc42..d8ff0a8ec86 100644
--- a/srcpkgs/gnucash/template
+++ b/srcpkgs/gnucash/template
@@ -1,7 +1,7 @@
 # Template file for 'gnucash'
 pkgname=gnucash
 version=3.7
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DWITH_SQL=0 -DWITH_PYTHON=1"
 hostmakedepends="pkg-config guile python3 libxslt perl"

From 24268beeb811440b7e293e6475a5b6cb30e3d085 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 669/865] gom: rebuild for Python 3.8.

---
 srcpkgs/gom/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gom/template b/srcpkgs/gom/template
index 6ec2a5e338f..0b45e19def4 100644
--- a/srcpkgs/gom/template
+++ b/srcpkgs/gom/template
@@ -1,7 +1,7 @@
 # Template file for 'gom'
 pkgname=gom
 version=0.3.3
-revision=3
+revision=4
 build_style=meson
 build_helper="gir"
 configure_args="-Denable-introspection=$(vopt_if gir true false)

From 745a4d5304e4ee05e1c5f650b6681679864cc017 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 670/865] gpodder: rebuild for Python 3.8.

---
 srcpkgs/gpodder/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gpodder/template b/srcpkgs/gpodder/template
index 7c7414e19cd..5cc63ab4205 100644
--- a/srcpkgs/gpodder/template
+++ b/srcpkgs/gpodder/template
@@ -1,7 +1,7 @@
 # Template file for 'gpodder'
 pkgname=gpodder
 version=3.10.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="gpodder-${version}"
 make_check_target=unittest

From ba7a6129f032a0ead257c15a0c837a639c0ea212 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 671/865] gramps: rebuild for Python 3.8.

---
 srcpkgs/gramps/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gramps/template b/srcpkgs/gramps/template
index 9d1d1a4616a..5d40aeefb49 100644
--- a/srcpkgs/gramps/template
+++ b/srcpkgs/gramps/template
@@ -1,7 +1,7 @@
 # Template file for 'gramps'
 pkgname=gramps
 version=5.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gramps"

From 65d0823670965df308abec4fe4f30ddb905ede1b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 672/865] greg: rebuild for Python 3.8.

---
 srcpkgs/greg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/greg/template b/srcpkgs/greg/template
index 9c15ba82f4b..d898d5fdf61 100644
--- a/srcpkgs/greg/template
+++ b/srcpkgs/greg/template
@@ -1,7 +1,7 @@
 # Template file for 'greg'
 pkgname=greg
 version=0.4.7
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 pycompile_module="greg"

From 30ef49828a543316c4dd05e3398e26defa30a408 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 673/865] gst1-python3: rebuild for Python 3.8.

---
 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 6f02f19aca3..bf946f6a8bf 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.16.1
-revision=1
+revision=2
 wrksrc="gst-python-${version}"
 build_style=meson
 pycompile_module="gi/overrides"

From 467f0afab155652e7699d109285cca4bc9c885ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 674/865] guake: rebuild for Python 3.8.

---
 srcpkgs/guake/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/guake/template b/srcpkgs/guake/template
index 86eaba649a7..d92fdf89355 100644
--- a/srcpkgs/guake/template
+++ b/srcpkgs/guake/template
@@ -1,7 +1,7 @@
 # Template file for 'guake'
 pkgname=guake
 version=3.6.3
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 wrksrc="Guake-${version}"

From 45bb85c26d1957e19a694d18452c6938165f4872 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 675/865] gufw: rebuild for Python 3.8.

---
 srcpkgs/gufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gufw/template b/srcpkgs/gufw/template
index d2b8a4b025d..a4e7d861d71 100644
--- a/srcpkgs/gufw/template
+++ b/srcpkgs/gufw/template
@@ -1,7 +1,7 @@
 # Template file for 'gufw'
 pkgname=gufw
 version=19.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="gui-ufw-${version}"
 build_style=python3-module

From d4a05cf1f07994b8fa60292041f0403886c88b2b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 676/865] hamlib: rebuild for Python 3.8.

---
 srcpkgs/hamlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hamlib/template b/srcpkgs/hamlib/template
index c28a069cd6f..d52436c0893 100644
--- a/srcpkgs/hamlib/template
+++ b/srcpkgs/hamlib/template
@@ -1,7 +1,7 @@
 # Template file for 'hamlib'
 pkgname=hamlib
 version=3.3
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static --with-perl-binding --with-python-binding
  --with-tcl-binding --with-xml-support"

From 61c1a909b583aec0b87dbf02e54d3592779a9eea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 677/865] hangups: rebuild for Python 3.8.

---
 srcpkgs/hangups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hangups/template b/srcpkgs/hangups/template
index 0a2f2db16b4..0837a2c47c3 100644
--- a/srcpkgs/hangups/template
+++ b/srcpkgs/hangups/template
@@ -1,7 +1,7 @@
 # Template file for 'hangups'
 pkgname=hangups
 version=0.4.9
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="hangups"
 hostmakedepends="python3-setuptools"

From cb8152d1f00e4868426b3a01291b3a6ccac71562 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 678/865] hplip: rebuild for Python 3.8.

---
 srcpkgs/hplip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hplip/template b/srcpkgs/hplip/template
index 07a707569f6..3ef76e4591b 100644
--- a/srcpkgs/hplip/template
+++ b/srcpkgs/hplip/template
@@ -1,7 +1,7 @@
 # Template file for 'hplip'
 pkgname=hplip
 version=3.19.8
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="usr/share/hplip"
 configure_args="

From 25b00e31f1ef098b2a99908b8c8a4b36ebe67f57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 679/865] httpie: rebuild for Python 3.8.

---
 srcpkgs/httpie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/httpie/template b/srcpkgs/httpie/template
index 387af8ebf05..61fc1499d35 100644
--- a/srcpkgs/httpie/template
+++ b/srcpkgs/httpie/template
@@ -1,7 +1,7 @@
 # Template file for 'httpie'
 pkgname=httpie
 version=1.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="httpie"

From e00ad4f66dc231e3fe5d81505590914c2252b49b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 680/865] ibus: rebuild for Python 3.8.

---
 srcpkgs/ibus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ibus/template b/srcpkgs/ibus/template
index 4875c7535d6..d3c35d786a4 100644
--- a/srcpkgs/ibus/template
+++ b/srcpkgs/ibus/template
@@ -1,7 +1,7 @@
 # Template file for 'ibus'
 pkgname=ibus
 version=1.5.20
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 configure_args="--enable-ui --enable-gtk3 --disable-tests

From 26a877bb967b42d4ddace9518b9dc93a346272f1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 681/865] iotop: rebuild for Python 3.8.

---
 srcpkgs/iotop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template
index 146a9e97791..522bf32a7c2 100644
--- a/srcpkgs/iotop/template
+++ b/srcpkgs/iotop/template
@@ -1,7 +1,7 @@
 # Template file for 'iotop'
 pkgname=iotop
 version=0.6
-revision=5
+revision=6
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From dd62ae7b2d40c5af82249e3906f729a7a18f654d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 682/865] jrnl: rebuild for Python 3.8.

---
 srcpkgs/jrnl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template
index 3d08f129885..b184ef09508 100644
--- a/srcpkgs/jrnl/template
+++ b/srcpkgs/jrnl/template
@@ -1,7 +1,7 @@
 # Template file for 'jrnl'
 pkgname=jrnl
 version=1.9.8
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="jrnl"

From 9a8c27d733f016ae7374e5e7a9435015e9fd3216 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 683/865] khal: rebuild for Python 3.8.

---
 srcpkgs/khal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khal/template b/srcpkgs/khal/template
index 39d08a66ba8..a73516695bf 100644
--- a/srcpkgs/khal/template
+++ b/srcpkgs/khal/template
@@ -1,7 +1,7 @@
 # Template file for 'khal'
 pkgname=khal
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khal"

From 53ec54c8e3e2d4cb139f21374502251873570a9d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 684/865] khard: rebuild for Python 3.8.

---
 srcpkgs/khard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khard/template b/srcpkgs/khard/template
index 6c6f3024be1..3ec9f398d99 100644
--- a/srcpkgs/khard/template
+++ b/srcpkgs/khard/template
@@ -1,7 +1,7 @@
 # Template file for 'khard'
 pkgname=khard
 version=0.14.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khard"

From a159e67253450103f29d38eb10e59405e50bf613 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 685/865] lfm: rebuild for Python 3.8.

---
 srcpkgs/lfm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lfm/template b/srcpkgs/lfm/template
index 0a0a3b4f563..1e0e7cf29fa 100644
--- a/srcpkgs/lfm/template
+++ b/srcpkgs/lfm/template
@@ -1,7 +1,7 @@
 # Template file for 'lfm'
 pkgname=lfm
 version=3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 56b17522b1b2960b826e699fe065a9f82445cf54 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 686/865] libArcus: rebuild for Python 3.8.

---
 srcpkgs/libArcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libArcus/template b/srcpkgs/libArcus/template
index 8e6c97ada21..d2ffda576d4 100644
--- a/srcpkgs/libArcus/template
+++ b/srcpkgs/libArcus/template
@@ -1,7 +1,7 @@
 # Template file for 'libArcus'
 pkgname=libArcus
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DBUILD_EXAMPLES=OFF"
 hostmakedepends="protobuf python3-sip-devel"

From 12cd20782cd556c71e2f3b447feb0cbd46247423 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 687/865] libSavitar: rebuild for Python 3.8.

---
 srcpkgs/libSavitar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libSavitar/template b/srcpkgs/libSavitar/template
index a9d3020158f..213f02f4d65 100644
--- a/srcpkgs/libSavitar/template
+++ b/srcpkgs/libSavitar/template
@@ -1,7 +1,7 @@
 # Template file for 'libSavitar'
 pkgname=libSavitar
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 hostmakedepends="python3"
 makedepends="python3-sip-devel python3-devel pugixml-devel"

From 216775ff8b2a375819a1ace57b9158c61eb0dd61 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 688/865] libaccounts-glib: rebuild for Python 3.8.

---
 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 717be24f209..239f9307261 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=2
+revision=3
 wrksrc="${pkgname}-VERSION_${version}-8948717702424ce15f4e23e5db2c8ce0799ec120"
 build_style=meson
 hostmakedepends="gtk-doc pkg-config glib-devel gobject-introspection vala"

From 94466e31af444dca67190cc61b3110907cf50c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 689/865] libblockdev: rebuild for Python 3.8.

---
 srcpkgs/libblockdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libblockdev/template b/srcpkgs/libblockdev/template
index 1df156e3c5b..ff20fc70618 100644
--- a/srcpkgs/libblockdev/template
+++ b/srcpkgs/libblockdev/template
@@ -1,7 +1,7 @@
 # Template file for 'libblockdev'
 pkgname=libblockdev
 version=2.21
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="cryptsetup-devel device-mapper-devel dmraid-devel libbytesize-devel

From 33efb1b83b8be1b62e1c4e30533b5edcd013cef9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 690/865] libbytesize: rebuild for Python 3.8.

---
 srcpkgs/libbytesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libbytesize/template b/srcpkgs/libbytesize/template
index ee1862d889d..e07cdf29a82 100644
--- a/srcpkgs/libbytesize/template
+++ b/srcpkgs/libbytesize/template
@@ -1,7 +1,7 @@
 # Template file for 'libbytesize'
 pkgname=libbytesize
 version=1.4
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python3"
 makedepends="mpfr-devel pcre-devel"

From fea9c5f0233eedb9b18738812792808468a76f26 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 691/865] libcap-ng: rebuild for Python 3.8.

---
 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 f462636c4c1..c6ec4f0a216 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.7.10
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-python --without-python3"
 short_desc="Alternate POSIX capabilities library"

From a29df804f5f5550bf4d5b5320ee4948759e6c305 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 692/865] libffado: rebuild for Python 3.8.

---
 srcpkgs/libffado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libffado/template b/srcpkgs/libffado/template
index a9b6a5ec6a8..d566806bd82 100644
--- a/srcpkgs/libffado/template
+++ b/srcpkgs/libffado/template
@@ -1,7 +1,7 @@
 # Template file for 'libffado'
 pkgname=libffado
 version=2.4.1
-revision=1
+revision=2
 build_style=scons
 make_build_args="PREFIX=/usr MANDIR=/usr/share/man
  UDEVDIR=/usr/lib/udev/rules.d CUSTOM_ENV=1 BUILD_TESTS=0

From aaa1052c28b13bcb3d52be952473f75b410bc3a5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 693/865] libgit2-glib: rebuild for Python 3.8.

---
 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 05389a18258..ce68cb35d66 100644
--- a/srcpkgs/libgit2-glib/template
+++ b/srcpkgs/libgit2-glib/template
@@ -1,7 +1,7 @@
 # Template file for 'libgit2-glib'
 pkgname=libgit2-glib
 version=0.28.0.1
-revision=1
+revision=2
 build_style=meson
 build_helper="gir"
 configure_args="-Dintrospection=$(vopt_if gir true false)

From 7ffe04cf761a7951e8676aaf19bfc74ea7afd9e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 694/865] libixion: rebuild for Python 3.8.

---
 srcpkgs/libixion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libixion/template b/srcpkgs/libixion/template
index 5d2c58ee7c0..dbc05d8b9c1 100644
--- a/srcpkgs/libixion/template
+++ b/srcpkgs/libixion/template
@@ -2,7 +2,7 @@
 pkgname=libixion
 reverts="0.15.0_1"
 version=0.14.1
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="boost-devel mdds python3-devel"

From 557a7374c8a723fe47eac87b749a3e5dab9b065f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 695/865] liblouis: rebuild for Python 3.8.

---
 srcpkgs/liblouis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liblouis/template b/srcpkgs/liblouis/template
index 77194ad8820..13c29b62b21 100644
--- a/srcpkgs/liblouis/template
+++ b/srcpkgs/liblouis/template
@@ -1,7 +1,7 @@
 # Template file for 'liblouis'
 pkgname=liblouis
 version=3.9.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--enable-ucs4"
 pycompile_module="louis"

From 1506881961ad439ec9a3b03a86050ced3cc08983 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 696/865] opencv: rebuild for Python 3.8.

---
 srcpkgs/opencv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/opencv/template b/srcpkgs/opencv/template
index fcc38299f23..474b77be181 100644
--- a/srcpkgs/opencv/template
+++ b/srcpkgs/opencv/template
@@ -1,7 +1,7 @@
 # Template file for 'opencv'
 pkgname=opencv
 version=3.4.5
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_PRECOMPILED_HEADERS=OFF -DWITH_OPENMP=ON
  -DWITH_OPENCL=ON -DENABLE_CXX11=ON -DOPENCV_SKIP_PYTHON_LOADER=ON

From 6df077181034669b774a3c0970cbb9ff6bee89e4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 697/865] libopenshot: rebuild for Python 3.8.

---
 srcpkgs/libopenshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libopenshot/template b/srcpkgs/libopenshot/template
index e1ac18faf93..dab1f2ae1e3 100644
--- a/srcpkgs/libopenshot/template
+++ b/srcpkgs/libopenshot/template
@@ -1,7 +1,7 @@
 # Template file for 'libopenshot'
 pkgname=libopenshot
 version=0.2.3
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 build_style=cmake
 pycompile_module="openshot.py"

From 752805838a3ad0e10c0436ebcada33640ce68c13 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 698/865] liborcus: rebuild for Python 3.8.

---
 srcpkgs/liborcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liborcus/template b/srcpkgs/liborcus/template
index 3523d7830d8..e7704c43974 100644
--- a/srcpkgs/liborcus/template
+++ b/srcpkgs/liborcus/template
@@ -2,7 +2,7 @@
 pkgname=liborcus
 reverts="0.15.0_1"
 version=0.14.1
-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 2d69770514f574a291491ebde6163d11355249a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 699/865] libpwquality: rebuild for Python 3.8.

---
 srcpkgs/libpwquality/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpwquality/template b/srcpkgs/libpwquality/template
index e5a656236d7..6c2209155a3 100644
--- a/srcpkgs/libpwquality/template
+++ b/srcpkgs/libpwquality/template
@@ -1,7 +1,7 @@
 # Template file for 'libpwquality'
 pkgname=libpwquality
 version=1.4.1
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static --enable-pam --with-securedir=/usr/lib/security"
 hostmakedepends="libtool automake gettext-devel"

From 9ca73676016d30a0c0daf2c7fed88939f372d671 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 700/865] libsearpc: rebuild for Python 3.8.

---
 srcpkgs/libsearpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsearpc/template b/srcpkgs/libsearpc/template
index 61f68e5e7de..a7e0b9ce05c 100644
--- a/srcpkgs/libsearpc/template
+++ b/srcpkgs/libsearpc/template
@@ -1,7 +1,7 @@
 # Template file for 'libsearpc'
 pkgname=libsearpc
 version=3.1.0
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="pysearpc"
 configure_args="PYTHON=python3 --disable-static --disable-compile-demo"

From ac5e6676c6996682ed37a945ed0099ed2d5cc0b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 701/865] libtorrent-rasterbar: rebuild for Python 3.8.

---
 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 118108c6184..a56b9313caa 100644
--- a/srcpkgs/libtorrent-rasterbar/template
+++ b/srcpkgs/libtorrent-rasterbar/template
@@ -1,7 +1,7 @@
 # Template file for 'libtorrent-rasterbar'
 pkgname=libtorrent-rasterbar
 version=1.1.13
-revision=3
+revision=4
 build_style=gnu-configure
 configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=boost_python36"
 hostmakedepends="automake pkg-config intltool libtool python3-devel"

From ea5fedefea8c961547772cada6361f1bf2bf1b8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 702/865] libvirt-python: rebuild for Python 3.8.

---
 srcpkgs/libvirt-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvirt-python/template b/srcpkgs/libvirt-python/template
index a2f0e038166..56253c9d3b0 100644
--- a/srcpkgs/libvirt-python/template
+++ b/srcpkgs/libvirt-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libvirt-python'
 pkgname=libvirt-python
 version=5.8.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="libvirt.py libvirt_lxc.py libvirt_qemu.py"
 hostmakedepends="pkg-config python-devel python3-devel libvirt-devel"

From b326739601351a1ef5e7eedaf5fd9f2fdec0c28d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 703/865] libvoikko: rebuild for Python 3.8.

---
 srcpkgs/libvoikko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvoikko/template b/srcpkgs/libvoikko/template
index 8d21b0f9c71..ba8eef837ee 100644
--- a/srcpkgs/libvoikko/template
+++ b/srcpkgs/libvoikko/template
@@ -1,7 +1,7 @@
 # Template file for 'libvoikko'
 pkgname=libvoikko
 version=4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-hfst=false --with-dictionary-path=/usr/share/voikko"
 pycompile_module="libvoikko.py"

From 08fd7784529ce9859241cb746bbe4858d6b04d43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 704/865] libxml2-python: rebuild for Python 3.8.

---
 srcpkgs/libxml2-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libxml2-python/template b/srcpkgs/libxml2-python/template
index a80208823c2..5514ed43437 100644
--- a/srcpkgs/libxml2-python/template
+++ b/srcpkgs/libxml2-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libxml2-python'
 pkgname=libxml2-python
 version=2.9.9
-revision=3
+revision=4
 wrksrc="${pkgname%-python}-${version}"
 build_wrksrc=python
 build_style=python-module

From b5724330bf4a369b7a3693a64d6dc66d548d6d11 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 705/865] lightdm-gtk-greeter-settings: rebuild for Python 3.8.

---
 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 715f41bbef4..76a25b91e4c 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=1
+revision=2
 build_style=python3-module
 pycompile_module="lightdm_gtk_greeter_settings"
 hostmakedepends="python3-distutils-extra intltool"

From 3f793567a35e87976cfc4e1ec71d2df577066542 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 706/865] llvm9: rebuild for Python 3.8.

---
 srcpkgs/llvm9/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/llvm9/template b/srcpkgs/llvm9/template
index 3c1a1a3451b..890a93855d8 100644
--- a/srcpkgs/llvm9/template
+++ b/srcpkgs/llvm9/template
@@ -1,7 +1,7 @@
 # Template file for 'llvm9'
 pkgname=llvm9
 version=9.0.0
-revision=2
+revision=3
 wrksrc="llvm-${version}.src"
 build_style=cmake
 configure_args="

From 35705a0ec1fa89e486ce0bd914a281e75fb4c60d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 707/865] lollypop: rebuild for Python 3.8.

---
 srcpkgs/lollypop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lollypop/template b/srcpkgs/lollypop/template
index 56ace773bf3..3bd13c0d387 100644
--- a/srcpkgs/lollypop/template
+++ b/srcpkgs/lollypop/template
@@ -1,7 +1,7 @@
 # Template file for 'lollypop'
 pkgname=lollypop
 version=1.1.4.16
-revision=1
+revision=2
 # Gitlab upload tag hash
 _uhash=6b4e4e7a2c17f0770c1e2b3354ae5a3a
 archs=noarch

From abf170929ecb8e6514bb9b623c9bf0025d95467f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 708/865] lutris: rebuild for Python 3.8.

---
 srcpkgs/lutris/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lutris/template b/srcpkgs/lutris/template
index 8f54d693a12..75be521cc7c 100644
--- a/srcpkgs/lutris/template
+++ b/srcpkgs/lutris/template
@@ -1,7 +1,7 @@
 # Template file for 'lutris'
 pkgname=lutris
 version=0.5.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 build_helper="gir"

From 033d24a275b27b3e4290898f71e29ee61831825c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 709/865] magic-wormhole: rebuild for Python 3.8.

---
 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 c07753ce6ad..d93a1bbe1fc 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.11.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wormhole"

From 97518974b69815df971e878124b25e7f71d5e8ab Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 710/865] mate-tweak: rebuild for Python 3.8.

---
 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 85b829e85e8..76b79524269 100644
--- a/srcpkgs/mate-tweak/template
+++ b/srcpkgs/mate-tweak/template
@@ -1,7 +1,7 @@
 # Template file for 'mate-tweak'
 pkgname=mate-tweak
 version=19.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-pbr python3-setuptools"

From 5dcb7210004ff108d598ef337501b6a714ab18e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 711/865] med: rebuild for Python 3.8.

---
 srcpkgs/med/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/med/template b/srcpkgs/med/template
index 34dd6d006d6..acd79293246 100644
--- a/srcpkgs/med/template
+++ b/srcpkgs/med/template
@@ -1,7 +1,7 @@
 # Template file for 'med'
 pkgname=med
 version=4.0.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--with-swig=yes --includedir=/usr/include/med"
 pycompile_module=med

From 8a253a522a5cf6290bab4c221b11fe17c243d918 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 712/865] meld: rebuild for Python 3.8.

---
 srcpkgs/meld/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meld/template b/srcpkgs/meld/template
index 9ed6114299e..7cbac065ce6 100644
--- a/srcpkgs/meld/template
+++ b/srcpkgs/meld/template
@@ -1,7 +1,7 @@
 # Template file for 'meld'
 pkgname=meld
 version=3.20.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="meld"

From 570c0fe2a12b7d554e25105d2b112ddb4639606d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 713/865] menulibre: rebuild for Python 3.8.

---
 srcpkgs/menulibre/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/menulibre/template b/srcpkgs/menulibre/template
index 64311115bec..f16c5f64337 100644
--- a/srcpkgs/menulibre/template
+++ b/srcpkgs/menulibre/template
@@ -1,7 +1,7 @@
 # Template file for 'menulibre'
 pkgname=menulibre
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="menulibre menulibre_lib"

From a00eefda40ce07b1d840325fe9d07a3ab8099ec7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 714/865] meson-cmake-wrapper: rebuild for Python 3.8.

---
 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 ca14e533431..57eea159ca8 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mcw"

From 2f979bcaea6b0d151c0a1a6e9d203902e997ec89 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 715/865] mimeo: rebuild for Python 3.8.

---
 srcpkgs/mimeo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mimeo/template b/srcpkgs/mimeo/template
index bef8dcde863..991c61d9df8 100644
--- a/srcpkgs/mimeo/template
+++ b/srcpkgs/mimeo/template
@@ -1,7 +1,7 @@
 # Template file for 'mimeo'
 pkgname=mimeo
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="Mimeo.py"

From ff1f527a20fbed7dd0fed1d250d2985e5b0706cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 716/865] mozo: rebuild for Python 3.8.

---
 srcpkgs/mozo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template
index 041f2454c3d..7bc18f017c7 100644
--- a/srcpkgs/mozo/template
+++ b/srcpkgs/mozo/template
@@ -1,7 +1,7 @@
 # Template file for 'mozo'
 pkgname=mozo
 version=1.22.2
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="Mozo"

From 2a061e622b522b730af8b794f71c53c34b944c47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 717/865] mpd-sima: rebuild for Python 3.8.

---
 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 fb72f0d2632..831fec709b7 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=1
+revision=2
 archs=noarch
 wrksrc="MPD_sima-${version}"
 build_style=python3-module

From 4541fbfc5e539024ce3f3e9df1ea6d3e01ac44d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 718/865] mps-youtube: rebuild for Python 3.8.

---
 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 7b104aa706f..2141b3e627d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mps_youtube"

From d2c8b5993a534c4886b03fac48576e98c1386ba1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 719/865] mugshot: rebuild for Python 3.8.

---
 srcpkgs/mugshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mugshot/template b/srcpkgs/mugshot/template
index cf27b30acac..1e695654a86 100644
--- a/srcpkgs/mugshot/template
+++ b/srcpkgs/mugshot/template
@@ -1,7 +1,7 @@
 # Template file for 'mugshot'
 pkgname=mugshot
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra"

From db10cdade64c5729cc74bab77e95afdfbcadc1f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 720/865] multibootusb: rebuild for Python 3.8.

---
 srcpkgs/multibootusb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/multibootusb/template b/srcpkgs/multibootusb/template
index 049b641c5fd..70cb07a85ac 100644
--- a/srcpkgs/multibootusb/template
+++ b/srcpkgs/multibootusb/template
@@ -1,7 +1,7 @@
 # Template file for 'multibootusb'
 pkgname=multibootusb
 version=9.2.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="scripts"

From c9b4100746fd53623e815e7ae46e1b1f52380e24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 721/865] mymcplus: rebuild for Python 3.8.

---
 srcpkgs/mymcplus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mymcplus/template b/srcpkgs/mymcplus/template
index 369ac8048ed..f30c62b09f4 100644
--- a/srcpkgs/mymcplus/template
+++ b/srcpkgs/mymcplus/template
@@ -1,7 +1,7 @@
 # Template file for 'mymcplus'
 pkgname=mymcplus
 version=3.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mymcplus"

From b2378661b9952d583c3fd2fa9a34c0c5323afad2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 722/865] nagstamon: rebuild for Python 3.8.

---
 srcpkgs/nagstamon/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/nagstamon/template b/srcpkgs/nagstamon/template
index 3a63bb5f1d9..6377e269309 100644
--- a/srcpkgs/nagstamon/template
+++ b/srcpkgs/nagstamon/template
@@ -1,7 +1,7 @@
 # Template file for 'nagstamon'
 pkgname=nagstamon
 version=3.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=Nagstamon
 build_style=python3-module

From 603bb18ac02a2be19f284b1f67d90c521bc01c8f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 723/865] neovim-remote: rebuild for Python 3.8.

---
 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 d8473bf0521..7391f9df2ee 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.2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nvr"

From b0ed985381a1685240ba4279fa545dbb0d59bf75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 724/865] newt: rebuild for Python 3.8.

---
 srcpkgs/newt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/newt/template b/srcpkgs/newt/template
index 3971bbfdbf7..25ccc946f51 100644
--- a/srcpkgs/newt/template
+++ b/srcpkgs/newt/template
@@ -1,7 +1,7 @@
 # Template file for 'newt'
 pkgname=newt
 version=0.52.21
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python-devel python3-devel"
 makedepends="slang-devel popt-devel python3-devel python-devel"

From d391f8e56c1266e015552919c6778d81b04188e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 725/865] notmuch: rebuild for Python 3.8.

---
 srcpkgs/notmuch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/notmuch/template b/srcpkgs/notmuch/template
index ced670a59d4..a3085fd4c27 100644
--- a/srcpkgs/notmuch/template
+++ b/srcpkgs/notmuch/template
@@ -1,7 +1,7 @@
 # Template file for 'notmuch'
 pkgname=notmuch
 version=0.29.1
-revision=1
+revision=2
 hostmakedepends="perl pkg-config python-devel python3-Sphinx python3-devel"
 makedepends="bash-completion gmime3-devel talloc-devel xapian-core-devel"
 short_desc="Thread-based email index, search, and tagging"

From 764938fb65f7ce96e941e254e8160b34907628d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 726/865] nyx: rebuild for Python 3.8.

---
 srcpkgs/nyx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/nyx/template b/srcpkgs/nyx/template
index 201ab5856ff..4b265771793 100644
--- a/srcpkgs/nyx/template
+++ b/srcpkgs/nyx/template
@@ -1,7 +1,7 @@
 # Template file for 'nyx'
 pkgname=nyx
 version=2.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nyx"

From 6087f754c2784a04c94f62c673d1b93d1f9b69f8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 727/865] olm-python: rebuild for Python 3.8.

---
 srcpkgs/olm-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/olm-python/template b/srcpkgs/olm-python/template
index 57ac1cfa01b..0141611ea3f 100644
--- a/srcpkgs/olm-python/template
+++ b/srcpkgs/olm-python/template
@@ -1,7 +1,7 @@
 # Template file for 'olm-python'
 pkgname=olm-python
 version=3.1.4
-revision=1
+revision=2
 wrksrc="olm-${version}"
 build_wrksrc=python
 build_style=python-module

From 1fc318bd20b04418299f379ef9aae944b1c52797 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 728/865] onboard: rebuild for Python 3.8.

---
 srcpkgs/onboard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onboard/template b/srcpkgs/onboard/template
index 844744038d8..467ed8f0ea5 100644
--- a/srcpkgs/onboard/template
+++ b/srcpkgs/onboard/template
@@ -1,7 +1,7 @@
 # Template file for 'onboard'
 pkgname=onboard
 version=1.4.1
-revision=4
+revision=5
 build_style=python3-module
 pycompile_module="Onboard"
 patch_args="-Np1"

From 98444af4a966b0963945a92e602015593ab8e13e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 729/865] openrazer-meta: rebuild for Python 3.8.

---
 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 112cb9e900b..60dc8212a73 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=2
+revision=3
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From ae87aaf473f51392a157b756b26694f9cb443bdb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 730/865] openshot: rebuild for Python 3.8.

---
 srcpkgs/openshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/openshot/template b/srcpkgs/openshot/template
index 605ea7305c2..d71b4d09fae 100644
--- a/srcpkgs/openshot/template
+++ b/srcpkgs/openshot/template
@@ -1,7 +1,7 @@
 # Template file for 'openshot'
 pkgname=openshot
 version=2.4.4
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 wrksrc="${pkgname}-qt-${version}"
 build_style=python3-module

From 833825f13e27bb007063cf5088f03b19a2cc08d1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 731/865] orca: rebuild for Python 3.8.

---
 srcpkgs/orca/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/orca/template b/srcpkgs/orca/template
index ac1c0e1dc0e..57d1495c10a 100644
--- a/srcpkgs/orca/template
+++ b/srcpkgs/orca/template
@@ -1,7 +1,7 @@
 # Template file for 'orca'
 pkgname=orca
 version=3.34.0
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="orca"

From fd434fc04bd61615f3ce092210da9bce156e0b1c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 732/865] papis: rebuild for Python 3.8.

---
 srcpkgs/papis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/papis/template b/srcpkgs/papis/template
index 95044b2a6a4..d99f358fc0d 100644
--- a/srcpkgs/papis/template
+++ b/srcpkgs/papis/template
@@ -1,7 +1,7 @@
 # Template file for 'papis'
 pkgname=papis
 version=0.8
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-requests python3-yaml python3-chardet python3-BeautifulSoup4

From 36004787b7c8c90c93861f5eb6f9b74ef642aef7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 733/865] paraview: rebuild for Python 3.8.

---
 srcpkgs/paraview/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/paraview/template b/srcpkgs/paraview/template
index 3b721b1833a..feb1c6ad9d9 100644
--- a/srcpkgs/paraview/template
+++ b/srcpkgs/paraview/template
@@ -1,7 +1,7 @@
 # Template file for 'paraview'
 pkgname=paraview
 version=5.6.1
-revision=1
+revision=2
 wrksrc=ParaView-v${version}
 build_style=cmake
 configure_args="-DPARAVIEW_ENABLE_FFMPEG=ON

From 2b51d62c321774f3a43496f679dfd488f706067d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 734/865] pass-git-helper: rebuild for Python 3.8.

---
 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 dfeed3ba4f0..6d7f25bd8a7 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.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 7acd313d408257f08b7f5107ef2c3a071e27bac7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 735/865] peframe: rebuild for Python 3.8.

---
 srcpkgs/peframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peframe/template b/srcpkgs/peframe/template
index b9d64f7a5a6..5ecede6cf56 100644
--- a/srcpkgs/peframe/template
+++ b/srcpkgs/peframe/template
@@ -1,7 +1,7 @@
 # Template file for 'peframe'
 pkgname=peframe
 version=6.0.3
-revision=1
+revision=2
 archs=noarch
 build_style="python3-module"
 pycompile_module="peframe"

From 52531c540c07eaf0c3a16b6bb67649c95137ca85 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 736/865] peru: rebuild for Python 3.8.

---
 srcpkgs/peru/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peru/template b/srcpkgs/peru/template
index 682440f0b50..10d4689338d 100644
--- a/srcpkgs/peru/template
+++ b/srcpkgs/peru/template
@@ -1,7 +1,7 @@
 # Template file for 'peru'
 pkgname=peru
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="peru"

From ac9029de11dd453ad3d58417cccbafae6f6fe9df Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 737/865] pgcli: rebuild for Python 3.8.

---
 srcpkgs/pgcli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index b967287e9cb..b187a0a4440 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,7 +1,7 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pgcli"

From 697b8b19a4450738d8afb43f3b77cdd2aca0e2ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 738/865] picard: rebuild for Python 3.8.

---
 srcpkgs/picard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/picard/template b/srcpkgs/picard/template
index 1bae142434a..08404a88475 100644
--- a/srcpkgs/picard/template
+++ b/srcpkgs/picard/template
@@ -1,7 +1,7 @@
 # Template file for 'picard'
 pkgname=picard
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname}-release-${version}"
 build_style=python3-module

From 97e6c4b434ba43b31ea9750f0cde96e7e90d3cdb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 739/865] piper: rebuild for Python 3.8.

---
 srcpkgs/piper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/piper/template b/srcpkgs/piper/template
index af8cc854991..91a31131f84 100644
--- a/srcpkgs/piper/template
+++ b/srcpkgs/piper/template
@@ -1,7 +1,7 @@
 # Template file for 'piper'
 pkgname=piper
 version=0.2.904
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 hostmakedepends="libratbag pkg-config glib-devel"

From f09dd780f8b4fd3fc1fce2c6353bd6fd4f28068a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 740/865] playitslowly: rebuild for Python 3.8.

---
 srcpkgs/playitslowly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/playitslowly/template b/srcpkgs/playitslowly/template
index d26cea3510a..6d3483ae251 100644
--- a/srcpkgs/playitslowly/template
+++ b/srcpkgs/playitslowly/template
@@ -1,7 +1,7 @@
 # Template file for 'playitslowly'
 pkgname=playitslowly
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From 8c15c00c27bec33d1ebaf461d73630f537f68cfb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 741/865] pmbootstrap: rebuild for Python 3.8.

---
 srcpkgs/pmbootstrap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pmbootstrap/template b/srcpkgs/pmbootstrap/template
index 1bfa8183a84..15e606439c2 100644
--- a/srcpkgs/pmbootstrap/template
+++ b/srcpkgs/pmbootstrap/template
@@ -1,7 +1,7 @@
 # Template file for 'pmbootstrap'
 pkgname=pmbootstrap
 version=1.9.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pmb"

From 85aa9e230e8defb3743cf881d851670569ea96ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 742/865] pockyt: rebuild for Python 3.8.

---
 srcpkgs/pockyt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pockyt/template b/srcpkgs/pockyt/template
index 760573904b1..ca56e9f98f0 100644
--- a/srcpkgs/pockyt/template
+++ b/srcpkgs/pockyt/template
@@ -1,7 +1,7 @@
 # Template file for 'pockyt'
 pkgname=pockyt
 version=1.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From c250ac766afa4af143600d8797168e0c2580a09a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 743/865] poezio: rebuild for Python 3.8.

---
 srcpkgs/poezio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/poezio/template b/srcpkgs/poezio/template
index 56f8138bb5e..4b318419dab 100644
--- a/srcpkgs/poezio/template
+++ b/srcpkgs/poezio/template
@@ -1,7 +1,7 @@
 # Template file for 'poezio'
 pkgname=poezio
 version=0.12.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="poezio poezio_plugins poezio_themes"
 hostmakedepends="python3-setuptools pkg-config"

From 239065bf2b49e534baae7b89acdbcc0936f7ab92 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 744/865] protontricks: rebuild for Python 3.8.

---
 srcpkgs/protontricks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/protontricks/template b/srcpkgs/protontricks/template
index a32f51c4845..dc003b63690 100644
--- a/srcpkgs/protontricks/template
+++ b/srcpkgs/protontricks/template
@@ -1,7 +1,7 @@
 # Template file for 'protontricks'
 pkgname=protontricks
 version=1.2.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-setuptools"

From 20fd99ca3a5123c7bd44ea479c9e40343e512fef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 745/865] pulseaudio-equalizer-ladspa: rebuild for Python 3.8.

---
 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 62d7eef2a65..10198de2c08 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=1
+revision=2
 wrksrc="equalizer-${version}"
 build_style=meson
 pycompile_module="pulseeq"

From a9e46412f1cd45af9dfb388fb63d869c0802a1e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 746/865] pulseeffects: rebuild for Python 3.8.

---
 srcpkgs/pulseeffects/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pulseeffects/template b/srcpkgs/pulseeffects/template
index 7fc44f938d9..dc9044cad32 100644
--- a/srcpkgs/pulseeffects/template
+++ b/srcpkgs/pulseeffects/template
@@ -2,7 +2,7 @@
 pkgname=pulseeffects
 reverts="4.3.4_1"
 version=3.2.3
-revision=3
+revision=4
 build_style=meson
 pycompile_module="PulseEffects PulseEffectsTest"
 hostmakedepends="pkg-config"

From 9f36566f7d8bd66300ba6ffa78e2825b0851b251 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 747/865] py3status: rebuild for Python 3.8.

---
 srcpkgs/py3status/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/py3status/template b/srcpkgs/py3status/template
index b7a263270e4..01709cfd14d 100644
--- a/srcpkgs/py3status/template
+++ b/srcpkgs/py3status/template
@@ -1,7 +1,7 @@
 # Template file for 'py3status'
 pkgname=py3status
 version=3.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="py3status"

From ba76f685d5685ac09453caf484a2acafd4c93017 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 748/865] pychess: rebuild for Python 3.8.

---
 srcpkgs/pychess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pychess/template b/srcpkgs/pychess/template
index 2c6ecef7bf9..d0594aa77f4 100644
--- a/srcpkgs/pychess/template
+++ b/srcpkgs/pychess/template
@@ -1,7 +1,7 @@
 # Template file for 'pychess'
 pkgname=pychess
 version=0.12.4
-revision=2
+revision=3
 build_style=python3-module
 pycompile_module="pychess"
 archs=noarch

From 617f168c619fdf6a04f334411b0416e176236b81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 749/865] pycp: rebuild for Python 3.8.

---
 srcpkgs/pycp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pycp/template b/srcpkgs/pycp/template
index 770eb50d3f4..c9066259862 100644
--- a/srcpkgs/pycp/template
+++ b/srcpkgs/pycp/template
@@ -1,7 +1,7 @@
 # Template file for 'pycp'
 pkgname=pycp
 version=8.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pycp"

From 3c370db9eabed525263ab6615d08ba183947e135 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 750/865] pymol: rebuild for Python 3.8.

---
 srcpkgs/pymol/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pymol/template b/srcpkgs/pymol/template
index 428ba7a6deb..e1031f325c0 100644
--- a/srcpkgs/pymol/template
+++ b/srcpkgs/pymol/template
@@ -1,7 +1,7 @@
 # Template file for 'pymol'
 pkgname=pymol
 version=2.3.0
-revision=1
+revision=2
 wrksrc=${pkgname}-open-source-${version}
 build_style="python3-module"
 makedepends="msgpack-devel python3-numpy freetype-devel libfreeglut-devel glew-devel

From fa99b15008d91a80d97a0b844393ed533af6e473 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 751/865] pyradio: rebuild for Python 3.8.

---
 srcpkgs/pyradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyradio/template b/srcpkgs/pyradio/template
index 10d7d8c6fbb..d2d5feddbdd 100644
--- a/srcpkgs/pyradio/template
+++ b/srcpkgs/pyradio/template
@@ -1,7 +1,7 @@
 # Template file for 'pyradio'
 pkgname=pyradio
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pyradio"

From f64fb1ed8a5d262db96c714377aa188e786924bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 752/865] pyside2-tools: rebuild for Python 3.8.

---
 srcpkgs/pyside2-tools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyside2-tools/template b/srcpkgs/pyside2-tools/template
index 4ba0044452d..0a153de8c15 100644
--- a/srcpkgs/pyside2-tools/template
+++ b/srcpkgs/pyside2-tools/template
@@ -1,7 +1,7 @@
 # Template file for 'pyside2-tools'
 pkgname=pyside2-tools
 version=5.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release

From 6f655056055676e53f3810b50d23122ad660f597 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 753/865] pysolfc: rebuild for Python 3.8.

---
 srcpkgs/pysolfc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pysolfc/template b/srcpkgs/pysolfc/template
index 62eb90009af..1631e9619d3 100644
--- a/srcpkgs/pysolfc/template
+++ b/srcpkgs/pysolfc/template
@@ -1,7 +1,7 @@
 # Template file for 'pysolfc'
 pkgname=pysolfc
 version=2.6.4
-revision=2
+revision=3
 archs="noarch"
 wrksrc="PySolFC-${pkgname}-${version}"
 build_style=python3-module

From 166015c44cc8031246d8c3ad92fa9693b360a0ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 754/865] pywal: rebuild for Python 3.8.

---
 srcpkgs/pywal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pywal/template b/srcpkgs/pywal/template
index 214a36698f2..98c4e1581e4 100644
--- a/srcpkgs/pywal/template
+++ b/srcpkgs/pywal/template
@@ -1,7 +1,7 @@
 # Template file for 'pywal'
 pkgname=pywal
 version=3.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pywal"

From 9420eb21934c4725bc7356059fcfb12bc1282f49 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 755/865] qomui: rebuild for Python 3.8.

---
 srcpkgs/qomui/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qomui/template b/srcpkgs/qomui/template
index 4e68864252d..8063350ba06 100644
--- a/srcpkgs/qomui/template
+++ b/srcpkgs/qomui/template
@@ -1,7 +1,7 @@
 # Template file for 'qomui'
 pkgname=qomui
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qomui"

From 31d555a674d5166324702c69ed5ebba8cf496144 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 756/865] quodlibet: rebuild for Python 3.8.

---
 srcpkgs/quodlibet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/quodlibet/template b/srcpkgs/quodlibet/template
index 53f6e926315..4b0c4ba0de5 100644
--- a/srcpkgs/quodlibet/template
+++ b/srcpkgs/quodlibet/template
@@ -1,7 +1,7 @@
 # Template file for 'quodlibet'
 pkgname=quodlibet
 version=4.2.1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="quodlibet"

From d4f4dc8a65216d468347696da511136a22143d66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 757/865] qutebrowser: rebuild for Python 3.8.

---
 srcpkgs/qutebrowser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qutebrowser/template b/srcpkgs/qutebrowser/template
index 11b74e4445d..07257c2d84b 100644
--- a/srcpkgs/qutebrowser/template
+++ b/srcpkgs/qutebrowser/template
@@ -1,7 +1,7 @@
 # Template file for 'qutebrowser'
 pkgname=qutebrowser
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qutebrowser"

From bc897183184d088cd486028e3acb2f03c3272941 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 758/865] r128gain: rebuild for Python 3.8.

---
 srcpkgs/r128gain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/r128gain/template b/srcpkgs/r128gain/template
index cdea955828e..1cb30c786f8 100644
--- a/srcpkgs/r128gain/template
+++ b/srcpkgs/r128gain/template
@@ -1,7 +1,7 @@
 # Template file for 'r128gain'
 pkgname=r128gain
 version=0.9.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="r128gain"
 hostmakedepends="python3-setuptools"

From 566941478b046f4ce25ce194337759e5cb6bcdbc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 759/865] radicale2: rebuild for Python 3.8.

---
 srcpkgs/radicale2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/radicale2/template b/srcpkgs/radicale2/template
index 0d8a27d89f3..310bc8cb3cf 100644
--- a/srcpkgs/radicale2/template
+++ b/srcpkgs/radicale2/template
@@ -1,7 +1,7 @@
 # Template file for 'radicale2'
 pkgname=radicale2
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module

From 59088edee59e935fd187c295b30c0785430fc79f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 760/865] ranger: rebuild for Python 3.8.

---
 srcpkgs/ranger/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template
index a387eac4ed7..a49716971a5 100644
--- a/srcpkgs/ranger/template
+++ b/srcpkgs/ranger/template
@@ -1,7 +1,7 @@
 # Template file for 'ranger'
 pkgname=ranger
 version=1.9.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ranger"

From 7f57ebbd29684322e558eb1a9b1f9af8e3176c92 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 761/865] rednotebook: rebuild for Python 3.8.

---
 srcpkgs/rednotebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rednotebook/template b/srcpkgs/rednotebook/template
index ac870a7a992..af7dea12fd5 100644
--- a/srcpkgs/rednotebook/template
+++ b/srcpkgs/rednotebook/template
@@ -1,7 +1,7 @@
 # Template file for 'rednotebook'
 pkgname=rednotebook
 version=2.11.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rednotebook"

From dcd691931d2a21c0fa8b4d9f88d1ac9934a57895 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 762/865] redshift: rebuild for Python 3.8.

---
 srcpkgs/redshift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/redshift/template b/srcpkgs/redshift/template
index bb31e7cec05..c58b8daeb76 100644
--- a/srcpkgs/redshift/template
+++ b/srcpkgs/redshift/template
@@ -1,7 +1,7 @@
 # Template file for 'redshift'
 pkgname=redshift
 version=1.12
-revision=1
+revision=2
 build_style=gnu-configure
 build_options="geoclue2"
 configure_args="--enable-gui --disable-geoclue $(vopt_enable geoclue2)"

From 7e532561c9ef350638498faa7e7f325b14d7ab7f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 763/865] ripe-atlas-tools: rebuild for Python 3.8.

---
 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 c8eef786962..c5e21c4b8dc 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=2.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ripe/atlas/tools"

From ee7af3415797f12b96ea4ce055f032f7712eebc4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 764/865] rmlint: rebuild for Python 3.8.

---
 srcpkgs/rmlint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rmlint/template b/srcpkgs/rmlint/template
index dc8d904d0c2..894a9a1dd01 100644
--- a/srcpkgs/rmlint/template
+++ b/srcpkgs/rmlint/template
@@ -1,7 +1,7 @@
 # Template file for 'rmlint'
 pkgname=rmlint
 version=2.9.0
-revision=1
+revision=2
 build_style=scons
 hostmakedepends="pkg-config python3-Sphinx glib-devel"
 makedepends="libblkid-devel elfutils-devel json-glib-devel"

From 2a9b688a2dc36357175d9beadefb812c5d79ce08 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 765/865] rtv: rebuild for Python 3.8.

---
 srcpkgs/rtv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rtv/template b/srcpkgs/rtv/template
index 1a089e3e88d..1fc137b2e5b 100644
--- a/srcpkgs/rtv/template
+++ b/srcpkgs/rtv/template
@@ -1,7 +1,7 @@
 # Template file for 'rtv'
 pkgname=rtv
 version=1.27.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rtv"

From 6505e1bb40cca4307d7178a55644b8ddc9e1dc66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 766/865] rubber: rebuild for Python 3.8.

---
 srcpkgs/rubber/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rubber/template b/srcpkgs/rubber/template
index cf668638cef..c7fe4cbbd06 100644
--- a/srcpkgs/rubber/template
+++ b/srcpkgs/rubber/template
@@ -1,7 +1,7 @@
 # Template file for 'rubber'
 pkgname=rubber
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From 8514a38491af6c2cd7044cf69bbd56c369434d9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 767/865] safeeyes: rebuild for Python 3.8.

---
 srcpkgs/safeeyes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/safeeyes/template b/srcpkgs/safeeyes/template
index bc35f302011..e7019662316 100644
--- a/srcpkgs/safeeyes/template
+++ b/srcpkgs/safeeyes/template
@@ -1,7 +1,7 @@
 # Template file for 'safeeyes'
 pkgname=safeeyes
 version=2.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="safeeyes"

From aec83edf37c40660fad9a3fd85bbfe14e5e21d7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 768/865] scapy: rebuild for Python 3.8.

---
 srcpkgs/scapy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scapy/template b/srcpkgs/scapy/template
index 65242f332a8..36972bfd461 100644
--- a/srcpkgs/scapy/template
+++ b/srcpkgs/scapy/template
@@ -1,7 +1,7 @@
 # Template file for 'scapy'
 pkgname=scapy
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="scapy"

From 0c126e7835156f45c278048217b08ee6e6bd7295 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 769/865] screenplain: rebuild for Python 3.8.

---
 srcpkgs/screenplain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/screenplain/template b/srcpkgs/screenplain/template
index 8410ab45e40..8eb759ae6a6 100644
--- a/srcpkgs/screenplain/template
+++ b/srcpkgs/screenplain/template
@@ -1,7 +1,7 @@
 # Template file for 'screenplain'
 pkgname=screenplain
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenplain"

From c8efdbb3f99764965137fca1dc8692ba005b93ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 770/865] scudcloud: rebuild for Python 3.8.

---
 srcpkgs/scudcloud/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
index 1b9f5f27d8a..1ab2618066e 100644
--- a/srcpkgs/scudcloud/template
+++ b/srcpkgs/scudcloud/template
@@ -1,7 +1,7 @@
 # Template file for 'scudcloud'
 pkgname=scudcloud
 version=1.65
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="scudcloud"
 hostmakedepends="python3-setuptools"

From 5a275f15c82b1c5636d5b579aefb5c24b9ec0d7b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 771/865] seafile-libclient: rebuild for Python 3.8.

---
 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 47c49d5ceb2..5eda59c1041 100644
--- a/srcpkgs/seafile-libclient/template
+++ b/srcpkgs/seafile-libclient/template
@@ -1,7 +1,7 @@
 # Template file for 'seafile-libclient'
 pkgname=seafile-libclient
 version=7.0.2
-revision=1
+revision=2
 _distname="${pkgname/-libclient/}"
 wrksrc="${_distname}-${version}"
 build_style=gnu-configure

From 817b0026ba1b9b733f8ca6db19b410b148a94c3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 772/865] sonata: rebuild for Python 3.8.

---
 srcpkgs/sonata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template
index 3e07610d1e5..fc2d86e6c1a 100644
--- a/srcpkgs/sonata/template
+++ b/srcpkgs/sonata/template
@@ -1,7 +1,7 @@
 # Template file for 'sonata'
 pkgname=sonata
 version=1.7b1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="sonata"

From 836c3b7ddc0fb818f9aa4b7846e9546d73d04b5d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 773/865] speech-dispatcher: rebuild for Python 3.8.

---
 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 0c27951586a..39cebf1f320 100644
--- a/srcpkgs/speech-dispatcher/template
+++ b/srcpkgs/speech-dispatcher/template
@@ -1,7 +1,7 @@
 # Template build file for 'speech-dispatcher'.
 pkgname=speech-dispatcher
 version=0.8.8
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static"
 short_desc="High-level device independent layer for speech synthesis interface"

From def9886a278151b86873ceed2e5ffd38837c7ce3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 774/865] speedtest-cli: rebuild for Python 3.8.

---
 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 6746ea3a35e..c65d9fd631d 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.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="speedtest.py"

From 996c6289bcbad932ba8c0c106212ebc646820dc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 775/865] sshuttle: rebuild for Python 3.8.

---
 srcpkgs/sshuttle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sshuttle/template b/srcpkgs/sshuttle/template
index e74d90171f2..04bae9a15c3 100644
--- a/srcpkgs/sshuttle/template
+++ b/srcpkgs/sshuttle/template
@@ -1,7 +1,7 @@
 # Template file for 'sshuttle'
 pkgname=sshuttle
 version=0.78.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="sshuttle"

From 3c36f9f633c2a5256cafc0e16a370b7361ec6d1b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 776/865] sssd: rebuild for Python 3.8.

---
 srcpkgs/sssd/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sssd/template b/srcpkgs/sssd/template
index 2ea28d21bee..13d0da0ba99 100644
--- a/srcpkgs/sssd/template
+++ b/srcpkgs/sssd/template
@@ -1,7 +1,7 @@
 # Template file for 'sssd'
 pkgname=sssd
 version=2.0.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-selinux --without-semanage
  --disable-cifs-idmap-plugin --without-samba --with-os=fedora

From 3608b9eb56b0ada6a054962a568bf3ca47caff2f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 777/865] stcgal: rebuild for Python 3.8.

---
 srcpkgs/stcgal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stcgal/template b/srcpkgs/stcgal/template
index 3410ccf8678..d75e88837cc 100644
--- a/srcpkgs/stcgal/template
+++ b/srcpkgs/stcgal/template
@@ -1,7 +1,7 @@
 # Template file for 'stcgal'
 pkgname=stcgal
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="stcgal"

From 4600b6fffa5b3a4b5c017f188889cec36dc9d07b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 778/865] stig: rebuild for Python 3.8.

---
 srcpkgs/stig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stig/template b/srcpkgs/stig/template
index 0777c5f0cc2..abe5f3b563c 100644
--- a/srcpkgs/stig/template
+++ b/srcpkgs/stig/template
@@ -1,7 +1,7 @@
 # Template file for 'stig'
 pkgname=stig
 version=0.10.1a
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 1b222affe81449d1fef2829286949c748cc2a86c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 779/865] streamlink: rebuild for Python 3.8.

---
 srcpkgs/streamlink/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/streamlink/template b/srcpkgs/streamlink/template
index abcdc12c4ac..59caa85dc8a 100644
--- a/srcpkgs/streamlink/template
+++ b/srcpkgs/streamlink/template
@@ -1,7 +1,7 @@
 # Template file for 'streamlink'
 pkgname=streamlink
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="streamlink streamlink_cli"

From 9159c5859dc9b5a7c4853e709d3235b4c9bc5f7b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 780/865] subuser: rebuild for Python 3.8.

---
 srcpkgs/subuser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/subuser/template b/srcpkgs/subuser/template
index 50444246b29..0bc3e71db36 100644
--- a/srcpkgs/subuser/template
+++ b/srcpkgs/subuser/template
@@ -1,7 +1,7 @@
 # Template file for 'subuser'
 pkgname=subuser
 version=0.6.2
-revision=2
+revision=3
 archs="x86_64*"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 9e55061a83b04fb846b0107ff8988530c8b7fd7f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 781/865] synapse: rebuild for Python 3.8.

---
 srcpkgs/synapse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template
index daae80e5792..0c0fd6841fb 100644
--- a/srcpkgs/synapse/template
+++ b/srcpkgs/synapse/template
@@ -1,7 +1,7 @@
 # Template file for 'synapse'
 pkgname=synapse
 version=1.3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 3f24791c051e3f4c32097a1e2737de1a83bc4b45 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 782/865] tekaim: rebuild for Python 3.8.

---
 srcpkgs/tekaim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tekaim/template b/srcpkgs/tekaim/template
index e3cc5335ecc..bd60dcc57a6 100644
--- a/srcpkgs/tekaim/template
+++ b/srcpkgs/tekaim/template
@@ -1,7 +1,7 @@
 # Template file for 'tekaim'
 pkgname=tekaim
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From d2c0aca833eabdd8704e7032c2030a6e878ebdc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 783/865] telepresence: rebuild for Python 3.8.

---
 srcpkgs/telepresence/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/telepresence/template b/srcpkgs/telepresence/template
index 17300f3b548..fa7f916f66f 100644
--- a/srcpkgs/telepresence/template
+++ b/srcpkgs/telepresence/template
@@ -1,7 +1,7 @@
 # Template file for 'telepresence'
 pkgname=telepresence
 version=0.102
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="telepresence"

From 8476f6a50e93ab42aefe2cd5eab135b8bc7ee5cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 784/865] termdown: rebuild for Python 3.8.

---
 srcpkgs/termdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/termdown/template b/srcpkgs/termdown/template
index 90a4a894d42..299de920389 100644
--- a/srcpkgs/termdown/template
+++ b/srcpkgs/termdown/template
@@ -1,7 +1,7 @@
 # Template file for 'termdown'
 pkgname=termdown
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="termdown.py"

From 53ec354c343c4beb98601947b280d385494a6a3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 785/865] terminal_markdown_viewer: rebuild for Python 3.8.

---
 srcpkgs/terminal_markdown_viewer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/terminal_markdown_viewer/template b/srcpkgs/terminal_markdown_viewer/template
index e5d0f38aae2..ba3fcfdc8d6 100644
--- a/srcpkgs/terminal_markdown_viewer/template
+++ b/srcpkgs/terminal_markdown_viewer/template
@@ -1,7 +1,7 @@
 # Template file for 'terminal_markdown_viewer'
 pkgname=terminal_markdown_viewer
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mdv"

From f53f56ad912d52d400ede22f1d99020ee5de9e13 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 786/865] thefuck: rebuild for Python 3.8.

---
 srcpkgs/thefuck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thefuck/template b/srcpkgs/thefuck/template
index 714cd7982c7..a0de1c7b6a3 100644
--- a/srcpkgs/thefuck/template
+++ b/srcpkgs/thefuck/template
@@ -1,7 +1,7 @@
 # Template file for 'thefuck'
 pkgname=thefuck
 version=3.29
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="thefuck"

From 34de06d5363c9d1ea8daab260728ef7c29f561ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 787/865] thinkpad-scripts: rebuild for Python 3.8.

---
 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 8d26cf23e77..855d42492fb 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tps"

From 91d4d9e3afde854ecb413fae7ed22ae1c58e62b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 788/865] thrift: rebuild for Python 3.8.

---
 srcpkgs/thrift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thrift/template b/srcpkgs/thrift/template
index 73b0f59d4f6..e379ac35a09 100644
--- a/srcpkgs/thrift/template
+++ b/srcpkgs/thrift/template
@@ -1,7 +1,7 @@
 # Template file for 'thrift'
 pkgname=thrift
 version=0.12.0
-revision=2
+revision=3
 build_style=gnu-configure
 makedepends="boost-devel libressl-devel"
 short_desc="Apache Thrift compiler"

From c0ad7fa0ed65c956f520a08cbac209aca881cbe4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 789/865] todoman: rebuild for Python 3.8.

---
 srcpkgs/todoman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/todoman/template b/srcpkgs/todoman/template
index 2e0489ff49e..676412b8d0b 100644
--- a/srcpkgs/todoman/template
+++ b/srcpkgs/todoman/template
@@ -1,7 +1,7 @@
 # Template file for 'todoman'
 pkgname=todoman
 version=3.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="todoman"

From ff276d32763fff9f2a564b36bf4c02f7e19f36e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 790/865] toot: rebuild for Python 3.8.

---
 srcpkgs/toot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template
index b6dcdc9ede6..7f9fac6ca01 100644
--- a/srcpkgs/toot/template
+++ b/srcpkgs/toot/template
@@ -1,7 +1,7 @@
 # Template file for 'toot'
 pkgname=toot
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="toot"

From 413bd6c28cfcb4764ecf7f4e94b92899b9ab4dee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 791/865] torbrowser-launcher: rebuild for Python 3.8.

---
 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 a4aa707495c..ea2a50aae52 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.2
-revision=1
+revision=2
 archs="i686 x86_64" # limited by Tor Browser itself
 build_style=python3-module
 pycompile_module="torbrowser_launcher"

From 32b0adb025393308a4b937bb42382044236d0702 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 792/865] tox: rebuild for Python 3.8.

---
 srcpkgs/tox/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tox/template b/srcpkgs/tox/template
index 8c6b63a3cb1..908cb86bb38 100644
--- a/srcpkgs/tox/template
+++ b/srcpkgs/tox/template
@@ -1,7 +1,7 @@
 # Template file for 'tox'
 pkgname=tox
 version=3.14.0
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="tox"
 hostmakedepends="python3-setuptools"

From 4d13cd711a251a1cf40f4ecd0e85c99e4637b449 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 793/865] trackma: rebuild for Python 3.8.

---
 srcpkgs/trackma/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/trackma/template b/srcpkgs/trackma/template
index 96833382346..4c29bb8a35d 100644
--- a/srcpkgs/trackma/template
+++ b/srcpkgs/trackma/template
@@ -1,7 +1,7 @@
 # Template file for 'trackma'
 pkgname=trackma
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 562b18817307d630b1014c5a48e1c577c9980420 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 794/865] trash-cli: rebuild for Python 3.8.

---
 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 2a08548c7c8..4ab724d8cb1 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.17.1.14
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3"

From 121236bd7b9bcdeace0c7a3f70b4a6633c6f7293 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 795/865] tryton: rebuild for Python 3.8.

---
 srcpkgs/tryton/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tryton/template b/srcpkgs/tryton/template
index 196033361f6..61e0f733dc9 100644
--- a/srcpkgs/tryton/template
+++ b/srcpkgs/tryton/template
@@ -1,7 +1,7 @@
 # Template file for 'tryton'
 pkgname=tryton
 version=5.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tryton"

From eed2e15e54947d25bd14afaa04c41e0782748cc4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 796/865] tuimoji: rebuild for Python 3.8.

---
 srcpkgs/tuimoji/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuimoji/template b/srcpkgs/tuimoji/template
index 71e0bf540c0..73f5cff281f 100644
--- a/srcpkgs/tuimoji/template
+++ b/srcpkgs/tuimoji/template
@@ -1,7 +1,7 @@
 # Template file for 'tuimoji'
 pkgname=tuimoji
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tuimoji"

From ce7e8ea072e46214a6c0993d8e2c2f87e0e9bed2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 797/865] tuir: rebuild for Python 3.8.

---
 srcpkgs/tuir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuir/template b/srcpkgs/tuir/template
index dfc0b15c535..a98f4484544 100644
--- a/srcpkgs/tuir/template
+++ b/srcpkgs/tuir/template
@@ -1,7 +1,7 @@
 # Template file for 'tuir'
 pkgname=tuir
 version=1.28.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=python3-module

From 97f1c8fd85ab2a8a371791eb12e0c1c0e63d3236 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 798/865] tzupdate: rebuild for Python 3.8.

---
 srcpkgs/tzupdate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tzupdate/template b/srcpkgs/tzupdate/template
index 9531f0f7540..de2217476bd 100644
--- a/srcpkgs/tzupdate/template
+++ b/srcpkgs/tzupdate/template
@@ -1,7 +1,7 @@
 # Template file for 'tzupdate'
 pkgname=tzupdate
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tzupdate.py"

From 80b13ee027f4f64182f7e20687bb823f4b4128cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 799/865] udiskie: rebuild for Python 3.8.

---
 srcpkgs/udiskie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/udiskie/template b/srcpkgs/udiskie/template
index 536f4d5609d..06d58236046 100644
--- a/srcpkgs/udiskie/template
+++ b/srcpkgs/udiskie/template
@@ -1,7 +1,7 @@
 # Template file for 'udiskie'
 pkgname=udiskie
 version=1.7.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="udiskie"

From 1b67d5febbffcb55584b5fda550d107f96cd96a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 800/865] ueberzug: rebuild for Python 3.8.

---
 srcpkgs/ueberzug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ueberzug/template b/srcpkgs/ueberzug/template
index e0c474ff63e..dfa1ab29d96 100644
--- a/srcpkgs/ueberzug/template
+++ b/srcpkgs/ueberzug/template
@@ -1,7 +1,7 @@
 # Template file for 'ueberzug'
 pkgname=ueberzug
 version=18.1.3
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel libX11-devel libXext-devel"

From 2905e1365fe30243aa0fc9390670c848e419162c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 801/865] ufw: rebuild for Python 3.8.

---
 srcpkgs/ufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ufw/template b/srcpkgs/ufw/template
index ac7dfa45cdd..0bf2a3a0b76 100644
--- a/srcpkgs/ufw/template
+++ b/srcpkgs/ufw/template
@@ -1,7 +1,7 @@
 # Template file for 'ufw'
 pkgname=ufw
 version=0.36
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="ufw"

From 7e0780e94649784ef9ce91ffeaaafcdbad03dd0d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 802/865] unicorn: rebuild for Python 3.8.

---
 srcpkgs/unicorn/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/unicorn/template b/srcpkgs/unicorn/template
index 317e261ae88..971d44752ca 100644
--- a/srcpkgs/unicorn/template
+++ b/srcpkgs/unicorn/template
@@ -1,7 +1,7 @@
 # Template file for 'unicorn'
 pkgname=unicorn
 version=1.0.1
-revision=2
+revision=3
 archs="x86_64* i686*"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"
 short_desc="Lightweight multi-platform, multi-architecture CPU emulator framework"

From 789f0fcbd3f7ecfc4dedf71e4c187edb322ad58b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 803/865] unknown-horizons: rebuild for Python 3.8.

---
 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 b5fc593b744..6e81970800d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3 intltool git python3-Pillow"

From fdccb21d4203969c6c01734088eb625e56349155 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 804/865] urh: rebuild for Python 3.8.

---
 srcpkgs/urh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urh/template b/srcpkgs/urh/template
index 2cec83082fd..31f28bb366b 100644
--- a/srcpkgs/urh/template
+++ b/srcpkgs/urh/template
@@ -1,7 +1,7 @@
 # Template file for 'urh'
 pkgname=urh
 version=2.7.5
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="urh"
 hostmakedepends="python3-setuptools python3-Cython"

From 6e94929c2c8ad24aba0695ec7cae0d18f5f6b76c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 805/865] urlscan: rebuild for Python 3.8.

---
 srcpkgs/urlscan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlscan/template b/srcpkgs/urlscan/template
index f6f0d1db07b..2bb1688dad7 100644
--- a/srcpkgs/urlscan/template
+++ b/srcpkgs/urlscan/template
@@ -1,7 +1,7 @@
 # Template file for 'urlscan'
 pkgname=urlscan
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlscan"

From 22ea44a67fcdc0aa53b412fceed5d7015e326f1b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 806/865] urlwatch: rebuild for Python 3.8.

---
 srcpkgs/urlwatch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlwatch/template b/srcpkgs/urlwatch/template
index e8a5e403c92..1166fe101a7 100644
--- a/srcpkgs/urlwatch/template
+++ b/srcpkgs/urlwatch/template
@@ -1,7 +1,7 @@
 # Template file for 'urlwatch'
 pkgname=urlwatch
 version=2.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlwatch"

From f36de76e57978447ecd97b07a9638c4e5f10275c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 807/865] vapoursynth: rebuild for Python 3.8.

---
 srcpkgs/vapoursynth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vapoursynth/template b/srcpkgs/vapoursynth/template
index dd85e8b39dc..ce40f4f8920 100644
--- a/srcpkgs/vapoursynth/template
+++ b/srcpkgs/vapoursynth/template
@@ -1,7 +1,7 @@
 # Template file for 'vapoursynth'
 pkgname=vapoursynth
 version=R47.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake pkg-config libtool nasm python3-Cython"
 makedepends="python3-devel zimg-devel libmagick-devel libass-devel ffmpeg-devel

From e701b07bd308bef67ebf59bd363f5bed1b388aae Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 808/865] variety: rebuild for Python 3.8.

---
 srcpkgs/variety/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/variety/template b/srcpkgs/variety/template
index b4ea756c0c9..4d327a830f8 100644
--- a/srcpkgs/variety/template
+++ b/srcpkgs/variety/template
@@ -1,7 +1,7 @@
 # Template file for 'variety'
 pkgname=variety
 version=0.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="jumble variety variety_lib"

From 28086cda3da71c4cfe79350800dcc84ce20142f8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 809/865] vdirsyncer: rebuild for Python 3.8.

---
 srcpkgs/vdirsyncer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vdirsyncer/template b/srcpkgs/vdirsyncer/template
index 24080413456..708204afda2 100644
--- a/srcpkgs/vdirsyncer/template
+++ b/srcpkgs/vdirsyncer/template
@@ -1,7 +1,7 @@
 # Template file for 'vdirsyncer'
 pkgname=vdirsyncer
 version=0.16.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="vdirsyncer"

From ea5d4c1b6a1a7ea668b39fdf60efd1df33cb91b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 810/865] vidcutter: rebuild for Python 3.8.

---
 srcpkgs/vidcutter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vidcutter/template b/srcpkgs/vidcutter/template
index 4f30b888805..6ca85d4e766 100644
--- a/srcpkgs/vidcutter/template
+++ b/srcpkgs/vidcutter/template
@@ -1,7 +1,7 @@
 # Template file for 'vidcutter'
 pkgname=vidcutter
 version=6.0.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="vidcutter"

From c3d1548ba528eea9d7bef07b46df6ff679a946ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 811/865] vimiv: rebuild for Python 3.8.

---
 srcpkgs/vimiv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vimiv/template b/srcpkgs/vimiv/template
index 20fcbe7a03f..a560d4c9d81 100644
--- a/srcpkgs/vimiv/template
+++ b/srcpkgs/vimiv/template
@@ -1,7 +1,7 @@
 # Template file for 'vimiv'
 pkgname="vimiv"
 version=0.9.1
-revision=2
+revision=3
 build_style=gnu-makefile
 pycompile_module=vimiv
 hostmakedepends="python3-setuptools python3-devel"

From f3232a63ac69bed3ea5e23e3500365d3538881c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 812/865] virtme: rebuild for Python 3.8.

---
 srcpkgs/virtme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtme/template b/srcpkgs/virtme/template
index 3905cb24b1d..30035a734f3 100644
--- a/srcpkgs/virtme/template
+++ b/srcpkgs/virtme/template
@@ -1,7 +1,7 @@
 # Template file for 'virtme'
 pkgname=virtme
 version=0.0.3.20180725
-revision=1
+revision=2
 archs=noarch
 _commit=60100bea82183b5d32ed9fca6534cd0fc60d5eb2
 wrksrc="${_commit}"

From 05fa842bb4d960d15c56d2aadaa52e308e5f2542 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 813/865] virtualenvwrapper: rebuild for Python 3.8.

---
 srcpkgs/virtualenvwrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtualenvwrapper/template b/srcpkgs/virtualenvwrapper/template
index 6007cc5d2ed..1f0c2efee86 100644
--- a/srcpkgs/virtualenvwrapper/template
+++ b/srcpkgs/virtualenvwrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'virtualenvwrapper'
 pkgname=virtualenvwrapper
 version=4.8.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="virtualenvwrapper"

From 409a87f477f4cbc78f961e5d9722d63297610e19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 814/865] visidata: rebuild for Python 3.8.

---
 srcpkgs/visidata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/visidata/template b/srcpkgs/visidata/template
index 715896e5f7c..c5c3ae7c82e 100644
--- a/srcpkgs/visidata/template
+++ b/srcpkgs/visidata/template
@@ -1,7 +1,7 @@
 # Template file for 'visidata'
 pkgname=visidata
 version=1.5.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="visidata"

From 2ba717600d97966db6452a7171e9e5ef361774e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 815/865] volctl: rebuild for Python 3.8.

---
 srcpkgs/volctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template
index 2b01750b9eb..585aabd2495 100644
--- a/srcpkgs/volctl/template
+++ b/srcpkgs/volctl/template
@@ -1,7 +1,7 @@
 # Template file for 'volctl'
 pkgname=volctl
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="volctl"

From 3535201fbe9eee300b3d9d42d26ba9654508ba49 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 816/865] voltron: rebuild for Python 3.8.

---
 srcpkgs/voltron/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/voltron/template b/srcpkgs/voltron/template
index c258bb9bab9..38f47a824e3 100644
--- a/srcpkgs/voltron/template
+++ b/srcpkgs/voltron/template
@@ -1,7 +1,7 @@
 # Template file for 'voltron'
 pkgname=voltron
 version=0.1.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="voltron"

From 89d03bda0a88f88af0ade59c0d348137fed3d591 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 817/865] volume_key: rebuild for Python 3.8.

---
 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 11d7b16bed8..14431cb70e9 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=1
+revision=2
 build_style=gnu-configure
 make_build_args="PYTHON3_CFLAGS=-I${XBPS_CROSS_BASE}/${py3_inc}
  PYTHON_CFLAGS=-I${XBPS_CROSS_BASE}/${py2_inc}"

From 745bee297746d213b3763aacb61d78fc45512775 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 818/865] weather: rebuild for Python 3.8.

---
 srcpkgs/weather/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weather/template b/srcpkgs/weather/template
index ffa8a828b36..3ac33bfac15 100644
--- a/srcpkgs/weather/template
+++ b/srcpkgs/weather/template
@@ -1,7 +1,7 @@
 # Template file for 'weather'
 pkgname=weather
 version=2.3
-revision=2
+revision=3
 archs=noarch
 hostmakedepends="python3"
 depends="python3"

From 945b4b5eb85ec26dcccc50bc215bb8bc60aac7ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 819/865] wfuzz: rebuild for Python 3.8.

---
 srcpkgs/wfuzz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wfuzz/template b/srcpkgs/wfuzz/template
index b03c1f28add..4a88ab67407 100644
--- a/srcpkgs/wfuzz/template
+++ b/srcpkgs/wfuzz/template
@@ -1,7 +1,7 @@
 # Template file for 'wfuzz'
 pkgname=wfuzz
 version=2.4
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="wfuzz"

From 2085ac8f368cf65f73edca6e2eeaa839df9d1bf5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 820/865] wpgtk: rebuild for Python 3.8.

---
 srcpkgs/wpgtk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpgtk/template b/srcpkgs/wpgtk/template
index 7e9d52b4f81..a722da58f22 100644
--- a/srcpkgs/wpgtk/template
+++ b/srcpkgs/wpgtk/template
@@ -1,7 +1,7 @@
 # Template file for 'wpgtk'
 pkgname=wpgtk
 version=6.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpgtk"

From 7c187c9da4ad0ce550ad7ebe59abf5815bfbfe37 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 821/865] wpull: rebuild for Python 3.8.

---
 srcpkgs/wpull/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpull/template b/srcpkgs/wpull/template
index 5e9b9dcc641..621e1c85428 100644
--- a/srcpkgs/wpull/template
+++ b/srcpkgs/wpull/template
@@ -1,7 +1,7 @@
 # Template file for 'wpull'
 pkgname=wpull
 version=2.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpull"

From 701978d33251cde8b705085f662d9458b69a6a0b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 822/865] wxPython4: rebuild for Python 3.8.

---
 srcpkgs/wxPython4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wxPython4/template b/srcpkgs/wxPython4/template
index 2aa7117d5e0..b65e0b2ffe1 100644
--- a/srcpkgs/wxPython4/template
+++ b/srcpkgs/wxPython4/template
@@ -1,7 +1,7 @@
 # Template file for 'wxPython4'
 pkgname=wxPython4
 version=4.0.6
-revision=2
+revision=3
 wrksrc="wxPython-${version}"
 build_style=python3-module
 pycompile_module="wx"

From d49f5dcf19784c87b4939a8669cea6b5ae2feb1b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 823/865] xcb-proto: rebuild for Python 3.8.

---
 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 1b26ecd73f3..020524bda87 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.13
-revision=2
+revision=3
 archs=noarch
 build_style=gnu-configure
 pycompile_module="xcbgen"

From 19e5a584c8c54da3b4eca5724f9aa8c959538374 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 824/865] xdot: rebuild for Python 3.8.

---
 srcpkgs/xdot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xdot/template b/srcpkgs/xdot/template
index 23f7b1f17e0..f7507ffb8c5 100644
--- a/srcpkgs/xdot/template
+++ b/srcpkgs/xdot/template
@@ -1,7 +1,7 @@
 # Template file for 'xdot'
 pkgname=xdot
 version=1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="xdot.py-${version}"
 build_style=python3-module

From 939ee67058450f63487b39065a816a2ed9c6a6a4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 825/865] xkcdpass: rebuild for Python 3.8.

---
 srcpkgs/xkcdpass/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xkcdpass/template b/srcpkgs/xkcdpass/template
index 46b4a9635f9..37fb6872079 100644
--- a/srcpkgs/xkcdpass/template
+++ b/srcpkgs/xkcdpass/template
@@ -1,7 +1,7 @@
 # Template file for 'xkcdpass'
 pkgname=xkcdpass
 version=1.17.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="XKCD-password-generator-xkcdpass-${version}"
 build_style=python3-module

From a67dd87b52f6ca4d5e4cefe17339897f96153b49 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 826/865] xonsh: rebuild for Python 3.8.

---
 srcpkgs/xonsh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xonsh/template b/srcpkgs/xonsh/template
index 768ebf36022..2dca267d0d1 100644
--- a/srcpkgs/xonsh/template
+++ b/srcpkgs/xonsh/template
@@ -1,7 +1,7 @@
 # Template file for 'xonsh'
 pkgname=xonsh
 version=0.9.12
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="xonsh xontrib"

From a5a73e26fd5adfa11baf15371c615f6b8eca0056 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 827/865] yq: rebuild for Python 3.8.

---
 srcpkgs/yq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yq/template b/srcpkgs/yq/template
index 7c3af7f43c2..dda886c6c40 100644
--- a/srcpkgs/yq/template
+++ b/srcpkgs/yq/template
@@ -1,7 +1,7 @@
 # Template file for 'yq'
 pkgname=yq
 version=2.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From d68185e72f93c8a691324e8fedaa890c78ef8a09 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 828/865] ytcc: rebuild for Python 3.8.

---
 srcpkgs/ytcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ytcc/template b/srcpkgs/ytcc/template
index feafa404b75..df4195758c7 100644
--- a/srcpkgs/ytcc/template
+++ b/srcpkgs/ytcc/template
@@ -1,7 +1,7 @@
 # Template file for 'ytcc'
 pkgname=ytcc
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ytcc"

From f45f38019bd061a761b9df987b7e48c4fefbf846 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 829/865] yturl: rebuild for Python 3.8.

---
 srcpkgs/yturl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yturl/template b/srcpkgs/yturl/template
index 6fa3e9872ee..ee14b77b5a0 100644
--- a/srcpkgs/yturl/template
+++ b/srcpkgs/yturl/template
@@ -1,7 +1,7 @@
 # Template file for 'yturl'
 pkgname=yturl
 version=2.0.2
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 3f83c32a7d0e818c552750ea8f887ed8d163817a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 830/865] yubikey-manager: rebuild for Python 3.8.

---
 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 af0330e8e15..fcc7b7cb737 100644
--- a/srcpkgs/yubikey-manager/template
+++ b/srcpkgs/yubikey-manager/template
@@ -1,7 +1,7 @@
 # Template file for 'yubikey-manager'
 pkgname=yubikey-manager
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From f60bba032e72ca7ab9c8b7e920980ea11a443f88 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 831/865] z3: rebuild for Python 3.8.

---
 srcpkgs/z3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/z3/template b/srcpkgs/z3/template
index d632a285019..e054915df91 100644
--- a/srcpkgs/z3/template
+++ b/srcpkgs/z3/template
@@ -1,7 +1,7 @@
 # Template file for 'z3'
 pkgname=z3
 version=4.8.6
-revision=2
+revision=3
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=configure
 configure_args="--prefix=/usr -g --python $(vopt_if ocaml --ml)"

From 46bf7a6b37c53cce9f575b48cddc2ab6d8bf959e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 832/865] zim: rebuild for Python 3.8.

---
 srcpkgs/zim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/zim/template b/srcpkgs/zim/template
index 45b9df5357c..dff4ad22081 100644
--- a/srcpkgs/zim/template
+++ b/srcpkgs/zim/template
@@ -1,7 +1,7 @@
 # Template file for 'zim'
 pkgname=zim
 version=0.71.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="zim"

From c1d74b90a8909dffec1f55829ab22b202c2cdd78 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 833/865] python3-pafy: rebuild for Python 3.8.

---
 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 ce26f770c69..b59c9a0adff 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.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pafy-${version}"
 build_style=python3-module

From 11813bf94ed3fc04b4ce2e8ea22e925268d2b6fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 834/865] python3-perf: rebuild for Python 3.8.

---
 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 a03251f97e8..3d57ddb1c1a 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.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyperf-${version}"
 build_style=python3-module

From 555deeec12853033503f5fb81a015775bc731e4b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 835/865] python3-yara: rebuild for Python 3.8.

---
 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 4a6c56dd083..3bdff14a0da 100644
--- a/srcpkgs/python3-yara/template
+++ b/srcpkgs/python3-yara/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-yara'
 pkgname=python3-yara
 version=3.11.0
-revision=1
+revision=2
 wrksrc="yara-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From e4b9d46c845248b9f5a1edd60e5981335711cab3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:31 +0200
Subject: [PATCH 836/865] azote: rebuild for Python 3.8.

---
 srcpkgs/azote/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/azote/template b/srcpkgs/azote/template
index 0a23c209551..2748cb98733 100644
--- a/srcpkgs/azote/template
+++ b/srcpkgs/azote/template
@@ -1,7 +1,7 @@
 # Template file for 'azote'
 pkgname=azote
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="azote"

From 1890d11ac2946bb5a46be1f60a023c5cac0c1a67 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 837/865] binwalk: rebuild for Python 3.8.

---
 srcpkgs/binwalk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/binwalk/template b/srcpkgs/binwalk/template
index 461ea4b547a..fccd523d584 100644
--- a/srcpkgs/binwalk/template
+++ b/srcpkgs/binwalk/template
@@ -1,7 +1,7 @@
 # Template file for 'binwalk'
 pkgname=binwalk
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="binwalk"

From 590dcfde6a8251f2ea9f03d50221acea7bb646a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 838/865] gnome-builder: rebuild for Python 3.8.

---
 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 9ae9ff9d94c..85aeeee9a15 100644
--- a/srcpkgs/gnome-builder/template
+++ b/srcpkgs/gnome-builder/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-builder'
 pkgname=gnome-builder
 version=3.34.1
-revision=1
+revision=2
 build_style=meson
 configure_args="-Dwith_webkit=true -Dwith_sysprof=true -Dhelp=true"
 hostmakedepends="appdata-tools desktop-file-utils flex gobject-introspection

From 41cc8b2bfeee6c834d40f1887c473f0589e6c205 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 839/865] gnome-tweaks: rebuild for Python 3.8.

---
 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 ac1f8bdb873..d0879253ac5 100644
--- a/srcpkgs/gnome-tweaks/template
+++ b/srcpkgs/gnome-tweaks/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-tweaks'
 pkgname=gnome-tweaks
 version=3.34.0
-revision=2
+revision=3
 archs=noarch
 build_style=meson
 pycompile_module="gtweak"

From d12a7b14e3c384a9eff0b6c348c034d42d393545 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 840/865] meson: rebuild for Python 3.8.

---
 srcpkgs/meson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meson/template b/srcpkgs/meson/template
index 315a0f27a92..76791451681 100644
--- a/srcpkgs/meson/template
+++ b/srcpkgs/meson/template
@@ -2,7 +2,7 @@
 pkgname=meson
 reverts="0.52.0_1 0.52.0_2"
 version=0.51.2
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mesonbuild"

From 1d6ef185feaea898bd2759ef70204447ff39062a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 841/865] onionshare: rebuild for Python 3.8.

---
 srcpkgs/onionshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onionshare/template b/srcpkgs/onionshare/template
index c585ae6101e..c37c5962736 100644
--- a/srcpkgs/onionshare/template
+++ b/srcpkgs/onionshare/template
@@ -1,7 +1,7 @@
 # Template file for 'onionshare'
 pkgname=onionshare
 version=2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="onionshare"

From ad945dd2e4a2ca0bbc9d1d76e67651e24e7d210a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 842/865] portage: rebuild for Python 3.8.

---
 srcpkgs/portage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/portage/template b/srcpkgs/portage/template
index b0f34731035..9610428bbf4 100644
--- a/srcpkgs/portage/template
+++ b/srcpkgs/portage/template
@@ -1,7 +1,7 @@
 # Template file for 'portage'
 pkgname=portage
 version=2.3.77
-revision=1
+revision=2
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=python3-module
 pycompile_module="portage _emerge"

From 73e21b264f71dc2b89d9ee48bf4e4f4f01faf629 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 843/865] rpm: rebuild for Python 3.8.

---
 srcpkgs/rpm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rpm/template b/srcpkgs/rpm/template
index 98e35930c4c..9b111106323 100644
--- a/srcpkgs/rpm/template
+++ b/srcpkgs/rpm/template
@@ -1,7 +1,7 @@
 # Template file for 'rpm'
 pkgname=rpm
 version=4.15.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--with-lua --with-cap --with-acl --with-external-db
  --enable-python PYTHON=python3"

From d1aa57b31e35086942774fc1a2848eb199adecd9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 844/865] youtube-dl: rebuild for Python 3.8.

---
 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 d6596b80bd3..f1ae3aa1a74 100644
--- a/srcpkgs/youtube-dl/template
+++ b/srcpkgs/youtube-dl/template
@@ -1,7 +1,7 @@
 # Template file for 'youtube-dl'
 pkgname=youtube-dl
 version=2019.10.16
-revision=1
+revision=2
 archs=noarch
 wrksrc=youtube-dl
 build_style=python3-module

From 9d31ea81d423187c93c4147a564b7b5a632a5f6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 845/865] blender: rebuild for Python 3.8.

---
 srcpkgs/blender/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template
index 758d1235185..47cb8f8ad13 100644
--- a/srcpkgs/blender/template
+++ b/srcpkgs/blender/template
@@ -1,7 +1,7 @@
 # Template file for 'blender'
 pkgname=blender
 version=2.79b
-revision=9
+revision=10
 build_style="cmake"
 makedepends="
  libgomp-devel libpng-devel tiff-devel python3-devel glu-devel

From f6a55ced0c1e68bc423b7f89b3a163a4a71cc48c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 846/865] freecad: rebuild for Python 3.8.

---
 srcpkgs/freecad/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/freecad/template b/srcpkgs/freecad/template
index 9e9375c4444..26bf34702a2 100644
--- a/srcpkgs/freecad/template
+++ b/srcpkgs/freecad/template
@@ -1,7 +1,7 @@
 # Template file for 'freecad'
 pkgname=freecad
 version=0.18.3
-revision=2
+revision=3
 wrksrc="FreeCAD-${version}"
 build_style=cmake
 

From 88f1b493780357e28482d13786ba015a092d30fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 847/865] gdb: rebuild for Python 3.8.

---
 srcpkgs/gdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gdb/template b/srcpkgs/gdb/template
index 9f84e4869e9..39aab79d08a 100644
--- a/srcpkgs/gdb/template
+++ b/srcpkgs/gdb/template
@@ -1,7 +1,7 @@
 # Template file for 'gdb'
 pkgname=gdb
 version=8.3.1
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="/usr/share/gdb"
 configure_args="--disable-werror --disable-nls --with-system-readline

From e877c311ab9d587b71cb5f96d49c282de4954afb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 848/865] hexchat: rebuild for Python 3.8.

---
 srcpkgs/hexchat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hexchat/template b/srcpkgs/hexchat/template
index fbeaf28ae8a..9f7d7957b76 100644
--- a/srcpkgs/hexchat/template
+++ b/srcpkgs/hexchat/template
@@ -1,7 +1,7 @@
 # Template file for 'hexchat'
 pkgname=hexchat
 version=2.14.2
-revision=6
+revision=7
 build_style=meson
 configure_args="-Dwith-dbus=true -Dwith-ssl=true -Dwith-text=false
  -Dwith-perl=/usr/bin/perl -Dwith-python=python3

From eff53b43d66f9c63f0463678780e1e9fdea842bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 849/865] hyperion: rebuild for Python 3.8.

---
 srcpkgs/hyperion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hyperion/template b/srcpkgs/hyperion/template
index 0befdbe7064..7ce415e929e 100644
--- a/srcpkgs/hyperion/template
+++ b/srcpkgs/hyperion/template
@@ -1,7 +1,7 @@
 # Template file for 'hyperion'
 pkgname=hyperion
 version=1.03.2
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DUSE_SYSTEM_PROTO_LIBS=ON -DENABLE_QT5=ON
  -DPROTOBUF_PROTOC_EXECUTABLE=/usr/bin/protoc -DENABLE_AMLOGIC=ON

From d4fc4ef29c823fce76c385523bb8b0b377b6ef81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 850/865] kdevelop-python: rebuild for Python 3.8.

---
 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 0265916a3d0..a306eb8f442 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.4.2
-revision=1
+revision=2
 wrksrc="kdev-python-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/kdevpythonsupport"

From 483c936f3da457ca617cc8cd63713f6512f2281c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 851/865] kitty: rebuild for Python 3.8.

---
 srcpkgs/kitty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/kitty/template b/srcpkgs/kitty/template
index d79bcc4acce..54cd08c23ec 100644
--- a/srcpkgs/kitty/template
+++ b/srcpkgs/kitty/template
@@ -1,7 +1,7 @@
 # Template file for 'kitty'
 pkgname=kitty
 version=0.14.6
-revision=1
+revision=2
 pycompile_dirs="usr/lib/kitty"
 hostmakedepends="ncurses pkg-config python3 wayland-devel wayland-protocols"
 makedepends="gettext-devel glfw-devel harfbuzz-devel libxkbcommon-devel

From feb4d73da243d1ab1421ff356b564d7d6b824ea2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 852/865] krita: rebuild for Python 3.8.

---
 srcpkgs/krita/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/krita/template b/srcpkgs/krita/template
index 7a59fc9ac58..95a02748136 100644
--- a/srcpkgs/krita/template
+++ b/srcpkgs/krita/template
@@ -1,7 +1,7 @@
 # Template file for 'krita'
 pkgname=krita
 version=4.2.7.1
-revision=1
+revision=2
 build_style=cmake
 configure_args="-Wno-dev -DBUILD_TESTING=OFF"
 hostmakedepends="extra-cmake-modules pkg-config python3"

From e008147169a53e424a2982d0a34a628084e763f5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:26:38 +0200
Subject: [PATCH 853/865] libpeas: rebuild for Python 3.8.

---
 srcpkgs/libpeas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index a69238bf823..d4dcf8b5941 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,7 +1,7 @@
 # Template file for 'libpeas'
 pkgname=libpeas
 version=1.22.0
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"

From 3ca40a97edbbeaa52cfa7323739e0715d1d4af16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 854/865] libreoffice: rebuild for Python 3.8.

---
 srcpkgs/libreoffice/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template
index 6e8685ac0fd..98f04a40304 100644
--- a/srcpkgs/libreoffice/template
+++ b/srcpkgs/libreoffice/template
@@ -1,7 +1,7 @@
 # Template file for 'libreoffice'
 pkgname=libreoffice
 version=6.2.5.2
-revision=2
+revision=3
 build_style=meta
 make_build_args="build-nocheck"
 nocross=yes

From c40924182f3ac59a628e61c9db8f3378cc9e2d23 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 855/865] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index 1f9c8043b46..34174be7535 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=5
+revision=6
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From ce723d3adb1eb6ab4223e53b4ba0516611ea9fe3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 856/865] libsigrokdecode: rebuild for Python 3.8.

---
 srcpkgs/libsigrokdecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsigrokdecode/template b/srcpkgs/libsigrokdecode/template
index 59e15dd61b9..cc9d9a10367 100644
--- a/srcpkgs/libsigrokdecode/template
+++ b/srcpkgs/libsigrokdecode/template
@@ -1,7 +1,7 @@
 # Template file for 'libsigrokdecode'
 pkgname=libsigrokdecode
 version=0.5.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="glib-devel python3-devel"

From 70f90cc98bbf3d43c4c694982c8e365c6d815aad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 857/865] luxrays: rebuild for Python 3.8.

---
 srcpkgs/luxrays/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/luxrays/template b/srcpkgs/luxrays/template
index c783e9fe3e5..58037fbfc05 100644
--- a/srcpkgs/luxrays/template
+++ b/srcpkgs/luxrays/template
@@ -1,7 +1,7 @@
 # Template file for 'luxrays'
 pkgname=luxrays
 version=3.1
-revision=13
+revision=14
 build_style=cmake
 configure_args="-DLUXRAYS_DISABLE_OPENCL=OFF -DCMAKE_SKIP_RPATH=ON"
 hostmakedepends="flex bison boost-devel"

From ba5a43b76a61e7af8304a3a5f3832733d4cc9dc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 858/865] navit: rebuild for Python 3.8.

---
 srcpkgs/navit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/navit/template b/srcpkgs/navit/template
index 461689a3c73..24cd151c64b 100644
--- a/srcpkgs/navit/template
+++ b/srcpkgs/navit/template
@@ -1,7 +1,7 @@
 # Template file for 'navit'
 pkgname=navit
 version=0.5.3
-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 a86dd92b411d17ce958d409f079ee1a477682d22 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 859/865] obs: rebuild for Python 3.8.

---
 srcpkgs/obs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/obs/template b/srcpkgs/obs/template
index 3ed426b1583..45bf81803e4 100644
--- a/srcpkgs/obs/template
+++ b/srcpkgs/obs/template
@@ -1,7 +1,7 @@
 # Template file for 'obs'
 pkgname=obs
 version=24.0.1
-revision=1
+revision=2
 _commit_hash_obs_browser="693498b518cf893876f454ef581e13106e8370ec"
 _commit_hash_obs_vst="fde438f7a8afdf41a7ab386a0aa1a61175fc8427"
 _commit_hash_ftl_sdk="98289f7c2ed754c647d451899b3356850c0c1fa3"

From 66017086ddef2aff16875e87a16fa7b98a275e44 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 860/865] renderdoc: rebuild for Python 3.8.

---
 srcpkgs/renderdoc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/renderdoc/template b/srcpkgs/renderdoc/template
index 32d051864d3..681aafe135d 100644
--- a/srcpkgs/renderdoc/template
+++ b/srcpkgs/renderdoc/template
@@ -1,7 +1,7 @@
 # Template file for 'renderdoc'
 pkgname=renderdoc
 version=1.4
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DENABLE_GL=ON -DENABLE_GLES=ON -DENABLE_QRENDERDOC=ON
  -DENABLE_RENDERDOCCMD=ON -DENABLE_VULKAN=ON -DENABLE_XCB=ON -DENABLE_XLIB=ON

From f3f089bd51a1ab24b5430dc0074867fb1d009b31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 861/865] sigil: rebuild for Python 3.8.

---
 srcpkgs/sigil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sigil/template b/srcpkgs/sigil/template
index 4a90ef95798..1d577ee3487 100644
--- a/srcpkgs/sigil/template
+++ b/srcpkgs/sigil/template
@@ -1,7 +1,7 @@
 # Template file for 'sigil'
 pkgname=sigil
 version=0.9.13
-revision=1
+revision=2
 wrksrc="Sigil-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/sigil/python3lib"

From c7727ba7fd29d9024050b256ff8c70af2ecda6c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 862/865] uwsgi: rebuild for Python 3.8.

---
 srcpkgs/uwsgi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/uwsgi/template b/srcpkgs/uwsgi/template
index 2e96cd2e38e..e283d6bc357 100644
--- a/srcpkgs/uwsgi/template
+++ b/srcpkgs/uwsgi/template
@@ -1,7 +1,7 @@
 # Template file for 'uwsgi'
 pkgname=uwsgi
 version=2.0.18
-revision=1
+revision=2
 hostmakedepends="python python3"
 makedepends="python-devel python3-devel"
 short_desc="Fast, self-healing application container server"

From 15f3b0c807dd23d1e4f3feca8f7cd472db8bfea6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 863/865] vim: rebuild for Python 3.8.

---
 srcpkgs/vim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vim/template b/srcpkgs/vim/template
index 8f543069d19..7c7fd4a30f7 100644
--- a/srcpkgs/vim/template
+++ b/srcpkgs/vim/template
@@ -1,7 +1,7 @@
 # Template file for 'vim'
 pkgname=vim
 version=8.1.2021
-revision=3
+revision=4
 hostmakedepends="glib-devel pkg-config"
 makedepends="acl-devel gtk+3-devel libXt-devel lua-devel ncurses-devel
  perl python-devel python3-devel ruby-devel"

From f24787cfc0df4c3123993007795b3764635e1bc7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 864/865] weechat: rebuild for Python 3.8.

---
 srcpkgs/weechat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weechat/template b/srcpkgs/weechat/template
index 19f8af4fd8f..14c3e2360f5 100644
--- a/srcpkgs/weechat/template
+++ b/srcpkgs/weechat/template
@@ -1,7 +1,7 @@
 # Template file for 'weechat'
 pkgname=weechat
 version=2.6
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_MAN=ON -DENABLE_ENCHANT=ON -DENABLE_PERL=ON
  -DENABLE_LUA=ON -DENABLE_RUBY=ON -DENABLE_SPELL=ON

From 529fa0758fe2b0a93e4ea0356acc0fcb8e5294dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 865/865] znc: rebuild for Python 3.8.

---
 srcpkgs/znc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/znc/template b/srcpkgs/znc/template
index 8af8f23a145..696b59133c8 100644
--- a/srcpkgs/znc/template
+++ b/srcpkgs/znc/template
@@ -1,7 +1,7 @@
 # Template file for 'znc'
 pkgname=znc
 version=1.7.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="
  --enable-python

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
@ 2019-10-19 15:23 ` voidlinux-github
  2019-10-19 16:55 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (31 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-10-19 15:23 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 178 bytes --]

New comment by CameronNemo on void-packages repository

https://github.com/void-linux/void-packages/pull/15623#issuecomment-544159513

Comment:
Travis is not going to like this.

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PR PATCH] [Updated] [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
  2019-10-19 15:23 ` voidlinux-github
@ 2019-10-19 16:55 ` voidlinux-github
  2019-10-19 16:55 ` voidlinux-github
                   ` (30 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-10-19 16:55 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 939 bytes --]

There is an updated pull request by leahneukirchen against master on the void-packages repository

https://github.com/leahneukirchen/void-packages python38
https://github.com/void-linux/void-packages/pull/15623

[WIP] Python 3.8
This huge PR tries to bump all packages that either shlib-require
libpython3.6m.so.1.0 or put files into /usr/lib/python3.6/site-packages.

Broken packages (on x86_64):

- [ ] attic -> upstream dead, remove?
- [ ] blender -> update to 2.80
- [ ] eolie
- [ ] fontforge
- [ ] freecad
- [ ] gst1-python
- [ ] libopenshot
- [ ] libpeas
- [ ] nagstamon
- [ ] paraview
- [ ] pockyt
- [ ] scudcloud
- [ ] torbrowser-launcher
- [ ] unknown-horizons
- [ ] vapoursynth
- [ ] variety
- [ ] kdevelop-python
- [ ] krita: SHA256 mismatch
- [x] ~~shiboken~~
- [ ] renderdoc

Untested:

- [ ] libreoffice


A patch file from https://github.com/void-linux/void-packages/pull/15623.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python38-15623.patch --]
[-- Type: text/x-diff, Size: 621676 bytes --]

From 9907b26ec9aacb2c9c990c665c32502ef0f7c808 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:06:59 +0200
Subject: [PATCH 001/870] python3: update to 3.8.0.

---
 common/shlibs                                 |  3 ++-
 .../python3/patches/fix-xattrs-glibc.patch    | 13 ----------
 srcpkgs/python3/patches/libressl-2.6.patch    | 26 -------------------
 srcpkgs/python3/template                      | 23 ++++++++--------
 4 files changed, 13 insertions(+), 52 deletions(-)
 delete mode 100644 srcpkgs/python3/patches/fix-xattrs-glibc.patch
 delete mode 100644 srcpkgs/python3/patches/libressl-2.6.patch

diff --git a/common/shlibs b/common/shlibs
index cc3fd8383d8..f5133935773 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1698,8 +1698,9 @@ libefiboot.so.1 libefivar-31_1
 libportaudio.so.2 portaudio-19.20140130_1
 libportaudiocpp.so.0 portaudio-cpp-19.20140130_1
 libdar.so.5000 libdar-2.4.14_1
-libpython3.so python3-3.6.2_1
 libpython3.6m.so.1.0 python3-3.6.2_1
+libpython3.so python3-3.8.0_1
+libpython3.8.so.1.0 python3-3.8.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.25.28_1
diff --git a/srcpkgs/python3/patches/fix-xattrs-glibc.patch b/srcpkgs/python3/patches/fix-xattrs-glibc.patch
deleted file mode 100644
index 909901293d5..00000000000
--- a/srcpkgs/python3/patches/fix-xattrs-glibc.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- Modules/posixmodule.c.orig
-+++ Modules/posixmodule.c
-@@ -103,8 +103,9 @@ corresponding Unix manual entries for more information on calls.");
- #undef HAVE_SCHED_SETAFFINITY
- #endif
- 
--#if defined(HAVE_SYS_XATTR_H) && defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
-+#if defined(HAVE_SYS_XATTR_H) && defined(__linux__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
- #define USE_XATTRS
-+#include <linux/limits.h>
- #endif
- 
- #ifdef USE_XATTRS
diff --git a/srcpkgs/python3/patches/libressl-2.6.patch b/srcpkgs/python3/patches/libressl-2.6.patch
deleted file mode 100644
index 92dcf1ef06e..00000000000
--- a/srcpkgs/python3/patches/libressl-2.6.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-https://github.com/python/cpython/pull/4930
-
---- Lib/test/test_ssl.py.orig
-+++ Lib/test/test_ssl.py
-@@ -29,6 +29,12 @@
- PROTOCOLS = sorted(ssl._PROTOCOL_NAMES)
- HOST = support.HOST
- IS_LIBRESSL = ssl.OPENSSL_VERSION.startswith('LibreSSL')
-+if IS_LIBRESSL:
-+    LIBRESSL_VERSION = tuple(
-+        int(s) for s in ssl.OPENSSL_VERSION.rsplit(' ')[-1].split('.')
-+    )
-+else:
-+    LIBRESSL_VERSION = ()
- IS_OPENSSL_1_1 = not IS_LIBRESSL and ssl.OPENSSL_VERSION_INFO >= (1, 1, 0)
- 
- 
-@@ -3392,6 +3398,8 @@ def test_selected_npn_protocol(self):
-                                        chatty=True, connectionchatty=True)
-             self.assertIs(stats['client_npn_protocol'], None)
- 
-+        @unittest.skipIf(IS_LIBRESSL and LIBRESSL_VERSION >= (2, 6, 1),
-+                         "LibreSSL 2.6.1+ has broken NPN support")
-         @unittest.skipUnless(ssl.HAS_NPN, "NPN support needed for this test")
-         def test_npn_protocols(self):
-             server_protocols = ['http/1.1', 'spdy/2']
diff --git a/srcpkgs/python3/template b/srcpkgs/python3/template
index 60bd4411ba8..b03a59beea8 100644
--- a/srcpkgs/python3/template
+++ b/srcpkgs/python3/template
@@ -3,7 +3,7 @@
 # THIS PKG MUST BE SYNCHRONIZED WITH "srcpkgs/python3-tkinter".
 #
 pkgname=python3
-version=3.6.9
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 short_desc="Interpreted, interactive, object-oriented programming language (${version%.*} series)"
@@ -11,7 +11,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=5e2f5f554e3f8f7f0296f7e73d8600c4e9acbaee6b2555b83206edf5153870da
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pycompile_dirs="usr/lib/python${version%.*}"
 hostmakedepends="pkg-config"
@@ -27,8 +27,7 @@ alternatives="
  python:python.1:/usr/share/man/man1/python${version%.*}.1"
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,13 +71,13 @@ do_install() {
 	rm -rf ${DESTDIR}/usr/lib/python${version%.*}/lib2to3/tests
 	# Remove references to the install(1) wrapper.
 	sed -e "s,${XBPS_WRAPPERDIR},/usr/bin,g" -i \
-		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/Makefile
 	if [ "$CROSS_BUILD" ]; then
 		# Remove references to cross toolchain.
 		sed -i "s/$XBPS_CROSS_TRIPLET-//g" \
-			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}/Makefile
 	fi
 }
 
@@ -89,10 +88,10 @@ python3-devel_package() {
 		vmove usr/bin/python*-config
 		vmove usr/lib/pkgconfig
 		vmove usr/include
-		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/libpython${version%.*}m.a \
+		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/libpython${version%.*}*.a \
 			${PKGDESTDIR}/usr/lib
-		mkdir -p ${DESTDIR}/usr/include/python${version%.*}m
-		mv ${PKGDESTDIR}/usr/include/python${version%.*}m/pyconfig.h \
-			${DESTDIR}/usr/include/python${version%.*}m
+		mkdir -p ${DESTDIR}/usr/include/python${version%.*}
+		mv ${PKGDESTDIR}/usr/include/python${version%.*}/pyconfig.h \
+			${DESTDIR}/usr/include/python${version%.*}
 	}
 }

From 82deb1f06d09e93aabaa46495a066cec2647de81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 17:09:57 +0200
Subject: [PATCH 002/870] python3-tkinter: update to 3.8.0.

---
 srcpkgs/python3-tkinter/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template
index 83906219af8..874be51ebdf 100644
--- a/srcpkgs/python3-tkinter/template
+++ b/srcpkgs/python3-tkinter/template
@@ -7,7 +7,7 @@
 _desc="Interpreted, interactive, object-oriented programming language"
 
 pkgname=python3-tkinter
-version=3.6.8
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 pycompile_dirs="
@@ -22,11 +22,10 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=35446241e995773b1bed7d196f4b624dadcadc8429f26282e756b2fb8a351193
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used.
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used.
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,7 +71,7 @@ do_install() {
 		mv ${wrksrc}/${pkgname}-${version}-install/usr/lib/python${version%.*}/${lib} \
 			${DESTDIR}/usr/lib/python${version%.*}/
 	done
-	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*m*.so \
+	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*.so \
 		${DESTDIR}/usr/lib/python${version%.*}/lib-dynload/
 	ln -sf idle${version%.*} ${DESTDIR}/usr/bin/idle3
 }

From 8bb33f77d591103b56f40685a4b61f57b43219cd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:42:15 +0200
Subject: [PATCH 003/870] common/environment/setup/python.sh: update to Python
 3.8.

---
 common/build-style/python-module.sh | 14 ++++----------
 common/environment/setup/python.sh  |  4 ++--
 2 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/common/build-style/python-module.sh b/common/build-style/python-module.sh
index da6ed586cff..ff8f107745f 100644
--- a/common/build-style/python-module.sh
+++ b/common/build-style/python-module.sh
@@ -4,7 +4,7 @@
 
 do_build() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
+	local pyver= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
@@ -12,10 +12,7 @@ do_build() {
 			LDFLAGS="$tmp_ldflags"
 
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
@@ -49,15 +46,12 @@ do_check() {
 
 do_install() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx=
+	local pyver=
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
diff --git a/common/environment/setup/python.sh b/common/environment/setup/python.sh
index d1f4d49a10a..ba181d45361 100644
--- a/common/environment/setup/python.sh
+++ b/common/environment/setup/python.sh
@@ -10,8 +10,8 @@ py2_lib="/usr/lib/python${py2_ver}"
 py2_sitelib="${py2_lib}/site-packages"
 py2_inc="/usr/include/python${py2_ver}"
 
-py3_ver="3.6"
-py3_abiver="m"
+py3_ver="3.8"
+py3_abiver=""
 py3_lib="/usr/lib/python${py3_ver}"
 py3_sitelib="${py3_lib}/site-packages"
 py3_inc="/usr/include/python${py3_ver}${py3_abiver}"

From 75fdcb94c7c7be7dc2c232d271de721d74dc1a6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 004/870] python3-3to2: rebuild for Python 3.8.

---
 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 b6ab94fe7c9..38558f1fcff 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=1
+revision=2
 archs=noarch
 wrksrc="3to2-${version}"
 build_style=python3-module

From 043957a8bcc69ef2ef270f7acd2753a544054759 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 005/870] python-Arrow: rebuild for Python 3.8.

---
 srcpkgs/python-Arrow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Arrow/template b/srcpkgs/python-Arrow/template
index 456e3776188..a3785d60075 100644
--- a/srcpkgs/python-Arrow/template
+++ b/srcpkgs/python-Arrow/template
@@ -2,7 +2,7 @@
 pkgname=python-Arrow
 reverts=0.13.1_1
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="arrow-${version}"
 build_style=python-module

From 5d1bc07743d348083ebd7dfbd1a4ece4913e6a70 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 006/870] python-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Babel/template b/srcpkgs/python-Babel/template
index 34d7a7728ce..619ae432ba4 100644
--- a/srcpkgs/python-Babel/template
+++ b/srcpkgs/python-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Babel'
 pkgname=python-Babel
 version=2.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38e28e565317345549892f5b8da9e3ab1cc3d513 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 007/870] python-BeautifulSoup4: rebuild for Python 3.8.

---
 srcpkgs/python-BeautifulSoup4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-BeautifulSoup4/template b/srcpkgs/python-BeautifulSoup4/template
index 70e4f8a58da..1f6074230c2 100644
--- a/srcpkgs/python-BeautifulSoup4/template
+++ b/srcpkgs/python-BeautifulSoup4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-BeautifulSoup4'
 pkgname=python-BeautifulSoup4
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="beautifulsoup4-${version}"
 build_style=python-module

From 193dc4fe709e1bccd18b84a58f880fde1e4394e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 008/870] python-Bottleneck: rebuild for Python 3.8.

---
 srcpkgs/python-Bottleneck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Bottleneck/template b/srcpkgs/python-Bottleneck/template
index 0c308d5dbb5..28195e99bca 100644
--- a/srcpkgs/python-Bottleneck/template
+++ b/srcpkgs/python-Bottleneck/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Bottleneck'
 pkgname=python-Bottleneck
 version=1.2.1
-revision=4
+revision=5
 wrksrc="Bottleneck-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ff4c422045070300d874353cc6c9750143422e2b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 009/870] python-Cheroot: rebuild for Python 3.8.

---
 srcpkgs/python-Cheroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Cheroot/template b/srcpkgs/python-Cheroot/template
index fcfdf76e69d..7a5375258f4 100644
--- a/srcpkgs/python-Cheroot/template
+++ b/srcpkgs/python-Cheroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Cheroot'
 pkgname=python-Cheroot
 version=8.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cheroot-${version}"
 build_style=python-module

From 6eb51b02b428d8054b1d3a3aa21e6bdcde31cf9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 010/870] python3-CherryPy: rebuild for Python 3.8.

---
 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 b78c01eba2c..450e5791508 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.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python3-module

From 8522b77c798415c2f59fc3b26adc757f66aa0fa7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 011/870] python-ConfigArgParse: rebuild for Python 3.8.

---
 srcpkgs/python-ConfigArgParse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ConfigArgParse/template b/srcpkgs/python-ConfigArgParse/template
index c9a00a04508..d90ca739aee 100644
--- a/srcpkgs/python-ConfigArgParse/template
+++ b/srcpkgs/python-ConfigArgParse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ConfigArgParse'
 pkgname=python-ConfigArgParse
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ConfigArgParse-${version}"
 build_style=python-module

From 3dcbda27301f3e918539317bc411ff556115ef1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 012/870] python-Cython: rebuild for Python 3.8.

---
 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 dc39d54e9c2..675160b3744 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.13
-revision=1
+revision=2
 wrksrc="Cython-${version}"
 build_style=python-module
 pycompile_module="Cython pyximport cython.py"

From 7c69ef59e0a628c13ece955c9f7322631824adca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 013/870] python-Django: rebuild for Python 3.8.

---
 srcpkgs/python-Django/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Django/template b/srcpkgs/python-Django/template
index 21aa405fba1..65a98e41032 100644
--- a/srcpkgs/python-Django/template
+++ b/srcpkgs/python-Django/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Django'
 pkgname=python-Django
 version=1.11.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="Django-${version}"
 build_style=python-module

From 33b250adb0abf2e46663f0a05749097633fce228 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 014/870] python-Flask: rebuild for Python 3.8.

---
 srcpkgs/python-Flask/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask/template b/srcpkgs/python-Flask/template
index 149a76c077e..b75b306701b 100644
--- a/srcpkgs/python-Flask/template
+++ b/srcpkgs/python-Flask/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask'
 pkgname=python-Flask
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9167e534992bd8d17a79a70e22a3b06c68c9762b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 015/870] python-Flask-Assets: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Assets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Assets/template b/srcpkgs/python-Flask-Assets/template
index 339f629f77a..eb81201396b 100644
--- a/srcpkgs/python-Flask-Assets/template
+++ b/srcpkgs/python-Flask-Assets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Assets'
 pkgname=python-Flask-Assets
 version=0.12
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c65d524eb8ee83f7c8eae3ca16878857a374e06c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 016/870] python-Flask-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Babel/template b/srcpkgs/python-Flask-Babel/template
index 3028d15d7bd..b3cc35f230e 100644
--- a/srcpkgs/python-Flask-Babel/template
+++ b/srcpkgs/python-Flask-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Babel'
 pkgname=python-Flask-Babel
 version=0.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From d52f7742820844af3ec25f4b6d4d6d58b19ad722 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 017/870] python-Flask-Login: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Login/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Login/template b/srcpkgs/python-Flask-Login/template
index 8fecf240963..ccaab92d857 100644
--- a/srcpkgs/python-Flask-Login/template
+++ b/srcpkgs/python-Flask-Login/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Login'
 pkgname=python-Flask-Login
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 112c53663ece086d477e4d4fcbc667ae6a2fb518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 018/870] python-Flask-OAuthlib: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-OAuthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-OAuthlib/template b/srcpkgs/python-Flask-OAuthlib/template
index d53157e37b2..958f05a836c 100644
--- a/srcpkgs/python-Flask-OAuthlib/template
+++ b/srcpkgs/python-Flask-OAuthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-OAuthlib'
 pkgname=python-Flask-OAuthlib
 version=0.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From aca82b53b5330ee4a154f2246569006b2d3a38c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 019/870] python3-Flask-RESTful: rebuild for Python 3.8.

---
 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 d0ed467f666..5a05eed0e93 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.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="flask-restful-${version}"
 build_style=python3-module

From 3121295fb06a2b12c0e42b9a6412c1fa52bb86fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 020/870] python-Flask-Script: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Script/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Script/template b/srcpkgs/python-Flask-Script/template
index 19d13887b8e..41312eae57f 100644
--- a/srcpkgs/python-Flask-Script/template
+++ b/srcpkgs/python-Flask-Script/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Script'
 pkgname=python-Flask-Script
 version=2.0.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From cfadd6a4c47e4e611c9d739113006da88f9cb8e7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 021/870] python-Flask-WTF: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-WTF/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-WTF/template b/srcpkgs/python-Flask-WTF/template
index 8edb1d39e35..b2be1e630fb 100644
--- a/srcpkgs/python-Flask-WTF/template
+++ b/srcpkgs/python-Flask-WTF/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-WTF'
 pkgname=python-Flask-WTF
 version=0.14.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 11896d4bd9e1767f6ad8b10e737f0e6a0f5df44f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 022/870] python-GitPython: rebuild for Python 3.8.

---
 srcpkgs/python-GitPython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-GitPython/template b/srcpkgs/python-GitPython/template
index 0edb43cc811..232429265f1 100644
--- a/srcpkgs/python-GitPython/template
+++ b/srcpkgs/python-GitPython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-GitPython'
 pkgname=python-GitPython
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="GitPython-${version}"
 build_style=python-module

From 7008fe32294cead7ef25084a09f874e87cad05e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 023/870] python-IPy: rebuild for Python 3.8.

---
 srcpkgs/python-IPy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-IPy/template b/srcpkgs/python-IPy/template
index d28276383ce..aaae9fcd002 100644
--- a/srcpkgs/python-IPy/template
+++ b/srcpkgs/python-IPy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-IPy'
 pkgname=python-IPy
 version=1.00
-revision=1
+revision=2
 archs=noarch
 wrksrc="IPy-${version}"
 build_style=python-module

From 4ee5b9129c818c4db475e75f899f1f21eb9c312c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 024/870] python3-Inflector: rebuild for Python 3.8.

---
 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 1bfe9ccef7c..e9ee0ffe8d1 100644
--- a/srcpkgs/python3-Inflector/template
+++ b/srcpkgs/python3-Inflector/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-Inflector'
 pkgname=python3-Inflector
 version=2.0.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="Inflector-${version}"
 build_style=python3-module

From 631236d908cbeed8345c2fb159c73e7c54fe1571 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 025/870] python-Jinja2: rebuild for Python 3.8.

---
 srcpkgs/python-Jinja2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Jinja2/template b/srcpkgs/python-Jinja2/template
index c67e6f47f06..3fcd44dc198 100644
--- a/srcpkgs/python-Jinja2/template
+++ b/srcpkgs/python-Jinja2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Jinja2'
 pkgname=python-Jinja2
 version=2.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Jinja2-${version}"
 build_style=python-module

From 3a7808b9f47226adec7dd1e59bef222cf38d7e9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 026/870] python-Levenshtein: rebuild for Python 3.8.

---
 srcpkgs/python-Levenshtein/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Levenshtein/template b/srcpkgs/python-Levenshtein/template
index 26f57d90e70..7d97147ccc8 100644
--- a/srcpkgs/python-Levenshtein/template
+++ b/srcpkgs/python-Levenshtein/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Levenshtein'
 pkgname=python-Levenshtein
 version=0.12.0
-revision=2
+revision=3
 build_style=python-module
 pycompile_module="Levenshtein"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"

From 6d2a898ccc971553cf9dab7239daf8d626350b19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 027/870] python-M2Crypto: rebuild for Python 3.8.

---
 srcpkgs/python-M2Crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-M2Crypto/template b/srcpkgs/python-M2Crypto/template
index 102dbb7261e..6febd5a9ea1 100644
--- a/srcpkgs/python-M2Crypto/template
+++ b/srcpkgs/python-M2Crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-M2Crypto'
 pkgname=python-M2Crypto
 version=0.35.2
-revision=1
+revision=2
 wrksrc="M2Crypto-${version}"
 build_style=python-module
 pycompile_module="M2Crypto"

From 3597aa866d7cb1ff4d5316a0cfe52c8aa8ab717c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 028/870] python-Mako: rebuild for Python 3.8.

---
 srcpkgs/python-Mako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Mako/template b/srcpkgs/python-Mako/template
index e5c3c76170c..f0184179b83 100644
--- a/srcpkgs/python-Mako/template
+++ b/srcpkgs/python-Mako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Mako'
 pkgname=python-Mako
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Mako-${version}"
 build_style=python-module

From 164d5bbfa645fb7b1ddbfbccebb7b85e407c578f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 029/870] python-Markdown: rebuild for Python 3.8.

---
 srcpkgs/python-Markdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markdown/template b/srcpkgs/python-Markdown/template
index 935dcc12bca..03a0d18e23b 100644
--- a/srcpkgs/python-Markdown/template
+++ b/srcpkgs/python-Markdown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markdown'
 pkgname=python-Markdown
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python-module

From c5fcb10688938a17e3acb9f9c630c300f5fe9672 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 030/870] python-MarkupSafe: rebuild for Python 3.8.

---
 srcpkgs/python-MarkupSafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MarkupSafe/template b/srcpkgs/python-MarkupSafe/template
index c12dbb7e656..ae22857aa7a 100644
--- a/srcpkgs/python-MarkupSafe/template
+++ b/srcpkgs/python-MarkupSafe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MarkupSafe'
 pkgname=python-MarkupSafe
 version=1.1.1
-revision=1
+revision=2
 wrksrc="MarkupSafe-${version}"
 build_style=python-module
 pycompile_module="markupsafe"

From b7a4bc0f45110c5c3bd019a437078724336d1888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 031/870] python-Markups: rebuild for Python 3.8.

---
 srcpkgs/python-Markups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markups/template b/srcpkgs/python-Markups/template
index d4817feb430..02ba25ee05c 100644
--- a/srcpkgs/python-Markups/template
+++ b/srcpkgs/python-Markups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markups'
 pkgname=python-Markups
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markups-${version}"
 build_style=python-module

From af8fe2e4b17c908737f599cc43d860493f7da689 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 032/870] python3-MechanicalSoup: rebuild for Python 3.8.

---
 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 b1bbfa4184c..5a3b0b3eb03 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=1
+revision=2
 archs=noarch
 wrksrc=MechanicalSoup-${version}
 build_style=python3-module

From 4d05157344a63fb3d617b00a4268732231187cb4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 033/870] python-MiniMock: rebuild for Python 3.8.

---
 srcpkgs/python-MiniMock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MiniMock/template b/srcpkgs/python-MiniMock/template
index 38c0723f374..8b8c4f5f1e6 100644
--- a/srcpkgs/python-MiniMock/template
+++ b/srcpkgs/python-MiniMock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MiniMock'
 pkgname=python-MiniMock
 version=1.2.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 25b62a34488966009bf8450b60653f01872e2310 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 034/870] python-Pillow: rebuild for Python 3.8.

---
 srcpkgs/python-Pillow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pillow/template b/srcpkgs/python-Pillow/template
index e43d22b8f62..f1791b46d79 100644
--- a/srcpkgs/python-Pillow/template
+++ b/srcpkgs/python-Pillow/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pillow'
 pkgname=python-Pillow
 version=6.2.0
-revision=1
+revision=2
 wrksrc="Pillow-${version}"
 build_style=python-module
 pycompile_module="PIL"

From f79ffe3fe477b7fff206250125a96da96c80c086 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 035/870] python-PyAudio: rebuild for Python 3.8.

---
 srcpkgs/python-PyAudio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyAudio/template b/srcpkgs/python-PyAudio/template
index 5c3286caae0..2e84cf5cc8f 100644
--- a/srcpkgs/python-PyAudio/template
+++ b/srcpkgs/python-PyAudio/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyAudio'
 pkgname=python-PyAudio
 version=0.2.11
-revision=2
+revision=3
 wrksrc="PyAudio-${version}"
 build_style=python-module
 pycompile_module="pyaudio.py"

From 11c99c939a4791ec394842255e6aac23eaae5920 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 036/870] python3-PyBrowserID: rebuild for Python 3.8.

---
 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 abec9dac54e..eefd0175f1b 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=2
+revision=3
 archs=noarch
 wrksrc="PyBrowserID-${version}"
 build_style=python3-module

From d49beb289c07b8d33e8e2f286e068c0e8b3fe4b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 037/870] python3-PyFxA: rebuild for Python 3.8.

---
 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 31175c92435..6fc6791efdd 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=1
+revision=2
 archs=noarch
 wrksrc="PyFxA-${version}"
 build_style=python3-module

From d0eb109c7435d396e67de8f37a376ca0a2958d93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 038/870] python-PyHamcrest: rebuild for Python 3.8.

---
 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 61078241d8a..48f001595aa 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=1
+revision=2
 archs=noarch
 wrksrc="PyHamcrest-${version}"
 build_style=python-module

From 4afc9e488b53ee7025095fe93072953c256fc630 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 039/870] python-PyICU: rebuild for Python 3.8.

---
 srcpkgs/python-PyICU/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyICU/template b/srcpkgs/python-PyICU/template
index be4aaf88639..aab2934cbbd 100644
--- a/srcpkgs/python-PyICU/template
+++ b/srcpkgs/python-PyICU/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyICU'
 pkgname=python-PyICU
 version=2.3.1
-revision=2
+revision=3
 wrksrc="PyICU-${version}"
 build_style=python-module
 pycompile_module="icu PyICU.py"

From a0c3f96b4df2b1efda070832287f3728314c717a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 040/870] python3-PyJWT: rebuild for Python 3.8.

---
 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 6f0830125c1..bf1dda0753e 100644
--- a/srcpkgs/python3-PyJWT/template
+++ b/srcpkgs/python3-PyJWT/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-PyJWT'
 pkgname=python3-PyJWT
 version=1.7.1
-revision=1
+revision=2
 wrksrc="PyJWT-${version}"
 build_style=python3-module
 pycompile_module="PyJWT.py"

From 0355fd4b78af7fbf4ffad4b12dc8e153b70d703d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 041/870] python-PyOpenGL: rebuild for Python 3.8.

---
 srcpkgs/python-PyOpenGL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyOpenGL/template b/srcpkgs/python-PyOpenGL/template
index ec08e0bd667..eafc3be1210 100644
--- a/srcpkgs/python-PyOpenGL/template
+++ b/srcpkgs/python-PyOpenGL/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL'
 pkgname=python-PyOpenGL
 version=3.1.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="PyOpenGL-${version}"
 build_style=python-module

From 1a8da5c4a7dbf53ec6c03efd5387e02d2b0be720 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 17:15:54 +0200
Subject: [PATCH 042/870] python-PyOpenGL-accelerate: update to 3.1.3b1.

---
 srcpkgs/python-PyOpenGL-accelerate/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python-PyOpenGL-accelerate/template b/srcpkgs/python-PyOpenGL-accelerate/template
index 25d84abffcb..5d16a82b845 100644
--- a/srcpkgs/python-PyOpenGL-accelerate/template
+++ b/srcpkgs/python-PyOpenGL-accelerate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL-accelerate'
 pkgname=python-PyOpenGL-accelerate
-version=3.1.0
-revision=5
+version=3.1.3b1
+revision=1
 wrksrc="PyOpenGL-accelerate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"
@@ -9,10 +9,10 @@ makedepends="python-devel python3-devel python-numpy python3-numpy"
 depends="python-numpy"
 short_desc="Acceleration code for PyOpenGL (Python2)"
 maintainer="Alain Kalker <a.c.kalker@gmail.com>"
-license="3-clause-BSD"
+license="BSD-3-Clause"
 homepage="http://pyopengl.sourceforge.net/"
 distfiles="${PYPI_SITE}/P/PyOpenGL-accelerate/PyOpenGL-accelerate-${version}.tar.gz"
-checksum=927f4670b893d46e2f6273ae938bf0a1db27ffae3336eba94813ccef6260c410
+checksum=e687eea7e006d65f531933b49b3b3d2feaaf51279147a904247f9d189762a36f
 
 post_install() {
 	vlicense license.txt LICENSE

From 2f6b6f2c3880b16991df568d3ac18efca5c970c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 043/870] python-PyQt5: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5/template b/srcpkgs/python-PyQt5/template
index 6534d4e22e6..9eba20dc514 100644
--- a/srcpkgs/python-PyQt5/template
+++ b/srcpkgs/python-PyQt5/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5'
 pkgname=python-PyQt5
 version=5.13.0
-revision=1
+revision=2
 _sipver=4.19.18
 lib32disabled=yes
 wrksrc="PyQt5_gpl-${version}"

From cf20a1f23e0c305d2e9672610364b2fd4f566695 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 044/870] python-PyQt5-webengine: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5-webengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5-webengine/template b/srcpkgs/python-PyQt5-webengine/template
index 996ef6b00e2..af7162d20cb 100644
--- a/srcpkgs/python-PyQt5-webengine/template
+++ b/srcpkgs/python-PyQt5-webengine/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5-webengine'
 pkgname=python-PyQt5-webengine
 version=5.13.0
-revision=1
+revision=2
 wrksrc="PyQtWebEngine_gpl-${version}"
 pycompile_module="PyQt5WebEngine"
 hostmakedepends="pkg-config qt5-qmake

From 84502fbd3a591ad0db01072998b5a2b3fcfcf192 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 045/870] python-Pygments: rebuild for Python 3.8.

---
 srcpkgs/python-Pygments/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pygments/template b/srcpkgs/python-Pygments/template
index f5a72ca6cea..8d2214a6bfc 100644
--- a/srcpkgs/python-Pygments/template
+++ b/srcpkgs/python-Pygments/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pygments'
 pkgname=python-Pygments
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Pygments-${version}"
 build_style=python-module

From ef2467b2248b773e2d940058876cf81a2b935043 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 046/870] python-Pyro4: rebuild for Python 3.8.

---
 srcpkgs/python-Pyro4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pyro4/template b/srcpkgs/python-Pyro4/template
index d8925aa141f..0417e9f6a8a 100644
--- a/srcpkgs/python-Pyro4/template
+++ b/srcpkgs/python-Pyro4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pyro4'
 pkgname=python-Pyro4
 version=4.75
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a80785231122d63ad91b973744bf59b0a1b59506 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 047/870] python3-ReParser: rebuild for Python 3.8.

---
 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 5e7b5de3790..5959de9d0e3 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=1
+revision=2
 archs=noarch
 wrksrc=ReParser-${version}
 build_style=python3-module

From 543272b7ff22e6f0642d879c60f19717643fec8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 048/870] python-SPARQLWrapper: rebuild for Python 3.8.

---
 srcpkgs/python-SPARQLWrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-SPARQLWrapper/template b/srcpkgs/python-SPARQLWrapper/template
index d014eb8aab4..8d2db9a02b3 100644
--- a/srcpkgs/python-SPARQLWrapper/template
+++ b/srcpkgs/python-SPARQLWrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'python-SPARQLWrapper'
 pkgname=python-SPARQLWrapper
 version=1.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a01a9e6bc3bd9fddfdd13341f78e625b063be5c8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 049/870] python-SQLAlchemy: rebuild for Python 3.8.

---
 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 7b529ade621..110430ff9f5 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.8
-revision=1
+revision=2
 wrksrc="SQLAlchemy-${version}"
 build_style=python-module
 pycompile_module="sqlalchemy"

From 46382571cad86b54ca46e129f7c2988772d0a48e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 050/870] python3-SecretStorage: rebuild for Python 3.8.

---
 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 8df813ad247..b19d4865f7e 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.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="SecretStorage-${version}"
 build_style=python3-module

From c79427640956f1961211ce3322c3811958e0f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 051/870] python3-SoCo: rebuild for Python 3.8.

---
 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 f0ac9825f57..01ebbeff15a 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="SoCo-${version}"
 build_style=python3-module

From 20a1ac5477ca4a76e0257e06bf6f353835eac7bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 052/870] python-Sphinx: rebuild for Python 3.8.

---
 srcpkgs/python-Sphinx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Sphinx/template b/srcpkgs/python-Sphinx/template
index e70dc9b238e..42969925f9e 100644
--- a/srcpkgs/python-Sphinx/template
+++ b/srcpkgs/python-Sphinx/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Sphinx'
 pkgname=python-Sphinx
 version=1.8.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="Sphinx-${version}"
 build_style=python-module

From 863c01ff80faa4de651a55ba2a354f8da5e6b025 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 053/870] python3-Telethon: rebuild for Python 3.8.

---
 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 b0786559591..d0fa8e34d3f 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.10.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="Telethon-${version}"
 build_style=python3-module

From efc9766b9866c660a4cb508c49be4df48f1e5809 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 054/870] python-Twisted: rebuild for Python 3.8.

---
 srcpkgs/python-Twisted/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Twisted/template b/srcpkgs/python-Twisted/template
index 519a1e251a9..e94e0edf26e 100644
--- a/srcpkgs/python-Twisted/template
+++ b/srcpkgs/python-Twisted/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Twisted'
 pkgname=python-Twisted
 version=18.9.0
-revision=3
+revision=4
 wrksrc="Twisted-${version}"
 build_style=python-module
 pycompile_module="twisted"

From 5fd974f3940d5ee91fe712fef2e93ce539743b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 055/870] python3-TxSNI: rebuild for Python 3.8.

---
 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 403010da5be..d9d7c2a0c83 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.1.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="TxSNI-${version}"
 build_style=python3-module

From 559184031fe43c0ff648fb7fab55ede08fff2c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 056/870] python-Unidecode: rebuild for Python 3.8.

---
 srcpkgs/python-Unidecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Unidecode/template b/srcpkgs/python-Unidecode/template
index 035c5d846be..444eb1427d6 100644
--- a/srcpkgs/python-Unidecode/template
+++ b/srcpkgs/python-Unidecode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Unidecode'
 pkgname=python-Unidecode
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Unidecode-${version}"
 build_style=python-module

From 07f0904b4cb8f2de0b7bc39c0ca28d225c91257d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 057/870] python-WTForms: rebuild for Python 3.8.

---
 srcpkgs/python-WTForms/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-WTForms/template b/srcpkgs/python-WTForms/template
index 06af2366050..98dff7d092f 100644
--- a/srcpkgs/python-WTForms/template
+++ b/srcpkgs/python-WTForms/template
@@ -1,7 +1,7 @@
 # Template file for 'python-WTForms'
 pkgname=python-WTForms
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="WTForms-${version}"
 build_style=python-module

From ec81beba1921fe189a8dd80810da306514a86c1a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 058/870] python3-WebOb: rebuild for Python 3.8.

---
 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 c360542a1f2..53e63879f2c 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=1
+revision=2
 archs=noarch
 wrksrc="WebOb-${version}"
 build_style=python3-module

From 0b7a4a756b3ead4c188a3819311c4471c1b0a21c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 059/870] python-Werkzeug: rebuild for Python 3.8.

---
 srcpkgs/python-Werkzeug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Werkzeug/template b/srcpkgs/python-Werkzeug/template
index 24fff62f1ae..1ca303822e8 100644
--- a/srcpkgs/python-Werkzeug/template
+++ b/srcpkgs/python-Werkzeug/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Werkzeug'
 pkgname=python-Werkzeug
 version=0.15.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c530a6e11127606a3b29b73da4cb31f010d97b5c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 060/870] python-Whoosh: rebuild for Python 3.8.

---
 srcpkgs/python-Whoosh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Whoosh/template b/srcpkgs/python-Whoosh/template
index f2118ed0af2..66856b206a7 100644
--- a/srcpkgs/python-Whoosh/template
+++ b/srcpkgs/python-Whoosh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-whoosh'
 pkgname=python-Whoosh
 version=2.7.4
-revision=1
+revision=2
 wrksrc="Whoosh-${version}"
 archs=noarch
 build_style=python-module

From 3e3ad6526265ded86e6e1b5539061302a3890381 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 061/870] python3-XlsxWriter: rebuild for Python 3.8.

---
 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 ea68ced9a03..b991457e01e 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.1.8
-revision=1
+revision=2
 archs="noarch"
 wrksrc="XlsxWriter-RELEASE_${version}"
 build_style=python3-module

From ed808be70fb42a5a7e827e43a5d8a9954d85823a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 062/870] python-Yapsy: rebuild for Python 3.8.

---
 srcpkgs/python-Yapsy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Yapsy/template b/srcpkgs/python-Yapsy/template
index 9f79423f91d..5ad8b234f5d 100644
--- a/srcpkgs/python-Yapsy/template
+++ b/srcpkgs/python-Yapsy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Yapsy'
 pkgname=python-Yapsy
 version=1.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Yapsy-${version}"
 build_style=python-module

From ef3f8b60f72752d3ec1c7676df4597cc6cfdfb42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 063/870] python-aalib: rebuild for Python 3.8.

---
 srcpkgs/python-aalib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-aalib/template b/srcpkgs/python-aalib/template
index 349b8407343..f9621a9c8dc 100644
--- a/srcpkgs/python-aalib/template
+++ b/srcpkgs/python-aalib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-aalib'
 pkgname=python-aalib
 version=0.3.2
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="aalib.py"
 hostmakedepends="python-setuptools python3-setuptools"

From 1aee008231a9354b62bbf679e89e620deeba0d34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 064/870] python3-acme: rebuild for Python 3.8.

---
 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 d7ef20f2301..844dde9c814 100644
--- a/srcpkgs/python3-acme/template
+++ b/srcpkgs/python3-acme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-acme'
 pkgname=python3-acme
 version=0.39.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="acme-${version}"
 build_style=python3-module

From 877668118087bb2d0bd4b8ebf34db7c6c4308c31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 065/870] python3-aiodns: rebuild for Python 3.8.

---
 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 cca9f45dbf5..8e06ea6e614 100644
--- a/srcpkgs/python3-aiodns/template
+++ b/srcpkgs/python3-aiodns/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiodns'
 pkgname=python3-aiodns
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiodns-${version}"
 build_style=python3-module

From de87766918ac8688cf8992433b56e9b1ad222108 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 066/870] python3-aiohttp: rebuild for Python 3.8.

---
 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 fbe98e07b2b..67e450e6aab 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.5.4
-revision=3
+revision=4
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 0c2d285f8d7edc438e657ec9bc4a2b16982a4a57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 067/870] python3-aiohttp-cors: rebuild for Python 3.8.

---
 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 8a643ca1797..b621716e3cd 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=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 4643a6f9e03d1657e1ac2f5ca93bf616979b58de Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 068/870] python3-aiohttp-cors2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp-cors2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp-cors2/template b/srcpkgs/python3-aiohttp-cors2/template
index 7ff1206538b..f13b0598456 100644
--- a/srcpkgs/python3-aiohttp-cors2/template
+++ b/srcpkgs/python3-aiohttp-cors2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp-cors2'
 pkgname=python3-aiohttp-cors2
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 9db81023f9f60f7a78d62f9f9b8f1fa8afbb9fa8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 069/870] python3-aiohttp2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp2/template b/srcpkgs/python3-aiohttp2/template
index b570043baba..db3704b5700 100644
--- a/srcpkgs/python3-aiohttp2/template
+++ b/srcpkgs/python3-aiohttp2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp2'
 pkgname=python3-aiohttp2
 version=2.3.10
-revision=2
+revision=3
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 9bf56f834aca73a7ea8141ab0c95b4aed0d1f09a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 070/870] python3-aiohttp_socks: rebuild for Python 3.8.

---
 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 93c45ff24c4..10ab967ef76 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.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp_socks-${version}"
 build_style=python3-module

From acad4e265f43c8bc2098168adb1c0442a0c22445 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 071/870] python3-aiorpcx: rebuild for Python 3.8.

---
 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 42b6dc541bf..07922e15ccd 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.17.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiorpcX-${version}"
 build_style=python3-module

From b4945f68890b617f5b513871e533769a2149f07f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 072/870] python-alabaster: rebuild for Python 3.8.

---
 srcpkgs/python-alabaster/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alabaster/template b/srcpkgs/python-alabaster/template
index e4ece5c2991..b33009d5efb 100644
--- a/srcpkgs/python-alabaster/template
+++ b/srcpkgs/python-alabaster/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alabaster'
 pkgname=python-alabaster
 version=0.7.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="alabaster-${version}"
 build_style=python-module

From 04c416b8fb310277c61713ee1b8dd702a970240b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 073/870] python-alembic: rebuild for Python 3.8.

---
 srcpkgs/python-alembic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alembic/template b/srcpkgs/python-alembic/template
index 4011b33c0fa..aecbe10e7d0 100644
--- a/srcpkgs/python-alembic/template
+++ b/srcpkgs/python-alembic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alembic'
 pkgname=python-alembic
 version=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="alembic-${version}"
 build_style=python-module

From 5c2d4bcc3255cb59561524d151fe84b3a70e8ad4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 074/870] python3-altgraph: rebuild for Python 3.8.

---
 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 eff10f7aef4..2bf433edb6e 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.16.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="altgraph-${version}"
 build_style=python3-module

From 3c6234d42f7adffca219ea7f98f11d5283dce900 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 075/870] python3-aniso8601: rebuild for Python 3.8.

---
 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 26540bc8c3f..0253b89b5a3 100644
--- a/srcpkgs/python3-aniso8601/template
+++ b/srcpkgs/python3-aniso8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aniso8601'
 pkgname=python3-aniso8601
 version=8.0.0
-revision=1
+revision=2
 archs=noarch
 _gitver=0ec13b9d81c9
 wrksrc="nielsenb-aniso8601-${_gitver}"

From b4fecde90241517d0629d46de55f99a1ef7edbaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 076/870] python-ansicolor: rebuild for Python 3.8.

---
 srcpkgs/python-ansicolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ansicolor/template b/srcpkgs/python-ansicolor/template
index af18c5b946d..3663a82f0cc 100644
--- a/srcpkgs/python-ansicolor/template
+++ b/srcpkgs/python-ansicolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ansicolor'
 pkgname=python-ansicolor
 version=0.2.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="ansicolor-${version}"
 build_style=python-module

From 3983fbed547fd194f9eefaaf58d10c7770e27350 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 077/870] python3-anytree: rebuild for Python 3.8.

---
 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 5a37dba6581..7368754c426 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.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="anytree-${version}"
 build_style=python3-module

From 6d797f541c2cb160f9cfebd0a3e71dace50cceb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 078/870] python-appdirs: rebuild for Python 3.8.

---
 srcpkgs/python-appdirs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-appdirs/template b/srcpkgs/python-appdirs/template
index fdae1fe184b..15354ec5768 100644
--- a/srcpkgs/python-appdirs/template
+++ b/srcpkgs/python-appdirs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-appdirs'
 pkgname=python-appdirs
 version=1.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 7a7c86554157d7224efc221e706b9aebfc1ff796 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 079/870] python3-applib: rebuild for Python 3.8.

---
 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 95f589dc65a..0fb5a42e618 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=1
+revision=2
 archs=noarch
 wrksrc="applib-${version}"
 build_style=python3-module

From 642416934e5f74b49e1a38fe6e941287cbccbf83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 080/870] python-apsw: rebuild for Python 3.8.

---
 srcpkgs/python-apsw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-apsw/template b/srcpkgs/python-apsw/template
index ed47b4a7803..6146ea639db 100644
--- a/srcpkgs/python-apsw/template
+++ b/srcpkgs/python-apsw/template
@@ -3,7 +3,7 @@ pkgname=python-apsw
 _distver=3.29.0
 _patchver=r1
 version=${_distver}${_patchver}
-revision=1
+revision=2
 wrksrc="apsw-${_distver}-${_patchver}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 765bd2f2b82c6226b12a5d6bbe156b07c03a1bca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 081/870] python-argh: rebuild for Python 3.8.

---
 srcpkgs/python-argh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argh/template b/srcpkgs/python-argh/template
index 4b7aec3b525..656da441757 100644
--- a/srcpkgs/python-argh/template
+++ b/srcpkgs/python-argh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argh'
 pkgname=python-argh
 version=0.26.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="argh-${version}"
 build_style=python-module

From 1f6f709fcbb4353d419be8d129ce581747dae1ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 082/870] python-argon2: rebuild for Python 3.8.

---
 srcpkgs/python-argon2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argon2/template b/srcpkgs/python-argon2/template
index 0b4b132cddd..1b5216cc9c0 100644
--- a/srcpkgs/python-argon2/template
+++ b/srcpkgs/python-argon2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argon2'
 pkgname=python-argon2
 version=18.3.0
-revision=2
+revision=3
 wrksrc="argon2_cffi-${version}"
 build_style=python-module
 pycompile_module="argon2"

From 26f299203792a3fe43e8944054d8c61c83416097 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 083/870] python-arxiv2bib: rebuild for Python 3.8.

---
 srcpkgs/python-arxiv2bib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-arxiv2bib/template b/srcpkgs/python-arxiv2bib/template
index 8bbc6bcf78e..4f245755dcf 100644
--- a/srcpkgs/python-arxiv2bib/template
+++ b/srcpkgs/python-arxiv2bib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-arxiv2bib'
 pkgname=python-arxiv2bib
 version=1.0.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="arxiv2bib-${version}"
 build_style=python-module

From 5d25b8642b8f8043e54a95f2ff5efc880044395a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 084/870] python-asn1crypto: rebuild for Python 3.8.

---
 srcpkgs/python-asn1crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-asn1crypto/template b/srcpkgs/python-asn1crypto/template
index 369c20af98f..e7ffe7415fc 100644
--- a/srcpkgs/python-asn1crypto/template
+++ b/srcpkgs/python-asn1crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-asn1crypto'
 pkgname=python-asn1crypto
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="asn1crypto-${version}"
 build_style=python-module

From c0625af704339d35d7423cd750ef2620c53c39bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 085/870] python-astral: rebuild for Python 3.8.

---
 srcpkgs/python-astral/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-astral/template b/srcpkgs/python-astral/template
index b8fdaee27ac..07aaeee166b 100644
--- a/srcpkgs/python-astral/template
+++ b/srcpkgs/python-astral/template
@@ -1,7 +1,7 @@
 # Template file for 'python-astral'
 pkgname=python-astral
 version=1.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python-}-${version}"
 build_style=python-module

From 6cdbd1584336605868e949368279bb6c2143b1d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 086/870] python3-astroid: rebuild for Python 3.8.

---
 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 28f01bd4445..d964fd2cdf3 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.2.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="astroid-${version}"
 build_style=python3-module

From c0642f6c760884c3209a89e643de35660419627a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 087/870] python3-async-timeout: rebuild for Python 3.8.

---
 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 d949a4fdf9a..854584fb5b2 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=1
+revision=2
 archs=noarch
 wrksrc="async-timeout-${version}"
 build_style=python3-module

From 17cdd1aac68337b8859ce0d970b309f841b8a456 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 088/870] python3-async_generator: rebuild for Python 3.8.

---
 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 c2053d7bf1f..20d9f7ea0d1 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=1
+revision=2
 archs=noarch
 wrksrc="async_generator-${version}"
 build_style=python3-module

From e57ec7e6820968645a23bcc13867add4c9a62399 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 089/870] python-atomicwrites: rebuild for Python 3.8.

---
 srcpkgs/python-atomicwrites/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atomicwrites/template b/srcpkgs/python-atomicwrites/template
index 849272e53f9..ec411d981d4 100644
--- a/srcpkgs/python-atomicwrites/template
+++ b/srcpkgs/python-atomicwrites/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atomicwrites'
 pkgname=python-atomicwrites
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="atomicwrites-${version}"
 build_style=python-module

From 61df9fa27dc05bc6bb5d5a2c5e806fd041d9adb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 090/870] python-atspi: rebuild for Python 3.8.

---
 srcpkgs/python-atspi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atspi/template b/srcpkgs/python-atspi/template
index 4a2007fa319..cfa1ef35377 100644
--- a/srcpkgs/python-atspi/template
+++ b/srcpkgs/python-atspi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atspi'
 pkgname=python-atspi
 version=2.32.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure

From d24c76e2f70e9a9dd9a6aa66a323bf79f37f9110 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 091/870] python-attrs: rebuild for Python 3.8.

---
 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 aaddb13f5be..6e2297a9553 100644
--- a/srcpkgs/python-attrs/template
+++ b/srcpkgs/python-attrs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-attrs'
 pkgname=python-attrs
 version=19.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="attrs-${version}"
 build_style=python-module

From dba37b5f26f28057cb10e86a08a4d2281ee09b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 092/870] python-audioread: rebuild for Python 3.8.

---
 srcpkgs/python-audioread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-audioread/template b/srcpkgs/python-audioread/template
index fc788a2778c..bc878d4b82d 100644
--- a/srcpkgs/python-audioread/template
+++ b/srcpkgs/python-audioread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-audioread'
 pkgname=python-audioread
 version=2.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="audioread-${version}"
 build_style=python-module

From 789a6f2ae1cd503ad69b6a968651c7745f878718 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 093/870] audit: rebuild for Python 3.8.

---
 srcpkgs/audit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/audit/template b/srcpkgs/audit/template
index c624aae0f6d..3e0d21784c0 100644
--- a/srcpkgs/audit/template
+++ b/srcpkgs/audit/template
@@ -1,7 +1,7 @@
 # Template file for 'audit'
 pkgname=audit
 version=2.8.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--libdir=/usr/lib --enable-shared=audit --enable-gssapi-krb5
  --with-apparmor --with-libcap-ng --with-python3"

From e2efc441ba2dda6eac89d6d19f7960be2fb6cb6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 094/870] python3-autobahn: rebuild for Python 3.8.

---
 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 053e45608e5..524ba4b4566 100644
--- a/srcpkgs/python3-autobahn/template
+++ b/srcpkgs/python3-autobahn/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-autobahn'
 pkgname=python3-autobahn
 version=19.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="autobahn-${version}"
 build_style=python3-module

From 9ad07e924752896ad77bccca2019163eb738ebc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 095/870] python-automat: rebuild for Python 3.8.

---
 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 4d0f89a89f5..984f5e9642a 100644
--- a/srcpkgs/python-automat/template
+++ b/srcpkgs/python-automat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-automat'
 pkgname=python-automat
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Automat-${version}"
 build_style=python-module

From a104c6986268b798f373e1fb36de2b20efb9f618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 096/870] python-axolotl: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl/template b/srcpkgs/python-axolotl/template
index cf24db1b6e7..74480b5a9fe 100644
--- a/srcpkgs/python-axolotl/template
+++ b/srcpkgs/python-axolotl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl'
 pkgname=python-axolotl
 version=0.2.3
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="axolotl"

From c0e16521a2125c2ae2c155dd483904a3dce7bd8c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 097/870] python-axolotl-curve25519: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl-curve25519/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl-curve25519/template b/srcpkgs/python-axolotl-curve25519/template
index f7b273b8385..897de4e7cdf 100644
--- a/srcpkgs/python-axolotl-curve25519/template
+++ b/srcpkgs/python-axolotl-curve25519/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl-curve25519'
 pkgname=python-axolotl-curve25519
 version=0.4.1.post2
-revision=2
+revision=3
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 makedepends="python-devel python3-devel"

From 6c250811341de25ed60e2bdfaae58eb8f5a8c159 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 098/870] python-babelfish: rebuild for Python 3.8.

---
 srcpkgs/python-babelfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-babelfish/template b/srcpkgs/python-babelfish/template
index c156255f418..47d5bb176cc 100644
--- a/srcpkgs/python-babelfish/template
+++ b/srcpkgs/python-babelfish/template
@@ -1,7 +1,7 @@
 # Template file for 'python-babelfish'
 pkgname=python-babelfish
 version=0.5.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="babelfish-${version}"
 build_style=python-module

From 3bbb2fa6599ab0470a4209080a69ad4f8476f1ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 099/870] python-backcall: rebuild for Python 3.8.

---
 srcpkgs/python-backcall/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-backcall/template b/srcpkgs/python-backcall/template
index 01dfab9c25d..a55af727ab6 100644
--- a/srcpkgs/python-backcall/template
+++ b/srcpkgs/python-backcall/template
@@ -1,7 +1,7 @@
 # Template file for 'python-backcall'
 pkgname=python-backcall
 version=0.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="backcall-${version}"
 build_style=python-module

From d263efaab1b83cfdc94e9b33011f3cfefc52dcd2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 100/870] bcc: rebuild for Python 3.8.

---
 srcpkgs/bcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template
index a4d32bce7a4..e872cb6a4a8 100644
--- a/srcpkgs/bcc/template
+++ b/srcpkgs/bcc/template
@@ -1,7 +1,7 @@
 # Template file for 'bcc'
 pkgname=bcc
 version=0.11.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DREVISION=${version}"
 hostmakedepends="flex"

From 95aa25d2f02529207de0d9d62aa57353f202d9a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 101/870] python-bcrypt: rebuild for Python 3.8.

---
 srcpkgs/python-bcrypt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bcrypt/template b/srcpkgs/python-bcrypt/template
index 1ccac21ee94..664b5c9df07 100644
--- a/srcpkgs/python-bcrypt/template
+++ b/srcpkgs/python-bcrypt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bcrypt'
 pkgname=python-bcrypt
 version=3.1.7
-revision=1
+revision=2
 wrksrc="bcrypt-${version}"
 build_style=python-module
 pycompile_module="bcrypt"

From 91e29d8f93186f3c597658d4746f864cc6ed9fb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 102/870] python-bibtexparser: rebuild for Python 3.8.

---
 srcpkgs/python-bibtexparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bibtexparser/template b/srcpkgs/python-bibtexparser/template
index 1eff201e6b8..c40115c9fb8 100644
--- a/srcpkgs/python-bibtexparser/template
+++ b/srcpkgs/python-bibtexparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bibtexparser'
 pkgname=python-bibtexparser
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bibtexparser-${version}"
 build_style=python-module

From 6a95de33763230908ad4e9ae408dedcdd2cc431d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 103/870] python-bitarray: rebuild for Python 3.8.

---
 srcpkgs/python-bitarray/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitarray/template b/srcpkgs/python-bitarray/template
index 4f2b4ee392c..f928718a9df 100644
--- a/srcpkgs/python-bitarray/template
+++ b/srcpkgs/python-bitarray/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitarray'
 pkgname=python-bitarray
 version=1.0.1
-revision=1
+revision=2
 wrksrc="bitarray-${version}"
 build_style=python-module
 pycompile_module="bitarray"

From 1f892b7a3495cc0eddd59d14baf8fa6473521ce4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 104/870] python-bitbucket-api: rebuild for Python 3.8.

---
 srcpkgs/python-bitbucket-api/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitbucket-api/template b/srcpkgs/python-bitbucket-api/template
index 27747866baf..448ea60d53d 100644
--- a/srcpkgs/python-bitbucket-api/template
+++ b/srcpkgs/python-bitbucket-api/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitbucket-api'
 pkgname=python-bitbucket-api
 version=0.5.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="bitbucket-api-${version}"
 build_style=python-module

From 9f464ba19a5d403e830d05b84d5b86c6a9bf0209 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 105/870] python-bleach: rebuild for Python 3.8.

---
 srcpkgs/python-bleach/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bleach/template b/srcpkgs/python-bleach/template
index da389c319a5..6e3d4a3bf4c 100644
--- a/srcpkgs/python-bleach/template
+++ b/srcpkgs/python-bleach/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bleach'
 pkgname=python-bleach
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bleach-${version}"
 build_style=python-module

From a79c0811d86d64b345ee5b056c280a062c8e810a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 106/870] python3-blessed: rebuild for Python 3.8.

---
 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 4d494883f9a..8527379351f 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.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessed-${version}"
 build_style=python3-module

From ec38850242ede1700a4b6234199fba116a530b3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 107/870] python-blessings: rebuild for Python 3.8.

---
 srcpkgs/python-blessings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blessings/template b/srcpkgs/python-blessings/template
index f8e396da5c5..baa4938c328 100644
--- a/srcpkgs/python-blessings/template
+++ b/srcpkgs/python-blessings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blessings'
 pkgname=python-blessings
 version=1.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessings-${version}"
 build_style=python-module

From 19252293b6f311e3a280441f83e7ec1589711b77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 108/870] python-blinker: rebuild for Python 3.8.

---
 srcpkgs/python-blinker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blinker/template b/srcpkgs/python-blinker/template
index e34a4a9721a..b6d1d63d19a 100644
--- a/srcpkgs/python-blinker/template
+++ b/srcpkgs/python-blinker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blinker'
 pkgname=python-blinker
 version=1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="blinker-${version}"
 build_style=python-module

From 7cd7b832b55b68ab081454f2b86c254476bd5132 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 109/870] python-bluez: rebuild for Python 3.8.

---
 srcpkgs/python-bluez/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bluez/template b/srcpkgs/python-bluez/template
index 1112352e8ab..4734e47038d 100644
--- a/srcpkgs/python-bluez/template
+++ b/srcpkgs/python-bluez/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bluez'
 pkgname=python-bluez
 version=0.22
-revision=4
+revision=5
 wrksrc="pybluez-${version}"
 build_style=python-module
 pycompile_module="bluetooth"

From 47f9a18cc42f2afe1e8f31696b6928e35b8105c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 110/870] python3-boltons: rebuild for Python 3.8.

---
 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 84a991feef4..1083eb98c51 100644
--- a/srcpkgs/python3-boltons/template
+++ b/srcpkgs/python3-boltons/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-boltons'
 pkgname=python3-boltons
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boltons-${version}"
 build_style=python3-module

From 05f9cb79aa092e2ddeede56d09676742c60cb788 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 111/870] python-boto: rebuild for Python 3.8.

---
 srcpkgs/python-boto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-boto/template b/srcpkgs/python-boto/template
index 40bd3d888b9..684c00feee0 100644
--- a/srcpkgs/python-boto/template
+++ b/srcpkgs/python-boto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-boto'
 pkgname=python-boto
 version=2.49.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boto-${version}"
 build_style=python-module

From ad258b30e35aadb84fd8cd6395bb3d382b429ce9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 112/870] python-botocore: rebuild for Python 3.8.

---
 srcpkgs/python-botocore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-botocore/template b/srcpkgs/python-botocore/template
index ae1a4c17964..0610007f36e 100644
--- a/srcpkgs/python-botocore/template
+++ b/srcpkgs/python-botocore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-botocore'
 pkgname=python-botocore
 version=1.12.243
-revision=1
+revision=2
 archs=noarch
 wrksrc="botocore-${version}"
 build_style=python-module

From 5bc87295c4d5b8af514da116d9b83154488da331 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 113/870] python-bottle: rebuild for Python 3.8.

---
 srcpkgs/python-bottle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bottle/template b/srcpkgs/python-bottle/template
index 8e3a2ad5ad7..0ffc8adfec7 100644
--- a/srcpkgs/python-bottle/template
+++ b/srcpkgs/python-bottle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bottle'
 pkgname=python-bottle
 version=0.12.17
-revision=1
+revision=2
 archs=noarch
 wrksrc="bottle-${version}"
 build_style=python-module

From 86d7964c563357cfa4aec17ced1fefb9e2c974d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 114/870] brltty: rebuild for Python 3.8.

---
 srcpkgs/brltty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/brltty/template b/srcpkgs/brltty/template
index 33f3354a219..a838cd62d55 100644
--- a/srcpkgs/brltty/template
+++ b/srcpkgs/brltty/template
@@ -1,7 +1,7 @@
 # Template file for 'brltty'
 pkgname=brltty
 version=6.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-gpm --with-screen-driver=lx,sc
  --with-tables-directory=/usr/share/brltty PYTHON=/usr/bin/python3"

From 59305e4244220895606aef8a8016d356cee63dff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 115/870] python-bsddb3: rebuild for Python 3.8.

---
 srcpkgs/python-bsddb3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bsddb3/template b/srcpkgs/python-bsddb3/template
index f719a3f9560..1df37cc0e71 100644
--- a/srcpkgs/python-bsddb3/template
+++ b/srcpkgs/python-bsddb3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bsddb3'
 pkgname=python-bsddb3
 version=6.2.6
-revision=2
+revision=3
 wrksrc="bsddb3-${version}"
 build_style=python-module
 make_build_args="--berkeley-db=${XBPS_CROSS_BASE}/usr"

From 8e91ab0e55145cdc83aae10c6f0277d467cb5057 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 116/870] python-cached-property: rebuild for Python 3.8.

---
 srcpkgs/python-cached-property/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cached-property/template b/srcpkgs/python-cached-property/template
index ca2f8536260..16c89346565 100644
--- a/srcpkgs/python-cached-property/template
+++ b/srcpkgs/python-cached-property/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cached-property'
 pkgname=python-cached-property
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cached-property-${version}"
 build_style=python-module

From 3047633291296a9279b5c2a9c0ff04a0cea875f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 117/870] python-cachetools: rebuild for Python 3.8.

---
 srcpkgs/python-cachetools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cachetools/template b/srcpkgs/python-cachetools/template
index ee3ed3a4c94..0f2fdcaed32 100644
--- a/srcpkgs/python-cachetools/template
+++ b/srcpkgs/python-cachetools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cachetools'
 pkgname=python-cachetools
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cachetools-${version}"
 build_style=python-module

From 52e0110b2dc8419583a18babfa62796ef6410ac7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 118/870] python3-cairo: rebuild for Python 3.8.

---
 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 cdde1b83d20..ac158237dd2 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.18.1
-revision=1
+revision=2
 wrksrc="pycairo-${version}"
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From d8f9c3f93f495874237c23477fb548be8b2c0da2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 119/870] python-cairocffi: rebuild for Python 3.8.

---
 srcpkgs/python-cairocffi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cairocffi/template b/srcpkgs/python-cairocffi/template
index baa61334a2a..c057739b03d 100644
--- a/srcpkgs/python-cairocffi/template
+++ b/srcpkgs/python-cairocffi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cairocffi'
 pkgname=python-cairocffi
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cairocffi-${version}"
 build_style=python-module

From bc01f22fb9a5d16bae1b724b675fc57b1f732baa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 120/870] python3-canonicaljson: rebuild for Python 3.8.

---
 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 abc8e95820d..1cbe15f14ae 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.1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="canonicaljson-${version}"
 build_style=python3-module

From e4cba931e3e55f565bc084f8171dea2a8baa9aaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 121/870] python3-casttube: rebuild for Python 3.8.

---
 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 ccd95f3f31c..9e5544b0101 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=1
+revision=2
 archs=noarch
 wrksrc="casttube-${version}"
 build_style=python3-module

From 255661e350728911e6dc85db4bd8a0a0f059b561 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 122/870] python-cffi: rebuild for Python 3.8.

---
 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 27ae03879ac..8501b202bf2 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.12.3
-revision=1
+revision=2
 wrksrc="cffi-${version}"
 build_style=python-module
 pycompile_module="cffi"

From 1b85c0971a1d2d810331d3392d4ecedf140eeb47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 123/870] python3-changelogs: rebuild for Python 3.8.

---
 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 5c2a4889959..d9a7784cf3b 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.14.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="changelogs-${version}"
 build_style=python3-module

From 38e9561402e4ea4c3c4b27c8c747e6b710aec2fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 124/870] python-chardet: rebuild for Python 3.8.

---
 srcpkgs/python-chardet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chardet/template b/srcpkgs/python-chardet/template
index 685d3ab767f..bd502bbbddf 100644
--- a/srcpkgs/python-chardet/template
+++ b/srcpkgs/python-chardet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chardet'
 pkgname=python-chardet
 version=3.0.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="chardet-${version}"
 build_style=python-module

From de1193127ae80857e0f21f1d0499748b6ccafa40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 125/870] python3-cheetah3: rebuild for Python 3.8.

---
 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 40dfee6e322..b2149b2bc22 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.4
-revision=1
+revision=2
 wrksrc="Cheetah3-${version}"
 build_style=python3-module
 pycompile_module="Cheetah"

From 654378c7da0932e5e48085409868c2639efb5294 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 126/870] python3-chess: rebuild for Python 3.8.

---
 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 54b397517cf..e87dab6ca02 100644
--- a/srcpkgs/python3-chess/template
+++ b/srcpkgs/python3-chess/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chess'
 pkgname=python3-chess
 version=0.27.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-chess-${version}"
 build_style=python3-module

From 10db1a1daa9e65a8a20ebc6e20f512884e23f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 127/870] python3-chromecast: rebuild for Python 3.8.

---
 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 16df7502633..cfa41c5dfb5 100644
--- a/srcpkgs/python3-chromecast/template
+++ b/srcpkgs/python3-chromecast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chromecast'
 pkgname=python3-chromecast
 version=4.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychromecast-${version}"
 build_style=python3-module

From 9ff3e7dae7d0ebe28421538f18f150ecd58104e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 128/870] python-chroot: rebuild for Python 3.8.

---
 srcpkgs/python-chroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chroot/template b/srcpkgs/python-chroot/template
index 36853e9f2c0..7faa0f4cce9 100644
--- a/srcpkgs/python-chroot/template
+++ b/srcpkgs/python-chroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chroot'
 pkgname=python-chroot
 version=0.9.18
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychroot-${version}"
 build_style=python-module

From 8d2b57d7f0075beb9134ebd5f7e517ef8a7f20a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 129/870] python3-cli-ui: rebuild for Python 3.8.

---
 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 8303d44eed2..15a9bd32fce 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.9.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-cli-ui-${version}"
 build_style=python3-module

From ecf175e67cdb7bd1e27d29cc47a7e945a6660996 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 130/870] python3-cli_helpers: rebuild for Python 3.8.

---
 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 74b4abf2200..87b284e3cb5 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=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cli_helpers-${version}"
 build_style=python3-module

From aa87c50665110997328e9b80b9b6ba62c47f18bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 131/870] python-click: rebuild for Python 3.8.

---
 srcpkgs/python-click/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click/template b/srcpkgs/python-click/template
index 217e617e73e..4014cb66a83 100644
--- a/srcpkgs/python-click/template
+++ b/srcpkgs/python-click/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click'
 pkgname=python-click
 version=7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Click-${version}"
 build_style="python-module"

From cac08babb361a709a7b7a93c7a825b4682273115 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 132/870] python-click-log: rebuild for Python 3.8.

---
 srcpkgs/python-click-log/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-log/template b/srcpkgs/python-click-log/template
index 37b53f04af0..b57a7a74b4a 100644
--- a/srcpkgs/python-click-log/template
+++ b/srcpkgs/python-click-log/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-log'
 pkgname=python-click-log
 version=0.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-log-${version}"
 build_style="python-module"

From 5a0f06ded0599ac889d808c93865db1723b2ed95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 133/870] python3-click-plugins: rebuild for Python 3.8.

---
 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 cee484018d1..0ef6ce6b248 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=1
+revision=2
 archs=noarch
 wrksrc="click-plugins-${version}"
 build_style=python3-module

From cf104fe4106995307daeb70eb8d34554c238b5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 134/870] python-click-threading: rebuild for Python 3.8.

---
 srcpkgs/python-click-threading/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-threading/template b/srcpkgs/python-click-threading/template
index 76125224992..49b4a4a9aae 100644
--- a/srcpkgs/python-click-threading/template
+++ b/srcpkgs/python-click-threading/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-threading'
 pkgname=python-click-threading
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-threading-${version}"
 build_style="python-module"

From 4bcf653af73bc8e5a6492eee92e5d2826a779d38 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 135/870] python3-cmdln: rebuild for Python 3.8.

---
 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 f00c9a63908..2b7e21f3980 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=1
+revision=2
 archs=noarch
 wrksrc="cmdln-${version}"
 build_style=python3-module

From 52e9257d3be602d0748918c1440a3eae0b6baa51 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 136/870] python-codespell: rebuild for Python 3.8.

---
 srcpkgs/python-codespell/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-codespell/template b/srcpkgs/python-codespell/template
index 92134285a58..211626f33d7 100644
--- a/srcpkgs/python-codespell/template
+++ b/srcpkgs/python-codespell/template
@@ -1,7 +1,7 @@
 # Template file for 'python-codespell'
 pkgname=python-codespell
 version=1.14.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="codespell-${version}"
 build_style=python-module

From 65299f402e3d3a2991e33defee28d85043e0b40f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 137/870] python-colorama: rebuild for Python 3.8.

---
 srcpkgs/python-colorama/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-colorama/template b/srcpkgs/python-colorama/template
index 98ea0d3be78..09562385243 100644
--- a/srcpkgs/python-colorama/template
+++ b/srcpkgs/python-colorama/template
@@ -1,7 +1,7 @@
 # Template file for 'python-colorama'
 pkgname=python-colorama
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="colorama-${version}"
 build_style=python-module

From ec6a8fb7b9e3330e2d7f3fbe139c7a3742013bd8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 138/870] python3-colorclass: rebuild for Python 3.8.

---
 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 4a80f379206..ed8d2d2ea02 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=1
+revision=2
 archs=noarch
 wrksrc="colorclass-${version}"
 build_style=python3-module

From 4b254d3097fa01cb641af24639c6b9a230345954 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 139/870] python-configobj: rebuild for Python 3.8.

---
 srcpkgs/python-configobj/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-configobj/template b/srcpkgs/python-configobj/template
index 95f30d4631a..a8cb5d5d34e 100644
--- a/srcpkgs/python-configobj/template
+++ b/srcpkgs/python-configobj/template
@@ -1,7 +1,7 @@
 # Template file for 'python-configobj'
 pkgname=python-configobj
 version=5.0.6
-revision=5
+revision=6
 archs=noarch
 wrksrc="configobj-${version}"
 build_style=python-module

From 530a6b84ff81274981ed1aa92a2ff85a78dc9775 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 140/870] python-constantly: rebuild for Python 3.8.

---
 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 b5530908ac4..9160aec9edd 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=2
+revision=3
 archs=noarch
 wrksrc="constantly-${version}"
 build_style=python-module

From d2c0a853f5cd6634cca304f7db191fcb1d9a6afa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 141/870] python-construct: rebuild for Python 3.8.

---
 srcpkgs/python-construct/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-construct/template b/srcpkgs/python-construct/template
index 2afe435652c..d6d0b8010e2 100644
--- a/srcpkgs/python-construct/template
+++ b/srcpkgs/python-construct/template
@@ -1,7 +1,7 @@
 # Template file for 'python-construct'
 pkgname=python-construct
 version=2.9.45
-revision=2
+revision=3
 archs=noarch
 wrksrc="construct-${version}"
 build_style=python-module

From 9ba618aa4a4db0062002fcb1ad540bee9b702ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 142/870] python-coverage: rebuild for Python 3.8.

---
 srcpkgs/python-coverage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-coverage/template b/srcpkgs/python-coverage/template
index df6064b9879..1c44b5e18fb 100644
--- a/srcpkgs/python-coverage/template
+++ b/srcpkgs/python-coverage/template
@@ -1,7 +1,7 @@
 # Template file for 'python-coverage'
 pkgname=python-coverage
 version=4.5.4
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="coverage"

From 9adf4621a4960d8a331e1b723971cb326ad2429f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 143/870] python-cram: rebuild for Python 3.8.

---
 srcpkgs/python-cram/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cram/template b/srcpkgs/python-cram/template
index f1fce32149f..8c5d65fe260 100644
--- a/srcpkgs/python-cram/template
+++ b/srcpkgs/python-cram/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cram'
 pkgname=python-cram
 version=0.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="cram-${version}"
 build_style=python-module

From 47ef41a3931be5da08ee8d6fb0ff35b5e1a95d62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 144/870] python3-crcmod: rebuild for Python 3.8.

---
 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 4cd433d2420..9311dedc8ac 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=1
+revision=2
 wrksrc="crcmod-${version}"
 build_style=python3-module
 pycompile_module="crcmod"

From 8b8750f3919e1f23aa6930671f096a365391611a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 145/870] python-cryptography: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography/template b/srcpkgs/python-cryptography/template
index ce3184715dd..39e63d22f7d 100644
--- a/srcpkgs/python-cryptography/template
+++ b/srcpkgs/python-cryptography/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography'
 pkgname=python-cryptography
 version=2.7
-revision=1
+revision=2
 wrksrc="cryptography-${version}"
 build_style=python-module
 pycompile_module="cryptography"

From 676ecf3ea008b8ccabdd3d2798c449a061abb9dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 146/870] python-cryptography_vectors: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography_vectors/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography_vectors/template b/srcpkgs/python-cryptography_vectors/template
index d52e5f5e47c..8fba3a0ce27 100644
--- a/srcpkgs/python-cryptography_vectors/template
+++ b/srcpkgs/python-cryptography_vectors/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography_vectors'
 pkgname=python-cryptography_vectors
 version=2.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="cryptography_vectors-${version}"
 build_style=python-module

From b78a89dedf3b15094ae7febdff460a2cbf547464 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 147/870] python-css-parser: rebuild for Python 3.8.

---
 srcpkgs/python-css-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-css-parser/template b/srcpkgs/python-css-parser/template
index e90b103e4a0..f6d2d0cbf8b 100644
--- a/srcpkgs/python-css-parser/template
+++ b/srcpkgs/python-css-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-css-parser'
 pkgname=python-css-parser
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="css-parser-${version}"
 build_style=python-module

From 036f8b87a68dcb362c7037f58abcffb763571601 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 148/870] python-cssselect: rebuild for Python 3.8.

---
 srcpkgs/python-cssselect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssselect/template b/srcpkgs/python-cssselect/template
index d7dbcebc0ea..c7f43ebca9f 100644
--- a/srcpkgs/python-cssselect/template
+++ b/srcpkgs/python-cssselect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssselect'
 pkgname=python-cssselect
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d4b52974f5f9e8a86060d3dfccc041298c1d666 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 149/870] python-cssutils: rebuild for Python 3.8.

---
 srcpkgs/python-cssutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssutils/template b/srcpkgs/python-cssutils/template
index 648c4754c22..5f08903b9a0 100644
--- a/srcpkgs/python-cssutils/template
+++ b/srcpkgs/python-cssutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssutils'
 pkgname=python-cssutils
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="cssutils-${version}"
 build_style=python-module

From bfb2835290dfefddc0781e2b463d410bf121efa5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 150/870] python-cups: rebuild for Python 3.8.

---
 srcpkgs/python-cups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cups/template b/srcpkgs/python-cups/template
index 2c26e9ef3d0..62c384c9db8 100644
--- a/srcpkgs/python-cups/template
+++ b/srcpkgs/python-cups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cups'
 pkgname=python-cups
 version=1.9.74
-revision=2
+revision=3
 wrksrc="pycups-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 32daac09af71a30483e9985028381670b4ab6245 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 151/870] system-config-printer: rebuild for Python 3.8.

---
 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 e8f8eca46ae..04fe74ff808 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.11
-revision=5
+revision=6
 build_style=gnu-configure
 configure_args="--with-udev-rules"
 make_build_args="udevhelperdir=/usr/lib/udev"

From 582813b2756ce1d1d397113a752b81189680c001 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 152/870] python-curl: rebuild for Python 3.8.

---
 srcpkgs/python-curl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curl/template b/srcpkgs/python-curl/template
index f1f9051d53a..685c63ce68a 100644
--- a/srcpkgs/python-curl/template
+++ b/srcpkgs/python-curl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curl'
 pkgname=python-curl
 version=7.43.0.3
-revision=4
+revision=5
 wrksrc="pycurl-${version}"
 build_style=python-module
 pycompile_module="curl"

From 0eda981910702bfaac2a8af2041fe2c534c13618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 153/870] python-curtsies: rebuild for Python 3.8.

---
 srcpkgs/python-curtsies/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curtsies/template b/srcpkgs/python-curtsies/template
index 158d1c5ce76..6126a11e9b4 100644
--- a/srcpkgs/python-curtsies/template
+++ b/srcpkgs/python-curtsies/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curtsies'
 pkgname=python-curtsies
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="curtsies-${version}"
 build_style=python-module

From 7db16365daaa931d774701441c01b698be457cb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 154/870] python-cycler: rebuild for Python 3.8.

---
 srcpkgs/python-cycler/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cycler/template b/srcpkgs/python-cycler/template
index ee6c985b288..0b53c195dae 100644
--- a/srcpkgs/python-cycler/template
+++ b/srcpkgs/python-cycler/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cycler'
 pkgname=python-cycler
 version=0.10.0
-revision=4
+revision=5
 archs=noarch
 wrksrc="cycler-${version}"
 build_style=python-module

From 2c59e6772ee31b855fe302a27b9b9544cd865e6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 155/870] python-daemonize: rebuild for Python 3.8.

---
 srcpkgs/python-daemonize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-daemonize/template b/srcpkgs/python-daemonize/template
index 699a156b26b..efaf163e573 100644
--- a/srcpkgs/python-daemonize/template
+++ b/srcpkgs/python-daemonize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-daemonize'
 pkgname=python-daemonize
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="daemonize-${version}"
 build_style=python-module

From 84cc63fece0763c8b6920e56e78508551e0fc727 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 156/870] python-dateutil: rebuild for Python 3.8.

---
 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 d9c0f73c883..7675b8f9447 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.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="dateutil"

From 9a19173186ae564f17114f530ac8077484d43c82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 157/870] python-dbus: rebuild for Python 3.8.

---
 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 869c10b2969..3845f6ce34a 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.12
-revision=1
+revision=2
 wrksrc="dbus-python-${version}"
 build_style=gnu-configure
 pycompile_module="dbus"

From 06a9a5b6965485369e669181d99123d7beabf81f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 158/870] python3-dbusmock: rebuild for Python 3.8.

---
 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 67e0ed68078..4abd47843cc 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.18.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-dbusmock-${version}"
 build_style=python3-module

From 694c57d69d63d9f59bef9d31d20a0b16dc73a2a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 159/870] python-decorator: rebuild for Python 3.8.

---
 srcpkgs/python-decorator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-decorator/template b/srcpkgs/python-decorator/template
index 14090c537c9..7f14fef90a6 100644
--- a/srcpkgs/python-decorator/template
+++ b/srcpkgs/python-decorator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-decorator'
 pkgname=python-decorator
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="decorator-${version}"
 build_style=python-module

From 3bd4b100eb970e16e93bbbed8ce2ac91a36e3df5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 160/870] python-defusedxml: rebuild for Python 3.8.

---
 srcpkgs/python-defusedxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-defusedxml/template b/srcpkgs/python-defusedxml/template
index afd62e94414..96234eb18c7 100644
--- a/srcpkgs/python-defusedxml/template
+++ b/srcpkgs/python-defusedxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-defusedxml'
 pkgname=python-defusedxml
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="defusedxml-${version}"
 build_style=python-module

From 442acbe58cd337c55658908f41ec5b6221ca8fcb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 161/870] python3-discid: rebuild for Python 3.8.

---
 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 be5eae1f07f..cc4bc27a1aa 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=1
+revision=2
 archs=noarch
 wrksrc="discid-${version}"
 build_style=python3-module

From 31db2101853fbced7b2655f48906b9054bce07ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 162/870] python-discogs_client: rebuild for Python 3.8.

---
 srcpkgs/python-discogs_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-discogs_client/template b/srcpkgs/python-discogs_client/template
index a27cc50f93c..5af18eda664 100644
--- a/srcpkgs/python-discogs_client/template
+++ b/srcpkgs/python-discogs_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-discogs_client'
 pkgname=python-discogs_client
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="discogs-client-${version}"
 build_style=python-module

From 0aba2b232148b832c27ebd8703c24f42c5018f15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 163/870] python3-distro: rebuild for Python 3.8.

---
 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 86e94572ed7..f1205ace151 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.4.0
-revision=1
+revision=2
 wrksrc=distro-${version}
 build_style=python3-module
 pycompile_module="distro"

From 990a3bd7cef20bd21b781caccd807a7cadf6a0fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 164/870] python-distutils-extra: rebuild for Python 3.8.

---
 srcpkgs/python-distutils-extra/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-distutils-extra/template b/srcpkgs/python-distutils-extra/template
index 9e5728ba08f..46bb0cccc31 100644
--- a/srcpkgs/python-distutils-extra/template
+++ b/srcpkgs/python-distutils-extra/template
@@ -1,7 +1,7 @@
 # Template file for 'python-distutils-extra'
 pkgname=python-distutils-extra
 version=2.39
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 pycompile_module="DistUtilsExtra"

From cc8c6f7c74e5660152cb87b99e7d7b88b5c3d077 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 165/870] python-dkimpy: rebuild for Python 3.8.

---
 srcpkgs/python-dkimpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dkimpy/template b/srcpkgs/python-dkimpy/template
index 4ca5ad386b0..1da26c5de5d 100644
--- a/srcpkgs/python-dkimpy/template
+++ b/srcpkgs/python-dkimpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dkimpy'
 pkgname=python-dkimpy
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="dkimpy-${version}"
 build_style=python-module

From 8560c730ee4396275d04f5b5649fc0b2a1a8819e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 166/870] python-dnspython: rebuild for Python 3.8.

---
 srcpkgs/python-dnspython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dnspython/template b/srcpkgs/python-dnspython/template
index 15d4d7a8a73..66d237e89ee 100644
--- a/srcpkgs/python-dnspython/template
+++ b/srcpkgs/python-dnspython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dnspython'
 pkgname=python-dnspython
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dnspython-${version}"
 build_style=python-module

From c723160d02d838faad8761fcdaa9cfaed2df756f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 167/870] python-docker: rebuild for Python 3.8.

---
 srcpkgs/python-docker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker/template b/srcpkgs/python-docker/template
index b3f8cb2076b..83265bbb606 100644
--- a/srcpkgs/python-docker/template
+++ b/srcpkgs/python-docker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker'
 pkgname=python-docker
 version=3.7.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-${version}"
 build_style=python-module

From 116d9592b10bcde7a5b2f78ed23e0c2e382394da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 168/870] python-docker-pycreds: rebuild for Python 3.8.

---
 srcpkgs/python-docker-pycreds/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker-pycreds/template b/srcpkgs/python-docker-pycreds/template
index c478ded9de6..2224be0d21d 100644
--- a/srcpkgs/python-docker-pycreds/template
+++ b/srcpkgs/python-docker-pycreds/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker-pycreds'
 pkgname=python-docker-pycreds
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-pycreds-${version}"
 build_style=python-module

From 339d2fc160bc67c015b61704b1ade0e15a729050 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 169/870] python-dockerpty: rebuild for Python 3.8.

---
 srcpkgs/python-dockerpty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dockerpty/template b/srcpkgs/python-dockerpty/template
index 78ba5bc3b09..4a0b3a7a33f 100644
--- a/srcpkgs/python-dockerpty/template
+++ b/srcpkgs/python-dockerpty/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dockerpty'
 pkgname=python-dockerpty
 version=0.4.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="dockerpty-${version}"
 build_style=python-module

From 9925e97e6e19313f6899b14640957a47c12c3c6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 170/870] python-docopt: rebuild for Python 3.8.

---
 srcpkgs/python-docopt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docopt/template b/srcpkgs/python-docopt/template
index 4b8661ed2e1..48e5f86c1e0 100644
--- a/srcpkgs/python-docopt/template
+++ b/srcpkgs/python-docopt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docopt'
 pkgname=python-docopt
 version=0.6.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="docopt-${version}"
 build_style=python-module

From b274270fc5a58198a59400d9c8eb825546cf64ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 171/870] python-docutils: rebuild for Python 3.8.

---
 srcpkgs/python-docutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docutils/template b/srcpkgs/python-docutils/template
index 62f080f416a..8fd21a7450b 100644
--- a/srcpkgs/python-docutils/template
+++ b/srcpkgs/python-docutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docutils'
 pkgname=python-docutils
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docutils-${version}"
 build_style=python-module

From 6db8d0a9fb5d7b1cd339f5102d86a29dda19f348 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 172/870] python-dogpile.cache: rebuild for Python 3.8.

---
 srcpkgs/python-dogpile.cache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index f6e106fb4e8..894c6f695bf 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dogpile.cache'
 pkgname=python-dogpile.cache
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dogpile.cache-${version}"
 build_style=python-module

From e603b2f5de239ac8c6e7b8322f560ed5249fe887 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 173/870] python-dominate: rebuild for Python 3.8.

---
 srcpkgs/python-dominate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dominate/template b/srcpkgs/python-dominate/template
index 14ec659bac8..6d6f2caa323 100644
--- a/srcpkgs/python-dominate/template
+++ b/srcpkgs/python-dominate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dominate'
 pkgname=python-dominate
 version=2.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dominate-${version}"
 build_style=python-module

From 2bd7c3e739559614758b25140591fa8bb623a73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 174/870] python-dulwich: rebuild for Python 3.8.

---
 srcpkgs/python-dulwich/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dulwich/template b/srcpkgs/python-dulwich/template
index 0bddda65069..7b8ac45011e 100644
--- a/srcpkgs/python-dulwich/template
+++ b/srcpkgs/python-dulwich/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dulwich'
 pkgname=python-dulwich
 version=0.19.13
-revision=1
+revision=2
 wrksrc="dulwich-${version}"
 build_style=python-module
 pycompile_module="dulwich"

From 9d0b79dad0746da7669be20a38791a7eff4a42dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 175/870] python3-easygui: rebuild for Python 3.8.

---
 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 c1ec4767ae9..a9a2f66d865 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="easygui-${version}"
 build_style=python3-module

From eaa3ee113511523004b2d78a2119becc627b2dcf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 176/870] python-ecdsa: rebuild for Python 3.8.

---
 srcpkgs/python-ecdsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ecdsa/template b/srcpkgs/python-ecdsa/template
index 5e0b217fa73..e6e7d58cd10 100644
--- a/srcpkgs/python-ecdsa/template
+++ b/srcpkgs/python-ecdsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ecdsa'
 pkgname=python-ecdsa
 version=0.13.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 5d7cb5b032b5814415f5b21646b09bceda211fd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 177/870] python-editor: rebuild for Python 3.8.

---
 srcpkgs/python-editor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-editor/template b/srcpkgs/python-editor/template
index 4b86afa6924..3594e407205 100644
--- a/srcpkgs/python-editor/template
+++ b/srcpkgs/python-editor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-editor'
 pkgname=python-editor
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="editor"

From 19c3e09b30ed3cf9c6ffee8cee652d54c672a599 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 178/870] python-efl: rebuild for Python 3.8.

---
 srcpkgs/python-efl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-efl/template b/srcpkgs/python-efl/template
index a49e7d35847..2096f6916da 100644
--- a/srcpkgs/python-efl/template
+++ b/srcpkgs/python-efl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-efl'
 pkgname=python-efl
 version=1.22.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="efl"
 hostmakedepends="pkg-config python-devel python3-devel"

From 82198e93fcca38bb8b5f4f754bcbd6fd7baf59da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 179/870] python3-eliot: rebuild for Python 3.8.

---
 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 15b05dd7331..8453789b688 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="eliot-${version}"
 build_style=python3-module

From bcfe6b0d9db4104d00cb6a16d6012f2258515d59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 180/870] python-empy: rebuild for Python 3.8.

---
 srcpkgs/python-empy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-empy/template b/srcpkgs/python-empy/template
index 97476250cf2..4668a9cc814 100644
--- a/srcpkgs/python-empy/template
+++ b/srcpkgs/python-empy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-empy'
 pkgname=python-empy
 version=3.3.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="empy-${version}"
 build_style=python-module

From 6a91fa7210bd83ced5963d69be69166cd7ad72e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 181/870] python-enchant: rebuild for Python 3.8.

---
 srcpkgs/python-enchant/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enchant/template b/srcpkgs/python-enchant/template
index a443877d821..e499957b47e 100644
--- a/srcpkgs/python-enchant/template
+++ b/srcpkgs/python-enchant/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enchant'
 pkgname=python-enchant
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python-module

From 6ec52886dc67e49d1440bf8d0d1fe8fab07df30a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 182/870] python-entrypoints: rebuild for Python 3.8.

---
 srcpkgs/python-entrypoints/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-entrypoints/template b/srcpkgs/python-entrypoints/template
index ebefb2d04dc..6070650f35d 100644
--- a/srcpkgs/python-entrypoints/template
+++ b/srcpkgs/python-entrypoints/template
@@ -1,7 +1,7 @@
 # Template file for 'python-entrypoints'
 pkgname=python-entrypoints
 version=0.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="entrypoints-${version}"
 build_style=python-module

From 612a78254c1f46db87994e41646495e245a3facf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 183/870] python-envdir: rebuild for Python 3.8.

---
 srcpkgs/python-envdir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-envdir/template b/srcpkgs/python-envdir/template
index 622fcee6b34..b8cccad60ac 100644
--- a/srcpkgs/python-envdir/template
+++ b/srcpkgs/python-envdir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-envdir'
 pkgname=python-envdir
 version=1.0.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 50f8488d9ea7d659590f7d09f42dd5b94e19152c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 184/870] python-enzyme: rebuild for Python 3.8.

---
 srcpkgs/python-enzyme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enzyme/template b/srcpkgs/python-enzyme/template
index 637c858195b..f28f40b0319 100644
--- a/srcpkgs/python-enzyme/template
+++ b/srcpkgs/python-enzyme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enzyme'
 pkgname=python-enzyme
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="enzyme-${version}"
 build_style=python-module

From 0927e611429f29f17290f1e10cf2c0b872d1feb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 185/870] python3-esprima: rebuild for Python 3.8.

---
 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 c3a564123de..aec8930a6bf 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=1
+revision=2
 wrksrc="esprima-${version}"
 build_style=python3-module
 pycompile_module="esprima"

From d10708d4fcebbbc7dccf424ca1a596b43ae8df59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 186/870] python-evdev: rebuild for Python 3.8.

---
 srcpkgs/python-evdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-evdev/template b/srcpkgs/python-evdev/template
index 3c1a5253513..cff10211628 100644
--- a/srcpkgs/python-evdev/template
+++ b/srcpkgs/python-evdev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-evdev'
 pkgname=python-evdev
 version=1.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="evdev"
 hostmakedepends="python-setuptools python3-setuptools"

From d4f74f5bad705da704a6773a834e3939d7700c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 187/870] python-ewmh: rebuild for Python 3.8.

---
 srcpkgs/python-ewmh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ewmh/template b/srcpkgs/python-ewmh/template
index be6d04316b0..a96490fb56d 100644
--- a/srcpkgs/python-ewmh/template
+++ b/srcpkgs/python-ewmh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ewmh'
 pkgname=python-ewmh
 version=0.1.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From afbcc47e23517b6d56ec485dc40f389c1af31701 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 188/870] python-exifread: rebuild for Python 3.8.

---
 srcpkgs/python-exifread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-exifread/template b/srcpkgs/python-exifread/template
index 853f885fff8..834aa7730ee 100644
--- a/srcpkgs/python-exifread/template
+++ b/srcpkgs/python-exifread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-exifread'
 pkgname=python-exifread
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="exif-py-${version}"
 build_style="python-module"

From d05fad06fa4306ef7f685f49a366fcc27e64a40c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 189/870] python-fasteners: rebuild for Python 3.8.

---
 srcpkgs/python-fasteners/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fasteners/template b/srcpkgs/python-fasteners/template
index 34ca4e0e9db..24d2ec0611f 100644
--- a/srcpkgs/python-fasteners/template
+++ b/srcpkgs/python-fasteners/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fasteners'
 pkgname=python-fasteners
 version=0.15
-revision=1
+revision=2
 archs=noarch
 wrksrc="fasteners-${version}"
 build_style=python-module

From 8c663b7a9f12675a94dea8c33eddeededd3c56bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 190/870] python-feedgenerator: rebuild for Python 3.8.

---
 srcpkgs/python-feedgenerator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedgenerator/template b/srcpkgs/python-feedgenerator/template
index 3e5abc4f433..bcffb6728aa 100644
--- a/srcpkgs/python-feedgenerator/template
+++ b/srcpkgs/python-feedgenerator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedgenerator'
 pkgname=python-feedgenerator
 version=1.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="feedgenerator-${version}"
 build_style=python-module

From ab9e5bccaa31f32d93549c21e47bc12c4e5ac181 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 191/870] python-feedparser: rebuild for Python 3.8.

---
 srcpkgs/python-feedparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedparser/template b/srcpkgs/python-feedparser/template
index c5c5e8783eb..94f0a58ec88 100644
--- a/srcpkgs/python-feedparser/template
+++ b/srcpkgs/python-feedparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedparser'
 pkgname=python-feedparser
 version=5.2.1
-revision=5
+revision=6
 archs=noarch
 wrksrc="feedparser-${version}"
 build_style=python-module

From 157719696415e499518e188417324c7d97359d36 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 192/870] python3-fido2: rebuild for Python 3.8.

---
 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 fafb4d61d56..fb737d68d20 100644
--- a/srcpkgs/python3-fido2/template
+++ b/srcpkgs/python3-fido2/template
@@ -2,7 +2,7 @@
 pkgname=python3-fido2
 _pkgname=fido2
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From cbab3fd166f79dc7d2659a802e1953c697f94a95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 193/870] python3-filelock: rebuild for Python 3.8.

---
 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 8e0bc8f1070..9105ff8689d 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.0.12
-revision=1
+revision=2
 wrksrc="filelock-${version}"
 build_style=python3-module
 pycompile_module="filelock.py"

From df9deb02719807bdcb49f7c41040cd8748efd6fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 194/870] python-filetype: rebuild for Python 3.8.

---
 srcpkgs/python-filetype/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-filetype/template b/srcpkgs/python-filetype/template
index 37896cff9d8..10b974794b5 100644
--- a/srcpkgs/python-filetype/template
+++ b/srcpkgs/python-filetype/template
@@ -1,7 +1,7 @@
 # Template file for 'python-filetype'
 pkgname=python-filetype
 version=1.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="filetype-${version}"
 build_style=python-module

From b71ed5528581f9bba57653ff2acb45edf6dcbd81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 195/870] python3-fishnet: rebuild for Python 3.8.

---
 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 9dde60cbb6c..6280ae8e966 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=1
+revision=2
 archs=noarch
 wrksrc="fishnet-${version}"
 build_style=python3-module

From 25bc415f7d96b99e98c97ab0abad6a531786f9e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 196/870] python-flaky: rebuild for Python 3.8.

---
 srcpkgs/python-flaky/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-flaky/template b/srcpkgs/python-flaky/template
index d5211c9cb60..e8e681421f7 100644
--- a/srcpkgs/python-flaky/template
+++ b/srcpkgs/python-flaky/template
@@ -1,7 +1,7 @@
 # Template file for 'python-flaky'
 pkgname=python-flaky
 version=3.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 6dfa18d602ed8d6414a040466c4e0eef4db1d0d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 197/870] python3-flexmock: rebuild for Python 3.8.

---
 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 0663ed5122d..8a7c9a2894d 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.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="flexmock-${version}"
 build_style=python3-module

From 8c90b86b18b06e68260df59166a7228f7af5e5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 198/870] python3-fonttools: rebuild for Python 3.8.

---
 srcpkgs/python3-fonttools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-fonttools/template b/srcpkgs/python3-fonttools/template
index 15cf36585fb..ccd4b66c5d8 100644
--- a/srcpkgs/python3-fonttools/template
+++ b/srcpkgs/python3-fonttools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-fonttools'
 pkgname=python3-fonttools
 version=4.0.2
-revision=1
+revision=2
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 pycompile_module="fonttools"

From 423903ec28541ea1cd89f97400529121dca5e065 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 199/870] python3-frozendict: rebuild for Python 3.8.

---
 srcpkgs/python3-frozendict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-frozendict/template b/srcpkgs/python3-frozendict/template
index d3b4dc91602..739000a887c 100644
--- a/srcpkgs/python3-frozendict/template
+++ b/srcpkgs/python3-frozendict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-frozendict'
 pkgname=python3-frozendict
 version=1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="frozendict-${version}"
 build_style=python3-module

From 0929953d079922e685a9b46372630d69c2c6776d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 200/870] python-fuse: rebuild for Python 3.8.

---
 srcpkgs/python-fuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fuse/template b/srcpkgs/python-fuse/template
index 6449cc36a02..2e99e9866d3 100644
--- a/srcpkgs/python-fuse/template
+++ b/srcpkgs/python-fuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fuse'
 pkgname=python-fuse
 version=0.3.1
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="fuseparts fuse.py"
 hostmakedepends="pkg-config python-setuptools python3-setuptools"

From 505bca67544c8cca26d3f7675eb746bb98abf44e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 201/870] python-future: rebuild for Python 3.8.

---
 srcpkgs/python-future/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-future/template b/srcpkgs/python-future/template
index 1844be2efbc..6cd53908823 100644
--- a/srcpkgs/python-future/template
+++ b/srcpkgs/python-future/template
@@ -1,7 +1,7 @@
 # Template file for 'python-future'
 pkgname=python-future
 version=0.17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="future-${version}"
 build_style=python-module

From 4b595c01c8dcf28a72cf0a96960609ab9788b6ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 202/870] python3-geojson: rebuild for Python 3.8.

---
 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 6bcd0c3092e..90e7d5a0e60 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=1
+revision=2
 archs=noarch
 wrksrc="geojson-${version}"
 build_style=python3-module

From 5e44d64f54a2983f4d5fefba49ef65a6803bd024 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 203/870] python-gevent: rebuild for Python 3.8.

---
 srcpkgs/python-gevent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gevent/template b/srcpkgs/python-gevent/template
index 2bbabee00fc..35c76146d56 100644
--- a/srcpkgs/python-gevent/template
+++ b/srcpkgs/python-gevent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gevent'
 pkgname=python-gevent
 version=1.4.0
-revision=1
+revision=2
 wrksrc="gevent-${version}"
 build_style=python-module
 pycompile_module="gevent"

From 5fed10c6460512a1f1391f079ed47645f9df532e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 204/870] python3-gitchangelog: rebuild for Python 3.8.

---
 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 ed381e07d78..cc1945f2623 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=1
+revision=2
 archs=noarch
 wrksrc="gitchangelog-${version}"
 build_style=python3-module

From b52557ed164619919a05cdf8fae5e77e5b4f53db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 205/870] python-gitdb: rebuild for Python 3.8.

---
 srcpkgs/python-gitdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitdb/template b/srcpkgs/python-gitdb/template
index d9e624b9f53..253ddaa07bd 100644
--- a/srcpkgs/python-gitdb/template
+++ b/srcpkgs/python-gitdb/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitdb'
 pkgname=python-gitdb
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="gitdb2-${version}"
 build_style=python-module

From 53365dcec4eb25138ea4bb248d57c1b2aa7aa311 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 206/870] python-github3: rebuild for Python 3.8.

---
 srcpkgs/python-github3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-github3/template b/srcpkgs/python-github3/template
index 2cb71368f3d..425fe1b7362 100644
--- a/srcpkgs/python-github3/template
+++ b/srcpkgs/python-github3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-github3'
 pkgname=python-github3
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="github3.py-${version}"
 build_style=python-module

From 2b4c90de9a0cbcbb5902a9407f229864bd81a7f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 207/870] python-gitlab: rebuild for Python 3.8.

---
 srcpkgs/python-gitlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitlab/template b/srcpkgs/python-gitlab/template
index 7db583b54c4..0f71b4c7153 100644
--- a/srcpkgs/python-gitlab/template
+++ b/srcpkgs/python-gitlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitlab'
 pkgname=python-gitlab
 version=1.12.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gitlab"

From 51613301779bb891e87daba6b634dca18654d29f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 208/870] python-gmpy2: rebuild for Python 3.8.

---
 srcpkgs/python-gmpy2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gmpy2/template b/srcpkgs/python-gmpy2/template
index c41a9f4595b..74e9b583288 100644
--- a/srcpkgs/python-gmpy2/template
+++ b/srcpkgs/python-gmpy2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gmpy2'
 pkgname=python-gmpy2
 version=2.0.8
-revision=5
+revision=6
 wrksrc="gmpy2-${version}"
 build_style=python-module
 hostmakedepends="unzip python-setuptools python3-setuptools

From a6f4b9ed74b787b741e6297520186bd60de2b46e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 209/870] python-gntp: rebuild for Python 3.8.

---
 srcpkgs/python-gntp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gntp/template b/srcpkgs/python-gntp/template
index 14bd36518f8..7b3bb5a7bb7 100644
--- a/srcpkgs/python-gntp/template
+++ b/srcpkgs/python-gntp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gntp'
 pkgname=python-gntp
 version=1.0.3
-revision=4
+revision=5
 archs=noarch
 wrksrc="gntp-${version}"
 build_style=python-module

From 0730dc20e341ef5247184f85a47f2d1200750698 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 210/870] python-gnupg: rebuild for Python 3.8.

---
 srcpkgs/python-gnupg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gnupg/template b/srcpkgs/python-gnupg/template
index ae6f49c7e27..24c0943d1e4 100644
--- a/srcpkgs/python-gnupg/template
+++ b/srcpkgs/python-gnupg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gnupg'
 pkgname=python-gnupg
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gnupg.py"

From 2c78f38b921da1d4ac2ddf5c200a378cadd75590 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 211/870] python3-gobject: rebuild for Python 3.8.

---
 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 242d33ed3ac..8713ddf5334 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.32.2
-revision=1
+revision=2
 wrksrc="pygobject-${version}"
 build_style=meson
 build_helper="gir"

From 15ed888e45d37128f9852cfc492a14182186f1a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 212/870] python-gogs-client: rebuild for Python 3.8.

---
 srcpkgs/python-gogs-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gogs-client/template b/srcpkgs/python-gogs-client/template
index e8189bc8805..027135d430c 100644
--- a/srcpkgs/python-gogs-client/template
+++ b/srcpkgs/python-gogs-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gogs-client'
 pkgname=python-gogs-client
 version=1.0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="gogs_client-${version}"
 build_style=python-module

From 1ce661eb8f15d8e6d56a3f1e197897c332fa224e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 213/870] python-google-api-python-client: rebuild for Python
 3.8.

---
 srcpkgs/python-google-api-python-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-api-python-client/template b/srcpkgs/python-google-api-python-client/template
index 273cd0722b8..69c2d4e96eb 100644
--- a/srcpkgs/python-google-api-python-client/template
+++ b/srcpkgs/python-google-api-python-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-api-python-client'
 pkgname=python-google-api-python-client
 version=1.7.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From abc55893b0e34778f73646713ec111220a9cafbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 214/870] python-google-auth: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth/template b/srcpkgs/python-google-auth/template
index 708fe08325a..1de6800e3d2 100644
--- a/srcpkgs/python-google-auth/template
+++ b/srcpkgs/python-google-auth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth'
 pkgname=python-google-auth
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 345385c7c36d4b9e58aad80d36b1cd93575ecd95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 215/870] python-google-auth-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth-httplib2/template b/srcpkgs/python-google-auth-httplib2/template
index 9a7fd093ce5..9e43bc92292 100644
--- a/srcpkgs/python-google-auth-httplib2/template
+++ b/srcpkgs/python-google-auth-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth-httplib2'
 pkgname=python-google-auth-httplib2
 version=0.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 659bb740f4ecc98b01dc400608f6b524416a0b86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 216/870] python-gpg: rebuild for Python 3.8.

---
 srcpkgs/python-gpg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gpg/template b/srcpkgs/python-gpg/template
index 4ef85846b42..a17a0324af8 100644
--- a/srcpkgs/python-gpg/template
+++ b/srcpkgs/python-gpg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gpg'
 pkgname=python-gpg
 version=1.10.0
-revision=3
+revision=4
 wrksrc="gpg-${version}"
 build_style=python-module
 hostmakedepends="swig gpgme-devel python-devel python3-devel"

From 873dc5b9b60d819c83e9d76fd366d7e22b1e3bc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 217/870] python-grako: rebuild for Python 3.8.

---
 srcpkgs/python-grako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-grako/template b/srcpkgs/python-grako/template
index cc02973b31e..2b401732735 100644
--- a/srcpkgs/python-grako/template
+++ b/srcpkgs/python-grako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-grako'
 pkgname=python-grako
 version=3.99.9
-revision=3
+revision=4
 wrksrc="neogeny-${pkgname/python-/}-275d3c4fe4ac"
 build_style=python-module
 pycompile_module="grako"

From d47059d2656db0b58c65856428cabac0432d40b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 218/870] python-graphviz: rebuild for Python 3.8.

---
 srcpkgs/python-graphviz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-graphviz/template b/srcpkgs/python-graphviz/template
index 521f2e81213..e3d487a2db7 100644
--- a/srcpkgs/python-graphviz/template
+++ b/srcpkgs/python-graphviz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-graphviz'
 pkgname=python-graphviz
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 604137947acf2b7cd302f3f32e778c96a0f521f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 219/870] python-greenlet: rebuild for Python 3.8.

---
 srcpkgs/python-greenlet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-greenlet/template b/srcpkgs/python-greenlet/template
index d1e63ac7adb..b540e9a286b 100644
--- a/srcpkgs/python-greenlet/template
+++ b/srcpkgs/python-greenlet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-greenlet'
 pkgname=python-greenlet
 version=0.4.15
-revision=2
+revision=3
 wrksrc="greenlet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From c75b3ed338515fef098deb3e5b0d7a6afb7e4027 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 220/870] python-guessit: rebuild for Python 3.8.

---
 srcpkgs/python-guessit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-guessit/template b/srcpkgs/python-guessit/template
index 5029048a041..a962f14522f 100644
--- a/srcpkgs/python-guessit/template
+++ b/srcpkgs/python-guessit/template
@@ -1,7 +1,7 @@
 # Template file for 'python-guessit'
 pkgname=python-guessit
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="guessit-${version}"
 build_style=python-module

From be7acc08bc4f5ffb222fcebc23a391553273ece1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 221/870] python-h11: rebuild for Python 3.8.

---
 srcpkgs/python-h11/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-h11/template b/srcpkgs/python-h11/template
index 88040dfadec..b2e007533a7 100644
--- a/srcpkgs/python-h11/template
+++ b/srcpkgs/python-h11/template
@@ -1,7 +1,7 @@
 # Template file for 'python-h11'
 pkgname=python-h11
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=h11-${version}
 build_style=python-module

From bdf55bd416f8bc2ed44be6c4c54d162c18a8ea97 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 222/870] python-habanero: rebuild for Python 3.8.

---
 srcpkgs/python-habanero/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-habanero/template b/srcpkgs/python-habanero/template
index 86d66befc3d..a914f21ecb7 100644
--- a/srcpkgs/python-habanero/template
+++ b/srcpkgs/python-habanero/template
@@ -1,7 +1,7 @@
 # Template file for 'python-habanero'
 pkgname=python-habanero
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="habanero-${version}"
 build_style=python-module

From 9c07301e6c8b8cbc8282f2c49eee7ea5572650fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 223/870] python3-hawkauthlib: rebuild for Python 3.8.

---
 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 fd7f1405790..1456fa7d814 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=2
+revision=3
 archs=noarch
 wrksrc="hawkauthlib-${version}"
 build_style=python3-module

From 66941ef99dc3f45dea432a38889d9aedcbc58e8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 224/870] python-hiredis: rebuild for Python 3.8.

---
 srcpkgs/python-hiredis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hiredis/template b/srcpkgs/python-hiredis/template
index 23694ae92d7..82a97d5eaf3 100644
--- a/srcpkgs/python-hiredis/template
+++ b/srcpkgs/python-hiredis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hiredis'
 pkgname=python-hiredis
 version=0.2.0
-revision=4
+revision=5
 wrksrc="hiredis-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 335237d6c8ffbf9d850fddc0047cb4ea28057efd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 225/870] python3-hkdf: rebuild for Python 3.8.

---
 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 fabc91ee974..0faaf05b5fe 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=1
+revision=2
 archs=noarch
 wrksrc="hkdf-${version}"
 build_style=python3-module

From fa28e1e2a5b4f298ee9762f0f595a5b1b16db0c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 226/870] python-hoedown: rebuild for Python 3.8.

---
 srcpkgs/python-hoedown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hoedown/template b/srcpkgs/python-hoedown/template
index a964fbbb709..4b82aba9afc 100644
--- a/srcpkgs/python-hoedown/template
+++ b/srcpkgs/python-hoedown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hoedown'
 pkgname=python-hoedown
 version=0.3.0
-revision=2
+revision=3
 wrksrc="hoedown-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 1b9ab7e23ce8f84563cdaac18cbe35d6b5b377eb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 227/870] python-hpack: rebuild for Python 3.8.

---
 srcpkgs/python-hpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hpack/template b/srcpkgs/python-hpack/template
index c69e91daa0e..ffbac313103 100644
--- a/srcpkgs/python-hpack/template
+++ b/srcpkgs/python-hpack/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hpack'
 pkgname=python-hpack
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hpack-${version}
 build_style=python-module

From b6095882129bc28d1a3eec0f996353011126ed10 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 228/870] python3-html2text: rebuild for Python 3.8.

---
 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 006f2a127ad..c74e236a053 100644
--- a/srcpkgs/python3-html2text/template
+++ b/srcpkgs/python3-html2text/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-html2text'
 pkgname=python3-html2text
 version=2019.9.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module

From 78741dc5f018f23c93acabc2cdd16c97d5e08012 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 229/870] python-html5-parser: rebuild for Python 3.8.

---
 srcpkgs/python-html5-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5-parser/template b/srcpkgs/python-html5-parser/template
index 130c5037e57..41bbd0ea157 100644
--- a/srcpkgs/python-html5-parser/template
+++ b/srcpkgs/python-html5-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5-parser'
 pkgname=python-html5-parser
 version=0.4.8
-revision=1
+revision=2
 wrksrc="html5-parser-${version}"
 build_style=python-module
 pycompile_module="html5_parser"

From f69efbb44a9aa15f6b7468ff70a20786ec1a04d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 230/870] python-html5lib: rebuild for Python 3.8.

---
 srcpkgs/python-html5lib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5lib/template b/srcpkgs/python-html5lib/template
index 81e683f7bcf..2565de64fd2 100644
--- a/srcpkgs/python-html5lib/template
+++ b/srcpkgs/python-html5lib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5lib'
 pkgname=python-html5lib
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="html5lib-${version}"
 build_style=python-module

From 6bd979521876c876eea2022ebe023cdbb30777c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 231/870] python-httmock: rebuild for Python 3.8.

---
 srcpkgs/python-httmock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httmock/template b/srcpkgs/python-httmock/template
index 61a60126936..e798b4fc1b3 100644
--- a/srcpkgs/python-httmock/template
+++ b/srcpkgs/python-httmock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httmock'
 pkgname=python-httmock
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="httmock-${version}"
 build_style=python-module

From 7f5b2e5c5738ca5824c255406195ff59f30f2c80 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 232/870] python-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httplib2/template b/srcpkgs/python-httplib2/template
index edcb6abf0c1..fe76a729328 100644
--- a/srcpkgs/python-httplib2/template
+++ b/srcpkgs/python-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httplib2'
 pkgname=python-httplib2
 version=0.13.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="httplib2-${version}"
 build_style=python-module

From 9bd4d3d3c99054f61ceb650933dcd9c5740d5ff0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 233/870] python3-humanize: rebuild for Python 3.8.

---
 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 c82c20fb0f2..d1011fb92e9 100644
--- a/srcpkgs/python3-humanize/template
+++ b/srcpkgs/python3-humanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-humanize'
 pkgname=python3-humanize
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="humanize-${version}"
 build_style=python3-module

From ead6f9504cd4015bc13944d58d676ef457b0fb34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 234/870] python-hyper-h2: rebuild for Python 3.8.

---
 srcpkgs/python-hyper-h2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyper-h2/template b/srcpkgs/python-hyper-h2/template
index 5dcf7ed1c4d..9e5eee3b69b 100644
--- a/srcpkgs/python-hyper-h2/template
+++ b/srcpkgs/python-hyper-h2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyper-h2'
 pkgname=python-hyper-h2
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyper-h2-${version}"
 build_style=python-module

From 8ac54f95c067c3f715c23a58d7f2b6d0683988cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 235/870] python-hyperframe: rebuild for Python 3.8.

---
 srcpkgs/python-hyperframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyperframe/template b/srcpkgs/python-hyperframe/template
index e4cea346f7e..6b544c2061c 100644
--- a/srcpkgs/python-hyperframe/template
+++ b/srcpkgs/python-hyperframe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperframe'
 pkgname=python-hyperframe
 version=5.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hyperframe-${version}
 build_style=python-module

From cb929edb0d026e58d2d6c7e6f9baeee9fedf523e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 236/870] python-hyperlink: rebuild for Python 3.8.

---
 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 1cc7aa0670a..945bf72ee59 100644
--- a/srcpkgs/python-hyperlink/template
+++ b/srcpkgs/python-hyperlink/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperlink'
 pkgname=python-hyperlink
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyperlink-${version}"
 build_style=python-module

From da7a9015ccf93b07d390988b03b1403702cfa14a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 237/870] python-hypothesis: rebuild for Python 3.8.

---
 srcpkgs/python-hypothesis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hypothesis/template b/srcpkgs/python-hypothesis/template
index f3eb931e410..de55593fc02 100644
--- a/srcpkgs/python-hypothesis/template
+++ b/srcpkgs/python-hypothesis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hypothesis'
 pkgname=python-hypothesis
 version=4.38.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="hypothesis-hypothesis-python-${version}"
 build_wrksrc=hypothesis-python

From f091030376534d6a6f7c625b82a8405350e7cdcd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 238/870] python-icalendar: rebuild for Python 3.8.

---
 srcpkgs/python-icalendar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-icalendar/template b/srcpkgs/python-icalendar/template
index b2129648ea6..be45f2d608d 100644
--- a/srcpkgs/python-icalendar/template
+++ b/srcpkgs/python-icalendar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-icalendar'
 pkgname=python-icalendar
 version=4.0.3
-revision=1
+revision=2
 wrksrc="icalendar-${version}"
 archs=noarch
 build_style=python-module

From 474626af886f96ef30849e5aca015775f7edfb8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 239/870] icdiff: rebuild for Python 3.8.

---
 srcpkgs/icdiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template
index 31cfc3e2354..396448b86f4 100644
--- a/srcpkgs/icdiff/template
+++ b/srcpkgs/icdiff/template
@@ -1,7 +1,7 @@
 # Template file for 'icdiff'
 pkgname=icdiff
 version=1.9.5
-revision=1
+revision=2
 wrksrc="${pkgname}-release-${version}"
 archs=noarch
 build_style=python-module

From 21e5ba4fadd590c9e0dd7afde206429c99c46c56 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 240/870] python-idna: rebuild for Python 3.8.

---
 srcpkgs/python-idna/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-idna/template b/srcpkgs/python-idna/template
index 4c6baefd41b..446a04da7d7 100644
--- a/srcpkgs/python-idna/template
+++ b/srcpkgs/python-idna/template
@@ -1,7 +1,7 @@
 # Template file for 'python-idna'
 pkgname=python-idna
 version=2.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-${version}"
 build_style=python-module

From a012eff0de75e8caab0be24964731b749fe6ad8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 241/870] python3-idna-ssl: rebuild for Python 3.8.

---
 srcpkgs/python3-idna-ssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-idna-ssl/template b/srcpkgs/python3-idna-ssl/template
index df953f4d0d9..0608fb7278c 100644
--- a/srcpkgs/python3-idna-ssl/template
+++ b/srcpkgs/python3-idna-ssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-idna-ssl'
 pkgname=python3-idna-ssl
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-ssl-${version}"
 build_style=python3-module

From ac112b7dfc3aadb93225736a4504f7965af29838 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 242/870] python3-ifaddr: rebuild for Python 3.8.

---
 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 37bc2bbaf73..683d76662a3 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ifaddr-${version}"
 build_style=python3-module

From 32d0218ef7a7a721759e4c421d70255f49b3cfd0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 243/870] python-imagesize: rebuild for Python 3.8.

---
 srcpkgs/python-imagesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-imagesize/template b/srcpkgs/python-imagesize/template
index ee231eb9f24..f64c86812b5 100644
--- a/srcpkgs/python-imagesize/template
+++ b/srcpkgs/python-imagesize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-imagesize'
 pkgname=python-imagesize
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="imagesize-${version}"
 build_style=python-module

From f0bf351c50949a7348409d8c132926c401dabf43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 244/870] python3-importlib_metadata: rebuild for Python 3.8.

---
 srcpkgs/python3-importlib_metadata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-importlib_metadata/template b/srcpkgs/python3-importlib_metadata/template
index 9acbe968e10..f88e9d9b780 100644
--- a/srcpkgs/python3-importlib_metadata/template
+++ b/srcpkgs/python3-importlib_metadata/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-importlib_metadata'
 pkgname=python3-importlib_metadata
 version=0.23
-revision=1
+revision=2
 archs=noarch
 wrksrc="importlib_metadata-${version}"
 build_style=python3-module

From 73cc1c05e8e0ccf9063a33dd203d70df2ab135ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 245/870] python-incremental: rebuild for Python 3.8.

---
 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 a1c07042365..70477e26866 100644
--- a/srcpkgs/python-incremental/template
+++ b/srcpkgs/python-incremental/template
@@ -1,7 +1,7 @@
 # Template file for 'python-incremental'
 pkgname=python-incremental
 version=17.5.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="incremental-${version}"
 build_style=python-module

From 82a10b837fff5c5ce2f37ede93dad161025a109c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 246/870] python-inotify: rebuild for Python 3.8.

---
 srcpkgs/python-inotify/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-inotify/template b/srcpkgs/python-inotify/template
index f8e26bcc415..64e48fd9330 100644
--- a/srcpkgs/python-inotify/template
+++ b/srcpkgs/python-inotify/template
@@ -1,7 +1,7 @@
 # Template file for 'python-inotify'
 pkgname=python-inotify
 version=0.9.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="pyinotify-${version}"
 build_style=python-module

From 70f558982c4846e9de5243694f048c7014c7089a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 247/870] python-iptools: rebuild for Python 3.8.

---
 srcpkgs/python-iptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iptools/template b/srcpkgs/python-iptools/template
index 599a85ccdba..3c53013fb9d 100644
--- a/srcpkgs/python-iptools/template
+++ b/srcpkgs/python-iptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iptools'
 pkgname=python-iptools
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9962727fd608ce59af5a55c73c8b4c3d0c17fe71 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 248/870] python3-ipython: rebuild for Python 3.8.

---
 srcpkgs/python3-ipython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template
index 63242f382db..2c08bad1e41 100644
--- a/srcpkgs/python3-ipython/template
+++ b/srcpkgs/python3-ipython/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-ipython'
 pkgname=python3-ipython
 version=7.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipython-${version}"
 build_style=python3-module

From ecafa2b5530001ac56b03e639dff4ae00027d1ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 249/870] python-ipython_genutils: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_genutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_genutils/template b/srcpkgs/python-ipython_genutils/template
index 9af9604ca00..d46a3b0b716 100644
--- a/srcpkgs/python-ipython_genutils/template
+++ b/srcpkgs/python-ipython_genutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_genutils'
 pkgname=python-ipython_genutils
 version=0.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="ipython_genutils-${version}"
 build_style=python-module

From 1349d0a55b00bc5b30629934ad23ae1ed8839d98 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 250/870] python-ipython_ipykernel: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_ipykernel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_ipykernel/template b/srcpkgs/python-ipython_ipykernel/template
index 5ddc333798a..ca17b58c006 100644
--- a/srcpkgs/python-ipython_ipykernel/template
+++ b/srcpkgs/python-ipython_ipykernel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_ipykernel'
 pkgname=python-ipython_ipykernel
 version=4.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipykernel-${version}"
 build_style=python-module

From 1b146320a422b57ba1db41491ccff040d9ee719d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 251/870] python3-irc: rebuild for Python 3.8.

---
 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 eea3a629128..714c11dc943 100644
--- a/srcpkgs/python3-irc/template
+++ b/srcpkgs/python3-irc/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-irc'
 pkgname=python3-irc
 version=17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="irc-${version}"
 build_style=python3-module

From e04c4f250fda964ab555eb6b636f701d995009e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 252/870] python-isbnlib: rebuild for Python 3.8.

---
 srcpkgs/python-isbnlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isbnlib/template b/srcpkgs/python-isbnlib/template
index 3e2f66c6b66..1cc46a060d6 100644
--- a/srcpkgs/python-isbnlib/template
+++ b/srcpkgs/python-isbnlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isbnlib'
 pkgname=python-isbnlib
 version=3.9.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="isbnlib-${version}"
 build_style=python-module

From 2debe6131c52d94acd065961f9ea9ae22176a34c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 253/870] python-iso-8601: rebuild for Python 3.8.

---
 srcpkgs/python-iso-8601/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iso-8601/template b/srcpkgs/python-iso-8601/template
index a483e55b0bd..a841866d439 100644
--- a/srcpkgs/python-iso-8601/template
+++ b/srcpkgs/python-iso-8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iso-8601'
 pkgname=python-iso-8601
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="iso-8601-${version}"
 build_style=python-module

From 8b4be7b5324ac1347d55cc4f4e9eaa552465beec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 254/870] python-isodate: rebuild for Python 3.8.

---
 srcpkgs/python-isodate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isodate/template b/srcpkgs/python-isodate/template
index b2a7eb46591..74e4e813e64 100644
--- a/srcpkgs/python-isodate/template
+++ b/srcpkgs/python-isodate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isodate'
 pkgname=python-isodate
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="isodate-${version}"
 build_style=python-module

From a9c9e144908d37411616dd357e9fdc7575aaa8c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 255/870] python-isort: rebuild for Python 3.8.

---
 srcpkgs/python-isort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isort/template b/srcpkgs/python-isort/template
index df7fcfbf2d2..cd8e43b69ea 100644
--- a/srcpkgs/python-isort/template
+++ b/srcpkgs/python-isort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isort'
 pkgname=python-isort
 version=4.3.21
-revision=1
+revision=2
 archs=noarch
 wrksrc="isort-${version}"
 build_style=python-module

From a81f38d5db390cc4ae2c6be89747bebd3f1f15dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 256/870] python-itsdangerous: rebuild for Python 3.8.

---
 srcpkgs/python-itsdangerous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-itsdangerous/template b/srcpkgs/python-itsdangerous/template
index d1d9234df88..6e6fe5dcb2b 100644
--- a/srcpkgs/python-itsdangerous/template
+++ b/srcpkgs/python-itsdangerous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-itsdangerous'
 pkgname=python-itsdangerous
 version=0.24
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 2d842da30a2a65a2405487fdd5929ca2a0555251 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 257/870] python-iwlib: rebuild for Python 3.8.

---
 srcpkgs/python-iwlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iwlib/template b/srcpkgs/python-iwlib/template
index 2c58d4c8d29..2f4149b4e92 100644
--- a/srcpkgs/python-iwlib/template
+++ b/srcpkgs/python-iwlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iwlib'
 pkgname=python-iwlib
 version=1.6.2
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="iwlib"

From c09cc84b06cf4332a02b0a826494a74c81409175 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 258/870] python-jedi: rebuild for Python 3.8.

---
 srcpkgs/python-jedi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jedi/template b/srcpkgs/python-jedi/template
index 136e6adbea4..a994f0e2861 100644
--- a/srcpkgs/python-jedi/template
+++ b/srcpkgs/python-jedi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jedi'
 pkgname=python-jedi
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 _parsover=0.5.0
 wrksrc="jedi-${version}"

From 235b9031c126ebf53355a5ef0c337423c0df1d95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 259/870] python3-jeepney: rebuild for Python 3.8.

---
 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 2ae308a6fc6..9c5c007aa17 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.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="jeepney-${version}"
 build_style=python3-module

From 4868c0871bc763937dd6b8573e91ee86064e0595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 260/870] python3-jellyfish: rebuild for Python 3.8.

---
 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 dec74539e3f..5d0a614c397 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.7.2
-revision=1
+revision=2
 wrksrc="jellyfish-${version}"
 build_style=python3-module
 pycompile_module="jellyfish"

From a9c225f19782a27d8e5e28a508ea0acc39991390 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 261/870] python-jmespath: rebuild for Python 3.8.

---
 srcpkgs/python-jmespath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jmespath/template b/srcpkgs/python-jmespath/template
index 47508a3a0c2..220f1a33c07 100644
--- a/srcpkgs/python-jmespath/template
+++ b/srcpkgs/python-jmespath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jmespath'
 pkgname=python-jmespath
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jmespath.py-${version}"
 build_style=python-module

From 30e8e2e1619bdf45652db8c6ecdd0e0a4fc90d8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 262/870] python3-josepy: rebuild for Python 3.8.

---
 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 6d6e4547d38..903bd7028ed 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="josepy-${version}"
 build_style=python3-module

From c06d36cf857257f3cf63a7e677498487d37168d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 263/870] python-jsonpointer: rebuild for Python 3.8.

---
 srcpkgs/python-jsonpointer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonpointer/template b/srcpkgs/python-jsonpointer/template
index ed865fbfcba..fd103d123aa 100644
--- a/srcpkgs/python-jsonpointer/template
+++ b/srcpkgs/python-jsonpointer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonpointer'
 pkgname=python-jsonpointer
 version=2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonpointer-${version}"
 build_style=python-module

From be483d0bbf53a22e23a3c2db3d77dc61bff17915 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 264/870] python-jsonrpclib: rebuild for Python 3.8.

---
 srcpkgs/python-jsonrpclib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonrpclib/template b/srcpkgs/python-jsonrpclib/template
index 7253607fe57..a245168a824 100644
--- a/srcpkgs/python-jsonrpclib/template
+++ b/srcpkgs/python-jsonrpclib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonrpclib'
 pkgname=python-jsonrpclib
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonrpclib-pelix-${version}"
 build_style=python-module

From 15ad75adf989474229acc1fdac0c5d5887528bd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 265/870] python-jsonschema: rebuild for Python 3.8.

---
 srcpkgs/python-jsonschema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonschema/template b/srcpkgs/python-jsonschema/template
index 63c30ce6863..326b5609d36 100644
--- a/srcpkgs/python-jsonschema/template
+++ b/srcpkgs/python-jsonschema/template
@@ -2,7 +2,7 @@
 pkgname=python-jsonschema
 reverts="3.0.2_1"
 version=2.6.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="jsonschema-${version}"
 build_style=python-module

From 8bf3797435c040a1682d5e3e4c6c41f650d82b34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 266/870] python-jupyter_client: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_client/template b/srcpkgs/python-jupyter_client/template
index ab5cd0c5b3c..6365dd9e175 100644
--- a/srcpkgs/python-jupyter_client/template
+++ b/srcpkgs/python-jupyter_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_client'
 pkgname=python-jupyter_client
 version=5.2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_client-${version}"
 build_style=python-module

From e732ed651c399cb8d7e96a618444e815bf86ce4b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 267/870] python3-jupyter_console: rebuild for Python 3.8.

---
 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 25b2eda4c2f..3837e5b3bbf 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_console-${version}"
 build_style=python3-module

From b264bc5200c6942b1507777e0bc169838cb6a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 268/870] python-jupyter_core: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_core/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_core/template b/srcpkgs/python-jupyter_core/template
index fcce4e0fe0b..f1629208e86 100644
--- a/srcpkgs/python-jupyter_core/template
+++ b/srcpkgs/python-jupyter_core/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_core'
 pkgname=python-jupyter_core
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_core-${version}"
 build_style=python-module

From 54845c515258535f8793ff37241d0daad10fcddc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 269/870] python-jupyter_ipywidgets: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_ipywidgets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_ipywidgets/template b/srcpkgs/python-jupyter_ipywidgets/template
index 3d511a25152..44570cf390a 100644
--- a/srcpkgs/python-jupyter_ipywidgets/template
+++ b/srcpkgs/python-jupyter_ipywidgets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_ipywidgets'
 pkgname=python-jupyter_ipywidgets
 version=7.4.2
-revision=1
+revision=2
 archs=noarch
 _widgetsnbextver=3.4.0
 wrksrc="ipywidgets-${version}"

From da9dc8f246174d7b5fed1a61f1b4bb127c2bc9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 270/870] python-jupyter_nbconvert: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbconvert/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbconvert/template b/srcpkgs/python-jupyter_nbconvert/template
index 57ac5cce23f..e6cdad7d21c 100644
--- a/srcpkgs/python-jupyter_nbconvert/template
+++ b/srcpkgs/python-jupyter_nbconvert/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbconvert'
 pkgname=python-jupyter_nbconvert
 version=5.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="nbconvert-${version}"
 build_style=python-module

From 8e126f65404eaa5a5b69bca1aa41b4be58abe4b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 271/870] python-jupyter_nbformat: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbformat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbformat/template b/srcpkgs/python-jupyter_nbformat/template
index 11098fd3f90..e2addc8866f 100644
--- a/srcpkgs/python-jupyter_nbformat/template
+++ b/srcpkgs/python-jupyter_nbformat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbformat'
 pkgname=python-jupyter_nbformat
 version=4.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="nbformat-${version}"
 build_style=python-module

From 3d7a11f09a2f159b9e42c935154654a47117f3a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 272/870] python-jupyter_notebook: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_notebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_notebook/template b/srcpkgs/python-jupyter_notebook/template
index c3f478c1fb4..4f6de0f642d 100644
--- a/srcpkgs/python-jupyter_notebook/template
+++ b/srcpkgs/python-jupyter_notebook/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_notebook'
 pkgname=python-jupyter_notebook
 version=5.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="notebook-${version}"
 build_style=python-module

From eab8a5bd67b168048f40a3d2fe199e073715a1b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 273/870] python-jupyter_qtconsole: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_qtconsole/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_qtconsole/template b/srcpkgs/python-jupyter_qtconsole/template
index f8f85534bbd..ea7f89a62af 100644
--- a/srcpkgs/python-jupyter_qtconsole/template
+++ b/srcpkgs/python-jupyter_qtconsole/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_qtconsole'
 pkgname=python-jupyter_qtconsole
 version=4.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="qtconsole-${version}"
 build_style=python-module

From 96c7c1f6f484f9a33a17b0213142b8a97a7c69e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 274/870] python-jupyter_widgetsnbextension: rebuild for Python
 3.8.

---
 srcpkgs/python-jupyter_widgetsnbextension/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_widgetsnbextension/template b/srcpkgs/python-jupyter_widgetsnbextension/template
index dacd88ccb4f..05e9c0d00a3 100644
--- a/srcpkgs/python-jupyter_widgetsnbextension/template
+++ b/srcpkgs/python-jupyter_widgetsnbextension/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_widgetsnbextension'
 pkgname=python-jupyter_widgetsnbextension
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="widgetsnbextension-${version}"
 build_style=python-module

From 6175c117f039e76b8fff45d549f50360a92742b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 275/870] python-kaptan: rebuild for Python 3.8.

---
 srcpkgs/python-kaptan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kaptan/template b/srcpkgs/python-kaptan/template
index 649eeec8568..6668b240008 100644
--- a/srcpkgs/python-kaptan/template
+++ b/srcpkgs/python-kaptan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kaptan'
 pkgname=python-kaptan
 version=0.5.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="kaptan-${version}"
 build_style=python-module

From 6668dcf37c32ef8390c8f45e6cd206d8478b963b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 276/870] python-keepalive: rebuild for Python 3.8.

---
 srcpkgs/python-keepalive/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keepalive/template b/srcpkgs/python-keepalive/template
index deb95a07236..50e1d7e6e78 100644
--- a/srcpkgs/python-keepalive/template
+++ b/srcpkgs/python-keepalive/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keepalive'
 pkgname=python-keepalive
 version=0.5
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9e9d4a781427bc1296f59529a4d83b4a1271c5e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 277/870] python-keyring: rebuild for Python 3.8.

---
 srcpkgs/python-keyring/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyring/template b/srcpkgs/python-keyring/template
index df1c21ee1be..2a87160b04d 100644
--- a/srcpkgs/python-keyring/template
+++ b/srcpkgs/python-keyring/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyring'
 pkgname=python-keyring
 version=18.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyring-${version}"
 build_style=python-module

From 8fea0f10f3e8aebfe92a9d090368b1cda777a405 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 278/870] python3-keyrings-alt: rebuild for Python 3.8.

---
 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 d5820535e54..ed09cfac4a7 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=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyrings.alt-${version}"
 build_style=python3-module

From 271539dc3ed1e21733c374ff971770403194a1d1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 279/870] python-keyutils: rebuild for Python 3.8.

---
 srcpkgs/python-keyutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyutils/template b/srcpkgs/python-keyutils/template
index d56ada0e30e..a72819e963a 100644
--- a/srcpkgs/python-keyutils/template
+++ b/srcpkgs/python-keyutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyutils'
 pkgname=python-keyutils
 version=0.6
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="keyutils"
 hostmakedepends="python-setuptools python3-setuptools"

From 0556a11defcdebd2c4319e286451ce3f45f87ebd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 280/870] python-kitchen: rebuild for Python 3.8.

---
 srcpkgs/python-kitchen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kitchen/template b/srcpkgs/python-kitchen/template
index 2bbd68c13c9..68a46986de9 100644
--- a/srcpkgs/python-kitchen/template
+++ b/srcpkgs/python-kitchen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kitchen'
 pkgname=python-kitchen
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="kitchen-${version}"
 build_style=python-module

From fe5070b00515733fcafbeebc62a10ba2029b40db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 281/870] python-kiwisolver: rebuild for Python 3.8.

---
 srcpkgs/python-kiwisolver/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kiwisolver/template b/srcpkgs/python-kiwisolver/template
index 072bd5af038..67f0805aa51 100644
--- a/srcpkgs/python-kiwisolver/template
+++ b/srcpkgs/python-kiwisolver/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kiwisolver'
 pkgname=python-kiwisolver
 version=1.0.1
-revision=2
+revision=3
 wrksrc="kiwisolver-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From d1c550f6959162ec91e7bb39c54ecdd1d5b7c0ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 282/870] python-lazy-object-proxy: rebuild for Python 3.8.

---
 srcpkgs/python-lazy-object-proxy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lazy-object-proxy/template b/srcpkgs/python-lazy-object-proxy/template
index 07efb7b4777..ab2c6dce05c 100644
--- a/srcpkgs/python-lazy-object-proxy/template
+++ b/srcpkgs/python-lazy-object-proxy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lazy-object-proxy'
 pkgname=python-lazy-object-proxy
 version=1.3.1
-revision=3
+revision=4
 wrksrc="lazy-object-proxy-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e5c9a0cf8e6e0714fba4433b9deb1aaf40d43ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 283/870] python-ldap: rebuild for Python 3.8.

---
 srcpkgs/python-ldap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap/template b/srcpkgs/python-ldap/template
index 7770baa8774..e3efc2fc6b3 100644
--- a/srcpkgs/python-ldap/template
+++ b/srcpkgs/python-ldap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap'
 pkgname=python-ldap
 version=3.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="ldap ldapurl.py ldif.py slapdtest"
 hostmakedepends="python-setuptools python3-setuptools"

From dca16bc247cccf1bc7020afca5594d857514100a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 284/870] python-ldap3: rebuild for Python 3.8.

---
 srcpkgs/python-ldap3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap3/template b/srcpkgs/python-ldap3/template
index 676251a85ff..e8e4cade72b 100644
--- a/srcpkgs/python-ldap3/template
+++ b/srcpkgs/python-ldap3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap3'
 pkgname=python-ldap3
 version=2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ldap3-${version}"
 build_style=python-module

From 8f3e1b0bf64fb527d029fec15229e079f326c373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 285/870] python3-libevdev: rebuild for Python 3.8.

---
 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 0a79893726c..f0295cdee9b 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.8
-revision=1
+revision=2
 _githash=1827bebcf789adee8492cbfcc7cf8d56059a42a4
 wrksrc="python-libevdev-${version}-${_githash}"
 build_style=python3-module

From a5b674c4366c36182e29f21b8071faff59006106 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 286/870] libsmbios: rebuild for Python 3.8.

---
 srcpkgs/libsmbios/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsmbios/template b/srcpkgs/libsmbios/template
index 31d8ffda65f..161cb79deb9 100644
--- a/srcpkgs/libsmbios/template
+++ b/srcpkgs/libsmbios/template
@@ -1,7 +1,7 @@
 # Template file for 'libsmbios'
 pkgname=libsmbios
 version=2.4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--sbindir=/usr/bin --disable-static"
 hostmakedepends="automake doxygen gettext-devel help2man libtool pkg-config"

From 7762c8392d1a03ae7a320bdec0b5402b7147d0b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 287/870] python-libtmux: rebuild for Python 3.8.

---
 srcpkgs/python-libtmux/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-libtmux/template b/srcpkgs/python-libtmux/template
index 36fa7ca7ffd..20f43af5f7d 100644
--- a/srcpkgs/python-libtmux/template
+++ b/srcpkgs/python-libtmux/template
@@ -1,7 +1,7 @@
 # Template file for 'python-libtmux'
 pkgname=python-libtmux
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="libtmux-${version}"
 build_style=python-module

From 16a2a1b8ba0ad9f9032d52092294e8a39041bba2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 288/870] python-llfuse: rebuild for Python 3.8.

---
 srcpkgs/python-llfuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-llfuse/template b/srcpkgs/python-llfuse/template
index 203c5e2fd84..b453c67e91d 100644
--- a/srcpkgs/python-llfuse/template
+++ b/srcpkgs/python-llfuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-llfuse'
 pkgname=python-llfuse
 version=1.3.6
-revision=1
+revision=2
 wrksrc="llfuse-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pkg-config"

From ae7f34ffc994fc4606c9209683fae6625f3e781e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 289/870] python-lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lockfile/template b/srcpkgs/python-lockfile/template
index 4c4612ed144..778cecba7e9 100644
--- a/srcpkgs/python-lockfile/template
+++ b/srcpkgs/python-lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lockfile'
 pkgname=python-lockfile
 version=0.12.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="lockfile-${version}"
 build_style=python-module

From 5fd2f78e26b399ed936b12f51886dae3a8d35cb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 290/870] python-logfury: rebuild for Python 3.8.

---
 srcpkgs/python-logfury/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-logfury/template b/srcpkgs/python-logfury/template
index 4b1c435e34a..1b52d2d7fdf 100644
--- a/srcpkgs/python-logfury/template
+++ b/srcpkgs/python-logfury/template
@@ -1,7 +1,7 @@
 # Template file for 'python-logfury'
 pkgname=python-logfury
 version=0.1.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="logfury-${version}"
 build_style=python-module

From 747dc28bedc27e7b5c8738113573012f545333a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 291/870] python-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lxml/template b/srcpkgs/python-lxml/template
index c3aeabfbf1b..1a6a3ac9113 100644
--- a/srcpkgs/python-lxml/template
+++ b/srcpkgs/python-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lxml'
 pkgname=python-lxml
 version=4.4.1
-revision=1
+revision=2
 wrksrc="lxml-lxml-${version}"
 build_style=python-module
 pycompile_module="lxml"

From ebc274c0463316f63fe99e5df0c704e3d324c885 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 292/870] python-lz4: rebuild for Python 3.8.

---
 srcpkgs/python-lz4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lz4/template b/srcpkgs/python-lz4/template
index dab8e8ed542..76a2e800e38 100644
--- a/srcpkgs/python-lz4/template
+++ b/srcpkgs/python-lz4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lz4'
 pkgname=python-lz4
 version=2.1.6
-revision=2
+revision=3
 wrksrc="lz4-${version}"
 build_style=python-module
 pycompile_module="lz4"

From 8eb3f4d6193b25ae716fa2fdfae1f929deb65a91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 293/870] python3-macaroons: rebuild for Python 3.8.

---
 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 d44100c20f2..420f5aff043 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=1
+revision=2
 archs=noarch
 wrksrc="pymacaroons-${version}"
 build_style=python3-module

From 437e300b76670db404728daad9f6224630daaa3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 294/870] python3-macholib: rebuild for Python 3.8.

---
 srcpkgs/python3-macholib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-macholib/template b/srcpkgs/python3-macholib/template
index a2738f57eb0..525b5f7106b 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.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="macholib-${version}"
 build_style=python3-module

From b08f229d26f5b2c915caabe213234afc1e4002e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 295/870] python-magic: rebuild for Python 3.8.

---
 srcpkgs/python-magic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-magic/template b/srcpkgs/python-magic/template
index 98e3c0802ab..5a59efa4808 100644
--- a/srcpkgs/python-magic/template
+++ b/srcpkgs/python-magic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-magic'
 pkgname=python-magic
 version=0.4.15
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="magic.py"

From c597fee1945d8f994f591622074acf3670a81484 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 296/870] python-marisa-trie: rebuild for Python 3.8.

---
 srcpkgs/python-marisa-trie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-marisa-trie/template b/srcpkgs/python-marisa-trie/template
index bb09c933335..5e46b686ace 100644
--- a/srcpkgs/python-marisa-trie/template
+++ b/srcpkgs/python-marisa-trie/template
@@ -1,7 +1,7 @@
 # Template file for 'python-marisa-trie'
 pkgname=python-marisa-trie
 version=0.7.5
-revision=2
+revision=3
 wrksrc="marisa-trie-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 5366314fc7ba3b340ccf5b4658edff33f5ec148a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 297/870] python-markdown2: rebuild for Python 3.8.

---
 srcpkgs/python-markdown2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-markdown2/template b/srcpkgs/python-markdown2/template
index 2d352ba029d..e9068f64202 100644
--- a/srcpkgs/python-markdown2/template
+++ b/srcpkgs/python-markdown2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-markdown2'
 pkgname=python-markdown2
 version=2.3.8
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="markdown2"

From b56d284bcbb50ddece287bde845145e6481e4d39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 298/870] python3-matplotlib: rebuild for Python 3.8.

---
 srcpkgs/python3-matplotlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template
index 857ba17cacf..be02817a4d3 100644
--- a/srcpkgs/python3-matplotlib/template
+++ b/srcpkgs/python3-matplotlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-matplotlib'
 pkgname=python3-matplotlib
 version=3.1.1
-revision=1
+revision=2
 wrksrc="matplotlib-${version}"
 build_style=python3-module
 pycompile_module="matplotlib mpl_toolkits pylab.py"

From 8b3780e8f6f50712735239defc569952763e8894 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 299/870] python-mccabe: rebuild for Python 3.8.

---
 srcpkgs/python-mccabe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mccabe/template b/srcpkgs/python-mccabe/template
index b6a01929540..1e2ed6328b8 100644
--- a/srcpkgs/python-mccabe/template
+++ b/srcpkgs/python-mccabe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mccabe'
 pkgname=python-mccabe
 version=0.6.1
-revision=2
+revision=3
 archs=noarch
 replaces="mccabe>=0"
 wrksrc="mccabe-${version}"

From 954d38992e9a83e3214b79375b895ee1072db4e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 300/870] python-mechanize: rebuild for Python 3.8.

---
 srcpkgs/python-mechanize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mechanize/template b/srcpkgs/python-mechanize/template
index c5b2b5789a7..ca29bbd0d23 100644
--- a/srcpkgs/python-mechanize/template
+++ b/srcpkgs/python-mechanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mechanize'
 pkgname=python-mechanize
 version=0.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="mechanize-${version}"
 build_style=python-module

From e8762f4af80ad5b1cb6a41af3183141ec903485f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 301/870] python3-minidb: rebuild for Python 3.8.

---
 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 50490794600..140964b7a8a 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.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="minidb-${version}"
 build_style=python3-module

From 93febdb59f89cf4939f3684acd832f879fc774d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 302/870] python-miniupnpc: rebuild for Python 3.8.

---
 srcpkgs/python-miniupnpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-miniupnpc/template b/srcpkgs/python-miniupnpc/template
index 500c217c78e..f7892bab073 100644
--- a/srcpkgs/python-miniupnpc/template
+++ b/srcpkgs/python-miniupnpc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-miniupnpc'
 pkgname=python-miniupnpc
 version=2.0.2
-revision=2
+revision=3
 wrksrc="${pkgname#python-}-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ab280bf26207a66e5e3f418768bf3358cc2c76ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 303/870] python-mistune: rebuild for Python 3.8.

---
 srcpkgs/python-mistune/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mistune/template b/srcpkgs/python-mistune/template
index 0ee8dfde5b1..ef5c054ba75 100644
--- a/srcpkgs/python-mistune/template
+++ b/srcpkgs/python-mistune/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mistune'
 pkgname=python-mistune
 version=0.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="mistune-${version}"
 build_style=python-module

From 05abf67487f6ac161862195dfb2069fade248fbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 304/870] python3-more-itertools: rebuild for Python 3.8.

---
 srcpkgs/python3-more-itertools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-more-itertools/template b/srcpkgs/python3-more-itertools/template
index b089992f84e..a765da98495 100644
--- a/srcpkgs/python3-more-itertools/template
+++ b/srcpkgs/python3-more-itertools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-more-itertools'
 pkgname=python3-more-itertools
 version=7.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python3-module

From efcbd7f439e04ca5dc43be057047c93f1051b5cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 305/870] python-mpd2: rebuild for Python 3.8.

---
 srcpkgs/python-mpd2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template
index 682d9a85f5e..0389f8c2a28 100644
--- a/srcpkgs/python-mpd2/template
+++ b/srcpkgs/python-mpd2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpd2'
 pkgname=python-mpd2
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mpd"

From 507a89e7a29ba5dd81f66830577542bb3a098780 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 306/870] python3-mpi4py: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-mpi4py/template | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/python3-mpi4py/template b/srcpkgs/python3-mpi4py/template
index 94a83b688f2..8f9e76867cc 100644
--- a/srcpkgs/python3-mpi4py/template
+++ b/srcpkgs/python3-mpi4py/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpi4py'
 pkgname=python3-mpi4py
 version=3.0.2
-revision=1
+revision=2
 wrksrc="mpi4py-${version}"
 build_style=python3-module
 pycompile_module="mpi4py"
@@ -15,6 +15,12 @@ homepage="https://bitbucket.org/mpi4py/mpi4py"
 distfiles="$PYPI_SITE/m/mpi4py/mpi4py-${version}.tar.gz"
 checksum=f8d629d1e3e3b7b89cb99d0e3bc5505e76cc42089829807950d5c56606ed48e0
 
+post_extract() {
+	# recythonize
+	rm src/mpi4py/include/mpi4py/mpi4py.MPI.h \
+		src/mpi4py/include/mpi4py/mpi4py.MPI_api.h \
+		src/mpi4py.MPI.c
+}
 post_install() {
 	vlicense LICENSE.rst
 }

From d71d04b6dbfad4ce9460041fe001aab7c4cab301 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 307/870] python-mpmath: rebuild for Python 3.8.

---
 srcpkgs/python-mpmath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpmath/template b/srcpkgs/python-mpmath/template
index b0a38c01514..8fd4873dd62 100644
--- a/srcpkgs/python-mpmath/template
+++ b/srcpkgs/python-mpmath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpmath'
 pkgname=python-mpmath
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="mpmath-${version}"
 build_style=python-module

From f050643cc3d8a1927b2b43a4d6bc3a47fce265d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 308/870] python3-mpv: rebuild for Python 3.8.

---
 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 2780c02610b..1910a4d231d 100644
--- a/srcpkgs/python3-mpv/template
+++ b/srcpkgs/python3-mpv/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpv'
 pkgname=python3-mpv
 version=0.3.9
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-mpv-${version}"
 build_style=python3-module

From 076ab982ba68fae19b6a637c3190d501b6f11afb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 309/870] python-msgpack: rebuild for Python 3.8.

---
 srcpkgs/python-msgpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-msgpack/template b/srcpkgs/python-msgpack/template
index 395d854d638..59571d6a208 100644
--- a/srcpkgs/python-msgpack/template
+++ b/srcpkgs/python-msgpack/template
@@ -2,7 +2,7 @@
 pkgname=python-msgpack
 reverts="0.6.0_1"
 version=0.5.6
-revision=3
+revision=4
 wrksrc="msgpack-${version}"
 build_style=python-module
 pycompile_module="msgpack"

From c0b498d4aabae1c0cc1564a796b43c28045b08f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 310/870] python3-msoffcrypto-tool: rebuild for Python 3.8.

---
 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 5996d3bf355..d1b369fc773 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=4.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="msoffcrypto-tool-${version}"
 build_style=python3-module

From a02ae9dc7e657d6823c09d222a46aaaad0b52e6e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 311/870] python-mtranslate: rebuild for Python 3.8.

---
 srcpkgs/python-mtranslate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mtranslate/template b/srcpkgs/python-mtranslate/template
index d56fa18f0f0..992c7b76fe9 100644
--- a/srcpkgs/python-mtranslate/template
+++ b/srcpkgs/python-mtranslate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mtranslate'
 pkgname=python-mtranslate
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="mtranslate-${version}"
 build_style=python-module

From 1db5126bddf0129431159c083c0e8c7feeda0e24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 312/870] python3-multidict: rebuild for Python 3.8.

---
 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 82888db842f..62054db71f1 100644
--- a/srcpkgs/python3-multidict/template
+++ b/srcpkgs/python3-multidict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-multidict'
 pkgname=python3-multidict
 version=4.5.2
-revision=2
+revision=3
 wrksrc="multidict-${version}"
 build_style=python3-module
 pycompile_module="multidict"

From db397601599182d62444486443fe7887f1bf0869 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 313/870] python3-munkres: rebuild for Python 3.8.

---
 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 15767afe3fe..d0d0a013e80 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python3-module

From f6bec8102ac4a1433f716928258d680f0546e9f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 314/870] python-musicbrainzngs: rebuild for Python 3.8.

---
 srcpkgs/python-musicbrainzngs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-musicbrainzngs/template b/srcpkgs/python-musicbrainzngs/template
index 588c25f7cd8..3d738f0c3c0 100644
--- a/srcpkgs/python-musicbrainzngs/template
+++ b/srcpkgs/python-musicbrainzngs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-musicbrainzngs'
 pkgname=python-musicbrainzngs
 version=0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="musicbrainzngs-${version}"
 build_style="python-module"

From 59d602d19ea627b5ddd3ac33170326df511f1b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 315/870] python3-musicpd: rebuild for Python 3.8.

---
 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 3328b2f4bbf..8c6ba2fb451 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=1
+revision=2
 archs=noarch
 wrksrc="python-musicpd-${version}"
 build_style=python3-module

From e4271deae6b4b0258165475e34a0174f837576d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 316/870] mutagen: rebuild for Python 3.8.

---
 srcpkgs/mutagen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mutagen/template b/srcpkgs/mutagen/template
index cbf05ea8583..8b24cc82dc8 100644
--- a/srcpkgs/mutagen/template
+++ b/srcpkgs/mutagen/template
@@ -1,7 +1,7 @@
 # Template file for 'mutagen'
 pkgname=mutagen
 version=1.42.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mutagen"

From c726c7e86676ccc5612045570a6821438d6541cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 317/870] python-mygpoclient: rebuild for Python 3.8.

---
 srcpkgs/python-mygpoclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mygpoclient/template b/srcpkgs/python-mygpoclient/template
index 3f85c72cc0c..ffad63a70a1 100644
--- a/srcpkgs/python-mygpoclient/template
+++ b/srcpkgs/python-mygpoclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mygpoclient'
 pkgname=python-mygpoclient
 version=1.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="mygpoclient-${version}"
 build_style=python-module

From 1d17c7a2672083ac8c194b767f1be1d8778d6f42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 318/870] python3-mypy: rebuild for Python 3.8.

---
 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 37ecd732c06..564c0a4d47c 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.730
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy-${version}"
 build_style=python3-module

From d44ba12caf9958f6f6d708b0e5061d3ca01990e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 319/870] python3-mypy_extensions: rebuild for Python 3.8.

---
 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 2761924248e..25de48ea141 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy_extensions-${version}"
 build_style=python3-module

From 8c03f1eb83b224187a7b0fb11b5c780c96875438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 320/870] python-mysqlclient: rebuild for Python 3.8.

---
 srcpkgs/python-mysqlclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mysqlclient/template b/srcpkgs/python-mysqlclient/template
index 43fed28d4f0..079666a6dab 100644
--- a/srcpkgs/python-mysqlclient/template
+++ b/srcpkgs/python-mysqlclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mysqlclient'
 pkgname=python-mysqlclient
 version=1.3.14
-revision=2
+revision=3
 wrksrc="mysqlclient-${version}"
 build_style=python-module
 pycompile_module="MySQLdb _mysql_exceptions.py"

From 8b80cedc0b4331f2c1827c959c67be32d904a6b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 321/870] python3-nacl: rebuild for Python 3.8.

---
 srcpkgs/python3-nacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-nacl/template b/srcpkgs/python3-nacl/template
index 5dd6a71ad6a..b59ea0196ac 100644
--- a/srcpkgs/python3-nacl/template
+++ b/srcpkgs/python3-nacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-nacl'
 pkgname=python3-nacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python3-module
 pycompile_module="nacl"

From 4b93d8f922559d3f9f9693969307cdb0dedd22c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 322/870] python-namedlist: rebuild for Python 3.8.

---
 srcpkgs/python-namedlist/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-namedlist/template b/srcpkgs/python-namedlist/template
index 4c6e6f1f3d5..75626b9f6d5 100644
--- a/srcpkgs/python-namedlist/template
+++ b/srcpkgs/python-namedlist/template
@@ -1,7 +1,7 @@
 # Template file for 'python-namedlist'
 pkgname=python-namedlist
 version=1.7
-revision=5
+revision=6
 archs=noarch
 wrksrc="namedlist-${version}"
 build_style=python-module

From 643225c4205051b03e6b58dd88dd0fe79a960880 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 323/870] python-natsort: rebuild for Python 3.8.

---
 srcpkgs/python-natsort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-natsort/template b/srcpkgs/python-natsort/template
index 754ac50c419..7101e297aad 100644
--- a/srcpkgs/python-natsort/template
+++ b/srcpkgs/python-natsort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-natsort'
 pkgname=python-natsort
 version=6.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="natsort-${version}"
 build_style=python-module

From 1b4401089b676f8d76d5cbdf86f7cff95a90063f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 324/870] python-nbxmpp: rebuild for Python 3.8.

---
 srcpkgs/python-nbxmpp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nbxmpp/template b/srcpkgs/python-nbxmpp/template
index 4952ee1e102..8c39a93bca7 100644
--- a/srcpkgs/python-nbxmpp/template
+++ b/srcpkgs/python-nbxmpp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nbxmpp'
 pkgname=python-nbxmpp
 version=0.6.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 1ee192bdc19afbca9bbbc456945aaed8e882dc3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 325/870] python-ndg_httpsclient: rebuild for Python 3.8.

---
 srcpkgs/python-ndg_httpsclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ndg_httpsclient/template b/srcpkgs/python-ndg_httpsclient/template
index 908d7137391..54b653f68a9 100644
--- a/srcpkgs/python-ndg_httpsclient/template
+++ b/srcpkgs/python-ndg_httpsclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ndg_httpsclient'
 pkgname=python-ndg_httpsclient
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ndg_httpsclient-${version}"
 build_style=python-module

From 37b5c7920c617c4f55d5abe58df690c621598a93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 326/870] python3-neovim: rebuild for Python 3.8.

---
 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 44068f17b66..2730cd1b92b 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.3.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="pynvim-${version}"
 build_style="python3-module"

From 8136ec791e98badf101712f4f44830a6721d4849 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 327/870] python-netaddr: rebuild for Python 3.8.

---
 srcpkgs/python-netaddr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netaddr/template b/srcpkgs/python-netaddr/template
index 851095a3c7c..20cc1c93134 100644
--- a/srcpkgs/python-netaddr/template
+++ b/srcpkgs/python-netaddr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netaddr'
 pkgname=python-netaddr
 version=0.7.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="netaddr-${version}"
 build_style=python-module

From ebe247f557b410a62febae438785f8f011964023 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 328/870] python-netifaces: rebuild for Python 3.8.

---
 srcpkgs/python-netifaces/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netifaces/template b/srcpkgs/python-netifaces/template
index b8d6e505879..760f657aaba 100644
--- a/srcpkgs/python-netifaces/template
+++ b/srcpkgs/python-netifaces/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netifaces'
 pkgname=python-netifaces
 version=0.10.9
-revision=1
+revision=2
 wrksrc="netifaces-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 07d0e05094764c4ef127de2a4d489537d8ab5708 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 329/870] python3-networkx: rebuild for Python 3.8.

---
 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 eae29038d94..84acd3e929c 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.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="networkx-${version}"
 build_style=python3-module

From 8a3aeb59a75fbf1b7f0394b94c325ef8827b6b5d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 330/870] python-nose: rebuild for Python 3.8.

---
 srcpkgs/python-nose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose/template b/srcpkgs/python-nose/template
index c9fbe9d28d3..f2cd7fe5c3f 100644
--- a/srcpkgs/python-nose/template
+++ b/srcpkgs/python-nose/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose'
 pkgname=python-nose
 version=1.3.7
-revision=3
+revision=4
 archs=noarch
 wrksrc="nose-${version}"
 build_style=python-module

From f86abdbaaaa9e7e8236c4d39cd7e46a733425805 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 331/870] python-nose2: rebuild for Python 3.8.

---
 srcpkgs/python-nose2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose2/template b/srcpkgs/python-nose2/template
index a9ddf5969a1..058abbd4253 100644
--- a/srcpkgs/python-nose2/template
+++ b/srcpkgs/python-nose2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose2'
 pkgname=python-nose2
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 18b92c10ef3291636c1e7e28d721c5e994bf6302 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 332/870] python-npyscreen: rebuild for Python 3.8.

---
 srcpkgs/python-npyscreen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-npyscreen/template b/srcpkgs/python-npyscreen/template
index 0457fa1aaed..2223850f22e 100644
--- a/srcpkgs/python-npyscreen/template
+++ b/srcpkgs/python-npyscreen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-npyscreen'
 pkgname=python-npyscreen
 version=4.10.5.1
-revision=1
+revision=2
 wrksrc="npyscreen-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 9ea98fac2c37960db9a7b76cea2be115e8a2bed7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 333/870] python-ntplib: rebuild for Python 3.8.

---
 srcpkgs/python-ntplib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ntplib/template b/srcpkgs/python-ntplib/template
index 81bac24971e..0582fb326c1 100644
--- a/srcpkgs/python-ntplib/template
+++ b/srcpkgs/python-ntplib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ntplib'
 pkgname=python-ntplib
 version=0.3.3
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 wrksrc="ntplib-${version}"

From 42e7c3606ad17794721afef48ff01de438abbfde Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 334/870] python-numexpr: rebuild for Python 3.8.

---
 srcpkgs/python-numexpr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numexpr/template b/srcpkgs/python-numexpr/template
index 1db40092411..baf91175a33 100644
--- a/srcpkgs/python-numexpr/template
+++ b/srcpkgs/python-numexpr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numexpr'
 pkgname=python-numexpr
 version=2.7.0
-revision=1
+revision=2
 wrksrc="numexpr-${version}"
 build_style=python-module
 pycompile_module="numexpr"

From 30d9e4a8b4a096dfdf5ebfa58ffcadefb1dc1208 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 335/870] python3-numpy: rebuild for Python 3.8.

---
 srcpkgs/python3-numpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-numpy/template b/srcpkgs/python3-numpy/template
index c4c1936cc0d..f5e8ce2cc32 100644
--- a/srcpkgs/python3-numpy/template
+++ b/srcpkgs/python3-numpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-numpy'
 pkgname=python3-numpy
 version=1.17.2
-revision=1
+revision=2
 wrksrc="numpy-${version}"
 build_style=python3-module
 pycompile_module="numpy"

From 0172497dfdbc4c61b890a5cb33fdf7a4c4f8d99a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 336/870] python-numpy-stl: rebuild for Python 3.8.

---
 srcpkgs/python-numpy-stl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numpy-stl/template b/srcpkgs/python-numpy-stl/template
index 3eed838e4f6..cce1a8ead1f 100644
--- a/srcpkgs/python-numpy-stl/template
+++ b/srcpkgs/python-numpy-stl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numpy-stl'
 pkgname=python-numpy-stl
 version=2.10.1
-revision=1
+revision=2
 wrksrc="numpy-stl-v${version}"
 build_style=python-module
 pycompile_module="stl"

From f24b29a48d74aeaddb7b697a5daffdddbd861096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 337/870] python-oauth2client: rebuild for Python 3.8.

---
 srcpkgs/python-oauth2client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauth2client/template b/srcpkgs/python-oauth2client/template
index fd135e4e98f..2398adba276 100644
--- a/srcpkgs/python-oauth2client/template
+++ b/srcpkgs/python-oauth2client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauth2client'
 pkgname=python-oauth2client
 version=4.1.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 4c0ff2a063a36adf86c97b9d4c835ca20b5edfc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 338/870] python-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauthlib/template b/srcpkgs/python-oauthlib/template
index 5bbaa7df29b..036f1b31c92 100644
--- a/srcpkgs/python-oauthlib/template
+++ b/srcpkgs/python-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauthlib'
 pkgname=python-oauthlib
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 661bc27cfe08965221daa2747362d72e4fc27178 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 339/870] python-olefile: rebuild for Python 3.8.

---
 srcpkgs/python-olefile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-olefile/template b/srcpkgs/python-olefile/template
index 4346cfcf667..803d7b67cd8 100644
--- a/srcpkgs/python-olefile/template
+++ b/srcpkgs/python-olefile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-olefile'
 pkgname=python-olefile
 version=0.46
-revision=1
+revision=2
 archs=noarch
 wrksrc="olefile-${version}"
 build_style=python-module

From 81ad48cc99baa98fff2bb93d2c9ddbfe5bd36422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 340/870] python3-oletools: rebuild for Python 3.8.

---
 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 af9a91ff273..a4fda46427b 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.54.2b
-revision=1
+revision=2
 archs=noarch
 wrksrc="oletools-${version}"
 build_style=python3-module

From 0ae1454dacdb40d36d6c46872241d8b7f943ac15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 341/870] openrazer-meta: rebuild for Python 3.8.

---
 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 d4bd24878b2..112cb9e900b 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=1
+revision=2
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 827b1a86d790e29df3f5448f95b7d7583439ebc7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 342/870] python-openssl: rebuild for Python 3.8.

---
 srcpkgs/python-openssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-openssl/template b/srcpkgs/python-openssl/template
index 94bccaa166f..8aabda074fa 100644
--- a/srcpkgs/python-openssl/template
+++ b/srcpkgs/python-openssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-openssl'
 pkgname=python-openssl
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyOpenSSL-${version}"
 build_style=python-module

From 0b35d1d0b8e9ec0f17cb71edb12538b78cf15fa9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 343/870] python3-orocos-kdl: rebuild for Python 3.8.

---
 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 df3e27d5e7b..85b573b2fa4 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=1
+revision=2
 wrksrc=orocos_kinematics_dynamics-${version}
 build_wrksrc=python_orocos_kdl
 build_style=cmake

From 1f599cbc677804bd62252474063a3f44bab1963f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 344/870] python3-owm: rebuild for Python 3.8.

---
 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 d51e01831e6..acdb960ab45 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=1
+revision=2
 wrksrc="pyowm-${version}"
 build_style=python3-module
 pycompile_module="pyowm"

From 04d5ca1141107a7e08a15eccec26eae0cef6ddfc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 345/870] python-packaging: rebuild for Python 3.8.

---
 srcpkgs/python-packaging/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-packaging/template b/srcpkgs/python-packaging/template
index 505631bb29c..06042d12b90 100644
--- a/srcpkgs/python-packaging/template
+++ b/srcpkgs/python-packaging/template
@@ -1,7 +1,7 @@
 # Template file for 'python-packaging'
 pkgname=python-packaging
 version=19.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="packaging-${version}"
 build_style=python-module

From 3d4f635d1909bcc10be550a6ba92c93bab657d24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 346/870] python-pam: rebuild for Python 3.8.

---
 srcpkgs/python-pam/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pam/template b/srcpkgs/python-pam/template
index e696a05ae7f..28c22cfd6ea 100644
--- a/srcpkgs/python-pam/template
+++ b/srcpkgs/python-pam/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pam'
 pkgname=python-pam
 version=1.8.4
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="pam.py"

From 7906adb846a053b93372b360401c778862703de5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 347/870] python3-pandas: rebuild for Python 3.8.

---
 srcpkgs/python3-pandas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pandas/template b/srcpkgs/python3-pandas/template
index ad282b4d5d4..10f9d5a77d9 100644
--- a/srcpkgs/python3-pandas/template
+++ b/srcpkgs/python3-pandas/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pandas'
 pkgname=python3-pandas
 version=0.25.1
-revision=1
+revision=2
 wrksrc="pandas-${version}"
 build_style=python3-module
 pycompile_module="pandas"

From 5f63764964faf4b0d244098f5f64ba1225e14c5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 348/870] python-pandocfilters: rebuild for Python 3.8.

---
 srcpkgs/python-pandocfilters/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pandocfilters/template b/srcpkgs/python-pandocfilters/template
index a7a3d442052..8650d20256f 100644
--- a/srcpkgs/python-pandocfilters/template
+++ b/srcpkgs/python-pandocfilters/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pandocfilters'
 pkgname=python-pandocfilters
 version=1.4.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="pandocfilters-${version}"
 build_style=python-module

From cedefda1104de9c58b20c6b7e1d8a0f4d5385b24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 349/870] python-paramiko: rebuild for Python 3.8.

---
 srcpkgs/python-paramiko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-paramiko/template b/srcpkgs/python-paramiko/template
index c512ceb951f..d6f75508a03 100644
--- a/srcpkgs/python-paramiko/template
+++ b/srcpkgs/python-paramiko/template
@@ -1,7 +1,7 @@
 # Template file for 'python-paramiko'
 pkgname=python-paramiko
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 6c5cdbb0603a5742137ad2399e1f282d7135ecbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 350/870] python-parse: rebuild for Python 3.8.

---
 srcpkgs/python-parse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parse/template b/srcpkgs/python-parse/template
index 298d0b65e78..ded581b4420 100644
--- a/srcpkgs/python-parse/template
+++ b/srcpkgs/python-parse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parse'
 pkgname=python-parse
 version=1.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="parse-${version}"
 build_style=python-module

From 06c32d13c6ecc8f5c59fd3d28c856cddb7e55b69 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 351/870] python3-parsedatetime: rebuild for Python 3.8.

---
 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 d3ac21d7d34..34e9ba0f416 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="parsedatetime-${version}"
 build_style=python3-module

From 149092afd6b238ec9977aa2ba8d8f244d5357e67 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 352/870] python-parsing: rebuild for Python 3.8.

---
 srcpkgs/python-parsing/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parsing/template b/srcpkgs/python-parsing/template
index 0cc744eaf79..bd6cf2c2238 100644
--- a/srcpkgs/python-parsing/template
+++ b/srcpkgs/python-parsing/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parsing'
 pkgname=python-parsing
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyparsing-pyparsing_${version}"
 build_style=python-module

From c302574bea31ba81d3f2e4d6c1b8b8212592985d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 353/870] python-parso: rebuild for Python 3.8.

---
 srcpkgs/python-parso/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parso/template b/srcpkgs/python-parso/template
index 20e5fe306c0..1959b42622a 100644
--- a/srcpkgs/python-parso/template
+++ b/srcpkgs/python-parso/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parso'
 pkgname=python-parso
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="parso-${version}"
 build_style=python-module

From 6b9c95f942435b16d67021b0ce8f182c24bb943f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 354/870] python-passlib: rebuild for Python 3.8.

---
 srcpkgs/python-passlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-passlib/template b/srcpkgs/python-passlib/template
index 3af12ce7b1b..f46a3e92642 100644
--- a/srcpkgs/python-passlib/template
+++ b/srcpkgs/python-passlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-passlib'
 pkgname=python-passlib
 version=1.7.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="passlib-${version}"
 build_style=python-module

From 49600da0619f7152e3ea828c366d9a4680ebac40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 355/870] python-pathlib2: rebuild for Python 3.8.

---
 srcpkgs/python-pathlib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathlib2/template b/srcpkgs/python-pathlib2/template
index bb7bec778f5..fa600b78fbe 100644
--- a/srcpkgs/python-pathlib2/template
+++ b/srcpkgs/python-pathlib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathlib2'
 pkgname=python-pathlib2
 version=2.3.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pathlib2-${version}"
 build_style=python-module

From a0a108aec87134d5b6d2e03e731f48739e1226c0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 356/870] python-pathspec: rebuild for Python 3.8.

---
 srcpkgs/python-pathspec/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathspec/template b/srcpkgs/python-pathspec/template
index 7c5fe04097a..2fa8fa1a811 100644
--- a/srcpkgs/python-pathspec/template
+++ b/srcpkgs/python-pathspec/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathspec'
 pkgname=python-pathspec
 version=0.5.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathspec-${version}"
 build_style=python-module

From c66de315dc6f359ddb581056e8ef350e92acb135 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 357/870] python-pathtools: rebuild for Python 3.8.

---
 srcpkgs/python-pathtools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathtools/template b/srcpkgs/python-pathtools/template
index 218e6ed2f57..47dc6ef6a71 100644
--- a/srcpkgs/python-pathtools/template
+++ b/srcpkgs/python-pathtools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathtools'
 pkgname=python-pathtools
 version=0.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathtools-${version}"
 build_style=python-module

From d3d8ba877ce3e383a472c68a51b4eb6138da7d25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 358/870] python-pbkdf2: rebuild for Python 3.8.

---
 srcpkgs/python-pbkdf2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pbkdf2/template b/srcpkgs/python-pbkdf2/template
index edc50f824c2..956d0b4cad9 100644
--- a/srcpkgs/python-pbkdf2/template
+++ b/srcpkgs/python-pbkdf2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pbkdf2'
 pkgname=python-pbkdf2
 version=1.3
-revision=3
+revision=4
 archs=noarch
 wrksrc="pbkdf2-${version}"
 build_style=python-module

From 92b150f4aee95d71074c2bc7e253e089372033b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 359/870] python-pbr: rebuild for Python 3.8.

---
 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 7ab0b39539f..9c7216056fe 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.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pbr-${version}"
 build_style=python-module

From a5f7f198ba9557855d1662cf7b3d806286d735b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 360/870] python3-pcodedmp: rebuild for Python 3.8.

---
 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 efe8cc83ee7..eb52c809fae 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=1
+revision=2
 archs=noarch
 wrksrc="pcodedmp-${version}"
 build_style=python3-module

From c6f7d3cab5a62a3302eedc82e3ce1b5af007e967 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 361/870] python-pdfrw: rebuild for Python 3.8.

---
 srcpkgs/python-pdfrw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pdfrw/template b/srcpkgs/python-pdfrw/template
index ddb43b928fc..ef7db98e491 100644
--- a/srcpkgs/python-pdfrw/template
+++ b/srcpkgs/python-pdfrw/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pdfrw'
 pkgname=python-pdfrw
 version=0.4
-revision=2
+revision=3
 archs=noarch
 replaces="python-pdfrw-example<${version}_${revision}"
 wrksrc="${pkgname/python-//}-${version}"

From 8f02a9d6b13212de51e3921f641914d153244a1d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 362/870] python-peewee: rebuild for Python 3.8.

---
 srcpkgs/python-peewee/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-peewee/template b/srcpkgs/python-peewee/template
index 9b07ed413b9..de0068a330e 100644
--- a/srcpkgs/python-peewee/template
+++ b/srcpkgs/python-peewee/template
@@ -1,7 +1,7 @@
 # Template file for 'python-peewee'
 pkgname=python-peewee
 version=3.11.2
-revision=1
+revision=2
 wrksrc="peewee-${version}"
 build_style=python-module
 pycompile_module="playhouse peewee.py pwiz.py"

From 8c541b3666a838b55909e5f7ca46b7318c1e315e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 363/870] python3-pefile: rebuild for Python 3.8.

---
 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 305d64e0758..8791f06640b 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=1
+revision=2
 archs=noarch
 wrksrc="pefile-${version}"
 build_style=python3-module

From edc8e4f2bb803865815c3d0bd64a2e50bfdf5da8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 364/870] python3-pem: rebuild for Python 3.8.

---
 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 3517c80b66a..15417666597 100644
--- a/srcpkgs/python3-pem/template
+++ b/srcpkgs/python3-pem/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pem'
 pkgname=python3-pem
 version=19.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pem-${version}"
 build_style=python3-module

From 164760eb3d8d28400ea4be2967d7678696839866 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 365/870] python-pex: rebuild for Python 3.8.

---
 srcpkgs/python-pex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pex/template b/srcpkgs/python-pex/template
index 4beafcf7b4b..e36ccda8180 100644
--- a/srcpkgs/python-pex/template
+++ b/srcpkgs/python-pex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pex'
 pkgname=python-pex
 version=1.6.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="pex-${version}"
 build_style=python-module

From b4043ec822756e0711d025e31db342f81853fc0b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 366/870] python-pexpect: rebuild for Python 3.8.

---
 srcpkgs/python-pexpect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pexpect/template b/srcpkgs/python-pexpect/template
index 8d03a1945f3..03102c3d294 100644
--- a/srcpkgs/python-pexpect/template
+++ b/srcpkgs/python-pexpect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pexpect'
 pkgname=python-pexpect
 version=4.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pexpect-${version}"
 build_style=python-module

From 50f6291ca752dc88af34a7df4987b99f11369c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 367/870] python-pgmigrate: rebuild for Python 3.8.

---
 srcpkgs/python-pgmigrate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgmigrate/template b/srcpkgs/python-pgmigrate/template
index b441ba2a89f..767b6cf8921 100644
--- a/srcpkgs/python-pgmigrate/template
+++ b/srcpkgs/python-pgmigrate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgmigrate'
 pkgname=python-pgmigrate
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgmigrate-${version}"
 build_style=python-module

From 19bc6f8c731b45f52c358d34830221558e54f36f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 368/870] python-pgpdump: rebuild for Python 3.8.

---
 srcpkgs/python-pgpdump/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgpdump/template b/srcpkgs/python-pgpdump/template
index 58be9116feb..a28b6e209e7 100644
--- a/srcpkgs/python-pgpdump/template
+++ b/srcpkgs/python-pgpdump/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgpdump'
 pkgname=python-pgpdump
 version=1.5
-revision=5
+revision=6
 archs=noarch
 build_style=python-module
 pycompile_module="pgpdump"

From d3bc17a7484bd198f2f0e5d449b183920ca6ef9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 369/870] python3-pgspecial: rebuild for Python 3.8.

---
 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 dc52d12c214..c4f67a707f1 100644
--- a/srcpkgs/python3-pgspecial/template
+++ b/srcpkgs/python3-pgspecial/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pgspecial'
 pkgname=python3-pgspecial
 version=1.11.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgspecial-${version}"
 build_style=python3-module

From 630e0f8ca443d21d7a84c4cb44ab119db356b6fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 370/870] python3-pgzero: rebuild for Python 3.8.

---
 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 9653505acda..8b8f477112d 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgzero-${version}"
 build_style=python3-module

From b39841f2f8458d2865aac460282b318538b727c4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 371/870] python3-phonenumbers: rebuild for Python 3.8.

---
 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 ebf33f226e4..7b4e889fd8d 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.10.20
-revision=1
+revision=2
 archs=noarch
 wrksrc="phonenumbers-${version}"
 build_style=python3-module

From c4dbacfe25a16b0526190c66a838b7e407125426 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 372/870] python-picamera: rebuild for Python 3.8.

---
 srcpkgs/python-picamera/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-picamera/template b/srcpkgs/python-picamera/template
index 92bc2a57a6d..e3c9a17bfdc 100644
--- a/srcpkgs/python-picamera/template
+++ b/srcpkgs/python-picamera/template
@@ -1,7 +1,7 @@
 # Template file for 'python-picamera'
 pkgname=python-picamera
 version=1.13
-revision=1
+revision=2
 archs=noarch
 wrksrc="picamera-${version}"
 build_style=python-module

From 29473c016c6cd2d720c417714e89e9eaba3b321e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 373/870] python-pickleshare: rebuild for Python 3.8.

---
 srcpkgs/python-pickleshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pickleshare/template b/srcpkgs/python-pickleshare/template
index 2485c95230a..c1d86826c15 100644
--- a/srcpkgs/python-pickleshare/template
+++ b/srcpkgs/python-pickleshare/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pickleshare'
 pkgname=python-pickleshare
 version=0.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pickleshare-${version}"
 build_style=python-module

From 7c358da397b1273369bbeb98240a250157d4fe9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 374/870] python3-pillow-simd: rebuild for Python 3.8.

---
 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 7bab9fb20c3..4c756b07c79 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=5.3.0.post1
-revision=1
+revision=2
 archs="x86_64*"
 wrksrc="pillow-simd-${version}"
 build_style=python3-module

From 06b38c4e7a2c4a5ec22c8a9c530dbe56d846260f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 375/870] python-pip: rebuild for Python 3.8.

---
 srcpkgs/python-pip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pip/template b/srcpkgs/python-pip/template
index 75f11561816..9d4607095c7 100644
--- a/srcpkgs/python-pip/template
+++ b/srcpkgs/python-pip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pip'
 pkgname=python-pip
 version=19.2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pip-${version}"
 build_style=python-module

From 16067b9358434ea80b4b86a4dcd5a60f6b9e575b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 376/870] python-pipenv: rebuild for Python 3.8.

---
 srcpkgs/python-pipenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pipenv/template b/srcpkgs/python-pipenv/template
index e7ce3922875..210a0813673 100644
--- a/srcpkgs/python-pipenv/template
+++ b/srcpkgs/python-pipenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pipenv'
 pkgname=python-pipenv
 version=2018.11.26
-revision=3
+revision=4
 archs=noarch
 wrksrc="pipenv-${version}"
 build_style=python-module

From cb995aed1307a20f4ffe7746dbe54e4099ce9670 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 377/870] python-pkgconfig: rebuild for Python 3.8.

---
 srcpkgs/python-pkgconfig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pkgconfig/template b/srcpkgs/python-pkgconfig/template
index 13e1dcd3bf7..e9e5480907d 100644
--- a/srcpkgs/python-pkgconfig/template
+++ b/srcpkgs/python-pkgconfig/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pkgconfig'
 pkgname=python-pkgconfig
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pkgconfig-${version}"
 build_style=python-module

From f284340f35211b5c0879b7a5338c325e6cfe62da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 378/870] python-plotly: rebuild for Python 3.8.

---
 srcpkgs/python-plotly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-plotly/template b/srcpkgs/python-plotly/template
index fbbb3a3a520..1593b108f7a 100644
--- a/srcpkgs/python-plotly/template
+++ b/srcpkgs/python-plotly/template
@@ -1,7 +1,7 @@
 # Template file for 'python-plotly'
 pkgname=python-plotly
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 #wrksrc="${pkgname#*-}-${version}"
 wrksrc="plotly.py-${version}"

From ee0d515dc265db17d6c90029fc5ffad4fbfb17ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 379/870] python3-pluggy: rebuild for Python 3.8.

---
 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 37ebc2dae40..6f97cb25f21 100644
--- a/srcpkgs/python3-pluggy/template
+++ b/srcpkgs/python3-pluggy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pluggy'
 pkgname=python3-pluggy
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python3-module

From 60f109b4924812d3cbb6107b8d070a2fdb642962 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 380/870] python-ply: rebuild for Python 3.8.

---
 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 034fbcfa531..04a3defa6aa 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=1
+revision=2
 archs=noarch
 wrksrc="ply-${version}"
 build_style=python-module

From 95b0bc668a60a91dbbd68944bdc712d271e93723 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 381/870] python3-pmw: rebuild for Python 3.8.

---
 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 646e7129443..289b5ef1d0d 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=1
+revision=2
 archs=noarch
 short_desc="Python 3 Tkinter widget toolkit"
 homepage="http://pmw.sourceforge.net/"

From 760b2aa66f385f882c6da4545bc93c906a387d73 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 382/870] python-podcastparser: rebuild for Python 3.8.

---
 srcpkgs/python-podcastparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-podcastparser/template b/srcpkgs/python-podcastparser/template
index e4847d3ed65..61702f0d28b 100644
--- a/srcpkgs/python-podcastparser/template
+++ b/srcpkgs/python-podcastparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-podcastparser'
 pkgname=python-podcastparser
 version=0.6.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="podcastparser-${version}"
 build_style=python-module

From e0ad0641945e1dea937fb2ca555a61603e4560b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 383/870] python-polib: rebuild for Python 3.8.

---
 srcpkgs/python-polib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-polib/template b/srcpkgs/python-polib/template
index b0ade05d90d..8b8d4b66c68 100644
--- a/srcpkgs/python-polib/template
+++ b/srcpkgs/python-polib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-polib'
 pkgname=python-polib
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="polib-${version}"
 build_style=python-module

From 0030be5c9ea47539a72b9d5b5131abeac8412e47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 384/870] python-portend: rebuild for Python 3.8.

---
 srcpkgs/python-portend/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python-portend/template b/srcpkgs/python-portend/template
index 216ae413d09..0538f68083f 100644
--- a/srcpkgs/python-portend/template
+++ b/srcpkgs/python-portend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-portend'
 pkgname=python-portend
 version=2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="portend-${version}"
 build_style=python-module
@@ -14,7 +14,7 @@ license="MIT"
 homepage="https://github.com/jaraco/portend"
 changelog="https://github.com/jaraco/portend/blob/master/CHANGES.rst"
 distfiles="https://github.com/jaraco/portend/archive/${version}.tar.gz"
-checksum=61aa1a8fd76d64bd6093e4151a2bfeda177d5083bf2e2bcc92a053bd2104fde3
+checksum=c0740375a19168e117d291e7ed307e985d2c0e2dc732ca97444bc58a28076dfa
 
 pre_build() {
 	sed -i setup.py \

From 86c2211e1837e156275077b9efe1e25572514867 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 385/870] python-prctl: rebuild for Python 3.8.

---
 srcpkgs/python-prctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prctl/template b/srcpkgs/python-prctl/template
index 2b420d655cf..e8bf54b98fd 100644
--- a/srcpkgs/python-prctl/template
+++ b/srcpkgs/python-prctl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prctl'
 pkgname=python-prctl
 version=1.7
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="prctl.py"
 hostmakedepends="python-setuptools python3-setuptools libcap-devel"

From e7c53afc196d066076f9117158bd6a0b7b28bf52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 386/870] python3-precis-i18n: rebuild for Python 3.8.

---
 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 19612bc818b..be7bb0b0b56 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=1
+revision=2
 archs=noarch
 wrksrc="precis_i18n-${version}"
 build_style=python3-module

From fc6a6a6ae9e2454bc6e5aa117ab2f5f747f1c3d2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 387/870] python-pretend: rebuild for Python 3.8.

---
 srcpkgs/python-pretend/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pretend/template b/srcpkgs/python-pretend/template
index 9a647271b57..6d8063fc43a 100644
--- a/srcpkgs/python-pretend/template
+++ b/srcpkgs/python-pretend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pretend'
 pkgname=python-pretend
 version=1.0.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pretend-${version}"
 build_style=python-module

From 990266b8ce207f64d2a8e2f2f2c11473236e4a2d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 388/870] python-progress: rebuild for Python 3.8.

---
 srcpkgs/python-progress/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-progress/template b/srcpkgs/python-progress/template
index 7d3924e3618..0d6bd1db69d 100644
--- a/srcpkgs/python-progress/template
+++ b/srcpkgs/python-progress/template
@@ -1,7 +1,7 @@
 # Template file for 'python-progress'
 pkgname=python-progress
 version=1.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="progress-${version}"
 build_style=python-module

From 1259abece823637c18eaca058493cebdf15842ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 389/870] python-prometheus_client: rebuild for Python 3.8.

---
 srcpkgs/python-prometheus_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prometheus_client/template b/srcpkgs/python-prometheus_client/template
index 46df561f7d4..7b71fbeffc2 100644
--- a/srcpkgs/python-prometheus_client/template
+++ b/srcpkgs/python-prometheus_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prometheus_client'
 pkgname=python-prometheus_client
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="prometheus_client-${version}"
 build_style=python-module

From 67527aa7cf723b45f2c49017717337d56884bf4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 390/870] python-prompt_toolkit1: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit1/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit1/template b/srcpkgs/python-prompt_toolkit1/template
index d117d620ba5..7afe6179f33 100644
--- a/srcpkgs/python-prompt_toolkit1/template
+++ b/srcpkgs/python-prompt_toolkit1/template
@@ -2,7 +2,7 @@
 pkgname=python-prompt_toolkit1
 reverts="2.0.9_1"
 version=1.0.15
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From ad672131c8ab27e3e4dfa04ab7264c23d46f206e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 391/870] python-prompt_toolkit2: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit2/template b/srcpkgs/python-prompt_toolkit2/template
index 0fa71fa06dc..d7f2fd11e14 100644
--- a/srcpkgs/python-prompt_toolkit2/template
+++ b/srcpkgs/python-prompt_toolkit2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prompt_toolkit2'
 pkgname=python-prompt_toolkit2
 version=2.0.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From 2d3dfe28989a26dbea6bd90097a7a4046839373e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 392/870] python-proselint: rebuild for Python 3.8.

---
 srcpkgs/python-proselint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-proselint/template b/srcpkgs/python-proselint/template
index c017c497386..b1da90de474 100644
--- a/srcpkgs/python-proselint/template
+++ b/srcpkgs/python-proselint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-proselint'
 pkgname=python-proselint
 version=0.10.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="proselint-${version}"
 build_style=python-module

From 3dceefa27e529cfd28f51c8b96cec007bd4464e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 393/870] python-protobuf: rebuild for Python 3.8.

---
 srcpkgs/python-protobuf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-protobuf/template b/srcpkgs/python-protobuf/template
index 4b736f1e7af..7dbed97fb76 100644
--- a/srcpkgs/python-protobuf/template
+++ b/srcpkgs/python-protobuf/template
@@ -1,7 +1,7 @@
 # Template file for 'python-protobuf'
 pkgname=python-protobuf
 version=3.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="protobuf-${version}"
 build_style=python-module

From abc13cfff04878580efaf4333ca9548112b11049 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 394/870] python-psutil: rebuild for Python 3.8.

---
 srcpkgs/python-psutil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psutil/template b/srcpkgs/python-psutil/template
index 96cbb3c399f..11353ed2179 100644
--- a/srcpkgs/python-psutil/template
+++ b/srcpkgs/python-psutil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psutil'
 pkgname=python-psutil
 version=5.6.3
-revision=1
+revision=2
 wrksrc="psutil-${version}"
 build_style=python-module
 pycompile_module="psutil"

From 970bcf29dafb825894593f644c2fb7b4f1b86aff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 395/870] python-psycopg2: rebuild for Python 3.8.

---
 srcpkgs/python-psycopg2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psycopg2/template b/srcpkgs/python-psycopg2/template
index f41de2880e6..14b28b8aed1 100644
--- a/srcpkgs/python-psycopg2/template
+++ b/srcpkgs/python-psycopg2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psycopg2'
 pkgname=python-psycopg2
 version=2.8.3
-revision=1
+revision=2
 wrksrc="psycopg2-${version}"
 build_style=python-module
 pycompile_module="psycopg2"

From f987fad321d899f07d159588838ad3f3bfd1eb12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 396/870] python-ptyprocess: rebuild for Python 3.8.

---
 srcpkgs/python-ptyprocess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ptyprocess/template b/srcpkgs/python-ptyprocess/template
index 04c4cf89391..fd2e51fa3ac 100644
--- a/srcpkgs/python-ptyprocess/template
+++ b/srcpkgs/python-ptyprocess/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ptyprocess'
 pkgname=python-ptyprocess
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ptyprocess-${version}"
 build_style=python-module

From 6854ff4b103875e8ed393d695b71afd7a2589626 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 397/870] python3-pulsectl: rebuild for Python 3.8.

---
 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 429dd1abe45..045afdb411b 100644
--- a/srcpkgs/python3-pulsectl/template
+++ b/srcpkgs/python3-pulsectl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pulsectl'
 pkgname=python3-pulsectl
 version=19.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pulsectl-${version}"
 build_style=python3-module

From e8331ef1c889bc2b1756c6ed55a1cc93186445af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 398/870] python-py: rebuild for Python 3.8.

---
 srcpkgs/python-py/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-py/template b/srcpkgs/python-py/template
index 99644bc228a..07a1ae2a21b 100644
--- a/srcpkgs/python-py/template
+++ b/srcpkgs/python-py/template
@@ -1,7 +1,7 @@
 # Template file for 'python-py'
 pkgname=python-py
 version=1.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="py-${version}"
 build_style=python-module

From 1f71c5025d9cb40d86e4245b6a90731b3f25c6fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 399/870] python-pyPEG2: rebuild for Python 3.8.

---
 srcpkgs/python-pyPEG2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyPEG2/template b/srcpkgs/python-pyPEG2/template
index 113948af730..6ba175687f1 100644
--- a/srcpkgs/python-pyPEG2/template
+++ b/srcpkgs/python-pyPEG2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyPEG2'
 pkgname=python-pyPEG2
 version=2.15.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 3f82483327ba7958b0a6f8b67e63abf009c360ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 400/870] python-pyacoustid: rebuild for Python 3.8.

---
 srcpkgs/python-pyacoustid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyacoustid/template b/srcpkgs/python-pyacoustid/template
index 068d3d52649..d5b2d967f4e 100644
--- a/srcpkgs/python-pyacoustid/template
+++ b/srcpkgs/python-pyacoustid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyacoustid'
 pkgname=python-pyacoustid
 version=1.1.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyacoustid-${version}"
 build_style=python-module

From da477a37411d7cf0d00da2dea60d734072705be7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 401/870] python-pyaes: rebuild for Python 3.8.

---
 srcpkgs/python-pyaes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyaes/template b/srcpkgs/python-pyaes/template
index a8c812a9e01..d31766d0481 100644
--- a/srcpkgs/python-pyaes/template
+++ b/srcpkgs/python-pyaes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyaes'
 pkgname=python-pyaes
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyaes-${version}"
 build_style=python-module

From 9e2b6fe7e7b67777d70eb25705c27d4ed6462a3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 402/870] python-pyasn1: rebuild for Python 3.8.

---
 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 510dfa09816..fcddad43633 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyasn1-${version}"
 build_style=python-module

From 712c6a81632d8741a302138a46ffd3b1c8fb079f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 403/870] python-pyasn1-modules: rebuild for Python 3.8.

---
 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 bc19e4940ed..b142819a272 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 989e8e1bc0a51f2fa1a88ec8f99eae20dd3e21ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 404/870] python3-pycares: rebuild for Python 3.8.

---
 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 c52702904b4..ed82808bada 100644
--- a/srcpkgs/python3-pycares/template
+++ b/srcpkgs/python3-pycares/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pycares'
 pkgname=python3-pycares
 version=2.3.0
-revision=2
+revision=3
 wrksrc="pycares-${version}"
 build_style=python3-module
 pycompile_module="pycares"

From 0885c6a30ff0765b465e0e4c84803b48b9090dc5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 405/870] python-pycodestyle: rebuild for Python 3.8.

---
 srcpkgs/python-pycodestyle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycodestyle/template b/srcpkgs/python-pycodestyle/template
index ca20d8e0c97..08bc8c8bec7 100644
--- a/srcpkgs/python-pycodestyle/template
+++ b/srcpkgs/python-pycodestyle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycodestyle'
 pkgname=python-pycodestyle
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycodestyle-${version}"
 build_style=python-module

From 61d0268320bb8306c2b2823a663588c885a01df6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 406/870] python-pycountry: rebuild for Python 3.8.

---
 srcpkgs/python-pycountry/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycountry/template b/srcpkgs/python-pycountry/template
index 88a0025f258..205db6240b7 100644
--- a/srcpkgs/python-pycountry/template
+++ b/srcpkgs/python-pycountry/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycountry'
 pkgname=python-pycountry
 version=18.12.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycountry-${version}"
 build_style=python-module

From e3a689e939cf482e09d50cf25b8f244cbec3dc12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 407/870] python-pycparser: rebuild for Python 3.8.

---
 srcpkgs/python-pycparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycparser/template b/srcpkgs/python-pycparser/template
index a521b3494ab..d2e83aa79b2 100644
--- a/srcpkgs/python-pycparser/template
+++ b/srcpkgs/python-pycparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycparser'
 pkgname=python-pycparser
 version=2.19
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycparser-${version}"
 build_style=python-module

From a86a5e2a75c91a868bf9b10f7ad9d86ca4df85d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 408/870] python-pycryptodome: rebuild for Python 3.8.

---
 srcpkgs/python-pycryptodome/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycryptodome/template b/srcpkgs/python-pycryptodome/template
index f01b5731c45..a4368d61b39 100644
--- a/srcpkgs/python-pycryptodome/template
+++ b/srcpkgs/python-pycryptodome/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycryptodome'
 pkgname=python-pycryptodome
 version=3.9.0
-revision=1
+revision=2
 wrksrc="pycryptodome-${version}"
 build_style=python-module
 pycompile_module="Crypto"

From 0cd2d63524942e2cfe5220436720dab24ef75308 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 409/870] python-pyelftools: rebuild for Python 3.8.

---
 srcpkgs/python-pyelftools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyelftools/template b/srcpkgs/python-pyelftools/template
index a6e9e9b644e..193650442fc 100644
--- a/srcpkgs/python-pyelftools/template
+++ b/srcpkgs/python-pyelftools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyelftools'
 pkgname=python-pyelftools
 version=0.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyelftools-${version}"
 build_style=python-module

From 61ae993767f544e608a601e6727e58b8c73400fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 410/870] python3-pyfiglet: rebuild for Python 3.8.

---
 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 d00b4fda62a..a4a67b12d42 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=1
+revision=2
 archs=noarch
 wrksrc="pyfiglet-${version}"
 build_style="python3-module"

From 7f5bd3a27f56badc9d95d3b2b7a684604262af1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 411/870] python-pyflakes: rebuild for Python 3.8.

---
 srcpkgs/python-pyflakes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyflakes/template b/srcpkgs/python-pyflakes/template
index 86d477c47f2..19229ebb3a4 100644
--- a/srcpkgs/python-pyflakes/template
+++ b/srcpkgs/python-pyflakes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyflakes'
 pkgname=python-pyflakes
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyflakes-${version}"
 build_style=python-module

From a811c56d34b1f53ac8aeca03f5247410137fe8d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 412/870] python-pygame: rebuild for Python 3.8.

---
 srcpkgs/python-pygame/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pygame/template b/srcpkgs/python-pygame/template
index a510333df6e..a900d62dbe3 100644
--- a/srcpkgs/python-pygame/template
+++ b/srcpkgs/python-pygame/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pygame'
 pkgname=python-pygame
 version=1.9.4
-revision=2
+revision=3
 wrksrc="pygame-${version}"
 build_style=python-module
 pycompile_module="pygame"

From e62822b2e5fa56868e80f10a019c7a0d66abbcbd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 413/870] python-pyglet: rebuild for Python 3.8.

---
 srcpkgs/python-pyglet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyglet/template b/srcpkgs/python-pyglet/template
index f8315bdf616..ee6ed16064c 100644
--- a/srcpkgs/python-pyglet/template
+++ b/srcpkgs/python-pyglet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyglet'
 pkgname=python-pyglet
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyglet-${version}"
 build_style=python-module

From 1f0bf2cea3a10c9982132fbe81c5ebd884defa35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 414/870] python3-pykeepass: rebuild for Python 3.8.

---
 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 c0e0fd4db41..135da6fea65 100644
--- a/srcpkgs/python3-pykeepass/template
+++ b/srcpkgs/python3-pykeepass/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pykeepass'
 pkgname=python3-pykeepass
 version=3.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="pykeepass-${version}"
 build_style=python3-module

From f2d7f9a6199d6780975ad9efb639642e96acc8c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 415/870] python3-pykwalify: rebuild for Python 3.8.

---
 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 27bc0c37355..b3727aba651 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pykwalify-${version}"
 build_style=python3-module

From cb348b8cc013bee10cb1adcdd5b9dac8e8f37a83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 416/870] python3-pylast: rebuild for Python 3.8.

---
 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 187b51943a8..60184348d80 100644
--- a/srcpkgs/python3-pylast/template
+++ b/srcpkgs/python3-pylast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylast'
 pkgname=python3-pylast
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylast-${version}"
 build_style=python3-module

From 6629ec0088134c22cfb115f29fd4a90a9b38e7a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 417/870] python3-pylibgen: rebuild for Python 3.8.

---
 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 641bf649c17..540ccb32790 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylibgen-${version}"
 build_style=python3-module

From 953751fa6deeafefea78df4f5ec27ee5c5c9902d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 418/870] python3-pylint: rebuild for Python 3.8.

---
 srcpkgs/python3-pylint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pylint/template b/srcpkgs/python3-pylint/template
index 6c8800069f0..315dbffb3fc 100644
--- a/srcpkgs/python3-pylint/template
+++ b/srcpkgs/python3-pylint/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylint'
 pkgname=python3-pylint
 version=2.3.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="pylint-${version}"
 build_style=python3-module

From 96bc4e17e1f144c3528e0ec3b455d501c2c3efdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 419/870] python-pynacl: rebuild for Python 3.8.

---
 srcpkgs/python-pynacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pynacl/template b/srcpkgs/python-pynacl/template
index 6ead91820b1..7a7fe246821 100644
--- a/srcpkgs/python-pynacl/template
+++ b/srcpkgs/python-pynacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pynacl'
 pkgname=python-pynacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python-module
 pycompile_module="nacl"

From ec1da9dfd353e059b23780a676ef1561f56f9b2e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 420/870] python-pyotp: rebuild for Python 3.8.

---
 srcpkgs/python-pyotp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyotp/template b/srcpkgs/python-pyotp/template
index 54714ee2ebb..b70bd73d4aa 100644
--- a/srcpkgs/python-pyotp/template
+++ b/srcpkgs/python-pyotp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyotp'
 pkgname=python-pyotp
 version=2.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyotp-${version}"
 build_style=python-module

From 3c83515599af94f7483a3e165f03547f9daa2835 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 421/870] python-pyperclip: rebuild for Python 3.8.

---
 srcpkgs/python-pyperclip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyperclip/template b/srcpkgs/python-pyperclip/template
index 512dc8d3dfb..b173f1479a5 100644
--- a/srcpkgs/python-pyperclip/template
+++ b/srcpkgs/python-pyperclip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyperclip'
 pkgname=python-pyperclip
 version=1.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=pyperclip-${version}
 build_style=python-module

From 6d17f7510d6ce4ec430e8bf72567fecdbd521681 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 422/870] python-pyqtgraph: rebuild for Python 3.8.

---
 srcpkgs/python-pyqtgraph/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyqtgraph/template b/srcpkgs/python-pyqtgraph/template
index f90e2b15319..1bea9c2ffdf 100644
--- a/srcpkgs/python-pyqtgraph/template
+++ b/srcpkgs/python-pyqtgraph/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyqtgraph'
 pkgname=python-pyqtgraph
 version=0.10.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${pkgname#*-}-${version}"
 build_style=python-module

From fff21c3dd38242e2992b276e00f6970f96a34293 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 423/870] python-pyrfc3339: rebuild for Python 3.8.

---
 srcpkgs/python-pyrfc3339/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyrfc3339/template b/srcpkgs/python-pyrfc3339/template
index 618e46d1c4b..cd81c4d0624 100644
--- a/srcpkgs/python-pyrfc3339/template
+++ b/srcpkgs/python-pyrfc3339/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyrfc3339'
 pkgname=python-pyrfc3339
 version=1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="pyrfc3339"

From bdfc6ef4d47bd373ff649510c96f640b48da738a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 424/870] python-pyscss: rebuild for Python 3.8.

---
 srcpkgs/python-pyscss/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyscss/template b/srcpkgs/python-pyscss/template
index 1f7d8b7d8cd..1a8e9c44d7d 100644
--- a/srcpkgs/python-pyscss/template
+++ b/srcpkgs/python-pyscss/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyscss'
 pkgname=python-pyscss
 version=1.3.5
-revision=6
+revision=7
 wrksrc="pyScss-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pcre-devel"

From 6bdfad32f6894df0a7f3eb185662fa32228408ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 425/870] python3-pysdl2: rebuild for Python 3.8.

---
 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 d59ea7d7fa2..3efdca5b667 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=1
+revision=2
 archs=noarch
 wrksrc="py-sdl2-rel_${version//./_}"
 build_style=python3-module

From 67dab081767478a600fbc44d5333dc2746a683ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 426/870] python-pyserial: rebuild for Python 3.8.

---
 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 8808e76d206..354be493b16 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=2
+revision=3
 archs=noarch
 wrksrc="pyserial-${version}"
 build_style=python-module

From a6914f6aa35af001fd954260658bed6e1e5df2bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 427/870] python3-pyside2: rebuild for Python 3.8.

---
 srcpkgs/python3-pyside2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pyside2/template b/srcpkgs/python3-pyside2/template
index a5d60b17568..1da3400f239 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.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From deee942f64ef5e0e70f6a45a7f9e3a2593d53add Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 428/870] python3-pysigset: rebuild for Python 3.8.

---
 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 8de87145a09..50d9162ea70 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.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysigset-${version}"
 build_style=python3-module

From 913752d5b84f0054c829fc060939c366bf5b28cb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 429/870] python-pysocks: rebuild for Python 3.8.

---
 srcpkgs/python-pysocks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysocks/template b/srcpkgs/python-pysocks/template
index 68a27819e3d..d9b216aeab8 100644
--- a/srcpkgs/python-pysocks/template
+++ b/srcpkgs/python-pysocks/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysocks'
 pkgname=python-pysocks
 version=1.6.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="PySocks-${version}"
 build_style=python-module

From e256b35c573b66ccaaffbf92ee92ecad250db3c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 430/870] python3-pysol_cards: rebuild for Python 3.8.

---
 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 e03d92fe077..a37429754a2 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.8.6
-revision=1
+revision=2
 wrksrc="pysol_cards-${version}"
 build_style=python3-module
 pycompile_module="pysol_cards"

From d29dab0ddee296649a1f4ace5c33678cc349d6ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 431/870] python-pysrt: rebuild for Python 3.8.

---
 srcpkgs/python-pysrt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysrt/template b/srcpkgs/python-pysrt/template
index 061435a52c7..7e154825bef 100644
--- a/srcpkgs/python-pysrt/template
+++ b/srcpkgs/python-pysrt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysrt'
 pkgname=python-pysrt
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysrt-${version}"
 build_style=python-module

From 4ba7eb802460f8e4e15f1389bebd64237c6f1aec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 432/870] python-pystache: rebuild for Python 3.8.

---
 srcpkgs/python-pystache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pystache/template b/srcpkgs/python-pystache/template
index 13f8b04aa88..c1a5bcd57d9 100644
--- a/srcpkgs/python-pystache/template
+++ b/srcpkgs/python-pystache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pystache'
 pkgname=python-pystache
 version=0.5.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pystache-${version}"
 build_style=python-module

From a6a1d8010f3909cc551f70485efc660b22168f46 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 433/870] python-pyte: rebuild for Python 3.8.

---
 srcpkgs/python-pyte/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyte/template b/srcpkgs/python-pyte/template
index 43b708adc66..76efbec91d1 100644
--- a/srcpkgs/python-pyte/template
+++ b/srcpkgs/python-pyte/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyte'
 pkgname=python-pyte
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyte-${version}"
 build_style=python-module

From 03679e357b0bdbd90ddbb6deba5693594ef9d592 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 434/870] python-pytest: rebuild for Python 3.8.

---
 srcpkgs/python-pytest/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest/template b/srcpkgs/python-pytest/template
index 6481f21e677..d5c246599c6 100644
--- a/srcpkgs/python-pytest/template
+++ b/srcpkgs/python-pytest/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest'
 pkgname=python-pytest
 version=3.7.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From d8ff8818fa4f90c63cf468feb2bba5d8b9dca026 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 435/870] python3-pytest-asyncio: rebuild for Python 3.8.

---
 srcpkgs/python3-pytest-asyncio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template
index bd104f99e2c..0c90d33a9e5 100644
--- a/srcpkgs/python3-pytest-asyncio/template
+++ b/srcpkgs/python3-pytest-asyncio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pytest-asyncio'
 pkgname=python3-pytest-asyncio
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytest-asyncio-${version}"
 build_style=python3-module

From 8bdff4905b1d2e832656b8dde532b566e516752c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 436/870] python-pytest-fixture-config: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-fixture-config/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-fixture-config/template b/srcpkgs/python-pytest-fixture-config/template
index cd3e38a592a..14255af8a35 100644
--- a/srcpkgs/python-pytest-fixture-config/template
+++ b/srcpkgs/python-pytest-fixture-config/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-fixture-config'
 pkgname=python-pytest-fixture-config
 version=1.3.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 89c93c6cebe4d9e57d61a6e1c0d1782514496073 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 437/870] python-pytest-mock: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-mock/template b/srcpkgs/python-pytest-mock/template
index f3dc85810b6..240e8773aaa 100644
--- a/srcpkgs/python-pytest-mock/template
+++ b/srcpkgs/python-pytest-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-mock'
 pkgname=python-pytest-mock
 version=1.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From e10ffc843814c368a7fd76e24e6afa8512ce198c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 438/870] python-pytz: rebuild for Python 3.8.

---
 srcpkgs/python-pytz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytz/template b/srcpkgs/python-pytz/template
index d6becf829a7..40f582962c8 100644
--- a/srcpkgs/python-pytz/template
+++ b/srcpkgs/python-pytz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytz'
 pkgname=python-pytz
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytz-${version}"
 build_style=python-module

From 562767d788b8e163bcde2dbd45de9eca2899bd90 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 439/870] python-pyudev: rebuild for Python 3.8.

---
 srcpkgs/python-pyudev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyudev/template b/srcpkgs/python-pyudev/template
index d059b7882a2..2ec53088636 100644
--- a/srcpkgs/python-pyudev/template
+++ b/srcpkgs/python-pyudev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyudev'
 pkgname=python-pyudev
 version=0.21.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyudev-${version}"
 build_style=python-module

From bb91a3d4616a0e9dbf1a34b271d62527a455f4ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 440/870] python3-pyx: rebuild for Python 3.8.

---
 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 87608c43428..89963bed89f 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.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="PyX-${version}"
 build_style=python3-module

From caa3ad83cde6d2b66687ae0ac2bb87dfd8eb100f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 441/870] python-pyzbar: rebuild for Python 3.8.

---
 srcpkgs/python-pyzbar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzbar/template b/srcpkgs/python-pyzbar/template
index 06ae37a5708..35b568eb4e6 100644
--- a/srcpkgs/python-pyzbar/template
+++ b/srcpkgs/python-pyzbar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzbar'
 pkgname=python-pyzbar
 version=0.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyzbar-${version}"
 build_style=python-module

From 83e0ba8fd12c3f07b4f3c2f8109ff0cd9a69353b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 442/870] python-pyzmq: rebuild for Python 3.8.

---
 srcpkgs/python-pyzmq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzmq/template b/srcpkgs/python-pyzmq/template
index 859aab5983d..27dbe29e516 100644
--- a/srcpkgs/python-pyzmq/template
+++ b/srcpkgs/python-pyzmq/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzmq'
 pkgname=python-pyzmq
 version=18.0.1
-revision=1
+revision=2
 wrksrc="pyzmq-${version}"
 build_style=python-module
 make_build_args="--zmq=${XBPS_CROSS_BASE}/usr"

From 2d71150f372801e322d8ee5f31b2bc67795fc3a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 443/870] python-qrcode: rebuild for Python 3.8.

---
 srcpkgs/python-qrcode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-qrcode/template b/srcpkgs/python-qrcode/template
index 9deb485855f..bf35c82757e 100644
--- a/srcpkgs/python-qrcode/template
+++ b/srcpkgs/python-qrcode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-qrcode'
 pkgname=python-qrcode
 version=6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="qrcode-${version}"
 build_style=python-module

From 55eeefa7bb378b38024ce5c57d228c5d2c24875f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 444/870] python-random2: rebuild for Python 3.8.

---
 srcpkgs/python-random2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-random2/template b/srcpkgs/python-random2/template
index 92f36fee139..2603cae3584 100644
--- a/srcpkgs/python-random2/template
+++ b/srcpkgs/python-random2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-random2'
 pkgname=python-random2
 version=1.0.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="random2-${version}"
 build_style=python-module

From 4aa520f994404a836b859a95bf53280ec662d779 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 445/870] python-rarfile: rebuild for Python 3.8.

---
 srcpkgs/python-rarfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rarfile/template b/srcpkgs/python-rarfile/template
index e0c597c1fb1..e3b6f3e2887 100644
--- a/srcpkgs/python-rarfile/template
+++ b/srcpkgs/python-rarfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rarfile'
 pkgname=python-rarfile
 version=3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="rarfile-${version}"
 build_style=python-module

From 77edc413dd0a2b7d7423d47946137d1db7452b91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 446/870] python-raven: rebuild for Python 3.8.

---
 srcpkgs/python-raven/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-raven/template b/srcpkgs/python-raven/template
index eec4e5f49b6..87382c21602 100644
--- a/srcpkgs/python-raven/template
+++ b/srcpkgs/python-raven/template
@@ -1,7 +1,7 @@
 # Template file for 'python-raven'
 pkgname=python-raven
 version=6.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="raven-${version}"
 build_style=python-module

From 0fd244bc29d49109b475295b68c11c496626bd43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 447/870] python-rdflib: rebuild for Python 3.8.

---
 srcpkgs/python-rdflib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rdflib/template b/srcpkgs/python-rdflib/template
index 0512abb0e5a..f676dedfb2f 100644
--- a/srcpkgs/python-rdflib/template
+++ b/srcpkgs/python-rdflib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rdflib'
 pkgname=python-rdflib
 version=4.2.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="rdflib-${version}"
 build_style=python-module

From 52682c54b0a7808306dcb6c0c9af5436d056d6a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 448/870] python-readability-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-readability-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-readability-lxml/template b/srcpkgs/python-readability-lxml/template
index ddf0602b730..19dadaa336f 100644
--- a/srcpkgs/python-readability-lxml/template
+++ b/srcpkgs/python-readability-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-readability-lxml'
 pkgname=python-readability-lxml
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="readability-lxml-${version}"
 build_style=python-module

From 5b239aeb5613465b0d414e14b8b37a83f65232fc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 449/870] python3-readlike: rebuild for Python 3.8.

---
 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 cbba969b076..43159962442 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=1
+revision=2
 archs=noarch
 wrksrc=readlike-${version}
 build_style=python3-module

From 10ff7da432e0f1563ed8c4feb921648f20e75246 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 450/870] python-rebulk: rebuild for Python 3.8.

---
 srcpkgs/python-rebulk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rebulk/template b/srcpkgs/python-rebulk/template
index 1cf6cf623c8..8f9c2621304 100644
--- a/srcpkgs/python-rebulk/template
+++ b/srcpkgs/python-rebulk/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rebulk'
 pkgname=python-rebulk
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rebulk-${version}"
 build_style=python-module

From b720f89f9fb6ecb79aa43ff92f151239049cb9c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 451/870] python-redis: rebuild for Python 3.8.

---
 srcpkgs/python-redis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-redis/template b/srcpkgs/python-redis/template
index f57c0d841b3..b7e773fde54 100644
--- a/srcpkgs/python-redis/template
+++ b/srcpkgs/python-redis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-redis'
 pkgname=python-redis
 version=2.10.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="redis-${version}"
 build_style=python-module

From 90d47f03a3f7a55f623c0b5019b0b58b6169aae5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 452/870] python-regex: rebuild for Python 3.8.

---
 srcpkgs/python-regex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-regex/template b/srcpkgs/python-regex/template
index 33e99b0127b..7a624db9477 100644
--- a/srcpkgs/python-regex/template
+++ b/srcpkgs/python-regex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-regex'
 pkgname=python-regex
 version=2019.08.19
-revision=1
+revision=2
 wrksrc="regex-${version}"
 build_style=python-module
 pycompile_module="_regex_core.py regex.py test_regex.py"

From e132fc559392a2f2a5268100218ef2061759c476 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 453/870] python-rencode: rebuild for Python 3.8.

---
 srcpkgs/python-rencode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rencode/template b/srcpkgs/python-rencode/template
index 7176038a60a..021e1d414b8 100644
--- a/srcpkgs/python-rencode/template
+++ b/srcpkgs/python-rencode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rencode'
 pkgname=python-rencode
 version=1.0.6
-revision=2
+revision=3
 wrksrc="rencode-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"

From 635743944483bd5fdbf4a909ef4874532f1035b9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 454/870] python-reportlab: rebuild for Python 3.8.

---
 srcpkgs/python-reportlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-reportlab/template b/srcpkgs/python-reportlab/template
index 7f153d65a2a..3915767b6d3 100644
--- a/srcpkgs/python-reportlab/template
+++ b/srcpkgs/python-reportlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-reportlab'
 pkgname=python-reportlab
 version=3.5.23
-revision=1
+revision=2
 wrksrc="reportlab-${version}"
 build_style=python-module
 pycompile_module="reportlab"

From 4a6d7b1e5e0d64a6834cc210da11806cbe217453 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 455/870] python-requests: rebuild for Python 3.8.

---
 srcpkgs/python-requests/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests/template b/srcpkgs/python-requests/template
index fc806b611e9..73d2d5945ef 100644
--- a/srcpkgs/python-requests/template
+++ b/srcpkgs/python-requests/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests'
 pkgname=python-requests
 version=2.22.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-${version}"
 build_style=python-module

From 61f6560b710773eab8296ef28bd943f5dc0d290d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 456/870] python-requests-mock: rebuild for Python 3.8.

---
 srcpkgs/python-requests-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-mock/template b/srcpkgs/python-requests-mock/template
index 5b89b5ed3b8..2d1410fcd1b 100644
--- a/srcpkgs/python-requests-mock/template
+++ b/srcpkgs/python-requests-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-mock'
 pkgname=python-requests-mock
 version=1.5.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="requests-mock-${version}"
 build_style=python-module

From f4f04d85ce7abb39fbbf306bc3c1dcfc467cdf14 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 457/870] python-requests-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-requests-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-oauthlib/template b/srcpkgs/python-requests-oauthlib/template
index b011ea17a36..8cd838090a7 100644
--- a/srcpkgs/python-requests-oauthlib/template
+++ b/srcpkgs/python-requests-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-oauthlib'
 pkgname=python-requests-oauthlib
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5853f21b57bde4c4e66293b132fba4fc03804518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 458/870] python-requests-toolbelt: rebuild for Python 3.8.

---
 srcpkgs/python-requests-toolbelt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-toolbelt/template b/srcpkgs/python-requests-toolbelt/template
index 3ba66a0a007..13a81586221 100644
--- a/srcpkgs/python-requests-toolbelt/template
+++ b/srcpkgs/python-requests-toolbelt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-toolbelt'
 pkgname=python-requests-toolbelt
 version=0.9.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 14171483829854051f0c8030562c1052094d78c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 459/870] python3-requests-unixsocket: rebuild for Python 3.8.

---
 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 ec9e1074566..fd389ec2d13 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-unixsocket-${version}"
 build_style=python3-module

From 9b589212b423bd7e2dfbb7ab7ef63c65b9dd07cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 460/870] python-rfc6555: rebuild for Python 3.8.

---
 srcpkgs/python-rfc6555/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rfc6555/template b/srcpkgs/python-rfc6555/template
index c3babc25b93..2522872cc32 100644
--- a/srcpkgs/python-rfc6555/template
+++ b/srcpkgs/python-rfc6555/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rfc6555'
 pkgname=python-rfc6555
 version=0.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rfc6555-${version}"
 build_style=python-module

From a399a96d8293a9387f5648001a03178d2550059b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 461/870] python-ripe-atlas-cousteau: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-cousteau/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-cousteau/template b/srcpkgs/python-ripe-atlas-cousteau/template
index ac16300fe3d..72f32a9da0d 100644
--- a/srcpkgs/python-ripe-atlas-cousteau/template
+++ b/srcpkgs/python-ripe-atlas-cousteau/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-cousteau'
 pkgname=python-ripe-atlas-cousteau
 version=1.4.2
-revision=1
+revision=2
 build_style=python-module
 archs=noarch
 pycompile_module="ripe/atlas/cousteau"

From 4c2ddc085f45f52b438013ad3d494f8f59859504 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 462/870] python-ripe-atlas-sagan: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-sagan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-sagan/template b/srcpkgs/python-ripe-atlas-sagan/template
index 60a9b883b93..22abb48af46 100644
--- a/srcpkgs/python-ripe-atlas-sagan/template
+++ b/srcpkgs/python-ripe-atlas-sagan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-sagan'
 pkgname=python-ripe-atlas-sagan
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ripe.atlas.sagan-${version}"
 build_style=python-module

From 10e7db3d51d8370e317d667edc372d0fcfd5bad9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 463/870] python-rsa: rebuild for Python 3.8.

---
 srcpkgs/python-rsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rsa/template b/srcpkgs/python-rsa/template
index a4ae59846ff..11e9bf2c60d 100644
--- a/srcpkgs/python-rsa/template
+++ b/srcpkgs/python-rsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rsa'
 pkgname=python-rsa
 version=4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a3bbda3918c5b4bb668860ba5bbd81f83f1a4925 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 464/870] python3-rsistent: rebuild for Python 3.8.

---
 srcpkgs/python3-rsistent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-rsistent/template b/srcpkgs/python3-rsistent/template
index 13019f472cd..7897e107b2b 100644
--- a/srcpkgs/python3-rsistent/template
+++ b/srcpkgs/python3-rsistent/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-rsistent'
 pkgname=python3-rsistent
 version=0.15.4
-revision=1
+revision=2
 wrksrc="pyrsistent-${version}"
 build_style=python3-module
 pycompile_module="pyrsistent"

From 7d4c9082b7051c6ce978ca21f34f138189c7f2d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 465/870] python3-rss2email: rebuild for Python 3.8.

---
 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 d07984d33d8..34e7d4e65a6 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.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="rss2email-${version}"
 build_style=python3-module

From a0a5e6df8a02d98f37c3c22c043adb325c8a8a62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 466/870] python-ruamel.yaml: rebuild for Python 3.8.

---
 srcpkgs/python-ruamel.yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ruamel.yaml/template b/srcpkgs/python-ruamel.yaml/template
index d86ddfc67c9..789f8a7acd2 100644
--- a/srcpkgs/python-ruamel.yaml/template
+++ b/srcpkgs/python-ruamel.yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ruamel.yaml'
 pkgname=python-ruamel.yaml
 version=0.15.92
-revision=1
+revision=2
 wrksrc="ruamel.yaml-${version}"
 build_style=python-module
 pycompile_module="ruamel/yaml"

From 6b579f083949bbd67a78d66ae983de1f36f03a82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 467/870] python3-s-tui: rebuild for Python 3.8.

---
 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 4c7db6ff3c9..85a945b1b09 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=0.8.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="s-tui-${version}"
 build_style=python3-module

From 5cc92799a690ba40dd26192e3f0182e07089683a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 468/870] python-s3transfer: rebuild for Python 3.8.

---
 srcpkgs/python-s3transfer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-s3transfer/template b/srcpkgs/python-s3transfer/template
index e306c3c3b1a..dd92eeff657 100644
--- a/srcpkgs/python-s3transfer/template
+++ b/srcpkgs/python-s3transfer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-s3transfer'
 pkgname=python-s3transfer
 version=0.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="s3transfer-${version}"
 build_style=python-module

From 2ec5386706a289e510b5b03e33cf74e0a23596a6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 469/870] python3-saml2: rebuild for Python 3.8.

---
 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 e94602a82ea..c0dabb5e9d0 100644
--- a/srcpkgs/python3-saml2/template
+++ b/srcpkgs/python3-saml2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-saml2'
 pkgname=python3-saml2
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysaml2-${version}"
 build_style=python3-module

From e856d28eb580f0af5442d11d24ffacdd7fade12b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 470/870] python-scandir: rebuild for Python 3.8.

---
 srcpkgs/python-scandir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scandir/template b/srcpkgs/python-scandir/template
index 774fac91b8f..b02fe6d0281 100644
--- a/srcpkgs/python-scandir/template
+++ b/srcpkgs/python-scandir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scandir'
 pkgname=python-scandir
 version=1.10.0
-revision=2
+revision=3
 wrksrc="scandir-${version}"
 build_style=python-module
 pycompile_module="scandir.py"

From 3b5e1eeb2ce0519b51592cebffc1bd89dce0f96c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 471/870] python3-scard: rebuild for Python 3.8.

---
 srcpkgs/python3-scard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scard/template b/srcpkgs/python3-scard/template
index 793f144a74b..279419ac3e3 100644
--- a/srcpkgs/python3-scard/template
+++ b/srcpkgs/python3-scard/template
@@ -2,7 +2,7 @@
 pkgname=python3-scard
 _pkgname=pyscard
 version=1.9.8
-revision=1
+revision=2
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module
 pycompile_module=smartcard

From f62ba61eaebce26c267e2d453d8e0ea6e005a285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 472/870] python3-scikit-learn: rebuild for Python 3.8.

---
 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 73799b9f420..8ac82167832 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.20.4
-revision=1
+revision=2
 wrksrc="scikit-learn-${version}"
 build_style=python3-module
 pycompile_module="sklearn"

From ccf4f6aa1bd0ba8aaf9499dcacb1320a77221004 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 473/870] python3-scipy: rebuild for Python 3.8.

---
 srcpkgs/python3-scipy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scipy/template b/srcpkgs/python3-scipy/template
index 291ac3734f1..2cef9ac33e1 100644
--- a/srcpkgs/python3-scipy/template
+++ b/srcpkgs/python3-scipy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-scipy'
 pkgname=python3-scipy
 version=1.3.1
-revision=1
+revision=2
 wrksrc="scipy-${version}"
 build_style=python3-module
 pycompile_module="scipy"

From 04cbe0c6403a4ecd9cda36e10bba5d06e472823d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 474/870] python-scour: rebuild for Python 3.8.

---
 srcpkgs/python-scour/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scour/template b/srcpkgs/python-scour/template
index b78cf37f057..0db5b157ce1 100644
--- a/srcpkgs/python-scour/template
+++ b/srcpkgs/python-scour/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scour'
 pkgname=python-scour
 version=0.37
-revision=1
+revision=2
 archs=noarch
 wrksrc="scour-${version}"
 build_style=python-module

From 0fd08871993ece59d562feb8472d05249ae1d76a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 475/870] python3-scruffy: rebuild for Python 3.8.

---
 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 e797b110f42..62a21a74eca 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="scruffy-${version}"
 build_style=python3-module

From 65cb259cf8f67f78fe484e4423fe0006aae17045 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 476/870] python-send2trash: rebuild for Python 3.8.

---
 srcpkgs/python-send2trash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-send2trash/template b/srcpkgs/python-send2trash/template
index 49c3a2b3d77..94f56545695 100644
--- a/srcpkgs/python-send2trash/template
+++ b/srcpkgs/python-send2trash/template
@@ -1,7 +1,7 @@
 # Template file for 'python-send2trash'
 pkgname=python-send2trash
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="send2trash-${version}"
 build_style=python-module

From 04a4413d706d49df8a415b9714091b0e4bb0fdfa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 477/870] python-serpent: rebuild for Python 3.8.

---
 srcpkgs/python-serpent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-serpent/template b/srcpkgs/python-serpent/template
index b60d390c1ab..a40f0d44515 100644
--- a/srcpkgs/python-serpent/template
+++ b/srcpkgs/python-serpent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-serpent'
 pkgname=python-serpent
 version=1.28
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38131f811a874463c71c55408ef6e629166a5b8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 478/870] python-service_identity: rebuild for Python 3.8.

---
 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 eae084c858f..e21a1520a75 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=1
+revision=2
 archs=noarch
 wrksrc="service_identity-${version}"
 build_style=python-module

From 9a538d41d8b848da9da43cd5d6f80428b7208be8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 479/870] setconf: rebuild for Python 3.8.

---
 srcpkgs/setconf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/setconf/template b/srcpkgs/setconf/template
index a3d22376a5b..1911c558c77 100644
--- a/srcpkgs/setconf/template
+++ b/srcpkgs/setconf/template
@@ -1,7 +1,7 @@
 # Template file for 'setconf'
 pkgname=setconf
 version=0.7.6
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="setconf.py"

From aacff3894cc42a49ab1becc06f64f23197302443 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 480/870] python-setproctitle: rebuild for Python 3.8.

---
 srcpkgs/python-setproctitle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setproctitle/template b/srcpkgs/python-setproctitle/template
index d0d41ae888d..c47e3a9db53 100644
--- a/srcpkgs/python-setproctitle/template
+++ b/srcpkgs/python-setproctitle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setproctitle'
 pkgname=python-setproctitle
 version=1.1.10
-revision=5
+revision=6
 wrksrc="setproctitle-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e2b8c2ac8d355cdb0f221b80ab39e2ef92beb3e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 481/870] python-setuptools: rebuild for Python 3.8.

---
 srcpkgs/python-setuptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setuptools/template b/srcpkgs/python-setuptools/template
index 382a9b45bcd..a172f8e8e09 100644
--- a/srcpkgs/python-setuptools/template
+++ b/srcpkgs/python-setuptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setuptools'
 pkgname=python-setuptools
 version=41.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python-module

From 5feb793ba33633318f41644f84b5ffd5428e2d4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 482/870] python-sh: rebuild for Python 3.8.

---
 srcpkgs/python-sh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sh/template b/srcpkgs/python-sh/template
index 1826986b25c..76985dc1f01 100644
--- a/srcpkgs/python-sh/template
+++ b/srcpkgs/python-sh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sh'
 pkgname=python-sh
 version=1.12.14
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From f0cfe151eea6fcf86d1196385a1ac0057a65ab48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 483/870] python-shapely: rebuild for Python 3.8.

---
 srcpkgs/python-shapely/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-shapely/template b/srcpkgs/python-shapely/template
index 25cc875a02c..114726838f9 100644
--- a/srcpkgs/python-shapely/template
+++ b/srcpkgs/python-shapely/template
@@ -1,7 +1,7 @@
 # Template file for 'python-shapely'
 pkgname=python-shapely
 version=1.7a1
-revision=2
+revision=3
 wrksrc="Shapely-${version}"
 build_style=python-module
 pycompile_module="shapely"

From 0908618383925caf43243de8097dbf6491149f8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 484/870] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index d552ce8432d..1f9c8043b46 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=4
+revision=5
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From 14af86f199e28c6eae170b10c1c662bd0184b73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 485/870] shiboken2: rebuild for Python 3.8.

---
 srcpkgs/shiboken2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken2/template b/srcpkgs/shiboken2/template
index 394d9ba4f94..a08edf3f2a0 100644
--- a/srcpkgs/shiboken2/template
+++ b/srcpkgs/shiboken2/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken2'
 pkgname=shiboken2
 version=5.11.2
-revision=2
+revision=3
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From 9ea535c3baf70c69a2bbe07d057742af1877d648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 486/870] python3-shodan: rebuild for Python 3.8.

---
 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 858a0b921f8..033b5a269ff 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.19.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="shodan-python-${version}"
 build_style=python3-module

From 76805ea236fc7f4ecd5948a492413602efff91e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 487/870] python3-signedjson: rebuild for Python 3.8.

---
 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 6f6fb339fd2..d8f9b06b22f 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-signedjson-${version}"
 build_style=python3-module

From 12e9d209470a13cdd9063e5544ffd00c5952138e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 488/870] python-simplebayes: rebuild for Python 3.8.

---
 srcpkgs/python-simplebayes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplebayes/template b/srcpkgs/python-simplebayes/template
index e76b94ad549..6c95222fa7e 100644
--- a/srcpkgs/python-simplebayes/template
+++ b/srcpkgs/python-simplebayes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplebayes'
 pkgname=python-simplebayes
 version=1.5.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="simplebayes-${version}"
 build_style=python-module

From d1ad830144a3e370bbac6e82affb1d06805dfdbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 489/870] python-simplegeneric: rebuild for Python 3.8.

---
 srcpkgs/python-simplegeneric/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplegeneric/template b/srcpkgs/python-simplegeneric/template
index 3dc4e1dda94..f352387fa1f 100644
--- a/srcpkgs/python-simplegeneric/template
+++ b/srcpkgs/python-simplegeneric/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplegeneric'
 pkgname=python-simplegeneric
 version=0.8.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="simplegeneric-${version}"
 build_style=python-module

From f6d990c1a1436b305f8b5af6f58c1f6430d96dc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 490/870] python-simplejson: rebuild for Python 3.8.

---
 srcpkgs/python-simplejson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplejson/template b/srcpkgs/python-simplejson/template
index b453ae952ba..1b8523d0d46 100644
--- a/srcpkgs/python-simplejson/template
+++ b/srcpkgs/python-simplejson/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplejson'
 pkgname=python-simplejson
 version=3.16.1
-revision=2
+revision=3
 wrksrc="simplejson-${version}"
 build_style=python-module
 pycompile_module="simplejson"

From b6f0878a2894ffdd731251a64a26cb1ddf40038a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 491/870] sip: rebuild for Python 3.8.

---
 srcpkgs/sip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sip/template b/srcpkgs/sip/template
index 9d09b823bb6..0e8a81000b1 100644
--- a/srcpkgs/sip/template
+++ b/srcpkgs/sip/template
@@ -1,7 +1,7 @@
 # Template file for 'sip'
 pkgname=sip
 version=4.19.18
-revision=1
+revision=2
 wrksrc="sip-${version}"
 hostmakedepends="python-devel python3-devel"
 makedepends="${hostmakedepends}"

From 5f24e47fb2b044495bbf0ee108d18220ad3b3bd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 492/870] python-six: rebuild for Python 3.8.

---
 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 c6d91f5ece9..a25323caa2a 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.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="six-${version}"
 build_style=python-module

From 09784cf129c5a66b731964fcda119a53dd9dbb7b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 493/870] python3-slixmpp: rebuild for Python 3.8.

---
 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 db367c3d0ab..cbbde6f394b 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.4.2
-revision=1
+revision=2
 wrksrc="slixmpp-${version}"
 build_style=python3-module
 pycompile_module="slixmpp"

From 5e4eb88ccd16957dc33f6923ae3a72151385e9ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 494/870] python3-slugify: rebuild for Python 3.8.

---
 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 44d37f2aed7..012bb98f063 100644
--- a/srcpkgs/python3-slugify/template
+++ b/srcpkgs/python3-slugify/template
@@ -3,7 +3,7 @@ pkgname=python3-slugify
 # Please don't update. Only required by Transifx-client,
 # doesn't work with newer versions
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-slugify-${version}"
 build_style=python3-module

From 3673d2d0b57421bb69e3ed7407630c26169fab96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 495/870] python-smbc: rebuild for Python 3.8.

---
 srcpkgs/python-smbc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smbc/template b/srcpkgs/python-smbc/template
index abc745f8982..6a280139a25 100644
--- a/srcpkgs/python-smbc/template
+++ b/srcpkgs/python-smbc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smbc'
 pkgname=python-smbc
 version=1.0.16
-revision=1
+revision=2
 wrksrc="pysmbc-${version}"
 build_style=python-module
 pycompile_module="smbc"

From 2e7eca88dff9a562419fb01bfafbdaf55a6c2bd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 496/870] python-smmap: rebuild for Python 3.8.

---
 srcpkgs/python-smmap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smmap/template b/srcpkgs/python-smmap/template
index 4aa0c37ff40..8c8ea952285 100644
--- a/srcpkgs/python-smmap/template
+++ b/srcpkgs/python-smmap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smmap'
 pkgname=python-smmap
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="smmap-${version}"
 build_style=python-module

From fd787d6092a892885c1a37ff836d919c3268746b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 497/870] python-snakeoil: rebuild for Python 3.8.

---
 srcpkgs/python-snakeoil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snakeoil/template b/srcpkgs/python-snakeoil/template
index 9c98461c555..79e964d9254 100644
--- a/srcpkgs/python-snakeoil/template
+++ b/srcpkgs/python-snakeoil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snakeoil'
 pkgname=python-snakeoil
 version=0.7.5
-revision=2
+revision=3
 wrksrc="snakeoil-${version}"
 build_style=python-module
 pycompile_module="snakeoil"

From c023c48bda41f4e9b16718923037b0abc4c9cc57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 498/870] python-snappy: rebuild for Python 3.8.

---
 srcpkgs/python-snappy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snappy/template b/srcpkgs/python-snappy/template
index ac386f64fae..b1870cbe681 100644
--- a/srcpkgs/python-snappy/template
+++ b/srcpkgs/python-snappy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snappy'
 pkgname=python-snappy
 version=0.5.4
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="snappy"
 hostmakedepends="python-setuptools python3-setuptools"

From cf3b5c203b490e3aa45e74d0cef8b0d0c4d9cbd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 499/870] python-snowballstemmer: rebuild for Python 3.8.

---
 srcpkgs/python-snowballstemmer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snowballstemmer/template b/srcpkgs/python-snowballstemmer/template
index 6c21632cffa..221478860e5 100644
--- a/srcpkgs/python-snowballstemmer/template
+++ b/srcpkgs/python-snowballstemmer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snowballstemmer'
 pkgname=python-snowballstemmer
 version=1.2.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="snowballstemmer-${version}"
 build_style=python-module

From ebbd083848ced4227417bedacb81db1e46b3b0d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 500/870] python-socketIO-client: rebuild for Python 3.8.

---
 srcpkgs/python-socketIO-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-socketIO-client/template b/srcpkgs/python-socketIO-client/template
index 32fdac4117d..9495d7cf40b 100644
--- a/srcpkgs/python-socketIO-client/template
+++ b/srcpkgs/python-socketIO-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-socketIO-client'
 pkgname=python-socketIO-client
 version=0.7.2
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="socketIO_client"

From bf4912c1b4d342f253c99ee2ff30408cc72ef150 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 501/870] python3-sortedcontainers: rebuild for Python 3.8.

---
 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 2b531ded9b6..41d87d4ebd0 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.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="sortedcontainers-${version}"
 build_style=python3-module

From d111b9221a51cf160ffadb598d8ab186bac3562f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 502/870] python-soupsieve: rebuild for Python 3.8.

---
 srcpkgs/python-soupsieve/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-soupsieve/template b/srcpkgs/python-soupsieve/template
index 586553ca759..63b65c5910f 100644
--- a/srcpkgs/python-soupsieve/template
+++ b/srcpkgs/python-soupsieve/template
@@ -1,7 +1,7 @@
 # Template file for 'python-soupsieve'
 pkgname=python-soupsieve
 version=1.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="soupsieve-${version}"
 build_style=python-module

From 505955408532e39107891c66bb40c986d8a5da3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 503/870] python3-spake2: rebuild for Python 3.8.

---
 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 ff83afed1d6..dc0cdced747 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=1
+revision=2
 archs=noarch
 wrksrc="python-spake2-${version}"
 build_style=python3-module

From ed28cd6c33b5a607891182e27d4edc4b33e42c75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 504/870] python-sphinx_rtd_theme: rebuild for Python 3.8.

---
 srcpkgs/python-sphinx_rtd_theme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinx_rtd_theme/template b/srcpkgs/python-sphinx_rtd_theme/template
index 90def1c9d1d..ebd4f13da8f 100644
--- a/srcpkgs/python-sphinx_rtd_theme/template
+++ b/srcpkgs/python-sphinx_rtd_theme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinx_rtd_theme'
 pkgname=python-sphinx_rtd_theme
 version=0.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinx_rtd_theme-${version}"
 build_style=python-module

From dc5c184f3eb8653ed7620ead5c8c28a67daed07d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 505/870] python-sphinxcontrib: rebuild for Python 3.8.

---
 srcpkgs/python-sphinxcontrib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib/template b/srcpkgs/python-sphinxcontrib/template
index ce3befc56d7..c6789cc77f5 100644
--- a/srcpkgs/python-sphinxcontrib/template
+++ b/srcpkgs/python-sphinxcontrib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib'
 pkgname=python-sphinxcontrib
 version=1.0
-revision=2
+revision=3
 archs=noarch
 create_wrksrc=yes
 pycompile_module="sphinxcontrib"

From 044129ada15eeb9695b554976702e8af049dcfd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 506/870] python-sphinxcontrib-websupport: rebuild for Python
 3.8.

---
 srcpkgs/python-sphinxcontrib-websupport/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib-websupport/template b/srcpkgs/python-sphinxcontrib-websupport/template
index 2236e50b25b..5387dec6519 100644
--- a/srcpkgs/python-sphinxcontrib-websupport/template
+++ b/srcpkgs/python-sphinxcontrib-websupport/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib-websupport'
 pkgname=python-sphinxcontrib-websupport
 version=1.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinxcontrib-websupport-${version}"
 build_style=python-module

From d4fb3b78447ca7349e0a94033b436c3e0caa5dc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 507/870] python-sqlalchemy-migrate: rebuild for Python 3.8.

---
 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 cfdf6166695..bb002660c0f 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=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 863a48d9543b2461c699350ad32bb2ae925e30c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 508/870] python-sqlparse: rebuild for Python 3.8.

---
 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 29a477db392..0f8c6f8ea2e 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=1
+revision=2
 archs=noarch
 wrksrc="sqlparse-${version}"
 build_style=python-module

From b477355bf26b723b8ab7cab61902be1e4aaee7bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 509/870] python-stem: rebuild for Python 3.8.

---
 srcpkgs/python-stem/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index e04ae0a848c..e16e79d84bb 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stem'
 pkgname=python-stem
 version=1.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stem-${version/b/}"
 build_style=python-module

From 82d435bdfc12ea7b4a3dabd17da5113470bffe26 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 510/870] python-stevedore: rebuild for Python 3.8.

---
 srcpkgs/python-stevedore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stevedore/template b/srcpkgs/python-stevedore/template
index 281538211af..4f781304d3f 100644
--- a/srcpkgs/python-stevedore/template
+++ b/srcpkgs/python-stevedore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stevedore'
 pkgname=python-stevedore
 version=1.30.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stevedore-${version}"
 build_style=python-module

From 2afe8f7a4ce71437484d9258f44ead34ae2f6647 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 511/870] python-stormssh: rebuild for Python 3.8.

---
 srcpkgs/python-stormssh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stormssh/template b/srcpkgs/python-stormssh/template
index 250e838e582..11f63f67bba 100644
--- a/srcpkgs/python-stormssh/template
+++ b/srcpkgs/python-stormssh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stormssh'
 pkgname=python-stormssh
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=storm-${version}
 build_style=python-module

From 754addaa6845cd505b5d744fa4e54a66dba9c4ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 512/870] python-subliminal: rebuild for Python 3.8.

---
 srcpkgs/python-subliminal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-subliminal/template b/srcpkgs/python-subliminal/template
index 035ca844880..216c11bb4c0 100644
--- a/srcpkgs/python-subliminal/template
+++ b/srcpkgs/python-subliminal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-subliminal'
 pkgname=python-subliminal
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="subliminal-${version}"
 build_style=python-module

From da488d7b04fb3b00046be4293c33ae0809dad8e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 513/870] python-sympy: rebuild for Python 3.8.

---
 srcpkgs/python-sympy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sympy/template b/srcpkgs/python-sympy/template
index 21d8cf69840..d41c8a392b0 100644
--- a/srcpkgs/python-sympy/template
+++ b/srcpkgs/python-sympy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sympy'
 pkgname=python-sympy
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="sympy-${version}"
 build_style=python-module

From 78857098e3058d7f0df7ece8be24b84196d16921 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 514/870] python-tables: rebuild for Python 3.8.

---
 srcpkgs/python-tables/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tables/template b/srcpkgs/python-tables/template
index 644ae3d1a35..5f61fe8fb88 100644
--- a/srcpkgs/python-tables/template
+++ b/srcpkgs/python-tables/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tables'
 pkgname=python-tables
 version=3.5.2
-revision=1
+revision=2
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="tables"

From 45955cd565bccabbc642dce6684af05ad7651ba5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 515/870] python3-tabulate: rebuild for Python 3.8.

---
 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 19b61edd88c..6f142077300 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="tabulate-${version}"
 build_style=python3-module

From 285f369cadcf0d14f66db8045bb3fb979e69937f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 516/870] python-tempita: rebuild for Python 3.8.

---
 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 9e7123fbd9d..c1c75ee1cac 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=3
+revision=4
 archs=noarch
 wrksrc="Tempita-${version}"
 build_style=python-module

From efa04f85df83993e48813e00587c05cd6c722387 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 517/870] python-tempora: rebuild for Python 3.8.

---
 srcpkgs/python-tempora/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tempora/template b/srcpkgs/python-tempora/template
index fa1cbd4fbd1..866d163f367 100644
--- a/srcpkgs/python-tempora/template
+++ b/srcpkgs/python-tempora/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tempora'
 pkgname=python-tempora
 version=1.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tempora-${version}"
 build_style=python-module

From 783b09196fc04d62a7e7a220ffffc941acedfeeb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 518/870] python-termcolor: rebuild for Python 3.8.

---
 srcpkgs/python-termcolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-termcolor/template b/srcpkgs/python-termcolor/template
index 877e5e59d9b..73c18fc79eb 100644
--- a/srcpkgs/python-termcolor/template
+++ b/srcpkgs/python-termcolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-termcolor'
 pkgname=python-termcolor
 version=1.1.0
-revision=5
+revision=6
 archs=noarch
 wrksrc="termcolor-${version}"
 build_style=python-module

From 469ef1b462bbb9fb2d5d97b38e357b662f5009d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 519/870] python-terminado: rebuild for Python 3.8.

---
 srcpkgs/python-terminado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-terminado/template b/srcpkgs/python-terminado/template
index cdfe6163991..d649364d88d 100644
--- a/srcpkgs/python-terminado/template
+++ b/srcpkgs/python-terminado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-terminado'
 pkgname=python-terminado
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="terminado-${version}"
 build_style=python-module

From ced3b80cce126ab9d23dd2a4bc9505e23b5a4888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 520/870] python3-terminaltables: rebuild for Python 3.8.

---
 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 60ada7ffcb6..4f781eab76d 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=1
+revision=2
 archs=noarch
 wrksrc="terminaltables-${version}"
 build_style=python3-module

From 7a90fec1dbe0347ede0762e747d8edf378bd497c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 521/870] python-testpath: rebuild for Python 3.8.

---
 srcpkgs/python-testpath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-testpath/template b/srcpkgs/python-testpath/template
index bac7270fd40..abfc59900c0 100644
--- a/srcpkgs/python-testpath/template
+++ b/srcpkgs/python-testpath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-testpath'
 pkgname=python-testpath
 version=0.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="testpath-${version}"
 build_style=python-module

From f8761f2f7116f9b2691807d35d9836a34fbbbf32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 522/870] python3-text-unidecode: rebuild for Python 3.8.

---
 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 77163d9e0b6..b3b5aa95575 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="text-unidecode-${version}"
 build_style=python3-module

From 2d2f99664b0644e22e4876b9d54048008a392289 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 523/870] python-texttable: rebuild for Python 3.8.

---
 srcpkgs/python-texttable/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-texttable/template b/srcpkgs/python-texttable/template
index a9c5ec66db1..24bac87af6a 100644
--- a/srcpkgs/python-texttable/template
+++ b/srcpkgs/python-texttable/template
@@ -1,7 +1,7 @@
 # Template file for 'python-texttable'
 pkgname=python-texttable
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="texttable-${version}"
 build_style=python-module

From c671c144e8fe81895f6995347d19725f72165b25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 524/870] python3-tinycss: rebuild for Python 3.8.

---
 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 91fda6f808d..3b4717c234e 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=1
+revision=2
 archs=noarch
 wrksrc=tinycss-${version}
 build_style=python3-module

From 9aa3e8105128dc5e3b86a83bd0ae76e7d9c9cf86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 525/870] python-tmuxp: rebuild for Python 3.8.

---
 srcpkgs/python-tmuxp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tmuxp/template b/srcpkgs/python-tmuxp/template
index 00c86730cbe..45b4a9772b2 100644
--- a/srcpkgs/python-tmuxp/template
+++ b/srcpkgs/python-tmuxp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tmuxp'
 pkgname=python-tmuxp
 version=1.5.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="tmuxp-${version}"
 build_style=python-module

From 995158f34c29d704b44eae2b32df801023781096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 526/870] python-toml: rebuild for Python 3.8.

---
 srcpkgs/python-toml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-toml/template b/srcpkgs/python-toml/template
index 0eee1b0b2c3..2fd6eaa0cea 100644
--- a/srcpkgs/python-toml/template
+++ b/srcpkgs/python-toml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-toml'
 pkgname=python-toml
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="toml-${version}"
 build_style=python-module

From 6270afd962719dd0e9b876b40ab7bf9be9936cf5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 527/870] python-tornado: rebuild for Python 3.8.

---
 srcpkgs/python-tornado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tornado/template b/srcpkgs/python-tornado/template
index 7e5700177f5..bd558d251f5 100644
--- a/srcpkgs/python-tornado/template
+++ b/srcpkgs/python-tornado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tornado'
 pkgname=python-tornado
 version=5.1.1
-revision=1
+revision=2
 wrksrc="tornado-${version}"
 build_style=python-module
 pycompile_module="tornado"

From cd9e416288ae101465f91c75453326fdead7d148 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 528/870] python-tqdm: rebuild for Python 3.8.

---
 srcpkgs/python-tqdm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tqdm/template b/srcpkgs/python-tqdm/template
index 69369bfd6b9..ef1f07127ad 100644
--- a/srcpkgs/python-tqdm/template
+++ b/srcpkgs/python-tqdm/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tqdm'
 pkgname=python-tqdm
 version=4.36.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tqdm-${version}"
 build_style=python-module

From 4ef8d34c3ab05cf43591d92220fc001007644a6d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 529/870] python-traitlets: rebuild for Python 3.8.

---
 srcpkgs/python-traitlets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-traitlets/template b/srcpkgs/python-traitlets/template
index d2d1b85edb6..797dd0268da 100644
--- a/srcpkgs/python-traitlets/template
+++ b/srcpkgs/python-traitlets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-traitlets'
 pkgname=python-traitlets
 version=4.3.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="traitlets-${version}"
 build_style=python-module

From f41edcb16535bb92b415439644ee01a61da14478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 530/870] python3-transifex-client: rebuild for Python 3.8.

---
 srcpkgs/python3-transifex-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-transifex-client/template b/srcpkgs/python3-transifex-client/template
index 77ca15313e0..5ea767b5a7d 100644
--- a/srcpkgs/python3-transifex-client/template
+++ b/srcpkgs/python3-transifex-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-transifex-client'
 pkgname=python3-transifex-client
 version=0.13.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="transifex-client-${version}"
 build_style=python3-module

From d2c27a7fe61e206ccbf655146feec32e4b13cfc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 531/870] python3-treq: rebuild for Python 3.8.

---
 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 8f210d13489..e46e1e7e7a5 100644
--- a/srcpkgs/python3-treq/template
+++ b/srcpkgs/python3-treq/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-treq'
 pkgname=python3-treq
 version=18.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="treq-${version}"
 build_style=python3-module

From 26b5427ba0e26d8712ebe081a774396e3ea39d76 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 532/870] python-ttystatus: rebuild for Python 3.8.

---
 srcpkgs/python-ttystatus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ttystatus/template b/srcpkgs/python-ttystatus/template
index 9fbefad3461..43e87ddcdf0 100644
--- a/srcpkgs/python-ttystatus/template
+++ b/srcpkgs/python-ttystatus/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ttystatus'
 pkgname=python-ttystatus
 version=0.38
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="ttystatus"

From dbf349fac2110dc33ad6d676748e46240dec1fbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 533/870] python-twitter: rebuild for Python 3.8.

---
 srcpkgs/python-twitter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-twitter/template b/srcpkgs/python-twitter/template
index c299b28dedf..e5e7194078a 100644
--- a/srcpkgs/python-twitter/template
+++ b/srcpkgs/python-twitter/template
@@ -1,7 +1,7 @@
 # Template file for 'python-twitter'
 pkgname=python-twitter
 version=3.5
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="twitter"

From 58eab12e88f689c694ef474e09d2266b77b5bcc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 534/870] python3-txacme: rebuild for Python 3.8.

---
 srcpkgs/python3-txacme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-txacme/template b/srcpkgs/python3-txacme/template
index e6becf593e7..c678addda4d 100644
--- a/srcpkgs/python3-txacme/template
+++ b/srcpkgs/python3-txacme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txacme'
 pkgname=python3-txacme
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="txacme-${version}"
 build_style=python3-module

From a1a3464258c255e0b73cbdb47e0337d3b8af473e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 535/870] python3-txaio: rebuild for Python 3.8.

---
 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 fa13338cd30..8163f5c90fd 100644
--- a/srcpkgs/python3-txaio/template
+++ b/srcpkgs/python3-txaio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txaio'
 pkgname=python3-txaio
 version=18.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="txaio-${version}"
 build_style=python3-module

From 66d08c9f4945499ccd01b127d7ec1f8cfd468dd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 536/870] python3-txtorcon: rebuild for Python 3.8.

---
 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 3018a65e457..a10ab59c582 100644
--- a/srcpkgs/python3-txtorcon/template
+++ b/srcpkgs/python3-txtorcon/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txtorcon'
 pkgname=python3-txtorcon
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="txtorcon-${version}"
 build_style=python3-module

From f3bf9db3f8b699c67eebc7fa0278fca9de892d75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 537/870] python3-typed-ast: update to 1.4.0.

---
 srcpkgs/python3-typed-ast/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-typed-ast/template b/srcpkgs/python3-typed-ast/template
index ec5b5b9df11..b38f0fe065c 100644
--- a/srcpkgs/python3-typed-ast/template
+++ b/srcpkgs/python3-typed-ast/template
@@ -1,8 +1,8 @@
 # Template file for 'python3-typed-ast'
 pkgname=python3-typed-ast
-version=1.3.4
+version=1.4.0
 revision=1
-wrksrc="typed-ast-${version}"
+wrksrc="typed_ast-${version}"
 build_style=python3-module
 pycompile_module="typed_ast"
 hostmakedepends="python3-devel python3-setuptools"
@@ -11,6 +11,6 @@ short_desc="Ast module with type comment support"
 maintainer="whoami <whoami@systemli.org>"
 license="Apache-2.0"
 homepage="https://github.com/python/typed_ast"
-distfiles="${PYPI_SITE}/t/typed-ast/typed-ast-${version}.tar.gz"
-checksum=68c362848d9fb71d3c3e5f43c09974a0ae319144634e7a47db62f0f2a54a7fa7
+distfiles="${PYPI_SITE}/t/typed-ast/typed_ast-${version}.tar.gz"
+checksum=66480f95b8167c9c5c5c87f32cf437d585937970f3fc24386f313a4c97b44e34
 nocross="https://travis-ci.org/void-linux/void-packages/jobs/509366923#L1009"

From d977434aa35e2c6bc03c5db7514f5409eb21a2a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 538/870] python3-typing_extensions: rebuild for Python 3.8.

---
 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 ab96df4eb2d..605af46216d 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=3.6.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module

From d1368b489e196a385edf9b15df4da773505f8a5e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 539/870] python-tzlocal: rebuild for Python 3.8.

---
 srcpkgs/python-tzlocal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tzlocal/template b/srcpkgs/python-tzlocal/template
index 396eada3982..684d2a21b40 100644
--- a/srcpkgs/python-tzlocal/template
+++ b/srcpkgs/python-tzlocal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tzlocal'
 pkgname=python-tzlocal
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tzlocal-${version}"
 build_style=python-module

From 0ec72579de99edead05daf85e7cac5e0e2ab641b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 540/870] python-unittest-mixins: rebuild for Python 3.8.

---
 srcpkgs/python-unittest-mixins/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-unittest-mixins/template b/srcpkgs/python-unittest-mixins/template
index 6f7c7204112..2ff5c497523 100644
--- a/srcpkgs/python-unittest-mixins/template
+++ b/srcpkgs/python-unittest-mixins/template
@@ -1,7 +1,7 @@
 # Template file for 'python-unittest-mixins'
 pkgname=python-unittest-mixins
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From a5e3289470d7f0e25e09237aa9463d28817818c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 541/870] python3-unpaddedbase64: rebuild for Python 3.8.

---
 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 37df2c1d642..06a47db3b64 100644
--- a/srcpkgs/python3-unpaddedbase64/template
+++ b/srcpkgs/python3-unpaddedbase64/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-unpaddedbase64'
 pkgname=python3-unpaddedbase64
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-unpaddedbase64-${version}"
 build_style=python3-module

From 13043751d10b741546f419a7e9089a5b252fd5c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 542/870] python-urbandict: rebuild for Python 3.8.

---
 srcpkgs/python-urbandict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urbandict/template b/srcpkgs/python-urbandict/template
index ff09e963fa7..ed359c744be 100644
--- a/srcpkgs/python-urbandict/template
+++ b/srcpkgs/python-urbandict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urbandict'
 pkgname=python-urbandict
 version=0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="urbandict-${version}"
 build_style=python-module

From a15bf0893e7a65a070751099b3ddca9172b49912 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 543/870] python-uritemplate: rebuild for Python 3.8.

---
 srcpkgs/python-uritemplate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-uritemplate/template b/srcpkgs/python-uritemplate/template
index 7a530fee03b..cdcda419efe 100644
--- a/srcpkgs/python-uritemplate/template
+++ b/srcpkgs/python-uritemplate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-uritemplate'
 pkgname=python-uritemplate
 version=3.0.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 43c97a015ea83b2b0934ea864a84b324ec83f31a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 544/870] python3-urlgrabber: rebuild for Python 3.8.

---
 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 087087d5ed1..eef67c8e13c 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=1
+revision=2
 archs=noarch
 wrksrc="urlgrabber-${version}"
 build_style=python3-module

From 016dbcff2bb0c1709814f4da4fe214d551e3d4cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 545/870] python-urllib3: rebuild for Python 3.8.

---
 srcpkgs/python-urllib3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urllib3/template b/srcpkgs/python-urllib3/template
index 8056518c9c1..1ff21f7555d 100644
--- a/srcpkgs/python-urllib3/template
+++ b/srcpkgs/python-urllib3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urllib3'
 pkgname=python-urllib3
 version=1.25.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="urllib3-${version}"
 build_style=python-module

From 9629da352be38a0f14bcb680c7fc05dd1d1167f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 546/870] python-urwid: rebuild for Python 3.8.

---
 srcpkgs/python-urwid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwid/template b/srcpkgs/python-urwid/template
index ae6722b1135..7adf8b76b96 100644
--- a/srcpkgs/python-urwid/template
+++ b/srcpkgs/python-urwid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwid'
 pkgname=python-urwid
 version=2.0.1
-revision=2
+revision=3
 wrksrc="urwid-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"

From 4be978b1173afce93e7ff39f6e577059f4c7dd4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 547/870] python-urwidtrees: rebuild for Python 3.8.

---
 srcpkgs/python-urwidtrees/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwidtrees/template b/srcpkgs/python-urwidtrees/template
index be0e906addf..62d214489e2 100644
--- a/srcpkgs/python-urwidtrees/template
+++ b/srcpkgs/python-urwidtrees/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwidtrees'
 pkgname=python-urwidtrees
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="urwidtrees-${version}"
 build_style=python-module

From c9f3ad0ed793593060952aa365e888244dfd07e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 548/870] python3-usb: rebuild for Python 3.8.

---
 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 a081ee5ba76..d26c24df669 100644
--- a/srcpkgs/python3-usb/template
+++ b/srcpkgs/python3-usb/template
@@ -2,7 +2,7 @@
 pkgname=python3-usb
 _pkgname=pyusb
 version=1.0.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From 454ef49754696a81de599e7fa6cf9cab31ccbc31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 549/870] python-utils: rebuild for Python 3.8.

---
 srcpkgs/python-utils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-utils/template b/srcpkgs/python-utils/template
index e881e70c0f0..6745df121a6 100644
--- a/srcpkgs/python-utils/template
+++ b/srcpkgs/python-utils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-utils'
 pkgname=python-utils
 version=2.3.0
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 wrksrc="python-utils-${version}"

From eef5c75b93453defdcb8def5b34c20f20cda0fc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 550/870] python3-validators: rebuild for Python 3.8.

---
 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 29b9fc74c30..6d9da94c4bb 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.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="validators-${version}"
 build_style=python3-module

From 53ce0ff21de84f26405d0314002bb11e85903128 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 551/870] python3-vdf: rebuild for Python 3.8.

---
 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 44c635ecdd6..88bd521beaa 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.2
-revision=1
+revision=2
 wrksrc=vdf-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From f720d6ed8267fa4b27a7ce83dd3a265a18cd13b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 552/870] python-vint: rebuild for Python 3.8.

---
 srcpkgs/python-vint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vint/template b/srcpkgs/python-vint/template
index 4ca693f7eb2..62c663bf18e 100644
--- a/srcpkgs/python-vint/template
+++ b/srcpkgs/python-vint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vint'
 pkgname=python-vint
 version=0.3.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="vim-vint-${version}"
 build_style=python-module

From 573eadbcb861065b712050cf6e7fd200c33a73b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 553/870] python-virtualenv: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv/template b/srcpkgs/python-virtualenv/template
index 1f9166e79a2..cdeda28c53e 100644
--- a/srcpkgs/python-virtualenv/template
+++ b/srcpkgs/python-virtualenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv'
 pkgname=python-virtualenv
 version=16.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="virtualenv-${version}"
 build_style=python-module

From 25eda2949787b488dfc7cfc6512d02a4971d4f96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 554/870] python-virtualenv-clone: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv-clone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv-clone/template b/srcpkgs/python-virtualenv-clone/template
index 3c9f601bc6e..273b9ddf6d3 100644
--- a/srcpkgs/python-virtualenv-clone/template
+++ b/srcpkgs/python-virtualenv-clone/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv-clone'
 pkgname=python-virtualenv-clone
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5a922ea064a496fb01ff970e45a43ef51561b373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 555/870] python3-virustotal-api: rebuild for Python 3.8.

---
 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 2bc6592c91f..fc362c03b39 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=1
+revision=2
 archs=noarch
 wrksrc="virustotal-api-${version}"
 build_style=python3-module

From 65deaff01a3a9a5d82641fe121fdb2964b75346f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 556/870] python-vispy: rebuild for Python 3.8.

---
 srcpkgs/python-vispy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vispy/template b/srcpkgs/python-vispy/template
index b757e5a271f..624ade6f12b 100644
--- a/srcpkgs/python-vispy/template
+++ b/srcpkgs/python-vispy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vispy'
 pkgname=python-vispy
 version=0.6.1
-revision=1
+revision=2
 wrksrc="vispy-${version}"
 build_style=python-module
 pycompile_module="vispy"

From 5e47d846dedfdbef61bd10a33928ce13b600c648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 557/870] python-vobject: rebuild for Python 3.8.

---
 srcpkgs/python-vobject/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vobject/template b/srcpkgs/python-vobject/template
index 54f575aa1a1..2c1c215527c 100644
--- a/srcpkgs/python-vobject/template
+++ b/srcpkgs/python-vobject/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vobject'
 pkgname=python-vobject
 version=0.9.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="vobject-${version}"
 build_style=python-module

From 8125ffd3d4822ca6bf81508ed8b859e079cd9437 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 558/870] python-voluptuous: rebuild for Python 3.8.

---
 srcpkgs/python-voluptuous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-voluptuous/template b/srcpkgs/python-voluptuous/template
index fd44ae2e324..1dd5de27491 100644
--- a/srcpkgs/python-voluptuous/template
+++ b/srcpkgs/python-voluptuous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-voluptuous'
 pkgname=python-voluptuous
 version=0.11.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="voluptuous-${version}"
 build_style=python-module

From 608126ee8043f8d45a8e56608f99e0df6cc2ee9e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 559/870] python-watchdog: rebuild for Python 3.8.

---
 srcpkgs/python-watchdog/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchdog/template b/srcpkgs/python-watchdog/template
index f6027c3b5ca..2eea6397f00 100644
--- a/srcpkgs/python-watchdog/template
+++ b/srcpkgs/python-watchdog/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchdog'
 pkgname=python-watchdog
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="watchdog-${version}"
 build_style=python-module

From a54fc09b58f905a0ed5cd5892db67b7c4ea6ae9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 560/870] python-watchman: rebuild for Python 3.8.

---
 srcpkgs/python-watchman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchman/template b/srcpkgs/python-watchman/template
index 4c41c275ca2..97400668d64 100644
--- a/srcpkgs/python-watchman/template
+++ b/srcpkgs/python-watchman/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchman'
 pkgname=python-watchman
 version=1.4.1
-revision=2
+revision=3
 wrksrc="pywatchman-${version}"
 build_style=python-module
 pycompile_module="pywatchman"

From 4dd6084e6c30a25fb4ff3c44bf2c751eaab07715 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 561/870] python-wcwidth: rebuild for Python 3.8.

---
 srcpkgs/python-wcwidth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wcwidth/template b/srcpkgs/python-wcwidth/template
index 34bc22cbcb6..8ec6d17450c 100644
--- a/srcpkgs/python-wcwidth/template
+++ b/srcpkgs/python-wcwidth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wcwidth'
 pkgname=python-wcwidth
 version=0.1.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="wcwidth-${version}"
 build_style=python-module

From cafaf5868e58cb26c2cdd29d0d1b52f9cf1e31ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 562/870] python-webassets: rebuild for Python 3.8.

---
 srcpkgs/python-webassets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webassets/template b/srcpkgs/python-webassets/template
index 3ad5475bd17..789be9684f7 100644
--- a/srcpkgs/python-webassets/template
+++ b/srcpkgs/python-webassets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webassets'
 pkgname=python-webassets
 version=0.12.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 88d8fa4eb1ca72857d5a1cab8a4f7495a9af1595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 563/870] python-webencodings: rebuild for Python 3.8.

---
 srcpkgs/python-webencodings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webencodings/template b/srcpkgs/python-webencodings/template
index 5a05af10835..f047a9e3c52 100644
--- a/srcpkgs/python-webencodings/template
+++ b/srcpkgs/python-webencodings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webencodings'
 pkgname=python-webencodings
 version=0.5.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="webencodings-${version}"
 build_style=python-module

From 81c9d07c0e756cc87a6cd2c444c0b2f0987463da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 564/870] python-websocket-client: rebuild for Python 3.8.

---
 srcpkgs/python-websocket-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-websocket-client/template b/srcpkgs/python-websocket-client/template
index 8aa276655cb..3df8ab42b36 100644
--- a/srcpkgs/python-websocket-client/template
+++ b/srcpkgs/python-websocket-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-websocket-client'
 pkgname=python-websocket-client
 version=0.56.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="websocket_client-${version}"
 build_style=python-module

From 97fc927913b3f2682b7ddf73982008e9fdc1e42d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 565/870] python-wheel: rebuild for Python 3.8.

---
 srcpkgs/python-wheel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wheel/template b/srcpkgs/python-wheel/template
index 11c50bd65e6..11aeaf42316 100644
--- a/srcpkgs/python-wheel/template
+++ b/srcpkgs/python-wheel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wheel'
 pkgname=python-wheel
 version=0.32.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="wheel-${version}"
 build_style=python-module

From 861d20f2f112cd829f2f06f746680e2c034a812f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 566/870] python-wikipedia: rebuild for Python 3.8.

---
 srcpkgs/python-wikipedia/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wikipedia/template b/srcpkgs/python-wikipedia/template
index e6ebf65f7c2..f8a69755b74 100644
--- a/srcpkgs/python-wikipedia/template
+++ b/srcpkgs/python-wikipedia/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wikipedia'
 pkgname=python-wikipedia
 version=1.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="wikipedia-${version}"
 build_style=python-module

From c58e9b08de69bd19aa3bcf91ec42d1b626a2a6bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 567/870] python-wrapt: rebuild for Python 3.8.

---
 srcpkgs/python-wrapt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wrapt/template b/srcpkgs/python-wrapt/template
index a3a237aa08d..c2d2850bf5a 100644
--- a/srcpkgs/python-wrapt/template
+++ b/srcpkgs/python-wrapt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wrapt'
 pkgname=python-wrapt
 version=1.10.11
-revision=3
+revision=4
 wrksrc="wrapt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From f65cbaf6b92acb78d54d3b498924285bce64fb66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 568/870] python-wsproto: rebuild for Python 3.8.

---
 srcpkgs/python-wsproto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wsproto/template b/srcpkgs/python-wsproto/template
index 88b08f796d4..a93a799be0a 100644
--- a/srcpkgs/python-wsproto/template
+++ b/srcpkgs/python-wsproto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wsproto'
 pkgname=python-wsproto
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="wsproto-${version}"
 build_style=python-module

From 1b60fb796f8ac377a2e31dc0503df215c27fc59e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 569/870] python-xapp: rebuild for Python 3.8.

---
 srcpkgs/python-xapp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xapp/template b/srcpkgs/python-xapp/template
index 9b6938113f2..798041eb946 100644
--- a/srcpkgs/python-xapp/template
+++ b/srcpkgs/python-xapp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xapp'
 pkgname=python-xapp
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="xapp"

From 415bec8de0abe2772c407df9db650bd06ba122ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 570/870] python-xdg: rebuild for Python 3.8.

---
 srcpkgs/python-xdg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xdg/template b/srcpkgs/python-xdg/template
index afa6c180043..4e819c8bec7 100644
--- a/srcpkgs/python-xdg/template
+++ b/srcpkgs/python-xdg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xdg'
 pkgname=python-xdg
 version=0.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyxdg-${version}"
 build_style=python-module

From 4518feeb499caa6631ef29ead0439c5bcc67a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 571/870] python-xlib: rebuild for Python 3.8.

---
 srcpkgs/python-xlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xlib/template b/srcpkgs/python-xlib/template
index 1f97c4117d4..e67d1d82e73 100644
--- a/srcpkgs/python-xlib/template
+++ b/srcpkgs/python-xlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xlib'
 pkgname=python-xlib
 version=0.25
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="Xlib"

From 1cef928049b5216468e701acce714fc14d79694f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 572/870] python-xmldiff: rebuild for Python 3.8.

---
 srcpkgs/python-xmldiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmldiff/template b/srcpkgs/python-xmldiff/template
index a0a8004ea7b..4f3cc2d27b7 100644
--- a/srcpkgs/python-xmldiff/template
+++ b/srcpkgs/python-xmldiff/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmldiff'
 pkgname=python-xmldiff
 version=2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmldiff-${version}"
 build_style=python-module

From cefcbea2ec7904b0c1ad16ec32963bf430b27c4a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 573/870] python-xmltodict: rebuild for Python 3.8.

---
 srcpkgs/python-xmltodict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmltodict/template b/srcpkgs/python-xmltodict/template
index a48e6d46aa6..b3d7ef042e8 100644
--- a/srcpkgs/python-xmltodict/template
+++ b/srcpkgs/python-xmltodict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmltodict'
 pkgname=python-xmltodict
 version=0.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmltodict-${version}"
 build_style=python-module

From 889d5fe9fe9f1830bec336ac52bd8bd32f47f0a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 574/870] python-yaml: rebuild for Python 3.8.

---
 srcpkgs/python-yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yaml/template b/srcpkgs/python-yaml/template
index 8a7caf1d99e..e3bad0ae59b 100644
--- a/srcpkgs/python-yaml/template
+++ b/srcpkgs/python-yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yaml'
 pkgname=python-yaml
 version=5.1.2
-revision=1
+revision=2
 wrksrc="PyYAML-${version}"
 build_style=python-module
 pycompile_module="yaml"

From 1b3e89ca272ae28a62064bf83eaff84332307682 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 575/870] python-yamllint: rebuild for Python 3.8.

---
 srcpkgs/python-yamllint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yamllint/template b/srcpkgs/python-yamllint/template
index 1a05e1043bb..d0b51ba637a 100644
--- a/srcpkgs/python-yamllint/template
+++ b/srcpkgs/python-yamllint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yamllint'
 pkgname=python-yamllint
 version=1.15.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="yamllint-${version}"
 build_style=python-module

From b233bcb50542e39ba02899ef3d1b833e385204e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 576/870] python3-yarl: rebuild for Python 3.8.

---
 srcpkgs/python3-yarl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-yarl/template b/srcpkgs/python3-yarl/template
index 222f176cfcf..ecb79a3cc9c 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.3.0
-revision=2
+revision=3
 wrksrc="yarl-${version}"
 build_style=python3-module
 pycompile_module="yarl"

From 484c2559f18644c63342db467c703e2e998e89b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 577/870] python-zc.lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-zc.lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zc.lockfile/template b/srcpkgs/python-zc.lockfile/template
index cb0bee99506..b77071af04f 100644
--- a/srcpkgs/python-zc.lockfile/template
+++ b/srcpkgs/python-zc.lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zc.lockfile'
 pkgname=python-zc.lockfile
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 364e398c8dd7e3dd141ceb1c22626ecf2a5b9b32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 578/870] python3-zeroconf: rebuild for Python 3.8.

---
 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 497a8bc6b69..dda37bd3dc4 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.23.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-zeroconf-${version}"
 build_style=python3-module

From 22b5d6236d8f0ff0050135b2e77eca608519b1ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 579/870] python3-zipp: rebuild for Python 3.8.

---
 srcpkgs/python3-zipp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-zipp/template b/srcpkgs/python3-zipp/template
index 8445c10825c..ba682915beb 100644
--- a/srcpkgs/python3-zipp/template
+++ b/srcpkgs/python3-zipp/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-zipp'
 pkgname=python3-zipp
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="zipp-${version}"
 build_style=python3-module

From c5c37d6e890a553e458333e610ab56b1a5c9b516 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 580/870] python-zipstream: rebuild for Python 3.8.

---
 srcpkgs/python-zipstream/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zipstream/template b/srcpkgs/python-zipstream/template
index 89079e21b22..2c7390127ac 100644
--- a/srcpkgs/python-zipstream/template
+++ b/srcpkgs/python-zipstream/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zipstream'
 pkgname=python-zipstream
 version=1.1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="python-zipstream-${version}"
 build_style=python-module

From bc31e25a00839c9d3cc5ac70edf0485ee4b21d4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 581/870] python3-zope.cachedescriptors: rebuild for Python
 3.8.

---
 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 bdd5ef41e21..1f1fae5b27b 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.3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="zope.cachedescriptors-${version}"
 build_style=python3-module

From 40a63988f3c2db41391f0a7ab6cde24a9b79ed05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 582/870] python-zope.component: rebuild for Python 3.8.

---
 srcpkgs/python-zope.component/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.component/template b/srcpkgs/python-zope.component/template
index 7cea5b9d71d..66ef109a4aa 100644
--- a/srcpkgs/python-zope.component/template
+++ b/srcpkgs/python-zope.component/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.component'
 pkgname=python-zope.component
 version=4.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 799496c35db93c88e6d00e4b41eeca8b4af5b188 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 583/870] python-zope.event: rebuild for Python 3.8.

---
 srcpkgs/python-zope.event/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.event/template b/srcpkgs/python-zope.event/template
index 3c7fb8dfd6e..6518cb4529b 100644
--- a/srcpkgs/python-zope.event/template
+++ b/srcpkgs/python-zope.event/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.event'
 pkgname=python-zope.event
 version=4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d77b16ecad39877131af8a9c01ea925b33737b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 584/870] python-zope.interface: rebuild for Python 3.8.

---
 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 d3c57be85f7..1dbcbecd377 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=4.6.0
-revision=2
+revision=3
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="zope"

From e5cb80612a71c54facf607c52c7a385badeba668 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 585/870] python3-pivy: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-pivy/patches/73cd928f.patch | 36 +++++++++++++++++++++
 srcpkgs/python3-pivy/template               |  2 +-
 2 files changed, 37 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/python3-pivy/patches/73cd928f.patch

diff --git a/srcpkgs/python3-pivy/patches/73cd928f.patch b/srcpkgs/python3-pivy/patches/73cd928f.patch
new file mode 100644
index 00000000000..edff803822a
--- /dev/null
+++ b/srcpkgs/python3-pivy/patches/73cd928f.patch
@@ -0,0 +1,36 @@
+From 73cd928fe1a9c2abbe6f28844a7fc695ad11d7cf Mon Sep 17 00:00:00 2001
+From: Peter Lama <peterldev94@gmail.com>
+Date: Fri, 24 Aug 2018 17:25:47 -0700
+Subject: [PATCH] Fix issue #39: PyUnicode_AsUTF8 returns const char*
+
+Even with python 2, it doesn't seem like char* is needed
+
+--- Inventor/nodes/SoMarkerSet.i
++++ Inventor/nodes/SoMarkerSet.i
+@@ -5,7 +5,7 @@
+         short WIDTH, HEIGHT;
+         size.getValue(WIDTH, HEIGHT);
+         short BYTEWIDTH = (WIDTH + 7) / 2;
+-        char* coin_marker;
++        const char* coin_marker;
+ #ifdef PY_2
+         if (PyString_Check(string))
+         {
+@@ -49,4 +49,4 @@
+         delete[] bitmapbytes;
+         bitmapbytes = NULL;
+     }
+-}
+\ No newline at end of file
++}
+--- Inventor/sensors/SoSensor.i
++++ Inventor/sensors/SoSensor.i
+@@ -4,7 +4,7 @@ SoSensorPythonCB(void * data, SoSensor * sensor)
+ {
+   PyGILState_STATE gil = PyGILState_Ensure();
+   swig_type_info * swig_type = 0;
+-  char * sensor_cast_name = NULL;
++  const char * sensor_cast_name = NULL;
+   PyObject * func, * arglist;
+   PyObject * result, * pysensor;
+ 
diff --git a/srcpkgs/python3-pivy/template b/srcpkgs/python3-pivy/template
index 4a733e805e3..9caa13837e2 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.4
-revision=1
+revision=2
 wrksrc="Coin3D-${pkgname#python3-}-a84100beff22"
 build_style=python3-module
 pycompile_module="pivy"

From 7d8cfe1721327d4b8695c6abc56d012b27989c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 586/870] python-tweepy: update to 3.8.0.

---
 srcpkgs/python-tweepy/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python-tweepy/template b/srcpkgs/python-tweepy/template
index ef61039dac5..4605bbf83ea 100644
--- a/srcpkgs/python-tweepy/template
+++ b/srcpkgs/python-tweepy/template
@@ -1,6 +1,6 @@
 # Template file for 'python-tweepy'
 pkgname=python-tweepy
-version=3.7.0
+version=3.8.0
 revision=1
 archs=noarch
 wrksrc="tweepy-${version}"
@@ -14,8 +14,8 @@ license="MIT"
 homepage="https://github.com/tweepy/tweepy"
 distfiles="${PYPI_SITE}/t/tweepy/tweepy-${version}.tar.gz
  https://raw.githubusercontent.com/tweepy/tweepy/master/LICENSE>LICENSE.txt"
-checksum="fe85a79f58a01dd335968523b91c5fce760e7fe78bf25a6e71c72204fe499d0b
- deeeae0dcc22dbf108a801b8dc4e484bcc1bfb541b1a4f4615ab3e61def44fb5"
+checksum="8abd828ba51a85a2b5bb7373715d6d3bb32d18ac624e3a4db02e4ef8ab48316b
+ bf9bc5b9dcb8421bb3c342bb7fd29194688e1262b50766bd71b21a07461e74b7"
 
 post_install() {
 	vlicense ../LICENSE.txt

From 5f654f2f6a7eca9a50adb53af9037466723dd82c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 587/870] Electron-Cash: rebuild for Python 3.8.

---
 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 2db05c94832..08670c5f08d 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.0.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electroncash electroncash_gui electroncash_plugins"

From 931f125f8699e33cb16c8ed43a5e910d0056db6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 588/870] OpenLP: rebuild for Python 3.8.

---
 srcpkgs/OpenLP/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/OpenLP/template b/srcpkgs/OpenLP/template
index fb417f8d05e..ccae6d0282e 100644
--- a/srcpkgs/OpenLP/template
+++ b/srcpkgs/OpenLP/template
@@ -1,7 +1,7 @@
 # Template file for 'OpenLP'
 pkgname=OpenLP
 version=2.4.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="openlp"

From 21b02367e81c8635c88830fd008c0ba44ffcccff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 589/870] PhotoCollage: rebuild for Python 3.8.

---
 srcpkgs/PhotoCollage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/PhotoCollage/template b/srcpkgs/PhotoCollage/template
index 2c55ca87ce0..9997d1e7d98 100644
--- a/srcpkgs/PhotoCollage/template
+++ b/srcpkgs/PhotoCollage/template
@@ -1,7 +1,7 @@
 # Template file for 'PhotoCollage'
 pkgname=PhotoCollage
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="photocollage"

From 49dffe4070ca7dff3c38379b8df9d9b0d04395ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 590/870] ReText: rebuild for Python 3.8.

---
 srcpkgs/ReText/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ReText/template b/srcpkgs/ReText/template
index cc092ee6a36..a6551fbdf7c 100644
--- a/srcpkgs/ReText/template
+++ b/srcpkgs/ReText/template
@@ -1,7 +1,7 @@
 # Template file for 'ReText'
 pkgname=ReText
 version=7.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ReText"

From 225e30aaea5daebb0d4fc36c6d73424ad6fb1ec5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 591/870] SoapySDR: rebuild for Python 3.8.

---
 srcpkgs/SoapySDR/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/SoapySDR/template b/srcpkgs/SoapySDR/template
index 1bb66ce0689..bcfe45dc78a 100644
--- a/srcpkgs/SoapySDR/template
+++ b/srcpkgs/SoapySDR/template
@@ -1,7 +1,7 @@
 # Template file for 'SoapySDR'
 pkgname=SoapySDR
 version=0.7.1
-revision=1
+revision=2
 wrksrc="${pkgname}-soapy-sdr-${version}"
 build_style=cmake
 pycompile_module="SoapySDR.py"

From 2e64750e75e61296567ebb0053c46081cbab8e13 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 592/870] Solaar: rebuild for Python 3.8.

---
 srcpkgs/Solaar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Solaar/template b/srcpkgs/Solaar/template
index 2e8f4112e0e..86cab83d497 100644
--- a/srcpkgs/Solaar/template
+++ b/srcpkgs/Solaar/template
@@ -1,7 +1,7 @@
 # Template file for 'Solaar'
 pkgname=Solaar
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="hidapi logitech_receiver solaar"

From 21eb59c332d0765268a9b3a5442e4e265144a4ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 593/870] Trimage: rebuild for Python 3.8.

---
 srcpkgs/Trimage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Trimage/template b/srcpkgs/Trimage/template
index 14fc1d1bd1c..c9f4b047ccd 100644
--- a/srcpkgs/Trimage/template
+++ b/srcpkgs/Trimage/template
@@ -1,7 +1,7 @@
 # Template file for 'Trimage'
 pkgname=Trimage
 version=1.0.6
-revision=1
+revision=2
 wrksrc="Trimage-${version}"
 build_style=python3-module
 hostmakedepends="python3"

From 51428dec66979d2e47361fb2af5e7ad35acbe530 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 594/870] TwitchNotifier: rebuild for Python 3.8.

---
 srcpkgs/TwitchNotifier/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/TwitchNotifier/template b/srcpkgs/TwitchNotifier/template
index 01153bcc710..3bbba11db49 100644
--- a/srcpkgs/TwitchNotifier/template
+++ b/srcpkgs/TwitchNotifier/template
@@ -1,7 +1,7 @@
 # Template file for 'TwitchNotifier'
 pkgname=TwitchNotifier
 version=0.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-devel"
 makedepends="python3-devel"

From 18ad02f16088cf17e66f60da882ead88b4872617 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 595/870] Uranium: rebuild for Python 3.8.

---
 srcpkgs/Uranium/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Uranium/template b/srcpkgs/Uranium/template
index 193d5e211df..7a9509c2079 100644
--- a/srcpkgs/Uranium/template
+++ b/srcpkgs/Uranium/template
@@ -1,7 +1,7 @@
 # Template file for 'Uranium'
 pkgname=Uranium
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=cmake
 pycompile_module="UM"

From 1bfabd6cc63a8b03b99500dc59e362061f7549e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 596/870] afew: rebuild for Python 3.8.

---
 srcpkgs/afew/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/afew/template b/srcpkgs/afew/template
index a9156bbc902..f4b10098e66 100644
--- a/srcpkgs/afew/template
+++ b/srcpkgs/afew/template
@@ -1,7 +1,7 @@
 # Template file for 'afew'
 pkgname=afew
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="afew"

From f0695c0a0e527ead9d61cbbd52e872f5a6e7f422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 597/870] alot: rebuild for Python 3.8.

---
 srcpkgs/alot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/alot/template b/srcpkgs/alot/template
index 4ff75637282..c8e29e36297 100644
--- a/srcpkgs/alot/template
+++ b/srcpkgs/alot/template
@@ -1,7 +1,7 @@
 # Template file for 'alot'
 pkgname=alot
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="alot"

From ec032cb507b4dca0034eab7e0281dedd3b7dc418 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 598/870] ansible: rebuild for Python 3.8.

---
 srcpkgs/ansible/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ansible/template b/srcpkgs/ansible/template
index 413e6f8803e..773f890e114 100644
--- a/srcpkgs/ansible/template
+++ b/srcpkgs/ansible/template
@@ -1,7 +1,7 @@
 # Template file for 'ansible'
 pkgname=ansible
 version=2.8.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ansible"

From a97554cec966a402d73b894865fe2d37f1833cec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 599/870] apparmor: rebuild for Python 3.8.

---
 srcpkgs/apparmor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/apparmor/template b/srcpkgs/apparmor/template
index c0ef28bae03..e4f8e3fb3ae 100644
--- a/srcpkgs/apparmor/template
+++ b/srcpkgs/apparmor/template
@@ -1,7 +1,7 @@
 # Template file for 'apparmor'
 pkgname=apparmor
 version=2.13.3
-revision=1
+revision=2
 wrksrc="${pkgname}-v${version}"
 build_wrksrc=libraries/libapparmor
 build_style=gnu-configure

From 57116ea3c564f2a1852b8583df85c35aefe177a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 600/870] arandr: rebuild for Python 3.8.

---
 srcpkgs/arandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/arandr/template b/srcpkgs/arandr/template
index 71c8cbcd6ed..610dbc28bca 100644
--- a/srcpkgs/arandr/template
+++ b/srcpkgs/arandr/template
@@ -1,7 +1,7 @@
 # Template file for 'arandr'
 pkgname=arandr
 version=0.1.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenlayout"

From 4dbfc32dae63dc77f95207dc5aa5a79d26d2c9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 601/870] asciinema: rebuild for Python 3.8.

---
 srcpkgs/asciinema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/asciinema/template b/srcpkgs/asciinema/template
index 961b2756301..38b8871753c 100644
--- a/srcpkgs/asciinema/template
+++ b/srcpkgs/asciinema/template
@@ -1,7 +1,7 @@
 # Template file for 'asciinema'
 pkgname=asciinema
 version=2.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="asciinema"

From 956b672f4c6db0ea67d9ad05a8308ec5ea193930 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 602/870] attic: rebuild for Python 3.8.

---
 srcpkgs/attic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/attic/template b/srcpkgs/attic/template
index 533ef7377bc..ed454302ce4 100644
--- a/srcpkgs/attic/template
+++ b/srcpkgs/attic/template
@@ -1,7 +1,7 @@
 # Template file for 'attic'
 pkgname=attic
 version=0.16
-revision=14
+revision=15
 wrksrc="Attic-$version"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel python3-Sphinx"

From 3a21ab47b75c96c91b8447979356e5d4d4027fd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 603/870] autorandr: rebuild for Python 3.8.

---
 srcpkgs/autorandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/autorandr/template b/srcpkgs/autorandr/template
index bf38b833632..7f9796be18f 100644
--- a/srcpkgs/autorandr/template
+++ b/srcpkgs/autorandr/template
@@ -1,7 +1,7 @@
 # Template file for 'autorandr'
 pkgname=autorandr
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="autorandr.py"

From ca443f3bf2b2ea4c91fa81f47ea823293476950b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 604/870] avideo: rebuild for Python 3.8.

---
 srcpkgs/avideo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/avideo/template b/srcpkgs/avideo/template
index e4d004aafff..6430d391286 100644
--- a/srcpkgs/avideo/template
+++ b/srcpkgs/avideo/template
@@ -1,7 +1,7 @@
 # Template file for 'avideo'
 pkgname=avideo
 version=2017.9.27
-revision=3
+revision=4
 archs=noarch
 wrksrc="avideo"
 build_style=python3-module

From b1abf9d1270b34913e7bd6dbfcd004dba8a8c5ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 605/870] aws-cli: rebuild for Python 3.8.

---
 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 4e5e200e3f9..4328e203c3c 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.16.253
-revision=1
+revision=2
 archs=noarch
 wrksrc="aws-cli-${version}"
 build_style=python3-module

From af6fd86e4f623114e23d8cd19217a8ba196231c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 606/870] bandit: rebuild for Python 3.8.

---
 srcpkgs/bandit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bandit/template b/srcpkgs/bandit/template
index e6c1aa52d7c..d29873ecf61 100644
--- a/srcpkgs/bandit/template
+++ b/srcpkgs/bandit/template
@@ -1,7 +1,7 @@
 # Template file for 'bandit'
 pkgname=bandit
 version=1.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="bandit"

From acb296380ef65f2682ec382f88706be8dc3bf79f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 607/870] beancount: rebuild for Python 3.8.

---
 srcpkgs/beancount/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beancount/template b/srcpkgs/beancount/template
index b1e2a121668..0ba68fc8f4e 100644
--- a/srcpkgs/beancount/template
+++ b/srcpkgs/beancount/template
@@ -1,7 +1,7 @@
 # Template file for 'beancount'
 pkgname=beancount
 version=2.2.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="beancount"
 hostmakedepends="python3-setuptools"

From 4d085c5998e4472b4e7b4fceabecba11440daceb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 608/870] beets: rebuild for Python 3.8.

---
 srcpkgs/beets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beets/template b/srcpkgs/beets/template
index 7dab56ceef8..975e6ec9f86 100644
--- a/srcpkgs/beets/template
+++ b/srcpkgs/beets/template
@@ -1,7 +1,7 @@
 # Template file for 'beets'
 pkgname=beets
 version=1.4.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="beets beetsplug"

From 1640cb62a84da8a46aff2a9c6ee5f75c0ab73224 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 609/870] black: rebuild for Python 3.8.

---
 srcpkgs/black/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/black/template b/srcpkgs/black/template
index f6d433038b9..38498a1db07 100644
--- a/srcpkgs/black/template
+++ b/srcpkgs/black/template
@@ -1,7 +1,7 @@
 # Template file for 'black'
 pkgname=black
 version=19.3b0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="black.py blib2to3"

From 5939f3d169c384cfe92957888f7b53678a69e770 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 610/870] blueman: rebuild for Python 3.8.

---
 srcpkgs/blueman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blueman/template b/srcpkgs/blueman/template
index 83f9b899583..3616aee7da3 100644
--- a/srcpkgs/blueman/template
+++ b/srcpkgs/blueman/template
@@ -1,7 +1,7 @@
 # Template file for 'blueman'
 pkgname=blueman
 version=2.1.1
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="blueman"
 configure_args="--disable-static"

From 325ad86e9fdcfc900e695cdcb3b40bc448b85d06 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 611/870] borg: rebuild for Python 3.8.

---
 srcpkgs/borg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borg/template b/srcpkgs/borg/template
index 520b1b2f65a..b69c7d3418e 100644
--- a/srcpkgs/borg/template
+++ b/srcpkgs/borg/template
@@ -1,7 +1,7 @@
 # Template file for 'borg'
 pkgname=borg
 version=1.1.10
-revision=2
+revision=3
 wrksrc="borgbackup-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel"

From 73a17277e22d3252a93a66237bf81a04393fc244 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 612/870] borgmatic: rebuild for Python 3.8.

---
 srcpkgs/borgmatic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borgmatic/template b/srcpkgs/borgmatic/template
index 8ef7c0568a6..bdc6446243c 100644
--- a/srcpkgs/borgmatic/template
+++ b/srcpkgs/borgmatic/template
@@ -1,7 +1,7 @@
 # Template file for 'borgmatic'
 pkgname=borgmatic
 version=1.3.24
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="borgmatic"

From 482c5d69113ad10842dfe91f0ac4a0631660ac77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 613/870] btrfs-backup: rebuild for Python 3.8.

---
 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 07d08a1b62b..55a3800a857 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=1
+revision=2
 wrksrc="${pkgname/-/_}-${version}"
 archs=noarch
 build_style=python3-module

From 4fce3c4f00a44852e3f9fcab80a10d4acfc04ad6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 614/870] bum: rebuild for Python 3.8.

---
 srcpkgs/bum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bum/template b/srcpkgs/bum/template
index 58d0bb2b7f7..20f200e74d6 100644
--- a/srcpkgs/bum/template
+++ b/srcpkgs/bum/template
@@ -1,7 +1,7 @@
 # Template file for 'bum'
 pkgname=bum
 version=0.1.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="bum"

From a384e5462965e984f1abca2ca12b7f62b1a415d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 615/870] caffeine-ng: rebuild for Python 3.8.

---
 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 36287fbef5b..455b2f225c4 100644
--- a/srcpkgs/caffeine-ng/template
+++ b/srcpkgs/caffeine-ng/template
@@ -1,7 +1,7 @@
 # Template file for 'caffeine-ng'
 pkgname=caffeine-ng
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="caffeine"

From b857565a7a7fddfbffbcf40b9e784593d099a0a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 616/870] cairo-dock-plugins: rebuild for Python 3.8.

---
 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 9e6149c617f..0c23a7f6928 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=11
+revision=12
 build_style=cmake
 hostmakedepends="pkg-config"
 # XXX libetpan, libdbusmenu, etc

From c0c15488d9189a782c2ab6436de598620d4d2435 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 617/870] canto-curses: rebuild for Python 3.8.

---
 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 0905972b480..4270d61c2e0 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=4
+revision=5
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel ncurses-devel readline-devel"

From a821add22450c016c7b851ee1a0309da5b5d83af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 618/870] canto-next: rebuild for Python 3.8.

---
 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 fff7e82e238..fa28bde891b 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.7
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From fa2afe1224ee7d1e031e769bf84bd596e5ac6de2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 619/870] capstone: rebuild for Python 3.8.

---
 srcpkgs/capstone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/capstone/template b/srcpkgs/capstone/template
index e13c7666ed1..fded7c7157e 100644
--- a/srcpkgs/capstone/template
+++ b/srcpkgs/capstone/template
@@ -1,7 +1,7 @@
 # Template file for 'capstone'
 pkgname=capstone
 version=4.0.1
-revision=1
+revision=2
 build_style=gnu-makefile
 make_use_env=1
 hostmakedepends="python-setuptools python3-setuptools"

From 923fca0cf844d03c602bbae81add86e8be495762 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 620/870] catfish: rebuild for Python 3.8.

---
 srcpkgs/catfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/catfish/template b/srcpkgs/catfish/template
index 1b28ffcafff..b53de6b8ea6 100644
--- a/srcpkgs/catfish/template
+++ b/srcpkgs/catfish/template
@@ -1,7 +1,7 @@
 # Template file for 'catfish'
 pkgname=catfish
 version=1.4.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="catfish catfish_lib"

From fb71b3b941c7341384c307ef6e1654b8d0b54a3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 621/870] ccsm: rebuild for Python 3.8.

---
 srcpkgs/ccsm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ccsm/template b/srcpkgs/ccsm/template
index 0421e587b23..3067003017f 100644
--- a/srcpkgs/ccsm/template
+++ b/srcpkgs/ccsm/template
@@ -1,7 +1,7 @@
 # Template file for 'ccsm'
 pkgname=ccsm
 version=0.8.16
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 hostmakedepends="automake intltool libtool pkg-config python3"

From f4212d55b3ec84e188189bc74a572c728a37c66a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 622/870] cheat: rebuild for Python 3.8.

---
 srcpkgs/cheat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cheat/template b/srcpkgs/cheat/template
index b60b4ba53b2..f1e419c3c5a 100644
--- a/srcpkgs/cheat/template
+++ b/srcpkgs/cheat/template
@@ -1,7 +1,7 @@
 # Template file for 'cheat'
 pkgname=cheat
 version=2.5.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="cheat"
 conf_files="/etc/cheat"

From eb72b0be44091e56a3e5b73cdf6d11ff80ecb8ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 623/870] clearine: rebuild for Python 3.8.

---
 srcpkgs/clearine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/clearine/template b/srcpkgs/clearine/template
index 419bb3c4550..539d494b79b 100644
--- a/srcpkgs/clearine/template
+++ b/srcpkgs/clearine/template
@@ -1,7 +1,7 @@
 # Template file for 'clearine'
 pkgname=clearine
 version=0.7
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="Clearine"
 hostmakedepends="python3-setuptools"

From ca7e63827b68cba4586e81da6e622e70addc8b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 624/870] coccigrep: rebuild for Python 3.8.

---
 srcpkgs/coccigrep/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/coccigrep/template b/srcpkgs/coccigrep/template
index 736f16a458e..a02c2f78bb2 100644
--- a/srcpkgs/coccigrep/template
+++ b/srcpkgs/coccigrep/template
@@ -1,7 +1,7 @@
 # Template file for 'coccigrep'
 pkgname=coccigrep
 version=1.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coccigrep"

From 8b0269365914ae7e030b07b30f4a76f2f1726270 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 625/870] compizconfig-python: rebuild for Python 3.8.

---
 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 b9d9ce2892b..77d53c97f46 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.16
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static"
 hostmakedepends="automake intltool libtool pkg-config glib-devel gettext-devel python3-Cython"

From c7955381746f2b68e5bb140afe81526fd62a2d16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 626/870] coursera-dl: rebuild for Python 3.8.

---
 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 0dfdd73083f..2b09e53d836 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.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coursera"

From 1bf8d7143694f636186cfbdcf357f9b86f5a635b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 627/870] cozy: rebuild for Python 3.8.

---
 srcpkgs/cozy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cozy/template b/srcpkgs/cozy/template
index a35aff61f37..2515388da18 100644
--- a/srcpkgs/cozy/template
+++ b/srcpkgs/cozy/template
@@ -1,7 +1,7 @@
 # Template file for 'cozy'
 pkgname=cozy
 version=0.6.8
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 pycompile_module="cozy"

From 7b58e6f69ae54c84b50dfe4d6041cf861a698c60 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 628/870] cpuset: rebuild for Python 3.8.

---
 srcpkgs/cpuset/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cpuset/template b/srcpkgs/cpuset/template
index cf3910d2304..12b54631617 100644
--- a/srcpkgs/cpuset/template
+++ b/srcpkgs/cpuset/template
@@ -1,7 +1,7 @@
 # Template file for 'cpuset'
 pkgname=cpuset
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="cpuset"

From a542aca478f0e84bbc23d3fd91a236635712a9f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 629/870] ctop: rebuild for Python 3.8.

---
 srcpkgs/ctop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ctop/template b/srcpkgs/ctop/template
index b8ea58515b2..5231b4a4cb3 100644
--- a/srcpkgs/ctop/template
+++ b/srcpkgs/ctop/template
@@ -1,7 +1,7 @@
 # Template file for 'ctop'
 pkgname=ctop
 version=1.0.0
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="cgroup_top.py"

From b3065c411c5e0b3e48432c6901e1e7fb20eb00d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 630/870] cura: rebuild for Python 3.8.

---
 srcpkgs/cura/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cura/template b/srcpkgs/cura/template
index 31318e5aecf..ab5cd315f21 100644
--- a/srcpkgs/cura/template
+++ b/srcpkgs/cura/template
@@ -1,7 +1,7 @@
 # Template file for 'cura'
 pkgname=cura
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Cura-${version}"
 build_style=cmake

From 9f4eb67830feb2103a78edc7651e1f73cc606074 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 631/870] curseradio: rebuild for Python 3.8.

---
 srcpkgs/curseradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/curseradio/template b/srcpkgs/curseradio/template
index 4fe2306364a..f5afe3bba34 100644
--- a/srcpkgs/curseradio/template
+++ b/srcpkgs/curseradio/template
@@ -1,7 +1,7 @@
 # Template file for 'curseradio'
 pkgname=curseradio
 version=0.0.20171017
-revision=3
+revision=4
 archs=noarch
 _commit=1bd4bd0faeec675e0647bac9a100b526cba19f8d
 wrksrc="curseradio-${_commit}"

From fa4e6156adf5c317bb85ee1d8271c9e6ce57b3e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 632/870] d-feet: rebuild for Python 3.8.

---
 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 6930eddf582..7f7d593f30a 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.15
-revision=1
+revision=2
 build_style=meson
 maintainer="Enno Boland <gottox@voidlinux.org>"
 hostmakedepends="pkg-config intltool itstool python3-pycodestyle"

From d6145053ac873c90f6383dee8ec4d696463928f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 633/870] deluge: rebuild for Python 3.8.

---
 srcpkgs/deluge/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/deluge/template b/srcpkgs/deluge/template
index 6dc7f26184d..8148c68033c 100644
--- a/srcpkgs/deluge/template
+++ b/srcpkgs/deluge/template
@@ -1,7 +1,7 @@
 # Template file for 'deluge'
 pkgname=deluge
 version=2.0.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="deluge"

From 0b2691a90e5de63e49a3c3f3adfa709d618b0a05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 634/870] devedeng: rebuild for Python 3.8.

---
 srcpkgs/devedeng/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/devedeng/template b/srcpkgs/devedeng/template
index d971b2e207b..2d0516cedd3 100644
--- a/srcpkgs/devedeng/template
+++ b/srcpkgs/devedeng/template
@@ -1,7 +1,7 @@
 # Template file for 'devedeng'
 pkgname=devedeng
 version=4.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="devedeng"

From 8b7c3bcfced7b21089b0a64ac1c375eb973af343 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 635/870] distcc: rebuild for Python 3.8.

---
 srcpkgs/distcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/distcc/template b/srcpkgs/distcc/template
index ded4255becd..4d6a450533f 100644
--- a/srcpkgs/distcc/template
+++ b/srcpkgs/distcc/template
@@ -1,7 +1,7 @@
 # Template file for 'distcc'
 pkgname=distcc
 version=3.3.3
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-Werror --with-gtk"
 conf_files="

From 98151a807bebdc6d5e41e0b6a1bd0d65659fbb7e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 636/870] docker-compose: rebuild for Python 3.8.

---
 srcpkgs/docker-compose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/docker-compose/template b/srcpkgs/docker-compose/template
index c3383fdf1ad..f4a34005c83 100644
--- a/srcpkgs/docker-compose/template
+++ b/srcpkgs/docker-compose/template
@@ -1,7 +1,7 @@
 # Template file for 'docker-compose'
 pkgname=docker-compose
 version=1.24.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="compose-${version}"
 build_style=python3-module

From 9dc2f62edc54b5e314c24fe7bb303496223adb45 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 637/870] edx-dl: rebuild for Python 3.8.

---
 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 209884640c6..a51c917d606 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.10
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="edx_dl"

From 6a769ff00b2fc959627e96d44172f8a656548751 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 638/870] electrum: rebuild for Python 3.8.

---
 srcpkgs/electrum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template
index 3861becdda9..7525e08e9e2 100644
--- a/srcpkgs/electrum/template
+++ b/srcpkgs/electrum/template
@@ -1,7 +1,7 @@
 # Template file for 'electrum'
 pkgname=electrum
 version=3.3.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electrum electrum_gui electrum_plugins"

From be52dccd4b30af3377095664bf239767a0f7be39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 639/870] electrum-ltc: rebuild for Python 3.8.

---
 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 ad6f745e152..cf7265fbec8 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.6.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"

From 45951afeb4bab3066e0459cf1441d9c3570c85dc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 640/870] eolie: rebuild for Python 3.8.

---
 srcpkgs/eolie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eolie/template b/srcpkgs/eolie/template
index b3da3dcd829..94514510c98 100644
--- a/srcpkgs/eolie/template
+++ b/srcpkgs/eolie/template
@@ -1,7 +1,7 @@
 # Template file for 'eolie'
 pkgname=eolie
 version=0.9.62
-revision=1
+revision=2
 _eolie_hash=bb4aad19272cc636bd17f2f6602127fe
 build_style=meson
 pycompile_module="eolie"

From ad02dba2226dbfc6b1fb5e715af8b58821cd8c07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 641/870] eyeD3: rebuild for Python 3.8.

---
 srcpkgs/eyeD3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eyeD3/template b/srcpkgs/eyeD3/template
index 7be047810bd..211553f0adb 100644
--- a/srcpkgs/eyeD3/template
+++ b/srcpkgs/eyeD3/template
@@ -1,7 +1,7 @@
 # Template file for 'eyeD3'
 pkgname=eyeD3
 version=0.8.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="eyed3"

From 5333d561e8831b7103f00f5e4564ce20bc26e9b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 642/870] fail2ban: rebuild for Python 3.8.

---
 srcpkgs/fail2ban/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 829e93385dc..361bcd12edd 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,7 +1,7 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
 version=0.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From 6ed6f50c8422b21b0f8244e983014120a3467562 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 643/870] fava: rebuild for Python 3.8.

---
 srcpkgs/fava/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fava/template b/srcpkgs/fava/template
index 24e66cac45b..890858b095b 100644
--- a/srcpkgs/fava/template
+++ b/srcpkgs/fava/template
@@ -1,7 +1,7 @@
 # Template file for 'fava'
 pkgname=fava
 version=1.11
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fava"

From cfe04c8e627d5d3626d852a05f3a87ecf053557f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 644/870] fierce: rebuild for Python 3.8.

---
 srcpkgs/fierce/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fierce/template b/srcpkgs/fierce/template
index 86dedb39ad2..86692c6457b 100644
--- a/srcpkgs/fierce/template
+++ b/srcpkgs/fierce/template
@@ -1,7 +1,7 @@
 # Template file for 'fierce'
 pkgname=fierce
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fierce"

From c67a6380bd6f21a660d10cde09cb2930536faee5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 645/870] fifengine: rebuild for Python 3.8.

---
 srcpkgs/fifengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fifengine/template b/srcpkgs/fifengine/template
index 1d4bcbb9297..871c94ad7e0 100644
--- a/srcpkgs/fifengine/template
+++ b/srcpkgs/fifengine/template
@@ -1,7 +1,7 @@
 # Template file for 'fifengine'
 pkgname=fifengine
 version=0.4.2
-revision=1
+revision=2
 build_style=cmake
 pycompile_module="fife"
 hostmakedepends="swig python3"

From 407bb3354f4705ac3e7d9c40479ff7272cbf5478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 646/870] flake8: rebuild for Python 3.8.

---
 srcpkgs/flake8/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/flake8/template b/srcpkgs/flake8/template
index d8f2b095644..4d7ebeba176 100644
--- a/srcpkgs/flake8/template
+++ b/srcpkgs/flake8/template
@@ -1,7 +1,7 @@
 # Template file for 'flake8'
 pkgname=flake8
 version=3.7.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="flake8"

From ec61a4ea9af21e135e85134c6060314c2c564ea5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 647/870] fontforge: rebuild for Python 3.8.

---
 srcpkgs/fontforge/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fontforge/template b/srcpkgs/fontforge/template
index 7fb02d7e371..1da02103d46 100644
--- a/srcpkgs/fontforge/template
+++ b/srcpkgs/fontforge/template
@@ -1,7 +1,7 @@
 # Template file for 'fontforge'
 pkgname=fontforge
 version=20190801
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake ca-certificates git libltdl-devel libtool m4
  pkg-config python3"

From 37d1f517b9367374631622009aed8868dfe99ecd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 648/870] gajim: rebuild for Python 3.8.

---
 srcpkgs/gajim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gajim/template b/srcpkgs/gajim/template
index 8c49c0cf6ef..e81015b3906 100644
--- a/srcpkgs/gajim/template
+++ b/srcpkgs/gajim/template
@@ -1,7 +1,7 @@
 # Template file for 'gajim'
 pkgname=gajim
 version=1.1.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gajim"

From 6764ab529d750b0f000fb70b593f9496f09c50fc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 649/870] gajim-omemo: rebuild for Python 3.8.

---
 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 803f94713be..64d47228496 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.6.29
-revision=1
+revision=2
 wrksrc="omemo"
 hostmakedepends="unzip"
 depends="python3 python3-setuptools python3-cryptography python3-axolotl python3-qrcode"

From bc7772e30c45b0390f3924bc494ace8ebd3d9f36 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 650/870] gallery-dl: rebuild for Python 3.8.

---
 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 a1e8c633fe3..62b338a32e3 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.10.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gallery_dl"

From a8cce20a8f81be2bd1179503bf3fa064745c2f95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 651/870] gandi-cli: rebuild for Python 3.8.

---
 srcpkgs/gandi-cli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gandi-cli/template b/srcpkgs/gandi-cli/template
index c5e805a09fd..4193bfe4638 100644
--- a/srcpkgs/gandi-cli/template
+++ b/srcpkgs/gandi-cli/template
@@ -1,7 +1,7 @@
 # Template file for 'gandi-cli'
 pkgname=gandi-cli
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="gandi.cli-${version}"
 build_style=python3-module

From f24eb9392afdb698a8f6bcb6abdab1b341ce6c2c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 652/870] gcovr: rebuild for Python 3.8.

---
 srcpkgs/gcovr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gcovr/template b/srcpkgs/gcovr/template
index 2b9ff94bf2a..0d4addfc8a7 100644
--- a/srcpkgs/gcovr/template
+++ b/srcpkgs/gcovr/template
@@ -1,7 +1,7 @@
 # Template file for 'gcovr'
 pkgname=gcovr
 version=4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gcovr"

From 21e366047cdceab8cd4dc05cc5b2afd5835b1395 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 653/870] gedit: rebuild for Python 3.8.

---
 srcpkgs/gedit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gedit/template b/srcpkgs/gedit/template
index 904d3b7c3c4..6666c331c52 100644
--- a/srcpkgs/gedit/template
+++ b/srcpkgs/gedit/template
@@ -1,7 +1,7 @@
 # Template file for 'gedit'
 pkgname=gedit
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gi/overrides"

From a34206afb205056883f9d351a89feee4f5a7f1d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 654/870] geis: rebuild for Python 3.8.

---
 srcpkgs/geis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/geis/template b/srcpkgs/geis/template
index fe31a3d2aeb..20afe76b0d8 100644
--- a/srcpkgs/geis/template
+++ b/srcpkgs/geis/template
@@ -1,7 +1,7 @@
 # Template file for 'geis'
 pkgname=geis
 version=2.2.17
-revision=4
+revision=5
 hostmakedepends="pkg-config python3-devel"
 makedepends="dbus-devel grail-devel frame-devel libXi-devel python3-devel xorg-server-devel"
 build_style="gnu-configure"

From 4751615f95639084961d1ceefbad8661cb13b9ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 655/870] git-cola: rebuild for Python 3.8.

---
 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 7eaba90f3be..fd0bbf971d3 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.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/share/git-cola/lib"

From 2fc999adcdffd4a6eaaaaf3b8fdbfb423aa603a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 656/870] git-review: rebuild for Python 3.8.

---
 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 d999dc87b16..c180cc60780 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="git_review"

From c14895b46900cfa2238dafac7db17ef692e75f70 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 657/870] git-revise: rebuild for Python 3.8.

---
 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 4179a52bddc..a1bf51dc447 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.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gitrevise"

From 0379f2d2c9ee002adef1ea67940c16b8e3db800f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 658/870] gitg: rebuild for Python 3.8.

---
 srcpkgs/gitg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gitg/template b/srcpkgs/gitg/template
index e0da8e9490d..a3381fdb3a7 100644
--- a/srcpkgs/gitg/template
+++ b/srcpkgs/gitg/template
@@ -1,7 +1,7 @@
 # Template file for 'gitg'
 pkgname=gitg
 version=3.32.1
-revision=1
+revision=2
 build_style=meson
 hostmakedepends="intltool pkg-config gobject-introspection vala glib-devel"
 makedepends="gtksourceview-devel libgit2-glib-devel libgee08-devel gtkspell3-devel

From a95993c22089700ea90654bb0d14eeb2fb155e04 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 659/870] glances: rebuild for Python 3.8.

---
 srcpkgs/glances/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glances/template b/srcpkgs/glances/template
index 6d4766493c3..753d9e20c92 100644
--- a/srcpkgs/glances/template
+++ b/srcpkgs/glances/template
@@ -1,7 +1,7 @@
 # Template file for 'glances'
 pkgname=glances
 version=3.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Glances-${version}"
 build_style=python3-module

From 24927a3ac9bca47d577a500212e5deed867c8ed4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 660/870] glusterfs: rebuild for Python 3.8.

---
 srcpkgs/glusterfs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glusterfs/template b/srcpkgs/glusterfs/template
index a1304e266fe..90093864286 100644
--- a/srcpkgs/glusterfs/template
+++ b/srcpkgs/glusterfs/template
@@ -1,7 +1,7 @@
 # Template file for 'glusterfs'
 pkgname=glusterfs
 version=6.5
-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 c552b476f065f5e48aaf19f15deb832a11585d19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 661/870] gnome-authenticator: rebuild for Python 3.8.

---
 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 52d161897c7..ab7c505c0fe 100644
--- a/srcpkgs/gnome-authenticator/template
+++ b/srcpkgs/gnome-authenticator/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-authenticator'
 pkgname=gnome-authenticator
 version=0.2.4
-revision=2
+revision=3
 _libgd_hash=7ae254bfc5f641c60566614e08245176f7bc5aa8
 wrksrc="Authenticator-${version}"
 build_style=meson

From 326e3cf399d3c30acca80ebcba381ebee7bedf18 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 662/870] gnome-music: rebuild for Python 3.8.

---
 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 bceb7c369c8..e2fbbcbdeca 100644
--- a/srcpkgs/gnome-music/template
+++ b/srcpkgs/gnome-music/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-music'
 pkgname=gnome-music
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gnomemusic"

From 54dd3e6ac7152bcaa2705310a6ad89c478248392 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 663/870] gnome-passbook: rebuild for Python 3.8.

---
 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 54035dc920b..89047338503 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.1
-revision=1
+revision=2
 _release_hash=0a227cfdf706f4bfcc0b782026f1aeb2
 wrksrc="passbook-${version}"
 build_style=meson

From 3ab30ed862806134529facd2eac26f11c81a6aab Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 664/870] gnome-passwordsafe: rebuild for Python 3.8.

---
 srcpkgs/gnome-passwordsafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnome-passwordsafe/template b/srcpkgs/gnome-passwordsafe/template
index f310ce03a08..8f1f19174d2 100644
--- a/srcpkgs/gnome-passwordsafe/template
+++ b/srcpkgs/gnome-passwordsafe/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-passwordsafe'
 pkgname=gnome-passwordsafe
 version=3.32.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="PasswordSafe-${version}"
 build_style=meson

From 7a85d0114447b9afbe2622d65d9d32ebf25e1b0d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 665/870] gns3-gui: rebuild for Python 3.8.

---
 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 38751dea59b..f4318dc6afc 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.1.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3"

From 5afb15227655d19b08cb6898313406d2adf87cb1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 666/870] gns3-net-converter: rebuild for Python 3.8.

---
 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 b9b7403e8a6..70b6c90e8c8 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=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3converter"

From 691cf14e7e993b7c5328c23b421047495c640117 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 667/870] gns3-server: rebuild for Python 3.8.

---
 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 6bd9c067b20..739c584cb7c 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.1.21
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="gns3server"
 hostmakedepends="python3-setuptools"

From 842c783046557e106e878f50b0379079f610e9dc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 668/870] gnucash: rebuild for Python 3.8.

---
 srcpkgs/gnucash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnucash/template b/srcpkgs/gnucash/template
index 68bb811fc42..d8ff0a8ec86 100644
--- a/srcpkgs/gnucash/template
+++ b/srcpkgs/gnucash/template
@@ -1,7 +1,7 @@
 # Template file for 'gnucash'
 pkgname=gnucash
 version=3.7
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DWITH_SQL=0 -DWITH_PYTHON=1"
 hostmakedepends="pkg-config guile python3 libxslt perl"

From 24268beeb811440b7e293e6475a5b6cb30e3d085 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 669/870] gom: rebuild for Python 3.8.

---
 srcpkgs/gom/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gom/template b/srcpkgs/gom/template
index 6ec2a5e338f..0b45e19def4 100644
--- a/srcpkgs/gom/template
+++ b/srcpkgs/gom/template
@@ -1,7 +1,7 @@
 # Template file for 'gom'
 pkgname=gom
 version=0.3.3
-revision=3
+revision=4
 build_style=meson
 build_helper="gir"
 configure_args="-Denable-introspection=$(vopt_if gir true false)

From 745a4d5304e4ee05e1c5f650b6681679864cc017 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 670/870] gpodder: rebuild for Python 3.8.

---
 srcpkgs/gpodder/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gpodder/template b/srcpkgs/gpodder/template
index 7c7414e19cd..5cc63ab4205 100644
--- a/srcpkgs/gpodder/template
+++ b/srcpkgs/gpodder/template
@@ -1,7 +1,7 @@
 # Template file for 'gpodder'
 pkgname=gpodder
 version=3.10.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="gpodder-${version}"
 make_check_target=unittest

From ba7a6129f032a0ead257c15a0c837a639c0ea212 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 671/870] gramps: rebuild for Python 3.8.

---
 srcpkgs/gramps/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gramps/template b/srcpkgs/gramps/template
index 9d1d1a4616a..5d40aeefb49 100644
--- a/srcpkgs/gramps/template
+++ b/srcpkgs/gramps/template
@@ -1,7 +1,7 @@
 # Template file for 'gramps'
 pkgname=gramps
 version=5.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gramps"

From 65d0823670965df308abec4fe4f30ddb905ede1b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 672/870] greg: rebuild for Python 3.8.

---
 srcpkgs/greg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/greg/template b/srcpkgs/greg/template
index 9c15ba82f4b..d898d5fdf61 100644
--- a/srcpkgs/greg/template
+++ b/srcpkgs/greg/template
@@ -1,7 +1,7 @@
 # Template file for 'greg'
 pkgname=greg
 version=0.4.7
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 pycompile_module="greg"

From 30ef49828a543316c4dd05e3398e26defa30a408 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 673/870] gst1-python3: rebuild for Python 3.8.

---
 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 6f02f19aca3..bf946f6a8bf 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.16.1
-revision=1
+revision=2
 wrksrc="gst-python-${version}"
 build_style=meson
 pycompile_module="gi/overrides"

From 467f0afab155652e7699d109285cca4bc9c885ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 674/870] guake: rebuild for Python 3.8.

---
 srcpkgs/guake/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/guake/template b/srcpkgs/guake/template
index 86eaba649a7..d92fdf89355 100644
--- a/srcpkgs/guake/template
+++ b/srcpkgs/guake/template
@@ -1,7 +1,7 @@
 # Template file for 'guake'
 pkgname=guake
 version=3.6.3
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 wrksrc="Guake-${version}"

From 45bb85c26d1957e19a694d18452c6938165f4872 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 675/870] gufw: rebuild for Python 3.8.

---
 srcpkgs/gufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gufw/template b/srcpkgs/gufw/template
index d2b8a4b025d..a4e7d861d71 100644
--- a/srcpkgs/gufw/template
+++ b/srcpkgs/gufw/template
@@ -1,7 +1,7 @@
 # Template file for 'gufw'
 pkgname=gufw
 version=19.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="gui-ufw-${version}"
 build_style=python3-module

From d4a05cf1f07994b8fa60292041f0403886c88b2b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 676/870] hamlib: rebuild for Python 3.8.

---
 srcpkgs/hamlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hamlib/template b/srcpkgs/hamlib/template
index c28a069cd6f..d52436c0893 100644
--- a/srcpkgs/hamlib/template
+++ b/srcpkgs/hamlib/template
@@ -1,7 +1,7 @@
 # Template file for 'hamlib'
 pkgname=hamlib
 version=3.3
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static --with-perl-binding --with-python-binding
  --with-tcl-binding --with-xml-support"

From 61c1a909b583aec0b87dbf02e54d3592779a9eea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 677/870] hangups: rebuild for Python 3.8.

---
 srcpkgs/hangups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hangups/template b/srcpkgs/hangups/template
index 0a2f2db16b4..0837a2c47c3 100644
--- a/srcpkgs/hangups/template
+++ b/srcpkgs/hangups/template
@@ -1,7 +1,7 @@
 # Template file for 'hangups'
 pkgname=hangups
 version=0.4.9
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="hangups"
 hostmakedepends="python3-setuptools"

From cb8152d1f00e4868426b3a01291b3a6ccac71562 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 678/870] hplip: rebuild for Python 3.8.

---
 srcpkgs/hplip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hplip/template b/srcpkgs/hplip/template
index 07a707569f6..3ef76e4591b 100644
--- a/srcpkgs/hplip/template
+++ b/srcpkgs/hplip/template
@@ -1,7 +1,7 @@
 # Template file for 'hplip'
 pkgname=hplip
 version=3.19.8
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="usr/share/hplip"
 configure_args="

From 25b00e31f1ef098b2a99908b8c8a4b36ebe67f57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 679/870] httpie: rebuild for Python 3.8.

---
 srcpkgs/httpie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/httpie/template b/srcpkgs/httpie/template
index 387af8ebf05..61fc1499d35 100644
--- a/srcpkgs/httpie/template
+++ b/srcpkgs/httpie/template
@@ -1,7 +1,7 @@
 # Template file for 'httpie'
 pkgname=httpie
 version=1.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="httpie"

From e00ad4f66dc231e3fe5d81505590914c2252b49b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 680/870] ibus: rebuild for Python 3.8.

---
 srcpkgs/ibus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ibus/template b/srcpkgs/ibus/template
index 4875c7535d6..d3c35d786a4 100644
--- a/srcpkgs/ibus/template
+++ b/srcpkgs/ibus/template
@@ -1,7 +1,7 @@
 # Template file for 'ibus'
 pkgname=ibus
 version=1.5.20
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 configure_args="--enable-ui --enable-gtk3 --disable-tests

From 26a877bb967b42d4ddace9518b9dc93a346272f1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 681/870] iotop: rebuild for Python 3.8.

---
 srcpkgs/iotop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template
index 146a9e97791..522bf32a7c2 100644
--- a/srcpkgs/iotop/template
+++ b/srcpkgs/iotop/template
@@ -1,7 +1,7 @@
 # Template file for 'iotop'
 pkgname=iotop
 version=0.6
-revision=5
+revision=6
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From dd62ae7b2d40c5af82249e3906f729a7a18f654d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 682/870] jrnl: rebuild for Python 3.8.

---
 srcpkgs/jrnl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template
index 3d08f129885..b184ef09508 100644
--- a/srcpkgs/jrnl/template
+++ b/srcpkgs/jrnl/template
@@ -1,7 +1,7 @@
 # Template file for 'jrnl'
 pkgname=jrnl
 version=1.9.8
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="jrnl"

From 9a8c27d733f016ae7374e5e7a9435015e9fd3216 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 683/870] khal: rebuild for Python 3.8.

---
 srcpkgs/khal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khal/template b/srcpkgs/khal/template
index 39d08a66ba8..a73516695bf 100644
--- a/srcpkgs/khal/template
+++ b/srcpkgs/khal/template
@@ -1,7 +1,7 @@
 # Template file for 'khal'
 pkgname=khal
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khal"

From 53ec54c8e3e2d4cb139f21374502251873570a9d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 684/870] khard: rebuild for Python 3.8.

---
 srcpkgs/khard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khard/template b/srcpkgs/khard/template
index 6c6f3024be1..3ec9f398d99 100644
--- a/srcpkgs/khard/template
+++ b/srcpkgs/khard/template
@@ -1,7 +1,7 @@
 # Template file for 'khard'
 pkgname=khard
 version=0.14.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khard"

From a159e67253450103f29d38eb10e59405e50bf613 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 685/870] lfm: rebuild for Python 3.8.

---
 srcpkgs/lfm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lfm/template b/srcpkgs/lfm/template
index 0a0a3b4f563..1e0e7cf29fa 100644
--- a/srcpkgs/lfm/template
+++ b/srcpkgs/lfm/template
@@ -1,7 +1,7 @@
 # Template file for 'lfm'
 pkgname=lfm
 version=3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 56b17522b1b2960b826e699fe065a9f82445cf54 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 686/870] libArcus: rebuild for Python 3.8.

---
 srcpkgs/libArcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libArcus/template b/srcpkgs/libArcus/template
index 8e6c97ada21..d2ffda576d4 100644
--- a/srcpkgs/libArcus/template
+++ b/srcpkgs/libArcus/template
@@ -1,7 +1,7 @@
 # Template file for 'libArcus'
 pkgname=libArcus
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DBUILD_EXAMPLES=OFF"
 hostmakedepends="protobuf python3-sip-devel"

From 12cd20782cd556c71e2f3b447feb0cbd46247423 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 687/870] libSavitar: rebuild for Python 3.8.

---
 srcpkgs/libSavitar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libSavitar/template b/srcpkgs/libSavitar/template
index a9d3020158f..213f02f4d65 100644
--- a/srcpkgs/libSavitar/template
+++ b/srcpkgs/libSavitar/template
@@ -1,7 +1,7 @@
 # Template file for 'libSavitar'
 pkgname=libSavitar
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 hostmakedepends="python3"
 makedepends="python3-sip-devel python3-devel pugixml-devel"

From 216775ff8b2a375819a1ace57b9158c61eb0dd61 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 688/870] libaccounts-glib: rebuild for Python 3.8.

---
 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 717be24f209..239f9307261 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=2
+revision=3
 wrksrc="${pkgname}-VERSION_${version}-8948717702424ce15f4e23e5db2c8ce0799ec120"
 build_style=meson
 hostmakedepends="gtk-doc pkg-config glib-devel gobject-introspection vala"

From 94466e31af444dca67190cc61b3110907cf50c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 689/870] libblockdev: rebuild for Python 3.8.

---
 srcpkgs/libblockdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libblockdev/template b/srcpkgs/libblockdev/template
index 1df156e3c5b..ff20fc70618 100644
--- a/srcpkgs/libblockdev/template
+++ b/srcpkgs/libblockdev/template
@@ -1,7 +1,7 @@
 # Template file for 'libblockdev'
 pkgname=libblockdev
 version=2.21
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="cryptsetup-devel device-mapper-devel dmraid-devel libbytesize-devel

From 33efb1b83b8be1b62e1c4e30533b5edcd013cef9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 690/870] libbytesize: rebuild for Python 3.8.

---
 srcpkgs/libbytesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libbytesize/template b/srcpkgs/libbytesize/template
index ee1862d889d..e07cdf29a82 100644
--- a/srcpkgs/libbytesize/template
+++ b/srcpkgs/libbytesize/template
@@ -1,7 +1,7 @@
 # Template file for 'libbytesize'
 pkgname=libbytesize
 version=1.4
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python3"
 makedepends="mpfr-devel pcre-devel"

From fea9c5f0233eedb9b18738812792808468a76f26 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 691/870] libcap-ng: rebuild for Python 3.8.

---
 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 f462636c4c1..c6ec4f0a216 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.7.10
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-python --without-python3"
 short_desc="Alternate POSIX capabilities library"

From a29df804f5f5550bf4d5b5320ee4948759e6c305 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 692/870] libffado: rebuild for Python 3.8.

---
 srcpkgs/libffado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libffado/template b/srcpkgs/libffado/template
index a9b6a5ec6a8..d566806bd82 100644
--- a/srcpkgs/libffado/template
+++ b/srcpkgs/libffado/template
@@ -1,7 +1,7 @@
 # Template file for 'libffado'
 pkgname=libffado
 version=2.4.1
-revision=1
+revision=2
 build_style=scons
 make_build_args="PREFIX=/usr MANDIR=/usr/share/man
  UDEVDIR=/usr/lib/udev/rules.d CUSTOM_ENV=1 BUILD_TESTS=0

From aaa1052c28b13bcb3d52be952473f75b410bc3a5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 693/870] libgit2-glib: rebuild for Python 3.8.

---
 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 05389a18258..ce68cb35d66 100644
--- a/srcpkgs/libgit2-glib/template
+++ b/srcpkgs/libgit2-glib/template
@@ -1,7 +1,7 @@
 # Template file for 'libgit2-glib'
 pkgname=libgit2-glib
 version=0.28.0.1
-revision=1
+revision=2
 build_style=meson
 build_helper="gir"
 configure_args="-Dintrospection=$(vopt_if gir true false)

From 7ffe04cf761a7951e8676aaf19bfc74ea7afd9e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 694/870] libixion: rebuild for Python 3.8.

---
 srcpkgs/libixion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libixion/template b/srcpkgs/libixion/template
index 5d2c58ee7c0..dbc05d8b9c1 100644
--- a/srcpkgs/libixion/template
+++ b/srcpkgs/libixion/template
@@ -2,7 +2,7 @@
 pkgname=libixion
 reverts="0.15.0_1"
 version=0.14.1
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="boost-devel mdds python3-devel"

From 557a7374c8a723fe47eac87b749a3e5dab9b065f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 695/870] liblouis: rebuild for Python 3.8.

---
 srcpkgs/liblouis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liblouis/template b/srcpkgs/liblouis/template
index 77194ad8820..13c29b62b21 100644
--- a/srcpkgs/liblouis/template
+++ b/srcpkgs/liblouis/template
@@ -1,7 +1,7 @@
 # Template file for 'liblouis'
 pkgname=liblouis
 version=3.9.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--enable-ucs4"
 pycompile_module="louis"

From 1506881961ad439ec9a3b03a86050ced3cc08983 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 696/870] opencv: rebuild for Python 3.8.

---
 srcpkgs/opencv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/opencv/template b/srcpkgs/opencv/template
index fcc38299f23..474b77be181 100644
--- a/srcpkgs/opencv/template
+++ b/srcpkgs/opencv/template
@@ -1,7 +1,7 @@
 # Template file for 'opencv'
 pkgname=opencv
 version=3.4.5
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_PRECOMPILED_HEADERS=OFF -DWITH_OPENMP=ON
  -DWITH_OPENCL=ON -DENABLE_CXX11=ON -DOPENCV_SKIP_PYTHON_LOADER=ON

From 6df077181034669b774a3c0970cbb9ff6bee89e4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 697/870] libopenshot: rebuild for Python 3.8.

---
 srcpkgs/libopenshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libopenshot/template b/srcpkgs/libopenshot/template
index e1ac18faf93..dab1f2ae1e3 100644
--- a/srcpkgs/libopenshot/template
+++ b/srcpkgs/libopenshot/template
@@ -1,7 +1,7 @@
 # Template file for 'libopenshot'
 pkgname=libopenshot
 version=0.2.3
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 build_style=cmake
 pycompile_module="openshot.py"

From 752805838a3ad0e10c0436ebcada33640ce68c13 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 698/870] liborcus: rebuild for Python 3.8.

---
 srcpkgs/liborcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liborcus/template b/srcpkgs/liborcus/template
index 3523d7830d8..e7704c43974 100644
--- a/srcpkgs/liborcus/template
+++ b/srcpkgs/liborcus/template
@@ -2,7 +2,7 @@
 pkgname=liborcus
 reverts="0.15.0_1"
 version=0.14.1
-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 2d69770514f574a291491ebde6163d11355249a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 699/870] libpwquality: rebuild for Python 3.8.

---
 srcpkgs/libpwquality/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpwquality/template b/srcpkgs/libpwquality/template
index e5a656236d7..6c2209155a3 100644
--- a/srcpkgs/libpwquality/template
+++ b/srcpkgs/libpwquality/template
@@ -1,7 +1,7 @@
 # Template file for 'libpwquality'
 pkgname=libpwquality
 version=1.4.1
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static --enable-pam --with-securedir=/usr/lib/security"
 hostmakedepends="libtool automake gettext-devel"

From 9ca73676016d30a0c0daf2c7fed88939f372d671 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 700/870] libsearpc: rebuild for Python 3.8.

---
 srcpkgs/libsearpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsearpc/template b/srcpkgs/libsearpc/template
index 61f68e5e7de..a7e0b9ce05c 100644
--- a/srcpkgs/libsearpc/template
+++ b/srcpkgs/libsearpc/template
@@ -1,7 +1,7 @@
 # Template file for 'libsearpc'
 pkgname=libsearpc
 version=3.1.0
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="pysearpc"
 configure_args="PYTHON=python3 --disable-static --disable-compile-demo"

From ac5e6676c6996682ed37a945ed0099ed2d5cc0b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 701/870] libtorrent-rasterbar: rebuild for Python 3.8.

---
 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 118108c6184..a56b9313caa 100644
--- a/srcpkgs/libtorrent-rasterbar/template
+++ b/srcpkgs/libtorrent-rasterbar/template
@@ -1,7 +1,7 @@
 # Template file for 'libtorrent-rasterbar'
 pkgname=libtorrent-rasterbar
 version=1.1.13
-revision=3
+revision=4
 build_style=gnu-configure
 configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=boost_python36"
 hostmakedepends="automake pkg-config intltool libtool python3-devel"

From ea5fedefea8c961547772cada6361f1bf2bf1b8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 702/870] libvirt-python: rebuild for Python 3.8.

---
 srcpkgs/libvirt-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvirt-python/template b/srcpkgs/libvirt-python/template
index a2f0e038166..56253c9d3b0 100644
--- a/srcpkgs/libvirt-python/template
+++ b/srcpkgs/libvirt-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libvirt-python'
 pkgname=libvirt-python
 version=5.8.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="libvirt.py libvirt_lxc.py libvirt_qemu.py"
 hostmakedepends="pkg-config python-devel python3-devel libvirt-devel"

From b326739601351a1ef5e7eedaf5fd9f2fdec0c28d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 703/870] libvoikko: rebuild for Python 3.8.

---
 srcpkgs/libvoikko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvoikko/template b/srcpkgs/libvoikko/template
index 8d21b0f9c71..ba8eef837ee 100644
--- a/srcpkgs/libvoikko/template
+++ b/srcpkgs/libvoikko/template
@@ -1,7 +1,7 @@
 # Template file for 'libvoikko'
 pkgname=libvoikko
 version=4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-hfst=false --with-dictionary-path=/usr/share/voikko"
 pycompile_module="libvoikko.py"

From 08fd7784529ce9859241cb746bbe4858d6b04d43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 704/870] libxml2-python: rebuild for Python 3.8.

---
 srcpkgs/libxml2-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libxml2-python/template b/srcpkgs/libxml2-python/template
index a80208823c2..5514ed43437 100644
--- a/srcpkgs/libxml2-python/template
+++ b/srcpkgs/libxml2-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libxml2-python'
 pkgname=libxml2-python
 version=2.9.9
-revision=3
+revision=4
 wrksrc="${pkgname%-python}-${version}"
 build_wrksrc=python
 build_style=python-module

From b5724330bf4a369b7a3693a64d6dc66d548d6d11 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 705/870] lightdm-gtk-greeter-settings: rebuild for Python 3.8.

---
 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 715f41bbef4..76a25b91e4c 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=1
+revision=2
 build_style=python3-module
 pycompile_module="lightdm_gtk_greeter_settings"
 hostmakedepends="python3-distutils-extra intltool"

From 3f793567a35e87976cfc4e1ec71d2df577066542 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 706/870] llvm9: rebuild for Python 3.8.

---
 srcpkgs/llvm9/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/llvm9/template b/srcpkgs/llvm9/template
index 3c1a1a3451b..890a93855d8 100644
--- a/srcpkgs/llvm9/template
+++ b/srcpkgs/llvm9/template
@@ -1,7 +1,7 @@
 # Template file for 'llvm9'
 pkgname=llvm9
 version=9.0.0
-revision=2
+revision=3
 wrksrc="llvm-${version}.src"
 build_style=cmake
 configure_args="

From 35705a0ec1fa89e486ce0bd914a281e75fb4c60d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 707/870] lollypop: rebuild for Python 3.8.

---
 srcpkgs/lollypop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lollypop/template b/srcpkgs/lollypop/template
index 56ace773bf3..3bd13c0d387 100644
--- a/srcpkgs/lollypop/template
+++ b/srcpkgs/lollypop/template
@@ -1,7 +1,7 @@
 # Template file for 'lollypop'
 pkgname=lollypop
 version=1.1.4.16
-revision=1
+revision=2
 # Gitlab upload tag hash
 _uhash=6b4e4e7a2c17f0770c1e2b3354ae5a3a
 archs=noarch

From abf170929ecb8e6514bb9b623c9bf0025d95467f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 708/870] lutris: rebuild for Python 3.8.

---
 srcpkgs/lutris/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lutris/template b/srcpkgs/lutris/template
index 8f54d693a12..75be521cc7c 100644
--- a/srcpkgs/lutris/template
+++ b/srcpkgs/lutris/template
@@ -1,7 +1,7 @@
 # Template file for 'lutris'
 pkgname=lutris
 version=0.5.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 build_helper="gir"

From 033d24a275b27b3e4290898f71e29ee61831825c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 709/870] magic-wormhole: rebuild for Python 3.8.

---
 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 c07753ce6ad..d93a1bbe1fc 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.11.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wormhole"

From 97518974b69815df971e878124b25e7f71d5e8ab Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 710/870] mate-tweak: rebuild for Python 3.8.

---
 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 85b829e85e8..76b79524269 100644
--- a/srcpkgs/mate-tweak/template
+++ b/srcpkgs/mate-tweak/template
@@ -1,7 +1,7 @@
 # Template file for 'mate-tweak'
 pkgname=mate-tweak
 version=19.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-pbr python3-setuptools"

From 5dcb7210004ff108d598ef337501b6a714ab18e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 711/870] med: rebuild for Python 3.8.

---
 srcpkgs/med/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/med/template b/srcpkgs/med/template
index 34dd6d006d6..acd79293246 100644
--- a/srcpkgs/med/template
+++ b/srcpkgs/med/template
@@ -1,7 +1,7 @@
 # Template file for 'med'
 pkgname=med
 version=4.0.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--with-swig=yes --includedir=/usr/include/med"
 pycompile_module=med

From 8a253a522a5cf6290bab4c221b11fe17c243d918 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 712/870] meld: rebuild for Python 3.8.

---
 srcpkgs/meld/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meld/template b/srcpkgs/meld/template
index 9ed6114299e..7cbac065ce6 100644
--- a/srcpkgs/meld/template
+++ b/srcpkgs/meld/template
@@ -1,7 +1,7 @@
 # Template file for 'meld'
 pkgname=meld
 version=3.20.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="meld"

From 570c0fe2a12b7d554e25105d2b112ddb4639606d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 713/870] menulibre: rebuild for Python 3.8.

---
 srcpkgs/menulibre/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/menulibre/template b/srcpkgs/menulibre/template
index 64311115bec..f16c5f64337 100644
--- a/srcpkgs/menulibre/template
+++ b/srcpkgs/menulibre/template
@@ -1,7 +1,7 @@
 # Template file for 'menulibre'
 pkgname=menulibre
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="menulibre menulibre_lib"

From a00eefda40ce07b1d840325fe9d07a3ab8099ec7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 714/870] meson-cmake-wrapper: rebuild for Python 3.8.

---
 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 ca14e533431..57eea159ca8 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mcw"

From 2f979bcaea6b0d151c0a1a6e9d203902e997ec89 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 715/870] mimeo: rebuild for Python 3.8.

---
 srcpkgs/mimeo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mimeo/template b/srcpkgs/mimeo/template
index bef8dcde863..991c61d9df8 100644
--- a/srcpkgs/mimeo/template
+++ b/srcpkgs/mimeo/template
@@ -1,7 +1,7 @@
 # Template file for 'mimeo'
 pkgname=mimeo
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="Mimeo.py"

From ff1f527a20fbed7dd0fed1d250d2985e5b0706cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 716/870] mozo: rebuild for Python 3.8.

---
 srcpkgs/mozo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template
index 041f2454c3d..7bc18f017c7 100644
--- a/srcpkgs/mozo/template
+++ b/srcpkgs/mozo/template
@@ -1,7 +1,7 @@
 # Template file for 'mozo'
 pkgname=mozo
 version=1.22.2
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="Mozo"

From 2a061e622b522b730af8b794f71c53c34b944c47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 717/870] mpd-sima: rebuild for Python 3.8.

---
 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 fb72f0d2632..831fec709b7 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=1
+revision=2
 archs=noarch
 wrksrc="MPD_sima-${version}"
 build_style=python3-module

From 4541fbfc5e539024ce3f3e9df1ea6d3e01ac44d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 718/870] mps-youtube: rebuild for Python 3.8.

---
 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 7b104aa706f..2141b3e627d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mps_youtube"

From d2c8b5993a534c4886b03fac48576e98c1386ba1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 719/870] mugshot: rebuild for Python 3.8.

---
 srcpkgs/mugshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mugshot/template b/srcpkgs/mugshot/template
index cf27b30acac..1e695654a86 100644
--- a/srcpkgs/mugshot/template
+++ b/srcpkgs/mugshot/template
@@ -1,7 +1,7 @@
 # Template file for 'mugshot'
 pkgname=mugshot
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra"

From db10cdade64c5729cc74bab77e95afdfbcadc1f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 720/870] multibootusb: rebuild for Python 3.8.

---
 srcpkgs/multibootusb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/multibootusb/template b/srcpkgs/multibootusb/template
index 049b641c5fd..70cb07a85ac 100644
--- a/srcpkgs/multibootusb/template
+++ b/srcpkgs/multibootusb/template
@@ -1,7 +1,7 @@
 # Template file for 'multibootusb'
 pkgname=multibootusb
 version=9.2.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="scripts"

From c9b4100746fd53623e815e7ae46e1b1f52380e24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 721/870] mymcplus: rebuild for Python 3.8.

---
 srcpkgs/mymcplus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mymcplus/template b/srcpkgs/mymcplus/template
index 369ac8048ed..f30c62b09f4 100644
--- a/srcpkgs/mymcplus/template
+++ b/srcpkgs/mymcplus/template
@@ -1,7 +1,7 @@
 # Template file for 'mymcplus'
 pkgname=mymcplus
 version=3.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mymcplus"

From b2378661b9952d583c3fd2fa9a34c0c5323afad2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 722/870] nagstamon: rebuild for Python 3.8.

---
 srcpkgs/nagstamon/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/nagstamon/template b/srcpkgs/nagstamon/template
index 3a63bb5f1d9..6377e269309 100644
--- a/srcpkgs/nagstamon/template
+++ b/srcpkgs/nagstamon/template
@@ -1,7 +1,7 @@
 # Template file for 'nagstamon'
 pkgname=nagstamon
 version=3.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=Nagstamon
 build_style=python3-module

From 603bb18ac02a2be19f284b1f67d90c521bc01c8f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 723/870] neovim-remote: rebuild for Python 3.8.

---
 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 d8473bf0521..7391f9df2ee 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.2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nvr"

From b0ed985381a1685240ba4279fa545dbb0d59bf75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 724/870] newt: rebuild for Python 3.8.

---
 srcpkgs/newt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/newt/template b/srcpkgs/newt/template
index 3971bbfdbf7..25ccc946f51 100644
--- a/srcpkgs/newt/template
+++ b/srcpkgs/newt/template
@@ -1,7 +1,7 @@
 # Template file for 'newt'
 pkgname=newt
 version=0.52.21
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python-devel python3-devel"
 makedepends="slang-devel popt-devel python3-devel python-devel"

From d391f8e56c1266e015552919c6778d81b04188e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 725/870] notmuch: rebuild for Python 3.8.

---
 srcpkgs/notmuch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/notmuch/template b/srcpkgs/notmuch/template
index ced670a59d4..a3085fd4c27 100644
--- a/srcpkgs/notmuch/template
+++ b/srcpkgs/notmuch/template
@@ -1,7 +1,7 @@
 # Template file for 'notmuch'
 pkgname=notmuch
 version=0.29.1
-revision=1
+revision=2
 hostmakedepends="perl pkg-config python-devel python3-Sphinx python3-devel"
 makedepends="bash-completion gmime3-devel talloc-devel xapian-core-devel"
 short_desc="Thread-based email index, search, and tagging"

From 764938fb65f7ce96e941e254e8160b34907628d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 726/870] nyx: rebuild for Python 3.8.

---
 srcpkgs/nyx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/nyx/template b/srcpkgs/nyx/template
index 201ab5856ff..4b265771793 100644
--- a/srcpkgs/nyx/template
+++ b/srcpkgs/nyx/template
@@ -1,7 +1,7 @@
 # Template file for 'nyx'
 pkgname=nyx
 version=2.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nyx"

From 6087f754c2784a04c94f62c673d1b93d1f9b69f8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 727/870] olm-python: rebuild for Python 3.8.

---
 srcpkgs/olm-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/olm-python/template b/srcpkgs/olm-python/template
index 57ac1cfa01b..0141611ea3f 100644
--- a/srcpkgs/olm-python/template
+++ b/srcpkgs/olm-python/template
@@ -1,7 +1,7 @@
 # Template file for 'olm-python'
 pkgname=olm-python
 version=3.1.4
-revision=1
+revision=2
 wrksrc="olm-${version}"
 build_wrksrc=python
 build_style=python-module

From 1fc318bd20b04418299f379ef9aae944b1c52797 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 728/870] onboard: rebuild for Python 3.8.

---
 srcpkgs/onboard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onboard/template b/srcpkgs/onboard/template
index 844744038d8..467ed8f0ea5 100644
--- a/srcpkgs/onboard/template
+++ b/srcpkgs/onboard/template
@@ -1,7 +1,7 @@
 # Template file for 'onboard'
 pkgname=onboard
 version=1.4.1
-revision=4
+revision=5
 build_style=python3-module
 pycompile_module="Onboard"
 patch_args="-Np1"

From 98444af4a966b0963945a92e602015593ab8e13e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 729/870] openrazer-meta: rebuild for Python 3.8.

---
 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 112cb9e900b..60dc8212a73 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=2
+revision=3
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From ae87aaf473f51392a157b756b26694f9cb443bdb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 730/870] openshot: rebuild for Python 3.8.

---
 srcpkgs/openshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/openshot/template b/srcpkgs/openshot/template
index 605ea7305c2..d71b4d09fae 100644
--- a/srcpkgs/openshot/template
+++ b/srcpkgs/openshot/template
@@ -1,7 +1,7 @@
 # Template file for 'openshot'
 pkgname=openshot
 version=2.4.4
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 wrksrc="${pkgname}-qt-${version}"
 build_style=python3-module

From 833825f13e27bb007063cf5088f03b19a2cc08d1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 731/870] orca: rebuild for Python 3.8.

---
 srcpkgs/orca/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/orca/template b/srcpkgs/orca/template
index ac1c0e1dc0e..57d1495c10a 100644
--- a/srcpkgs/orca/template
+++ b/srcpkgs/orca/template
@@ -1,7 +1,7 @@
 # Template file for 'orca'
 pkgname=orca
 version=3.34.0
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="orca"

From fd434fc04bd61615f3ce092210da9bce156e0b1c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 732/870] papis: rebuild for Python 3.8.

---
 srcpkgs/papis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/papis/template b/srcpkgs/papis/template
index 95044b2a6a4..d99f358fc0d 100644
--- a/srcpkgs/papis/template
+++ b/srcpkgs/papis/template
@@ -1,7 +1,7 @@
 # Template file for 'papis'
 pkgname=papis
 version=0.8
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-requests python3-yaml python3-chardet python3-BeautifulSoup4

From 36004787b7c8c90c93861f5eb6f9b74ef642aef7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 733/870] paraview: rebuild for Python 3.8.

---
 srcpkgs/paraview/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/paraview/template b/srcpkgs/paraview/template
index 3b721b1833a..feb1c6ad9d9 100644
--- a/srcpkgs/paraview/template
+++ b/srcpkgs/paraview/template
@@ -1,7 +1,7 @@
 # Template file for 'paraview'
 pkgname=paraview
 version=5.6.1
-revision=1
+revision=2
 wrksrc=ParaView-v${version}
 build_style=cmake
 configure_args="-DPARAVIEW_ENABLE_FFMPEG=ON

From 2b51d62c321774f3a43496f679dfd488f706067d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 734/870] pass-git-helper: rebuild for Python 3.8.

---
 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 dfeed3ba4f0..6d7f25bd8a7 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.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 7acd313d408257f08b7f5107ef2c3a071e27bac7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 735/870] peframe: rebuild for Python 3.8.

---
 srcpkgs/peframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peframe/template b/srcpkgs/peframe/template
index b9d64f7a5a6..5ecede6cf56 100644
--- a/srcpkgs/peframe/template
+++ b/srcpkgs/peframe/template
@@ -1,7 +1,7 @@
 # Template file for 'peframe'
 pkgname=peframe
 version=6.0.3
-revision=1
+revision=2
 archs=noarch
 build_style="python3-module"
 pycompile_module="peframe"

From 52531c540c07eaf0c3a16b6bb67649c95137ca85 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 736/870] peru: rebuild for Python 3.8.

---
 srcpkgs/peru/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peru/template b/srcpkgs/peru/template
index 682440f0b50..10d4689338d 100644
--- a/srcpkgs/peru/template
+++ b/srcpkgs/peru/template
@@ -1,7 +1,7 @@
 # Template file for 'peru'
 pkgname=peru
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="peru"

From ac9029de11dd453ad3d58417cccbafae6f6fe9df Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 737/870] pgcli: rebuild for Python 3.8.

---
 srcpkgs/pgcli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index b967287e9cb..b187a0a4440 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,7 +1,7 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pgcli"

From 697b8b19a4450738d8afb43f3b77cdd2aca0e2ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 738/870] picard: rebuild for Python 3.8.

---
 srcpkgs/picard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/picard/template b/srcpkgs/picard/template
index 1bae142434a..08404a88475 100644
--- a/srcpkgs/picard/template
+++ b/srcpkgs/picard/template
@@ -1,7 +1,7 @@
 # Template file for 'picard'
 pkgname=picard
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname}-release-${version}"
 build_style=python3-module

From 97e6c4b434ba43b31ea9750f0cde96e7e90d3cdb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 739/870] piper: rebuild for Python 3.8.

---
 srcpkgs/piper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/piper/template b/srcpkgs/piper/template
index af8cc854991..91a31131f84 100644
--- a/srcpkgs/piper/template
+++ b/srcpkgs/piper/template
@@ -1,7 +1,7 @@
 # Template file for 'piper'
 pkgname=piper
 version=0.2.904
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 hostmakedepends="libratbag pkg-config glib-devel"

From f09dd780f8b4fd3fc1fce2c6353bd6fd4f28068a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 740/870] playitslowly: rebuild for Python 3.8.

---
 srcpkgs/playitslowly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/playitslowly/template b/srcpkgs/playitslowly/template
index d26cea3510a..6d3483ae251 100644
--- a/srcpkgs/playitslowly/template
+++ b/srcpkgs/playitslowly/template
@@ -1,7 +1,7 @@
 # Template file for 'playitslowly'
 pkgname=playitslowly
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From 8c15c00c27bec33d1ebaf461d73630f537f68cfb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 741/870] pmbootstrap: rebuild for Python 3.8.

---
 srcpkgs/pmbootstrap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pmbootstrap/template b/srcpkgs/pmbootstrap/template
index 1bfa8183a84..15e606439c2 100644
--- a/srcpkgs/pmbootstrap/template
+++ b/srcpkgs/pmbootstrap/template
@@ -1,7 +1,7 @@
 # Template file for 'pmbootstrap'
 pkgname=pmbootstrap
 version=1.9.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pmb"

From 85aa9e230e8defb3743cf881d851670569ea96ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 742/870] pockyt: rebuild for Python 3.8.

---
 srcpkgs/pockyt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pockyt/template b/srcpkgs/pockyt/template
index 760573904b1..ca56e9f98f0 100644
--- a/srcpkgs/pockyt/template
+++ b/srcpkgs/pockyt/template
@@ -1,7 +1,7 @@
 # Template file for 'pockyt'
 pkgname=pockyt
 version=1.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From c250ac766afa4af143600d8797168e0c2580a09a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 743/870] poezio: rebuild for Python 3.8.

---
 srcpkgs/poezio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/poezio/template b/srcpkgs/poezio/template
index 56f8138bb5e..4b318419dab 100644
--- a/srcpkgs/poezio/template
+++ b/srcpkgs/poezio/template
@@ -1,7 +1,7 @@
 # Template file for 'poezio'
 pkgname=poezio
 version=0.12.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="poezio poezio_plugins poezio_themes"
 hostmakedepends="python3-setuptools pkg-config"

From 239065bf2b49e534baae7b89acdbcc0936f7ab92 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 744/870] protontricks: rebuild for Python 3.8.

---
 srcpkgs/protontricks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/protontricks/template b/srcpkgs/protontricks/template
index a32f51c4845..dc003b63690 100644
--- a/srcpkgs/protontricks/template
+++ b/srcpkgs/protontricks/template
@@ -1,7 +1,7 @@
 # Template file for 'protontricks'
 pkgname=protontricks
 version=1.2.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-setuptools"

From 20fd99ca3a5123c7bd44ea479c9e40343e512fef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 745/870] pulseaudio-equalizer-ladspa: rebuild for Python 3.8.

---
 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 62d7eef2a65..10198de2c08 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=1
+revision=2
 wrksrc="equalizer-${version}"
 build_style=meson
 pycompile_module="pulseeq"

From a9e46412f1cd45af9dfb388fb63d869c0802a1e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 746/870] pulseeffects: rebuild for Python 3.8.

---
 srcpkgs/pulseeffects/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pulseeffects/template b/srcpkgs/pulseeffects/template
index 7fc44f938d9..dc9044cad32 100644
--- a/srcpkgs/pulseeffects/template
+++ b/srcpkgs/pulseeffects/template
@@ -2,7 +2,7 @@
 pkgname=pulseeffects
 reverts="4.3.4_1"
 version=3.2.3
-revision=3
+revision=4
 build_style=meson
 pycompile_module="PulseEffects PulseEffectsTest"
 hostmakedepends="pkg-config"

From 9f36566f7d8bd66300ba6ffa78e2825b0851b251 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 747/870] py3status: rebuild for Python 3.8.

---
 srcpkgs/py3status/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/py3status/template b/srcpkgs/py3status/template
index b7a263270e4..01709cfd14d 100644
--- a/srcpkgs/py3status/template
+++ b/srcpkgs/py3status/template
@@ -1,7 +1,7 @@
 # Template file for 'py3status'
 pkgname=py3status
 version=3.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="py3status"

From ba76f685d5685ac09453caf484a2acafd4c93017 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 748/870] pychess: rebuild for Python 3.8.

---
 srcpkgs/pychess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pychess/template b/srcpkgs/pychess/template
index 2c6ecef7bf9..d0594aa77f4 100644
--- a/srcpkgs/pychess/template
+++ b/srcpkgs/pychess/template
@@ -1,7 +1,7 @@
 # Template file for 'pychess'
 pkgname=pychess
 version=0.12.4
-revision=2
+revision=3
 build_style=python3-module
 pycompile_module="pychess"
 archs=noarch

From 617f168c619fdf6a04f334411b0416e176236b81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 749/870] pycp: rebuild for Python 3.8.

---
 srcpkgs/pycp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pycp/template b/srcpkgs/pycp/template
index 770eb50d3f4..c9066259862 100644
--- a/srcpkgs/pycp/template
+++ b/srcpkgs/pycp/template
@@ -1,7 +1,7 @@
 # Template file for 'pycp'
 pkgname=pycp
 version=8.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pycp"

From 3c370db9eabed525263ab6615d08ba183947e135 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 750/870] pymol: rebuild for Python 3.8.

---
 srcpkgs/pymol/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pymol/template b/srcpkgs/pymol/template
index 428ba7a6deb..e1031f325c0 100644
--- a/srcpkgs/pymol/template
+++ b/srcpkgs/pymol/template
@@ -1,7 +1,7 @@
 # Template file for 'pymol'
 pkgname=pymol
 version=2.3.0
-revision=1
+revision=2
 wrksrc=${pkgname}-open-source-${version}
 build_style="python3-module"
 makedepends="msgpack-devel python3-numpy freetype-devel libfreeglut-devel glew-devel

From fa99b15008d91a80d97a0b844393ed533af6e473 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 751/870] pyradio: rebuild for Python 3.8.

---
 srcpkgs/pyradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyradio/template b/srcpkgs/pyradio/template
index 10d7d8c6fbb..d2d5feddbdd 100644
--- a/srcpkgs/pyradio/template
+++ b/srcpkgs/pyradio/template
@@ -1,7 +1,7 @@
 # Template file for 'pyradio'
 pkgname=pyradio
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pyradio"

From f64fb1ed8a5d262db96c714377aa188e786924bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 752/870] pyside2-tools: rebuild for Python 3.8.

---
 srcpkgs/pyside2-tools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyside2-tools/template b/srcpkgs/pyside2-tools/template
index 4ba0044452d..0a153de8c15 100644
--- a/srcpkgs/pyside2-tools/template
+++ b/srcpkgs/pyside2-tools/template
@@ -1,7 +1,7 @@
 # Template file for 'pyside2-tools'
 pkgname=pyside2-tools
 version=5.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release

From 6f655056055676e53f3810b50d23122ad660f597 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 753/870] pysolfc: rebuild for Python 3.8.

---
 srcpkgs/pysolfc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pysolfc/template b/srcpkgs/pysolfc/template
index 62eb90009af..1631e9619d3 100644
--- a/srcpkgs/pysolfc/template
+++ b/srcpkgs/pysolfc/template
@@ -1,7 +1,7 @@
 # Template file for 'pysolfc'
 pkgname=pysolfc
 version=2.6.4
-revision=2
+revision=3
 archs="noarch"
 wrksrc="PySolFC-${pkgname}-${version}"
 build_style=python3-module

From 166015c44cc8031246d8c3ad92fa9693b360a0ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 754/870] pywal: rebuild for Python 3.8.

---
 srcpkgs/pywal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pywal/template b/srcpkgs/pywal/template
index 214a36698f2..98c4e1581e4 100644
--- a/srcpkgs/pywal/template
+++ b/srcpkgs/pywal/template
@@ -1,7 +1,7 @@
 # Template file for 'pywal'
 pkgname=pywal
 version=3.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pywal"

From 9420eb21934c4725bc7356059fcfb12bc1282f49 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 755/870] qomui: rebuild for Python 3.8.

---
 srcpkgs/qomui/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qomui/template b/srcpkgs/qomui/template
index 4e68864252d..8063350ba06 100644
--- a/srcpkgs/qomui/template
+++ b/srcpkgs/qomui/template
@@ -1,7 +1,7 @@
 # Template file for 'qomui'
 pkgname=qomui
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qomui"

From 31d555a674d5166324702c69ed5ebba8cf496144 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 756/870] quodlibet: rebuild for Python 3.8.

---
 srcpkgs/quodlibet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/quodlibet/template b/srcpkgs/quodlibet/template
index 53f6e926315..4b0c4ba0de5 100644
--- a/srcpkgs/quodlibet/template
+++ b/srcpkgs/quodlibet/template
@@ -1,7 +1,7 @@
 # Template file for 'quodlibet'
 pkgname=quodlibet
 version=4.2.1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="quodlibet"

From d4f4dc8a65216d468347696da511136a22143d66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 757/870] qutebrowser: rebuild for Python 3.8.

---
 srcpkgs/qutebrowser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qutebrowser/template b/srcpkgs/qutebrowser/template
index 11b74e4445d..07257c2d84b 100644
--- a/srcpkgs/qutebrowser/template
+++ b/srcpkgs/qutebrowser/template
@@ -1,7 +1,7 @@
 # Template file for 'qutebrowser'
 pkgname=qutebrowser
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qutebrowser"

From bc897183184d088cd486028e3acb2f03c3272941 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 758/870] r128gain: rebuild for Python 3.8.

---
 srcpkgs/r128gain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/r128gain/template b/srcpkgs/r128gain/template
index cdea955828e..1cb30c786f8 100644
--- a/srcpkgs/r128gain/template
+++ b/srcpkgs/r128gain/template
@@ -1,7 +1,7 @@
 # Template file for 'r128gain'
 pkgname=r128gain
 version=0.9.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="r128gain"
 hostmakedepends="python3-setuptools"

From 566941478b046f4ce25ce194337759e5cb6bcdbc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 759/870] radicale2: rebuild for Python 3.8.

---
 srcpkgs/radicale2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/radicale2/template b/srcpkgs/radicale2/template
index 0d8a27d89f3..310bc8cb3cf 100644
--- a/srcpkgs/radicale2/template
+++ b/srcpkgs/radicale2/template
@@ -1,7 +1,7 @@
 # Template file for 'radicale2'
 pkgname=radicale2
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module

From 59088edee59e935fd187c295b30c0785430fc79f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 760/870] ranger: rebuild for Python 3.8.

---
 srcpkgs/ranger/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template
index a387eac4ed7..a49716971a5 100644
--- a/srcpkgs/ranger/template
+++ b/srcpkgs/ranger/template
@@ -1,7 +1,7 @@
 # Template file for 'ranger'
 pkgname=ranger
 version=1.9.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ranger"

From 7f57ebbd29684322e558eb1a9b1f9af8e3176c92 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 761/870] rednotebook: rebuild for Python 3.8.

---
 srcpkgs/rednotebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rednotebook/template b/srcpkgs/rednotebook/template
index ac870a7a992..af7dea12fd5 100644
--- a/srcpkgs/rednotebook/template
+++ b/srcpkgs/rednotebook/template
@@ -1,7 +1,7 @@
 # Template file for 'rednotebook'
 pkgname=rednotebook
 version=2.11.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rednotebook"

From dcd691931d2a21c0fa8b4d9f88d1ac9934a57895 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 762/870] redshift: rebuild for Python 3.8.

---
 srcpkgs/redshift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/redshift/template b/srcpkgs/redshift/template
index bb31e7cec05..c58b8daeb76 100644
--- a/srcpkgs/redshift/template
+++ b/srcpkgs/redshift/template
@@ -1,7 +1,7 @@
 # Template file for 'redshift'
 pkgname=redshift
 version=1.12
-revision=1
+revision=2
 build_style=gnu-configure
 build_options="geoclue2"
 configure_args="--enable-gui --disable-geoclue $(vopt_enable geoclue2)"

From 7e532561c9ef350638498faa7e7f325b14d7ab7f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 763/870] ripe-atlas-tools: rebuild for Python 3.8.

---
 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 c8eef786962..c5e21c4b8dc 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=2.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ripe/atlas/tools"

From ee7af3415797f12b96ea4ce055f032f7712eebc4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 764/870] rmlint: rebuild for Python 3.8.

---
 srcpkgs/rmlint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rmlint/template b/srcpkgs/rmlint/template
index dc8d904d0c2..894a9a1dd01 100644
--- a/srcpkgs/rmlint/template
+++ b/srcpkgs/rmlint/template
@@ -1,7 +1,7 @@
 # Template file for 'rmlint'
 pkgname=rmlint
 version=2.9.0
-revision=1
+revision=2
 build_style=scons
 hostmakedepends="pkg-config python3-Sphinx glib-devel"
 makedepends="libblkid-devel elfutils-devel json-glib-devel"

From 2a9b688a2dc36357175d9beadefb812c5d79ce08 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 765/870] rtv: rebuild for Python 3.8.

---
 srcpkgs/rtv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rtv/template b/srcpkgs/rtv/template
index 1a089e3e88d..1fc137b2e5b 100644
--- a/srcpkgs/rtv/template
+++ b/srcpkgs/rtv/template
@@ -1,7 +1,7 @@
 # Template file for 'rtv'
 pkgname=rtv
 version=1.27.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rtv"

From 6505e1bb40cca4307d7178a55644b8ddc9e1dc66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 766/870] rubber: rebuild for Python 3.8.

---
 srcpkgs/rubber/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rubber/template b/srcpkgs/rubber/template
index cf668638cef..c7fe4cbbd06 100644
--- a/srcpkgs/rubber/template
+++ b/srcpkgs/rubber/template
@@ -1,7 +1,7 @@
 # Template file for 'rubber'
 pkgname=rubber
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From 8514a38491af6c2cd7044cf69bbd56c369434d9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 767/870] safeeyes: rebuild for Python 3.8.

---
 srcpkgs/safeeyes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/safeeyes/template b/srcpkgs/safeeyes/template
index bc35f302011..e7019662316 100644
--- a/srcpkgs/safeeyes/template
+++ b/srcpkgs/safeeyes/template
@@ -1,7 +1,7 @@
 # Template file for 'safeeyes'
 pkgname=safeeyes
 version=2.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="safeeyes"

From aec83edf37c40660fad9a3fd85bbfe14e5e21d7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 768/870] scapy: rebuild for Python 3.8.

---
 srcpkgs/scapy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scapy/template b/srcpkgs/scapy/template
index 65242f332a8..36972bfd461 100644
--- a/srcpkgs/scapy/template
+++ b/srcpkgs/scapy/template
@@ -1,7 +1,7 @@
 # Template file for 'scapy'
 pkgname=scapy
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="scapy"

From 0c126e7835156f45c278048217b08ee6e6bd7295 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 769/870] screenplain: rebuild for Python 3.8.

---
 srcpkgs/screenplain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/screenplain/template b/srcpkgs/screenplain/template
index 8410ab45e40..8eb759ae6a6 100644
--- a/srcpkgs/screenplain/template
+++ b/srcpkgs/screenplain/template
@@ -1,7 +1,7 @@
 # Template file for 'screenplain'
 pkgname=screenplain
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenplain"

From c8efdbb3f99764965137fca1dc8692ba005b93ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 770/870] scudcloud: rebuild for Python 3.8.

---
 srcpkgs/scudcloud/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
index 1b9f5f27d8a..1ab2618066e 100644
--- a/srcpkgs/scudcloud/template
+++ b/srcpkgs/scudcloud/template
@@ -1,7 +1,7 @@
 # Template file for 'scudcloud'
 pkgname=scudcloud
 version=1.65
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="scudcloud"
 hostmakedepends="python3-setuptools"

From 5a275f15c82b1c5636d5b579aefb5c24b9ec0d7b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 771/870] seafile-libclient: rebuild for Python 3.8.

---
 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 47c49d5ceb2..5eda59c1041 100644
--- a/srcpkgs/seafile-libclient/template
+++ b/srcpkgs/seafile-libclient/template
@@ -1,7 +1,7 @@
 # Template file for 'seafile-libclient'
 pkgname=seafile-libclient
 version=7.0.2
-revision=1
+revision=2
 _distname="${pkgname/-libclient/}"
 wrksrc="${_distname}-${version}"
 build_style=gnu-configure

From 817b0026ba1b9b733f8ca6db19b410b148a94c3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 772/870] sonata: rebuild for Python 3.8.

---
 srcpkgs/sonata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template
index 3e07610d1e5..fc2d86e6c1a 100644
--- a/srcpkgs/sonata/template
+++ b/srcpkgs/sonata/template
@@ -1,7 +1,7 @@
 # Template file for 'sonata'
 pkgname=sonata
 version=1.7b1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="sonata"

From 836c3b7ddc0fb818f9aa4b7846e9546d73d04b5d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 773/870] speech-dispatcher: rebuild for Python 3.8.

---
 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 0c27951586a..39cebf1f320 100644
--- a/srcpkgs/speech-dispatcher/template
+++ b/srcpkgs/speech-dispatcher/template
@@ -1,7 +1,7 @@
 # Template build file for 'speech-dispatcher'.
 pkgname=speech-dispatcher
 version=0.8.8
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static"
 short_desc="High-level device independent layer for speech synthesis interface"

From def9886a278151b86873ceed2e5ffd38837c7ce3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 774/870] speedtest-cli: rebuild for Python 3.8.

---
 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 6746ea3a35e..c65d9fd631d 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.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="speedtest.py"

From 996c6289bcbad932ba8c0c106212ebc646820dc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 775/870] sshuttle: rebuild for Python 3.8.

---
 srcpkgs/sshuttle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sshuttle/template b/srcpkgs/sshuttle/template
index e74d90171f2..04bae9a15c3 100644
--- a/srcpkgs/sshuttle/template
+++ b/srcpkgs/sshuttle/template
@@ -1,7 +1,7 @@
 # Template file for 'sshuttle'
 pkgname=sshuttle
 version=0.78.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="sshuttle"

From 3c36f9f633c2a5256cafc0e16a370b7361ec6d1b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 776/870] sssd: rebuild for Python 3.8.

---
 srcpkgs/sssd/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sssd/template b/srcpkgs/sssd/template
index 2ea28d21bee..13d0da0ba99 100644
--- a/srcpkgs/sssd/template
+++ b/srcpkgs/sssd/template
@@ -1,7 +1,7 @@
 # Template file for 'sssd'
 pkgname=sssd
 version=2.0.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-selinux --without-semanage
  --disable-cifs-idmap-plugin --without-samba --with-os=fedora

From 3608b9eb56b0ada6a054962a568bf3ca47caff2f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 777/870] stcgal: rebuild for Python 3.8.

---
 srcpkgs/stcgal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stcgal/template b/srcpkgs/stcgal/template
index 3410ccf8678..d75e88837cc 100644
--- a/srcpkgs/stcgal/template
+++ b/srcpkgs/stcgal/template
@@ -1,7 +1,7 @@
 # Template file for 'stcgal'
 pkgname=stcgal
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="stcgal"

From 4600b6fffa5b3a4b5c017f188889cec36dc9d07b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 778/870] stig: rebuild for Python 3.8.

---
 srcpkgs/stig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stig/template b/srcpkgs/stig/template
index 0777c5f0cc2..abe5f3b563c 100644
--- a/srcpkgs/stig/template
+++ b/srcpkgs/stig/template
@@ -1,7 +1,7 @@
 # Template file for 'stig'
 pkgname=stig
 version=0.10.1a
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 1b222affe81449d1fef2829286949c748cc2a86c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 779/870] streamlink: rebuild for Python 3.8.

---
 srcpkgs/streamlink/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/streamlink/template b/srcpkgs/streamlink/template
index abcdc12c4ac..59caa85dc8a 100644
--- a/srcpkgs/streamlink/template
+++ b/srcpkgs/streamlink/template
@@ -1,7 +1,7 @@
 # Template file for 'streamlink'
 pkgname=streamlink
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="streamlink streamlink_cli"

From 9159c5859dc9b5a7c4853e709d3235b4c9bc5f7b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 780/870] subuser: rebuild for Python 3.8.

---
 srcpkgs/subuser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/subuser/template b/srcpkgs/subuser/template
index 50444246b29..0bc3e71db36 100644
--- a/srcpkgs/subuser/template
+++ b/srcpkgs/subuser/template
@@ -1,7 +1,7 @@
 # Template file for 'subuser'
 pkgname=subuser
 version=0.6.2
-revision=2
+revision=3
 archs="x86_64*"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 9e55061a83b04fb846b0107ff8988530c8b7fd7f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 781/870] synapse: rebuild for Python 3.8.

---
 srcpkgs/synapse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template
index daae80e5792..0c0fd6841fb 100644
--- a/srcpkgs/synapse/template
+++ b/srcpkgs/synapse/template
@@ -1,7 +1,7 @@
 # Template file for 'synapse'
 pkgname=synapse
 version=1.3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 3f24791c051e3f4c32097a1e2737de1a83bc4b45 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 782/870] tekaim: rebuild for Python 3.8.

---
 srcpkgs/tekaim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tekaim/template b/srcpkgs/tekaim/template
index e3cc5335ecc..bd60dcc57a6 100644
--- a/srcpkgs/tekaim/template
+++ b/srcpkgs/tekaim/template
@@ -1,7 +1,7 @@
 # Template file for 'tekaim'
 pkgname=tekaim
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From d2c0aca833eabdd8704e7032c2030a6e878ebdc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 783/870] telepresence: rebuild for Python 3.8.

---
 srcpkgs/telepresence/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/telepresence/template b/srcpkgs/telepresence/template
index 17300f3b548..fa7f916f66f 100644
--- a/srcpkgs/telepresence/template
+++ b/srcpkgs/telepresence/template
@@ -1,7 +1,7 @@
 # Template file for 'telepresence'
 pkgname=telepresence
 version=0.102
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="telepresence"

From 8476f6a50e93ab42aefe2cd5eab135b8bc7ee5cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 784/870] termdown: rebuild for Python 3.8.

---
 srcpkgs/termdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/termdown/template b/srcpkgs/termdown/template
index 90a4a894d42..299de920389 100644
--- a/srcpkgs/termdown/template
+++ b/srcpkgs/termdown/template
@@ -1,7 +1,7 @@
 # Template file for 'termdown'
 pkgname=termdown
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="termdown.py"

From 53ec354c343c4beb98601947b280d385494a6a3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 785/870] terminal_markdown_viewer: rebuild for Python 3.8.

---
 srcpkgs/terminal_markdown_viewer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/terminal_markdown_viewer/template b/srcpkgs/terminal_markdown_viewer/template
index e5d0f38aae2..ba3fcfdc8d6 100644
--- a/srcpkgs/terminal_markdown_viewer/template
+++ b/srcpkgs/terminal_markdown_viewer/template
@@ -1,7 +1,7 @@
 # Template file for 'terminal_markdown_viewer'
 pkgname=terminal_markdown_viewer
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mdv"

From f53f56ad912d52d400ede22f1d99020ee5de9e13 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 786/870] thefuck: rebuild for Python 3.8.

---
 srcpkgs/thefuck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thefuck/template b/srcpkgs/thefuck/template
index 714cd7982c7..a0de1c7b6a3 100644
--- a/srcpkgs/thefuck/template
+++ b/srcpkgs/thefuck/template
@@ -1,7 +1,7 @@
 # Template file for 'thefuck'
 pkgname=thefuck
 version=3.29
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="thefuck"

From 34de06d5363c9d1ea8daab260728ef7c29f561ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 787/870] thinkpad-scripts: rebuild for Python 3.8.

---
 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 8d26cf23e77..855d42492fb 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tps"

From 91d4d9e3afde854ecb413fae7ed22ae1c58e62b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 788/870] thrift: rebuild for Python 3.8.

---
 srcpkgs/thrift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thrift/template b/srcpkgs/thrift/template
index 73b0f59d4f6..e379ac35a09 100644
--- a/srcpkgs/thrift/template
+++ b/srcpkgs/thrift/template
@@ -1,7 +1,7 @@
 # Template file for 'thrift'
 pkgname=thrift
 version=0.12.0
-revision=2
+revision=3
 build_style=gnu-configure
 makedepends="boost-devel libressl-devel"
 short_desc="Apache Thrift compiler"

From c0ad7fa0ed65c956f520a08cbac209aca881cbe4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 789/870] todoman: rebuild for Python 3.8.

---
 srcpkgs/todoman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/todoman/template b/srcpkgs/todoman/template
index 2e0489ff49e..676412b8d0b 100644
--- a/srcpkgs/todoman/template
+++ b/srcpkgs/todoman/template
@@ -1,7 +1,7 @@
 # Template file for 'todoman'
 pkgname=todoman
 version=3.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="todoman"

From ff276d32763fff9f2a564b36bf4c02f7e19f36e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 790/870] toot: rebuild for Python 3.8.

---
 srcpkgs/toot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template
index b6dcdc9ede6..7f9fac6ca01 100644
--- a/srcpkgs/toot/template
+++ b/srcpkgs/toot/template
@@ -1,7 +1,7 @@
 # Template file for 'toot'
 pkgname=toot
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="toot"

From 413bd6c28cfcb4764ecf7f4e94b92899b9ab4dee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 791/870] torbrowser-launcher: rebuild for Python 3.8.

---
 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 a4aa707495c..ea2a50aae52 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.2
-revision=1
+revision=2
 archs="i686 x86_64" # limited by Tor Browser itself
 build_style=python3-module
 pycompile_module="torbrowser_launcher"

From 32b0adb025393308a4b937bb42382044236d0702 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 792/870] tox: rebuild for Python 3.8.

---
 srcpkgs/tox/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tox/template b/srcpkgs/tox/template
index 8c6b63a3cb1..908cb86bb38 100644
--- a/srcpkgs/tox/template
+++ b/srcpkgs/tox/template
@@ -1,7 +1,7 @@
 # Template file for 'tox'
 pkgname=tox
 version=3.14.0
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="tox"
 hostmakedepends="python3-setuptools"

From 4d13cd711a251a1cf40f4ecd0e85c99e4637b449 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 793/870] trackma: rebuild for Python 3.8.

---
 srcpkgs/trackma/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/trackma/template b/srcpkgs/trackma/template
index 96833382346..4c29bb8a35d 100644
--- a/srcpkgs/trackma/template
+++ b/srcpkgs/trackma/template
@@ -1,7 +1,7 @@
 # Template file for 'trackma'
 pkgname=trackma
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 562b18817307d630b1014c5a48e1c577c9980420 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 794/870] trash-cli: rebuild for Python 3.8.

---
 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 2a08548c7c8..4ab724d8cb1 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.17.1.14
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3"

From 121236bd7b9bcdeace0c7a3f70b4a6633c6f7293 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 795/870] tryton: rebuild for Python 3.8.

---
 srcpkgs/tryton/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tryton/template b/srcpkgs/tryton/template
index 196033361f6..61e0f733dc9 100644
--- a/srcpkgs/tryton/template
+++ b/srcpkgs/tryton/template
@@ -1,7 +1,7 @@
 # Template file for 'tryton'
 pkgname=tryton
 version=5.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tryton"

From eed2e15e54947d25bd14afaa04c41e0782748cc4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 796/870] tuimoji: rebuild for Python 3.8.

---
 srcpkgs/tuimoji/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuimoji/template b/srcpkgs/tuimoji/template
index 71e0bf540c0..73f5cff281f 100644
--- a/srcpkgs/tuimoji/template
+++ b/srcpkgs/tuimoji/template
@@ -1,7 +1,7 @@
 # Template file for 'tuimoji'
 pkgname=tuimoji
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tuimoji"

From ce7e8ea072e46214a6c0993d8e2c2f87e0e9bed2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 797/870] tuir: rebuild for Python 3.8.

---
 srcpkgs/tuir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuir/template b/srcpkgs/tuir/template
index dfc0b15c535..a98f4484544 100644
--- a/srcpkgs/tuir/template
+++ b/srcpkgs/tuir/template
@@ -1,7 +1,7 @@
 # Template file for 'tuir'
 pkgname=tuir
 version=1.28.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=python3-module

From 97f1c8fd85ab2a8a371791eb12e0c1c0e63d3236 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 798/870] tzupdate: rebuild for Python 3.8.

---
 srcpkgs/tzupdate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tzupdate/template b/srcpkgs/tzupdate/template
index 9531f0f7540..de2217476bd 100644
--- a/srcpkgs/tzupdate/template
+++ b/srcpkgs/tzupdate/template
@@ -1,7 +1,7 @@
 # Template file for 'tzupdate'
 pkgname=tzupdate
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tzupdate.py"

From 80b13ee027f4f64182f7e20687bb823f4b4128cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 799/870] udiskie: rebuild for Python 3.8.

---
 srcpkgs/udiskie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/udiskie/template b/srcpkgs/udiskie/template
index 536f4d5609d..06d58236046 100644
--- a/srcpkgs/udiskie/template
+++ b/srcpkgs/udiskie/template
@@ -1,7 +1,7 @@
 # Template file for 'udiskie'
 pkgname=udiskie
 version=1.7.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="udiskie"

From 1b67d5febbffcb55584b5fda550d107f96cd96a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 800/870] ueberzug: rebuild for Python 3.8.

---
 srcpkgs/ueberzug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ueberzug/template b/srcpkgs/ueberzug/template
index e0c474ff63e..dfa1ab29d96 100644
--- a/srcpkgs/ueberzug/template
+++ b/srcpkgs/ueberzug/template
@@ -1,7 +1,7 @@
 # Template file for 'ueberzug'
 pkgname=ueberzug
 version=18.1.3
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel libX11-devel libXext-devel"

From 2905e1365fe30243aa0fc9390670c848e419162c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 801/870] ufw: rebuild for Python 3.8.

---
 srcpkgs/ufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ufw/template b/srcpkgs/ufw/template
index ac7dfa45cdd..0bf2a3a0b76 100644
--- a/srcpkgs/ufw/template
+++ b/srcpkgs/ufw/template
@@ -1,7 +1,7 @@
 # Template file for 'ufw'
 pkgname=ufw
 version=0.36
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="ufw"

From 7e0780e94649784ef9ce91ffeaaafcdbad03dd0d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 802/870] unicorn: rebuild for Python 3.8.

---
 srcpkgs/unicorn/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/unicorn/template b/srcpkgs/unicorn/template
index 317e261ae88..971d44752ca 100644
--- a/srcpkgs/unicorn/template
+++ b/srcpkgs/unicorn/template
@@ -1,7 +1,7 @@
 # Template file for 'unicorn'
 pkgname=unicorn
 version=1.0.1
-revision=2
+revision=3
 archs="x86_64* i686*"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"
 short_desc="Lightweight multi-platform, multi-architecture CPU emulator framework"

From 789f0fcbd3f7ecfc4dedf71e4c187edb322ad58b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 803/870] unknown-horizons: rebuild for Python 3.8.

---
 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 b5fc593b744..6e81970800d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3 intltool git python3-Pillow"

From fdccb21d4203969c6c01734088eb625e56349155 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 804/870] urh: rebuild for Python 3.8.

---
 srcpkgs/urh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urh/template b/srcpkgs/urh/template
index 2cec83082fd..31f28bb366b 100644
--- a/srcpkgs/urh/template
+++ b/srcpkgs/urh/template
@@ -1,7 +1,7 @@
 # Template file for 'urh'
 pkgname=urh
 version=2.7.5
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="urh"
 hostmakedepends="python3-setuptools python3-Cython"

From 6e94929c2c8ad24aba0695ec7cae0d18f5f6b76c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 805/870] urlscan: rebuild for Python 3.8.

---
 srcpkgs/urlscan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlscan/template b/srcpkgs/urlscan/template
index f6f0d1db07b..2bb1688dad7 100644
--- a/srcpkgs/urlscan/template
+++ b/srcpkgs/urlscan/template
@@ -1,7 +1,7 @@
 # Template file for 'urlscan'
 pkgname=urlscan
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlscan"

From 22ea44a67fcdc0aa53b412fceed5d7015e326f1b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 806/870] urlwatch: rebuild for Python 3.8.

---
 srcpkgs/urlwatch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlwatch/template b/srcpkgs/urlwatch/template
index e8a5e403c92..1166fe101a7 100644
--- a/srcpkgs/urlwatch/template
+++ b/srcpkgs/urlwatch/template
@@ -1,7 +1,7 @@
 # Template file for 'urlwatch'
 pkgname=urlwatch
 version=2.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlwatch"

From f36de76e57978447ecd97b07a9638c4e5f10275c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 807/870] vapoursynth: rebuild for Python 3.8.

---
 srcpkgs/vapoursynth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vapoursynth/template b/srcpkgs/vapoursynth/template
index dd85e8b39dc..ce40f4f8920 100644
--- a/srcpkgs/vapoursynth/template
+++ b/srcpkgs/vapoursynth/template
@@ -1,7 +1,7 @@
 # Template file for 'vapoursynth'
 pkgname=vapoursynth
 version=R47.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake pkg-config libtool nasm python3-Cython"
 makedepends="python3-devel zimg-devel libmagick-devel libass-devel ffmpeg-devel

From e701b07bd308bef67ebf59bd363f5bed1b388aae Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 808/870] variety: rebuild for Python 3.8.

---
 srcpkgs/variety/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/variety/template b/srcpkgs/variety/template
index b4ea756c0c9..4d327a830f8 100644
--- a/srcpkgs/variety/template
+++ b/srcpkgs/variety/template
@@ -1,7 +1,7 @@
 # Template file for 'variety'
 pkgname=variety
 version=0.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="jumble variety variety_lib"

From 28086cda3da71c4cfe79350800dcc84ce20142f8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 809/870] vdirsyncer: rebuild for Python 3.8.

---
 srcpkgs/vdirsyncer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vdirsyncer/template b/srcpkgs/vdirsyncer/template
index 24080413456..708204afda2 100644
--- a/srcpkgs/vdirsyncer/template
+++ b/srcpkgs/vdirsyncer/template
@@ -1,7 +1,7 @@
 # Template file for 'vdirsyncer'
 pkgname=vdirsyncer
 version=0.16.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="vdirsyncer"

From ea5d4c1b6a1a7ea668b39fdf60efd1df33cb91b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 810/870] vidcutter: rebuild for Python 3.8.

---
 srcpkgs/vidcutter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vidcutter/template b/srcpkgs/vidcutter/template
index 4f30b888805..6ca85d4e766 100644
--- a/srcpkgs/vidcutter/template
+++ b/srcpkgs/vidcutter/template
@@ -1,7 +1,7 @@
 # Template file for 'vidcutter'
 pkgname=vidcutter
 version=6.0.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="vidcutter"

From c3d1548ba528eea9d7bef07b46df6ff679a946ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 811/870] vimiv: rebuild for Python 3.8.

---
 srcpkgs/vimiv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vimiv/template b/srcpkgs/vimiv/template
index 20fcbe7a03f..a560d4c9d81 100644
--- a/srcpkgs/vimiv/template
+++ b/srcpkgs/vimiv/template
@@ -1,7 +1,7 @@
 # Template file for 'vimiv'
 pkgname="vimiv"
 version=0.9.1
-revision=2
+revision=3
 build_style=gnu-makefile
 pycompile_module=vimiv
 hostmakedepends="python3-setuptools python3-devel"

From f3232a63ac69bed3ea5e23e3500365d3538881c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 812/870] virtme: rebuild for Python 3.8.

---
 srcpkgs/virtme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtme/template b/srcpkgs/virtme/template
index 3905cb24b1d..30035a734f3 100644
--- a/srcpkgs/virtme/template
+++ b/srcpkgs/virtme/template
@@ -1,7 +1,7 @@
 # Template file for 'virtme'
 pkgname=virtme
 version=0.0.3.20180725
-revision=1
+revision=2
 archs=noarch
 _commit=60100bea82183b5d32ed9fca6534cd0fc60d5eb2
 wrksrc="${_commit}"

From 05fa842bb4d960d15c56d2aadaa52e308e5f2542 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 813/870] virtualenvwrapper: rebuild for Python 3.8.

---
 srcpkgs/virtualenvwrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtualenvwrapper/template b/srcpkgs/virtualenvwrapper/template
index 6007cc5d2ed..1f0c2efee86 100644
--- a/srcpkgs/virtualenvwrapper/template
+++ b/srcpkgs/virtualenvwrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'virtualenvwrapper'
 pkgname=virtualenvwrapper
 version=4.8.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="virtualenvwrapper"

From 409a87f477f4cbc78f961e5d9722d63297610e19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 814/870] visidata: rebuild for Python 3.8.

---
 srcpkgs/visidata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/visidata/template b/srcpkgs/visidata/template
index 715896e5f7c..c5c3ae7c82e 100644
--- a/srcpkgs/visidata/template
+++ b/srcpkgs/visidata/template
@@ -1,7 +1,7 @@
 # Template file for 'visidata'
 pkgname=visidata
 version=1.5.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="visidata"

From 2ba717600d97966db6452a7171e9e5ef361774e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 815/870] volctl: rebuild for Python 3.8.

---
 srcpkgs/volctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template
index 2b01750b9eb..585aabd2495 100644
--- a/srcpkgs/volctl/template
+++ b/srcpkgs/volctl/template
@@ -1,7 +1,7 @@
 # Template file for 'volctl'
 pkgname=volctl
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="volctl"

From 3535201fbe9eee300b3d9d42d26ba9654508ba49 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 816/870] voltron: rebuild for Python 3.8.

---
 srcpkgs/voltron/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/voltron/template b/srcpkgs/voltron/template
index c258bb9bab9..38f47a824e3 100644
--- a/srcpkgs/voltron/template
+++ b/srcpkgs/voltron/template
@@ -1,7 +1,7 @@
 # Template file for 'voltron'
 pkgname=voltron
 version=0.1.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="voltron"

From 89d03bda0a88f88af0ade59c0d348137fed3d591 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 817/870] volume_key: rebuild for Python 3.8.

---
 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 11d7b16bed8..14431cb70e9 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=1
+revision=2
 build_style=gnu-configure
 make_build_args="PYTHON3_CFLAGS=-I${XBPS_CROSS_BASE}/${py3_inc}
  PYTHON_CFLAGS=-I${XBPS_CROSS_BASE}/${py2_inc}"

From 745bee297746d213b3763aacb61d78fc45512775 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 818/870] weather: rebuild for Python 3.8.

---
 srcpkgs/weather/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weather/template b/srcpkgs/weather/template
index ffa8a828b36..3ac33bfac15 100644
--- a/srcpkgs/weather/template
+++ b/srcpkgs/weather/template
@@ -1,7 +1,7 @@
 # Template file for 'weather'
 pkgname=weather
 version=2.3
-revision=2
+revision=3
 archs=noarch
 hostmakedepends="python3"
 depends="python3"

From 945b4b5eb85ec26dcccc50bc215bb8bc60aac7ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 819/870] wfuzz: rebuild for Python 3.8.

---
 srcpkgs/wfuzz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wfuzz/template b/srcpkgs/wfuzz/template
index b03c1f28add..4a88ab67407 100644
--- a/srcpkgs/wfuzz/template
+++ b/srcpkgs/wfuzz/template
@@ -1,7 +1,7 @@
 # Template file for 'wfuzz'
 pkgname=wfuzz
 version=2.4
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="wfuzz"

From 2085ac8f368cf65f73edca6e2eeaa839df9d1bf5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 820/870] wpgtk: rebuild for Python 3.8.

---
 srcpkgs/wpgtk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpgtk/template b/srcpkgs/wpgtk/template
index 7e9d52b4f81..a722da58f22 100644
--- a/srcpkgs/wpgtk/template
+++ b/srcpkgs/wpgtk/template
@@ -1,7 +1,7 @@
 # Template file for 'wpgtk'
 pkgname=wpgtk
 version=6.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpgtk"

From 7c187c9da4ad0ce550ad7ebe59abf5815bfbfe37 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 821/870] wpull: rebuild for Python 3.8.

---
 srcpkgs/wpull/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpull/template b/srcpkgs/wpull/template
index 5e9b9dcc641..621e1c85428 100644
--- a/srcpkgs/wpull/template
+++ b/srcpkgs/wpull/template
@@ -1,7 +1,7 @@
 # Template file for 'wpull'
 pkgname=wpull
 version=2.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpull"

From 701978d33251cde8b705085f662d9458b69a6a0b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 822/870] wxPython4: rebuild for Python 3.8.

---
 srcpkgs/wxPython4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wxPython4/template b/srcpkgs/wxPython4/template
index 2aa7117d5e0..b65e0b2ffe1 100644
--- a/srcpkgs/wxPython4/template
+++ b/srcpkgs/wxPython4/template
@@ -1,7 +1,7 @@
 # Template file for 'wxPython4'
 pkgname=wxPython4
 version=4.0.6
-revision=2
+revision=3
 wrksrc="wxPython-${version}"
 build_style=python3-module
 pycompile_module="wx"

From d49f5dcf19784c87b4939a8669cea6b5ae2feb1b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 823/870] xcb-proto: rebuild for Python 3.8.

---
 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 1b26ecd73f3..020524bda87 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.13
-revision=2
+revision=3
 archs=noarch
 build_style=gnu-configure
 pycompile_module="xcbgen"

From 19e5a584c8c54da3b4eca5724f9aa8c959538374 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 824/870] xdot: rebuild for Python 3.8.

---
 srcpkgs/xdot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xdot/template b/srcpkgs/xdot/template
index 23f7b1f17e0..f7507ffb8c5 100644
--- a/srcpkgs/xdot/template
+++ b/srcpkgs/xdot/template
@@ -1,7 +1,7 @@
 # Template file for 'xdot'
 pkgname=xdot
 version=1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="xdot.py-${version}"
 build_style=python3-module

From 939ee67058450f63487b39065a816a2ed9c6a6a4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 825/870] xkcdpass: rebuild for Python 3.8.

---
 srcpkgs/xkcdpass/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xkcdpass/template b/srcpkgs/xkcdpass/template
index 46b4a9635f9..37fb6872079 100644
--- a/srcpkgs/xkcdpass/template
+++ b/srcpkgs/xkcdpass/template
@@ -1,7 +1,7 @@
 # Template file for 'xkcdpass'
 pkgname=xkcdpass
 version=1.17.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="XKCD-password-generator-xkcdpass-${version}"
 build_style=python3-module

From a67dd87b52f6ca4d5e4cefe17339897f96153b49 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 826/870] xonsh: rebuild for Python 3.8.

---
 srcpkgs/xonsh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xonsh/template b/srcpkgs/xonsh/template
index 768ebf36022..2dca267d0d1 100644
--- a/srcpkgs/xonsh/template
+++ b/srcpkgs/xonsh/template
@@ -1,7 +1,7 @@
 # Template file for 'xonsh'
 pkgname=xonsh
 version=0.9.12
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="xonsh xontrib"

From a5a73e26fd5adfa11baf15371c615f6b8eca0056 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 827/870] yq: rebuild for Python 3.8.

---
 srcpkgs/yq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yq/template b/srcpkgs/yq/template
index 7c3af7f43c2..dda886c6c40 100644
--- a/srcpkgs/yq/template
+++ b/srcpkgs/yq/template
@@ -1,7 +1,7 @@
 # Template file for 'yq'
 pkgname=yq
 version=2.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From d68185e72f93c8a691324e8fedaa890c78ef8a09 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 828/870] ytcc: rebuild for Python 3.8.

---
 srcpkgs/ytcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ytcc/template b/srcpkgs/ytcc/template
index feafa404b75..df4195758c7 100644
--- a/srcpkgs/ytcc/template
+++ b/srcpkgs/ytcc/template
@@ -1,7 +1,7 @@
 # Template file for 'ytcc'
 pkgname=ytcc
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ytcc"

From f45f38019bd061a761b9df987b7e48c4fefbf846 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 829/870] yturl: rebuild for Python 3.8.

---
 srcpkgs/yturl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yturl/template b/srcpkgs/yturl/template
index 6fa3e9872ee..ee14b77b5a0 100644
--- a/srcpkgs/yturl/template
+++ b/srcpkgs/yturl/template
@@ -1,7 +1,7 @@
 # Template file for 'yturl'
 pkgname=yturl
 version=2.0.2
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 3f83c32a7d0e818c552750ea8f887ed8d163817a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 830/870] yubikey-manager: rebuild for Python 3.8.

---
 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 af0330e8e15..fcc7b7cb737 100644
--- a/srcpkgs/yubikey-manager/template
+++ b/srcpkgs/yubikey-manager/template
@@ -1,7 +1,7 @@
 # Template file for 'yubikey-manager'
 pkgname=yubikey-manager
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From f60bba032e72ca7ab9c8b7e920980ea11a443f88 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 831/870] z3: rebuild for Python 3.8.

---
 srcpkgs/z3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/z3/template b/srcpkgs/z3/template
index d632a285019..e054915df91 100644
--- a/srcpkgs/z3/template
+++ b/srcpkgs/z3/template
@@ -1,7 +1,7 @@
 # Template file for 'z3'
 pkgname=z3
 version=4.8.6
-revision=2
+revision=3
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=configure
 configure_args="--prefix=/usr -g --python $(vopt_if ocaml --ml)"

From 46bf7a6b37c53cce9f575b48cddc2ab6d8bf959e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 832/870] zim: rebuild for Python 3.8.

---
 srcpkgs/zim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/zim/template b/srcpkgs/zim/template
index 45b9df5357c..dff4ad22081 100644
--- a/srcpkgs/zim/template
+++ b/srcpkgs/zim/template
@@ -1,7 +1,7 @@
 # Template file for 'zim'
 pkgname=zim
 version=0.71.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="zim"

From c1d74b90a8909dffec1f55829ab22b202c2cdd78 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 833/870] python3-pafy: rebuild for Python 3.8.

---
 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 ce26f770c69..b59c9a0adff 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.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pafy-${version}"
 build_style=python3-module

From 11813bf94ed3fc04b4ce2e8ea22e925268d2b6fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 834/870] python3-perf: rebuild for Python 3.8.

---
 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 a03251f97e8..3d57ddb1c1a 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.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyperf-${version}"
 build_style=python3-module

From 555deeec12853033503f5fb81a015775bc731e4b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 835/870] python3-yara: rebuild for Python 3.8.

---
 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 4a6c56dd083..3bdff14a0da 100644
--- a/srcpkgs/python3-yara/template
+++ b/srcpkgs/python3-yara/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-yara'
 pkgname=python3-yara
 version=3.11.0
-revision=1
+revision=2
 wrksrc="yara-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From e4b9d46c845248b9f5a1edd60e5981335711cab3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:31 +0200
Subject: [PATCH 836/870] azote: rebuild for Python 3.8.

---
 srcpkgs/azote/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/azote/template b/srcpkgs/azote/template
index 0a23c209551..2748cb98733 100644
--- a/srcpkgs/azote/template
+++ b/srcpkgs/azote/template
@@ -1,7 +1,7 @@
 # Template file for 'azote'
 pkgname=azote
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="azote"

From 1890d11ac2946bb5a46be1f60a023c5cac0c1a67 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 837/870] binwalk: rebuild for Python 3.8.

---
 srcpkgs/binwalk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/binwalk/template b/srcpkgs/binwalk/template
index 461ea4b547a..fccd523d584 100644
--- a/srcpkgs/binwalk/template
+++ b/srcpkgs/binwalk/template
@@ -1,7 +1,7 @@
 # Template file for 'binwalk'
 pkgname=binwalk
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="binwalk"

From 590dcfde6a8251f2ea9f03d50221acea7bb646a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 838/870] gnome-builder: rebuild for Python 3.8.

---
 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 9ae9ff9d94c..85aeeee9a15 100644
--- a/srcpkgs/gnome-builder/template
+++ b/srcpkgs/gnome-builder/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-builder'
 pkgname=gnome-builder
 version=3.34.1
-revision=1
+revision=2
 build_style=meson
 configure_args="-Dwith_webkit=true -Dwith_sysprof=true -Dhelp=true"
 hostmakedepends="appdata-tools desktop-file-utils flex gobject-introspection

From 41cc8b2bfeee6c834d40f1887c473f0589e6c205 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 839/870] gnome-tweaks: rebuild for Python 3.8.

---
 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 ac1f8bdb873..d0879253ac5 100644
--- a/srcpkgs/gnome-tweaks/template
+++ b/srcpkgs/gnome-tweaks/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-tweaks'
 pkgname=gnome-tweaks
 version=3.34.0
-revision=2
+revision=3
 archs=noarch
 build_style=meson
 pycompile_module="gtweak"

From d12a7b14e3c384a9eff0b6c348c034d42d393545 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 840/870] meson: rebuild for Python 3.8.

---
 srcpkgs/meson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meson/template b/srcpkgs/meson/template
index 315a0f27a92..76791451681 100644
--- a/srcpkgs/meson/template
+++ b/srcpkgs/meson/template
@@ -2,7 +2,7 @@
 pkgname=meson
 reverts="0.52.0_1 0.52.0_2"
 version=0.51.2
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mesonbuild"

From 1d6ef185feaea898bd2759ef70204447ff39062a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 841/870] onionshare: rebuild for Python 3.8.

---
 srcpkgs/onionshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onionshare/template b/srcpkgs/onionshare/template
index c585ae6101e..c37c5962736 100644
--- a/srcpkgs/onionshare/template
+++ b/srcpkgs/onionshare/template
@@ -1,7 +1,7 @@
 # Template file for 'onionshare'
 pkgname=onionshare
 version=2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="onionshare"

From ad945dd2e4a2ca0bbc9d1d76e67651e24e7d210a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 842/870] portage: rebuild for Python 3.8.

---
 srcpkgs/portage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/portage/template b/srcpkgs/portage/template
index b0f34731035..9610428bbf4 100644
--- a/srcpkgs/portage/template
+++ b/srcpkgs/portage/template
@@ -1,7 +1,7 @@
 # Template file for 'portage'
 pkgname=portage
 version=2.3.77
-revision=1
+revision=2
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=python3-module
 pycompile_module="portage _emerge"

From 73e21b264f71dc2b89d9ee48bf4e4f4f01faf629 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 843/870] rpm: rebuild for Python 3.8.

---
 srcpkgs/rpm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rpm/template b/srcpkgs/rpm/template
index 98e35930c4c..9b111106323 100644
--- a/srcpkgs/rpm/template
+++ b/srcpkgs/rpm/template
@@ -1,7 +1,7 @@
 # Template file for 'rpm'
 pkgname=rpm
 version=4.15.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--with-lua --with-cap --with-acl --with-external-db
  --enable-python PYTHON=python3"

From d1aa57b31e35086942774fc1a2848eb199adecd9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 844/870] youtube-dl: rebuild for Python 3.8.

---
 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 d6596b80bd3..f1ae3aa1a74 100644
--- a/srcpkgs/youtube-dl/template
+++ b/srcpkgs/youtube-dl/template
@@ -1,7 +1,7 @@
 # Template file for 'youtube-dl'
 pkgname=youtube-dl
 version=2019.10.16
-revision=1
+revision=2
 archs=noarch
 wrksrc=youtube-dl
 build_style=python3-module

From 9d31ea81d423187c93c4147a564b7b5a632a5f6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 845/870] blender: rebuild for Python 3.8.

---
 srcpkgs/blender/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template
index 758d1235185..47cb8f8ad13 100644
--- a/srcpkgs/blender/template
+++ b/srcpkgs/blender/template
@@ -1,7 +1,7 @@
 # Template file for 'blender'
 pkgname=blender
 version=2.79b
-revision=9
+revision=10
 build_style="cmake"
 makedepends="
  libgomp-devel libpng-devel tiff-devel python3-devel glu-devel

From f6a55ced0c1e68bc423b7f89b3a163a4a71cc48c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 846/870] freecad: rebuild for Python 3.8.

---
 srcpkgs/freecad/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/freecad/template b/srcpkgs/freecad/template
index 9e9375c4444..26bf34702a2 100644
--- a/srcpkgs/freecad/template
+++ b/srcpkgs/freecad/template
@@ -1,7 +1,7 @@
 # Template file for 'freecad'
 pkgname=freecad
 version=0.18.3
-revision=2
+revision=3
 wrksrc="FreeCAD-${version}"
 build_style=cmake
 

From 88f1b493780357e28482d13786ba015a092d30fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 847/870] gdb: rebuild for Python 3.8.

---
 srcpkgs/gdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gdb/template b/srcpkgs/gdb/template
index 9f84e4869e9..39aab79d08a 100644
--- a/srcpkgs/gdb/template
+++ b/srcpkgs/gdb/template
@@ -1,7 +1,7 @@
 # Template file for 'gdb'
 pkgname=gdb
 version=8.3.1
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="/usr/share/gdb"
 configure_args="--disable-werror --disable-nls --with-system-readline

From e877c311ab9d587b71cb5f96d49c282de4954afb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 848/870] hexchat: rebuild for Python 3.8.

---
 srcpkgs/hexchat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hexchat/template b/srcpkgs/hexchat/template
index fbeaf28ae8a..9f7d7957b76 100644
--- a/srcpkgs/hexchat/template
+++ b/srcpkgs/hexchat/template
@@ -1,7 +1,7 @@
 # Template file for 'hexchat'
 pkgname=hexchat
 version=2.14.2
-revision=6
+revision=7
 build_style=meson
 configure_args="-Dwith-dbus=true -Dwith-ssl=true -Dwith-text=false
  -Dwith-perl=/usr/bin/perl -Dwith-python=python3

From eff53b43d66f9c63f0463678780e1e9fdea842bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 849/870] hyperion: rebuild for Python 3.8.

---
 srcpkgs/hyperion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hyperion/template b/srcpkgs/hyperion/template
index 0befdbe7064..7ce415e929e 100644
--- a/srcpkgs/hyperion/template
+++ b/srcpkgs/hyperion/template
@@ -1,7 +1,7 @@
 # Template file for 'hyperion'
 pkgname=hyperion
 version=1.03.2
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DUSE_SYSTEM_PROTO_LIBS=ON -DENABLE_QT5=ON
  -DPROTOBUF_PROTOC_EXECUTABLE=/usr/bin/protoc -DENABLE_AMLOGIC=ON

From d4fc4ef29c823fce76c385523bb8b0b377b6ef81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 850/870] kdevelop-python: rebuild for Python 3.8.

---
 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 0265916a3d0..a306eb8f442 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.4.2
-revision=1
+revision=2
 wrksrc="kdev-python-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/kdevpythonsupport"

From 483c936f3da457ca617cc8cd63713f6512f2281c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 851/870] kitty: rebuild for Python 3.8.

---
 srcpkgs/kitty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/kitty/template b/srcpkgs/kitty/template
index d79bcc4acce..54cd08c23ec 100644
--- a/srcpkgs/kitty/template
+++ b/srcpkgs/kitty/template
@@ -1,7 +1,7 @@
 # Template file for 'kitty'
 pkgname=kitty
 version=0.14.6
-revision=1
+revision=2
 pycompile_dirs="usr/lib/kitty"
 hostmakedepends="ncurses pkg-config python3 wayland-devel wayland-protocols"
 makedepends="gettext-devel glfw-devel harfbuzz-devel libxkbcommon-devel

From feb4d73da243d1ab1421ff356b564d7d6b824ea2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 852/870] krita: rebuild for Python 3.8.

---
 srcpkgs/krita/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/krita/template b/srcpkgs/krita/template
index 7a59fc9ac58..95a02748136 100644
--- a/srcpkgs/krita/template
+++ b/srcpkgs/krita/template
@@ -1,7 +1,7 @@
 # Template file for 'krita'
 pkgname=krita
 version=4.2.7.1
-revision=1
+revision=2
 build_style=cmake
 configure_args="-Wno-dev -DBUILD_TESTING=OFF"
 hostmakedepends="extra-cmake-modules pkg-config python3"

From e008147169a53e424a2982d0a34a628084e763f5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:26:38 +0200
Subject: [PATCH 853/870] libpeas: rebuild for Python 3.8.

---
 srcpkgs/libpeas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index a69238bf823..d4dcf8b5941 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,7 +1,7 @@
 # Template file for 'libpeas'
 pkgname=libpeas
 version=1.22.0
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"

From 3ca40a97edbbeaa52cfa7323739e0715d1d4af16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 854/870] libreoffice: rebuild for Python 3.8.

---
 srcpkgs/libreoffice/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template
index 6e8685ac0fd..98f04a40304 100644
--- a/srcpkgs/libreoffice/template
+++ b/srcpkgs/libreoffice/template
@@ -1,7 +1,7 @@
 # Template file for 'libreoffice'
 pkgname=libreoffice
 version=6.2.5.2
-revision=2
+revision=3
 build_style=meta
 make_build_args="build-nocheck"
 nocross=yes

From c40924182f3ac59a628e61c9db8f3378cc9e2d23 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 855/870] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index 1f9c8043b46..34174be7535 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=5
+revision=6
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From ce723d3adb1eb6ab4223e53b4ba0516611ea9fe3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 856/870] libsigrokdecode: rebuild for Python 3.8.

---
 srcpkgs/libsigrokdecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsigrokdecode/template b/srcpkgs/libsigrokdecode/template
index 59e15dd61b9..cc9d9a10367 100644
--- a/srcpkgs/libsigrokdecode/template
+++ b/srcpkgs/libsigrokdecode/template
@@ -1,7 +1,7 @@
 # Template file for 'libsigrokdecode'
 pkgname=libsigrokdecode
 version=0.5.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="glib-devel python3-devel"

From 70f90cc98bbf3d43c4c694982c8e365c6d815aad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 857/870] luxrays: rebuild for Python 3.8.

---
 srcpkgs/luxrays/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/luxrays/template b/srcpkgs/luxrays/template
index c783e9fe3e5..58037fbfc05 100644
--- a/srcpkgs/luxrays/template
+++ b/srcpkgs/luxrays/template
@@ -1,7 +1,7 @@
 # Template file for 'luxrays'
 pkgname=luxrays
 version=3.1
-revision=13
+revision=14
 build_style=cmake
 configure_args="-DLUXRAYS_DISABLE_OPENCL=OFF -DCMAKE_SKIP_RPATH=ON"
 hostmakedepends="flex bison boost-devel"

From ba5a43b76a61e7af8304a3a5f3832733d4cc9dc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 858/870] navit: rebuild for Python 3.8.

---
 srcpkgs/navit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/navit/template b/srcpkgs/navit/template
index 461689a3c73..24cd151c64b 100644
--- a/srcpkgs/navit/template
+++ b/srcpkgs/navit/template
@@ -1,7 +1,7 @@
 # Template file for 'navit'
 pkgname=navit
 version=0.5.3
-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 a86dd92b411d17ce958d409f079ee1a477682d22 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 859/870] obs: rebuild for Python 3.8.

---
 srcpkgs/obs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/obs/template b/srcpkgs/obs/template
index 3ed426b1583..45bf81803e4 100644
--- a/srcpkgs/obs/template
+++ b/srcpkgs/obs/template
@@ -1,7 +1,7 @@
 # Template file for 'obs'
 pkgname=obs
 version=24.0.1
-revision=1
+revision=2
 _commit_hash_obs_browser="693498b518cf893876f454ef581e13106e8370ec"
 _commit_hash_obs_vst="fde438f7a8afdf41a7ab386a0aa1a61175fc8427"
 _commit_hash_ftl_sdk="98289f7c2ed754c647d451899b3356850c0c1fa3"

From 66017086ddef2aff16875e87a16fa7b98a275e44 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 860/870] renderdoc: rebuild for Python 3.8.

---
 srcpkgs/renderdoc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/renderdoc/template b/srcpkgs/renderdoc/template
index 32d051864d3..681aafe135d 100644
--- a/srcpkgs/renderdoc/template
+++ b/srcpkgs/renderdoc/template
@@ -1,7 +1,7 @@
 # Template file for 'renderdoc'
 pkgname=renderdoc
 version=1.4
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DENABLE_GL=ON -DENABLE_GLES=ON -DENABLE_QRENDERDOC=ON
  -DENABLE_RENDERDOCCMD=ON -DENABLE_VULKAN=ON -DENABLE_XCB=ON -DENABLE_XLIB=ON

From f3f089bd51a1ab24b5430dc0074867fb1d009b31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 861/870] sigil: rebuild for Python 3.8.

---
 srcpkgs/sigil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sigil/template b/srcpkgs/sigil/template
index 4a90ef95798..1d577ee3487 100644
--- a/srcpkgs/sigil/template
+++ b/srcpkgs/sigil/template
@@ -1,7 +1,7 @@
 # Template file for 'sigil'
 pkgname=sigil
 version=0.9.13
-revision=1
+revision=2
 wrksrc="Sigil-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/sigil/python3lib"

From c7727ba7fd29d9024050b256ff8c70af2ecda6c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 862/870] uwsgi: rebuild for Python 3.8.

---
 srcpkgs/uwsgi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/uwsgi/template b/srcpkgs/uwsgi/template
index 2e96cd2e38e..e283d6bc357 100644
--- a/srcpkgs/uwsgi/template
+++ b/srcpkgs/uwsgi/template
@@ -1,7 +1,7 @@
 # Template file for 'uwsgi'
 pkgname=uwsgi
 version=2.0.18
-revision=1
+revision=2
 hostmakedepends="python python3"
 makedepends="python-devel python3-devel"
 short_desc="Fast, self-healing application container server"

From 15f3b0c807dd23d1e4f3feca8f7cd472db8bfea6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 863/870] vim: rebuild for Python 3.8.

---
 srcpkgs/vim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vim/template b/srcpkgs/vim/template
index 8f543069d19..7c7fd4a30f7 100644
--- a/srcpkgs/vim/template
+++ b/srcpkgs/vim/template
@@ -1,7 +1,7 @@
 # Template file for 'vim'
 pkgname=vim
 version=8.1.2021
-revision=3
+revision=4
 hostmakedepends="glib-devel pkg-config"
 makedepends="acl-devel gtk+3-devel libXt-devel lua-devel ncurses-devel
  perl python-devel python3-devel ruby-devel"

From f24787cfc0df4c3123993007795b3764635e1bc7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 864/870] weechat: rebuild for Python 3.8.

---
 srcpkgs/weechat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weechat/template b/srcpkgs/weechat/template
index 19f8af4fd8f..14c3e2360f5 100644
--- a/srcpkgs/weechat/template
+++ b/srcpkgs/weechat/template
@@ -1,7 +1,7 @@
 # Template file for 'weechat'
 pkgname=weechat
 version=2.6
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_MAN=ON -DENABLE_ENCHANT=ON -DENABLE_PERL=ON
  -DENABLE_LUA=ON -DENABLE_RUBY=ON -DENABLE_SPELL=ON

From 529fa0758fe2b0a93e4ea0356acc0fcb8e5294dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 865/870] znc: rebuild for Python 3.8.

---
 srcpkgs/znc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/znc/template b/srcpkgs/znc/template
index 8af8f23a145..696b59133c8 100644
--- a/srcpkgs/znc/template
+++ b/srcpkgs/znc/template
@@ -1,7 +1,7 @@
 # Template file for 'znc'
 pkgname=znc
 version=1.7.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="
  --enable-python

From 0d29290d975ad28ba2fb5afec86af419c73ce2f4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:18:51 +0200
Subject: [PATCH 866/870] boost: rebuild for Python 3.8.

---
 srcpkgs/boost/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 40a4fe67730..1fb0e8ed519 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=5
+revision=6
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"

From 2b76cd60beaac33c3bf0fd623996d5c349ebef7e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:10 +0200
Subject: [PATCH 867/870] python-pyside: remove, obsolete.

---
 srcpkgs/python-pyside/INSTALL.msg | 1 -
 srcpkgs/python-pyside/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/python-pyside/INSTALL.msg
 delete mode 100644 srcpkgs/python-pyside/template

diff --git a/srcpkgs/python-pyside/INSTALL.msg b/srcpkgs/python-pyside/INSTALL.msg
deleted file mode 100644
index 6de207b7aa2..00000000000
--- a/srcpkgs/python-pyside/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-python-pyside is no longer provided by Void Linux, and will be fully removed from the repos on 2019-07-17
diff --git a/srcpkgs/python-pyside/template b/srcpkgs/python-pyside/template
deleted file mode 100644
index 7053f0e7fc3..00000000000
--- a/srcpkgs/python-pyside/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'python-pyside'
-pkgname=python-pyside
-version=1.2.2
-revision=7
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="http://www.pyside.org/"

From 17d5594c210869fbebfcb232aa95804b5960feb6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:52 +0200
Subject: [PATCH 868/870] pyside-tools: remove, obsolete.

---
 srcpkgs/pyside-tools/INSTALL.msg | 1 -
 srcpkgs/pyside-tools/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/pyside-tools/INSTALL.msg
 delete mode 100644 srcpkgs/pyside-tools/template

diff --git a/srcpkgs/pyside-tools/INSTALL.msg b/srcpkgs/pyside-tools/INSTALL.msg
deleted file mode 100644
index fdb45eb0f42..00000000000
--- a/srcpkgs/pyside-tools/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-pyside-tools is no longer provided by Void Linux, and will be fully removed from the repos on 2019-10-30
diff --git a/srcpkgs/pyside-tools/template b/srcpkgs/pyside-tools/template
deleted file mode 100644
index 27cfc18eea4..00000000000
--- a/srcpkgs/pyside-tools/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'pyside-tools'
-pkgname=pyside-tools
-version=0.2.15
-revision=2
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="https://wiki.qt.io/"

From a3da22494d8adf83a071dce3e8a92aa4d2e3a371 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:22:03 +0200
Subject: [PATCH 869/870] shiboken: remove, obsolete.

---
 srcpkgs/shiboken/patches/python3.6.patch |  11 ---
 srcpkgs/shiboken/template                | 110 -----------------------
 2 files changed, 121 deletions(-)
 delete mode 100644 srcpkgs/shiboken/patches/python3.6.patch
 delete mode 100644 srcpkgs/shiboken/template

diff --git a/srcpkgs/shiboken/patches/python3.6.patch b/srcpkgs/shiboken/patches/python3.6.patch
deleted file mode 100644
index 7145fb4308b..00000000000
--- a/srcpkgs/shiboken/patches/python3.6.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- cmake/Modules/FindPython3Libs.cmake.orig
-+++ cmake/Modules/FindPython3Libs.cmake
-@@ -27,7 +27,7 @@
- # Search for the python framework on Apple.
- # CMAKE_FIND_FRAMEWORKS(Python)
- 
--FOREACH(_CURRENT_VERSION 3.4 3.3 3.2 3.1 3.0)
-+FOREACH(_CURRENT_VERSION 3.6 3.5 3.4 3.3 3.2 3.1 3.0)
-   IF(_CURRENT_VERSION GREATER 3.1)
-       SET(_32FLAGS "m" "u" "mu" "dm" "du" "dmu" "")
-   ELSE()
diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
deleted file mode 100644
index 34174be7535..00000000000
--- a/srcpkgs/shiboken/template
+++ /dev/null
@@ -1,110 +0,0 @@
-# Template file for 'shiboken'
-pkgname=shiboken
-version=1.2.2
-revision=6
-wrksrc="shiboken-${version}"
-hostmakedepends="cmake"
-makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"
-short_desc="CPython bindings generator for C++ libraries"
-maintainer="Enno Boland <gottox@voidlinux.org>"
-homepage="http://www.pyside.org"
-license="LGPL-2.1"
-distfiles="https://download.qt.io/official_releases/pyside/shiboken-${version}.tar.bz2"
-checksum=7625bbcf1fe313fd910c6b8c9cf49ac5495499f9d00867115a2f1f2a69fce5c4
-
-nocross="https://travis-ci.org/voidlinux/void-packages/jobs/269193001#L906"
-
-pre_build() {
-	# Fix inconsistent naming of libshiboken.so and ShibokenConfig.cmake
-	sed -i "/get_config_var('SOABI')/d" cmake/Modules/FindPython3InterpWithDebug.cmake
-}
-do_build() {
-	local args= configure_args="
-		-DCMAKE_INSTALL_PREFIX=/usr \
-		-DCMAKE_BUILD_TYPE=Release \
-		-DBUILD_TESTS=OFF"
-
-	for pyver in $py2_ver $py3_ver; do
-		args=
-		if [ "$pyver" = "$py2_ver" ]; then
-			args="-DPYTHON_SUFFIX=-python$py2_ver"
-		else
-			args="-DUSE_PYTHON3=yes"
-		fi
-
-		[ ! -d build-${pyver} ] && mkdir build-${pyver}
-		pushd build-${pyver}
-		cmake .. ${configure_args} ${args}
-		make ${makejobs}
-		popd
-	done
-}
-do_install() {
-	for pyver in $py2_ver $py3_ver; do
-		make -C build-${pyver} DESTDIR=${DESTDIR} install
-	done
-}
-post_install() {
-	# Fix conflict between .pc files
-	rm -f ${DESTDIR}/usr/lib/pkgconfig/*
-	for pyver in $py2_ver $py3_ver; do
-		vinstall build-${pyver}/data/shiboken.pc 644 \
-			usr/lib/pkgconfig shiboken-python${pyver}.pc
-	done
-}
-
-libshiboken-common-devel_package() {
-	depends="${sourcepkg}-${version}_${revision}"
-	short_desc+=" - common development files"
-	pkg_install() {
-		vmove usr/include
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig.cmake
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfigVersion.cmake
-	}
-}
-libshiboken-python-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python-${version}_${revision}"
-	short_desc="Python2 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py2_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py2_ver}.pc
-		vmove usr/lib/libshiboken-python${py2_ver}.so
-	}
-}
-libshiboken-python_package() {
-	short_desc="Python2 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version}
-	}
-}
-python-shiboken_package() {
-	short_desc="Python2 shiboken bindings"
-	pkg_install() {
-		vmove ${py2_sitelib}/shiboken.so
-	}
-}
-libshiboken-python3-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python3-${version}_${revision}"
-	short_desc="Python3 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py3_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py3_ver}.pc
-		vmove usr/lib/libshiboken-python${py3_ver}.so
-	}
-}
-libshiboken-python3_package() {
-	short_desc="Python3 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version}
-	}
-}
-python3-shiboken_package() {
-	short_desc="Python3 shiboken bindings"
-	pkg_install() {
-		vmove ${py3_sitelib}/shiboken.so
-	}
-}

From a93c18078a2e5e4d5e76d9909dabfbaad1609477 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:34:00 +0200
Subject: [PATCH 870/870] boost: rebuild for Python 3.8.

Also ensure bjam is called with the same parameters, to avoid
a full rebuild with -j1 in do_install.
---
 common/shlibs          |  2 +-
 srcpkgs/boost/template | 13 +++++++------
 2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/common/shlibs b/common/shlibs
index f5133935773..92dae1c282c 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -683,7 +683,7 @@ libboost_stacktrace_noop.so.1.69.0 libboost_stacktrace_noop1.69-1.69.0_1<1.70.0
 libboost_stacktrace_addr2line.so.1.69.0 libboost_stacktrace_addr2line1.69-1.69.0_1<1.70.0
 libboost_stacktrace_basic.so.1.69.0 libboost_stacktrace_basic1.69-1.69.0_1<1.70.0
 libboost_python27.so.1.69.0 boost-python1.69-1.69.0_1<1.70.0
-libboost_python36.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
+libboost_python38.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
 libexempi.so.8 exempi-2.5.0_1
 libatasmart.so.4 libatasmart-0.17_1
 libsgutils2.so.2 libsgutils-1.42_1
diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 1fb0e8ed519..b516b348b14 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=6
+revision=7
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"
@@ -60,9 +60,9 @@ do_build() {
 	using python : ${py3_ver} : ${XBPS_CROSS_BASE}/usr/bin/python3 : ${XBPS_CROSS_BASE}${py3_inc} : ${XBPS_CROSS_BASE}${py3_lib} ;
 
 	__EOF
-	./bjam ${makejobs} \
+	./bjam ${makejobs} --prefix=${DESTDIR}/usr \
 		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam --debug-building \
+		--user-config=${wrksrc}/user-config.jam \
 		python=2.7,${py3_ver}
 }
 do_install() {
@@ -72,9 +72,10 @@ do_install() {
 	done
 
 	# Install headers/libs
-	./bjam --prefix=${DESTDIR}/usr abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam python=2.7,${py3_ver} install
-
+	./bjam --prefix=${DESTDIR}/usr \
+		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
+		--user-config=${wrksrc}/user-config.jam \
+		python=2.7,${py3_ver} install
 	# Install Boost.Build stuff.
 	vmkdir usr/share/boost-build
 	cd ${wrksrc}/tools/build && cp -a . ${DESTDIR}/usr/share/boost-build

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PR PATCH] [Updated] [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
  2019-10-19 15:23 ` voidlinux-github
  2019-10-19 16:55 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-10-19 16:55 ` voidlinux-github
  2019-10-19 18:43 ` voidlinux-github
                   ` (29 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-10-19 16:55 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 939 bytes --]

There is an updated pull request by leahneukirchen against master on the void-packages repository

https://github.com/leahneukirchen/void-packages python38
https://github.com/void-linux/void-packages/pull/15623

[WIP] Python 3.8
This huge PR tries to bump all packages that either shlib-require
libpython3.6m.so.1.0 or put files into /usr/lib/python3.6/site-packages.

Broken packages (on x86_64):

- [ ] attic -> upstream dead, remove?
- [ ] blender -> update to 2.80
- [ ] eolie
- [ ] fontforge
- [ ] freecad
- [ ] gst1-python
- [ ] libopenshot
- [ ] libpeas
- [ ] nagstamon
- [ ] paraview
- [ ] pockyt
- [ ] scudcloud
- [ ] torbrowser-launcher
- [ ] unknown-horizons
- [ ] vapoursynth
- [ ] variety
- [ ] kdevelop-python
- [ ] krita: SHA256 mismatch
- [x] ~~shiboken~~
- [ ] renderdoc

Untested:

- [ ] libreoffice


A patch file from https://github.com/void-linux/void-packages/pull/15623.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python38-15623.patch --]
[-- Type: text/x-diff, Size: 621676 bytes --]

From 9907b26ec9aacb2c9c990c665c32502ef0f7c808 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:06:59 +0200
Subject: [PATCH 001/870] python3: update to 3.8.0.

---
 common/shlibs                                 |  3 ++-
 .../python3/patches/fix-xattrs-glibc.patch    | 13 ----------
 srcpkgs/python3/patches/libressl-2.6.patch    | 26 -------------------
 srcpkgs/python3/template                      | 23 ++++++++--------
 4 files changed, 13 insertions(+), 52 deletions(-)
 delete mode 100644 srcpkgs/python3/patches/fix-xattrs-glibc.patch
 delete mode 100644 srcpkgs/python3/patches/libressl-2.6.patch

diff --git a/common/shlibs b/common/shlibs
index cc3fd8383d8..f5133935773 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1698,8 +1698,9 @@ libefiboot.so.1 libefivar-31_1
 libportaudio.so.2 portaudio-19.20140130_1
 libportaudiocpp.so.0 portaudio-cpp-19.20140130_1
 libdar.so.5000 libdar-2.4.14_1
-libpython3.so python3-3.6.2_1
 libpython3.6m.so.1.0 python3-3.6.2_1
+libpython3.so python3-3.8.0_1
+libpython3.8.so.1.0 python3-3.8.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.25.28_1
diff --git a/srcpkgs/python3/patches/fix-xattrs-glibc.patch b/srcpkgs/python3/patches/fix-xattrs-glibc.patch
deleted file mode 100644
index 909901293d5..00000000000
--- a/srcpkgs/python3/patches/fix-xattrs-glibc.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- Modules/posixmodule.c.orig
-+++ Modules/posixmodule.c
-@@ -103,8 +103,9 @@ corresponding Unix manual entries for more information on calls.");
- #undef HAVE_SCHED_SETAFFINITY
- #endif
- 
--#if defined(HAVE_SYS_XATTR_H) && defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
-+#if defined(HAVE_SYS_XATTR_H) && defined(__linux__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
- #define USE_XATTRS
-+#include <linux/limits.h>
- #endif
- 
- #ifdef USE_XATTRS
diff --git a/srcpkgs/python3/patches/libressl-2.6.patch b/srcpkgs/python3/patches/libressl-2.6.patch
deleted file mode 100644
index 92dcf1ef06e..00000000000
--- a/srcpkgs/python3/patches/libressl-2.6.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-https://github.com/python/cpython/pull/4930
-
---- Lib/test/test_ssl.py.orig
-+++ Lib/test/test_ssl.py
-@@ -29,6 +29,12 @@
- PROTOCOLS = sorted(ssl._PROTOCOL_NAMES)
- HOST = support.HOST
- IS_LIBRESSL = ssl.OPENSSL_VERSION.startswith('LibreSSL')
-+if IS_LIBRESSL:
-+    LIBRESSL_VERSION = tuple(
-+        int(s) for s in ssl.OPENSSL_VERSION.rsplit(' ')[-1].split('.')
-+    )
-+else:
-+    LIBRESSL_VERSION = ()
- IS_OPENSSL_1_1 = not IS_LIBRESSL and ssl.OPENSSL_VERSION_INFO >= (1, 1, 0)
- 
- 
-@@ -3392,6 +3398,8 @@ def test_selected_npn_protocol(self):
-                                        chatty=True, connectionchatty=True)
-             self.assertIs(stats['client_npn_protocol'], None)
- 
-+        @unittest.skipIf(IS_LIBRESSL and LIBRESSL_VERSION >= (2, 6, 1),
-+                         "LibreSSL 2.6.1+ has broken NPN support")
-         @unittest.skipUnless(ssl.HAS_NPN, "NPN support needed for this test")
-         def test_npn_protocols(self):
-             server_protocols = ['http/1.1', 'spdy/2']
diff --git a/srcpkgs/python3/template b/srcpkgs/python3/template
index 60bd4411ba8..b03a59beea8 100644
--- a/srcpkgs/python3/template
+++ b/srcpkgs/python3/template
@@ -3,7 +3,7 @@
 # THIS PKG MUST BE SYNCHRONIZED WITH "srcpkgs/python3-tkinter".
 #
 pkgname=python3
-version=3.6.9
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 short_desc="Interpreted, interactive, object-oriented programming language (${version%.*} series)"
@@ -11,7 +11,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=5e2f5f554e3f8f7f0296f7e73d8600c4e9acbaee6b2555b83206edf5153870da
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pycompile_dirs="usr/lib/python${version%.*}"
 hostmakedepends="pkg-config"
@@ -27,8 +27,7 @@ alternatives="
  python:python.1:/usr/share/man/man1/python${version%.*}.1"
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,13 +71,13 @@ do_install() {
 	rm -rf ${DESTDIR}/usr/lib/python${version%.*}/lib2to3/tests
 	# Remove references to the install(1) wrapper.
 	sed -e "s,${XBPS_WRAPPERDIR},/usr/bin,g" -i \
-		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/Makefile
 	if [ "$CROSS_BUILD" ]; then
 		# Remove references to cross toolchain.
 		sed -i "s/$XBPS_CROSS_TRIPLET-//g" \
-			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}/Makefile
 	fi
 }
 
@@ -89,10 +88,10 @@ python3-devel_package() {
 		vmove usr/bin/python*-config
 		vmove usr/lib/pkgconfig
 		vmove usr/include
-		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/libpython${version%.*}m.a \
+		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/libpython${version%.*}*.a \
 			${PKGDESTDIR}/usr/lib
-		mkdir -p ${DESTDIR}/usr/include/python${version%.*}m
-		mv ${PKGDESTDIR}/usr/include/python${version%.*}m/pyconfig.h \
-			${DESTDIR}/usr/include/python${version%.*}m
+		mkdir -p ${DESTDIR}/usr/include/python${version%.*}
+		mv ${PKGDESTDIR}/usr/include/python${version%.*}/pyconfig.h \
+			${DESTDIR}/usr/include/python${version%.*}
 	}
 }

From 82deb1f06d09e93aabaa46495a066cec2647de81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 17:09:57 +0200
Subject: [PATCH 002/870] python3-tkinter: update to 3.8.0.

---
 srcpkgs/python3-tkinter/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template
index 83906219af8..874be51ebdf 100644
--- a/srcpkgs/python3-tkinter/template
+++ b/srcpkgs/python3-tkinter/template
@@ -7,7 +7,7 @@
 _desc="Interpreted, interactive, object-oriented programming language"
 
 pkgname=python3-tkinter
-version=3.6.8
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 pycompile_dirs="
@@ -22,11 +22,10 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=35446241e995773b1bed7d196f4b624dadcadc8429f26282e756b2fb8a351193
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used.
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used.
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,7 +71,7 @@ do_install() {
 		mv ${wrksrc}/${pkgname}-${version}-install/usr/lib/python${version%.*}/${lib} \
 			${DESTDIR}/usr/lib/python${version%.*}/
 	done
-	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*m*.so \
+	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*.so \
 		${DESTDIR}/usr/lib/python${version%.*}/lib-dynload/
 	ln -sf idle${version%.*} ${DESTDIR}/usr/bin/idle3
 }

From 8bb33f77d591103b56f40685a4b61f57b43219cd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:42:15 +0200
Subject: [PATCH 003/870] common/environment/setup/python.sh: update to Python
 3.8.

---
 common/build-style/python-module.sh | 14 ++++----------
 common/environment/setup/python.sh  |  4 ++--
 2 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/common/build-style/python-module.sh b/common/build-style/python-module.sh
index da6ed586cff..ff8f107745f 100644
--- a/common/build-style/python-module.sh
+++ b/common/build-style/python-module.sh
@@ -4,7 +4,7 @@
 
 do_build() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
+	local pyver= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
@@ -12,10 +12,7 @@ do_build() {
 			LDFLAGS="$tmp_ldflags"
 
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
@@ -49,15 +46,12 @@ do_check() {
 
 do_install() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx=
+	local pyver=
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
diff --git a/common/environment/setup/python.sh b/common/environment/setup/python.sh
index d1f4d49a10a..ba181d45361 100644
--- a/common/environment/setup/python.sh
+++ b/common/environment/setup/python.sh
@@ -10,8 +10,8 @@ py2_lib="/usr/lib/python${py2_ver}"
 py2_sitelib="${py2_lib}/site-packages"
 py2_inc="/usr/include/python${py2_ver}"
 
-py3_ver="3.6"
-py3_abiver="m"
+py3_ver="3.8"
+py3_abiver=""
 py3_lib="/usr/lib/python${py3_ver}"
 py3_sitelib="${py3_lib}/site-packages"
 py3_inc="/usr/include/python${py3_ver}${py3_abiver}"

From 75fdcb94c7c7be7dc2c232d271de721d74dc1a6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 004/870] python3-3to2: rebuild for Python 3.8.

---
 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 b6ab94fe7c9..38558f1fcff 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=1
+revision=2
 archs=noarch
 wrksrc="3to2-${version}"
 build_style=python3-module

From 043957a8bcc69ef2ef270f7acd2753a544054759 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 005/870] python-Arrow: rebuild for Python 3.8.

---
 srcpkgs/python-Arrow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Arrow/template b/srcpkgs/python-Arrow/template
index 456e3776188..a3785d60075 100644
--- a/srcpkgs/python-Arrow/template
+++ b/srcpkgs/python-Arrow/template
@@ -2,7 +2,7 @@
 pkgname=python-Arrow
 reverts=0.13.1_1
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="arrow-${version}"
 build_style=python-module

From 5d1bc07743d348083ebd7dfbd1a4ece4913e6a70 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 006/870] python-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Babel/template b/srcpkgs/python-Babel/template
index 34d7a7728ce..619ae432ba4 100644
--- a/srcpkgs/python-Babel/template
+++ b/srcpkgs/python-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Babel'
 pkgname=python-Babel
 version=2.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38e28e565317345549892f5b8da9e3ab1cc3d513 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 007/870] python-BeautifulSoup4: rebuild for Python 3.8.

---
 srcpkgs/python-BeautifulSoup4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-BeautifulSoup4/template b/srcpkgs/python-BeautifulSoup4/template
index 70e4f8a58da..1f6074230c2 100644
--- a/srcpkgs/python-BeautifulSoup4/template
+++ b/srcpkgs/python-BeautifulSoup4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-BeautifulSoup4'
 pkgname=python-BeautifulSoup4
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="beautifulsoup4-${version}"
 build_style=python-module

From 193dc4fe709e1bccd18b84a58f880fde1e4394e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 008/870] python-Bottleneck: rebuild for Python 3.8.

---
 srcpkgs/python-Bottleneck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Bottleneck/template b/srcpkgs/python-Bottleneck/template
index 0c308d5dbb5..28195e99bca 100644
--- a/srcpkgs/python-Bottleneck/template
+++ b/srcpkgs/python-Bottleneck/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Bottleneck'
 pkgname=python-Bottleneck
 version=1.2.1
-revision=4
+revision=5
 wrksrc="Bottleneck-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ff4c422045070300d874353cc6c9750143422e2b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 009/870] python-Cheroot: rebuild for Python 3.8.

---
 srcpkgs/python-Cheroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Cheroot/template b/srcpkgs/python-Cheroot/template
index fcfdf76e69d..7a5375258f4 100644
--- a/srcpkgs/python-Cheroot/template
+++ b/srcpkgs/python-Cheroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Cheroot'
 pkgname=python-Cheroot
 version=8.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cheroot-${version}"
 build_style=python-module

From 6eb51b02b428d8054b1d3a3aa21e6bdcde31cf9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 010/870] python3-CherryPy: rebuild for Python 3.8.

---
 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 b78c01eba2c..450e5791508 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.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python3-module

From 8522b77c798415c2f59fc3b26adc757f66aa0fa7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 011/870] python-ConfigArgParse: rebuild for Python 3.8.

---
 srcpkgs/python-ConfigArgParse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ConfigArgParse/template b/srcpkgs/python-ConfigArgParse/template
index c9a00a04508..d90ca739aee 100644
--- a/srcpkgs/python-ConfigArgParse/template
+++ b/srcpkgs/python-ConfigArgParse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ConfigArgParse'
 pkgname=python-ConfigArgParse
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ConfigArgParse-${version}"
 build_style=python-module

From 3dcbda27301f3e918539317bc411ff556115ef1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 012/870] python-Cython: rebuild for Python 3.8.

---
 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 dc39d54e9c2..675160b3744 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.13
-revision=1
+revision=2
 wrksrc="Cython-${version}"
 build_style=python-module
 pycompile_module="Cython pyximport cython.py"

From 7c69ef59e0a628c13ece955c9f7322631824adca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 013/870] python-Django: rebuild for Python 3.8.

---
 srcpkgs/python-Django/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Django/template b/srcpkgs/python-Django/template
index 21aa405fba1..65a98e41032 100644
--- a/srcpkgs/python-Django/template
+++ b/srcpkgs/python-Django/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Django'
 pkgname=python-Django
 version=1.11.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="Django-${version}"
 build_style=python-module

From 33b250adb0abf2e46663f0a05749097633fce228 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 014/870] python-Flask: rebuild for Python 3.8.

---
 srcpkgs/python-Flask/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask/template b/srcpkgs/python-Flask/template
index 149a76c077e..b75b306701b 100644
--- a/srcpkgs/python-Flask/template
+++ b/srcpkgs/python-Flask/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask'
 pkgname=python-Flask
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9167e534992bd8d17a79a70e22a3b06c68c9762b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 015/870] python-Flask-Assets: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Assets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Assets/template b/srcpkgs/python-Flask-Assets/template
index 339f629f77a..eb81201396b 100644
--- a/srcpkgs/python-Flask-Assets/template
+++ b/srcpkgs/python-Flask-Assets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Assets'
 pkgname=python-Flask-Assets
 version=0.12
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c65d524eb8ee83f7c8eae3ca16878857a374e06c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 016/870] python-Flask-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Babel/template b/srcpkgs/python-Flask-Babel/template
index 3028d15d7bd..b3cc35f230e 100644
--- a/srcpkgs/python-Flask-Babel/template
+++ b/srcpkgs/python-Flask-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Babel'
 pkgname=python-Flask-Babel
 version=0.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From d52f7742820844af3ec25f4b6d4d6d58b19ad722 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 017/870] python-Flask-Login: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Login/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Login/template b/srcpkgs/python-Flask-Login/template
index 8fecf240963..ccaab92d857 100644
--- a/srcpkgs/python-Flask-Login/template
+++ b/srcpkgs/python-Flask-Login/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Login'
 pkgname=python-Flask-Login
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 112c53663ece086d477e4d4fcbc667ae6a2fb518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 018/870] python-Flask-OAuthlib: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-OAuthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-OAuthlib/template b/srcpkgs/python-Flask-OAuthlib/template
index d53157e37b2..958f05a836c 100644
--- a/srcpkgs/python-Flask-OAuthlib/template
+++ b/srcpkgs/python-Flask-OAuthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-OAuthlib'
 pkgname=python-Flask-OAuthlib
 version=0.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From aca82b53b5330ee4a154f2246569006b2d3a38c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 019/870] python3-Flask-RESTful: rebuild for Python 3.8.

---
 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 d0ed467f666..5a05eed0e93 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.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="flask-restful-${version}"
 build_style=python3-module

From 3121295fb06a2b12c0e42b9a6412c1fa52bb86fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 020/870] python-Flask-Script: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Script/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Script/template b/srcpkgs/python-Flask-Script/template
index 19d13887b8e..41312eae57f 100644
--- a/srcpkgs/python-Flask-Script/template
+++ b/srcpkgs/python-Flask-Script/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Script'
 pkgname=python-Flask-Script
 version=2.0.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From cfadd6a4c47e4e611c9d739113006da88f9cb8e7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 021/870] python-Flask-WTF: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-WTF/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-WTF/template b/srcpkgs/python-Flask-WTF/template
index 8edb1d39e35..b2be1e630fb 100644
--- a/srcpkgs/python-Flask-WTF/template
+++ b/srcpkgs/python-Flask-WTF/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-WTF'
 pkgname=python-Flask-WTF
 version=0.14.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 11896d4bd9e1767f6ad8b10e737f0e6a0f5df44f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 022/870] python-GitPython: rebuild for Python 3.8.

---
 srcpkgs/python-GitPython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-GitPython/template b/srcpkgs/python-GitPython/template
index 0edb43cc811..232429265f1 100644
--- a/srcpkgs/python-GitPython/template
+++ b/srcpkgs/python-GitPython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-GitPython'
 pkgname=python-GitPython
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="GitPython-${version}"
 build_style=python-module

From 7008fe32294cead7ef25084a09f874e87cad05e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 023/870] python-IPy: rebuild for Python 3.8.

---
 srcpkgs/python-IPy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-IPy/template b/srcpkgs/python-IPy/template
index d28276383ce..aaae9fcd002 100644
--- a/srcpkgs/python-IPy/template
+++ b/srcpkgs/python-IPy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-IPy'
 pkgname=python-IPy
 version=1.00
-revision=1
+revision=2
 archs=noarch
 wrksrc="IPy-${version}"
 build_style=python-module

From 4ee5b9129c818c4db475e75f899f1f21eb9c312c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 024/870] python3-Inflector: rebuild for Python 3.8.

---
 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 1bfe9ccef7c..e9ee0ffe8d1 100644
--- a/srcpkgs/python3-Inflector/template
+++ b/srcpkgs/python3-Inflector/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-Inflector'
 pkgname=python3-Inflector
 version=2.0.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="Inflector-${version}"
 build_style=python3-module

From 631236d908cbeed8345c2fb159c73e7c54fe1571 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 025/870] python-Jinja2: rebuild for Python 3.8.

---
 srcpkgs/python-Jinja2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Jinja2/template b/srcpkgs/python-Jinja2/template
index c67e6f47f06..3fcd44dc198 100644
--- a/srcpkgs/python-Jinja2/template
+++ b/srcpkgs/python-Jinja2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Jinja2'
 pkgname=python-Jinja2
 version=2.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Jinja2-${version}"
 build_style=python-module

From 3a7808b9f47226adec7dd1e59bef222cf38d7e9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 026/870] python-Levenshtein: rebuild for Python 3.8.

---
 srcpkgs/python-Levenshtein/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Levenshtein/template b/srcpkgs/python-Levenshtein/template
index 26f57d90e70..7d97147ccc8 100644
--- a/srcpkgs/python-Levenshtein/template
+++ b/srcpkgs/python-Levenshtein/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Levenshtein'
 pkgname=python-Levenshtein
 version=0.12.0
-revision=2
+revision=3
 build_style=python-module
 pycompile_module="Levenshtein"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"

From 6d2a898ccc971553cf9dab7239daf8d626350b19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 027/870] python-M2Crypto: rebuild for Python 3.8.

---
 srcpkgs/python-M2Crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-M2Crypto/template b/srcpkgs/python-M2Crypto/template
index 102dbb7261e..6febd5a9ea1 100644
--- a/srcpkgs/python-M2Crypto/template
+++ b/srcpkgs/python-M2Crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-M2Crypto'
 pkgname=python-M2Crypto
 version=0.35.2
-revision=1
+revision=2
 wrksrc="M2Crypto-${version}"
 build_style=python-module
 pycompile_module="M2Crypto"

From 3597aa866d7cb1ff4d5316a0cfe52c8aa8ab717c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 028/870] python-Mako: rebuild for Python 3.8.

---
 srcpkgs/python-Mako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Mako/template b/srcpkgs/python-Mako/template
index e5c3c76170c..f0184179b83 100644
--- a/srcpkgs/python-Mako/template
+++ b/srcpkgs/python-Mako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Mako'
 pkgname=python-Mako
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Mako-${version}"
 build_style=python-module

From 164d5bbfa645fb7b1ddbfbccebb7b85e407c578f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 029/870] python-Markdown: rebuild for Python 3.8.

---
 srcpkgs/python-Markdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markdown/template b/srcpkgs/python-Markdown/template
index 935dcc12bca..03a0d18e23b 100644
--- a/srcpkgs/python-Markdown/template
+++ b/srcpkgs/python-Markdown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markdown'
 pkgname=python-Markdown
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python-module

From c5fcb10688938a17e3acb9f9c630c300f5fe9672 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 030/870] python-MarkupSafe: rebuild for Python 3.8.

---
 srcpkgs/python-MarkupSafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MarkupSafe/template b/srcpkgs/python-MarkupSafe/template
index c12dbb7e656..ae22857aa7a 100644
--- a/srcpkgs/python-MarkupSafe/template
+++ b/srcpkgs/python-MarkupSafe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MarkupSafe'
 pkgname=python-MarkupSafe
 version=1.1.1
-revision=1
+revision=2
 wrksrc="MarkupSafe-${version}"
 build_style=python-module
 pycompile_module="markupsafe"

From b7a4bc0f45110c5c3bd019a437078724336d1888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 031/870] python-Markups: rebuild for Python 3.8.

---
 srcpkgs/python-Markups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markups/template b/srcpkgs/python-Markups/template
index d4817feb430..02ba25ee05c 100644
--- a/srcpkgs/python-Markups/template
+++ b/srcpkgs/python-Markups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markups'
 pkgname=python-Markups
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markups-${version}"
 build_style=python-module

From af8fe2e4b17c908737f599cc43d860493f7da689 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 032/870] python3-MechanicalSoup: rebuild for Python 3.8.

---
 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 b1bbfa4184c..5a3b0b3eb03 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=1
+revision=2
 archs=noarch
 wrksrc=MechanicalSoup-${version}
 build_style=python3-module

From 4d05157344a63fb3d617b00a4268732231187cb4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 033/870] python-MiniMock: rebuild for Python 3.8.

---
 srcpkgs/python-MiniMock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MiniMock/template b/srcpkgs/python-MiniMock/template
index 38c0723f374..8b8c4f5f1e6 100644
--- a/srcpkgs/python-MiniMock/template
+++ b/srcpkgs/python-MiniMock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MiniMock'
 pkgname=python-MiniMock
 version=1.2.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 25b62a34488966009bf8450b60653f01872e2310 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 034/870] python-Pillow: rebuild for Python 3.8.

---
 srcpkgs/python-Pillow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pillow/template b/srcpkgs/python-Pillow/template
index e43d22b8f62..f1791b46d79 100644
--- a/srcpkgs/python-Pillow/template
+++ b/srcpkgs/python-Pillow/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pillow'
 pkgname=python-Pillow
 version=6.2.0
-revision=1
+revision=2
 wrksrc="Pillow-${version}"
 build_style=python-module
 pycompile_module="PIL"

From f79ffe3fe477b7fff206250125a96da96c80c086 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 035/870] python-PyAudio: rebuild for Python 3.8.

---
 srcpkgs/python-PyAudio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyAudio/template b/srcpkgs/python-PyAudio/template
index 5c3286caae0..2e84cf5cc8f 100644
--- a/srcpkgs/python-PyAudio/template
+++ b/srcpkgs/python-PyAudio/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyAudio'
 pkgname=python-PyAudio
 version=0.2.11
-revision=2
+revision=3
 wrksrc="PyAudio-${version}"
 build_style=python-module
 pycompile_module="pyaudio.py"

From 11c99c939a4791ec394842255e6aac23eaae5920 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 036/870] python3-PyBrowserID: rebuild for Python 3.8.

---
 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 abec9dac54e..eefd0175f1b 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=2
+revision=3
 archs=noarch
 wrksrc="PyBrowserID-${version}"
 build_style=python3-module

From d49beb289c07b8d33e8e2f286e068c0e8b3fe4b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 037/870] python3-PyFxA: rebuild for Python 3.8.

---
 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 31175c92435..6fc6791efdd 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=1
+revision=2
 archs=noarch
 wrksrc="PyFxA-${version}"
 build_style=python3-module

From d0eb109c7435d396e67de8f37a376ca0a2958d93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 038/870] python-PyHamcrest: rebuild for Python 3.8.

---
 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 61078241d8a..48f001595aa 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=1
+revision=2
 archs=noarch
 wrksrc="PyHamcrest-${version}"
 build_style=python-module

From 4afc9e488b53ee7025095fe93072953c256fc630 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 039/870] python-PyICU: rebuild for Python 3.8.

---
 srcpkgs/python-PyICU/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyICU/template b/srcpkgs/python-PyICU/template
index be4aaf88639..aab2934cbbd 100644
--- a/srcpkgs/python-PyICU/template
+++ b/srcpkgs/python-PyICU/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyICU'
 pkgname=python-PyICU
 version=2.3.1
-revision=2
+revision=3
 wrksrc="PyICU-${version}"
 build_style=python-module
 pycompile_module="icu PyICU.py"

From a0c3f96b4df2b1efda070832287f3728314c717a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 040/870] python3-PyJWT: rebuild for Python 3.8.

---
 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 6f0830125c1..bf1dda0753e 100644
--- a/srcpkgs/python3-PyJWT/template
+++ b/srcpkgs/python3-PyJWT/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-PyJWT'
 pkgname=python3-PyJWT
 version=1.7.1
-revision=1
+revision=2
 wrksrc="PyJWT-${version}"
 build_style=python3-module
 pycompile_module="PyJWT.py"

From 0355fd4b78af7fbf4ffad4b12dc8e153b70d703d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 041/870] python-PyOpenGL: rebuild for Python 3.8.

---
 srcpkgs/python-PyOpenGL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyOpenGL/template b/srcpkgs/python-PyOpenGL/template
index ec08e0bd667..eafc3be1210 100644
--- a/srcpkgs/python-PyOpenGL/template
+++ b/srcpkgs/python-PyOpenGL/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL'
 pkgname=python-PyOpenGL
 version=3.1.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="PyOpenGL-${version}"
 build_style=python-module

From 1a8da5c4a7dbf53ec6c03efd5387e02d2b0be720 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 17:15:54 +0200
Subject: [PATCH 042/870] python-PyOpenGL-accelerate: update to 3.1.3b1.

---
 srcpkgs/python-PyOpenGL-accelerate/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python-PyOpenGL-accelerate/template b/srcpkgs/python-PyOpenGL-accelerate/template
index 25d84abffcb..5d16a82b845 100644
--- a/srcpkgs/python-PyOpenGL-accelerate/template
+++ b/srcpkgs/python-PyOpenGL-accelerate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL-accelerate'
 pkgname=python-PyOpenGL-accelerate
-version=3.1.0
-revision=5
+version=3.1.3b1
+revision=1
 wrksrc="PyOpenGL-accelerate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"
@@ -9,10 +9,10 @@ makedepends="python-devel python3-devel python-numpy python3-numpy"
 depends="python-numpy"
 short_desc="Acceleration code for PyOpenGL (Python2)"
 maintainer="Alain Kalker <a.c.kalker@gmail.com>"
-license="3-clause-BSD"
+license="BSD-3-Clause"
 homepage="http://pyopengl.sourceforge.net/"
 distfiles="${PYPI_SITE}/P/PyOpenGL-accelerate/PyOpenGL-accelerate-${version}.tar.gz"
-checksum=927f4670b893d46e2f6273ae938bf0a1db27ffae3336eba94813ccef6260c410
+checksum=e687eea7e006d65f531933b49b3b3d2feaaf51279147a904247f9d189762a36f
 
 post_install() {
 	vlicense license.txt LICENSE

From 2f6b6f2c3880b16991df568d3ac18efca5c970c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 043/870] python-PyQt5: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5/template b/srcpkgs/python-PyQt5/template
index 6534d4e22e6..9eba20dc514 100644
--- a/srcpkgs/python-PyQt5/template
+++ b/srcpkgs/python-PyQt5/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5'
 pkgname=python-PyQt5
 version=5.13.0
-revision=1
+revision=2
 _sipver=4.19.18
 lib32disabled=yes
 wrksrc="PyQt5_gpl-${version}"

From cf20a1f23e0c305d2e9672610364b2fd4f566695 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 044/870] python-PyQt5-webengine: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5-webengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5-webengine/template b/srcpkgs/python-PyQt5-webengine/template
index 996ef6b00e2..af7162d20cb 100644
--- a/srcpkgs/python-PyQt5-webengine/template
+++ b/srcpkgs/python-PyQt5-webengine/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5-webengine'
 pkgname=python-PyQt5-webengine
 version=5.13.0
-revision=1
+revision=2
 wrksrc="PyQtWebEngine_gpl-${version}"
 pycompile_module="PyQt5WebEngine"
 hostmakedepends="pkg-config qt5-qmake

From 84502fbd3a591ad0db01072998b5a2b3fcfcf192 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 045/870] python-Pygments: rebuild for Python 3.8.

---
 srcpkgs/python-Pygments/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pygments/template b/srcpkgs/python-Pygments/template
index f5a72ca6cea..8d2214a6bfc 100644
--- a/srcpkgs/python-Pygments/template
+++ b/srcpkgs/python-Pygments/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pygments'
 pkgname=python-Pygments
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Pygments-${version}"
 build_style=python-module

From ef2467b2248b773e2d940058876cf81a2b935043 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 046/870] python-Pyro4: rebuild for Python 3.8.

---
 srcpkgs/python-Pyro4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pyro4/template b/srcpkgs/python-Pyro4/template
index d8925aa141f..0417e9f6a8a 100644
--- a/srcpkgs/python-Pyro4/template
+++ b/srcpkgs/python-Pyro4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pyro4'
 pkgname=python-Pyro4
 version=4.75
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a80785231122d63ad91b973744bf59b0a1b59506 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 047/870] python3-ReParser: rebuild for Python 3.8.

---
 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 5e7b5de3790..5959de9d0e3 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=1
+revision=2
 archs=noarch
 wrksrc=ReParser-${version}
 build_style=python3-module

From 543272b7ff22e6f0642d879c60f19717643fec8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 048/870] python-SPARQLWrapper: rebuild for Python 3.8.

---
 srcpkgs/python-SPARQLWrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-SPARQLWrapper/template b/srcpkgs/python-SPARQLWrapper/template
index d014eb8aab4..8d2db9a02b3 100644
--- a/srcpkgs/python-SPARQLWrapper/template
+++ b/srcpkgs/python-SPARQLWrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'python-SPARQLWrapper'
 pkgname=python-SPARQLWrapper
 version=1.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a01a9e6bc3bd9fddfdd13341f78e625b063be5c8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 049/870] python-SQLAlchemy: rebuild for Python 3.8.

---
 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 7b529ade621..110430ff9f5 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.8
-revision=1
+revision=2
 wrksrc="SQLAlchemy-${version}"
 build_style=python-module
 pycompile_module="sqlalchemy"

From 46382571cad86b54ca46e129f7c2988772d0a48e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 050/870] python3-SecretStorage: rebuild for Python 3.8.

---
 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 8df813ad247..b19d4865f7e 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.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="SecretStorage-${version}"
 build_style=python3-module

From c79427640956f1961211ce3322c3811958e0f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 051/870] python3-SoCo: rebuild for Python 3.8.

---
 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 f0ac9825f57..01ebbeff15a 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="SoCo-${version}"
 build_style=python3-module

From 20a1ac5477ca4a76e0257e06bf6f353835eac7bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 052/870] python-Sphinx: rebuild for Python 3.8.

---
 srcpkgs/python-Sphinx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Sphinx/template b/srcpkgs/python-Sphinx/template
index e70dc9b238e..42969925f9e 100644
--- a/srcpkgs/python-Sphinx/template
+++ b/srcpkgs/python-Sphinx/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Sphinx'
 pkgname=python-Sphinx
 version=1.8.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="Sphinx-${version}"
 build_style=python-module

From 863c01ff80faa4de651a55ba2a354f8da5e6b025 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 053/870] python3-Telethon: rebuild for Python 3.8.

---
 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 b0786559591..d0fa8e34d3f 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.10.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="Telethon-${version}"
 build_style=python3-module

From efc9766b9866c660a4cb508c49be4df48f1e5809 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 054/870] python-Twisted: rebuild for Python 3.8.

---
 srcpkgs/python-Twisted/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Twisted/template b/srcpkgs/python-Twisted/template
index 519a1e251a9..e94e0edf26e 100644
--- a/srcpkgs/python-Twisted/template
+++ b/srcpkgs/python-Twisted/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Twisted'
 pkgname=python-Twisted
 version=18.9.0
-revision=3
+revision=4
 wrksrc="Twisted-${version}"
 build_style=python-module
 pycompile_module="twisted"

From 5fd974f3940d5ee91fe712fef2e93ce539743b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 055/870] python3-TxSNI: rebuild for Python 3.8.

---
 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 403010da5be..d9d7c2a0c83 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.1.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="TxSNI-${version}"
 build_style=python3-module

From 559184031fe43c0ff648fb7fab55ede08fff2c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 056/870] python-Unidecode: rebuild for Python 3.8.

---
 srcpkgs/python-Unidecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Unidecode/template b/srcpkgs/python-Unidecode/template
index 035c5d846be..444eb1427d6 100644
--- a/srcpkgs/python-Unidecode/template
+++ b/srcpkgs/python-Unidecode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Unidecode'
 pkgname=python-Unidecode
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Unidecode-${version}"
 build_style=python-module

From 07f0904b4cb8f2de0b7bc39c0ca28d225c91257d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 057/870] python-WTForms: rebuild for Python 3.8.

---
 srcpkgs/python-WTForms/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-WTForms/template b/srcpkgs/python-WTForms/template
index 06af2366050..98dff7d092f 100644
--- a/srcpkgs/python-WTForms/template
+++ b/srcpkgs/python-WTForms/template
@@ -1,7 +1,7 @@
 # Template file for 'python-WTForms'
 pkgname=python-WTForms
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="WTForms-${version}"
 build_style=python-module

From ec81beba1921fe189a8dd80810da306514a86c1a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 058/870] python3-WebOb: rebuild for Python 3.8.

---
 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 c360542a1f2..53e63879f2c 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=1
+revision=2
 archs=noarch
 wrksrc="WebOb-${version}"
 build_style=python3-module

From 0b7a4a756b3ead4c188a3819311c4471c1b0a21c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 059/870] python-Werkzeug: rebuild for Python 3.8.

---
 srcpkgs/python-Werkzeug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Werkzeug/template b/srcpkgs/python-Werkzeug/template
index 24fff62f1ae..1ca303822e8 100644
--- a/srcpkgs/python-Werkzeug/template
+++ b/srcpkgs/python-Werkzeug/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Werkzeug'
 pkgname=python-Werkzeug
 version=0.15.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c530a6e11127606a3b29b73da4cb31f010d97b5c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 060/870] python-Whoosh: rebuild for Python 3.8.

---
 srcpkgs/python-Whoosh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Whoosh/template b/srcpkgs/python-Whoosh/template
index f2118ed0af2..66856b206a7 100644
--- a/srcpkgs/python-Whoosh/template
+++ b/srcpkgs/python-Whoosh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-whoosh'
 pkgname=python-Whoosh
 version=2.7.4
-revision=1
+revision=2
 wrksrc="Whoosh-${version}"
 archs=noarch
 build_style=python-module

From 3e3ad6526265ded86e6e1b5539061302a3890381 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 061/870] python3-XlsxWriter: rebuild for Python 3.8.

---
 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 ea68ced9a03..b991457e01e 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.1.8
-revision=1
+revision=2
 archs="noarch"
 wrksrc="XlsxWriter-RELEASE_${version}"
 build_style=python3-module

From ed808be70fb42a5a7e827e43a5d8a9954d85823a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 062/870] python-Yapsy: rebuild for Python 3.8.

---
 srcpkgs/python-Yapsy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Yapsy/template b/srcpkgs/python-Yapsy/template
index 9f79423f91d..5ad8b234f5d 100644
--- a/srcpkgs/python-Yapsy/template
+++ b/srcpkgs/python-Yapsy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Yapsy'
 pkgname=python-Yapsy
 version=1.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Yapsy-${version}"
 build_style=python-module

From ef3f8b60f72752d3ec1c7676df4597cc6cfdfb42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 063/870] python-aalib: rebuild for Python 3.8.

---
 srcpkgs/python-aalib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-aalib/template b/srcpkgs/python-aalib/template
index 349b8407343..f9621a9c8dc 100644
--- a/srcpkgs/python-aalib/template
+++ b/srcpkgs/python-aalib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-aalib'
 pkgname=python-aalib
 version=0.3.2
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="aalib.py"
 hostmakedepends="python-setuptools python3-setuptools"

From 1aee008231a9354b62bbf679e89e620deeba0d34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 064/870] python3-acme: rebuild for Python 3.8.

---
 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 d7ef20f2301..844dde9c814 100644
--- a/srcpkgs/python3-acme/template
+++ b/srcpkgs/python3-acme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-acme'
 pkgname=python3-acme
 version=0.39.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="acme-${version}"
 build_style=python3-module

From 877668118087bb2d0bd4b8ebf34db7c6c4308c31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 065/870] python3-aiodns: rebuild for Python 3.8.

---
 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 cca9f45dbf5..8e06ea6e614 100644
--- a/srcpkgs/python3-aiodns/template
+++ b/srcpkgs/python3-aiodns/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiodns'
 pkgname=python3-aiodns
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiodns-${version}"
 build_style=python3-module

From de87766918ac8688cf8992433b56e9b1ad222108 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 066/870] python3-aiohttp: rebuild for Python 3.8.

---
 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 fbe98e07b2b..67e450e6aab 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.5.4
-revision=3
+revision=4
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 0c2d285f8d7edc438e657ec9bc4a2b16982a4a57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 067/870] python3-aiohttp-cors: rebuild for Python 3.8.

---
 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 8a643ca1797..b621716e3cd 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=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 4643a6f9e03d1657e1ac2f5ca93bf616979b58de Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 068/870] python3-aiohttp-cors2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp-cors2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp-cors2/template b/srcpkgs/python3-aiohttp-cors2/template
index 7ff1206538b..f13b0598456 100644
--- a/srcpkgs/python3-aiohttp-cors2/template
+++ b/srcpkgs/python3-aiohttp-cors2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp-cors2'
 pkgname=python3-aiohttp-cors2
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 9db81023f9f60f7a78d62f9f9b8f1fa8afbb9fa8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 069/870] python3-aiohttp2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp2/template b/srcpkgs/python3-aiohttp2/template
index b570043baba..db3704b5700 100644
--- a/srcpkgs/python3-aiohttp2/template
+++ b/srcpkgs/python3-aiohttp2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp2'
 pkgname=python3-aiohttp2
 version=2.3.10
-revision=2
+revision=3
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 9bf56f834aca73a7ea8141ab0c95b4aed0d1f09a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 070/870] python3-aiohttp_socks: rebuild for Python 3.8.

---
 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 93c45ff24c4..10ab967ef76 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.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp_socks-${version}"
 build_style=python3-module

From acad4e265f43c8bc2098168adb1c0442a0c22445 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 071/870] python3-aiorpcx: rebuild for Python 3.8.

---
 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 42b6dc541bf..07922e15ccd 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.17.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiorpcX-${version}"
 build_style=python3-module

From b4945f68890b617f5b513871e533769a2149f07f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 072/870] python-alabaster: rebuild for Python 3.8.

---
 srcpkgs/python-alabaster/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alabaster/template b/srcpkgs/python-alabaster/template
index e4ece5c2991..b33009d5efb 100644
--- a/srcpkgs/python-alabaster/template
+++ b/srcpkgs/python-alabaster/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alabaster'
 pkgname=python-alabaster
 version=0.7.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="alabaster-${version}"
 build_style=python-module

From 04c416b8fb310277c61713ee1b8dd702a970240b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 073/870] python-alembic: rebuild for Python 3.8.

---
 srcpkgs/python-alembic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alembic/template b/srcpkgs/python-alembic/template
index 4011b33c0fa..aecbe10e7d0 100644
--- a/srcpkgs/python-alembic/template
+++ b/srcpkgs/python-alembic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alembic'
 pkgname=python-alembic
 version=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="alembic-${version}"
 build_style=python-module

From 5c2d4bcc3255cb59561524d151fe84b3a70e8ad4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 074/870] python3-altgraph: rebuild for Python 3.8.

---
 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 eff10f7aef4..2bf433edb6e 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.16.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="altgraph-${version}"
 build_style=python3-module

From 3c6234d42f7adffca219ea7f98f11d5283dce900 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 075/870] python3-aniso8601: rebuild for Python 3.8.

---
 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 26540bc8c3f..0253b89b5a3 100644
--- a/srcpkgs/python3-aniso8601/template
+++ b/srcpkgs/python3-aniso8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aniso8601'
 pkgname=python3-aniso8601
 version=8.0.0
-revision=1
+revision=2
 archs=noarch
 _gitver=0ec13b9d81c9
 wrksrc="nielsenb-aniso8601-${_gitver}"

From b4fecde90241517d0629d46de55f99a1ef7edbaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 076/870] python-ansicolor: rebuild for Python 3.8.

---
 srcpkgs/python-ansicolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ansicolor/template b/srcpkgs/python-ansicolor/template
index af18c5b946d..3663a82f0cc 100644
--- a/srcpkgs/python-ansicolor/template
+++ b/srcpkgs/python-ansicolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ansicolor'
 pkgname=python-ansicolor
 version=0.2.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="ansicolor-${version}"
 build_style=python-module

From 3983fbed547fd194f9eefaaf58d10c7770e27350 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 077/870] python3-anytree: rebuild for Python 3.8.

---
 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 5a37dba6581..7368754c426 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.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="anytree-${version}"
 build_style=python3-module

From 6d797f541c2cb160f9cfebd0a3e71dace50cceb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 078/870] python-appdirs: rebuild for Python 3.8.

---
 srcpkgs/python-appdirs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-appdirs/template b/srcpkgs/python-appdirs/template
index fdae1fe184b..15354ec5768 100644
--- a/srcpkgs/python-appdirs/template
+++ b/srcpkgs/python-appdirs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-appdirs'
 pkgname=python-appdirs
 version=1.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 7a7c86554157d7224efc221e706b9aebfc1ff796 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 079/870] python3-applib: rebuild for Python 3.8.

---
 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 95f589dc65a..0fb5a42e618 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=1
+revision=2
 archs=noarch
 wrksrc="applib-${version}"
 build_style=python3-module

From 642416934e5f74b49e1a38fe6e941287cbccbf83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 080/870] python-apsw: rebuild for Python 3.8.

---
 srcpkgs/python-apsw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-apsw/template b/srcpkgs/python-apsw/template
index ed47b4a7803..6146ea639db 100644
--- a/srcpkgs/python-apsw/template
+++ b/srcpkgs/python-apsw/template
@@ -3,7 +3,7 @@ pkgname=python-apsw
 _distver=3.29.0
 _patchver=r1
 version=${_distver}${_patchver}
-revision=1
+revision=2
 wrksrc="apsw-${_distver}-${_patchver}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 765bd2f2b82c6226b12a5d6bbe156b07c03a1bca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 081/870] python-argh: rebuild for Python 3.8.

---
 srcpkgs/python-argh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argh/template b/srcpkgs/python-argh/template
index 4b7aec3b525..656da441757 100644
--- a/srcpkgs/python-argh/template
+++ b/srcpkgs/python-argh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argh'
 pkgname=python-argh
 version=0.26.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="argh-${version}"
 build_style=python-module

From 1f6f709fcbb4353d419be8d129ce581747dae1ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 082/870] python-argon2: rebuild for Python 3.8.

---
 srcpkgs/python-argon2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argon2/template b/srcpkgs/python-argon2/template
index 0b4b132cddd..1b5216cc9c0 100644
--- a/srcpkgs/python-argon2/template
+++ b/srcpkgs/python-argon2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argon2'
 pkgname=python-argon2
 version=18.3.0
-revision=2
+revision=3
 wrksrc="argon2_cffi-${version}"
 build_style=python-module
 pycompile_module="argon2"

From 26f299203792a3fe43e8944054d8c61c83416097 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 083/870] python-arxiv2bib: rebuild for Python 3.8.

---
 srcpkgs/python-arxiv2bib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-arxiv2bib/template b/srcpkgs/python-arxiv2bib/template
index 8bbc6bcf78e..4f245755dcf 100644
--- a/srcpkgs/python-arxiv2bib/template
+++ b/srcpkgs/python-arxiv2bib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-arxiv2bib'
 pkgname=python-arxiv2bib
 version=1.0.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="arxiv2bib-${version}"
 build_style=python-module

From 5d25b8642b8f8043e54a95f2ff5efc880044395a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 084/870] python-asn1crypto: rebuild for Python 3.8.

---
 srcpkgs/python-asn1crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-asn1crypto/template b/srcpkgs/python-asn1crypto/template
index 369c20af98f..e7ffe7415fc 100644
--- a/srcpkgs/python-asn1crypto/template
+++ b/srcpkgs/python-asn1crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-asn1crypto'
 pkgname=python-asn1crypto
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="asn1crypto-${version}"
 build_style=python-module

From c0625af704339d35d7423cd750ef2620c53c39bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 085/870] python-astral: rebuild for Python 3.8.

---
 srcpkgs/python-astral/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-astral/template b/srcpkgs/python-astral/template
index b8fdaee27ac..07aaeee166b 100644
--- a/srcpkgs/python-astral/template
+++ b/srcpkgs/python-astral/template
@@ -1,7 +1,7 @@
 # Template file for 'python-astral'
 pkgname=python-astral
 version=1.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python-}-${version}"
 build_style=python-module

From 6cdbd1584336605868e949368279bb6c2143b1d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 086/870] python3-astroid: rebuild for Python 3.8.

---
 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 28f01bd4445..d964fd2cdf3 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.2.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="astroid-${version}"
 build_style=python3-module

From c0642f6c760884c3209a89e643de35660419627a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 087/870] python3-async-timeout: rebuild for Python 3.8.

---
 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 d949a4fdf9a..854584fb5b2 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=1
+revision=2
 archs=noarch
 wrksrc="async-timeout-${version}"
 build_style=python3-module

From 17cdd1aac68337b8859ce0d970b309f841b8a456 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 088/870] python3-async_generator: rebuild for Python 3.8.

---
 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 c2053d7bf1f..20d9f7ea0d1 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=1
+revision=2
 archs=noarch
 wrksrc="async_generator-${version}"
 build_style=python3-module

From e57ec7e6820968645a23bcc13867add4c9a62399 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 089/870] python-atomicwrites: rebuild for Python 3.8.

---
 srcpkgs/python-atomicwrites/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atomicwrites/template b/srcpkgs/python-atomicwrites/template
index 849272e53f9..ec411d981d4 100644
--- a/srcpkgs/python-atomicwrites/template
+++ b/srcpkgs/python-atomicwrites/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atomicwrites'
 pkgname=python-atomicwrites
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="atomicwrites-${version}"
 build_style=python-module

From 61df9fa27dc05bc6bb5d5a2c5e806fd041d9adb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 090/870] python-atspi: rebuild for Python 3.8.

---
 srcpkgs/python-atspi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atspi/template b/srcpkgs/python-atspi/template
index 4a2007fa319..cfa1ef35377 100644
--- a/srcpkgs/python-atspi/template
+++ b/srcpkgs/python-atspi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atspi'
 pkgname=python-atspi
 version=2.32.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure

From d24c76e2f70e9a9dd9a6aa66a323bf79f37f9110 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 091/870] python-attrs: rebuild for Python 3.8.

---
 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 aaddb13f5be..6e2297a9553 100644
--- a/srcpkgs/python-attrs/template
+++ b/srcpkgs/python-attrs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-attrs'
 pkgname=python-attrs
 version=19.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="attrs-${version}"
 build_style=python-module

From dba37b5f26f28057cb10e86a08a4d2281ee09b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 092/870] python-audioread: rebuild for Python 3.8.

---
 srcpkgs/python-audioread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-audioread/template b/srcpkgs/python-audioread/template
index fc788a2778c..bc878d4b82d 100644
--- a/srcpkgs/python-audioread/template
+++ b/srcpkgs/python-audioread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-audioread'
 pkgname=python-audioread
 version=2.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="audioread-${version}"
 build_style=python-module

From 789a6f2ae1cd503ad69b6a968651c7745f878718 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 093/870] audit: rebuild for Python 3.8.

---
 srcpkgs/audit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/audit/template b/srcpkgs/audit/template
index c624aae0f6d..3e0d21784c0 100644
--- a/srcpkgs/audit/template
+++ b/srcpkgs/audit/template
@@ -1,7 +1,7 @@
 # Template file for 'audit'
 pkgname=audit
 version=2.8.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--libdir=/usr/lib --enable-shared=audit --enable-gssapi-krb5
  --with-apparmor --with-libcap-ng --with-python3"

From e2efc441ba2dda6eac89d6d19f7960be2fb6cb6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 094/870] python3-autobahn: rebuild for Python 3.8.

---
 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 053e45608e5..524ba4b4566 100644
--- a/srcpkgs/python3-autobahn/template
+++ b/srcpkgs/python3-autobahn/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-autobahn'
 pkgname=python3-autobahn
 version=19.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="autobahn-${version}"
 build_style=python3-module

From 9ad07e924752896ad77bccca2019163eb738ebc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 095/870] python-automat: rebuild for Python 3.8.

---
 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 4d0f89a89f5..984f5e9642a 100644
--- a/srcpkgs/python-automat/template
+++ b/srcpkgs/python-automat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-automat'
 pkgname=python-automat
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Automat-${version}"
 build_style=python-module

From a104c6986268b798f373e1fb36de2b20efb9f618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 096/870] python-axolotl: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl/template b/srcpkgs/python-axolotl/template
index cf24db1b6e7..74480b5a9fe 100644
--- a/srcpkgs/python-axolotl/template
+++ b/srcpkgs/python-axolotl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl'
 pkgname=python-axolotl
 version=0.2.3
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="axolotl"

From c0e16521a2125c2ae2c155dd483904a3dce7bd8c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 097/870] python-axolotl-curve25519: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl-curve25519/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl-curve25519/template b/srcpkgs/python-axolotl-curve25519/template
index f7b273b8385..897de4e7cdf 100644
--- a/srcpkgs/python-axolotl-curve25519/template
+++ b/srcpkgs/python-axolotl-curve25519/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl-curve25519'
 pkgname=python-axolotl-curve25519
 version=0.4.1.post2
-revision=2
+revision=3
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 makedepends="python-devel python3-devel"

From 6c250811341de25ed60e2bdfaae58eb8f5a8c159 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 098/870] python-babelfish: rebuild for Python 3.8.

---
 srcpkgs/python-babelfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-babelfish/template b/srcpkgs/python-babelfish/template
index c156255f418..47d5bb176cc 100644
--- a/srcpkgs/python-babelfish/template
+++ b/srcpkgs/python-babelfish/template
@@ -1,7 +1,7 @@
 # Template file for 'python-babelfish'
 pkgname=python-babelfish
 version=0.5.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="babelfish-${version}"
 build_style=python-module

From 3bbb2fa6599ab0470a4209080a69ad4f8476f1ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 099/870] python-backcall: rebuild for Python 3.8.

---
 srcpkgs/python-backcall/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-backcall/template b/srcpkgs/python-backcall/template
index 01dfab9c25d..a55af727ab6 100644
--- a/srcpkgs/python-backcall/template
+++ b/srcpkgs/python-backcall/template
@@ -1,7 +1,7 @@
 # Template file for 'python-backcall'
 pkgname=python-backcall
 version=0.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="backcall-${version}"
 build_style=python-module

From d263efaab1b83cfdc94e9b33011f3cfefc52dcd2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 100/870] bcc: rebuild for Python 3.8.

---
 srcpkgs/bcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template
index a4d32bce7a4..e872cb6a4a8 100644
--- a/srcpkgs/bcc/template
+++ b/srcpkgs/bcc/template
@@ -1,7 +1,7 @@
 # Template file for 'bcc'
 pkgname=bcc
 version=0.11.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DREVISION=${version}"
 hostmakedepends="flex"

From 95aa25d2f02529207de0d9d62aa57353f202d9a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 101/870] python-bcrypt: rebuild for Python 3.8.

---
 srcpkgs/python-bcrypt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bcrypt/template b/srcpkgs/python-bcrypt/template
index 1ccac21ee94..664b5c9df07 100644
--- a/srcpkgs/python-bcrypt/template
+++ b/srcpkgs/python-bcrypt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bcrypt'
 pkgname=python-bcrypt
 version=3.1.7
-revision=1
+revision=2
 wrksrc="bcrypt-${version}"
 build_style=python-module
 pycompile_module="bcrypt"

From 91e29d8f93186f3c597658d4746f864cc6ed9fb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 102/870] python-bibtexparser: rebuild for Python 3.8.

---
 srcpkgs/python-bibtexparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bibtexparser/template b/srcpkgs/python-bibtexparser/template
index 1eff201e6b8..c40115c9fb8 100644
--- a/srcpkgs/python-bibtexparser/template
+++ b/srcpkgs/python-bibtexparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bibtexparser'
 pkgname=python-bibtexparser
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bibtexparser-${version}"
 build_style=python-module

From 6a95de33763230908ad4e9ae408dedcdd2cc431d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 103/870] python-bitarray: rebuild for Python 3.8.

---
 srcpkgs/python-bitarray/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitarray/template b/srcpkgs/python-bitarray/template
index 4f2b4ee392c..f928718a9df 100644
--- a/srcpkgs/python-bitarray/template
+++ b/srcpkgs/python-bitarray/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitarray'
 pkgname=python-bitarray
 version=1.0.1
-revision=1
+revision=2
 wrksrc="bitarray-${version}"
 build_style=python-module
 pycompile_module="bitarray"

From 1f892b7a3495cc0eddd59d14baf8fa6473521ce4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 104/870] python-bitbucket-api: rebuild for Python 3.8.

---
 srcpkgs/python-bitbucket-api/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitbucket-api/template b/srcpkgs/python-bitbucket-api/template
index 27747866baf..448ea60d53d 100644
--- a/srcpkgs/python-bitbucket-api/template
+++ b/srcpkgs/python-bitbucket-api/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitbucket-api'
 pkgname=python-bitbucket-api
 version=0.5.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="bitbucket-api-${version}"
 build_style=python-module

From 9f464ba19a5d403e830d05b84d5b86c6a9bf0209 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 105/870] python-bleach: rebuild for Python 3.8.

---
 srcpkgs/python-bleach/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bleach/template b/srcpkgs/python-bleach/template
index da389c319a5..6e3d4a3bf4c 100644
--- a/srcpkgs/python-bleach/template
+++ b/srcpkgs/python-bleach/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bleach'
 pkgname=python-bleach
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bleach-${version}"
 build_style=python-module

From a79c0811d86d64b345ee5b056c280a062c8e810a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 106/870] python3-blessed: rebuild for Python 3.8.

---
 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 4d494883f9a..8527379351f 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.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessed-${version}"
 build_style=python3-module

From ec38850242ede1700a4b6234199fba116a530b3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 107/870] python-blessings: rebuild for Python 3.8.

---
 srcpkgs/python-blessings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blessings/template b/srcpkgs/python-blessings/template
index f8e396da5c5..baa4938c328 100644
--- a/srcpkgs/python-blessings/template
+++ b/srcpkgs/python-blessings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blessings'
 pkgname=python-blessings
 version=1.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessings-${version}"
 build_style=python-module

From 19252293b6f311e3a280441f83e7ec1589711b77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 108/870] python-blinker: rebuild for Python 3.8.

---
 srcpkgs/python-blinker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blinker/template b/srcpkgs/python-blinker/template
index e34a4a9721a..b6d1d63d19a 100644
--- a/srcpkgs/python-blinker/template
+++ b/srcpkgs/python-blinker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blinker'
 pkgname=python-blinker
 version=1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="blinker-${version}"
 build_style=python-module

From 7cd7b832b55b68ab081454f2b86c254476bd5132 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 109/870] python-bluez: rebuild for Python 3.8.

---
 srcpkgs/python-bluez/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bluez/template b/srcpkgs/python-bluez/template
index 1112352e8ab..4734e47038d 100644
--- a/srcpkgs/python-bluez/template
+++ b/srcpkgs/python-bluez/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bluez'
 pkgname=python-bluez
 version=0.22
-revision=4
+revision=5
 wrksrc="pybluez-${version}"
 build_style=python-module
 pycompile_module="bluetooth"

From 47f9a18cc42f2afe1e8f31696b6928e35b8105c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 110/870] python3-boltons: rebuild for Python 3.8.

---
 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 84a991feef4..1083eb98c51 100644
--- a/srcpkgs/python3-boltons/template
+++ b/srcpkgs/python3-boltons/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-boltons'
 pkgname=python3-boltons
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boltons-${version}"
 build_style=python3-module

From 05f9cb79aa092e2ddeede56d09676742c60cb788 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 111/870] python-boto: rebuild for Python 3.8.

---
 srcpkgs/python-boto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-boto/template b/srcpkgs/python-boto/template
index 40bd3d888b9..684c00feee0 100644
--- a/srcpkgs/python-boto/template
+++ b/srcpkgs/python-boto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-boto'
 pkgname=python-boto
 version=2.49.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boto-${version}"
 build_style=python-module

From ad258b30e35aadb84fd8cd6395bb3d382b429ce9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 112/870] python-botocore: rebuild for Python 3.8.

---
 srcpkgs/python-botocore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-botocore/template b/srcpkgs/python-botocore/template
index ae1a4c17964..0610007f36e 100644
--- a/srcpkgs/python-botocore/template
+++ b/srcpkgs/python-botocore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-botocore'
 pkgname=python-botocore
 version=1.12.243
-revision=1
+revision=2
 archs=noarch
 wrksrc="botocore-${version}"
 build_style=python-module

From 5bc87295c4d5b8af514da116d9b83154488da331 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 113/870] python-bottle: rebuild for Python 3.8.

---
 srcpkgs/python-bottle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bottle/template b/srcpkgs/python-bottle/template
index 8e3a2ad5ad7..0ffc8adfec7 100644
--- a/srcpkgs/python-bottle/template
+++ b/srcpkgs/python-bottle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bottle'
 pkgname=python-bottle
 version=0.12.17
-revision=1
+revision=2
 archs=noarch
 wrksrc="bottle-${version}"
 build_style=python-module

From 86d7964c563357cfa4aec17ced1fefb9e2c974d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 114/870] brltty: rebuild for Python 3.8.

---
 srcpkgs/brltty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/brltty/template b/srcpkgs/brltty/template
index 33f3354a219..a838cd62d55 100644
--- a/srcpkgs/brltty/template
+++ b/srcpkgs/brltty/template
@@ -1,7 +1,7 @@
 # Template file for 'brltty'
 pkgname=brltty
 version=6.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-gpm --with-screen-driver=lx,sc
  --with-tables-directory=/usr/share/brltty PYTHON=/usr/bin/python3"

From 59305e4244220895606aef8a8016d356cee63dff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 115/870] python-bsddb3: rebuild for Python 3.8.

---
 srcpkgs/python-bsddb3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bsddb3/template b/srcpkgs/python-bsddb3/template
index f719a3f9560..1df37cc0e71 100644
--- a/srcpkgs/python-bsddb3/template
+++ b/srcpkgs/python-bsddb3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bsddb3'
 pkgname=python-bsddb3
 version=6.2.6
-revision=2
+revision=3
 wrksrc="bsddb3-${version}"
 build_style=python-module
 make_build_args="--berkeley-db=${XBPS_CROSS_BASE}/usr"

From 8e91ab0e55145cdc83aae10c6f0277d467cb5057 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 116/870] python-cached-property: rebuild for Python 3.8.

---
 srcpkgs/python-cached-property/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cached-property/template b/srcpkgs/python-cached-property/template
index ca2f8536260..16c89346565 100644
--- a/srcpkgs/python-cached-property/template
+++ b/srcpkgs/python-cached-property/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cached-property'
 pkgname=python-cached-property
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cached-property-${version}"
 build_style=python-module

From 3047633291296a9279b5c2a9c0ff04a0cea875f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 117/870] python-cachetools: rebuild for Python 3.8.

---
 srcpkgs/python-cachetools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cachetools/template b/srcpkgs/python-cachetools/template
index ee3ed3a4c94..0f2fdcaed32 100644
--- a/srcpkgs/python-cachetools/template
+++ b/srcpkgs/python-cachetools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cachetools'
 pkgname=python-cachetools
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cachetools-${version}"
 build_style=python-module

From 52e0110b2dc8419583a18babfa62796ef6410ac7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 118/870] python3-cairo: rebuild for Python 3.8.

---
 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 cdde1b83d20..ac158237dd2 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.18.1
-revision=1
+revision=2
 wrksrc="pycairo-${version}"
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From d8f9c3f93f495874237c23477fb548be8b2c0da2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 119/870] python-cairocffi: rebuild for Python 3.8.

---
 srcpkgs/python-cairocffi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cairocffi/template b/srcpkgs/python-cairocffi/template
index baa61334a2a..c057739b03d 100644
--- a/srcpkgs/python-cairocffi/template
+++ b/srcpkgs/python-cairocffi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cairocffi'
 pkgname=python-cairocffi
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cairocffi-${version}"
 build_style=python-module

From bc01f22fb9a5d16bae1b724b675fc57b1f732baa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 120/870] python3-canonicaljson: rebuild for Python 3.8.

---
 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 abc8e95820d..1cbe15f14ae 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.1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="canonicaljson-${version}"
 build_style=python3-module

From e4cba931e3e55f565bc084f8171dea2a8baa9aaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 121/870] python3-casttube: rebuild for Python 3.8.

---
 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 ccd95f3f31c..9e5544b0101 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=1
+revision=2
 archs=noarch
 wrksrc="casttube-${version}"
 build_style=python3-module

From 255661e350728911e6dc85db4bd8a0a0f059b561 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 122/870] python-cffi: rebuild for Python 3.8.

---
 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 27ae03879ac..8501b202bf2 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.12.3
-revision=1
+revision=2
 wrksrc="cffi-${version}"
 build_style=python-module
 pycompile_module="cffi"

From 1b85c0971a1d2d810331d3392d4ecedf140eeb47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 123/870] python3-changelogs: rebuild for Python 3.8.

---
 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 5c2a4889959..d9a7784cf3b 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.14.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="changelogs-${version}"
 build_style=python3-module

From 38e9561402e4ea4c3c4b27c8c747e6b710aec2fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 124/870] python-chardet: rebuild for Python 3.8.

---
 srcpkgs/python-chardet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chardet/template b/srcpkgs/python-chardet/template
index 685d3ab767f..bd502bbbddf 100644
--- a/srcpkgs/python-chardet/template
+++ b/srcpkgs/python-chardet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chardet'
 pkgname=python-chardet
 version=3.0.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="chardet-${version}"
 build_style=python-module

From de1193127ae80857e0f21f1d0499748b6ccafa40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 125/870] python3-cheetah3: rebuild for Python 3.8.

---
 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 40dfee6e322..b2149b2bc22 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.4
-revision=1
+revision=2
 wrksrc="Cheetah3-${version}"
 build_style=python3-module
 pycompile_module="Cheetah"

From 654378c7da0932e5e48085409868c2639efb5294 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 126/870] python3-chess: rebuild for Python 3.8.

---
 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 54b397517cf..e87dab6ca02 100644
--- a/srcpkgs/python3-chess/template
+++ b/srcpkgs/python3-chess/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chess'
 pkgname=python3-chess
 version=0.27.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-chess-${version}"
 build_style=python3-module

From 10db1a1daa9e65a8a20ebc6e20f512884e23f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 127/870] python3-chromecast: rebuild for Python 3.8.

---
 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 16df7502633..cfa41c5dfb5 100644
--- a/srcpkgs/python3-chromecast/template
+++ b/srcpkgs/python3-chromecast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chromecast'
 pkgname=python3-chromecast
 version=4.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychromecast-${version}"
 build_style=python3-module

From 9ff3e7dae7d0ebe28421538f18f150ecd58104e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 128/870] python-chroot: rebuild for Python 3.8.

---
 srcpkgs/python-chroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chroot/template b/srcpkgs/python-chroot/template
index 36853e9f2c0..7faa0f4cce9 100644
--- a/srcpkgs/python-chroot/template
+++ b/srcpkgs/python-chroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chroot'
 pkgname=python-chroot
 version=0.9.18
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychroot-${version}"
 build_style=python-module

From 8d2b57d7f0075beb9134ebd5f7e517ef8a7f20a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 129/870] python3-cli-ui: rebuild for Python 3.8.

---
 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 8303d44eed2..15a9bd32fce 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.9.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-cli-ui-${version}"
 build_style=python3-module

From ecf175e67cdb7bd1e27d29cc47a7e945a6660996 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 130/870] python3-cli_helpers: rebuild for Python 3.8.

---
 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 74b4abf2200..87b284e3cb5 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=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cli_helpers-${version}"
 build_style=python3-module

From aa87c50665110997328e9b80b9b6ba62c47f18bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 131/870] python-click: rebuild for Python 3.8.

---
 srcpkgs/python-click/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click/template b/srcpkgs/python-click/template
index 217e617e73e..4014cb66a83 100644
--- a/srcpkgs/python-click/template
+++ b/srcpkgs/python-click/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click'
 pkgname=python-click
 version=7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Click-${version}"
 build_style="python-module"

From cac08babb361a709a7b7a93c7a825b4682273115 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 132/870] python-click-log: rebuild for Python 3.8.

---
 srcpkgs/python-click-log/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-log/template b/srcpkgs/python-click-log/template
index 37b53f04af0..b57a7a74b4a 100644
--- a/srcpkgs/python-click-log/template
+++ b/srcpkgs/python-click-log/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-log'
 pkgname=python-click-log
 version=0.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-log-${version}"
 build_style="python-module"

From 5a0f06ded0599ac889d808c93865db1723b2ed95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 133/870] python3-click-plugins: rebuild for Python 3.8.

---
 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 cee484018d1..0ef6ce6b248 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=1
+revision=2
 archs=noarch
 wrksrc="click-plugins-${version}"
 build_style=python3-module

From cf104fe4106995307daeb70eb8d34554c238b5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 134/870] python-click-threading: rebuild for Python 3.8.

---
 srcpkgs/python-click-threading/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-threading/template b/srcpkgs/python-click-threading/template
index 76125224992..49b4a4a9aae 100644
--- a/srcpkgs/python-click-threading/template
+++ b/srcpkgs/python-click-threading/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-threading'
 pkgname=python-click-threading
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-threading-${version}"
 build_style="python-module"

From 4bcf653af73bc8e5a6492eee92e5d2826a779d38 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 135/870] python3-cmdln: rebuild for Python 3.8.

---
 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 f00c9a63908..2b7e21f3980 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=1
+revision=2
 archs=noarch
 wrksrc="cmdln-${version}"
 build_style=python3-module

From 52e9257d3be602d0748918c1440a3eae0b6baa51 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 136/870] python-codespell: rebuild for Python 3.8.

---
 srcpkgs/python-codespell/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-codespell/template b/srcpkgs/python-codespell/template
index 92134285a58..211626f33d7 100644
--- a/srcpkgs/python-codespell/template
+++ b/srcpkgs/python-codespell/template
@@ -1,7 +1,7 @@
 # Template file for 'python-codespell'
 pkgname=python-codespell
 version=1.14.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="codespell-${version}"
 build_style=python-module

From 65299f402e3d3a2991e33defee28d85043e0b40f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 137/870] python-colorama: rebuild for Python 3.8.

---
 srcpkgs/python-colorama/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-colorama/template b/srcpkgs/python-colorama/template
index 98ea0d3be78..09562385243 100644
--- a/srcpkgs/python-colorama/template
+++ b/srcpkgs/python-colorama/template
@@ -1,7 +1,7 @@
 # Template file for 'python-colorama'
 pkgname=python-colorama
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="colorama-${version}"
 build_style=python-module

From ec6a8fb7b9e3330e2d7f3fbe139c7a3742013bd8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 138/870] python3-colorclass: rebuild for Python 3.8.

---
 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 4a80f379206..ed8d2d2ea02 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=1
+revision=2
 archs=noarch
 wrksrc="colorclass-${version}"
 build_style=python3-module

From 4b254d3097fa01cb641af24639c6b9a230345954 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 139/870] python-configobj: rebuild for Python 3.8.

---
 srcpkgs/python-configobj/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-configobj/template b/srcpkgs/python-configobj/template
index 95f30d4631a..a8cb5d5d34e 100644
--- a/srcpkgs/python-configobj/template
+++ b/srcpkgs/python-configobj/template
@@ -1,7 +1,7 @@
 # Template file for 'python-configobj'
 pkgname=python-configobj
 version=5.0.6
-revision=5
+revision=6
 archs=noarch
 wrksrc="configobj-${version}"
 build_style=python-module

From 530a6b84ff81274981ed1aa92a2ff85a78dc9775 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 140/870] python-constantly: rebuild for Python 3.8.

---
 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 b5530908ac4..9160aec9edd 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=2
+revision=3
 archs=noarch
 wrksrc="constantly-${version}"
 build_style=python-module

From d2c0a853f5cd6634cca304f7db191fcb1d9a6afa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 141/870] python-construct: rebuild for Python 3.8.

---
 srcpkgs/python-construct/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-construct/template b/srcpkgs/python-construct/template
index 2afe435652c..d6d0b8010e2 100644
--- a/srcpkgs/python-construct/template
+++ b/srcpkgs/python-construct/template
@@ -1,7 +1,7 @@
 # Template file for 'python-construct'
 pkgname=python-construct
 version=2.9.45
-revision=2
+revision=3
 archs=noarch
 wrksrc="construct-${version}"
 build_style=python-module

From 9ba618aa4a4db0062002fcb1ad540bee9b702ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 142/870] python-coverage: rebuild for Python 3.8.

---
 srcpkgs/python-coverage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-coverage/template b/srcpkgs/python-coverage/template
index df6064b9879..1c44b5e18fb 100644
--- a/srcpkgs/python-coverage/template
+++ b/srcpkgs/python-coverage/template
@@ -1,7 +1,7 @@
 # Template file for 'python-coverage'
 pkgname=python-coverage
 version=4.5.4
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="coverage"

From 9adf4621a4960d8a331e1b723971cb326ad2429f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 143/870] python-cram: rebuild for Python 3.8.

---
 srcpkgs/python-cram/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cram/template b/srcpkgs/python-cram/template
index f1fce32149f..8c5d65fe260 100644
--- a/srcpkgs/python-cram/template
+++ b/srcpkgs/python-cram/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cram'
 pkgname=python-cram
 version=0.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="cram-${version}"
 build_style=python-module

From 47ef41a3931be5da08ee8d6fb0ff35b5e1a95d62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 144/870] python3-crcmod: rebuild for Python 3.8.

---
 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 4cd433d2420..9311dedc8ac 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=1
+revision=2
 wrksrc="crcmod-${version}"
 build_style=python3-module
 pycompile_module="crcmod"

From 8b8750f3919e1f23aa6930671f096a365391611a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 145/870] python-cryptography: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography/template b/srcpkgs/python-cryptography/template
index ce3184715dd..39e63d22f7d 100644
--- a/srcpkgs/python-cryptography/template
+++ b/srcpkgs/python-cryptography/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography'
 pkgname=python-cryptography
 version=2.7
-revision=1
+revision=2
 wrksrc="cryptography-${version}"
 build_style=python-module
 pycompile_module="cryptography"

From 676ecf3ea008b8ccabdd3d2798c449a061abb9dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 146/870] python-cryptography_vectors: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography_vectors/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography_vectors/template b/srcpkgs/python-cryptography_vectors/template
index d52e5f5e47c..8fba3a0ce27 100644
--- a/srcpkgs/python-cryptography_vectors/template
+++ b/srcpkgs/python-cryptography_vectors/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography_vectors'
 pkgname=python-cryptography_vectors
 version=2.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="cryptography_vectors-${version}"
 build_style=python-module

From b78a89dedf3b15094ae7febdff460a2cbf547464 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 147/870] python-css-parser: rebuild for Python 3.8.

---
 srcpkgs/python-css-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-css-parser/template b/srcpkgs/python-css-parser/template
index e90b103e4a0..f6d2d0cbf8b 100644
--- a/srcpkgs/python-css-parser/template
+++ b/srcpkgs/python-css-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-css-parser'
 pkgname=python-css-parser
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="css-parser-${version}"
 build_style=python-module

From 036f8b87a68dcb362c7037f58abcffb763571601 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 148/870] python-cssselect: rebuild for Python 3.8.

---
 srcpkgs/python-cssselect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssselect/template b/srcpkgs/python-cssselect/template
index d7dbcebc0ea..c7f43ebca9f 100644
--- a/srcpkgs/python-cssselect/template
+++ b/srcpkgs/python-cssselect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssselect'
 pkgname=python-cssselect
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d4b52974f5f9e8a86060d3dfccc041298c1d666 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 149/870] python-cssutils: rebuild for Python 3.8.

---
 srcpkgs/python-cssutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssutils/template b/srcpkgs/python-cssutils/template
index 648c4754c22..5f08903b9a0 100644
--- a/srcpkgs/python-cssutils/template
+++ b/srcpkgs/python-cssutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssutils'
 pkgname=python-cssutils
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="cssutils-${version}"
 build_style=python-module

From bfb2835290dfefddc0781e2b463d410bf121efa5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 150/870] python-cups: rebuild for Python 3.8.

---
 srcpkgs/python-cups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cups/template b/srcpkgs/python-cups/template
index 2c26e9ef3d0..62c384c9db8 100644
--- a/srcpkgs/python-cups/template
+++ b/srcpkgs/python-cups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cups'
 pkgname=python-cups
 version=1.9.74
-revision=2
+revision=3
 wrksrc="pycups-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 32daac09af71a30483e9985028381670b4ab6245 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 151/870] system-config-printer: rebuild for Python 3.8.

---
 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 e8f8eca46ae..04fe74ff808 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.11
-revision=5
+revision=6
 build_style=gnu-configure
 configure_args="--with-udev-rules"
 make_build_args="udevhelperdir=/usr/lib/udev"

From 582813b2756ce1d1d397113a752b81189680c001 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 152/870] python-curl: rebuild for Python 3.8.

---
 srcpkgs/python-curl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curl/template b/srcpkgs/python-curl/template
index f1f9051d53a..685c63ce68a 100644
--- a/srcpkgs/python-curl/template
+++ b/srcpkgs/python-curl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curl'
 pkgname=python-curl
 version=7.43.0.3
-revision=4
+revision=5
 wrksrc="pycurl-${version}"
 build_style=python-module
 pycompile_module="curl"

From 0eda981910702bfaac2a8af2041fe2c534c13618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 153/870] python-curtsies: rebuild for Python 3.8.

---
 srcpkgs/python-curtsies/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curtsies/template b/srcpkgs/python-curtsies/template
index 158d1c5ce76..6126a11e9b4 100644
--- a/srcpkgs/python-curtsies/template
+++ b/srcpkgs/python-curtsies/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curtsies'
 pkgname=python-curtsies
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="curtsies-${version}"
 build_style=python-module

From 7db16365daaa931d774701441c01b698be457cb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 154/870] python-cycler: rebuild for Python 3.8.

---
 srcpkgs/python-cycler/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cycler/template b/srcpkgs/python-cycler/template
index ee6c985b288..0b53c195dae 100644
--- a/srcpkgs/python-cycler/template
+++ b/srcpkgs/python-cycler/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cycler'
 pkgname=python-cycler
 version=0.10.0
-revision=4
+revision=5
 archs=noarch
 wrksrc="cycler-${version}"
 build_style=python-module

From 2c59e6772ee31b855fe302a27b9b9544cd865e6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 155/870] python-daemonize: rebuild for Python 3.8.

---
 srcpkgs/python-daemonize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-daemonize/template b/srcpkgs/python-daemonize/template
index 699a156b26b..efaf163e573 100644
--- a/srcpkgs/python-daemonize/template
+++ b/srcpkgs/python-daemonize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-daemonize'
 pkgname=python-daemonize
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="daemonize-${version}"
 build_style=python-module

From 84cc63fece0763c8b6920e56e78508551e0fc727 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 156/870] python-dateutil: rebuild for Python 3.8.

---
 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 d9c0f73c883..7675b8f9447 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.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="dateutil"

From 9a19173186ae564f17114f530ac8077484d43c82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 157/870] python-dbus: rebuild for Python 3.8.

---
 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 869c10b2969..3845f6ce34a 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.12
-revision=1
+revision=2
 wrksrc="dbus-python-${version}"
 build_style=gnu-configure
 pycompile_module="dbus"

From 06a9a5b6965485369e669181d99123d7beabf81f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 158/870] python3-dbusmock: rebuild for Python 3.8.

---
 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 67e0ed68078..4abd47843cc 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.18.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-dbusmock-${version}"
 build_style=python3-module

From 694c57d69d63d9f59bef9d31d20a0b16dc73a2a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 159/870] python-decorator: rebuild for Python 3.8.

---
 srcpkgs/python-decorator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-decorator/template b/srcpkgs/python-decorator/template
index 14090c537c9..7f14fef90a6 100644
--- a/srcpkgs/python-decorator/template
+++ b/srcpkgs/python-decorator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-decorator'
 pkgname=python-decorator
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="decorator-${version}"
 build_style=python-module

From 3bd4b100eb970e16e93bbbed8ce2ac91a36e3df5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 160/870] python-defusedxml: rebuild for Python 3.8.

---
 srcpkgs/python-defusedxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-defusedxml/template b/srcpkgs/python-defusedxml/template
index afd62e94414..96234eb18c7 100644
--- a/srcpkgs/python-defusedxml/template
+++ b/srcpkgs/python-defusedxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-defusedxml'
 pkgname=python-defusedxml
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="defusedxml-${version}"
 build_style=python-module

From 442acbe58cd337c55658908f41ec5b6221ca8fcb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 161/870] python3-discid: rebuild for Python 3.8.

---
 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 be5eae1f07f..cc4bc27a1aa 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=1
+revision=2
 archs=noarch
 wrksrc="discid-${version}"
 build_style=python3-module

From 31db2101853fbced7b2655f48906b9054bce07ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 162/870] python-discogs_client: rebuild for Python 3.8.

---
 srcpkgs/python-discogs_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-discogs_client/template b/srcpkgs/python-discogs_client/template
index a27cc50f93c..5af18eda664 100644
--- a/srcpkgs/python-discogs_client/template
+++ b/srcpkgs/python-discogs_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-discogs_client'
 pkgname=python-discogs_client
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="discogs-client-${version}"
 build_style=python-module

From 0aba2b232148b832c27ebd8703c24f42c5018f15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 163/870] python3-distro: rebuild for Python 3.8.

---
 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 86e94572ed7..f1205ace151 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.4.0
-revision=1
+revision=2
 wrksrc=distro-${version}
 build_style=python3-module
 pycompile_module="distro"

From 990a3bd7cef20bd21b781caccd807a7cadf6a0fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 164/870] python-distutils-extra: rebuild for Python 3.8.

---
 srcpkgs/python-distutils-extra/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-distutils-extra/template b/srcpkgs/python-distutils-extra/template
index 9e5728ba08f..46bb0cccc31 100644
--- a/srcpkgs/python-distutils-extra/template
+++ b/srcpkgs/python-distutils-extra/template
@@ -1,7 +1,7 @@
 # Template file for 'python-distutils-extra'
 pkgname=python-distutils-extra
 version=2.39
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 pycompile_module="DistUtilsExtra"

From cc8c6f7c74e5660152cb87b99e7d7b88b5c3d077 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 165/870] python-dkimpy: rebuild for Python 3.8.

---
 srcpkgs/python-dkimpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dkimpy/template b/srcpkgs/python-dkimpy/template
index 4ca5ad386b0..1da26c5de5d 100644
--- a/srcpkgs/python-dkimpy/template
+++ b/srcpkgs/python-dkimpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dkimpy'
 pkgname=python-dkimpy
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="dkimpy-${version}"
 build_style=python-module

From 8560c730ee4396275d04f5b5649fc0b2a1a8819e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 166/870] python-dnspython: rebuild for Python 3.8.

---
 srcpkgs/python-dnspython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dnspython/template b/srcpkgs/python-dnspython/template
index 15d4d7a8a73..66d237e89ee 100644
--- a/srcpkgs/python-dnspython/template
+++ b/srcpkgs/python-dnspython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dnspython'
 pkgname=python-dnspython
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dnspython-${version}"
 build_style=python-module

From c723160d02d838faad8761fcdaa9cfaed2df756f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 167/870] python-docker: rebuild for Python 3.8.

---
 srcpkgs/python-docker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker/template b/srcpkgs/python-docker/template
index b3f8cb2076b..83265bbb606 100644
--- a/srcpkgs/python-docker/template
+++ b/srcpkgs/python-docker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker'
 pkgname=python-docker
 version=3.7.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-${version}"
 build_style=python-module

From 116d9592b10bcde7a5b2f78ed23e0c2e382394da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 168/870] python-docker-pycreds: rebuild for Python 3.8.

---
 srcpkgs/python-docker-pycreds/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker-pycreds/template b/srcpkgs/python-docker-pycreds/template
index c478ded9de6..2224be0d21d 100644
--- a/srcpkgs/python-docker-pycreds/template
+++ b/srcpkgs/python-docker-pycreds/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker-pycreds'
 pkgname=python-docker-pycreds
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-pycreds-${version}"
 build_style=python-module

From 339d2fc160bc67c015b61704b1ade0e15a729050 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 169/870] python-dockerpty: rebuild for Python 3.8.

---
 srcpkgs/python-dockerpty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dockerpty/template b/srcpkgs/python-dockerpty/template
index 78ba5bc3b09..4a0b3a7a33f 100644
--- a/srcpkgs/python-dockerpty/template
+++ b/srcpkgs/python-dockerpty/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dockerpty'
 pkgname=python-dockerpty
 version=0.4.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="dockerpty-${version}"
 build_style=python-module

From 9925e97e6e19313f6899b14640957a47c12c3c6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 170/870] python-docopt: rebuild for Python 3.8.

---
 srcpkgs/python-docopt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docopt/template b/srcpkgs/python-docopt/template
index 4b8661ed2e1..48e5f86c1e0 100644
--- a/srcpkgs/python-docopt/template
+++ b/srcpkgs/python-docopt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docopt'
 pkgname=python-docopt
 version=0.6.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="docopt-${version}"
 build_style=python-module

From b274270fc5a58198a59400d9c8eb825546cf64ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 171/870] python-docutils: rebuild for Python 3.8.

---
 srcpkgs/python-docutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docutils/template b/srcpkgs/python-docutils/template
index 62f080f416a..8fd21a7450b 100644
--- a/srcpkgs/python-docutils/template
+++ b/srcpkgs/python-docutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docutils'
 pkgname=python-docutils
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docutils-${version}"
 build_style=python-module

From 6db8d0a9fb5d7b1cd339f5102d86a29dda19f348 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 172/870] python-dogpile.cache: rebuild for Python 3.8.

---
 srcpkgs/python-dogpile.cache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index f6e106fb4e8..894c6f695bf 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dogpile.cache'
 pkgname=python-dogpile.cache
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dogpile.cache-${version}"
 build_style=python-module

From e603b2f5de239ac8c6e7b8322f560ed5249fe887 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 173/870] python-dominate: rebuild for Python 3.8.

---
 srcpkgs/python-dominate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dominate/template b/srcpkgs/python-dominate/template
index 14ec659bac8..6d6f2caa323 100644
--- a/srcpkgs/python-dominate/template
+++ b/srcpkgs/python-dominate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dominate'
 pkgname=python-dominate
 version=2.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dominate-${version}"
 build_style=python-module

From 2bd7c3e739559614758b25140591fa8bb623a73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 174/870] python-dulwich: rebuild for Python 3.8.

---
 srcpkgs/python-dulwich/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dulwich/template b/srcpkgs/python-dulwich/template
index 0bddda65069..7b8ac45011e 100644
--- a/srcpkgs/python-dulwich/template
+++ b/srcpkgs/python-dulwich/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dulwich'
 pkgname=python-dulwich
 version=0.19.13
-revision=1
+revision=2
 wrksrc="dulwich-${version}"
 build_style=python-module
 pycompile_module="dulwich"

From 9d0b79dad0746da7669be20a38791a7eff4a42dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 175/870] python3-easygui: rebuild for Python 3.8.

---
 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 c1ec4767ae9..a9a2f66d865 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="easygui-${version}"
 build_style=python3-module

From eaa3ee113511523004b2d78a2119becc627b2dcf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 176/870] python-ecdsa: rebuild for Python 3.8.

---
 srcpkgs/python-ecdsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ecdsa/template b/srcpkgs/python-ecdsa/template
index 5e0b217fa73..e6e7d58cd10 100644
--- a/srcpkgs/python-ecdsa/template
+++ b/srcpkgs/python-ecdsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ecdsa'
 pkgname=python-ecdsa
 version=0.13.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 5d7cb5b032b5814415f5b21646b09bceda211fd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 177/870] python-editor: rebuild for Python 3.8.

---
 srcpkgs/python-editor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-editor/template b/srcpkgs/python-editor/template
index 4b86afa6924..3594e407205 100644
--- a/srcpkgs/python-editor/template
+++ b/srcpkgs/python-editor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-editor'
 pkgname=python-editor
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="editor"

From 19c3e09b30ed3cf9c6ffee8cee652d54c672a599 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 178/870] python-efl: rebuild for Python 3.8.

---
 srcpkgs/python-efl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-efl/template b/srcpkgs/python-efl/template
index a49e7d35847..2096f6916da 100644
--- a/srcpkgs/python-efl/template
+++ b/srcpkgs/python-efl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-efl'
 pkgname=python-efl
 version=1.22.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="efl"
 hostmakedepends="pkg-config python-devel python3-devel"

From 82198e93fcca38bb8b5f4f754bcbd6fd7baf59da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 179/870] python3-eliot: rebuild for Python 3.8.

---
 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 15b05dd7331..8453789b688 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="eliot-${version}"
 build_style=python3-module

From bcfe6b0d9db4104d00cb6a16d6012f2258515d59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 180/870] python-empy: rebuild for Python 3.8.

---
 srcpkgs/python-empy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-empy/template b/srcpkgs/python-empy/template
index 97476250cf2..4668a9cc814 100644
--- a/srcpkgs/python-empy/template
+++ b/srcpkgs/python-empy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-empy'
 pkgname=python-empy
 version=3.3.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="empy-${version}"
 build_style=python-module

From 6a91fa7210bd83ced5963d69be69166cd7ad72e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 181/870] python-enchant: rebuild for Python 3.8.

---
 srcpkgs/python-enchant/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enchant/template b/srcpkgs/python-enchant/template
index a443877d821..e499957b47e 100644
--- a/srcpkgs/python-enchant/template
+++ b/srcpkgs/python-enchant/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enchant'
 pkgname=python-enchant
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python-module

From 6ec52886dc67e49d1440bf8d0d1fe8fab07df30a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 182/870] python-entrypoints: rebuild for Python 3.8.

---
 srcpkgs/python-entrypoints/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-entrypoints/template b/srcpkgs/python-entrypoints/template
index ebefb2d04dc..6070650f35d 100644
--- a/srcpkgs/python-entrypoints/template
+++ b/srcpkgs/python-entrypoints/template
@@ -1,7 +1,7 @@
 # Template file for 'python-entrypoints'
 pkgname=python-entrypoints
 version=0.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="entrypoints-${version}"
 build_style=python-module

From 612a78254c1f46db87994e41646495e245a3facf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 183/870] python-envdir: rebuild for Python 3.8.

---
 srcpkgs/python-envdir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-envdir/template b/srcpkgs/python-envdir/template
index 622fcee6b34..b8cccad60ac 100644
--- a/srcpkgs/python-envdir/template
+++ b/srcpkgs/python-envdir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-envdir'
 pkgname=python-envdir
 version=1.0.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 50f8488d9ea7d659590f7d09f42dd5b94e19152c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 184/870] python-enzyme: rebuild for Python 3.8.

---
 srcpkgs/python-enzyme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enzyme/template b/srcpkgs/python-enzyme/template
index 637c858195b..f28f40b0319 100644
--- a/srcpkgs/python-enzyme/template
+++ b/srcpkgs/python-enzyme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enzyme'
 pkgname=python-enzyme
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="enzyme-${version}"
 build_style=python-module

From 0927e611429f29f17290f1e10cf2c0b872d1feb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 185/870] python3-esprima: rebuild for Python 3.8.

---
 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 c3a564123de..aec8930a6bf 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=1
+revision=2
 wrksrc="esprima-${version}"
 build_style=python3-module
 pycompile_module="esprima"

From d10708d4fcebbbc7dccf424ca1a596b43ae8df59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 186/870] python-evdev: rebuild for Python 3.8.

---
 srcpkgs/python-evdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-evdev/template b/srcpkgs/python-evdev/template
index 3c1a5253513..cff10211628 100644
--- a/srcpkgs/python-evdev/template
+++ b/srcpkgs/python-evdev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-evdev'
 pkgname=python-evdev
 version=1.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="evdev"
 hostmakedepends="python-setuptools python3-setuptools"

From d4f74f5bad705da704a6773a834e3939d7700c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 187/870] python-ewmh: rebuild for Python 3.8.

---
 srcpkgs/python-ewmh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ewmh/template b/srcpkgs/python-ewmh/template
index be6d04316b0..a96490fb56d 100644
--- a/srcpkgs/python-ewmh/template
+++ b/srcpkgs/python-ewmh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ewmh'
 pkgname=python-ewmh
 version=0.1.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From afbcc47e23517b6d56ec485dc40f389c1af31701 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 188/870] python-exifread: rebuild for Python 3.8.

---
 srcpkgs/python-exifread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-exifread/template b/srcpkgs/python-exifread/template
index 853f885fff8..834aa7730ee 100644
--- a/srcpkgs/python-exifread/template
+++ b/srcpkgs/python-exifread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-exifread'
 pkgname=python-exifread
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="exif-py-${version}"
 build_style="python-module"

From d05fad06fa4306ef7f685f49a366fcc27e64a40c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 189/870] python-fasteners: rebuild for Python 3.8.

---
 srcpkgs/python-fasteners/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fasteners/template b/srcpkgs/python-fasteners/template
index 34ca4e0e9db..24d2ec0611f 100644
--- a/srcpkgs/python-fasteners/template
+++ b/srcpkgs/python-fasteners/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fasteners'
 pkgname=python-fasteners
 version=0.15
-revision=1
+revision=2
 archs=noarch
 wrksrc="fasteners-${version}"
 build_style=python-module

From 8c663b7a9f12675a94dea8c33eddeededd3c56bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 190/870] python-feedgenerator: rebuild for Python 3.8.

---
 srcpkgs/python-feedgenerator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedgenerator/template b/srcpkgs/python-feedgenerator/template
index 3e5abc4f433..bcffb6728aa 100644
--- a/srcpkgs/python-feedgenerator/template
+++ b/srcpkgs/python-feedgenerator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedgenerator'
 pkgname=python-feedgenerator
 version=1.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="feedgenerator-${version}"
 build_style=python-module

From ab9e5bccaa31f32d93549c21e47bc12c4e5ac181 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 191/870] python-feedparser: rebuild for Python 3.8.

---
 srcpkgs/python-feedparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedparser/template b/srcpkgs/python-feedparser/template
index c5c5e8783eb..94f0a58ec88 100644
--- a/srcpkgs/python-feedparser/template
+++ b/srcpkgs/python-feedparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedparser'
 pkgname=python-feedparser
 version=5.2.1
-revision=5
+revision=6
 archs=noarch
 wrksrc="feedparser-${version}"
 build_style=python-module

From 157719696415e499518e188417324c7d97359d36 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 192/870] python3-fido2: rebuild for Python 3.8.

---
 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 fafb4d61d56..fb737d68d20 100644
--- a/srcpkgs/python3-fido2/template
+++ b/srcpkgs/python3-fido2/template
@@ -2,7 +2,7 @@
 pkgname=python3-fido2
 _pkgname=fido2
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From cbab3fd166f79dc7d2659a802e1953c697f94a95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 193/870] python3-filelock: rebuild for Python 3.8.

---
 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 8e0bc8f1070..9105ff8689d 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.0.12
-revision=1
+revision=2
 wrksrc="filelock-${version}"
 build_style=python3-module
 pycompile_module="filelock.py"

From df9deb02719807bdcb49f7c41040cd8748efd6fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 194/870] python-filetype: rebuild for Python 3.8.

---
 srcpkgs/python-filetype/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-filetype/template b/srcpkgs/python-filetype/template
index 37896cff9d8..10b974794b5 100644
--- a/srcpkgs/python-filetype/template
+++ b/srcpkgs/python-filetype/template
@@ -1,7 +1,7 @@
 # Template file for 'python-filetype'
 pkgname=python-filetype
 version=1.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="filetype-${version}"
 build_style=python-module

From b71ed5528581f9bba57653ff2acb45edf6dcbd81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 195/870] python3-fishnet: rebuild for Python 3.8.

---
 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 9dde60cbb6c..6280ae8e966 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=1
+revision=2
 archs=noarch
 wrksrc="fishnet-${version}"
 build_style=python3-module

From 25bc415f7d96b99e98c97ab0abad6a531786f9e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 196/870] python-flaky: rebuild for Python 3.8.

---
 srcpkgs/python-flaky/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-flaky/template b/srcpkgs/python-flaky/template
index d5211c9cb60..e8e681421f7 100644
--- a/srcpkgs/python-flaky/template
+++ b/srcpkgs/python-flaky/template
@@ -1,7 +1,7 @@
 # Template file for 'python-flaky'
 pkgname=python-flaky
 version=3.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 6dfa18d602ed8d6414a040466c4e0eef4db1d0d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 197/870] python3-flexmock: rebuild for Python 3.8.

---
 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 0663ed5122d..8a7c9a2894d 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.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="flexmock-${version}"
 build_style=python3-module

From 8c90b86b18b06e68260df59166a7228f7af5e5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 198/870] python3-fonttools: rebuild for Python 3.8.

---
 srcpkgs/python3-fonttools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-fonttools/template b/srcpkgs/python3-fonttools/template
index 15cf36585fb..ccd4b66c5d8 100644
--- a/srcpkgs/python3-fonttools/template
+++ b/srcpkgs/python3-fonttools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-fonttools'
 pkgname=python3-fonttools
 version=4.0.2
-revision=1
+revision=2
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 pycompile_module="fonttools"

From 423903ec28541ea1cd89f97400529121dca5e065 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 199/870] python3-frozendict: rebuild for Python 3.8.

---
 srcpkgs/python3-frozendict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-frozendict/template b/srcpkgs/python3-frozendict/template
index d3b4dc91602..739000a887c 100644
--- a/srcpkgs/python3-frozendict/template
+++ b/srcpkgs/python3-frozendict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-frozendict'
 pkgname=python3-frozendict
 version=1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="frozendict-${version}"
 build_style=python3-module

From 0929953d079922e685a9b46372630d69c2c6776d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 200/870] python-fuse: rebuild for Python 3.8.

---
 srcpkgs/python-fuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fuse/template b/srcpkgs/python-fuse/template
index 6449cc36a02..2e99e9866d3 100644
--- a/srcpkgs/python-fuse/template
+++ b/srcpkgs/python-fuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fuse'
 pkgname=python-fuse
 version=0.3.1
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="fuseparts fuse.py"
 hostmakedepends="pkg-config python-setuptools python3-setuptools"

From 505bca67544c8cca26d3f7675eb746bb98abf44e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 201/870] python-future: rebuild for Python 3.8.

---
 srcpkgs/python-future/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-future/template b/srcpkgs/python-future/template
index 1844be2efbc..6cd53908823 100644
--- a/srcpkgs/python-future/template
+++ b/srcpkgs/python-future/template
@@ -1,7 +1,7 @@
 # Template file for 'python-future'
 pkgname=python-future
 version=0.17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="future-${version}"
 build_style=python-module

From 4b595c01c8dcf28a72cf0a96960609ab9788b6ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 202/870] python3-geojson: rebuild for Python 3.8.

---
 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 6bcd0c3092e..90e7d5a0e60 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=1
+revision=2
 archs=noarch
 wrksrc="geojson-${version}"
 build_style=python3-module

From 5e44d64f54a2983f4d5fefba49ef65a6803bd024 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 203/870] python-gevent: rebuild for Python 3.8.

---
 srcpkgs/python-gevent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gevent/template b/srcpkgs/python-gevent/template
index 2bbabee00fc..35c76146d56 100644
--- a/srcpkgs/python-gevent/template
+++ b/srcpkgs/python-gevent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gevent'
 pkgname=python-gevent
 version=1.4.0
-revision=1
+revision=2
 wrksrc="gevent-${version}"
 build_style=python-module
 pycompile_module="gevent"

From 5fed10c6460512a1f1391f079ed47645f9df532e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 204/870] python3-gitchangelog: rebuild for Python 3.8.

---
 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 ed381e07d78..cc1945f2623 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=1
+revision=2
 archs=noarch
 wrksrc="gitchangelog-${version}"
 build_style=python3-module

From b52557ed164619919a05cdf8fae5e77e5b4f53db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 205/870] python-gitdb: rebuild for Python 3.8.

---
 srcpkgs/python-gitdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitdb/template b/srcpkgs/python-gitdb/template
index d9e624b9f53..253ddaa07bd 100644
--- a/srcpkgs/python-gitdb/template
+++ b/srcpkgs/python-gitdb/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitdb'
 pkgname=python-gitdb
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="gitdb2-${version}"
 build_style=python-module

From 53365dcec4eb25138ea4bb248d57c1b2aa7aa311 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 206/870] python-github3: rebuild for Python 3.8.

---
 srcpkgs/python-github3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-github3/template b/srcpkgs/python-github3/template
index 2cb71368f3d..425fe1b7362 100644
--- a/srcpkgs/python-github3/template
+++ b/srcpkgs/python-github3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-github3'
 pkgname=python-github3
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="github3.py-${version}"
 build_style=python-module

From 2b4c90de9a0cbcbb5902a9407f229864bd81a7f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 207/870] python-gitlab: rebuild for Python 3.8.

---
 srcpkgs/python-gitlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitlab/template b/srcpkgs/python-gitlab/template
index 7db583b54c4..0f71b4c7153 100644
--- a/srcpkgs/python-gitlab/template
+++ b/srcpkgs/python-gitlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitlab'
 pkgname=python-gitlab
 version=1.12.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gitlab"

From 51613301779bb891e87daba6b634dca18654d29f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 208/870] python-gmpy2: rebuild for Python 3.8.

---
 srcpkgs/python-gmpy2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gmpy2/template b/srcpkgs/python-gmpy2/template
index c41a9f4595b..74e9b583288 100644
--- a/srcpkgs/python-gmpy2/template
+++ b/srcpkgs/python-gmpy2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gmpy2'
 pkgname=python-gmpy2
 version=2.0.8
-revision=5
+revision=6
 wrksrc="gmpy2-${version}"
 build_style=python-module
 hostmakedepends="unzip python-setuptools python3-setuptools

From a6f4b9ed74b787b741e6297520186bd60de2b46e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 209/870] python-gntp: rebuild for Python 3.8.

---
 srcpkgs/python-gntp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gntp/template b/srcpkgs/python-gntp/template
index 14bd36518f8..7b3bb5a7bb7 100644
--- a/srcpkgs/python-gntp/template
+++ b/srcpkgs/python-gntp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gntp'
 pkgname=python-gntp
 version=1.0.3
-revision=4
+revision=5
 archs=noarch
 wrksrc="gntp-${version}"
 build_style=python-module

From 0730dc20e341ef5247184f85a47f2d1200750698 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 210/870] python-gnupg: rebuild for Python 3.8.

---
 srcpkgs/python-gnupg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gnupg/template b/srcpkgs/python-gnupg/template
index ae6f49c7e27..24c0943d1e4 100644
--- a/srcpkgs/python-gnupg/template
+++ b/srcpkgs/python-gnupg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gnupg'
 pkgname=python-gnupg
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gnupg.py"

From 2c78f38b921da1d4ac2ddf5c200a378cadd75590 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 211/870] python3-gobject: rebuild for Python 3.8.

---
 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 242d33ed3ac..8713ddf5334 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.32.2
-revision=1
+revision=2
 wrksrc="pygobject-${version}"
 build_style=meson
 build_helper="gir"

From 15ed888e45d37128f9852cfc492a14182186f1a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 212/870] python-gogs-client: rebuild for Python 3.8.

---
 srcpkgs/python-gogs-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gogs-client/template b/srcpkgs/python-gogs-client/template
index e8189bc8805..027135d430c 100644
--- a/srcpkgs/python-gogs-client/template
+++ b/srcpkgs/python-gogs-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gogs-client'
 pkgname=python-gogs-client
 version=1.0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="gogs_client-${version}"
 build_style=python-module

From 1ce661eb8f15d8e6d56a3f1e197897c332fa224e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 213/870] python-google-api-python-client: rebuild for Python
 3.8.

---
 srcpkgs/python-google-api-python-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-api-python-client/template b/srcpkgs/python-google-api-python-client/template
index 273cd0722b8..69c2d4e96eb 100644
--- a/srcpkgs/python-google-api-python-client/template
+++ b/srcpkgs/python-google-api-python-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-api-python-client'
 pkgname=python-google-api-python-client
 version=1.7.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From abc55893b0e34778f73646713ec111220a9cafbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 214/870] python-google-auth: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth/template b/srcpkgs/python-google-auth/template
index 708fe08325a..1de6800e3d2 100644
--- a/srcpkgs/python-google-auth/template
+++ b/srcpkgs/python-google-auth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth'
 pkgname=python-google-auth
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 345385c7c36d4b9e58aad80d36b1cd93575ecd95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 215/870] python-google-auth-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth-httplib2/template b/srcpkgs/python-google-auth-httplib2/template
index 9a7fd093ce5..9e43bc92292 100644
--- a/srcpkgs/python-google-auth-httplib2/template
+++ b/srcpkgs/python-google-auth-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth-httplib2'
 pkgname=python-google-auth-httplib2
 version=0.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 659bb740f4ecc98b01dc400608f6b524416a0b86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 216/870] python-gpg: rebuild for Python 3.8.

---
 srcpkgs/python-gpg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gpg/template b/srcpkgs/python-gpg/template
index 4ef85846b42..a17a0324af8 100644
--- a/srcpkgs/python-gpg/template
+++ b/srcpkgs/python-gpg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gpg'
 pkgname=python-gpg
 version=1.10.0
-revision=3
+revision=4
 wrksrc="gpg-${version}"
 build_style=python-module
 hostmakedepends="swig gpgme-devel python-devel python3-devel"

From 873dc5b9b60d819c83e9d76fd366d7e22b1e3bc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 217/870] python-grako: rebuild for Python 3.8.

---
 srcpkgs/python-grako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-grako/template b/srcpkgs/python-grako/template
index cc02973b31e..2b401732735 100644
--- a/srcpkgs/python-grako/template
+++ b/srcpkgs/python-grako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-grako'
 pkgname=python-grako
 version=3.99.9
-revision=3
+revision=4
 wrksrc="neogeny-${pkgname/python-/}-275d3c4fe4ac"
 build_style=python-module
 pycompile_module="grako"

From d47059d2656db0b58c65856428cabac0432d40b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 218/870] python-graphviz: rebuild for Python 3.8.

---
 srcpkgs/python-graphviz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-graphviz/template b/srcpkgs/python-graphviz/template
index 521f2e81213..e3d487a2db7 100644
--- a/srcpkgs/python-graphviz/template
+++ b/srcpkgs/python-graphviz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-graphviz'
 pkgname=python-graphviz
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 604137947acf2b7cd302f3f32e778c96a0f521f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 219/870] python-greenlet: rebuild for Python 3.8.

---
 srcpkgs/python-greenlet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-greenlet/template b/srcpkgs/python-greenlet/template
index d1e63ac7adb..b540e9a286b 100644
--- a/srcpkgs/python-greenlet/template
+++ b/srcpkgs/python-greenlet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-greenlet'
 pkgname=python-greenlet
 version=0.4.15
-revision=2
+revision=3
 wrksrc="greenlet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From c75b3ed338515fef098deb3e5b0d7a6afb7e4027 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 220/870] python-guessit: rebuild for Python 3.8.

---
 srcpkgs/python-guessit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-guessit/template b/srcpkgs/python-guessit/template
index 5029048a041..a962f14522f 100644
--- a/srcpkgs/python-guessit/template
+++ b/srcpkgs/python-guessit/template
@@ -1,7 +1,7 @@
 # Template file for 'python-guessit'
 pkgname=python-guessit
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="guessit-${version}"
 build_style=python-module

From be7acc08bc4f5ffb222fcebc23a391553273ece1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 221/870] python-h11: rebuild for Python 3.8.

---
 srcpkgs/python-h11/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-h11/template b/srcpkgs/python-h11/template
index 88040dfadec..b2e007533a7 100644
--- a/srcpkgs/python-h11/template
+++ b/srcpkgs/python-h11/template
@@ -1,7 +1,7 @@
 # Template file for 'python-h11'
 pkgname=python-h11
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=h11-${version}
 build_style=python-module

From bdf55bd416f8bc2ed44be6c4c54d162c18a8ea97 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 222/870] python-habanero: rebuild for Python 3.8.

---
 srcpkgs/python-habanero/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-habanero/template b/srcpkgs/python-habanero/template
index 86d66befc3d..a914f21ecb7 100644
--- a/srcpkgs/python-habanero/template
+++ b/srcpkgs/python-habanero/template
@@ -1,7 +1,7 @@
 # Template file for 'python-habanero'
 pkgname=python-habanero
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="habanero-${version}"
 build_style=python-module

From 9c07301e6c8b8cbc8282f2c49eee7ea5572650fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 223/870] python3-hawkauthlib: rebuild for Python 3.8.

---
 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 fd7f1405790..1456fa7d814 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=2
+revision=3
 archs=noarch
 wrksrc="hawkauthlib-${version}"
 build_style=python3-module

From 66941ef99dc3f45dea432a38889d9aedcbc58e8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 224/870] python-hiredis: rebuild for Python 3.8.

---
 srcpkgs/python-hiredis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hiredis/template b/srcpkgs/python-hiredis/template
index 23694ae92d7..82a97d5eaf3 100644
--- a/srcpkgs/python-hiredis/template
+++ b/srcpkgs/python-hiredis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hiredis'
 pkgname=python-hiredis
 version=0.2.0
-revision=4
+revision=5
 wrksrc="hiredis-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 335237d6c8ffbf9d850fddc0047cb4ea28057efd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 225/870] python3-hkdf: rebuild for Python 3.8.

---
 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 fabc91ee974..0faaf05b5fe 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=1
+revision=2
 archs=noarch
 wrksrc="hkdf-${version}"
 build_style=python3-module

From fa28e1e2a5b4f298ee9762f0f595a5b1b16db0c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 226/870] python-hoedown: rebuild for Python 3.8.

---
 srcpkgs/python-hoedown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hoedown/template b/srcpkgs/python-hoedown/template
index a964fbbb709..4b82aba9afc 100644
--- a/srcpkgs/python-hoedown/template
+++ b/srcpkgs/python-hoedown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hoedown'
 pkgname=python-hoedown
 version=0.3.0
-revision=2
+revision=3
 wrksrc="hoedown-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 1b9ab7e23ce8f84563cdaac18cbe35d6b5b377eb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 227/870] python-hpack: rebuild for Python 3.8.

---
 srcpkgs/python-hpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hpack/template b/srcpkgs/python-hpack/template
index c69e91daa0e..ffbac313103 100644
--- a/srcpkgs/python-hpack/template
+++ b/srcpkgs/python-hpack/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hpack'
 pkgname=python-hpack
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hpack-${version}
 build_style=python-module

From b6095882129bc28d1a3eec0f996353011126ed10 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 228/870] python3-html2text: rebuild for Python 3.8.

---
 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 006f2a127ad..c74e236a053 100644
--- a/srcpkgs/python3-html2text/template
+++ b/srcpkgs/python3-html2text/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-html2text'
 pkgname=python3-html2text
 version=2019.9.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module

From 78741dc5f018f23c93acabc2cdd16c97d5e08012 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 229/870] python-html5-parser: rebuild for Python 3.8.

---
 srcpkgs/python-html5-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5-parser/template b/srcpkgs/python-html5-parser/template
index 130c5037e57..41bbd0ea157 100644
--- a/srcpkgs/python-html5-parser/template
+++ b/srcpkgs/python-html5-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5-parser'
 pkgname=python-html5-parser
 version=0.4.8
-revision=1
+revision=2
 wrksrc="html5-parser-${version}"
 build_style=python-module
 pycompile_module="html5_parser"

From f69efbb44a9aa15f6b7468ff70a20786ec1a04d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 230/870] python-html5lib: rebuild for Python 3.8.

---
 srcpkgs/python-html5lib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5lib/template b/srcpkgs/python-html5lib/template
index 81e683f7bcf..2565de64fd2 100644
--- a/srcpkgs/python-html5lib/template
+++ b/srcpkgs/python-html5lib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5lib'
 pkgname=python-html5lib
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="html5lib-${version}"
 build_style=python-module

From 6bd979521876c876eea2022ebe023cdbb30777c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 231/870] python-httmock: rebuild for Python 3.8.

---
 srcpkgs/python-httmock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httmock/template b/srcpkgs/python-httmock/template
index 61a60126936..e798b4fc1b3 100644
--- a/srcpkgs/python-httmock/template
+++ b/srcpkgs/python-httmock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httmock'
 pkgname=python-httmock
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="httmock-${version}"
 build_style=python-module

From 7f5b2e5c5738ca5824c255406195ff59f30f2c80 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 232/870] python-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httplib2/template b/srcpkgs/python-httplib2/template
index edcb6abf0c1..fe76a729328 100644
--- a/srcpkgs/python-httplib2/template
+++ b/srcpkgs/python-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httplib2'
 pkgname=python-httplib2
 version=0.13.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="httplib2-${version}"
 build_style=python-module

From 9bd4d3d3c99054f61ceb650933dcd9c5740d5ff0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 233/870] python3-humanize: rebuild for Python 3.8.

---
 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 c82c20fb0f2..d1011fb92e9 100644
--- a/srcpkgs/python3-humanize/template
+++ b/srcpkgs/python3-humanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-humanize'
 pkgname=python3-humanize
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="humanize-${version}"
 build_style=python3-module

From ead6f9504cd4015bc13944d58d676ef457b0fb34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 234/870] python-hyper-h2: rebuild for Python 3.8.

---
 srcpkgs/python-hyper-h2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyper-h2/template b/srcpkgs/python-hyper-h2/template
index 5dcf7ed1c4d..9e5eee3b69b 100644
--- a/srcpkgs/python-hyper-h2/template
+++ b/srcpkgs/python-hyper-h2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyper-h2'
 pkgname=python-hyper-h2
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyper-h2-${version}"
 build_style=python-module

From 8ac54f95c067c3f715c23a58d7f2b6d0683988cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 235/870] python-hyperframe: rebuild for Python 3.8.

---
 srcpkgs/python-hyperframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyperframe/template b/srcpkgs/python-hyperframe/template
index e4cea346f7e..6b544c2061c 100644
--- a/srcpkgs/python-hyperframe/template
+++ b/srcpkgs/python-hyperframe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperframe'
 pkgname=python-hyperframe
 version=5.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hyperframe-${version}
 build_style=python-module

From cb929edb0d026e58d2d6c7e6f9baeee9fedf523e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 236/870] python-hyperlink: rebuild for Python 3.8.

---
 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 1cc7aa0670a..945bf72ee59 100644
--- a/srcpkgs/python-hyperlink/template
+++ b/srcpkgs/python-hyperlink/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperlink'
 pkgname=python-hyperlink
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyperlink-${version}"
 build_style=python-module

From da7a9015ccf93b07d390988b03b1403702cfa14a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 237/870] python-hypothesis: rebuild for Python 3.8.

---
 srcpkgs/python-hypothesis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hypothesis/template b/srcpkgs/python-hypothesis/template
index f3eb931e410..de55593fc02 100644
--- a/srcpkgs/python-hypothesis/template
+++ b/srcpkgs/python-hypothesis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hypothesis'
 pkgname=python-hypothesis
 version=4.38.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="hypothesis-hypothesis-python-${version}"
 build_wrksrc=hypothesis-python

From f091030376534d6a6f7c625b82a8405350e7cdcd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 238/870] python-icalendar: rebuild for Python 3.8.

---
 srcpkgs/python-icalendar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-icalendar/template b/srcpkgs/python-icalendar/template
index b2129648ea6..be45f2d608d 100644
--- a/srcpkgs/python-icalendar/template
+++ b/srcpkgs/python-icalendar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-icalendar'
 pkgname=python-icalendar
 version=4.0.3
-revision=1
+revision=2
 wrksrc="icalendar-${version}"
 archs=noarch
 build_style=python-module

From 474626af886f96ef30849e5aca015775f7edfb8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 239/870] icdiff: rebuild for Python 3.8.

---
 srcpkgs/icdiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template
index 31cfc3e2354..396448b86f4 100644
--- a/srcpkgs/icdiff/template
+++ b/srcpkgs/icdiff/template
@@ -1,7 +1,7 @@
 # Template file for 'icdiff'
 pkgname=icdiff
 version=1.9.5
-revision=1
+revision=2
 wrksrc="${pkgname}-release-${version}"
 archs=noarch
 build_style=python-module

From 21e5ba4fadd590c9e0dd7afde206429c99c46c56 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 240/870] python-idna: rebuild for Python 3.8.

---
 srcpkgs/python-idna/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-idna/template b/srcpkgs/python-idna/template
index 4c6baefd41b..446a04da7d7 100644
--- a/srcpkgs/python-idna/template
+++ b/srcpkgs/python-idna/template
@@ -1,7 +1,7 @@
 # Template file for 'python-idna'
 pkgname=python-idna
 version=2.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-${version}"
 build_style=python-module

From a012eff0de75e8caab0be24964731b749fe6ad8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 241/870] python3-idna-ssl: rebuild for Python 3.8.

---
 srcpkgs/python3-idna-ssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-idna-ssl/template b/srcpkgs/python3-idna-ssl/template
index df953f4d0d9..0608fb7278c 100644
--- a/srcpkgs/python3-idna-ssl/template
+++ b/srcpkgs/python3-idna-ssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-idna-ssl'
 pkgname=python3-idna-ssl
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-ssl-${version}"
 build_style=python3-module

From ac112b7dfc3aadb93225736a4504f7965af29838 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 242/870] python3-ifaddr: rebuild for Python 3.8.

---
 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 37bc2bbaf73..683d76662a3 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ifaddr-${version}"
 build_style=python3-module

From 32d0218ef7a7a721759e4c421d70255f49b3cfd0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 243/870] python-imagesize: rebuild for Python 3.8.

---
 srcpkgs/python-imagesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-imagesize/template b/srcpkgs/python-imagesize/template
index ee231eb9f24..f64c86812b5 100644
--- a/srcpkgs/python-imagesize/template
+++ b/srcpkgs/python-imagesize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-imagesize'
 pkgname=python-imagesize
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="imagesize-${version}"
 build_style=python-module

From f0bf351c50949a7348409d8c132926c401dabf43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 244/870] python3-importlib_metadata: rebuild for Python 3.8.

---
 srcpkgs/python3-importlib_metadata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-importlib_metadata/template b/srcpkgs/python3-importlib_metadata/template
index 9acbe968e10..f88e9d9b780 100644
--- a/srcpkgs/python3-importlib_metadata/template
+++ b/srcpkgs/python3-importlib_metadata/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-importlib_metadata'
 pkgname=python3-importlib_metadata
 version=0.23
-revision=1
+revision=2
 archs=noarch
 wrksrc="importlib_metadata-${version}"
 build_style=python3-module

From 73cc1c05e8e0ccf9063a33dd203d70df2ab135ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 245/870] python-incremental: rebuild for Python 3.8.

---
 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 a1c07042365..70477e26866 100644
--- a/srcpkgs/python-incremental/template
+++ b/srcpkgs/python-incremental/template
@@ -1,7 +1,7 @@
 # Template file for 'python-incremental'
 pkgname=python-incremental
 version=17.5.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="incremental-${version}"
 build_style=python-module

From 82a10b837fff5c5ce2f37ede93dad161025a109c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 246/870] python-inotify: rebuild for Python 3.8.

---
 srcpkgs/python-inotify/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-inotify/template b/srcpkgs/python-inotify/template
index f8e26bcc415..64e48fd9330 100644
--- a/srcpkgs/python-inotify/template
+++ b/srcpkgs/python-inotify/template
@@ -1,7 +1,7 @@
 # Template file for 'python-inotify'
 pkgname=python-inotify
 version=0.9.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="pyinotify-${version}"
 build_style=python-module

From 70f558982c4846e9de5243694f048c7014c7089a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 247/870] python-iptools: rebuild for Python 3.8.

---
 srcpkgs/python-iptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iptools/template b/srcpkgs/python-iptools/template
index 599a85ccdba..3c53013fb9d 100644
--- a/srcpkgs/python-iptools/template
+++ b/srcpkgs/python-iptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iptools'
 pkgname=python-iptools
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9962727fd608ce59af5a55c73c8b4c3d0c17fe71 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 248/870] python3-ipython: rebuild for Python 3.8.

---
 srcpkgs/python3-ipython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template
index 63242f382db..2c08bad1e41 100644
--- a/srcpkgs/python3-ipython/template
+++ b/srcpkgs/python3-ipython/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-ipython'
 pkgname=python3-ipython
 version=7.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipython-${version}"
 build_style=python3-module

From ecafa2b5530001ac56b03e639dff4ae00027d1ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 249/870] python-ipython_genutils: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_genutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_genutils/template b/srcpkgs/python-ipython_genutils/template
index 9af9604ca00..d46a3b0b716 100644
--- a/srcpkgs/python-ipython_genutils/template
+++ b/srcpkgs/python-ipython_genutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_genutils'
 pkgname=python-ipython_genutils
 version=0.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="ipython_genutils-${version}"
 build_style=python-module

From 1349d0a55b00bc5b30629934ad23ae1ed8839d98 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 250/870] python-ipython_ipykernel: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_ipykernel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_ipykernel/template b/srcpkgs/python-ipython_ipykernel/template
index 5ddc333798a..ca17b58c006 100644
--- a/srcpkgs/python-ipython_ipykernel/template
+++ b/srcpkgs/python-ipython_ipykernel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_ipykernel'
 pkgname=python-ipython_ipykernel
 version=4.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipykernel-${version}"
 build_style=python-module

From 1b146320a422b57ba1db41491ccff040d9ee719d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 251/870] python3-irc: rebuild for Python 3.8.

---
 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 eea3a629128..714c11dc943 100644
--- a/srcpkgs/python3-irc/template
+++ b/srcpkgs/python3-irc/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-irc'
 pkgname=python3-irc
 version=17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="irc-${version}"
 build_style=python3-module

From e04c4f250fda964ab555eb6b636f701d995009e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 252/870] python-isbnlib: rebuild for Python 3.8.

---
 srcpkgs/python-isbnlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isbnlib/template b/srcpkgs/python-isbnlib/template
index 3e2f66c6b66..1cc46a060d6 100644
--- a/srcpkgs/python-isbnlib/template
+++ b/srcpkgs/python-isbnlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isbnlib'
 pkgname=python-isbnlib
 version=3.9.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="isbnlib-${version}"
 build_style=python-module

From 2debe6131c52d94acd065961f9ea9ae22176a34c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 253/870] python-iso-8601: rebuild for Python 3.8.

---
 srcpkgs/python-iso-8601/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iso-8601/template b/srcpkgs/python-iso-8601/template
index a483e55b0bd..a841866d439 100644
--- a/srcpkgs/python-iso-8601/template
+++ b/srcpkgs/python-iso-8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iso-8601'
 pkgname=python-iso-8601
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="iso-8601-${version}"
 build_style=python-module

From 8b4be7b5324ac1347d55cc4f4e9eaa552465beec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 254/870] python-isodate: rebuild for Python 3.8.

---
 srcpkgs/python-isodate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isodate/template b/srcpkgs/python-isodate/template
index b2a7eb46591..74e4e813e64 100644
--- a/srcpkgs/python-isodate/template
+++ b/srcpkgs/python-isodate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isodate'
 pkgname=python-isodate
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="isodate-${version}"
 build_style=python-module

From a9c9e144908d37411616dd357e9fdc7575aaa8c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 255/870] python-isort: rebuild for Python 3.8.

---
 srcpkgs/python-isort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isort/template b/srcpkgs/python-isort/template
index df7fcfbf2d2..cd8e43b69ea 100644
--- a/srcpkgs/python-isort/template
+++ b/srcpkgs/python-isort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isort'
 pkgname=python-isort
 version=4.3.21
-revision=1
+revision=2
 archs=noarch
 wrksrc="isort-${version}"
 build_style=python-module

From a81f38d5db390cc4ae2c6be89747bebd3f1f15dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 256/870] python-itsdangerous: rebuild for Python 3.8.

---
 srcpkgs/python-itsdangerous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-itsdangerous/template b/srcpkgs/python-itsdangerous/template
index d1d9234df88..6e6fe5dcb2b 100644
--- a/srcpkgs/python-itsdangerous/template
+++ b/srcpkgs/python-itsdangerous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-itsdangerous'
 pkgname=python-itsdangerous
 version=0.24
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 2d842da30a2a65a2405487fdd5929ca2a0555251 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 257/870] python-iwlib: rebuild for Python 3.8.

---
 srcpkgs/python-iwlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iwlib/template b/srcpkgs/python-iwlib/template
index 2c58d4c8d29..2f4149b4e92 100644
--- a/srcpkgs/python-iwlib/template
+++ b/srcpkgs/python-iwlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iwlib'
 pkgname=python-iwlib
 version=1.6.2
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="iwlib"

From c09cc84b06cf4332a02b0a826494a74c81409175 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 258/870] python-jedi: rebuild for Python 3.8.

---
 srcpkgs/python-jedi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jedi/template b/srcpkgs/python-jedi/template
index 136e6adbea4..a994f0e2861 100644
--- a/srcpkgs/python-jedi/template
+++ b/srcpkgs/python-jedi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jedi'
 pkgname=python-jedi
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 _parsover=0.5.0
 wrksrc="jedi-${version}"

From 235b9031c126ebf53355a5ef0c337423c0df1d95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 259/870] python3-jeepney: rebuild for Python 3.8.

---
 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 2ae308a6fc6..9c5c007aa17 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.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="jeepney-${version}"
 build_style=python3-module

From 4868c0871bc763937dd6b8573e91ee86064e0595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 260/870] python3-jellyfish: rebuild for Python 3.8.

---
 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 dec74539e3f..5d0a614c397 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.7.2
-revision=1
+revision=2
 wrksrc="jellyfish-${version}"
 build_style=python3-module
 pycompile_module="jellyfish"

From a9c225f19782a27d8e5e28a508ea0acc39991390 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 261/870] python-jmespath: rebuild for Python 3.8.

---
 srcpkgs/python-jmespath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jmespath/template b/srcpkgs/python-jmespath/template
index 47508a3a0c2..220f1a33c07 100644
--- a/srcpkgs/python-jmespath/template
+++ b/srcpkgs/python-jmespath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jmespath'
 pkgname=python-jmespath
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jmespath.py-${version}"
 build_style=python-module

From 30e8e2e1619bdf45652db8c6ecdd0e0a4fc90d8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 262/870] python3-josepy: rebuild for Python 3.8.

---
 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 6d6e4547d38..903bd7028ed 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="josepy-${version}"
 build_style=python3-module

From c06d36cf857257f3cf63a7e677498487d37168d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 263/870] python-jsonpointer: rebuild for Python 3.8.

---
 srcpkgs/python-jsonpointer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonpointer/template b/srcpkgs/python-jsonpointer/template
index ed865fbfcba..fd103d123aa 100644
--- a/srcpkgs/python-jsonpointer/template
+++ b/srcpkgs/python-jsonpointer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonpointer'
 pkgname=python-jsonpointer
 version=2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonpointer-${version}"
 build_style=python-module

From be483d0bbf53a22e23a3c2db3d77dc61bff17915 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 264/870] python-jsonrpclib: rebuild for Python 3.8.

---
 srcpkgs/python-jsonrpclib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonrpclib/template b/srcpkgs/python-jsonrpclib/template
index 7253607fe57..a245168a824 100644
--- a/srcpkgs/python-jsonrpclib/template
+++ b/srcpkgs/python-jsonrpclib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonrpclib'
 pkgname=python-jsonrpclib
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonrpclib-pelix-${version}"
 build_style=python-module

From 15ad75adf989474229acc1fdac0c5d5887528bd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 265/870] python-jsonschema: rebuild for Python 3.8.

---
 srcpkgs/python-jsonschema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonschema/template b/srcpkgs/python-jsonschema/template
index 63c30ce6863..326b5609d36 100644
--- a/srcpkgs/python-jsonschema/template
+++ b/srcpkgs/python-jsonschema/template
@@ -2,7 +2,7 @@
 pkgname=python-jsonschema
 reverts="3.0.2_1"
 version=2.6.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="jsonschema-${version}"
 build_style=python-module

From 8bf3797435c040a1682d5e3e4c6c41f650d82b34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 266/870] python-jupyter_client: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_client/template b/srcpkgs/python-jupyter_client/template
index ab5cd0c5b3c..6365dd9e175 100644
--- a/srcpkgs/python-jupyter_client/template
+++ b/srcpkgs/python-jupyter_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_client'
 pkgname=python-jupyter_client
 version=5.2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_client-${version}"
 build_style=python-module

From e732ed651c399cb8d7e96a618444e815bf86ce4b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 267/870] python3-jupyter_console: rebuild for Python 3.8.

---
 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 25b2eda4c2f..3837e5b3bbf 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_console-${version}"
 build_style=python3-module

From b264bc5200c6942b1507777e0bc169838cb6a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 268/870] python-jupyter_core: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_core/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_core/template b/srcpkgs/python-jupyter_core/template
index fcce4e0fe0b..f1629208e86 100644
--- a/srcpkgs/python-jupyter_core/template
+++ b/srcpkgs/python-jupyter_core/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_core'
 pkgname=python-jupyter_core
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_core-${version}"
 build_style=python-module

From 54845c515258535f8793ff37241d0daad10fcddc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 269/870] python-jupyter_ipywidgets: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_ipywidgets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_ipywidgets/template b/srcpkgs/python-jupyter_ipywidgets/template
index 3d511a25152..44570cf390a 100644
--- a/srcpkgs/python-jupyter_ipywidgets/template
+++ b/srcpkgs/python-jupyter_ipywidgets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_ipywidgets'
 pkgname=python-jupyter_ipywidgets
 version=7.4.2
-revision=1
+revision=2
 archs=noarch
 _widgetsnbextver=3.4.0
 wrksrc="ipywidgets-${version}"

From da9dc8f246174d7b5fed1a61f1b4bb127c2bc9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 270/870] python-jupyter_nbconvert: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbconvert/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbconvert/template b/srcpkgs/python-jupyter_nbconvert/template
index 57ac5cce23f..e6cdad7d21c 100644
--- a/srcpkgs/python-jupyter_nbconvert/template
+++ b/srcpkgs/python-jupyter_nbconvert/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbconvert'
 pkgname=python-jupyter_nbconvert
 version=5.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="nbconvert-${version}"
 build_style=python-module

From 8e126f65404eaa5a5b69bca1aa41b4be58abe4b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 271/870] python-jupyter_nbformat: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbformat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbformat/template b/srcpkgs/python-jupyter_nbformat/template
index 11098fd3f90..e2addc8866f 100644
--- a/srcpkgs/python-jupyter_nbformat/template
+++ b/srcpkgs/python-jupyter_nbformat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbformat'
 pkgname=python-jupyter_nbformat
 version=4.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="nbformat-${version}"
 build_style=python-module

From 3d7a11f09a2f159b9e42c935154654a47117f3a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 272/870] python-jupyter_notebook: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_notebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_notebook/template b/srcpkgs/python-jupyter_notebook/template
index c3f478c1fb4..4f6de0f642d 100644
--- a/srcpkgs/python-jupyter_notebook/template
+++ b/srcpkgs/python-jupyter_notebook/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_notebook'
 pkgname=python-jupyter_notebook
 version=5.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="notebook-${version}"
 build_style=python-module

From eab8a5bd67b168048f40a3d2fe199e073715a1b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 273/870] python-jupyter_qtconsole: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_qtconsole/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_qtconsole/template b/srcpkgs/python-jupyter_qtconsole/template
index f8f85534bbd..ea7f89a62af 100644
--- a/srcpkgs/python-jupyter_qtconsole/template
+++ b/srcpkgs/python-jupyter_qtconsole/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_qtconsole'
 pkgname=python-jupyter_qtconsole
 version=4.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="qtconsole-${version}"
 build_style=python-module

From 96c7c1f6f484f9a33a17b0213142b8a97a7c69e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 274/870] python-jupyter_widgetsnbextension: rebuild for Python
 3.8.

---
 srcpkgs/python-jupyter_widgetsnbextension/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_widgetsnbextension/template b/srcpkgs/python-jupyter_widgetsnbextension/template
index dacd88ccb4f..05e9c0d00a3 100644
--- a/srcpkgs/python-jupyter_widgetsnbextension/template
+++ b/srcpkgs/python-jupyter_widgetsnbextension/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_widgetsnbextension'
 pkgname=python-jupyter_widgetsnbextension
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="widgetsnbextension-${version}"
 build_style=python-module

From 6175c117f039e76b8fff45d549f50360a92742b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 275/870] python-kaptan: rebuild for Python 3.8.

---
 srcpkgs/python-kaptan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kaptan/template b/srcpkgs/python-kaptan/template
index 649eeec8568..6668b240008 100644
--- a/srcpkgs/python-kaptan/template
+++ b/srcpkgs/python-kaptan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kaptan'
 pkgname=python-kaptan
 version=0.5.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="kaptan-${version}"
 build_style=python-module

From 6668dcf37c32ef8390c8f45e6cd206d8478b963b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 276/870] python-keepalive: rebuild for Python 3.8.

---
 srcpkgs/python-keepalive/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keepalive/template b/srcpkgs/python-keepalive/template
index deb95a07236..50e1d7e6e78 100644
--- a/srcpkgs/python-keepalive/template
+++ b/srcpkgs/python-keepalive/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keepalive'
 pkgname=python-keepalive
 version=0.5
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9e9d4a781427bc1296f59529a4d83b4a1271c5e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 277/870] python-keyring: rebuild for Python 3.8.

---
 srcpkgs/python-keyring/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyring/template b/srcpkgs/python-keyring/template
index df1c21ee1be..2a87160b04d 100644
--- a/srcpkgs/python-keyring/template
+++ b/srcpkgs/python-keyring/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyring'
 pkgname=python-keyring
 version=18.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyring-${version}"
 build_style=python-module

From 8fea0f10f3e8aebfe92a9d090368b1cda777a405 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 278/870] python3-keyrings-alt: rebuild for Python 3.8.

---
 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 d5820535e54..ed09cfac4a7 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=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyrings.alt-${version}"
 build_style=python3-module

From 271539dc3ed1e21733c374ff971770403194a1d1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 279/870] python-keyutils: rebuild for Python 3.8.

---
 srcpkgs/python-keyutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyutils/template b/srcpkgs/python-keyutils/template
index d56ada0e30e..a72819e963a 100644
--- a/srcpkgs/python-keyutils/template
+++ b/srcpkgs/python-keyutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyutils'
 pkgname=python-keyutils
 version=0.6
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="keyutils"
 hostmakedepends="python-setuptools python3-setuptools"

From 0556a11defcdebd2c4319e286451ce3f45f87ebd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 280/870] python-kitchen: rebuild for Python 3.8.

---
 srcpkgs/python-kitchen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kitchen/template b/srcpkgs/python-kitchen/template
index 2bbd68c13c9..68a46986de9 100644
--- a/srcpkgs/python-kitchen/template
+++ b/srcpkgs/python-kitchen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kitchen'
 pkgname=python-kitchen
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="kitchen-${version}"
 build_style=python-module

From fe5070b00515733fcafbeebc62a10ba2029b40db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 281/870] python-kiwisolver: rebuild for Python 3.8.

---
 srcpkgs/python-kiwisolver/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kiwisolver/template b/srcpkgs/python-kiwisolver/template
index 072bd5af038..67f0805aa51 100644
--- a/srcpkgs/python-kiwisolver/template
+++ b/srcpkgs/python-kiwisolver/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kiwisolver'
 pkgname=python-kiwisolver
 version=1.0.1
-revision=2
+revision=3
 wrksrc="kiwisolver-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From d1c550f6959162ec91e7bb39c54ecdd1d5b7c0ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 282/870] python-lazy-object-proxy: rebuild for Python 3.8.

---
 srcpkgs/python-lazy-object-proxy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lazy-object-proxy/template b/srcpkgs/python-lazy-object-proxy/template
index 07efb7b4777..ab2c6dce05c 100644
--- a/srcpkgs/python-lazy-object-proxy/template
+++ b/srcpkgs/python-lazy-object-proxy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lazy-object-proxy'
 pkgname=python-lazy-object-proxy
 version=1.3.1
-revision=3
+revision=4
 wrksrc="lazy-object-proxy-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e5c9a0cf8e6e0714fba4433b9deb1aaf40d43ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 283/870] python-ldap: rebuild for Python 3.8.

---
 srcpkgs/python-ldap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap/template b/srcpkgs/python-ldap/template
index 7770baa8774..e3efc2fc6b3 100644
--- a/srcpkgs/python-ldap/template
+++ b/srcpkgs/python-ldap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap'
 pkgname=python-ldap
 version=3.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="ldap ldapurl.py ldif.py slapdtest"
 hostmakedepends="python-setuptools python3-setuptools"

From dca16bc247cccf1bc7020afca5594d857514100a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 284/870] python-ldap3: rebuild for Python 3.8.

---
 srcpkgs/python-ldap3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap3/template b/srcpkgs/python-ldap3/template
index 676251a85ff..e8e4cade72b 100644
--- a/srcpkgs/python-ldap3/template
+++ b/srcpkgs/python-ldap3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap3'
 pkgname=python-ldap3
 version=2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ldap3-${version}"
 build_style=python-module

From 8f3e1b0bf64fb527d029fec15229e079f326c373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 285/870] python3-libevdev: rebuild for Python 3.8.

---
 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 0a79893726c..f0295cdee9b 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.8
-revision=1
+revision=2
 _githash=1827bebcf789adee8492cbfcc7cf8d56059a42a4
 wrksrc="python-libevdev-${version}-${_githash}"
 build_style=python3-module

From a5b674c4366c36182e29f21b8071faff59006106 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 286/870] libsmbios: rebuild for Python 3.8.

---
 srcpkgs/libsmbios/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsmbios/template b/srcpkgs/libsmbios/template
index 31d8ffda65f..161cb79deb9 100644
--- a/srcpkgs/libsmbios/template
+++ b/srcpkgs/libsmbios/template
@@ -1,7 +1,7 @@
 # Template file for 'libsmbios'
 pkgname=libsmbios
 version=2.4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--sbindir=/usr/bin --disable-static"
 hostmakedepends="automake doxygen gettext-devel help2man libtool pkg-config"

From 7762c8392d1a03ae7a320bdec0b5402b7147d0b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 287/870] python-libtmux: rebuild for Python 3.8.

---
 srcpkgs/python-libtmux/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-libtmux/template b/srcpkgs/python-libtmux/template
index 36fa7ca7ffd..20f43af5f7d 100644
--- a/srcpkgs/python-libtmux/template
+++ b/srcpkgs/python-libtmux/template
@@ -1,7 +1,7 @@
 # Template file for 'python-libtmux'
 pkgname=python-libtmux
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="libtmux-${version}"
 build_style=python-module

From 16a2a1b8ba0ad9f9032d52092294e8a39041bba2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 288/870] python-llfuse: rebuild for Python 3.8.

---
 srcpkgs/python-llfuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-llfuse/template b/srcpkgs/python-llfuse/template
index 203c5e2fd84..b453c67e91d 100644
--- a/srcpkgs/python-llfuse/template
+++ b/srcpkgs/python-llfuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-llfuse'
 pkgname=python-llfuse
 version=1.3.6
-revision=1
+revision=2
 wrksrc="llfuse-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pkg-config"

From ae7f34ffc994fc4606c9209683fae6625f3e781e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 289/870] python-lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lockfile/template b/srcpkgs/python-lockfile/template
index 4c4612ed144..778cecba7e9 100644
--- a/srcpkgs/python-lockfile/template
+++ b/srcpkgs/python-lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lockfile'
 pkgname=python-lockfile
 version=0.12.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="lockfile-${version}"
 build_style=python-module

From 5fd2f78e26b399ed936b12f51886dae3a8d35cb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 290/870] python-logfury: rebuild for Python 3.8.

---
 srcpkgs/python-logfury/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-logfury/template b/srcpkgs/python-logfury/template
index 4b1c435e34a..1b52d2d7fdf 100644
--- a/srcpkgs/python-logfury/template
+++ b/srcpkgs/python-logfury/template
@@ -1,7 +1,7 @@
 # Template file for 'python-logfury'
 pkgname=python-logfury
 version=0.1.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="logfury-${version}"
 build_style=python-module

From 747dc28bedc27e7b5c8738113573012f545333a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 291/870] python-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lxml/template b/srcpkgs/python-lxml/template
index c3aeabfbf1b..1a6a3ac9113 100644
--- a/srcpkgs/python-lxml/template
+++ b/srcpkgs/python-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lxml'
 pkgname=python-lxml
 version=4.4.1
-revision=1
+revision=2
 wrksrc="lxml-lxml-${version}"
 build_style=python-module
 pycompile_module="lxml"

From ebc274c0463316f63fe99e5df0c704e3d324c885 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 292/870] python-lz4: rebuild for Python 3.8.

---
 srcpkgs/python-lz4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lz4/template b/srcpkgs/python-lz4/template
index dab8e8ed542..76a2e800e38 100644
--- a/srcpkgs/python-lz4/template
+++ b/srcpkgs/python-lz4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lz4'
 pkgname=python-lz4
 version=2.1.6
-revision=2
+revision=3
 wrksrc="lz4-${version}"
 build_style=python-module
 pycompile_module="lz4"

From 8eb3f4d6193b25ae716fa2fdfae1f929deb65a91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 293/870] python3-macaroons: rebuild for Python 3.8.

---
 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 d44100c20f2..420f5aff043 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=1
+revision=2
 archs=noarch
 wrksrc="pymacaroons-${version}"
 build_style=python3-module

From 437e300b76670db404728daad9f6224630daaa3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 294/870] python3-macholib: rebuild for Python 3.8.

---
 srcpkgs/python3-macholib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-macholib/template b/srcpkgs/python3-macholib/template
index a2738f57eb0..525b5f7106b 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.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="macholib-${version}"
 build_style=python3-module

From b08f229d26f5b2c915caabe213234afc1e4002e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 295/870] python-magic: rebuild for Python 3.8.

---
 srcpkgs/python-magic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-magic/template b/srcpkgs/python-magic/template
index 98e3c0802ab..5a59efa4808 100644
--- a/srcpkgs/python-magic/template
+++ b/srcpkgs/python-magic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-magic'
 pkgname=python-magic
 version=0.4.15
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="magic.py"

From c597fee1945d8f994f591622074acf3670a81484 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 296/870] python-marisa-trie: rebuild for Python 3.8.

---
 srcpkgs/python-marisa-trie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-marisa-trie/template b/srcpkgs/python-marisa-trie/template
index bb09c933335..5e46b686ace 100644
--- a/srcpkgs/python-marisa-trie/template
+++ b/srcpkgs/python-marisa-trie/template
@@ -1,7 +1,7 @@
 # Template file for 'python-marisa-trie'
 pkgname=python-marisa-trie
 version=0.7.5
-revision=2
+revision=3
 wrksrc="marisa-trie-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 5366314fc7ba3b340ccf5b4658edff33f5ec148a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 297/870] python-markdown2: rebuild for Python 3.8.

---
 srcpkgs/python-markdown2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-markdown2/template b/srcpkgs/python-markdown2/template
index 2d352ba029d..e9068f64202 100644
--- a/srcpkgs/python-markdown2/template
+++ b/srcpkgs/python-markdown2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-markdown2'
 pkgname=python-markdown2
 version=2.3.8
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="markdown2"

From b56d284bcbb50ddece287bde845145e6481e4d39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 298/870] python3-matplotlib: rebuild for Python 3.8.

---
 srcpkgs/python3-matplotlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template
index 857ba17cacf..be02817a4d3 100644
--- a/srcpkgs/python3-matplotlib/template
+++ b/srcpkgs/python3-matplotlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-matplotlib'
 pkgname=python3-matplotlib
 version=3.1.1
-revision=1
+revision=2
 wrksrc="matplotlib-${version}"
 build_style=python3-module
 pycompile_module="matplotlib mpl_toolkits pylab.py"

From 8b3780e8f6f50712735239defc569952763e8894 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 299/870] python-mccabe: rebuild for Python 3.8.

---
 srcpkgs/python-mccabe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mccabe/template b/srcpkgs/python-mccabe/template
index b6a01929540..1e2ed6328b8 100644
--- a/srcpkgs/python-mccabe/template
+++ b/srcpkgs/python-mccabe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mccabe'
 pkgname=python-mccabe
 version=0.6.1
-revision=2
+revision=3
 archs=noarch
 replaces="mccabe>=0"
 wrksrc="mccabe-${version}"

From 954d38992e9a83e3214b79375b895ee1072db4e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 300/870] python-mechanize: rebuild for Python 3.8.

---
 srcpkgs/python-mechanize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mechanize/template b/srcpkgs/python-mechanize/template
index c5b2b5789a7..ca29bbd0d23 100644
--- a/srcpkgs/python-mechanize/template
+++ b/srcpkgs/python-mechanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mechanize'
 pkgname=python-mechanize
 version=0.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="mechanize-${version}"
 build_style=python-module

From e8762f4af80ad5b1cb6a41af3183141ec903485f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 301/870] python3-minidb: rebuild for Python 3.8.

---
 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 50490794600..140964b7a8a 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.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="minidb-${version}"
 build_style=python3-module

From 93febdb59f89cf4939f3684acd832f879fc774d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 302/870] python-miniupnpc: rebuild for Python 3.8.

---
 srcpkgs/python-miniupnpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-miniupnpc/template b/srcpkgs/python-miniupnpc/template
index 500c217c78e..f7892bab073 100644
--- a/srcpkgs/python-miniupnpc/template
+++ b/srcpkgs/python-miniupnpc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-miniupnpc'
 pkgname=python-miniupnpc
 version=2.0.2
-revision=2
+revision=3
 wrksrc="${pkgname#python-}-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ab280bf26207a66e5e3f418768bf3358cc2c76ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 303/870] python-mistune: rebuild for Python 3.8.

---
 srcpkgs/python-mistune/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mistune/template b/srcpkgs/python-mistune/template
index 0ee8dfde5b1..ef5c054ba75 100644
--- a/srcpkgs/python-mistune/template
+++ b/srcpkgs/python-mistune/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mistune'
 pkgname=python-mistune
 version=0.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="mistune-${version}"
 build_style=python-module

From 05abf67487f6ac161862195dfb2069fade248fbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 304/870] python3-more-itertools: rebuild for Python 3.8.

---
 srcpkgs/python3-more-itertools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-more-itertools/template b/srcpkgs/python3-more-itertools/template
index b089992f84e..a765da98495 100644
--- a/srcpkgs/python3-more-itertools/template
+++ b/srcpkgs/python3-more-itertools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-more-itertools'
 pkgname=python3-more-itertools
 version=7.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python3-module

From efcbd7f439e04ca5dc43be057047c93f1051b5cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 305/870] python-mpd2: rebuild for Python 3.8.

---
 srcpkgs/python-mpd2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template
index 682d9a85f5e..0389f8c2a28 100644
--- a/srcpkgs/python-mpd2/template
+++ b/srcpkgs/python-mpd2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpd2'
 pkgname=python-mpd2
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mpd"

From 507a89e7a29ba5dd81f66830577542bb3a098780 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 306/870] python3-mpi4py: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-mpi4py/template | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/python3-mpi4py/template b/srcpkgs/python3-mpi4py/template
index 94a83b688f2..8f9e76867cc 100644
--- a/srcpkgs/python3-mpi4py/template
+++ b/srcpkgs/python3-mpi4py/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpi4py'
 pkgname=python3-mpi4py
 version=3.0.2
-revision=1
+revision=2
 wrksrc="mpi4py-${version}"
 build_style=python3-module
 pycompile_module="mpi4py"
@@ -15,6 +15,12 @@ homepage="https://bitbucket.org/mpi4py/mpi4py"
 distfiles="$PYPI_SITE/m/mpi4py/mpi4py-${version}.tar.gz"
 checksum=f8d629d1e3e3b7b89cb99d0e3bc5505e76cc42089829807950d5c56606ed48e0
 
+post_extract() {
+	# recythonize
+	rm src/mpi4py/include/mpi4py/mpi4py.MPI.h \
+		src/mpi4py/include/mpi4py/mpi4py.MPI_api.h \
+		src/mpi4py.MPI.c
+}
 post_install() {
 	vlicense LICENSE.rst
 }

From d71d04b6dbfad4ce9460041fe001aab7c4cab301 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 307/870] python-mpmath: rebuild for Python 3.8.

---
 srcpkgs/python-mpmath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpmath/template b/srcpkgs/python-mpmath/template
index b0a38c01514..8fd4873dd62 100644
--- a/srcpkgs/python-mpmath/template
+++ b/srcpkgs/python-mpmath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpmath'
 pkgname=python-mpmath
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="mpmath-${version}"
 build_style=python-module

From f050643cc3d8a1927b2b43a4d6bc3a47fce265d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 308/870] python3-mpv: rebuild for Python 3.8.

---
 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 2780c02610b..1910a4d231d 100644
--- a/srcpkgs/python3-mpv/template
+++ b/srcpkgs/python3-mpv/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpv'
 pkgname=python3-mpv
 version=0.3.9
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-mpv-${version}"
 build_style=python3-module

From 076ab982ba68fae19b6a637c3190d501b6f11afb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 309/870] python-msgpack: rebuild for Python 3.8.

---
 srcpkgs/python-msgpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-msgpack/template b/srcpkgs/python-msgpack/template
index 395d854d638..59571d6a208 100644
--- a/srcpkgs/python-msgpack/template
+++ b/srcpkgs/python-msgpack/template
@@ -2,7 +2,7 @@
 pkgname=python-msgpack
 reverts="0.6.0_1"
 version=0.5.6
-revision=3
+revision=4
 wrksrc="msgpack-${version}"
 build_style=python-module
 pycompile_module="msgpack"

From c0b498d4aabae1c0cc1564a796b43c28045b08f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 310/870] python3-msoffcrypto-tool: rebuild for Python 3.8.

---
 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 5996d3bf355..d1b369fc773 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=4.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="msoffcrypto-tool-${version}"
 build_style=python3-module

From a02ae9dc7e657d6823c09d222a46aaaad0b52e6e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 311/870] python-mtranslate: rebuild for Python 3.8.

---
 srcpkgs/python-mtranslate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mtranslate/template b/srcpkgs/python-mtranslate/template
index d56fa18f0f0..992c7b76fe9 100644
--- a/srcpkgs/python-mtranslate/template
+++ b/srcpkgs/python-mtranslate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mtranslate'
 pkgname=python-mtranslate
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="mtranslate-${version}"
 build_style=python-module

From 1db5126bddf0129431159c083c0e8c7feeda0e24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 312/870] python3-multidict: rebuild for Python 3.8.

---
 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 82888db842f..62054db71f1 100644
--- a/srcpkgs/python3-multidict/template
+++ b/srcpkgs/python3-multidict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-multidict'
 pkgname=python3-multidict
 version=4.5.2
-revision=2
+revision=3
 wrksrc="multidict-${version}"
 build_style=python3-module
 pycompile_module="multidict"

From db397601599182d62444486443fe7887f1bf0869 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 313/870] python3-munkres: rebuild for Python 3.8.

---
 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 15767afe3fe..d0d0a013e80 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python3-module

From f6bec8102ac4a1433f716928258d680f0546e9f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 314/870] python-musicbrainzngs: rebuild for Python 3.8.

---
 srcpkgs/python-musicbrainzngs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-musicbrainzngs/template b/srcpkgs/python-musicbrainzngs/template
index 588c25f7cd8..3d738f0c3c0 100644
--- a/srcpkgs/python-musicbrainzngs/template
+++ b/srcpkgs/python-musicbrainzngs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-musicbrainzngs'
 pkgname=python-musicbrainzngs
 version=0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="musicbrainzngs-${version}"
 build_style="python-module"

From 59d602d19ea627b5ddd3ac33170326df511f1b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 315/870] python3-musicpd: rebuild for Python 3.8.

---
 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 3328b2f4bbf..8c6ba2fb451 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=1
+revision=2
 archs=noarch
 wrksrc="python-musicpd-${version}"
 build_style=python3-module

From e4271deae6b4b0258165475e34a0174f837576d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 316/870] mutagen: rebuild for Python 3.8.

---
 srcpkgs/mutagen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mutagen/template b/srcpkgs/mutagen/template
index cbf05ea8583..8b24cc82dc8 100644
--- a/srcpkgs/mutagen/template
+++ b/srcpkgs/mutagen/template
@@ -1,7 +1,7 @@
 # Template file for 'mutagen'
 pkgname=mutagen
 version=1.42.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mutagen"

From c726c7e86676ccc5612045570a6821438d6541cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 317/870] python-mygpoclient: rebuild for Python 3.8.

---
 srcpkgs/python-mygpoclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mygpoclient/template b/srcpkgs/python-mygpoclient/template
index 3f85c72cc0c..ffad63a70a1 100644
--- a/srcpkgs/python-mygpoclient/template
+++ b/srcpkgs/python-mygpoclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mygpoclient'
 pkgname=python-mygpoclient
 version=1.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="mygpoclient-${version}"
 build_style=python-module

From 1d17c7a2672083ac8c194b767f1be1d8778d6f42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 318/870] python3-mypy: rebuild for Python 3.8.

---
 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 37ecd732c06..564c0a4d47c 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.730
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy-${version}"
 build_style=python3-module

From d44ba12caf9958f6f6d708b0e5061d3ca01990e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 319/870] python3-mypy_extensions: rebuild for Python 3.8.

---
 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 2761924248e..25de48ea141 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy_extensions-${version}"
 build_style=python3-module

From 8c03f1eb83b224187a7b0fb11b5c780c96875438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 320/870] python-mysqlclient: rebuild for Python 3.8.

---
 srcpkgs/python-mysqlclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mysqlclient/template b/srcpkgs/python-mysqlclient/template
index 43fed28d4f0..079666a6dab 100644
--- a/srcpkgs/python-mysqlclient/template
+++ b/srcpkgs/python-mysqlclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mysqlclient'
 pkgname=python-mysqlclient
 version=1.3.14
-revision=2
+revision=3
 wrksrc="mysqlclient-${version}"
 build_style=python-module
 pycompile_module="MySQLdb _mysql_exceptions.py"

From 8b80cedc0b4331f2c1827c959c67be32d904a6b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 321/870] python3-nacl: rebuild for Python 3.8.

---
 srcpkgs/python3-nacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-nacl/template b/srcpkgs/python3-nacl/template
index 5dd6a71ad6a..b59ea0196ac 100644
--- a/srcpkgs/python3-nacl/template
+++ b/srcpkgs/python3-nacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-nacl'
 pkgname=python3-nacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python3-module
 pycompile_module="nacl"

From 4b93d8f922559d3f9f9693969307cdb0dedd22c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 322/870] python-namedlist: rebuild for Python 3.8.

---
 srcpkgs/python-namedlist/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-namedlist/template b/srcpkgs/python-namedlist/template
index 4c6e6f1f3d5..75626b9f6d5 100644
--- a/srcpkgs/python-namedlist/template
+++ b/srcpkgs/python-namedlist/template
@@ -1,7 +1,7 @@
 # Template file for 'python-namedlist'
 pkgname=python-namedlist
 version=1.7
-revision=5
+revision=6
 archs=noarch
 wrksrc="namedlist-${version}"
 build_style=python-module

From 643225c4205051b03e6b58dd88dd0fe79a960880 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 323/870] python-natsort: rebuild for Python 3.8.

---
 srcpkgs/python-natsort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-natsort/template b/srcpkgs/python-natsort/template
index 754ac50c419..7101e297aad 100644
--- a/srcpkgs/python-natsort/template
+++ b/srcpkgs/python-natsort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-natsort'
 pkgname=python-natsort
 version=6.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="natsort-${version}"
 build_style=python-module

From 1b4401089b676f8d76d5cbdf86f7cff95a90063f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 324/870] python-nbxmpp: rebuild for Python 3.8.

---
 srcpkgs/python-nbxmpp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nbxmpp/template b/srcpkgs/python-nbxmpp/template
index 4952ee1e102..8c39a93bca7 100644
--- a/srcpkgs/python-nbxmpp/template
+++ b/srcpkgs/python-nbxmpp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nbxmpp'
 pkgname=python-nbxmpp
 version=0.6.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 1ee192bdc19afbca9bbbc456945aaed8e882dc3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 325/870] python-ndg_httpsclient: rebuild for Python 3.8.

---
 srcpkgs/python-ndg_httpsclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ndg_httpsclient/template b/srcpkgs/python-ndg_httpsclient/template
index 908d7137391..54b653f68a9 100644
--- a/srcpkgs/python-ndg_httpsclient/template
+++ b/srcpkgs/python-ndg_httpsclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ndg_httpsclient'
 pkgname=python-ndg_httpsclient
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ndg_httpsclient-${version}"
 build_style=python-module

From 37b5c7920c617c4f55d5abe58df690c621598a93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 326/870] python3-neovim: rebuild for Python 3.8.

---
 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 44068f17b66..2730cd1b92b 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.3.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="pynvim-${version}"
 build_style="python3-module"

From 8136ec791e98badf101712f4f44830a6721d4849 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 327/870] python-netaddr: rebuild for Python 3.8.

---
 srcpkgs/python-netaddr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netaddr/template b/srcpkgs/python-netaddr/template
index 851095a3c7c..20cc1c93134 100644
--- a/srcpkgs/python-netaddr/template
+++ b/srcpkgs/python-netaddr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netaddr'
 pkgname=python-netaddr
 version=0.7.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="netaddr-${version}"
 build_style=python-module

From ebe247f557b410a62febae438785f8f011964023 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 328/870] python-netifaces: rebuild for Python 3.8.

---
 srcpkgs/python-netifaces/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netifaces/template b/srcpkgs/python-netifaces/template
index b8d6e505879..760f657aaba 100644
--- a/srcpkgs/python-netifaces/template
+++ b/srcpkgs/python-netifaces/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netifaces'
 pkgname=python-netifaces
 version=0.10.9
-revision=1
+revision=2
 wrksrc="netifaces-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 07d0e05094764c4ef127de2a4d489537d8ab5708 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 329/870] python3-networkx: rebuild for Python 3.8.

---
 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 eae29038d94..84acd3e929c 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.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="networkx-${version}"
 build_style=python3-module

From 8a3aeb59a75fbf1b7f0394b94c325ef8827b6b5d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 330/870] python-nose: rebuild for Python 3.8.

---
 srcpkgs/python-nose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose/template b/srcpkgs/python-nose/template
index c9fbe9d28d3..f2cd7fe5c3f 100644
--- a/srcpkgs/python-nose/template
+++ b/srcpkgs/python-nose/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose'
 pkgname=python-nose
 version=1.3.7
-revision=3
+revision=4
 archs=noarch
 wrksrc="nose-${version}"
 build_style=python-module

From f86abdbaaaa9e7e8236c4d39cd7e46a733425805 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 331/870] python-nose2: rebuild for Python 3.8.

---
 srcpkgs/python-nose2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose2/template b/srcpkgs/python-nose2/template
index a9ddf5969a1..058abbd4253 100644
--- a/srcpkgs/python-nose2/template
+++ b/srcpkgs/python-nose2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose2'
 pkgname=python-nose2
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 18b92c10ef3291636c1e7e28d721c5e994bf6302 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 332/870] python-npyscreen: rebuild for Python 3.8.

---
 srcpkgs/python-npyscreen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-npyscreen/template b/srcpkgs/python-npyscreen/template
index 0457fa1aaed..2223850f22e 100644
--- a/srcpkgs/python-npyscreen/template
+++ b/srcpkgs/python-npyscreen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-npyscreen'
 pkgname=python-npyscreen
 version=4.10.5.1
-revision=1
+revision=2
 wrksrc="npyscreen-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 9ea98fac2c37960db9a7b76cea2be115e8a2bed7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 333/870] python-ntplib: rebuild for Python 3.8.

---
 srcpkgs/python-ntplib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ntplib/template b/srcpkgs/python-ntplib/template
index 81bac24971e..0582fb326c1 100644
--- a/srcpkgs/python-ntplib/template
+++ b/srcpkgs/python-ntplib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ntplib'
 pkgname=python-ntplib
 version=0.3.3
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 wrksrc="ntplib-${version}"

From 42e7c3606ad17794721afef48ff01de438abbfde Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 334/870] python-numexpr: rebuild for Python 3.8.

---
 srcpkgs/python-numexpr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numexpr/template b/srcpkgs/python-numexpr/template
index 1db40092411..baf91175a33 100644
--- a/srcpkgs/python-numexpr/template
+++ b/srcpkgs/python-numexpr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numexpr'
 pkgname=python-numexpr
 version=2.7.0
-revision=1
+revision=2
 wrksrc="numexpr-${version}"
 build_style=python-module
 pycompile_module="numexpr"

From 30d9e4a8b4a096dfdf5ebfa58ffcadefb1dc1208 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 335/870] python3-numpy: rebuild for Python 3.8.

---
 srcpkgs/python3-numpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-numpy/template b/srcpkgs/python3-numpy/template
index c4c1936cc0d..f5e8ce2cc32 100644
--- a/srcpkgs/python3-numpy/template
+++ b/srcpkgs/python3-numpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-numpy'
 pkgname=python3-numpy
 version=1.17.2
-revision=1
+revision=2
 wrksrc="numpy-${version}"
 build_style=python3-module
 pycompile_module="numpy"

From 0172497dfdbc4c61b890a5cb33fdf7a4c4f8d99a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 336/870] python-numpy-stl: rebuild for Python 3.8.

---
 srcpkgs/python-numpy-stl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numpy-stl/template b/srcpkgs/python-numpy-stl/template
index 3eed838e4f6..cce1a8ead1f 100644
--- a/srcpkgs/python-numpy-stl/template
+++ b/srcpkgs/python-numpy-stl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numpy-stl'
 pkgname=python-numpy-stl
 version=2.10.1
-revision=1
+revision=2
 wrksrc="numpy-stl-v${version}"
 build_style=python-module
 pycompile_module="stl"

From f24b29a48d74aeaddb7b697a5daffdddbd861096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 337/870] python-oauth2client: rebuild for Python 3.8.

---
 srcpkgs/python-oauth2client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauth2client/template b/srcpkgs/python-oauth2client/template
index fd135e4e98f..2398adba276 100644
--- a/srcpkgs/python-oauth2client/template
+++ b/srcpkgs/python-oauth2client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauth2client'
 pkgname=python-oauth2client
 version=4.1.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 4c0ff2a063a36adf86c97b9d4c835ca20b5edfc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 338/870] python-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauthlib/template b/srcpkgs/python-oauthlib/template
index 5bbaa7df29b..036f1b31c92 100644
--- a/srcpkgs/python-oauthlib/template
+++ b/srcpkgs/python-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauthlib'
 pkgname=python-oauthlib
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 661bc27cfe08965221daa2747362d72e4fc27178 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 339/870] python-olefile: rebuild for Python 3.8.

---
 srcpkgs/python-olefile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-olefile/template b/srcpkgs/python-olefile/template
index 4346cfcf667..803d7b67cd8 100644
--- a/srcpkgs/python-olefile/template
+++ b/srcpkgs/python-olefile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-olefile'
 pkgname=python-olefile
 version=0.46
-revision=1
+revision=2
 archs=noarch
 wrksrc="olefile-${version}"
 build_style=python-module

From 81ad48cc99baa98fff2bb93d2c9ddbfe5bd36422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 340/870] python3-oletools: rebuild for Python 3.8.

---
 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 af9a91ff273..a4fda46427b 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.54.2b
-revision=1
+revision=2
 archs=noarch
 wrksrc="oletools-${version}"
 build_style=python3-module

From 0ae1454dacdb40d36d6c46872241d8b7f943ac15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 341/870] openrazer-meta: rebuild for Python 3.8.

---
 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 d4bd24878b2..112cb9e900b 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=1
+revision=2
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 827b1a86d790e29df3f5448f95b7d7583439ebc7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 342/870] python-openssl: rebuild for Python 3.8.

---
 srcpkgs/python-openssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-openssl/template b/srcpkgs/python-openssl/template
index 94bccaa166f..8aabda074fa 100644
--- a/srcpkgs/python-openssl/template
+++ b/srcpkgs/python-openssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-openssl'
 pkgname=python-openssl
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyOpenSSL-${version}"
 build_style=python-module

From 0b35d1d0b8e9ec0f17cb71edb12538b78cf15fa9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 343/870] python3-orocos-kdl: rebuild for Python 3.8.

---
 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 df3e27d5e7b..85b573b2fa4 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=1
+revision=2
 wrksrc=orocos_kinematics_dynamics-${version}
 build_wrksrc=python_orocos_kdl
 build_style=cmake

From 1f599cbc677804bd62252474063a3f44bab1963f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 344/870] python3-owm: rebuild for Python 3.8.

---
 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 d51e01831e6..acdb960ab45 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=1
+revision=2
 wrksrc="pyowm-${version}"
 build_style=python3-module
 pycompile_module="pyowm"

From 04d5ca1141107a7e08a15eccec26eae0cef6ddfc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 345/870] python-packaging: rebuild for Python 3.8.

---
 srcpkgs/python-packaging/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-packaging/template b/srcpkgs/python-packaging/template
index 505631bb29c..06042d12b90 100644
--- a/srcpkgs/python-packaging/template
+++ b/srcpkgs/python-packaging/template
@@ -1,7 +1,7 @@
 # Template file for 'python-packaging'
 pkgname=python-packaging
 version=19.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="packaging-${version}"
 build_style=python-module

From 3d4f635d1909bcc10be550a6ba92c93bab657d24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 346/870] python-pam: rebuild for Python 3.8.

---
 srcpkgs/python-pam/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pam/template b/srcpkgs/python-pam/template
index e696a05ae7f..28c22cfd6ea 100644
--- a/srcpkgs/python-pam/template
+++ b/srcpkgs/python-pam/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pam'
 pkgname=python-pam
 version=1.8.4
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="pam.py"

From 7906adb846a053b93372b360401c778862703de5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 347/870] python3-pandas: rebuild for Python 3.8.

---
 srcpkgs/python3-pandas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pandas/template b/srcpkgs/python3-pandas/template
index ad282b4d5d4..10f9d5a77d9 100644
--- a/srcpkgs/python3-pandas/template
+++ b/srcpkgs/python3-pandas/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pandas'
 pkgname=python3-pandas
 version=0.25.1
-revision=1
+revision=2
 wrksrc="pandas-${version}"
 build_style=python3-module
 pycompile_module="pandas"

From 5f63764964faf4b0d244098f5f64ba1225e14c5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 348/870] python-pandocfilters: rebuild for Python 3.8.

---
 srcpkgs/python-pandocfilters/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pandocfilters/template b/srcpkgs/python-pandocfilters/template
index a7a3d442052..8650d20256f 100644
--- a/srcpkgs/python-pandocfilters/template
+++ b/srcpkgs/python-pandocfilters/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pandocfilters'
 pkgname=python-pandocfilters
 version=1.4.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="pandocfilters-${version}"
 build_style=python-module

From cedefda1104de9c58b20c6b7e1d8a0f4d5385b24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 349/870] python-paramiko: rebuild for Python 3.8.

---
 srcpkgs/python-paramiko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-paramiko/template b/srcpkgs/python-paramiko/template
index c512ceb951f..d6f75508a03 100644
--- a/srcpkgs/python-paramiko/template
+++ b/srcpkgs/python-paramiko/template
@@ -1,7 +1,7 @@
 # Template file for 'python-paramiko'
 pkgname=python-paramiko
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 6c5cdbb0603a5742137ad2399e1f282d7135ecbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 350/870] python-parse: rebuild for Python 3.8.

---
 srcpkgs/python-parse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parse/template b/srcpkgs/python-parse/template
index 298d0b65e78..ded581b4420 100644
--- a/srcpkgs/python-parse/template
+++ b/srcpkgs/python-parse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parse'
 pkgname=python-parse
 version=1.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="parse-${version}"
 build_style=python-module

From 06c32d13c6ecc8f5c59fd3d28c856cddb7e55b69 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 351/870] python3-parsedatetime: rebuild for Python 3.8.

---
 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 d3ac21d7d34..34e9ba0f416 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="parsedatetime-${version}"
 build_style=python3-module

From 149092afd6b238ec9977aa2ba8d8f244d5357e67 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 352/870] python-parsing: rebuild for Python 3.8.

---
 srcpkgs/python-parsing/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parsing/template b/srcpkgs/python-parsing/template
index 0cc744eaf79..bd6cf2c2238 100644
--- a/srcpkgs/python-parsing/template
+++ b/srcpkgs/python-parsing/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parsing'
 pkgname=python-parsing
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyparsing-pyparsing_${version}"
 build_style=python-module

From c302574bea31ba81d3f2e4d6c1b8b8212592985d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 353/870] python-parso: rebuild for Python 3.8.

---
 srcpkgs/python-parso/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parso/template b/srcpkgs/python-parso/template
index 20e5fe306c0..1959b42622a 100644
--- a/srcpkgs/python-parso/template
+++ b/srcpkgs/python-parso/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parso'
 pkgname=python-parso
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="parso-${version}"
 build_style=python-module

From 6b9c95f942435b16d67021b0ce8f182c24bb943f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 354/870] python-passlib: rebuild for Python 3.8.

---
 srcpkgs/python-passlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-passlib/template b/srcpkgs/python-passlib/template
index 3af12ce7b1b..f46a3e92642 100644
--- a/srcpkgs/python-passlib/template
+++ b/srcpkgs/python-passlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-passlib'
 pkgname=python-passlib
 version=1.7.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="passlib-${version}"
 build_style=python-module

From 49600da0619f7152e3ea828c366d9a4680ebac40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 355/870] python-pathlib2: rebuild for Python 3.8.

---
 srcpkgs/python-pathlib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathlib2/template b/srcpkgs/python-pathlib2/template
index bb7bec778f5..fa600b78fbe 100644
--- a/srcpkgs/python-pathlib2/template
+++ b/srcpkgs/python-pathlib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathlib2'
 pkgname=python-pathlib2
 version=2.3.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pathlib2-${version}"
 build_style=python-module

From a0a108aec87134d5b6d2e03e731f48739e1226c0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 356/870] python-pathspec: rebuild for Python 3.8.

---
 srcpkgs/python-pathspec/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathspec/template b/srcpkgs/python-pathspec/template
index 7c5fe04097a..2fa8fa1a811 100644
--- a/srcpkgs/python-pathspec/template
+++ b/srcpkgs/python-pathspec/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathspec'
 pkgname=python-pathspec
 version=0.5.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathspec-${version}"
 build_style=python-module

From c66de315dc6f359ddb581056e8ef350e92acb135 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 357/870] python-pathtools: rebuild for Python 3.8.

---
 srcpkgs/python-pathtools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathtools/template b/srcpkgs/python-pathtools/template
index 218e6ed2f57..47dc6ef6a71 100644
--- a/srcpkgs/python-pathtools/template
+++ b/srcpkgs/python-pathtools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathtools'
 pkgname=python-pathtools
 version=0.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathtools-${version}"
 build_style=python-module

From d3d8ba877ce3e383a472c68a51b4eb6138da7d25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 358/870] python-pbkdf2: rebuild for Python 3.8.

---
 srcpkgs/python-pbkdf2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pbkdf2/template b/srcpkgs/python-pbkdf2/template
index edc50f824c2..956d0b4cad9 100644
--- a/srcpkgs/python-pbkdf2/template
+++ b/srcpkgs/python-pbkdf2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pbkdf2'
 pkgname=python-pbkdf2
 version=1.3
-revision=3
+revision=4
 archs=noarch
 wrksrc="pbkdf2-${version}"
 build_style=python-module

From 92b150f4aee95d71074c2bc7e253e089372033b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 359/870] python-pbr: rebuild for Python 3.8.

---
 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 7ab0b39539f..9c7216056fe 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.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pbr-${version}"
 build_style=python-module

From a5f7f198ba9557855d1662cf7b3d806286d735b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 360/870] python3-pcodedmp: rebuild for Python 3.8.

---
 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 efe8cc83ee7..eb52c809fae 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=1
+revision=2
 archs=noarch
 wrksrc="pcodedmp-${version}"
 build_style=python3-module

From c6f7d3cab5a62a3302eedc82e3ce1b5af007e967 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 361/870] python-pdfrw: rebuild for Python 3.8.

---
 srcpkgs/python-pdfrw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pdfrw/template b/srcpkgs/python-pdfrw/template
index ddb43b928fc..ef7db98e491 100644
--- a/srcpkgs/python-pdfrw/template
+++ b/srcpkgs/python-pdfrw/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pdfrw'
 pkgname=python-pdfrw
 version=0.4
-revision=2
+revision=3
 archs=noarch
 replaces="python-pdfrw-example<${version}_${revision}"
 wrksrc="${pkgname/python-//}-${version}"

From 8f02a9d6b13212de51e3921f641914d153244a1d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 362/870] python-peewee: rebuild for Python 3.8.

---
 srcpkgs/python-peewee/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-peewee/template b/srcpkgs/python-peewee/template
index 9b07ed413b9..de0068a330e 100644
--- a/srcpkgs/python-peewee/template
+++ b/srcpkgs/python-peewee/template
@@ -1,7 +1,7 @@
 # Template file for 'python-peewee'
 pkgname=python-peewee
 version=3.11.2
-revision=1
+revision=2
 wrksrc="peewee-${version}"
 build_style=python-module
 pycompile_module="playhouse peewee.py pwiz.py"

From 8c541b3666a838b55909e5f7ca46b7318c1e315e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 363/870] python3-pefile: rebuild for Python 3.8.

---
 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 305d64e0758..8791f06640b 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=1
+revision=2
 archs=noarch
 wrksrc="pefile-${version}"
 build_style=python3-module

From edc8e4f2bb803865815c3d0bd64a2e50bfdf5da8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 364/870] python3-pem: rebuild for Python 3.8.

---
 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 3517c80b66a..15417666597 100644
--- a/srcpkgs/python3-pem/template
+++ b/srcpkgs/python3-pem/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pem'
 pkgname=python3-pem
 version=19.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pem-${version}"
 build_style=python3-module

From 164760eb3d8d28400ea4be2967d7678696839866 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 365/870] python-pex: rebuild for Python 3.8.

---
 srcpkgs/python-pex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pex/template b/srcpkgs/python-pex/template
index 4beafcf7b4b..e36ccda8180 100644
--- a/srcpkgs/python-pex/template
+++ b/srcpkgs/python-pex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pex'
 pkgname=python-pex
 version=1.6.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="pex-${version}"
 build_style=python-module

From b4043ec822756e0711d025e31db342f81853fc0b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 366/870] python-pexpect: rebuild for Python 3.8.

---
 srcpkgs/python-pexpect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pexpect/template b/srcpkgs/python-pexpect/template
index 8d03a1945f3..03102c3d294 100644
--- a/srcpkgs/python-pexpect/template
+++ b/srcpkgs/python-pexpect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pexpect'
 pkgname=python-pexpect
 version=4.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pexpect-${version}"
 build_style=python-module

From 50f6291ca752dc88af34a7df4987b99f11369c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 367/870] python-pgmigrate: rebuild for Python 3.8.

---
 srcpkgs/python-pgmigrate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgmigrate/template b/srcpkgs/python-pgmigrate/template
index b441ba2a89f..767b6cf8921 100644
--- a/srcpkgs/python-pgmigrate/template
+++ b/srcpkgs/python-pgmigrate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgmigrate'
 pkgname=python-pgmigrate
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgmigrate-${version}"
 build_style=python-module

From 19bc6f8c731b45f52c358d34830221558e54f36f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 368/870] python-pgpdump: rebuild for Python 3.8.

---
 srcpkgs/python-pgpdump/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgpdump/template b/srcpkgs/python-pgpdump/template
index 58be9116feb..a28b6e209e7 100644
--- a/srcpkgs/python-pgpdump/template
+++ b/srcpkgs/python-pgpdump/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgpdump'
 pkgname=python-pgpdump
 version=1.5
-revision=5
+revision=6
 archs=noarch
 build_style=python-module
 pycompile_module="pgpdump"

From d3bc17a7484bd198f2f0e5d449b183920ca6ef9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 369/870] python3-pgspecial: rebuild for Python 3.8.

---
 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 dc52d12c214..c4f67a707f1 100644
--- a/srcpkgs/python3-pgspecial/template
+++ b/srcpkgs/python3-pgspecial/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pgspecial'
 pkgname=python3-pgspecial
 version=1.11.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgspecial-${version}"
 build_style=python3-module

From 630e0f8ca443d21d7a84c4cb44ab119db356b6fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 370/870] python3-pgzero: rebuild for Python 3.8.

---
 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 9653505acda..8b8f477112d 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgzero-${version}"
 build_style=python3-module

From b39841f2f8458d2865aac460282b318538b727c4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 371/870] python3-phonenumbers: rebuild for Python 3.8.

---
 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 ebf33f226e4..7b4e889fd8d 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.10.20
-revision=1
+revision=2
 archs=noarch
 wrksrc="phonenumbers-${version}"
 build_style=python3-module

From c4dbacfe25a16b0526190c66a838b7e407125426 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 372/870] python-picamera: rebuild for Python 3.8.

---
 srcpkgs/python-picamera/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-picamera/template b/srcpkgs/python-picamera/template
index 92bc2a57a6d..e3c9a17bfdc 100644
--- a/srcpkgs/python-picamera/template
+++ b/srcpkgs/python-picamera/template
@@ -1,7 +1,7 @@
 # Template file for 'python-picamera'
 pkgname=python-picamera
 version=1.13
-revision=1
+revision=2
 archs=noarch
 wrksrc="picamera-${version}"
 build_style=python-module

From 29473c016c6cd2d720c417714e89e9eaba3b321e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 373/870] python-pickleshare: rebuild for Python 3.8.

---
 srcpkgs/python-pickleshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pickleshare/template b/srcpkgs/python-pickleshare/template
index 2485c95230a..c1d86826c15 100644
--- a/srcpkgs/python-pickleshare/template
+++ b/srcpkgs/python-pickleshare/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pickleshare'
 pkgname=python-pickleshare
 version=0.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pickleshare-${version}"
 build_style=python-module

From 7c358da397b1273369bbeb98240a250157d4fe9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 374/870] python3-pillow-simd: rebuild for Python 3.8.

---
 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 7bab9fb20c3..4c756b07c79 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=5.3.0.post1
-revision=1
+revision=2
 archs="x86_64*"
 wrksrc="pillow-simd-${version}"
 build_style=python3-module

From 06b38c4e7a2c4a5ec22c8a9c530dbe56d846260f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 375/870] python-pip: rebuild for Python 3.8.

---
 srcpkgs/python-pip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pip/template b/srcpkgs/python-pip/template
index 75f11561816..9d4607095c7 100644
--- a/srcpkgs/python-pip/template
+++ b/srcpkgs/python-pip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pip'
 pkgname=python-pip
 version=19.2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pip-${version}"
 build_style=python-module

From 16067b9358434ea80b4b86a4dcd5a60f6b9e575b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 376/870] python-pipenv: rebuild for Python 3.8.

---
 srcpkgs/python-pipenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pipenv/template b/srcpkgs/python-pipenv/template
index e7ce3922875..210a0813673 100644
--- a/srcpkgs/python-pipenv/template
+++ b/srcpkgs/python-pipenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pipenv'
 pkgname=python-pipenv
 version=2018.11.26
-revision=3
+revision=4
 archs=noarch
 wrksrc="pipenv-${version}"
 build_style=python-module

From cb995aed1307a20f4ffe7746dbe54e4099ce9670 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 377/870] python-pkgconfig: rebuild for Python 3.8.

---
 srcpkgs/python-pkgconfig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pkgconfig/template b/srcpkgs/python-pkgconfig/template
index 13e1dcd3bf7..e9e5480907d 100644
--- a/srcpkgs/python-pkgconfig/template
+++ b/srcpkgs/python-pkgconfig/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pkgconfig'
 pkgname=python-pkgconfig
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pkgconfig-${version}"
 build_style=python-module

From f284340f35211b5c0879b7a5338c325e6cfe62da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 378/870] python-plotly: rebuild for Python 3.8.

---
 srcpkgs/python-plotly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-plotly/template b/srcpkgs/python-plotly/template
index fbbb3a3a520..1593b108f7a 100644
--- a/srcpkgs/python-plotly/template
+++ b/srcpkgs/python-plotly/template
@@ -1,7 +1,7 @@
 # Template file for 'python-plotly'
 pkgname=python-plotly
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 #wrksrc="${pkgname#*-}-${version}"
 wrksrc="plotly.py-${version}"

From ee0d515dc265db17d6c90029fc5ffad4fbfb17ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 379/870] python3-pluggy: rebuild for Python 3.8.

---
 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 37ebc2dae40..6f97cb25f21 100644
--- a/srcpkgs/python3-pluggy/template
+++ b/srcpkgs/python3-pluggy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pluggy'
 pkgname=python3-pluggy
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python3-module

From 60f109b4924812d3cbb6107b8d070a2fdb642962 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 380/870] python-ply: rebuild for Python 3.8.

---
 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 034fbcfa531..04a3defa6aa 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=1
+revision=2
 archs=noarch
 wrksrc="ply-${version}"
 build_style=python-module

From 95b0bc668a60a91dbbd68944bdc712d271e93723 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 381/870] python3-pmw: rebuild for Python 3.8.

---
 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 646e7129443..289b5ef1d0d 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=1
+revision=2
 archs=noarch
 short_desc="Python 3 Tkinter widget toolkit"
 homepage="http://pmw.sourceforge.net/"

From 760b2aa66f385f882c6da4545bc93c906a387d73 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 382/870] python-podcastparser: rebuild for Python 3.8.

---
 srcpkgs/python-podcastparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-podcastparser/template b/srcpkgs/python-podcastparser/template
index e4847d3ed65..61702f0d28b 100644
--- a/srcpkgs/python-podcastparser/template
+++ b/srcpkgs/python-podcastparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-podcastparser'
 pkgname=python-podcastparser
 version=0.6.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="podcastparser-${version}"
 build_style=python-module

From e0ad0641945e1dea937fb2ca555a61603e4560b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 383/870] python-polib: rebuild for Python 3.8.

---
 srcpkgs/python-polib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-polib/template b/srcpkgs/python-polib/template
index b0ade05d90d..8b8d4b66c68 100644
--- a/srcpkgs/python-polib/template
+++ b/srcpkgs/python-polib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-polib'
 pkgname=python-polib
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="polib-${version}"
 build_style=python-module

From 0030be5c9ea47539a72b9d5b5131abeac8412e47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 384/870] python-portend: rebuild for Python 3.8.

---
 srcpkgs/python-portend/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python-portend/template b/srcpkgs/python-portend/template
index 216ae413d09..0538f68083f 100644
--- a/srcpkgs/python-portend/template
+++ b/srcpkgs/python-portend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-portend'
 pkgname=python-portend
 version=2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="portend-${version}"
 build_style=python-module
@@ -14,7 +14,7 @@ license="MIT"
 homepage="https://github.com/jaraco/portend"
 changelog="https://github.com/jaraco/portend/blob/master/CHANGES.rst"
 distfiles="https://github.com/jaraco/portend/archive/${version}.tar.gz"
-checksum=61aa1a8fd76d64bd6093e4151a2bfeda177d5083bf2e2bcc92a053bd2104fde3
+checksum=c0740375a19168e117d291e7ed307e985d2c0e2dc732ca97444bc58a28076dfa
 
 pre_build() {
 	sed -i setup.py \

From 86c2211e1837e156275077b9efe1e25572514867 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 385/870] python-prctl: rebuild for Python 3.8.

---
 srcpkgs/python-prctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prctl/template b/srcpkgs/python-prctl/template
index 2b420d655cf..e8bf54b98fd 100644
--- a/srcpkgs/python-prctl/template
+++ b/srcpkgs/python-prctl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prctl'
 pkgname=python-prctl
 version=1.7
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="prctl.py"
 hostmakedepends="python-setuptools python3-setuptools libcap-devel"

From e7c53afc196d066076f9117158bd6a0b7b28bf52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 386/870] python3-precis-i18n: rebuild for Python 3.8.

---
 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 19612bc818b..be7bb0b0b56 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=1
+revision=2
 archs=noarch
 wrksrc="precis_i18n-${version}"
 build_style=python3-module

From fc6a6a6ae9e2454bc6e5aa117ab2f5f747f1c3d2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 387/870] python-pretend: rebuild for Python 3.8.

---
 srcpkgs/python-pretend/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pretend/template b/srcpkgs/python-pretend/template
index 9a647271b57..6d8063fc43a 100644
--- a/srcpkgs/python-pretend/template
+++ b/srcpkgs/python-pretend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pretend'
 pkgname=python-pretend
 version=1.0.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pretend-${version}"
 build_style=python-module

From 990266b8ce207f64d2a8e2f2f2c11473236e4a2d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 388/870] python-progress: rebuild for Python 3.8.

---
 srcpkgs/python-progress/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-progress/template b/srcpkgs/python-progress/template
index 7d3924e3618..0d6bd1db69d 100644
--- a/srcpkgs/python-progress/template
+++ b/srcpkgs/python-progress/template
@@ -1,7 +1,7 @@
 # Template file for 'python-progress'
 pkgname=python-progress
 version=1.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="progress-${version}"
 build_style=python-module

From 1259abece823637c18eaca058493cebdf15842ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 389/870] python-prometheus_client: rebuild for Python 3.8.

---
 srcpkgs/python-prometheus_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prometheus_client/template b/srcpkgs/python-prometheus_client/template
index 46df561f7d4..7b71fbeffc2 100644
--- a/srcpkgs/python-prometheus_client/template
+++ b/srcpkgs/python-prometheus_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prometheus_client'
 pkgname=python-prometheus_client
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="prometheus_client-${version}"
 build_style=python-module

From 67527aa7cf723b45f2c49017717337d56884bf4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 390/870] python-prompt_toolkit1: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit1/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit1/template b/srcpkgs/python-prompt_toolkit1/template
index d117d620ba5..7afe6179f33 100644
--- a/srcpkgs/python-prompt_toolkit1/template
+++ b/srcpkgs/python-prompt_toolkit1/template
@@ -2,7 +2,7 @@
 pkgname=python-prompt_toolkit1
 reverts="2.0.9_1"
 version=1.0.15
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From ad672131c8ab27e3e4dfa04ab7264c23d46f206e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 391/870] python-prompt_toolkit2: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit2/template b/srcpkgs/python-prompt_toolkit2/template
index 0fa71fa06dc..d7f2fd11e14 100644
--- a/srcpkgs/python-prompt_toolkit2/template
+++ b/srcpkgs/python-prompt_toolkit2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prompt_toolkit2'
 pkgname=python-prompt_toolkit2
 version=2.0.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From 2d3dfe28989a26dbea6bd90097a7a4046839373e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 392/870] python-proselint: rebuild for Python 3.8.

---
 srcpkgs/python-proselint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-proselint/template b/srcpkgs/python-proselint/template
index c017c497386..b1da90de474 100644
--- a/srcpkgs/python-proselint/template
+++ b/srcpkgs/python-proselint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-proselint'
 pkgname=python-proselint
 version=0.10.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="proselint-${version}"
 build_style=python-module

From 3dceefa27e529cfd28f51c8b96cec007bd4464e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 393/870] python-protobuf: rebuild for Python 3.8.

---
 srcpkgs/python-protobuf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-protobuf/template b/srcpkgs/python-protobuf/template
index 4b736f1e7af..7dbed97fb76 100644
--- a/srcpkgs/python-protobuf/template
+++ b/srcpkgs/python-protobuf/template
@@ -1,7 +1,7 @@
 # Template file for 'python-protobuf'
 pkgname=python-protobuf
 version=3.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="protobuf-${version}"
 build_style=python-module

From abc13cfff04878580efaf4333ca9548112b11049 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 394/870] python-psutil: rebuild for Python 3.8.

---
 srcpkgs/python-psutil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psutil/template b/srcpkgs/python-psutil/template
index 96cbb3c399f..11353ed2179 100644
--- a/srcpkgs/python-psutil/template
+++ b/srcpkgs/python-psutil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psutil'
 pkgname=python-psutil
 version=5.6.3
-revision=1
+revision=2
 wrksrc="psutil-${version}"
 build_style=python-module
 pycompile_module="psutil"

From 970bcf29dafb825894593f644c2fb7b4f1b86aff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 395/870] python-psycopg2: rebuild for Python 3.8.

---
 srcpkgs/python-psycopg2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psycopg2/template b/srcpkgs/python-psycopg2/template
index f41de2880e6..14b28b8aed1 100644
--- a/srcpkgs/python-psycopg2/template
+++ b/srcpkgs/python-psycopg2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psycopg2'
 pkgname=python-psycopg2
 version=2.8.3
-revision=1
+revision=2
 wrksrc="psycopg2-${version}"
 build_style=python-module
 pycompile_module="psycopg2"

From f987fad321d899f07d159588838ad3f3bfd1eb12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 396/870] python-ptyprocess: rebuild for Python 3.8.

---
 srcpkgs/python-ptyprocess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ptyprocess/template b/srcpkgs/python-ptyprocess/template
index 04c4cf89391..fd2e51fa3ac 100644
--- a/srcpkgs/python-ptyprocess/template
+++ b/srcpkgs/python-ptyprocess/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ptyprocess'
 pkgname=python-ptyprocess
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ptyprocess-${version}"
 build_style=python-module

From 6854ff4b103875e8ed393d695b71afd7a2589626 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 397/870] python3-pulsectl: rebuild for Python 3.8.

---
 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 429dd1abe45..045afdb411b 100644
--- a/srcpkgs/python3-pulsectl/template
+++ b/srcpkgs/python3-pulsectl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pulsectl'
 pkgname=python3-pulsectl
 version=19.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pulsectl-${version}"
 build_style=python3-module

From e8331ef1c889bc2b1756c6ed55a1cc93186445af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 398/870] python-py: rebuild for Python 3.8.

---
 srcpkgs/python-py/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-py/template b/srcpkgs/python-py/template
index 99644bc228a..07a1ae2a21b 100644
--- a/srcpkgs/python-py/template
+++ b/srcpkgs/python-py/template
@@ -1,7 +1,7 @@
 # Template file for 'python-py'
 pkgname=python-py
 version=1.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="py-${version}"
 build_style=python-module

From 1f71c5025d9cb40d86e4245b6a90731b3f25c6fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 399/870] python-pyPEG2: rebuild for Python 3.8.

---
 srcpkgs/python-pyPEG2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyPEG2/template b/srcpkgs/python-pyPEG2/template
index 113948af730..6ba175687f1 100644
--- a/srcpkgs/python-pyPEG2/template
+++ b/srcpkgs/python-pyPEG2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyPEG2'
 pkgname=python-pyPEG2
 version=2.15.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 3f82483327ba7958b0a6f8b67e63abf009c360ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 400/870] python-pyacoustid: rebuild for Python 3.8.

---
 srcpkgs/python-pyacoustid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyacoustid/template b/srcpkgs/python-pyacoustid/template
index 068d3d52649..d5b2d967f4e 100644
--- a/srcpkgs/python-pyacoustid/template
+++ b/srcpkgs/python-pyacoustid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyacoustid'
 pkgname=python-pyacoustid
 version=1.1.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyacoustid-${version}"
 build_style=python-module

From da477a37411d7cf0d00da2dea60d734072705be7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 401/870] python-pyaes: rebuild for Python 3.8.

---
 srcpkgs/python-pyaes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyaes/template b/srcpkgs/python-pyaes/template
index a8c812a9e01..d31766d0481 100644
--- a/srcpkgs/python-pyaes/template
+++ b/srcpkgs/python-pyaes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyaes'
 pkgname=python-pyaes
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyaes-${version}"
 build_style=python-module

From 9e2b6fe7e7b67777d70eb25705c27d4ed6462a3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 402/870] python-pyasn1: rebuild for Python 3.8.

---
 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 510dfa09816..fcddad43633 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyasn1-${version}"
 build_style=python-module

From 712c6a81632d8741a302138a46ffd3b1c8fb079f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 403/870] python-pyasn1-modules: rebuild for Python 3.8.

---
 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 bc19e4940ed..b142819a272 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 989e8e1bc0a51f2fa1a88ec8f99eae20dd3e21ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 404/870] python3-pycares: rebuild for Python 3.8.

---
 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 c52702904b4..ed82808bada 100644
--- a/srcpkgs/python3-pycares/template
+++ b/srcpkgs/python3-pycares/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pycares'
 pkgname=python3-pycares
 version=2.3.0
-revision=2
+revision=3
 wrksrc="pycares-${version}"
 build_style=python3-module
 pycompile_module="pycares"

From 0885c6a30ff0765b465e0e4c84803b48b9090dc5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 405/870] python-pycodestyle: rebuild for Python 3.8.

---
 srcpkgs/python-pycodestyle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycodestyle/template b/srcpkgs/python-pycodestyle/template
index ca20d8e0c97..08bc8c8bec7 100644
--- a/srcpkgs/python-pycodestyle/template
+++ b/srcpkgs/python-pycodestyle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycodestyle'
 pkgname=python-pycodestyle
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycodestyle-${version}"
 build_style=python-module

From 61d0268320bb8306c2b2823a663588c885a01df6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 406/870] python-pycountry: rebuild for Python 3.8.

---
 srcpkgs/python-pycountry/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycountry/template b/srcpkgs/python-pycountry/template
index 88a0025f258..205db6240b7 100644
--- a/srcpkgs/python-pycountry/template
+++ b/srcpkgs/python-pycountry/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycountry'
 pkgname=python-pycountry
 version=18.12.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycountry-${version}"
 build_style=python-module

From e3a689e939cf482e09d50cf25b8f244cbec3dc12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 407/870] python-pycparser: rebuild for Python 3.8.

---
 srcpkgs/python-pycparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycparser/template b/srcpkgs/python-pycparser/template
index a521b3494ab..d2e83aa79b2 100644
--- a/srcpkgs/python-pycparser/template
+++ b/srcpkgs/python-pycparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycparser'
 pkgname=python-pycparser
 version=2.19
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycparser-${version}"
 build_style=python-module

From a86a5e2a75c91a868bf9b10f7ad9d86ca4df85d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 408/870] python-pycryptodome: rebuild for Python 3.8.

---
 srcpkgs/python-pycryptodome/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycryptodome/template b/srcpkgs/python-pycryptodome/template
index f01b5731c45..a4368d61b39 100644
--- a/srcpkgs/python-pycryptodome/template
+++ b/srcpkgs/python-pycryptodome/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycryptodome'
 pkgname=python-pycryptodome
 version=3.9.0
-revision=1
+revision=2
 wrksrc="pycryptodome-${version}"
 build_style=python-module
 pycompile_module="Crypto"

From 0cd2d63524942e2cfe5220436720dab24ef75308 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 409/870] python-pyelftools: rebuild for Python 3.8.

---
 srcpkgs/python-pyelftools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyelftools/template b/srcpkgs/python-pyelftools/template
index a6e9e9b644e..193650442fc 100644
--- a/srcpkgs/python-pyelftools/template
+++ b/srcpkgs/python-pyelftools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyelftools'
 pkgname=python-pyelftools
 version=0.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyelftools-${version}"
 build_style=python-module

From 61ae993767f544e608a601e6727e58b8c73400fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 410/870] python3-pyfiglet: rebuild for Python 3.8.

---
 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 d00b4fda62a..a4a67b12d42 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=1
+revision=2
 archs=noarch
 wrksrc="pyfiglet-${version}"
 build_style="python3-module"

From 7f5bd3a27f56badc9d95d3b2b7a684604262af1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 411/870] python-pyflakes: rebuild for Python 3.8.

---
 srcpkgs/python-pyflakes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyflakes/template b/srcpkgs/python-pyflakes/template
index 86d477c47f2..19229ebb3a4 100644
--- a/srcpkgs/python-pyflakes/template
+++ b/srcpkgs/python-pyflakes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyflakes'
 pkgname=python-pyflakes
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyflakes-${version}"
 build_style=python-module

From a811c56d34b1f53ac8aeca03f5247410137fe8d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 412/870] python-pygame: rebuild for Python 3.8.

---
 srcpkgs/python-pygame/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pygame/template b/srcpkgs/python-pygame/template
index a510333df6e..a900d62dbe3 100644
--- a/srcpkgs/python-pygame/template
+++ b/srcpkgs/python-pygame/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pygame'
 pkgname=python-pygame
 version=1.9.4
-revision=2
+revision=3
 wrksrc="pygame-${version}"
 build_style=python-module
 pycompile_module="pygame"

From e62822b2e5fa56868e80f10a019c7a0d66abbcbd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 413/870] python-pyglet: rebuild for Python 3.8.

---
 srcpkgs/python-pyglet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyglet/template b/srcpkgs/python-pyglet/template
index f8315bdf616..ee6ed16064c 100644
--- a/srcpkgs/python-pyglet/template
+++ b/srcpkgs/python-pyglet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyglet'
 pkgname=python-pyglet
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyglet-${version}"
 build_style=python-module

From 1f0bf2cea3a10c9982132fbe81c5ebd884defa35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 414/870] python3-pykeepass: rebuild for Python 3.8.

---
 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 c0e0fd4db41..135da6fea65 100644
--- a/srcpkgs/python3-pykeepass/template
+++ b/srcpkgs/python3-pykeepass/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pykeepass'
 pkgname=python3-pykeepass
 version=3.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="pykeepass-${version}"
 build_style=python3-module

From f2d7f9a6199d6780975ad9efb639642e96acc8c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 415/870] python3-pykwalify: rebuild for Python 3.8.

---
 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 27bc0c37355..b3727aba651 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pykwalify-${version}"
 build_style=python3-module

From cb348b8cc013bee10cb1adcdd5b9dac8e8f37a83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 416/870] python3-pylast: rebuild for Python 3.8.

---
 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 187b51943a8..60184348d80 100644
--- a/srcpkgs/python3-pylast/template
+++ b/srcpkgs/python3-pylast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylast'
 pkgname=python3-pylast
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylast-${version}"
 build_style=python3-module

From 6629ec0088134c22cfb115f29fd4a90a9b38e7a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 417/870] python3-pylibgen: rebuild for Python 3.8.

---
 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 641bf649c17..540ccb32790 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylibgen-${version}"
 build_style=python3-module

From 953751fa6deeafefea78df4f5ec27ee5c5c9902d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 418/870] python3-pylint: rebuild for Python 3.8.

---
 srcpkgs/python3-pylint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pylint/template b/srcpkgs/python3-pylint/template
index 6c8800069f0..315dbffb3fc 100644
--- a/srcpkgs/python3-pylint/template
+++ b/srcpkgs/python3-pylint/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylint'
 pkgname=python3-pylint
 version=2.3.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="pylint-${version}"
 build_style=python3-module

From 96bc4e17e1f144c3528e0ec3b455d501c2c3efdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 419/870] python-pynacl: rebuild for Python 3.8.

---
 srcpkgs/python-pynacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pynacl/template b/srcpkgs/python-pynacl/template
index 6ead91820b1..7a7fe246821 100644
--- a/srcpkgs/python-pynacl/template
+++ b/srcpkgs/python-pynacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pynacl'
 pkgname=python-pynacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python-module
 pycompile_module="nacl"

From ec1da9dfd353e059b23780a676ef1561f56f9b2e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 420/870] python-pyotp: rebuild for Python 3.8.

---
 srcpkgs/python-pyotp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyotp/template b/srcpkgs/python-pyotp/template
index 54714ee2ebb..b70bd73d4aa 100644
--- a/srcpkgs/python-pyotp/template
+++ b/srcpkgs/python-pyotp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyotp'
 pkgname=python-pyotp
 version=2.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyotp-${version}"
 build_style=python-module

From 3c83515599af94f7483a3e165f03547f9daa2835 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 421/870] python-pyperclip: rebuild for Python 3.8.

---
 srcpkgs/python-pyperclip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyperclip/template b/srcpkgs/python-pyperclip/template
index 512dc8d3dfb..b173f1479a5 100644
--- a/srcpkgs/python-pyperclip/template
+++ b/srcpkgs/python-pyperclip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyperclip'
 pkgname=python-pyperclip
 version=1.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=pyperclip-${version}
 build_style=python-module

From 6d17f7510d6ce4ec430e8bf72567fecdbd521681 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 422/870] python-pyqtgraph: rebuild for Python 3.8.

---
 srcpkgs/python-pyqtgraph/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyqtgraph/template b/srcpkgs/python-pyqtgraph/template
index f90e2b15319..1bea9c2ffdf 100644
--- a/srcpkgs/python-pyqtgraph/template
+++ b/srcpkgs/python-pyqtgraph/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyqtgraph'
 pkgname=python-pyqtgraph
 version=0.10.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${pkgname#*-}-${version}"
 build_style=python-module

From fff21c3dd38242e2992b276e00f6970f96a34293 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 423/870] python-pyrfc3339: rebuild for Python 3.8.

---
 srcpkgs/python-pyrfc3339/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyrfc3339/template b/srcpkgs/python-pyrfc3339/template
index 618e46d1c4b..cd81c4d0624 100644
--- a/srcpkgs/python-pyrfc3339/template
+++ b/srcpkgs/python-pyrfc3339/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyrfc3339'
 pkgname=python-pyrfc3339
 version=1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="pyrfc3339"

From bdfc6ef4d47bd373ff649510c96f640b48da738a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 424/870] python-pyscss: rebuild for Python 3.8.

---
 srcpkgs/python-pyscss/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyscss/template b/srcpkgs/python-pyscss/template
index 1f7d8b7d8cd..1a8e9c44d7d 100644
--- a/srcpkgs/python-pyscss/template
+++ b/srcpkgs/python-pyscss/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyscss'
 pkgname=python-pyscss
 version=1.3.5
-revision=6
+revision=7
 wrksrc="pyScss-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pcre-devel"

From 6bdfad32f6894df0a7f3eb185662fa32228408ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 425/870] python3-pysdl2: rebuild for Python 3.8.

---
 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 d59ea7d7fa2..3efdca5b667 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=1
+revision=2
 archs=noarch
 wrksrc="py-sdl2-rel_${version//./_}"
 build_style=python3-module

From 67dab081767478a600fbc44d5333dc2746a683ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 426/870] python-pyserial: rebuild for Python 3.8.

---
 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 8808e76d206..354be493b16 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=2
+revision=3
 archs=noarch
 wrksrc="pyserial-${version}"
 build_style=python-module

From a6914f6aa35af001fd954260658bed6e1e5df2bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 427/870] python3-pyside2: rebuild for Python 3.8.

---
 srcpkgs/python3-pyside2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pyside2/template b/srcpkgs/python3-pyside2/template
index a5d60b17568..1da3400f239 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.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From deee942f64ef5e0e70f6a45a7f9e3a2593d53add Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 428/870] python3-pysigset: rebuild for Python 3.8.

---
 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 8de87145a09..50d9162ea70 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.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysigset-${version}"
 build_style=python3-module

From 913752d5b84f0054c829fc060939c366bf5b28cb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 429/870] python-pysocks: rebuild for Python 3.8.

---
 srcpkgs/python-pysocks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysocks/template b/srcpkgs/python-pysocks/template
index 68a27819e3d..d9b216aeab8 100644
--- a/srcpkgs/python-pysocks/template
+++ b/srcpkgs/python-pysocks/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysocks'
 pkgname=python-pysocks
 version=1.6.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="PySocks-${version}"
 build_style=python-module

From e256b35c573b66ccaaffbf92ee92ecad250db3c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 430/870] python3-pysol_cards: rebuild for Python 3.8.

---
 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 e03d92fe077..a37429754a2 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.8.6
-revision=1
+revision=2
 wrksrc="pysol_cards-${version}"
 build_style=python3-module
 pycompile_module="pysol_cards"

From d29dab0ddee296649a1f4ace5c33678cc349d6ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 431/870] python-pysrt: rebuild for Python 3.8.

---
 srcpkgs/python-pysrt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysrt/template b/srcpkgs/python-pysrt/template
index 061435a52c7..7e154825bef 100644
--- a/srcpkgs/python-pysrt/template
+++ b/srcpkgs/python-pysrt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysrt'
 pkgname=python-pysrt
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysrt-${version}"
 build_style=python-module

From 4ba7eb802460f8e4e15f1389bebd64237c6f1aec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 432/870] python-pystache: rebuild for Python 3.8.

---
 srcpkgs/python-pystache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pystache/template b/srcpkgs/python-pystache/template
index 13f8b04aa88..c1a5bcd57d9 100644
--- a/srcpkgs/python-pystache/template
+++ b/srcpkgs/python-pystache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pystache'
 pkgname=python-pystache
 version=0.5.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pystache-${version}"
 build_style=python-module

From a6a1d8010f3909cc551f70485efc660b22168f46 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 433/870] python-pyte: rebuild for Python 3.8.

---
 srcpkgs/python-pyte/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyte/template b/srcpkgs/python-pyte/template
index 43b708adc66..76efbec91d1 100644
--- a/srcpkgs/python-pyte/template
+++ b/srcpkgs/python-pyte/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyte'
 pkgname=python-pyte
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyte-${version}"
 build_style=python-module

From 03679e357b0bdbd90ddbb6deba5693594ef9d592 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 434/870] python-pytest: rebuild for Python 3.8.

---
 srcpkgs/python-pytest/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest/template b/srcpkgs/python-pytest/template
index 6481f21e677..d5c246599c6 100644
--- a/srcpkgs/python-pytest/template
+++ b/srcpkgs/python-pytest/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest'
 pkgname=python-pytest
 version=3.7.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From d8ff8818fa4f90c63cf468feb2bba5d8b9dca026 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 435/870] python3-pytest-asyncio: rebuild for Python 3.8.

---
 srcpkgs/python3-pytest-asyncio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template
index bd104f99e2c..0c90d33a9e5 100644
--- a/srcpkgs/python3-pytest-asyncio/template
+++ b/srcpkgs/python3-pytest-asyncio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pytest-asyncio'
 pkgname=python3-pytest-asyncio
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytest-asyncio-${version}"
 build_style=python3-module

From 8bdff4905b1d2e832656b8dde532b566e516752c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 436/870] python-pytest-fixture-config: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-fixture-config/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-fixture-config/template b/srcpkgs/python-pytest-fixture-config/template
index cd3e38a592a..14255af8a35 100644
--- a/srcpkgs/python-pytest-fixture-config/template
+++ b/srcpkgs/python-pytest-fixture-config/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-fixture-config'
 pkgname=python-pytest-fixture-config
 version=1.3.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 89c93c6cebe4d9e57d61a6e1c0d1782514496073 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 437/870] python-pytest-mock: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-mock/template b/srcpkgs/python-pytest-mock/template
index f3dc85810b6..240e8773aaa 100644
--- a/srcpkgs/python-pytest-mock/template
+++ b/srcpkgs/python-pytest-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-mock'
 pkgname=python-pytest-mock
 version=1.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From e10ffc843814c368a7fd76e24e6afa8512ce198c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 438/870] python-pytz: rebuild for Python 3.8.

---
 srcpkgs/python-pytz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytz/template b/srcpkgs/python-pytz/template
index d6becf829a7..40f582962c8 100644
--- a/srcpkgs/python-pytz/template
+++ b/srcpkgs/python-pytz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytz'
 pkgname=python-pytz
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytz-${version}"
 build_style=python-module

From 562767d788b8e163bcde2dbd45de9eca2899bd90 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 439/870] python-pyudev: rebuild for Python 3.8.

---
 srcpkgs/python-pyudev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyudev/template b/srcpkgs/python-pyudev/template
index d059b7882a2..2ec53088636 100644
--- a/srcpkgs/python-pyudev/template
+++ b/srcpkgs/python-pyudev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyudev'
 pkgname=python-pyudev
 version=0.21.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyudev-${version}"
 build_style=python-module

From bb91a3d4616a0e9dbf1a34b271d62527a455f4ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 440/870] python3-pyx: rebuild for Python 3.8.

---
 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 87608c43428..89963bed89f 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.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="PyX-${version}"
 build_style=python3-module

From caa3ad83cde6d2b66687ae0ac2bb87dfd8eb100f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 441/870] python-pyzbar: rebuild for Python 3.8.

---
 srcpkgs/python-pyzbar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzbar/template b/srcpkgs/python-pyzbar/template
index 06ae37a5708..35b568eb4e6 100644
--- a/srcpkgs/python-pyzbar/template
+++ b/srcpkgs/python-pyzbar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzbar'
 pkgname=python-pyzbar
 version=0.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyzbar-${version}"
 build_style=python-module

From 83e0ba8fd12c3f07b4f3c2f8109ff0cd9a69353b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 442/870] python-pyzmq: rebuild for Python 3.8.

---
 srcpkgs/python-pyzmq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzmq/template b/srcpkgs/python-pyzmq/template
index 859aab5983d..27dbe29e516 100644
--- a/srcpkgs/python-pyzmq/template
+++ b/srcpkgs/python-pyzmq/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzmq'
 pkgname=python-pyzmq
 version=18.0.1
-revision=1
+revision=2
 wrksrc="pyzmq-${version}"
 build_style=python-module
 make_build_args="--zmq=${XBPS_CROSS_BASE}/usr"

From 2d71150f372801e322d8ee5f31b2bc67795fc3a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 443/870] python-qrcode: rebuild for Python 3.8.

---
 srcpkgs/python-qrcode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-qrcode/template b/srcpkgs/python-qrcode/template
index 9deb485855f..bf35c82757e 100644
--- a/srcpkgs/python-qrcode/template
+++ b/srcpkgs/python-qrcode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-qrcode'
 pkgname=python-qrcode
 version=6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="qrcode-${version}"
 build_style=python-module

From 55eeefa7bb378b38024ce5c57d228c5d2c24875f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 444/870] python-random2: rebuild for Python 3.8.

---
 srcpkgs/python-random2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-random2/template b/srcpkgs/python-random2/template
index 92f36fee139..2603cae3584 100644
--- a/srcpkgs/python-random2/template
+++ b/srcpkgs/python-random2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-random2'
 pkgname=python-random2
 version=1.0.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="random2-${version}"
 build_style=python-module

From 4aa520f994404a836b859a95bf53280ec662d779 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 445/870] python-rarfile: rebuild for Python 3.8.

---
 srcpkgs/python-rarfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rarfile/template b/srcpkgs/python-rarfile/template
index e0c597c1fb1..e3b6f3e2887 100644
--- a/srcpkgs/python-rarfile/template
+++ b/srcpkgs/python-rarfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rarfile'
 pkgname=python-rarfile
 version=3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="rarfile-${version}"
 build_style=python-module

From 77edc413dd0a2b7d7423d47946137d1db7452b91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 446/870] python-raven: rebuild for Python 3.8.

---
 srcpkgs/python-raven/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-raven/template b/srcpkgs/python-raven/template
index eec4e5f49b6..87382c21602 100644
--- a/srcpkgs/python-raven/template
+++ b/srcpkgs/python-raven/template
@@ -1,7 +1,7 @@
 # Template file for 'python-raven'
 pkgname=python-raven
 version=6.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="raven-${version}"
 build_style=python-module

From 0fd244bc29d49109b475295b68c11c496626bd43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 447/870] python-rdflib: rebuild for Python 3.8.

---
 srcpkgs/python-rdflib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rdflib/template b/srcpkgs/python-rdflib/template
index 0512abb0e5a..f676dedfb2f 100644
--- a/srcpkgs/python-rdflib/template
+++ b/srcpkgs/python-rdflib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rdflib'
 pkgname=python-rdflib
 version=4.2.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="rdflib-${version}"
 build_style=python-module

From 52682c54b0a7808306dcb6c0c9af5436d056d6a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 448/870] python-readability-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-readability-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-readability-lxml/template b/srcpkgs/python-readability-lxml/template
index ddf0602b730..19dadaa336f 100644
--- a/srcpkgs/python-readability-lxml/template
+++ b/srcpkgs/python-readability-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-readability-lxml'
 pkgname=python-readability-lxml
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="readability-lxml-${version}"
 build_style=python-module

From 5b239aeb5613465b0d414e14b8b37a83f65232fc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 449/870] python3-readlike: rebuild for Python 3.8.

---
 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 cbba969b076..43159962442 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=1
+revision=2
 archs=noarch
 wrksrc=readlike-${version}
 build_style=python3-module

From 10ff7da432e0f1563ed8c4feb921648f20e75246 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 450/870] python-rebulk: rebuild for Python 3.8.

---
 srcpkgs/python-rebulk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rebulk/template b/srcpkgs/python-rebulk/template
index 1cf6cf623c8..8f9c2621304 100644
--- a/srcpkgs/python-rebulk/template
+++ b/srcpkgs/python-rebulk/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rebulk'
 pkgname=python-rebulk
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rebulk-${version}"
 build_style=python-module

From b720f89f9fb6ecb79aa43ff92f151239049cb9c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 451/870] python-redis: rebuild for Python 3.8.

---
 srcpkgs/python-redis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-redis/template b/srcpkgs/python-redis/template
index f57c0d841b3..b7e773fde54 100644
--- a/srcpkgs/python-redis/template
+++ b/srcpkgs/python-redis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-redis'
 pkgname=python-redis
 version=2.10.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="redis-${version}"
 build_style=python-module

From 90d47f03a3f7a55f623c0b5019b0b58b6169aae5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 452/870] python-regex: rebuild for Python 3.8.

---
 srcpkgs/python-regex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-regex/template b/srcpkgs/python-regex/template
index 33e99b0127b..7a624db9477 100644
--- a/srcpkgs/python-regex/template
+++ b/srcpkgs/python-regex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-regex'
 pkgname=python-regex
 version=2019.08.19
-revision=1
+revision=2
 wrksrc="regex-${version}"
 build_style=python-module
 pycompile_module="_regex_core.py regex.py test_regex.py"

From e132fc559392a2f2a5268100218ef2061759c476 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 453/870] python-rencode: rebuild for Python 3.8.

---
 srcpkgs/python-rencode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rencode/template b/srcpkgs/python-rencode/template
index 7176038a60a..021e1d414b8 100644
--- a/srcpkgs/python-rencode/template
+++ b/srcpkgs/python-rencode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rencode'
 pkgname=python-rencode
 version=1.0.6
-revision=2
+revision=3
 wrksrc="rencode-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"

From 635743944483bd5fdbf4a909ef4874532f1035b9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 454/870] python-reportlab: rebuild for Python 3.8.

---
 srcpkgs/python-reportlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-reportlab/template b/srcpkgs/python-reportlab/template
index 7f153d65a2a..3915767b6d3 100644
--- a/srcpkgs/python-reportlab/template
+++ b/srcpkgs/python-reportlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-reportlab'
 pkgname=python-reportlab
 version=3.5.23
-revision=1
+revision=2
 wrksrc="reportlab-${version}"
 build_style=python-module
 pycompile_module="reportlab"

From 4a6d7b1e5e0d64a6834cc210da11806cbe217453 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 455/870] python-requests: rebuild for Python 3.8.

---
 srcpkgs/python-requests/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests/template b/srcpkgs/python-requests/template
index fc806b611e9..73d2d5945ef 100644
--- a/srcpkgs/python-requests/template
+++ b/srcpkgs/python-requests/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests'
 pkgname=python-requests
 version=2.22.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-${version}"
 build_style=python-module

From 61f6560b710773eab8296ef28bd943f5dc0d290d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 456/870] python-requests-mock: rebuild for Python 3.8.

---
 srcpkgs/python-requests-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-mock/template b/srcpkgs/python-requests-mock/template
index 5b89b5ed3b8..2d1410fcd1b 100644
--- a/srcpkgs/python-requests-mock/template
+++ b/srcpkgs/python-requests-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-mock'
 pkgname=python-requests-mock
 version=1.5.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="requests-mock-${version}"
 build_style=python-module

From f4f04d85ce7abb39fbbf306bc3c1dcfc467cdf14 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 457/870] python-requests-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-requests-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-oauthlib/template b/srcpkgs/python-requests-oauthlib/template
index b011ea17a36..8cd838090a7 100644
--- a/srcpkgs/python-requests-oauthlib/template
+++ b/srcpkgs/python-requests-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-oauthlib'
 pkgname=python-requests-oauthlib
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5853f21b57bde4c4e66293b132fba4fc03804518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 458/870] python-requests-toolbelt: rebuild for Python 3.8.

---
 srcpkgs/python-requests-toolbelt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-toolbelt/template b/srcpkgs/python-requests-toolbelt/template
index 3ba66a0a007..13a81586221 100644
--- a/srcpkgs/python-requests-toolbelt/template
+++ b/srcpkgs/python-requests-toolbelt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-toolbelt'
 pkgname=python-requests-toolbelt
 version=0.9.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 14171483829854051f0c8030562c1052094d78c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 459/870] python3-requests-unixsocket: rebuild for Python 3.8.

---
 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 ec9e1074566..fd389ec2d13 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-unixsocket-${version}"
 build_style=python3-module

From 9b589212b423bd7e2dfbb7ab7ef63c65b9dd07cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 460/870] python-rfc6555: rebuild for Python 3.8.

---
 srcpkgs/python-rfc6555/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rfc6555/template b/srcpkgs/python-rfc6555/template
index c3babc25b93..2522872cc32 100644
--- a/srcpkgs/python-rfc6555/template
+++ b/srcpkgs/python-rfc6555/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rfc6555'
 pkgname=python-rfc6555
 version=0.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rfc6555-${version}"
 build_style=python-module

From a399a96d8293a9387f5648001a03178d2550059b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 461/870] python-ripe-atlas-cousteau: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-cousteau/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-cousteau/template b/srcpkgs/python-ripe-atlas-cousteau/template
index ac16300fe3d..72f32a9da0d 100644
--- a/srcpkgs/python-ripe-atlas-cousteau/template
+++ b/srcpkgs/python-ripe-atlas-cousteau/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-cousteau'
 pkgname=python-ripe-atlas-cousteau
 version=1.4.2
-revision=1
+revision=2
 build_style=python-module
 archs=noarch
 pycompile_module="ripe/atlas/cousteau"

From 4c2ddc085f45f52b438013ad3d494f8f59859504 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 462/870] python-ripe-atlas-sagan: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-sagan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-sagan/template b/srcpkgs/python-ripe-atlas-sagan/template
index 60a9b883b93..22abb48af46 100644
--- a/srcpkgs/python-ripe-atlas-sagan/template
+++ b/srcpkgs/python-ripe-atlas-sagan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-sagan'
 pkgname=python-ripe-atlas-sagan
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ripe.atlas.sagan-${version}"
 build_style=python-module

From 10e7db3d51d8370e317d667edc372d0fcfd5bad9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 463/870] python-rsa: rebuild for Python 3.8.

---
 srcpkgs/python-rsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rsa/template b/srcpkgs/python-rsa/template
index a4ae59846ff..11e9bf2c60d 100644
--- a/srcpkgs/python-rsa/template
+++ b/srcpkgs/python-rsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rsa'
 pkgname=python-rsa
 version=4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a3bbda3918c5b4bb668860ba5bbd81f83f1a4925 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 464/870] python3-rsistent: rebuild for Python 3.8.

---
 srcpkgs/python3-rsistent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-rsistent/template b/srcpkgs/python3-rsistent/template
index 13019f472cd..7897e107b2b 100644
--- a/srcpkgs/python3-rsistent/template
+++ b/srcpkgs/python3-rsistent/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-rsistent'
 pkgname=python3-rsistent
 version=0.15.4
-revision=1
+revision=2
 wrksrc="pyrsistent-${version}"
 build_style=python3-module
 pycompile_module="pyrsistent"

From 7d4c9082b7051c6ce978ca21f34f138189c7f2d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 465/870] python3-rss2email: rebuild for Python 3.8.

---
 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 d07984d33d8..34e7d4e65a6 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.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="rss2email-${version}"
 build_style=python3-module

From a0a5e6df8a02d98f37c3c22c043adb325c8a8a62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 466/870] python-ruamel.yaml: rebuild for Python 3.8.

---
 srcpkgs/python-ruamel.yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ruamel.yaml/template b/srcpkgs/python-ruamel.yaml/template
index d86ddfc67c9..789f8a7acd2 100644
--- a/srcpkgs/python-ruamel.yaml/template
+++ b/srcpkgs/python-ruamel.yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ruamel.yaml'
 pkgname=python-ruamel.yaml
 version=0.15.92
-revision=1
+revision=2
 wrksrc="ruamel.yaml-${version}"
 build_style=python-module
 pycompile_module="ruamel/yaml"

From 6b579f083949bbd67a78d66ae983de1f36f03a82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 467/870] python3-s-tui: rebuild for Python 3.8.

---
 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 4c7db6ff3c9..85a945b1b09 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=0.8.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="s-tui-${version}"
 build_style=python3-module

From 5cc92799a690ba40dd26192e3f0182e07089683a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 468/870] python-s3transfer: rebuild for Python 3.8.

---
 srcpkgs/python-s3transfer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-s3transfer/template b/srcpkgs/python-s3transfer/template
index e306c3c3b1a..dd92eeff657 100644
--- a/srcpkgs/python-s3transfer/template
+++ b/srcpkgs/python-s3transfer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-s3transfer'
 pkgname=python-s3transfer
 version=0.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="s3transfer-${version}"
 build_style=python-module

From 2ec5386706a289e510b5b03e33cf74e0a23596a6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 469/870] python3-saml2: rebuild for Python 3.8.

---
 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 e94602a82ea..c0dabb5e9d0 100644
--- a/srcpkgs/python3-saml2/template
+++ b/srcpkgs/python3-saml2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-saml2'
 pkgname=python3-saml2
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysaml2-${version}"
 build_style=python3-module

From e856d28eb580f0af5442d11d24ffacdd7fade12b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 470/870] python-scandir: rebuild for Python 3.8.

---
 srcpkgs/python-scandir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scandir/template b/srcpkgs/python-scandir/template
index 774fac91b8f..b02fe6d0281 100644
--- a/srcpkgs/python-scandir/template
+++ b/srcpkgs/python-scandir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scandir'
 pkgname=python-scandir
 version=1.10.0
-revision=2
+revision=3
 wrksrc="scandir-${version}"
 build_style=python-module
 pycompile_module="scandir.py"

From 3b5e1eeb2ce0519b51592cebffc1bd89dce0f96c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 471/870] python3-scard: rebuild for Python 3.8.

---
 srcpkgs/python3-scard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scard/template b/srcpkgs/python3-scard/template
index 793f144a74b..279419ac3e3 100644
--- a/srcpkgs/python3-scard/template
+++ b/srcpkgs/python3-scard/template
@@ -2,7 +2,7 @@
 pkgname=python3-scard
 _pkgname=pyscard
 version=1.9.8
-revision=1
+revision=2
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module
 pycompile_module=smartcard

From f62ba61eaebce26c267e2d453d8e0ea6e005a285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 472/870] python3-scikit-learn: rebuild for Python 3.8.

---
 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 73799b9f420..8ac82167832 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.20.4
-revision=1
+revision=2
 wrksrc="scikit-learn-${version}"
 build_style=python3-module
 pycompile_module="sklearn"

From ccf4f6aa1bd0ba8aaf9499dcacb1320a77221004 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 473/870] python3-scipy: rebuild for Python 3.8.

---
 srcpkgs/python3-scipy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scipy/template b/srcpkgs/python3-scipy/template
index 291ac3734f1..2cef9ac33e1 100644
--- a/srcpkgs/python3-scipy/template
+++ b/srcpkgs/python3-scipy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-scipy'
 pkgname=python3-scipy
 version=1.3.1
-revision=1
+revision=2
 wrksrc="scipy-${version}"
 build_style=python3-module
 pycompile_module="scipy"

From 04cbe0c6403a4ecd9cda36e10bba5d06e472823d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 474/870] python-scour: rebuild for Python 3.8.

---
 srcpkgs/python-scour/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scour/template b/srcpkgs/python-scour/template
index b78cf37f057..0db5b157ce1 100644
--- a/srcpkgs/python-scour/template
+++ b/srcpkgs/python-scour/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scour'
 pkgname=python-scour
 version=0.37
-revision=1
+revision=2
 archs=noarch
 wrksrc="scour-${version}"
 build_style=python-module

From 0fd08871993ece59d562feb8472d05249ae1d76a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 475/870] python3-scruffy: rebuild for Python 3.8.

---
 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 e797b110f42..62a21a74eca 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="scruffy-${version}"
 build_style=python3-module

From 65cb259cf8f67f78fe484e4423fe0006aae17045 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 476/870] python-send2trash: rebuild for Python 3.8.

---
 srcpkgs/python-send2trash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-send2trash/template b/srcpkgs/python-send2trash/template
index 49c3a2b3d77..94f56545695 100644
--- a/srcpkgs/python-send2trash/template
+++ b/srcpkgs/python-send2trash/template
@@ -1,7 +1,7 @@
 # Template file for 'python-send2trash'
 pkgname=python-send2trash
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="send2trash-${version}"
 build_style=python-module

From 04a4413d706d49df8a415b9714091b0e4bb0fdfa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 477/870] python-serpent: rebuild for Python 3.8.

---
 srcpkgs/python-serpent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-serpent/template b/srcpkgs/python-serpent/template
index b60d390c1ab..a40f0d44515 100644
--- a/srcpkgs/python-serpent/template
+++ b/srcpkgs/python-serpent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-serpent'
 pkgname=python-serpent
 version=1.28
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38131f811a874463c71c55408ef6e629166a5b8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 478/870] python-service_identity: rebuild for Python 3.8.

---
 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 eae084c858f..e21a1520a75 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=1
+revision=2
 archs=noarch
 wrksrc="service_identity-${version}"
 build_style=python-module

From 9a538d41d8b848da9da43cd5d6f80428b7208be8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 479/870] setconf: rebuild for Python 3.8.

---
 srcpkgs/setconf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/setconf/template b/srcpkgs/setconf/template
index a3d22376a5b..1911c558c77 100644
--- a/srcpkgs/setconf/template
+++ b/srcpkgs/setconf/template
@@ -1,7 +1,7 @@
 # Template file for 'setconf'
 pkgname=setconf
 version=0.7.6
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="setconf.py"

From aacff3894cc42a49ab1becc06f64f23197302443 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 480/870] python-setproctitle: rebuild for Python 3.8.

---
 srcpkgs/python-setproctitle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setproctitle/template b/srcpkgs/python-setproctitle/template
index d0d41ae888d..c47e3a9db53 100644
--- a/srcpkgs/python-setproctitle/template
+++ b/srcpkgs/python-setproctitle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setproctitle'
 pkgname=python-setproctitle
 version=1.1.10
-revision=5
+revision=6
 wrksrc="setproctitle-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e2b8c2ac8d355cdb0f221b80ab39e2ef92beb3e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 481/870] python-setuptools: rebuild for Python 3.8.

---
 srcpkgs/python-setuptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setuptools/template b/srcpkgs/python-setuptools/template
index 382a9b45bcd..a172f8e8e09 100644
--- a/srcpkgs/python-setuptools/template
+++ b/srcpkgs/python-setuptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setuptools'
 pkgname=python-setuptools
 version=41.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python-module

From 5feb793ba33633318f41644f84b5ffd5428e2d4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 482/870] python-sh: rebuild for Python 3.8.

---
 srcpkgs/python-sh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sh/template b/srcpkgs/python-sh/template
index 1826986b25c..76985dc1f01 100644
--- a/srcpkgs/python-sh/template
+++ b/srcpkgs/python-sh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sh'
 pkgname=python-sh
 version=1.12.14
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From f0cfe151eea6fcf86d1196385a1ac0057a65ab48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 483/870] python-shapely: rebuild for Python 3.8.

---
 srcpkgs/python-shapely/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-shapely/template b/srcpkgs/python-shapely/template
index 25cc875a02c..114726838f9 100644
--- a/srcpkgs/python-shapely/template
+++ b/srcpkgs/python-shapely/template
@@ -1,7 +1,7 @@
 # Template file for 'python-shapely'
 pkgname=python-shapely
 version=1.7a1
-revision=2
+revision=3
 wrksrc="Shapely-${version}"
 build_style=python-module
 pycompile_module="shapely"

From 0908618383925caf43243de8097dbf6491149f8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 484/870] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index d552ce8432d..1f9c8043b46 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=4
+revision=5
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From 14af86f199e28c6eae170b10c1c662bd0184b73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 485/870] shiboken2: rebuild for Python 3.8.

---
 srcpkgs/shiboken2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken2/template b/srcpkgs/shiboken2/template
index 394d9ba4f94..a08edf3f2a0 100644
--- a/srcpkgs/shiboken2/template
+++ b/srcpkgs/shiboken2/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken2'
 pkgname=shiboken2
 version=5.11.2
-revision=2
+revision=3
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From 9ea535c3baf70c69a2bbe07d057742af1877d648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 486/870] python3-shodan: rebuild for Python 3.8.

---
 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 858a0b921f8..033b5a269ff 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.19.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="shodan-python-${version}"
 build_style=python3-module

From 76805ea236fc7f4ecd5948a492413602efff91e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 487/870] python3-signedjson: rebuild for Python 3.8.

---
 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 6f6fb339fd2..d8f9b06b22f 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-signedjson-${version}"
 build_style=python3-module

From 12e9d209470a13cdd9063e5544ffd00c5952138e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 488/870] python-simplebayes: rebuild for Python 3.8.

---
 srcpkgs/python-simplebayes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplebayes/template b/srcpkgs/python-simplebayes/template
index e76b94ad549..6c95222fa7e 100644
--- a/srcpkgs/python-simplebayes/template
+++ b/srcpkgs/python-simplebayes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplebayes'
 pkgname=python-simplebayes
 version=1.5.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="simplebayes-${version}"
 build_style=python-module

From d1ad830144a3e370bbac6e82affb1d06805dfdbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 489/870] python-simplegeneric: rebuild for Python 3.8.

---
 srcpkgs/python-simplegeneric/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplegeneric/template b/srcpkgs/python-simplegeneric/template
index 3dc4e1dda94..f352387fa1f 100644
--- a/srcpkgs/python-simplegeneric/template
+++ b/srcpkgs/python-simplegeneric/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplegeneric'
 pkgname=python-simplegeneric
 version=0.8.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="simplegeneric-${version}"
 build_style=python-module

From f6d990c1a1436b305f8b5af6f58c1f6430d96dc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 490/870] python-simplejson: rebuild for Python 3.8.

---
 srcpkgs/python-simplejson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplejson/template b/srcpkgs/python-simplejson/template
index b453ae952ba..1b8523d0d46 100644
--- a/srcpkgs/python-simplejson/template
+++ b/srcpkgs/python-simplejson/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplejson'
 pkgname=python-simplejson
 version=3.16.1
-revision=2
+revision=3
 wrksrc="simplejson-${version}"
 build_style=python-module
 pycompile_module="simplejson"

From b6f0878a2894ffdd731251a64a26cb1ddf40038a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 491/870] sip: rebuild for Python 3.8.

---
 srcpkgs/sip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sip/template b/srcpkgs/sip/template
index 9d09b823bb6..0e8a81000b1 100644
--- a/srcpkgs/sip/template
+++ b/srcpkgs/sip/template
@@ -1,7 +1,7 @@
 # Template file for 'sip'
 pkgname=sip
 version=4.19.18
-revision=1
+revision=2
 wrksrc="sip-${version}"
 hostmakedepends="python-devel python3-devel"
 makedepends="${hostmakedepends}"

From 5f24e47fb2b044495bbf0ee108d18220ad3b3bd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 492/870] python-six: rebuild for Python 3.8.

---
 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 c6d91f5ece9..a25323caa2a 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.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="six-${version}"
 build_style=python-module

From 09784cf129c5a66b731964fcda119a53dd9dbb7b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 493/870] python3-slixmpp: rebuild for Python 3.8.

---
 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 db367c3d0ab..cbbde6f394b 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.4.2
-revision=1
+revision=2
 wrksrc="slixmpp-${version}"
 build_style=python3-module
 pycompile_module="slixmpp"

From 5e4eb88ccd16957dc33f6923ae3a72151385e9ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 494/870] python3-slugify: rebuild for Python 3.8.

---
 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 44d37f2aed7..012bb98f063 100644
--- a/srcpkgs/python3-slugify/template
+++ b/srcpkgs/python3-slugify/template
@@ -3,7 +3,7 @@ pkgname=python3-slugify
 # Please don't update. Only required by Transifx-client,
 # doesn't work with newer versions
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-slugify-${version}"
 build_style=python3-module

From 3673d2d0b57421bb69e3ed7407630c26169fab96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 495/870] python-smbc: rebuild for Python 3.8.

---
 srcpkgs/python-smbc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smbc/template b/srcpkgs/python-smbc/template
index abc745f8982..6a280139a25 100644
--- a/srcpkgs/python-smbc/template
+++ b/srcpkgs/python-smbc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smbc'
 pkgname=python-smbc
 version=1.0.16
-revision=1
+revision=2
 wrksrc="pysmbc-${version}"
 build_style=python-module
 pycompile_module="smbc"

From 2e7eca88dff9a562419fb01bfafbdaf55a6c2bd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 496/870] python-smmap: rebuild for Python 3.8.

---
 srcpkgs/python-smmap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smmap/template b/srcpkgs/python-smmap/template
index 4aa0c37ff40..8c8ea952285 100644
--- a/srcpkgs/python-smmap/template
+++ b/srcpkgs/python-smmap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smmap'
 pkgname=python-smmap
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="smmap-${version}"
 build_style=python-module

From fd787d6092a892885c1a37ff836d919c3268746b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 497/870] python-snakeoil: rebuild for Python 3.8.

---
 srcpkgs/python-snakeoil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snakeoil/template b/srcpkgs/python-snakeoil/template
index 9c98461c555..79e964d9254 100644
--- a/srcpkgs/python-snakeoil/template
+++ b/srcpkgs/python-snakeoil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snakeoil'
 pkgname=python-snakeoil
 version=0.7.5
-revision=2
+revision=3
 wrksrc="snakeoil-${version}"
 build_style=python-module
 pycompile_module="snakeoil"

From c023c48bda41f4e9b16718923037b0abc4c9cc57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 498/870] python-snappy: rebuild for Python 3.8.

---
 srcpkgs/python-snappy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snappy/template b/srcpkgs/python-snappy/template
index ac386f64fae..b1870cbe681 100644
--- a/srcpkgs/python-snappy/template
+++ b/srcpkgs/python-snappy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snappy'
 pkgname=python-snappy
 version=0.5.4
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="snappy"
 hostmakedepends="python-setuptools python3-setuptools"

From cf3b5c203b490e3aa45e74d0cef8b0d0c4d9cbd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 499/870] python-snowballstemmer: rebuild for Python 3.8.

---
 srcpkgs/python-snowballstemmer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snowballstemmer/template b/srcpkgs/python-snowballstemmer/template
index 6c21632cffa..221478860e5 100644
--- a/srcpkgs/python-snowballstemmer/template
+++ b/srcpkgs/python-snowballstemmer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snowballstemmer'
 pkgname=python-snowballstemmer
 version=1.2.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="snowballstemmer-${version}"
 build_style=python-module

From ebbd083848ced4227417bedacb81db1e46b3b0d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 500/870] python-socketIO-client: rebuild for Python 3.8.

---
 srcpkgs/python-socketIO-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-socketIO-client/template b/srcpkgs/python-socketIO-client/template
index 32fdac4117d..9495d7cf40b 100644
--- a/srcpkgs/python-socketIO-client/template
+++ b/srcpkgs/python-socketIO-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-socketIO-client'
 pkgname=python-socketIO-client
 version=0.7.2
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="socketIO_client"

From bf4912c1b4d342f253c99ee2ff30408cc72ef150 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 501/870] python3-sortedcontainers: rebuild for Python 3.8.

---
 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 2b531ded9b6..41d87d4ebd0 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.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="sortedcontainers-${version}"
 build_style=python3-module

From d111b9221a51cf160ffadb598d8ab186bac3562f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 502/870] python-soupsieve: rebuild for Python 3.8.

---
 srcpkgs/python-soupsieve/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-soupsieve/template b/srcpkgs/python-soupsieve/template
index 586553ca759..63b65c5910f 100644
--- a/srcpkgs/python-soupsieve/template
+++ b/srcpkgs/python-soupsieve/template
@@ -1,7 +1,7 @@
 # Template file for 'python-soupsieve'
 pkgname=python-soupsieve
 version=1.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="soupsieve-${version}"
 build_style=python-module

From 505955408532e39107891c66bb40c986d8a5da3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 503/870] python3-spake2: rebuild for Python 3.8.

---
 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 ff83afed1d6..dc0cdced747 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=1
+revision=2
 archs=noarch
 wrksrc="python-spake2-${version}"
 build_style=python3-module

From ed28cd6c33b5a607891182e27d4edc4b33e42c75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 504/870] python-sphinx_rtd_theme: rebuild for Python 3.8.

---
 srcpkgs/python-sphinx_rtd_theme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinx_rtd_theme/template b/srcpkgs/python-sphinx_rtd_theme/template
index 90def1c9d1d..ebd4f13da8f 100644
--- a/srcpkgs/python-sphinx_rtd_theme/template
+++ b/srcpkgs/python-sphinx_rtd_theme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinx_rtd_theme'
 pkgname=python-sphinx_rtd_theme
 version=0.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinx_rtd_theme-${version}"
 build_style=python-module

From dc5c184f3eb8653ed7620ead5c8c28a67daed07d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 505/870] python-sphinxcontrib: rebuild for Python 3.8.

---
 srcpkgs/python-sphinxcontrib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib/template b/srcpkgs/python-sphinxcontrib/template
index ce3befc56d7..c6789cc77f5 100644
--- a/srcpkgs/python-sphinxcontrib/template
+++ b/srcpkgs/python-sphinxcontrib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib'
 pkgname=python-sphinxcontrib
 version=1.0
-revision=2
+revision=3
 archs=noarch
 create_wrksrc=yes
 pycompile_module="sphinxcontrib"

From 044129ada15eeb9695b554976702e8af049dcfd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 506/870] python-sphinxcontrib-websupport: rebuild for Python
 3.8.

---
 srcpkgs/python-sphinxcontrib-websupport/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib-websupport/template b/srcpkgs/python-sphinxcontrib-websupport/template
index 2236e50b25b..5387dec6519 100644
--- a/srcpkgs/python-sphinxcontrib-websupport/template
+++ b/srcpkgs/python-sphinxcontrib-websupport/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib-websupport'
 pkgname=python-sphinxcontrib-websupport
 version=1.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinxcontrib-websupport-${version}"
 build_style=python-module

From d4fb3b78447ca7349e0a94033b436c3e0caa5dc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 507/870] python-sqlalchemy-migrate: rebuild for Python 3.8.

---
 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 cfdf6166695..bb002660c0f 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=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 863a48d9543b2461c699350ad32bb2ae925e30c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 508/870] python-sqlparse: rebuild for Python 3.8.

---
 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 29a477db392..0f8c6f8ea2e 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=1
+revision=2
 archs=noarch
 wrksrc="sqlparse-${version}"
 build_style=python-module

From b477355bf26b723b8ab7cab61902be1e4aaee7bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 509/870] python-stem: rebuild for Python 3.8.

---
 srcpkgs/python-stem/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index e04ae0a848c..e16e79d84bb 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stem'
 pkgname=python-stem
 version=1.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stem-${version/b/}"
 build_style=python-module

From 82d435bdfc12ea7b4a3dabd17da5113470bffe26 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 510/870] python-stevedore: rebuild for Python 3.8.

---
 srcpkgs/python-stevedore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stevedore/template b/srcpkgs/python-stevedore/template
index 281538211af..4f781304d3f 100644
--- a/srcpkgs/python-stevedore/template
+++ b/srcpkgs/python-stevedore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stevedore'
 pkgname=python-stevedore
 version=1.30.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stevedore-${version}"
 build_style=python-module

From 2afe8f7a4ce71437484d9258f44ead34ae2f6647 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 511/870] python-stormssh: rebuild for Python 3.8.

---
 srcpkgs/python-stormssh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stormssh/template b/srcpkgs/python-stormssh/template
index 250e838e582..11f63f67bba 100644
--- a/srcpkgs/python-stormssh/template
+++ b/srcpkgs/python-stormssh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stormssh'
 pkgname=python-stormssh
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=storm-${version}
 build_style=python-module

From 754addaa6845cd505b5d744fa4e54a66dba9c4ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 512/870] python-subliminal: rebuild for Python 3.8.

---
 srcpkgs/python-subliminal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-subliminal/template b/srcpkgs/python-subliminal/template
index 035ca844880..216c11bb4c0 100644
--- a/srcpkgs/python-subliminal/template
+++ b/srcpkgs/python-subliminal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-subliminal'
 pkgname=python-subliminal
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="subliminal-${version}"
 build_style=python-module

From da488d7b04fb3b00046be4293c33ae0809dad8e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 513/870] python-sympy: rebuild for Python 3.8.

---
 srcpkgs/python-sympy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sympy/template b/srcpkgs/python-sympy/template
index 21d8cf69840..d41c8a392b0 100644
--- a/srcpkgs/python-sympy/template
+++ b/srcpkgs/python-sympy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sympy'
 pkgname=python-sympy
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="sympy-${version}"
 build_style=python-module

From 78857098e3058d7f0df7ece8be24b84196d16921 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 514/870] python-tables: rebuild for Python 3.8.

---
 srcpkgs/python-tables/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tables/template b/srcpkgs/python-tables/template
index 644ae3d1a35..5f61fe8fb88 100644
--- a/srcpkgs/python-tables/template
+++ b/srcpkgs/python-tables/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tables'
 pkgname=python-tables
 version=3.5.2
-revision=1
+revision=2
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="tables"

From 45955cd565bccabbc642dce6684af05ad7651ba5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 515/870] python3-tabulate: rebuild for Python 3.8.

---
 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 19b61edd88c..6f142077300 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="tabulate-${version}"
 build_style=python3-module

From 285f369cadcf0d14f66db8045bb3fb979e69937f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 516/870] python-tempita: rebuild for Python 3.8.

---
 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 9e7123fbd9d..c1c75ee1cac 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=3
+revision=4
 archs=noarch
 wrksrc="Tempita-${version}"
 build_style=python-module

From efa04f85df83993e48813e00587c05cd6c722387 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 517/870] python-tempora: rebuild for Python 3.8.

---
 srcpkgs/python-tempora/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tempora/template b/srcpkgs/python-tempora/template
index fa1cbd4fbd1..866d163f367 100644
--- a/srcpkgs/python-tempora/template
+++ b/srcpkgs/python-tempora/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tempora'
 pkgname=python-tempora
 version=1.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tempora-${version}"
 build_style=python-module

From 783b09196fc04d62a7e7a220ffffc941acedfeeb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 518/870] python-termcolor: rebuild for Python 3.8.

---
 srcpkgs/python-termcolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-termcolor/template b/srcpkgs/python-termcolor/template
index 877e5e59d9b..73c18fc79eb 100644
--- a/srcpkgs/python-termcolor/template
+++ b/srcpkgs/python-termcolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-termcolor'
 pkgname=python-termcolor
 version=1.1.0
-revision=5
+revision=6
 archs=noarch
 wrksrc="termcolor-${version}"
 build_style=python-module

From 469ef1b462bbb9fb2d5d97b38e357b662f5009d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 519/870] python-terminado: rebuild for Python 3.8.

---
 srcpkgs/python-terminado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-terminado/template b/srcpkgs/python-terminado/template
index cdfe6163991..d649364d88d 100644
--- a/srcpkgs/python-terminado/template
+++ b/srcpkgs/python-terminado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-terminado'
 pkgname=python-terminado
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="terminado-${version}"
 build_style=python-module

From ced3b80cce126ab9d23dd2a4bc9505e23b5a4888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 520/870] python3-terminaltables: rebuild for Python 3.8.

---
 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 60ada7ffcb6..4f781eab76d 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=1
+revision=2
 archs=noarch
 wrksrc="terminaltables-${version}"
 build_style=python3-module

From 7a90fec1dbe0347ede0762e747d8edf378bd497c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 521/870] python-testpath: rebuild for Python 3.8.

---
 srcpkgs/python-testpath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-testpath/template b/srcpkgs/python-testpath/template
index bac7270fd40..abfc59900c0 100644
--- a/srcpkgs/python-testpath/template
+++ b/srcpkgs/python-testpath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-testpath'
 pkgname=python-testpath
 version=0.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="testpath-${version}"
 build_style=python-module

From f8761f2f7116f9b2691807d35d9836a34fbbbf32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 522/870] python3-text-unidecode: rebuild for Python 3.8.

---
 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 77163d9e0b6..b3b5aa95575 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="text-unidecode-${version}"
 build_style=python3-module

From 2d2f99664b0644e22e4876b9d54048008a392289 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 523/870] python-texttable: rebuild for Python 3.8.

---
 srcpkgs/python-texttable/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-texttable/template b/srcpkgs/python-texttable/template
index a9c5ec66db1..24bac87af6a 100644
--- a/srcpkgs/python-texttable/template
+++ b/srcpkgs/python-texttable/template
@@ -1,7 +1,7 @@
 # Template file for 'python-texttable'
 pkgname=python-texttable
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="texttable-${version}"
 build_style=python-module

From c671c144e8fe81895f6995347d19725f72165b25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 524/870] python3-tinycss: rebuild for Python 3.8.

---
 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 91fda6f808d..3b4717c234e 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=1
+revision=2
 archs=noarch
 wrksrc=tinycss-${version}
 build_style=python3-module

From 9aa3e8105128dc5e3b86a83bd0ae76e7d9c9cf86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 525/870] python-tmuxp: rebuild for Python 3.8.

---
 srcpkgs/python-tmuxp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tmuxp/template b/srcpkgs/python-tmuxp/template
index 00c86730cbe..45b4a9772b2 100644
--- a/srcpkgs/python-tmuxp/template
+++ b/srcpkgs/python-tmuxp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tmuxp'
 pkgname=python-tmuxp
 version=1.5.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="tmuxp-${version}"
 build_style=python-module

From 995158f34c29d704b44eae2b32df801023781096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 526/870] python-toml: rebuild for Python 3.8.

---
 srcpkgs/python-toml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-toml/template b/srcpkgs/python-toml/template
index 0eee1b0b2c3..2fd6eaa0cea 100644
--- a/srcpkgs/python-toml/template
+++ b/srcpkgs/python-toml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-toml'
 pkgname=python-toml
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="toml-${version}"
 build_style=python-module

From 6270afd962719dd0e9b876b40ab7bf9be9936cf5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 527/870] python-tornado: rebuild for Python 3.8.

---
 srcpkgs/python-tornado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tornado/template b/srcpkgs/python-tornado/template
index 7e5700177f5..bd558d251f5 100644
--- a/srcpkgs/python-tornado/template
+++ b/srcpkgs/python-tornado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tornado'
 pkgname=python-tornado
 version=5.1.1
-revision=1
+revision=2
 wrksrc="tornado-${version}"
 build_style=python-module
 pycompile_module="tornado"

From cd9e416288ae101465f91c75453326fdead7d148 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 528/870] python-tqdm: rebuild for Python 3.8.

---
 srcpkgs/python-tqdm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tqdm/template b/srcpkgs/python-tqdm/template
index 69369bfd6b9..ef1f07127ad 100644
--- a/srcpkgs/python-tqdm/template
+++ b/srcpkgs/python-tqdm/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tqdm'
 pkgname=python-tqdm
 version=4.36.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tqdm-${version}"
 build_style=python-module

From 4ef8d34c3ab05cf43591d92220fc001007644a6d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 529/870] python-traitlets: rebuild for Python 3.8.

---
 srcpkgs/python-traitlets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-traitlets/template b/srcpkgs/python-traitlets/template
index d2d1b85edb6..797dd0268da 100644
--- a/srcpkgs/python-traitlets/template
+++ b/srcpkgs/python-traitlets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-traitlets'
 pkgname=python-traitlets
 version=4.3.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="traitlets-${version}"
 build_style=python-module

From f41edcb16535bb92b415439644ee01a61da14478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 530/870] python3-transifex-client: rebuild for Python 3.8.

---
 srcpkgs/python3-transifex-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-transifex-client/template b/srcpkgs/python3-transifex-client/template
index 77ca15313e0..5ea767b5a7d 100644
--- a/srcpkgs/python3-transifex-client/template
+++ b/srcpkgs/python3-transifex-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-transifex-client'
 pkgname=python3-transifex-client
 version=0.13.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="transifex-client-${version}"
 build_style=python3-module

From d2c27a7fe61e206ccbf655146feec32e4b13cfc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 531/870] python3-treq: rebuild for Python 3.8.

---
 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 8f210d13489..e46e1e7e7a5 100644
--- a/srcpkgs/python3-treq/template
+++ b/srcpkgs/python3-treq/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-treq'
 pkgname=python3-treq
 version=18.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="treq-${version}"
 build_style=python3-module

From 26b5427ba0e26d8712ebe081a774396e3ea39d76 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 532/870] python-ttystatus: rebuild for Python 3.8.

---
 srcpkgs/python-ttystatus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ttystatus/template b/srcpkgs/python-ttystatus/template
index 9fbefad3461..43e87ddcdf0 100644
--- a/srcpkgs/python-ttystatus/template
+++ b/srcpkgs/python-ttystatus/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ttystatus'
 pkgname=python-ttystatus
 version=0.38
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="ttystatus"

From dbf349fac2110dc33ad6d676748e46240dec1fbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 533/870] python-twitter: rebuild for Python 3.8.

---
 srcpkgs/python-twitter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-twitter/template b/srcpkgs/python-twitter/template
index c299b28dedf..e5e7194078a 100644
--- a/srcpkgs/python-twitter/template
+++ b/srcpkgs/python-twitter/template
@@ -1,7 +1,7 @@
 # Template file for 'python-twitter'
 pkgname=python-twitter
 version=3.5
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="twitter"

From 58eab12e88f689c694ef474e09d2266b77b5bcc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 534/870] python3-txacme: rebuild for Python 3.8.

---
 srcpkgs/python3-txacme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-txacme/template b/srcpkgs/python3-txacme/template
index e6becf593e7..c678addda4d 100644
--- a/srcpkgs/python3-txacme/template
+++ b/srcpkgs/python3-txacme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txacme'
 pkgname=python3-txacme
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="txacme-${version}"
 build_style=python3-module

From a1a3464258c255e0b73cbdb47e0337d3b8af473e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 535/870] python3-txaio: rebuild for Python 3.8.

---
 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 fa13338cd30..8163f5c90fd 100644
--- a/srcpkgs/python3-txaio/template
+++ b/srcpkgs/python3-txaio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txaio'
 pkgname=python3-txaio
 version=18.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="txaio-${version}"
 build_style=python3-module

From 66d08c9f4945499ccd01b127d7ec1f8cfd468dd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 536/870] python3-txtorcon: rebuild for Python 3.8.

---
 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 3018a65e457..a10ab59c582 100644
--- a/srcpkgs/python3-txtorcon/template
+++ b/srcpkgs/python3-txtorcon/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txtorcon'
 pkgname=python3-txtorcon
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="txtorcon-${version}"
 build_style=python3-module

From f3bf9db3f8b699c67eebc7fa0278fca9de892d75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 537/870] python3-typed-ast: update to 1.4.0.

---
 srcpkgs/python3-typed-ast/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-typed-ast/template b/srcpkgs/python3-typed-ast/template
index ec5b5b9df11..b38f0fe065c 100644
--- a/srcpkgs/python3-typed-ast/template
+++ b/srcpkgs/python3-typed-ast/template
@@ -1,8 +1,8 @@
 # Template file for 'python3-typed-ast'
 pkgname=python3-typed-ast
-version=1.3.4
+version=1.4.0
 revision=1
-wrksrc="typed-ast-${version}"
+wrksrc="typed_ast-${version}"
 build_style=python3-module
 pycompile_module="typed_ast"
 hostmakedepends="python3-devel python3-setuptools"
@@ -11,6 +11,6 @@ short_desc="Ast module with type comment support"
 maintainer="whoami <whoami@systemli.org>"
 license="Apache-2.0"
 homepage="https://github.com/python/typed_ast"
-distfiles="${PYPI_SITE}/t/typed-ast/typed-ast-${version}.tar.gz"
-checksum=68c362848d9fb71d3c3e5f43c09974a0ae319144634e7a47db62f0f2a54a7fa7
+distfiles="${PYPI_SITE}/t/typed-ast/typed_ast-${version}.tar.gz"
+checksum=66480f95b8167c9c5c5c87f32cf437d585937970f3fc24386f313a4c97b44e34
 nocross="https://travis-ci.org/void-linux/void-packages/jobs/509366923#L1009"

From d977434aa35e2c6bc03c5db7514f5409eb21a2a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 538/870] python3-typing_extensions: rebuild for Python 3.8.

---
 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 ab96df4eb2d..605af46216d 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=3.6.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module

From d1368b489e196a385edf9b15df4da773505f8a5e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 539/870] python-tzlocal: rebuild for Python 3.8.

---
 srcpkgs/python-tzlocal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tzlocal/template b/srcpkgs/python-tzlocal/template
index 396eada3982..684d2a21b40 100644
--- a/srcpkgs/python-tzlocal/template
+++ b/srcpkgs/python-tzlocal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tzlocal'
 pkgname=python-tzlocal
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tzlocal-${version}"
 build_style=python-module

From 0ec72579de99edead05daf85e7cac5e0e2ab641b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 540/870] python-unittest-mixins: rebuild for Python 3.8.

---
 srcpkgs/python-unittest-mixins/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-unittest-mixins/template b/srcpkgs/python-unittest-mixins/template
index 6f7c7204112..2ff5c497523 100644
--- a/srcpkgs/python-unittest-mixins/template
+++ b/srcpkgs/python-unittest-mixins/template
@@ -1,7 +1,7 @@
 # Template file for 'python-unittest-mixins'
 pkgname=python-unittest-mixins
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From a5e3289470d7f0e25e09237aa9463d28817818c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 541/870] python3-unpaddedbase64: rebuild for Python 3.8.

---
 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 37df2c1d642..06a47db3b64 100644
--- a/srcpkgs/python3-unpaddedbase64/template
+++ b/srcpkgs/python3-unpaddedbase64/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-unpaddedbase64'
 pkgname=python3-unpaddedbase64
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-unpaddedbase64-${version}"
 build_style=python3-module

From 13043751d10b741546f419a7e9089a5b252fd5c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 542/870] python-urbandict: rebuild for Python 3.8.

---
 srcpkgs/python-urbandict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urbandict/template b/srcpkgs/python-urbandict/template
index ff09e963fa7..ed359c744be 100644
--- a/srcpkgs/python-urbandict/template
+++ b/srcpkgs/python-urbandict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urbandict'
 pkgname=python-urbandict
 version=0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="urbandict-${version}"
 build_style=python-module

From a15bf0893e7a65a070751099b3ddca9172b49912 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 543/870] python-uritemplate: rebuild for Python 3.8.

---
 srcpkgs/python-uritemplate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-uritemplate/template b/srcpkgs/python-uritemplate/template
index 7a530fee03b..cdcda419efe 100644
--- a/srcpkgs/python-uritemplate/template
+++ b/srcpkgs/python-uritemplate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-uritemplate'
 pkgname=python-uritemplate
 version=3.0.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 43c97a015ea83b2b0934ea864a84b324ec83f31a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 544/870] python3-urlgrabber: rebuild for Python 3.8.

---
 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 087087d5ed1..eef67c8e13c 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=1
+revision=2
 archs=noarch
 wrksrc="urlgrabber-${version}"
 build_style=python3-module

From 016dbcff2bb0c1709814f4da4fe214d551e3d4cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 545/870] python-urllib3: rebuild for Python 3.8.

---
 srcpkgs/python-urllib3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urllib3/template b/srcpkgs/python-urllib3/template
index 8056518c9c1..1ff21f7555d 100644
--- a/srcpkgs/python-urllib3/template
+++ b/srcpkgs/python-urllib3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urllib3'
 pkgname=python-urllib3
 version=1.25.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="urllib3-${version}"
 build_style=python-module

From 9629da352be38a0f14bcb680c7fc05dd1d1167f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 546/870] python-urwid: rebuild for Python 3.8.

---
 srcpkgs/python-urwid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwid/template b/srcpkgs/python-urwid/template
index ae6722b1135..7adf8b76b96 100644
--- a/srcpkgs/python-urwid/template
+++ b/srcpkgs/python-urwid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwid'
 pkgname=python-urwid
 version=2.0.1
-revision=2
+revision=3
 wrksrc="urwid-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"

From 4be978b1173afce93e7ff39f6e577059f4c7dd4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 547/870] python-urwidtrees: rebuild for Python 3.8.

---
 srcpkgs/python-urwidtrees/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwidtrees/template b/srcpkgs/python-urwidtrees/template
index be0e906addf..62d214489e2 100644
--- a/srcpkgs/python-urwidtrees/template
+++ b/srcpkgs/python-urwidtrees/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwidtrees'
 pkgname=python-urwidtrees
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="urwidtrees-${version}"
 build_style=python-module

From c9f3ad0ed793593060952aa365e888244dfd07e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 548/870] python3-usb: rebuild for Python 3.8.

---
 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 a081ee5ba76..d26c24df669 100644
--- a/srcpkgs/python3-usb/template
+++ b/srcpkgs/python3-usb/template
@@ -2,7 +2,7 @@
 pkgname=python3-usb
 _pkgname=pyusb
 version=1.0.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From 454ef49754696a81de599e7fa6cf9cab31ccbc31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 549/870] python-utils: rebuild for Python 3.8.

---
 srcpkgs/python-utils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-utils/template b/srcpkgs/python-utils/template
index e881e70c0f0..6745df121a6 100644
--- a/srcpkgs/python-utils/template
+++ b/srcpkgs/python-utils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-utils'
 pkgname=python-utils
 version=2.3.0
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 wrksrc="python-utils-${version}"

From eef5c75b93453defdcb8def5b34c20f20cda0fc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 550/870] python3-validators: rebuild for Python 3.8.

---
 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 29b9fc74c30..6d9da94c4bb 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.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="validators-${version}"
 build_style=python3-module

From 53ce0ff21de84f26405d0314002bb11e85903128 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 551/870] python3-vdf: rebuild for Python 3.8.

---
 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 44c635ecdd6..88bd521beaa 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.2
-revision=1
+revision=2
 wrksrc=vdf-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From f720d6ed8267fa4b27a7ce83dd3a265a18cd13b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 552/870] python-vint: rebuild for Python 3.8.

---
 srcpkgs/python-vint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vint/template b/srcpkgs/python-vint/template
index 4ca693f7eb2..62c663bf18e 100644
--- a/srcpkgs/python-vint/template
+++ b/srcpkgs/python-vint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vint'
 pkgname=python-vint
 version=0.3.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="vim-vint-${version}"
 build_style=python-module

From 573eadbcb861065b712050cf6e7fd200c33a73b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 553/870] python-virtualenv: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv/template b/srcpkgs/python-virtualenv/template
index 1f9166e79a2..cdeda28c53e 100644
--- a/srcpkgs/python-virtualenv/template
+++ b/srcpkgs/python-virtualenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv'
 pkgname=python-virtualenv
 version=16.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="virtualenv-${version}"
 build_style=python-module

From 25eda2949787b488dfc7cfc6512d02a4971d4f96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 554/870] python-virtualenv-clone: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv-clone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv-clone/template b/srcpkgs/python-virtualenv-clone/template
index 3c9f601bc6e..273b9ddf6d3 100644
--- a/srcpkgs/python-virtualenv-clone/template
+++ b/srcpkgs/python-virtualenv-clone/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv-clone'
 pkgname=python-virtualenv-clone
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5a922ea064a496fb01ff970e45a43ef51561b373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 555/870] python3-virustotal-api: rebuild for Python 3.8.

---
 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 2bc6592c91f..fc362c03b39 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=1
+revision=2
 archs=noarch
 wrksrc="virustotal-api-${version}"
 build_style=python3-module

From 65deaff01a3a9a5d82641fe121fdb2964b75346f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 556/870] python-vispy: rebuild for Python 3.8.

---
 srcpkgs/python-vispy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vispy/template b/srcpkgs/python-vispy/template
index b757e5a271f..624ade6f12b 100644
--- a/srcpkgs/python-vispy/template
+++ b/srcpkgs/python-vispy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vispy'
 pkgname=python-vispy
 version=0.6.1
-revision=1
+revision=2
 wrksrc="vispy-${version}"
 build_style=python-module
 pycompile_module="vispy"

From 5e47d846dedfdbef61bd10a33928ce13b600c648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 557/870] python-vobject: rebuild for Python 3.8.

---
 srcpkgs/python-vobject/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vobject/template b/srcpkgs/python-vobject/template
index 54f575aa1a1..2c1c215527c 100644
--- a/srcpkgs/python-vobject/template
+++ b/srcpkgs/python-vobject/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vobject'
 pkgname=python-vobject
 version=0.9.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="vobject-${version}"
 build_style=python-module

From 8125ffd3d4822ca6bf81508ed8b859e079cd9437 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 558/870] python-voluptuous: rebuild for Python 3.8.

---
 srcpkgs/python-voluptuous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-voluptuous/template b/srcpkgs/python-voluptuous/template
index fd44ae2e324..1dd5de27491 100644
--- a/srcpkgs/python-voluptuous/template
+++ b/srcpkgs/python-voluptuous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-voluptuous'
 pkgname=python-voluptuous
 version=0.11.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="voluptuous-${version}"
 build_style=python-module

From 608126ee8043f8d45a8e56608f99e0df6cc2ee9e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 559/870] python-watchdog: rebuild for Python 3.8.

---
 srcpkgs/python-watchdog/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchdog/template b/srcpkgs/python-watchdog/template
index f6027c3b5ca..2eea6397f00 100644
--- a/srcpkgs/python-watchdog/template
+++ b/srcpkgs/python-watchdog/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchdog'
 pkgname=python-watchdog
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="watchdog-${version}"
 build_style=python-module

From a54fc09b58f905a0ed5cd5892db67b7c4ea6ae9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 560/870] python-watchman: rebuild for Python 3.8.

---
 srcpkgs/python-watchman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchman/template b/srcpkgs/python-watchman/template
index 4c41c275ca2..97400668d64 100644
--- a/srcpkgs/python-watchman/template
+++ b/srcpkgs/python-watchman/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchman'
 pkgname=python-watchman
 version=1.4.1
-revision=2
+revision=3
 wrksrc="pywatchman-${version}"
 build_style=python-module
 pycompile_module="pywatchman"

From 4dd6084e6c30a25fb4ff3c44bf2c751eaab07715 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 561/870] python-wcwidth: rebuild for Python 3.8.

---
 srcpkgs/python-wcwidth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wcwidth/template b/srcpkgs/python-wcwidth/template
index 34bc22cbcb6..8ec6d17450c 100644
--- a/srcpkgs/python-wcwidth/template
+++ b/srcpkgs/python-wcwidth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wcwidth'
 pkgname=python-wcwidth
 version=0.1.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="wcwidth-${version}"
 build_style=python-module

From cafaf5868e58cb26c2cdd29d0d1b52f9cf1e31ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 562/870] python-webassets: rebuild for Python 3.8.

---
 srcpkgs/python-webassets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webassets/template b/srcpkgs/python-webassets/template
index 3ad5475bd17..789be9684f7 100644
--- a/srcpkgs/python-webassets/template
+++ b/srcpkgs/python-webassets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webassets'
 pkgname=python-webassets
 version=0.12.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 88d8fa4eb1ca72857d5a1cab8a4f7495a9af1595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 563/870] python-webencodings: rebuild for Python 3.8.

---
 srcpkgs/python-webencodings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webencodings/template b/srcpkgs/python-webencodings/template
index 5a05af10835..f047a9e3c52 100644
--- a/srcpkgs/python-webencodings/template
+++ b/srcpkgs/python-webencodings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webencodings'
 pkgname=python-webencodings
 version=0.5.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="webencodings-${version}"
 build_style=python-module

From 81c9d07c0e756cc87a6cd2c444c0b2f0987463da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 564/870] python-websocket-client: rebuild for Python 3.8.

---
 srcpkgs/python-websocket-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-websocket-client/template b/srcpkgs/python-websocket-client/template
index 8aa276655cb..3df8ab42b36 100644
--- a/srcpkgs/python-websocket-client/template
+++ b/srcpkgs/python-websocket-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-websocket-client'
 pkgname=python-websocket-client
 version=0.56.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="websocket_client-${version}"
 build_style=python-module

From 97fc927913b3f2682b7ddf73982008e9fdc1e42d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 565/870] python-wheel: rebuild for Python 3.8.

---
 srcpkgs/python-wheel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wheel/template b/srcpkgs/python-wheel/template
index 11c50bd65e6..11aeaf42316 100644
--- a/srcpkgs/python-wheel/template
+++ b/srcpkgs/python-wheel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wheel'
 pkgname=python-wheel
 version=0.32.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="wheel-${version}"
 build_style=python-module

From 861d20f2f112cd829f2f06f746680e2c034a812f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 566/870] python-wikipedia: rebuild for Python 3.8.

---
 srcpkgs/python-wikipedia/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wikipedia/template b/srcpkgs/python-wikipedia/template
index e6ebf65f7c2..f8a69755b74 100644
--- a/srcpkgs/python-wikipedia/template
+++ b/srcpkgs/python-wikipedia/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wikipedia'
 pkgname=python-wikipedia
 version=1.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="wikipedia-${version}"
 build_style=python-module

From c58e9b08de69bd19aa3bcf91ec42d1b626a2a6bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 567/870] python-wrapt: rebuild for Python 3.8.

---
 srcpkgs/python-wrapt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wrapt/template b/srcpkgs/python-wrapt/template
index a3a237aa08d..c2d2850bf5a 100644
--- a/srcpkgs/python-wrapt/template
+++ b/srcpkgs/python-wrapt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wrapt'
 pkgname=python-wrapt
 version=1.10.11
-revision=3
+revision=4
 wrksrc="wrapt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From f65cbaf6b92acb78d54d3b498924285bce64fb66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 568/870] python-wsproto: rebuild for Python 3.8.

---
 srcpkgs/python-wsproto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wsproto/template b/srcpkgs/python-wsproto/template
index 88b08f796d4..a93a799be0a 100644
--- a/srcpkgs/python-wsproto/template
+++ b/srcpkgs/python-wsproto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wsproto'
 pkgname=python-wsproto
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="wsproto-${version}"
 build_style=python-module

From 1b60fb796f8ac377a2e31dc0503df215c27fc59e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 569/870] python-xapp: rebuild for Python 3.8.

---
 srcpkgs/python-xapp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xapp/template b/srcpkgs/python-xapp/template
index 9b6938113f2..798041eb946 100644
--- a/srcpkgs/python-xapp/template
+++ b/srcpkgs/python-xapp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xapp'
 pkgname=python-xapp
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="xapp"

From 415bec8de0abe2772c407df9db650bd06ba122ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 570/870] python-xdg: rebuild for Python 3.8.

---
 srcpkgs/python-xdg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xdg/template b/srcpkgs/python-xdg/template
index afa6c180043..4e819c8bec7 100644
--- a/srcpkgs/python-xdg/template
+++ b/srcpkgs/python-xdg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xdg'
 pkgname=python-xdg
 version=0.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyxdg-${version}"
 build_style=python-module

From 4518feeb499caa6631ef29ead0439c5bcc67a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 571/870] python-xlib: rebuild for Python 3.8.

---
 srcpkgs/python-xlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xlib/template b/srcpkgs/python-xlib/template
index 1f97c4117d4..e67d1d82e73 100644
--- a/srcpkgs/python-xlib/template
+++ b/srcpkgs/python-xlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xlib'
 pkgname=python-xlib
 version=0.25
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="Xlib"

From 1cef928049b5216468e701acce714fc14d79694f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 572/870] python-xmldiff: rebuild for Python 3.8.

---
 srcpkgs/python-xmldiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmldiff/template b/srcpkgs/python-xmldiff/template
index a0a8004ea7b..4f3cc2d27b7 100644
--- a/srcpkgs/python-xmldiff/template
+++ b/srcpkgs/python-xmldiff/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmldiff'
 pkgname=python-xmldiff
 version=2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmldiff-${version}"
 build_style=python-module

From cefcbea2ec7904b0c1ad16ec32963bf430b27c4a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 573/870] python-xmltodict: rebuild for Python 3.8.

---
 srcpkgs/python-xmltodict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmltodict/template b/srcpkgs/python-xmltodict/template
index a48e6d46aa6..b3d7ef042e8 100644
--- a/srcpkgs/python-xmltodict/template
+++ b/srcpkgs/python-xmltodict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmltodict'
 pkgname=python-xmltodict
 version=0.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmltodict-${version}"
 build_style=python-module

From 889d5fe9fe9f1830bec336ac52bd8bd32f47f0a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 574/870] python-yaml: rebuild for Python 3.8.

---
 srcpkgs/python-yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yaml/template b/srcpkgs/python-yaml/template
index 8a7caf1d99e..e3bad0ae59b 100644
--- a/srcpkgs/python-yaml/template
+++ b/srcpkgs/python-yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yaml'
 pkgname=python-yaml
 version=5.1.2
-revision=1
+revision=2
 wrksrc="PyYAML-${version}"
 build_style=python-module
 pycompile_module="yaml"

From 1b3e89ca272ae28a62064bf83eaff84332307682 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 575/870] python-yamllint: rebuild for Python 3.8.

---
 srcpkgs/python-yamllint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yamllint/template b/srcpkgs/python-yamllint/template
index 1a05e1043bb..d0b51ba637a 100644
--- a/srcpkgs/python-yamllint/template
+++ b/srcpkgs/python-yamllint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yamllint'
 pkgname=python-yamllint
 version=1.15.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="yamllint-${version}"
 build_style=python-module

From b233bcb50542e39ba02899ef3d1b833e385204e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 576/870] python3-yarl: rebuild for Python 3.8.

---
 srcpkgs/python3-yarl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-yarl/template b/srcpkgs/python3-yarl/template
index 222f176cfcf..ecb79a3cc9c 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.3.0
-revision=2
+revision=3
 wrksrc="yarl-${version}"
 build_style=python3-module
 pycompile_module="yarl"

From 484c2559f18644c63342db467c703e2e998e89b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 577/870] python-zc.lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-zc.lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zc.lockfile/template b/srcpkgs/python-zc.lockfile/template
index cb0bee99506..b77071af04f 100644
--- a/srcpkgs/python-zc.lockfile/template
+++ b/srcpkgs/python-zc.lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zc.lockfile'
 pkgname=python-zc.lockfile
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 364e398c8dd7e3dd141ceb1c22626ecf2a5b9b32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 578/870] python3-zeroconf: rebuild for Python 3.8.

---
 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 497a8bc6b69..dda37bd3dc4 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.23.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-zeroconf-${version}"
 build_style=python3-module

From 22b5d6236d8f0ff0050135b2e77eca608519b1ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 579/870] python3-zipp: rebuild for Python 3.8.

---
 srcpkgs/python3-zipp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-zipp/template b/srcpkgs/python3-zipp/template
index 8445c10825c..ba682915beb 100644
--- a/srcpkgs/python3-zipp/template
+++ b/srcpkgs/python3-zipp/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-zipp'
 pkgname=python3-zipp
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="zipp-${version}"
 build_style=python3-module

From c5c37d6e890a553e458333e610ab56b1a5c9b516 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 580/870] python-zipstream: rebuild for Python 3.8.

---
 srcpkgs/python-zipstream/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zipstream/template b/srcpkgs/python-zipstream/template
index 89079e21b22..2c7390127ac 100644
--- a/srcpkgs/python-zipstream/template
+++ b/srcpkgs/python-zipstream/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zipstream'
 pkgname=python-zipstream
 version=1.1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="python-zipstream-${version}"
 build_style=python-module

From bc31e25a00839c9d3cc5ac70edf0485ee4b21d4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 581/870] python3-zope.cachedescriptors: rebuild for Python
 3.8.

---
 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 bdd5ef41e21..1f1fae5b27b 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.3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="zope.cachedescriptors-${version}"
 build_style=python3-module

From 40a63988f3c2db41391f0a7ab6cde24a9b79ed05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 582/870] python-zope.component: rebuild for Python 3.8.

---
 srcpkgs/python-zope.component/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.component/template b/srcpkgs/python-zope.component/template
index 7cea5b9d71d..66ef109a4aa 100644
--- a/srcpkgs/python-zope.component/template
+++ b/srcpkgs/python-zope.component/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.component'
 pkgname=python-zope.component
 version=4.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 799496c35db93c88e6d00e4b41eeca8b4af5b188 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 583/870] python-zope.event: rebuild for Python 3.8.

---
 srcpkgs/python-zope.event/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.event/template b/srcpkgs/python-zope.event/template
index 3c7fb8dfd6e..6518cb4529b 100644
--- a/srcpkgs/python-zope.event/template
+++ b/srcpkgs/python-zope.event/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.event'
 pkgname=python-zope.event
 version=4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d77b16ecad39877131af8a9c01ea925b33737b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 584/870] python-zope.interface: rebuild for Python 3.8.

---
 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 d3c57be85f7..1dbcbecd377 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=4.6.0
-revision=2
+revision=3
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="zope"

From e5cb80612a71c54facf607c52c7a385badeba668 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 585/870] python3-pivy: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-pivy/patches/73cd928f.patch | 36 +++++++++++++++++++++
 srcpkgs/python3-pivy/template               |  2 +-
 2 files changed, 37 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/python3-pivy/patches/73cd928f.patch

diff --git a/srcpkgs/python3-pivy/patches/73cd928f.patch b/srcpkgs/python3-pivy/patches/73cd928f.patch
new file mode 100644
index 00000000000..edff803822a
--- /dev/null
+++ b/srcpkgs/python3-pivy/patches/73cd928f.patch
@@ -0,0 +1,36 @@
+From 73cd928fe1a9c2abbe6f28844a7fc695ad11d7cf Mon Sep 17 00:00:00 2001
+From: Peter Lama <peterldev94@gmail.com>
+Date: Fri, 24 Aug 2018 17:25:47 -0700
+Subject: [PATCH] Fix issue #39: PyUnicode_AsUTF8 returns const char*
+
+Even with python 2, it doesn't seem like char* is needed
+
+--- Inventor/nodes/SoMarkerSet.i
++++ Inventor/nodes/SoMarkerSet.i
+@@ -5,7 +5,7 @@
+         short WIDTH, HEIGHT;
+         size.getValue(WIDTH, HEIGHT);
+         short BYTEWIDTH = (WIDTH + 7) / 2;
+-        char* coin_marker;
++        const char* coin_marker;
+ #ifdef PY_2
+         if (PyString_Check(string))
+         {
+@@ -49,4 +49,4 @@
+         delete[] bitmapbytes;
+         bitmapbytes = NULL;
+     }
+-}
+\ No newline at end of file
++}
+--- Inventor/sensors/SoSensor.i
++++ Inventor/sensors/SoSensor.i
+@@ -4,7 +4,7 @@ SoSensorPythonCB(void * data, SoSensor * sensor)
+ {
+   PyGILState_STATE gil = PyGILState_Ensure();
+   swig_type_info * swig_type = 0;
+-  char * sensor_cast_name = NULL;
++  const char * sensor_cast_name = NULL;
+   PyObject * func, * arglist;
+   PyObject * result, * pysensor;
+ 
diff --git a/srcpkgs/python3-pivy/template b/srcpkgs/python3-pivy/template
index 4a733e805e3..9caa13837e2 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.4
-revision=1
+revision=2
 wrksrc="Coin3D-${pkgname#python3-}-a84100beff22"
 build_style=python3-module
 pycompile_module="pivy"

From 7d8cfe1721327d4b8695c6abc56d012b27989c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 586/870] python-tweepy: update to 3.8.0.

---
 srcpkgs/python-tweepy/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python-tweepy/template b/srcpkgs/python-tweepy/template
index ef61039dac5..4605bbf83ea 100644
--- a/srcpkgs/python-tweepy/template
+++ b/srcpkgs/python-tweepy/template
@@ -1,6 +1,6 @@
 # Template file for 'python-tweepy'
 pkgname=python-tweepy
-version=3.7.0
+version=3.8.0
 revision=1
 archs=noarch
 wrksrc="tweepy-${version}"
@@ -14,8 +14,8 @@ license="MIT"
 homepage="https://github.com/tweepy/tweepy"
 distfiles="${PYPI_SITE}/t/tweepy/tweepy-${version}.tar.gz
  https://raw.githubusercontent.com/tweepy/tweepy/master/LICENSE>LICENSE.txt"
-checksum="fe85a79f58a01dd335968523b91c5fce760e7fe78bf25a6e71c72204fe499d0b
- deeeae0dcc22dbf108a801b8dc4e484bcc1bfb541b1a4f4615ab3e61def44fb5"
+checksum="8abd828ba51a85a2b5bb7373715d6d3bb32d18ac624e3a4db02e4ef8ab48316b
+ bf9bc5b9dcb8421bb3c342bb7fd29194688e1262b50766bd71b21a07461e74b7"
 
 post_install() {
 	vlicense ../LICENSE.txt

From 5f654f2f6a7eca9a50adb53af9037466723dd82c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 587/870] Electron-Cash: rebuild for Python 3.8.

---
 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 2db05c94832..08670c5f08d 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.0.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electroncash electroncash_gui electroncash_plugins"

From 931f125f8699e33cb16c8ed43a5e910d0056db6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 588/870] OpenLP: rebuild for Python 3.8.

---
 srcpkgs/OpenLP/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/OpenLP/template b/srcpkgs/OpenLP/template
index fb417f8d05e..ccae6d0282e 100644
--- a/srcpkgs/OpenLP/template
+++ b/srcpkgs/OpenLP/template
@@ -1,7 +1,7 @@
 # Template file for 'OpenLP'
 pkgname=OpenLP
 version=2.4.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="openlp"

From 21b02367e81c8635c88830fd008c0ba44ffcccff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 589/870] PhotoCollage: rebuild for Python 3.8.

---
 srcpkgs/PhotoCollage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/PhotoCollage/template b/srcpkgs/PhotoCollage/template
index 2c55ca87ce0..9997d1e7d98 100644
--- a/srcpkgs/PhotoCollage/template
+++ b/srcpkgs/PhotoCollage/template
@@ -1,7 +1,7 @@
 # Template file for 'PhotoCollage'
 pkgname=PhotoCollage
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="photocollage"

From 49dffe4070ca7dff3c38379b8df9d9b0d04395ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 590/870] ReText: rebuild for Python 3.8.

---
 srcpkgs/ReText/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ReText/template b/srcpkgs/ReText/template
index cc092ee6a36..a6551fbdf7c 100644
--- a/srcpkgs/ReText/template
+++ b/srcpkgs/ReText/template
@@ -1,7 +1,7 @@
 # Template file for 'ReText'
 pkgname=ReText
 version=7.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ReText"

From 225e30aaea5daebb0d4fc36c6d73424ad6fb1ec5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 591/870] SoapySDR: rebuild for Python 3.8.

---
 srcpkgs/SoapySDR/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/SoapySDR/template b/srcpkgs/SoapySDR/template
index 1bb66ce0689..bcfe45dc78a 100644
--- a/srcpkgs/SoapySDR/template
+++ b/srcpkgs/SoapySDR/template
@@ -1,7 +1,7 @@
 # Template file for 'SoapySDR'
 pkgname=SoapySDR
 version=0.7.1
-revision=1
+revision=2
 wrksrc="${pkgname}-soapy-sdr-${version}"
 build_style=cmake
 pycompile_module="SoapySDR.py"

From 2e64750e75e61296567ebb0053c46081cbab8e13 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 592/870] Solaar: rebuild for Python 3.8.

---
 srcpkgs/Solaar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Solaar/template b/srcpkgs/Solaar/template
index 2e8f4112e0e..86cab83d497 100644
--- a/srcpkgs/Solaar/template
+++ b/srcpkgs/Solaar/template
@@ -1,7 +1,7 @@
 # Template file for 'Solaar'
 pkgname=Solaar
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="hidapi logitech_receiver solaar"

From 21eb59c332d0765268a9b3a5442e4e265144a4ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 593/870] Trimage: rebuild for Python 3.8.

---
 srcpkgs/Trimage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Trimage/template b/srcpkgs/Trimage/template
index 14fc1d1bd1c..c9f4b047ccd 100644
--- a/srcpkgs/Trimage/template
+++ b/srcpkgs/Trimage/template
@@ -1,7 +1,7 @@
 # Template file for 'Trimage'
 pkgname=Trimage
 version=1.0.6
-revision=1
+revision=2
 wrksrc="Trimage-${version}"
 build_style=python3-module
 hostmakedepends="python3"

From 51428dec66979d2e47361fb2af5e7ad35acbe530 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 594/870] TwitchNotifier: rebuild for Python 3.8.

---
 srcpkgs/TwitchNotifier/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/TwitchNotifier/template b/srcpkgs/TwitchNotifier/template
index 01153bcc710..3bbba11db49 100644
--- a/srcpkgs/TwitchNotifier/template
+++ b/srcpkgs/TwitchNotifier/template
@@ -1,7 +1,7 @@
 # Template file for 'TwitchNotifier'
 pkgname=TwitchNotifier
 version=0.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-devel"
 makedepends="python3-devel"

From 18ad02f16088cf17e66f60da882ead88b4872617 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 595/870] Uranium: rebuild for Python 3.8.

---
 srcpkgs/Uranium/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Uranium/template b/srcpkgs/Uranium/template
index 193d5e211df..7a9509c2079 100644
--- a/srcpkgs/Uranium/template
+++ b/srcpkgs/Uranium/template
@@ -1,7 +1,7 @@
 # Template file for 'Uranium'
 pkgname=Uranium
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=cmake
 pycompile_module="UM"

From 1bfabd6cc63a8b03b99500dc59e362061f7549e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 596/870] afew: rebuild for Python 3.8.

---
 srcpkgs/afew/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/afew/template b/srcpkgs/afew/template
index a9156bbc902..f4b10098e66 100644
--- a/srcpkgs/afew/template
+++ b/srcpkgs/afew/template
@@ -1,7 +1,7 @@
 # Template file for 'afew'
 pkgname=afew
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="afew"

From f0695c0a0e527ead9d61cbbd52e872f5a6e7f422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 597/870] alot: rebuild for Python 3.8.

---
 srcpkgs/alot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/alot/template b/srcpkgs/alot/template
index 4ff75637282..c8e29e36297 100644
--- a/srcpkgs/alot/template
+++ b/srcpkgs/alot/template
@@ -1,7 +1,7 @@
 # Template file for 'alot'
 pkgname=alot
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="alot"

From ec032cb507b4dca0034eab7e0281dedd3b7dc418 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 598/870] ansible: rebuild for Python 3.8.

---
 srcpkgs/ansible/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ansible/template b/srcpkgs/ansible/template
index 413e6f8803e..773f890e114 100644
--- a/srcpkgs/ansible/template
+++ b/srcpkgs/ansible/template
@@ -1,7 +1,7 @@
 # Template file for 'ansible'
 pkgname=ansible
 version=2.8.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ansible"

From a97554cec966a402d73b894865fe2d37f1833cec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 599/870] apparmor: rebuild for Python 3.8.

---
 srcpkgs/apparmor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/apparmor/template b/srcpkgs/apparmor/template
index c0ef28bae03..e4f8e3fb3ae 100644
--- a/srcpkgs/apparmor/template
+++ b/srcpkgs/apparmor/template
@@ -1,7 +1,7 @@
 # Template file for 'apparmor'
 pkgname=apparmor
 version=2.13.3
-revision=1
+revision=2
 wrksrc="${pkgname}-v${version}"
 build_wrksrc=libraries/libapparmor
 build_style=gnu-configure

From 57116ea3c564f2a1852b8583df85c35aefe177a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 600/870] arandr: rebuild for Python 3.8.

---
 srcpkgs/arandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/arandr/template b/srcpkgs/arandr/template
index 71c8cbcd6ed..610dbc28bca 100644
--- a/srcpkgs/arandr/template
+++ b/srcpkgs/arandr/template
@@ -1,7 +1,7 @@
 # Template file for 'arandr'
 pkgname=arandr
 version=0.1.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenlayout"

From 4dbfc32dae63dc77f95207dc5aa5a79d26d2c9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 601/870] asciinema: rebuild for Python 3.8.

---
 srcpkgs/asciinema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/asciinema/template b/srcpkgs/asciinema/template
index 961b2756301..38b8871753c 100644
--- a/srcpkgs/asciinema/template
+++ b/srcpkgs/asciinema/template
@@ -1,7 +1,7 @@
 # Template file for 'asciinema'
 pkgname=asciinema
 version=2.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="asciinema"

From 956b672f4c6db0ea67d9ad05a8308ec5ea193930 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 602/870] attic: rebuild for Python 3.8.

---
 srcpkgs/attic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/attic/template b/srcpkgs/attic/template
index 533ef7377bc..ed454302ce4 100644
--- a/srcpkgs/attic/template
+++ b/srcpkgs/attic/template
@@ -1,7 +1,7 @@
 # Template file for 'attic'
 pkgname=attic
 version=0.16
-revision=14
+revision=15
 wrksrc="Attic-$version"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel python3-Sphinx"

From 3a21ab47b75c96c91b8447979356e5d4d4027fd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 603/870] autorandr: rebuild for Python 3.8.

---
 srcpkgs/autorandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/autorandr/template b/srcpkgs/autorandr/template
index bf38b833632..7f9796be18f 100644
--- a/srcpkgs/autorandr/template
+++ b/srcpkgs/autorandr/template
@@ -1,7 +1,7 @@
 # Template file for 'autorandr'
 pkgname=autorandr
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="autorandr.py"

From ca443f3bf2b2ea4c91fa81f47ea823293476950b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 604/870] avideo: rebuild for Python 3.8.

---
 srcpkgs/avideo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/avideo/template b/srcpkgs/avideo/template
index e4d004aafff..6430d391286 100644
--- a/srcpkgs/avideo/template
+++ b/srcpkgs/avideo/template
@@ -1,7 +1,7 @@
 # Template file for 'avideo'
 pkgname=avideo
 version=2017.9.27
-revision=3
+revision=4
 archs=noarch
 wrksrc="avideo"
 build_style=python3-module

From b1abf9d1270b34913e7bd6dbfcd004dba8a8c5ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 605/870] aws-cli: rebuild for Python 3.8.

---
 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 4e5e200e3f9..4328e203c3c 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.16.253
-revision=1
+revision=2
 archs=noarch
 wrksrc="aws-cli-${version}"
 build_style=python3-module

From af6fd86e4f623114e23d8cd19217a8ba196231c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 606/870] bandit: rebuild for Python 3.8.

---
 srcpkgs/bandit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bandit/template b/srcpkgs/bandit/template
index e6c1aa52d7c..d29873ecf61 100644
--- a/srcpkgs/bandit/template
+++ b/srcpkgs/bandit/template
@@ -1,7 +1,7 @@
 # Template file for 'bandit'
 pkgname=bandit
 version=1.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="bandit"

From acb296380ef65f2682ec382f88706be8dc3bf79f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 607/870] beancount: rebuild for Python 3.8.

---
 srcpkgs/beancount/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beancount/template b/srcpkgs/beancount/template
index b1e2a121668..0ba68fc8f4e 100644
--- a/srcpkgs/beancount/template
+++ b/srcpkgs/beancount/template
@@ -1,7 +1,7 @@
 # Template file for 'beancount'
 pkgname=beancount
 version=2.2.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="beancount"
 hostmakedepends="python3-setuptools"

From 4d085c5998e4472b4e7b4fceabecba11440daceb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 608/870] beets: rebuild for Python 3.8.

---
 srcpkgs/beets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beets/template b/srcpkgs/beets/template
index 7dab56ceef8..975e6ec9f86 100644
--- a/srcpkgs/beets/template
+++ b/srcpkgs/beets/template
@@ -1,7 +1,7 @@
 # Template file for 'beets'
 pkgname=beets
 version=1.4.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="beets beetsplug"

From 1640cb62a84da8a46aff2a9c6ee5f75c0ab73224 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 609/870] black: rebuild for Python 3.8.

---
 srcpkgs/black/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/black/template b/srcpkgs/black/template
index f6d433038b9..38498a1db07 100644
--- a/srcpkgs/black/template
+++ b/srcpkgs/black/template
@@ -1,7 +1,7 @@
 # Template file for 'black'
 pkgname=black
 version=19.3b0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="black.py blib2to3"

From 5939f3d169c384cfe92957888f7b53678a69e770 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 610/870] blueman: rebuild for Python 3.8.

---
 srcpkgs/blueman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blueman/template b/srcpkgs/blueman/template
index 83f9b899583..3616aee7da3 100644
--- a/srcpkgs/blueman/template
+++ b/srcpkgs/blueman/template
@@ -1,7 +1,7 @@
 # Template file for 'blueman'
 pkgname=blueman
 version=2.1.1
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="blueman"
 configure_args="--disable-static"

From 325ad86e9fdcfc900e695cdcb3b40bc448b85d06 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 611/870] borg: rebuild for Python 3.8.

---
 srcpkgs/borg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borg/template b/srcpkgs/borg/template
index 520b1b2f65a..b69c7d3418e 100644
--- a/srcpkgs/borg/template
+++ b/srcpkgs/borg/template
@@ -1,7 +1,7 @@
 # Template file for 'borg'
 pkgname=borg
 version=1.1.10
-revision=2
+revision=3
 wrksrc="borgbackup-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel"

From 73a17277e22d3252a93a66237bf81a04393fc244 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 612/870] borgmatic: rebuild for Python 3.8.

---
 srcpkgs/borgmatic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borgmatic/template b/srcpkgs/borgmatic/template
index 8ef7c0568a6..bdc6446243c 100644
--- a/srcpkgs/borgmatic/template
+++ b/srcpkgs/borgmatic/template
@@ -1,7 +1,7 @@
 # Template file for 'borgmatic'
 pkgname=borgmatic
 version=1.3.24
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="borgmatic"

From 482c5d69113ad10842dfe91f0ac4a0631660ac77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 613/870] btrfs-backup: rebuild for Python 3.8.

---
 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 07d08a1b62b..55a3800a857 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=1
+revision=2
 wrksrc="${pkgname/-/_}-${version}"
 archs=noarch
 build_style=python3-module

From 4fce3c4f00a44852e3f9fcab80a10d4acfc04ad6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 614/870] bum: rebuild for Python 3.8.

---
 srcpkgs/bum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bum/template b/srcpkgs/bum/template
index 58d0bb2b7f7..20f200e74d6 100644
--- a/srcpkgs/bum/template
+++ b/srcpkgs/bum/template
@@ -1,7 +1,7 @@
 # Template file for 'bum'
 pkgname=bum
 version=0.1.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="bum"

From a384e5462965e984f1abca2ca12b7f62b1a415d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 615/870] caffeine-ng: rebuild for Python 3.8.

---
 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 36287fbef5b..455b2f225c4 100644
--- a/srcpkgs/caffeine-ng/template
+++ b/srcpkgs/caffeine-ng/template
@@ -1,7 +1,7 @@
 # Template file for 'caffeine-ng'
 pkgname=caffeine-ng
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="caffeine"

From b857565a7a7fddfbffbcf40b9e784593d099a0a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 616/870] cairo-dock-plugins: rebuild for Python 3.8.

---
 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 9e6149c617f..0c23a7f6928 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=11
+revision=12
 build_style=cmake
 hostmakedepends="pkg-config"
 # XXX libetpan, libdbusmenu, etc

From c0c15488d9189a782c2ab6436de598620d4d2435 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 617/870] canto-curses: rebuild for Python 3.8.

---
 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 0905972b480..4270d61c2e0 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=4
+revision=5
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel ncurses-devel readline-devel"

From a821add22450c016c7b851ee1a0309da5b5d83af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 618/870] canto-next: rebuild for Python 3.8.

---
 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 fff7e82e238..fa28bde891b 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.7
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From fa2afe1224ee7d1e031e769bf84bd596e5ac6de2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 619/870] capstone: rebuild for Python 3.8.

---
 srcpkgs/capstone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/capstone/template b/srcpkgs/capstone/template
index e13c7666ed1..fded7c7157e 100644
--- a/srcpkgs/capstone/template
+++ b/srcpkgs/capstone/template
@@ -1,7 +1,7 @@
 # Template file for 'capstone'
 pkgname=capstone
 version=4.0.1
-revision=1
+revision=2
 build_style=gnu-makefile
 make_use_env=1
 hostmakedepends="python-setuptools python3-setuptools"

From 923fca0cf844d03c602bbae81add86e8be495762 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 620/870] catfish: rebuild for Python 3.8.

---
 srcpkgs/catfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/catfish/template b/srcpkgs/catfish/template
index 1b28ffcafff..b53de6b8ea6 100644
--- a/srcpkgs/catfish/template
+++ b/srcpkgs/catfish/template
@@ -1,7 +1,7 @@
 # Template file for 'catfish'
 pkgname=catfish
 version=1.4.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="catfish catfish_lib"

From fb71b3b941c7341384c307ef6e1654b8d0b54a3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 621/870] ccsm: rebuild for Python 3.8.

---
 srcpkgs/ccsm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ccsm/template b/srcpkgs/ccsm/template
index 0421e587b23..3067003017f 100644
--- a/srcpkgs/ccsm/template
+++ b/srcpkgs/ccsm/template
@@ -1,7 +1,7 @@
 # Template file for 'ccsm'
 pkgname=ccsm
 version=0.8.16
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 hostmakedepends="automake intltool libtool pkg-config python3"

From f4212d55b3ec84e188189bc74a572c728a37c66a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 622/870] cheat: rebuild for Python 3.8.

---
 srcpkgs/cheat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cheat/template b/srcpkgs/cheat/template
index b60b4ba53b2..f1e419c3c5a 100644
--- a/srcpkgs/cheat/template
+++ b/srcpkgs/cheat/template
@@ -1,7 +1,7 @@
 # Template file for 'cheat'
 pkgname=cheat
 version=2.5.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="cheat"
 conf_files="/etc/cheat"

From eb72b0be44091e56a3e5b73cdf6d11ff80ecb8ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 623/870] clearine: rebuild for Python 3.8.

---
 srcpkgs/clearine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/clearine/template b/srcpkgs/clearine/template
index 419bb3c4550..539d494b79b 100644
--- a/srcpkgs/clearine/template
+++ b/srcpkgs/clearine/template
@@ -1,7 +1,7 @@
 # Template file for 'clearine'
 pkgname=clearine
 version=0.7
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="Clearine"
 hostmakedepends="python3-setuptools"

From ca7e63827b68cba4586e81da6e622e70addc8b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 624/870] coccigrep: rebuild for Python 3.8.

---
 srcpkgs/coccigrep/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/coccigrep/template b/srcpkgs/coccigrep/template
index 736f16a458e..a02c2f78bb2 100644
--- a/srcpkgs/coccigrep/template
+++ b/srcpkgs/coccigrep/template
@@ -1,7 +1,7 @@
 # Template file for 'coccigrep'
 pkgname=coccigrep
 version=1.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coccigrep"

From 8b0269365914ae7e030b07b30f4a76f2f1726270 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 625/870] compizconfig-python: rebuild for Python 3.8.

---
 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 b9d9ce2892b..77d53c97f46 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.16
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static"
 hostmakedepends="automake intltool libtool pkg-config glib-devel gettext-devel python3-Cython"

From c7955381746f2b68e5bb140afe81526fd62a2d16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 626/870] coursera-dl: rebuild for Python 3.8.

---
 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 0dfdd73083f..2b09e53d836 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.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coursera"

From 1bf8d7143694f636186cfbdcf357f9b86f5a635b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 627/870] cozy: rebuild for Python 3.8.

---
 srcpkgs/cozy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cozy/template b/srcpkgs/cozy/template
index a35aff61f37..2515388da18 100644
--- a/srcpkgs/cozy/template
+++ b/srcpkgs/cozy/template
@@ -1,7 +1,7 @@
 # Template file for 'cozy'
 pkgname=cozy
 version=0.6.8
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 pycompile_module="cozy"

From 7b58e6f69ae54c84b50dfe4d6041cf861a698c60 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 628/870] cpuset: rebuild for Python 3.8.

---
 srcpkgs/cpuset/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cpuset/template b/srcpkgs/cpuset/template
index cf3910d2304..12b54631617 100644
--- a/srcpkgs/cpuset/template
+++ b/srcpkgs/cpuset/template
@@ -1,7 +1,7 @@
 # Template file for 'cpuset'
 pkgname=cpuset
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="cpuset"

From a542aca478f0e84bbc23d3fd91a236635712a9f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 629/870] ctop: rebuild for Python 3.8.

---
 srcpkgs/ctop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ctop/template b/srcpkgs/ctop/template
index b8ea58515b2..5231b4a4cb3 100644
--- a/srcpkgs/ctop/template
+++ b/srcpkgs/ctop/template
@@ -1,7 +1,7 @@
 # Template file for 'ctop'
 pkgname=ctop
 version=1.0.0
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="cgroup_top.py"

From b3065c411c5e0b3e48432c6901e1e7fb20eb00d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 630/870] cura: rebuild for Python 3.8.

---
 srcpkgs/cura/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cura/template b/srcpkgs/cura/template
index 31318e5aecf..ab5cd315f21 100644
--- a/srcpkgs/cura/template
+++ b/srcpkgs/cura/template
@@ -1,7 +1,7 @@
 # Template file for 'cura'
 pkgname=cura
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Cura-${version}"
 build_style=cmake

From 9f4eb67830feb2103a78edc7651e1f73cc606074 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 631/870] curseradio: rebuild for Python 3.8.

---
 srcpkgs/curseradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/curseradio/template b/srcpkgs/curseradio/template
index 4fe2306364a..f5afe3bba34 100644
--- a/srcpkgs/curseradio/template
+++ b/srcpkgs/curseradio/template
@@ -1,7 +1,7 @@
 # Template file for 'curseradio'
 pkgname=curseradio
 version=0.0.20171017
-revision=3
+revision=4
 archs=noarch
 _commit=1bd4bd0faeec675e0647bac9a100b526cba19f8d
 wrksrc="curseradio-${_commit}"

From fa4e6156adf5c317bb85ee1d8271c9e6ce57b3e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 632/870] d-feet: rebuild for Python 3.8.

---
 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 6930eddf582..7f7d593f30a 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.15
-revision=1
+revision=2
 build_style=meson
 maintainer="Enno Boland <gottox@voidlinux.org>"
 hostmakedepends="pkg-config intltool itstool python3-pycodestyle"

From d6145053ac873c90f6383dee8ec4d696463928f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 633/870] deluge: rebuild for Python 3.8.

---
 srcpkgs/deluge/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/deluge/template b/srcpkgs/deluge/template
index 6dc7f26184d..8148c68033c 100644
--- a/srcpkgs/deluge/template
+++ b/srcpkgs/deluge/template
@@ -1,7 +1,7 @@
 # Template file for 'deluge'
 pkgname=deluge
 version=2.0.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="deluge"

From 0b2691a90e5de63e49a3c3f3adfa709d618b0a05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 634/870] devedeng: rebuild for Python 3.8.

---
 srcpkgs/devedeng/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/devedeng/template b/srcpkgs/devedeng/template
index d971b2e207b..2d0516cedd3 100644
--- a/srcpkgs/devedeng/template
+++ b/srcpkgs/devedeng/template
@@ -1,7 +1,7 @@
 # Template file for 'devedeng'
 pkgname=devedeng
 version=4.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="devedeng"

From 8b7c3bcfced7b21089b0a64ac1c375eb973af343 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 635/870] distcc: rebuild for Python 3.8.

---
 srcpkgs/distcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/distcc/template b/srcpkgs/distcc/template
index ded4255becd..4d6a450533f 100644
--- a/srcpkgs/distcc/template
+++ b/srcpkgs/distcc/template
@@ -1,7 +1,7 @@
 # Template file for 'distcc'
 pkgname=distcc
 version=3.3.3
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-Werror --with-gtk"
 conf_files="

From 98151a807bebdc6d5e41e0b6a1bd0d65659fbb7e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 636/870] docker-compose: rebuild for Python 3.8.

---
 srcpkgs/docker-compose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/docker-compose/template b/srcpkgs/docker-compose/template
index c3383fdf1ad..f4a34005c83 100644
--- a/srcpkgs/docker-compose/template
+++ b/srcpkgs/docker-compose/template
@@ -1,7 +1,7 @@
 # Template file for 'docker-compose'
 pkgname=docker-compose
 version=1.24.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="compose-${version}"
 build_style=python3-module

From 9dc2f62edc54b5e314c24fe7bb303496223adb45 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 637/870] edx-dl: rebuild for Python 3.8.

---
 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 209884640c6..a51c917d606 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.10
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="edx_dl"

From 6a769ff00b2fc959627e96d44172f8a656548751 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 638/870] electrum: rebuild for Python 3.8.

---
 srcpkgs/electrum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template
index 3861becdda9..7525e08e9e2 100644
--- a/srcpkgs/electrum/template
+++ b/srcpkgs/electrum/template
@@ -1,7 +1,7 @@
 # Template file for 'electrum'
 pkgname=electrum
 version=3.3.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electrum electrum_gui electrum_plugins"

From be52dccd4b30af3377095664bf239767a0f7be39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 639/870] electrum-ltc: rebuild for Python 3.8.

---
 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 ad6f745e152..cf7265fbec8 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.6.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"

From 45951afeb4bab3066e0459cf1441d9c3570c85dc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 640/870] eolie: rebuild for Python 3.8.

---
 srcpkgs/eolie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eolie/template b/srcpkgs/eolie/template
index b3da3dcd829..94514510c98 100644
--- a/srcpkgs/eolie/template
+++ b/srcpkgs/eolie/template
@@ -1,7 +1,7 @@
 # Template file for 'eolie'
 pkgname=eolie
 version=0.9.62
-revision=1
+revision=2
 _eolie_hash=bb4aad19272cc636bd17f2f6602127fe
 build_style=meson
 pycompile_module="eolie"

From ad02dba2226dbfc6b1fb5e715af8b58821cd8c07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 641/870] eyeD3: rebuild for Python 3.8.

---
 srcpkgs/eyeD3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eyeD3/template b/srcpkgs/eyeD3/template
index 7be047810bd..211553f0adb 100644
--- a/srcpkgs/eyeD3/template
+++ b/srcpkgs/eyeD3/template
@@ -1,7 +1,7 @@
 # Template file for 'eyeD3'
 pkgname=eyeD3
 version=0.8.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="eyed3"

From 5333d561e8831b7103f00f5e4564ce20bc26e9b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 642/870] fail2ban: rebuild for Python 3.8.

---
 srcpkgs/fail2ban/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 829e93385dc..361bcd12edd 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,7 +1,7 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
 version=0.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From 6ed6f50c8422b21b0f8244e983014120a3467562 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 643/870] fava: rebuild for Python 3.8.

---
 srcpkgs/fava/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fava/template b/srcpkgs/fava/template
index 24e66cac45b..890858b095b 100644
--- a/srcpkgs/fava/template
+++ b/srcpkgs/fava/template
@@ -1,7 +1,7 @@
 # Template file for 'fava'
 pkgname=fava
 version=1.11
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fava"

From cfe04c8e627d5d3626d852a05f3a87ecf053557f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 644/870] fierce: rebuild for Python 3.8.

---
 srcpkgs/fierce/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fierce/template b/srcpkgs/fierce/template
index 86dedb39ad2..86692c6457b 100644
--- a/srcpkgs/fierce/template
+++ b/srcpkgs/fierce/template
@@ -1,7 +1,7 @@
 # Template file for 'fierce'
 pkgname=fierce
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fierce"

From c67a6380bd6f21a660d10cde09cb2930536faee5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 645/870] fifengine: rebuild for Python 3.8.

---
 srcpkgs/fifengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fifengine/template b/srcpkgs/fifengine/template
index 1d4bcbb9297..871c94ad7e0 100644
--- a/srcpkgs/fifengine/template
+++ b/srcpkgs/fifengine/template
@@ -1,7 +1,7 @@
 # Template file for 'fifengine'
 pkgname=fifengine
 version=0.4.2
-revision=1
+revision=2
 build_style=cmake
 pycompile_module="fife"
 hostmakedepends="swig python3"

From 407bb3354f4705ac3e7d9c40479ff7272cbf5478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 646/870] flake8: rebuild for Python 3.8.

---
 srcpkgs/flake8/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/flake8/template b/srcpkgs/flake8/template
index d8f2b095644..4d7ebeba176 100644
--- a/srcpkgs/flake8/template
+++ b/srcpkgs/flake8/template
@@ -1,7 +1,7 @@
 # Template file for 'flake8'
 pkgname=flake8
 version=3.7.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="flake8"

From ec61a4ea9af21e135e85134c6060314c2c564ea5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 647/870] fontforge: rebuild for Python 3.8.

---
 srcpkgs/fontforge/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fontforge/template b/srcpkgs/fontforge/template
index 7fb02d7e371..1da02103d46 100644
--- a/srcpkgs/fontforge/template
+++ b/srcpkgs/fontforge/template
@@ -1,7 +1,7 @@
 # Template file for 'fontforge'
 pkgname=fontforge
 version=20190801
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake ca-certificates git libltdl-devel libtool m4
  pkg-config python3"

From 37d1f517b9367374631622009aed8868dfe99ecd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 648/870] gajim: rebuild for Python 3.8.

---
 srcpkgs/gajim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gajim/template b/srcpkgs/gajim/template
index 8c49c0cf6ef..e81015b3906 100644
--- a/srcpkgs/gajim/template
+++ b/srcpkgs/gajim/template
@@ -1,7 +1,7 @@
 # Template file for 'gajim'
 pkgname=gajim
 version=1.1.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gajim"

From 6764ab529d750b0f000fb70b593f9496f09c50fc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 649/870] gajim-omemo: rebuild for Python 3.8.

---
 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 803f94713be..64d47228496 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.6.29
-revision=1
+revision=2
 wrksrc="omemo"
 hostmakedepends="unzip"
 depends="python3 python3-setuptools python3-cryptography python3-axolotl python3-qrcode"

From bc7772e30c45b0390f3924bc494ace8ebd3d9f36 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 650/870] gallery-dl: rebuild for Python 3.8.

---
 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 a1e8c633fe3..62b338a32e3 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.10.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gallery_dl"

From a8cce20a8f81be2bd1179503bf3fa064745c2f95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 651/870] gandi-cli: rebuild for Python 3.8.

---
 srcpkgs/gandi-cli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gandi-cli/template b/srcpkgs/gandi-cli/template
index c5e805a09fd..4193bfe4638 100644
--- a/srcpkgs/gandi-cli/template
+++ b/srcpkgs/gandi-cli/template
@@ -1,7 +1,7 @@
 # Template file for 'gandi-cli'
 pkgname=gandi-cli
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="gandi.cli-${version}"
 build_style=python3-module

From f24eb9392afdb698a8f6bcb6abdab1b341ce6c2c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 652/870] gcovr: rebuild for Python 3.8.

---
 srcpkgs/gcovr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gcovr/template b/srcpkgs/gcovr/template
index 2b9ff94bf2a..0d4addfc8a7 100644
--- a/srcpkgs/gcovr/template
+++ b/srcpkgs/gcovr/template
@@ -1,7 +1,7 @@
 # Template file for 'gcovr'
 pkgname=gcovr
 version=4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gcovr"

From 21e366047cdceab8cd4dc05cc5b2afd5835b1395 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 653/870] gedit: rebuild for Python 3.8.

---
 srcpkgs/gedit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gedit/template b/srcpkgs/gedit/template
index 904d3b7c3c4..6666c331c52 100644
--- a/srcpkgs/gedit/template
+++ b/srcpkgs/gedit/template
@@ -1,7 +1,7 @@
 # Template file for 'gedit'
 pkgname=gedit
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gi/overrides"

From a34206afb205056883f9d351a89feee4f5a7f1d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 654/870] geis: rebuild for Python 3.8.

---
 srcpkgs/geis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/geis/template b/srcpkgs/geis/template
index fe31a3d2aeb..20afe76b0d8 100644
--- a/srcpkgs/geis/template
+++ b/srcpkgs/geis/template
@@ -1,7 +1,7 @@
 # Template file for 'geis'
 pkgname=geis
 version=2.2.17
-revision=4
+revision=5
 hostmakedepends="pkg-config python3-devel"
 makedepends="dbus-devel grail-devel frame-devel libXi-devel python3-devel xorg-server-devel"
 build_style="gnu-configure"

From 4751615f95639084961d1ceefbad8661cb13b9ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 655/870] git-cola: rebuild for Python 3.8.

---
 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 7eaba90f3be..fd0bbf971d3 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.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/share/git-cola/lib"

From 2fc999adcdffd4a6eaaaaf3b8fdbfb423aa603a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 656/870] git-review: rebuild for Python 3.8.

---
 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 d999dc87b16..c180cc60780 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="git_review"

From c14895b46900cfa2238dafac7db17ef692e75f70 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 657/870] git-revise: rebuild for Python 3.8.

---
 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 4179a52bddc..a1bf51dc447 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.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gitrevise"

From 0379f2d2c9ee002adef1ea67940c16b8e3db800f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 658/870] gitg: rebuild for Python 3.8.

---
 srcpkgs/gitg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gitg/template b/srcpkgs/gitg/template
index e0da8e9490d..a3381fdb3a7 100644
--- a/srcpkgs/gitg/template
+++ b/srcpkgs/gitg/template
@@ -1,7 +1,7 @@
 # Template file for 'gitg'
 pkgname=gitg
 version=3.32.1
-revision=1
+revision=2
 build_style=meson
 hostmakedepends="intltool pkg-config gobject-introspection vala glib-devel"
 makedepends="gtksourceview-devel libgit2-glib-devel libgee08-devel gtkspell3-devel

From a95993c22089700ea90654bb0d14eeb2fb155e04 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 659/870] glances: rebuild for Python 3.8.

---
 srcpkgs/glances/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glances/template b/srcpkgs/glances/template
index 6d4766493c3..753d9e20c92 100644
--- a/srcpkgs/glances/template
+++ b/srcpkgs/glances/template
@@ -1,7 +1,7 @@
 # Template file for 'glances'
 pkgname=glances
 version=3.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Glances-${version}"
 build_style=python3-module

From 24927a3ac9bca47d577a500212e5deed867c8ed4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 660/870] glusterfs: rebuild for Python 3.8.

---
 srcpkgs/glusterfs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glusterfs/template b/srcpkgs/glusterfs/template
index a1304e266fe..90093864286 100644
--- a/srcpkgs/glusterfs/template
+++ b/srcpkgs/glusterfs/template
@@ -1,7 +1,7 @@
 # Template file for 'glusterfs'
 pkgname=glusterfs
 version=6.5
-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 c552b476f065f5e48aaf19f15deb832a11585d19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 661/870] gnome-authenticator: rebuild for Python 3.8.

---
 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 52d161897c7..ab7c505c0fe 100644
--- a/srcpkgs/gnome-authenticator/template
+++ b/srcpkgs/gnome-authenticator/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-authenticator'
 pkgname=gnome-authenticator
 version=0.2.4
-revision=2
+revision=3
 _libgd_hash=7ae254bfc5f641c60566614e08245176f7bc5aa8
 wrksrc="Authenticator-${version}"
 build_style=meson

From 326e3cf399d3c30acca80ebcba381ebee7bedf18 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 662/870] gnome-music: rebuild for Python 3.8.

---
 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 bceb7c369c8..e2fbbcbdeca 100644
--- a/srcpkgs/gnome-music/template
+++ b/srcpkgs/gnome-music/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-music'
 pkgname=gnome-music
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gnomemusic"

From 54dd3e6ac7152bcaa2705310a6ad89c478248392 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 663/870] gnome-passbook: rebuild for Python 3.8.

---
 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 54035dc920b..89047338503 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.1
-revision=1
+revision=2
 _release_hash=0a227cfdf706f4bfcc0b782026f1aeb2
 wrksrc="passbook-${version}"
 build_style=meson

From 3ab30ed862806134529facd2eac26f11c81a6aab Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 664/870] gnome-passwordsafe: rebuild for Python 3.8.

---
 srcpkgs/gnome-passwordsafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnome-passwordsafe/template b/srcpkgs/gnome-passwordsafe/template
index f310ce03a08..8f1f19174d2 100644
--- a/srcpkgs/gnome-passwordsafe/template
+++ b/srcpkgs/gnome-passwordsafe/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-passwordsafe'
 pkgname=gnome-passwordsafe
 version=3.32.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="PasswordSafe-${version}"
 build_style=meson

From 7a85d0114447b9afbe2622d65d9d32ebf25e1b0d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 665/870] gns3-gui: rebuild for Python 3.8.

---
 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 38751dea59b..f4318dc6afc 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.1.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3"

From 5afb15227655d19b08cb6898313406d2adf87cb1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 666/870] gns3-net-converter: rebuild for Python 3.8.

---
 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 b9b7403e8a6..70b6c90e8c8 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=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3converter"

From 691cf14e7e993b7c5328c23b421047495c640117 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 667/870] gns3-server: rebuild for Python 3.8.

---
 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 6bd9c067b20..739c584cb7c 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.1.21
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="gns3server"
 hostmakedepends="python3-setuptools"

From 842c783046557e106e878f50b0379079f610e9dc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 668/870] gnucash: rebuild for Python 3.8.

---
 srcpkgs/gnucash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnucash/template b/srcpkgs/gnucash/template
index 68bb811fc42..d8ff0a8ec86 100644
--- a/srcpkgs/gnucash/template
+++ b/srcpkgs/gnucash/template
@@ -1,7 +1,7 @@
 # Template file for 'gnucash'
 pkgname=gnucash
 version=3.7
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DWITH_SQL=0 -DWITH_PYTHON=1"
 hostmakedepends="pkg-config guile python3 libxslt perl"

From 24268beeb811440b7e293e6475a5b6cb30e3d085 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 669/870] gom: rebuild for Python 3.8.

---
 srcpkgs/gom/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gom/template b/srcpkgs/gom/template
index 6ec2a5e338f..0b45e19def4 100644
--- a/srcpkgs/gom/template
+++ b/srcpkgs/gom/template
@@ -1,7 +1,7 @@
 # Template file for 'gom'
 pkgname=gom
 version=0.3.3
-revision=3
+revision=4
 build_style=meson
 build_helper="gir"
 configure_args="-Denable-introspection=$(vopt_if gir true false)

From 745a4d5304e4ee05e1c5f650b6681679864cc017 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 670/870] gpodder: rebuild for Python 3.8.

---
 srcpkgs/gpodder/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gpodder/template b/srcpkgs/gpodder/template
index 7c7414e19cd..5cc63ab4205 100644
--- a/srcpkgs/gpodder/template
+++ b/srcpkgs/gpodder/template
@@ -1,7 +1,7 @@
 # Template file for 'gpodder'
 pkgname=gpodder
 version=3.10.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="gpodder-${version}"
 make_check_target=unittest

From ba7a6129f032a0ead257c15a0c837a639c0ea212 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 671/870] gramps: rebuild for Python 3.8.

---
 srcpkgs/gramps/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gramps/template b/srcpkgs/gramps/template
index 9d1d1a4616a..5d40aeefb49 100644
--- a/srcpkgs/gramps/template
+++ b/srcpkgs/gramps/template
@@ -1,7 +1,7 @@
 # Template file for 'gramps'
 pkgname=gramps
 version=5.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gramps"

From 65d0823670965df308abec4fe4f30ddb905ede1b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 672/870] greg: rebuild for Python 3.8.

---
 srcpkgs/greg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/greg/template b/srcpkgs/greg/template
index 9c15ba82f4b..d898d5fdf61 100644
--- a/srcpkgs/greg/template
+++ b/srcpkgs/greg/template
@@ -1,7 +1,7 @@
 # Template file for 'greg'
 pkgname=greg
 version=0.4.7
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 pycompile_module="greg"

From 30ef49828a543316c4dd05e3398e26defa30a408 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 673/870] gst1-python3: rebuild for Python 3.8.

---
 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 6f02f19aca3..bf946f6a8bf 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.16.1
-revision=1
+revision=2
 wrksrc="gst-python-${version}"
 build_style=meson
 pycompile_module="gi/overrides"

From 467f0afab155652e7699d109285cca4bc9c885ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 674/870] guake: rebuild for Python 3.8.

---
 srcpkgs/guake/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/guake/template b/srcpkgs/guake/template
index 86eaba649a7..d92fdf89355 100644
--- a/srcpkgs/guake/template
+++ b/srcpkgs/guake/template
@@ -1,7 +1,7 @@
 # Template file for 'guake'
 pkgname=guake
 version=3.6.3
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 wrksrc="Guake-${version}"

From 45bb85c26d1957e19a694d18452c6938165f4872 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 675/870] gufw: rebuild for Python 3.8.

---
 srcpkgs/gufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gufw/template b/srcpkgs/gufw/template
index d2b8a4b025d..a4e7d861d71 100644
--- a/srcpkgs/gufw/template
+++ b/srcpkgs/gufw/template
@@ -1,7 +1,7 @@
 # Template file for 'gufw'
 pkgname=gufw
 version=19.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="gui-ufw-${version}"
 build_style=python3-module

From d4a05cf1f07994b8fa60292041f0403886c88b2b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 676/870] hamlib: rebuild for Python 3.8.

---
 srcpkgs/hamlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hamlib/template b/srcpkgs/hamlib/template
index c28a069cd6f..d52436c0893 100644
--- a/srcpkgs/hamlib/template
+++ b/srcpkgs/hamlib/template
@@ -1,7 +1,7 @@
 # Template file for 'hamlib'
 pkgname=hamlib
 version=3.3
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static --with-perl-binding --with-python-binding
  --with-tcl-binding --with-xml-support"

From 61c1a909b583aec0b87dbf02e54d3592779a9eea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 677/870] hangups: rebuild for Python 3.8.

---
 srcpkgs/hangups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hangups/template b/srcpkgs/hangups/template
index 0a2f2db16b4..0837a2c47c3 100644
--- a/srcpkgs/hangups/template
+++ b/srcpkgs/hangups/template
@@ -1,7 +1,7 @@
 # Template file for 'hangups'
 pkgname=hangups
 version=0.4.9
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="hangups"
 hostmakedepends="python3-setuptools"

From cb8152d1f00e4868426b3a01291b3a6ccac71562 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 678/870] hplip: rebuild for Python 3.8.

---
 srcpkgs/hplip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hplip/template b/srcpkgs/hplip/template
index 07a707569f6..3ef76e4591b 100644
--- a/srcpkgs/hplip/template
+++ b/srcpkgs/hplip/template
@@ -1,7 +1,7 @@
 # Template file for 'hplip'
 pkgname=hplip
 version=3.19.8
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="usr/share/hplip"
 configure_args="

From 25b00e31f1ef098b2a99908b8c8a4b36ebe67f57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 679/870] httpie: rebuild for Python 3.8.

---
 srcpkgs/httpie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/httpie/template b/srcpkgs/httpie/template
index 387af8ebf05..61fc1499d35 100644
--- a/srcpkgs/httpie/template
+++ b/srcpkgs/httpie/template
@@ -1,7 +1,7 @@
 # Template file for 'httpie'
 pkgname=httpie
 version=1.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="httpie"

From e00ad4f66dc231e3fe5d81505590914c2252b49b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 680/870] ibus: rebuild for Python 3.8.

---
 srcpkgs/ibus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ibus/template b/srcpkgs/ibus/template
index 4875c7535d6..d3c35d786a4 100644
--- a/srcpkgs/ibus/template
+++ b/srcpkgs/ibus/template
@@ -1,7 +1,7 @@
 # Template file for 'ibus'
 pkgname=ibus
 version=1.5.20
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 configure_args="--enable-ui --enable-gtk3 --disable-tests

From 26a877bb967b42d4ddace9518b9dc93a346272f1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 681/870] iotop: rebuild for Python 3.8.

---
 srcpkgs/iotop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template
index 146a9e97791..522bf32a7c2 100644
--- a/srcpkgs/iotop/template
+++ b/srcpkgs/iotop/template
@@ -1,7 +1,7 @@
 # Template file for 'iotop'
 pkgname=iotop
 version=0.6
-revision=5
+revision=6
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From dd62ae7b2d40c5af82249e3906f729a7a18f654d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 682/870] jrnl: rebuild for Python 3.8.

---
 srcpkgs/jrnl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template
index 3d08f129885..b184ef09508 100644
--- a/srcpkgs/jrnl/template
+++ b/srcpkgs/jrnl/template
@@ -1,7 +1,7 @@
 # Template file for 'jrnl'
 pkgname=jrnl
 version=1.9.8
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="jrnl"

From 9a8c27d733f016ae7374e5e7a9435015e9fd3216 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 683/870] khal: rebuild for Python 3.8.

---
 srcpkgs/khal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khal/template b/srcpkgs/khal/template
index 39d08a66ba8..a73516695bf 100644
--- a/srcpkgs/khal/template
+++ b/srcpkgs/khal/template
@@ -1,7 +1,7 @@
 # Template file for 'khal'
 pkgname=khal
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khal"

From 53ec54c8e3e2d4cb139f21374502251873570a9d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 684/870] khard: rebuild for Python 3.8.

---
 srcpkgs/khard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khard/template b/srcpkgs/khard/template
index 6c6f3024be1..3ec9f398d99 100644
--- a/srcpkgs/khard/template
+++ b/srcpkgs/khard/template
@@ -1,7 +1,7 @@
 # Template file for 'khard'
 pkgname=khard
 version=0.14.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khard"

From a159e67253450103f29d38eb10e59405e50bf613 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 685/870] lfm: rebuild for Python 3.8.

---
 srcpkgs/lfm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lfm/template b/srcpkgs/lfm/template
index 0a0a3b4f563..1e0e7cf29fa 100644
--- a/srcpkgs/lfm/template
+++ b/srcpkgs/lfm/template
@@ -1,7 +1,7 @@
 # Template file for 'lfm'
 pkgname=lfm
 version=3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 56b17522b1b2960b826e699fe065a9f82445cf54 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 686/870] libArcus: rebuild for Python 3.8.

---
 srcpkgs/libArcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libArcus/template b/srcpkgs/libArcus/template
index 8e6c97ada21..d2ffda576d4 100644
--- a/srcpkgs/libArcus/template
+++ b/srcpkgs/libArcus/template
@@ -1,7 +1,7 @@
 # Template file for 'libArcus'
 pkgname=libArcus
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DBUILD_EXAMPLES=OFF"
 hostmakedepends="protobuf python3-sip-devel"

From 12cd20782cd556c71e2f3b447feb0cbd46247423 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 687/870] libSavitar: rebuild for Python 3.8.

---
 srcpkgs/libSavitar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libSavitar/template b/srcpkgs/libSavitar/template
index a9d3020158f..213f02f4d65 100644
--- a/srcpkgs/libSavitar/template
+++ b/srcpkgs/libSavitar/template
@@ -1,7 +1,7 @@
 # Template file for 'libSavitar'
 pkgname=libSavitar
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 hostmakedepends="python3"
 makedepends="python3-sip-devel python3-devel pugixml-devel"

From 216775ff8b2a375819a1ace57b9158c61eb0dd61 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 688/870] libaccounts-glib: rebuild for Python 3.8.

---
 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 717be24f209..239f9307261 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=2
+revision=3
 wrksrc="${pkgname}-VERSION_${version}-8948717702424ce15f4e23e5db2c8ce0799ec120"
 build_style=meson
 hostmakedepends="gtk-doc pkg-config glib-devel gobject-introspection vala"

From 94466e31af444dca67190cc61b3110907cf50c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 689/870] libblockdev: rebuild for Python 3.8.

---
 srcpkgs/libblockdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libblockdev/template b/srcpkgs/libblockdev/template
index 1df156e3c5b..ff20fc70618 100644
--- a/srcpkgs/libblockdev/template
+++ b/srcpkgs/libblockdev/template
@@ -1,7 +1,7 @@
 # Template file for 'libblockdev'
 pkgname=libblockdev
 version=2.21
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="cryptsetup-devel device-mapper-devel dmraid-devel libbytesize-devel

From 33efb1b83b8be1b62e1c4e30533b5edcd013cef9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 690/870] libbytesize: rebuild for Python 3.8.

---
 srcpkgs/libbytesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libbytesize/template b/srcpkgs/libbytesize/template
index ee1862d889d..e07cdf29a82 100644
--- a/srcpkgs/libbytesize/template
+++ b/srcpkgs/libbytesize/template
@@ -1,7 +1,7 @@
 # Template file for 'libbytesize'
 pkgname=libbytesize
 version=1.4
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python3"
 makedepends="mpfr-devel pcre-devel"

From fea9c5f0233eedb9b18738812792808468a76f26 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 691/870] libcap-ng: rebuild for Python 3.8.

---
 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 f462636c4c1..c6ec4f0a216 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.7.10
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-python --without-python3"
 short_desc="Alternate POSIX capabilities library"

From a29df804f5f5550bf4d5b5320ee4948759e6c305 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 692/870] libffado: rebuild for Python 3.8.

---
 srcpkgs/libffado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libffado/template b/srcpkgs/libffado/template
index a9b6a5ec6a8..d566806bd82 100644
--- a/srcpkgs/libffado/template
+++ b/srcpkgs/libffado/template
@@ -1,7 +1,7 @@
 # Template file for 'libffado'
 pkgname=libffado
 version=2.4.1
-revision=1
+revision=2
 build_style=scons
 make_build_args="PREFIX=/usr MANDIR=/usr/share/man
  UDEVDIR=/usr/lib/udev/rules.d CUSTOM_ENV=1 BUILD_TESTS=0

From aaa1052c28b13bcb3d52be952473f75b410bc3a5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 693/870] libgit2-glib: rebuild for Python 3.8.

---
 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 05389a18258..ce68cb35d66 100644
--- a/srcpkgs/libgit2-glib/template
+++ b/srcpkgs/libgit2-glib/template
@@ -1,7 +1,7 @@
 # Template file for 'libgit2-glib'
 pkgname=libgit2-glib
 version=0.28.0.1
-revision=1
+revision=2
 build_style=meson
 build_helper="gir"
 configure_args="-Dintrospection=$(vopt_if gir true false)

From 7ffe04cf761a7951e8676aaf19bfc74ea7afd9e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 694/870] libixion: rebuild for Python 3.8.

---
 srcpkgs/libixion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libixion/template b/srcpkgs/libixion/template
index 5d2c58ee7c0..dbc05d8b9c1 100644
--- a/srcpkgs/libixion/template
+++ b/srcpkgs/libixion/template
@@ -2,7 +2,7 @@
 pkgname=libixion
 reverts="0.15.0_1"
 version=0.14.1
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="boost-devel mdds python3-devel"

From 557a7374c8a723fe47eac87b749a3e5dab9b065f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 695/870] liblouis: rebuild for Python 3.8.

---
 srcpkgs/liblouis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liblouis/template b/srcpkgs/liblouis/template
index 77194ad8820..13c29b62b21 100644
--- a/srcpkgs/liblouis/template
+++ b/srcpkgs/liblouis/template
@@ -1,7 +1,7 @@
 # Template file for 'liblouis'
 pkgname=liblouis
 version=3.9.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--enable-ucs4"
 pycompile_module="louis"

From 1506881961ad439ec9a3b03a86050ced3cc08983 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 696/870] opencv: rebuild for Python 3.8.

---
 srcpkgs/opencv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/opencv/template b/srcpkgs/opencv/template
index fcc38299f23..474b77be181 100644
--- a/srcpkgs/opencv/template
+++ b/srcpkgs/opencv/template
@@ -1,7 +1,7 @@
 # Template file for 'opencv'
 pkgname=opencv
 version=3.4.5
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_PRECOMPILED_HEADERS=OFF -DWITH_OPENMP=ON
  -DWITH_OPENCL=ON -DENABLE_CXX11=ON -DOPENCV_SKIP_PYTHON_LOADER=ON

From 6df077181034669b774a3c0970cbb9ff6bee89e4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 697/870] libopenshot: rebuild for Python 3.8.

---
 srcpkgs/libopenshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libopenshot/template b/srcpkgs/libopenshot/template
index e1ac18faf93..dab1f2ae1e3 100644
--- a/srcpkgs/libopenshot/template
+++ b/srcpkgs/libopenshot/template
@@ -1,7 +1,7 @@
 # Template file for 'libopenshot'
 pkgname=libopenshot
 version=0.2.3
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 build_style=cmake
 pycompile_module="openshot.py"

From 752805838a3ad0e10c0436ebcada33640ce68c13 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 698/870] liborcus: rebuild for Python 3.8.

---
 srcpkgs/liborcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liborcus/template b/srcpkgs/liborcus/template
index 3523d7830d8..e7704c43974 100644
--- a/srcpkgs/liborcus/template
+++ b/srcpkgs/liborcus/template
@@ -2,7 +2,7 @@
 pkgname=liborcus
 reverts="0.15.0_1"
 version=0.14.1
-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 2d69770514f574a291491ebde6163d11355249a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 699/870] libpwquality: rebuild for Python 3.8.

---
 srcpkgs/libpwquality/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpwquality/template b/srcpkgs/libpwquality/template
index e5a656236d7..6c2209155a3 100644
--- a/srcpkgs/libpwquality/template
+++ b/srcpkgs/libpwquality/template
@@ -1,7 +1,7 @@
 # Template file for 'libpwquality'
 pkgname=libpwquality
 version=1.4.1
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static --enable-pam --with-securedir=/usr/lib/security"
 hostmakedepends="libtool automake gettext-devel"

From 9ca73676016d30a0c0daf2c7fed88939f372d671 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 700/870] libsearpc: rebuild for Python 3.8.

---
 srcpkgs/libsearpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsearpc/template b/srcpkgs/libsearpc/template
index 61f68e5e7de..a7e0b9ce05c 100644
--- a/srcpkgs/libsearpc/template
+++ b/srcpkgs/libsearpc/template
@@ -1,7 +1,7 @@
 # Template file for 'libsearpc'
 pkgname=libsearpc
 version=3.1.0
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="pysearpc"
 configure_args="PYTHON=python3 --disable-static --disable-compile-demo"

From ac5e6676c6996682ed37a945ed0099ed2d5cc0b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 701/870] libtorrent-rasterbar: rebuild for Python 3.8.

---
 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 118108c6184..a56b9313caa 100644
--- a/srcpkgs/libtorrent-rasterbar/template
+++ b/srcpkgs/libtorrent-rasterbar/template
@@ -1,7 +1,7 @@
 # Template file for 'libtorrent-rasterbar'
 pkgname=libtorrent-rasterbar
 version=1.1.13
-revision=3
+revision=4
 build_style=gnu-configure
 configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=boost_python36"
 hostmakedepends="automake pkg-config intltool libtool python3-devel"

From ea5fedefea8c961547772cada6361f1bf2bf1b8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 702/870] libvirt-python: rebuild for Python 3.8.

---
 srcpkgs/libvirt-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvirt-python/template b/srcpkgs/libvirt-python/template
index a2f0e038166..56253c9d3b0 100644
--- a/srcpkgs/libvirt-python/template
+++ b/srcpkgs/libvirt-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libvirt-python'
 pkgname=libvirt-python
 version=5.8.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="libvirt.py libvirt_lxc.py libvirt_qemu.py"
 hostmakedepends="pkg-config python-devel python3-devel libvirt-devel"

From b326739601351a1ef5e7eedaf5fd9f2fdec0c28d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 703/870] libvoikko: rebuild for Python 3.8.

---
 srcpkgs/libvoikko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvoikko/template b/srcpkgs/libvoikko/template
index 8d21b0f9c71..ba8eef837ee 100644
--- a/srcpkgs/libvoikko/template
+++ b/srcpkgs/libvoikko/template
@@ -1,7 +1,7 @@
 # Template file for 'libvoikko'
 pkgname=libvoikko
 version=4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-hfst=false --with-dictionary-path=/usr/share/voikko"
 pycompile_module="libvoikko.py"

From 08fd7784529ce9859241cb746bbe4858d6b04d43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 704/870] libxml2-python: rebuild for Python 3.8.

---
 srcpkgs/libxml2-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libxml2-python/template b/srcpkgs/libxml2-python/template
index a80208823c2..5514ed43437 100644
--- a/srcpkgs/libxml2-python/template
+++ b/srcpkgs/libxml2-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libxml2-python'
 pkgname=libxml2-python
 version=2.9.9
-revision=3
+revision=4
 wrksrc="${pkgname%-python}-${version}"
 build_wrksrc=python
 build_style=python-module

From b5724330bf4a369b7a3693a64d6dc66d548d6d11 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 705/870] lightdm-gtk-greeter-settings: rebuild for Python 3.8.

---
 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 715f41bbef4..76a25b91e4c 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=1
+revision=2
 build_style=python3-module
 pycompile_module="lightdm_gtk_greeter_settings"
 hostmakedepends="python3-distutils-extra intltool"

From 3f793567a35e87976cfc4e1ec71d2df577066542 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 706/870] llvm9: rebuild for Python 3.8.

---
 srcpkgs/llvm9/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/llvm9/template b/srcpkgs/llvm9/template
index 3c1a1a3451b..890a93855d8 100644
--- a/srcpkgs/llvm9/template
+++ b/srcpkgs/llvm9/template
@@ -1,7 +1,7 @@
 # Template file for 'llvm9'
 pkgname=llvm9
 version=9.0.0
-revision=2
+revision=3
 wrksrc="llvm-${version}.src"
 build_style=cmake
 configure_args="

From 35705a0ec1fa89e486ce0bd914a281e75fb4c60d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 707/870] lollypop: rebuild for Python 3.8.

---
 srcpkgs/lollypop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lollypop/template b/srcpkgs/lollypop/template
index 56ace773bf3..3bd13c0d387 100644
--- a/srcpkgs/lollypop/template
+++ b/srcpkgs/lollypop/template
@@ -1,7 +1,7 @@
 # Template file for 'lollypop'
 pkgname=lollypop
 version=1.1.4.16
-revision=1
+revision=2
 # Gitlab upload tag hash
 _uhash=6b4e4e7a2c17f0770c1e2b3354ae5a3a
 archs=noarch

From abf170929ecb8e6514bb9b623c9bf0025d95467f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 708/870] lutris: rebuild for Python 3.8.

---
 srcpkgs/lutris/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lutris/template b/srcpkgs/lutris/template
index 8f54d693a12..75be521cc7c 100644
--- a/srcpkgs/lutris/template
+++ b/srcpkgs/lutris/template
@@ -1,7 +1,7 @@
 # Template file for 'lutris'
 pkgname=lutris
 version=0.5.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 build_helper="gir"

From 033d24a275b27b3e4290898f71e29ee61831825c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 709/870] magic-wormhole: rebuild for Python 3.8.

---
 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 c07753ce6ad..d93a1bbe1fc 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.11.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wormhole"

From 97518974b69815df971e878124b25e7f71d5e8ab Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 710/870] mate-tweak: rebuild for Python 3.8.

---
 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 85b829e85e8..76b79524269 100644
--- a/srcpkgs/mate-tweak/template
+++ b/srcpkgs/mate-tweak/template
@@ -1,7 +1,7 @@
 # Template file for 'mate-tweak'
 pkgname=mate-tweak
 version=19.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-pbr python3-setuptools"

From 5dcb7210004ff108d598ef337501b6a714ab18e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 711/870] med: rebuild for Python 3.8.

---
 srcpkgs/med/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/med/template b/srcpkgs/med/template
index 34dd6d006d6..acd79293246 100644
--- a/srcpkgs/med/template
+++ b/srcpkgs/med/template
@@ -1,7 +1,7 @@
 # Template file for 'med'
 pkgname=med
 version=4.0.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--with-swig=yes --includedir=/usr/include/med"
 pycompile_module=med

From 8a253a522a5cf6290bab4c221b11fe17c243d918 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 712/870] meld: rebuild for Python 3.8.

---
 srcpkgs/meld/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meld/template b/srcpkgs/meld/template
index 9ed6114299e..7cbac065ce6 100644
--- a/srcpkgs/meld/template
+++ b/srcpkgs/meld/template
@@ -1,7 +1,7 @@
 # Template file for 'meld'
 pkgname=meld
 version=3.20.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="meld"

From 570c0fe2a12b7d554e25105d2b112ddb4639606d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 713/870] menulibre: rebuild for Python 3.8.

---
 srcpkgs/menulibre/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/menulibre/template b/srcpkgs/menulibre/template
index 64311115bec..f16c5f64337 100644
--- a/srcpkgs/menulibre/template
+++ b/srcpkgs/menulibre/template
@@ -1,7 +1,7 @@
 # Template file for 'menulibre'
 pkgname=menulibre
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="menulibre menulibre_lib"

From a00eefda40ce07b1d840325fe9d07a3ab8099ec7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 714/870] meson-cmake-wrapper: rebuild for Python 3.8.

---
 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 ca14e533431..57eea159ca8 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mcw"

From 2f979bcaea6b0d151c0a1a6e9d203902e997ec89 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 715/870] mimeo: rebuild for Python 3.8.

---
 srcpkgs/mimeo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mimeo/template b/srcpkgs/mimeo/template
index bef8dcde863..991c61d9df8 100644
--- a/srcpkgs/mimeo/template
+++ b/srcpkgs/mimeo/template
@@ -1,7 +1,7 @@
 # Template file for 'mimeo'
 pkgname=mimeo
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="Mimeo.py"

From ff1f527a20fbed7dd0fed1d250d2985e5b0706cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 716/870] mozo: rebuild for Python 3.8.

---
 srcpkgs/mozo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template
index 041f2454c3d..7bc18f017c7 100644
--- a/srcpkgs/mozo/template
+++ b/srcpkgs/mozo/template
@@ -1,7 +1,7 @@
 # Template file for 'mozo'
 pkgname=mozo
 version=1.22.2
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="Mozo"

From 2a061e622b522b730af8b794f71c53c34b944c47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 717/870] mpd-sima: rebuild for Python 3.8.

---
 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 fb72f0d2632..831fec709b7 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=1
+revision=2
 archs=noarch
 wrksrc="MPD_sima-${version}"
 build_style=python3-module

From 4541fbfc5e539024ce3f3e9df1ea6d3e01ac44d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 718/870] mps-youtube: rebuild for Python 3.8.

---
 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 7b104aa706f..2141b3e627d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mps_youtube"

From d2c8b5993a534c4886b03fac48576e98c1386ba1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 719/870] mugshot: rebuild for Python 3.8.

---
 srcpkgs/mugshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mugshot/template b/srcpkgs/mugshot/template
index cf27b30acac..1e695654a86 100644
--- a/srcpkgs/mugshot/template
+++ b/srcpkgs/mugshot/template
@@ -1,7 +1,7 @@
 # Template file for 'mugshot'
 pkgname=mugshot
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra"

From db10cdade64c5729cc74bab77e95afdfbcadc1f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 720/870] multibootusb: rebuild for Python 3.8.

---
 srcpkgs/multibootusb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/multibootusb/template b/srcpkgs/multibootusb/template
index 049b641c5fd..70cb07a85ac 100644
--- a/srcpkgs/multibootusb/template
+++ b/srcpkgs/multibootusb/template
@@ -1,7 +1,7 @@
 # Template file for 'multibootusb'
 pkgname=multibootusb
 version=9.2.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="scripts"

From c9b4100746fd53623e815e7ae46e1b1f52380e24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 721/870] mymcplus: rebuild for Python 3.8.

---
 srcpkgs/mymcplus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mymcplus/template b/srcpkgs/mymcplus/template
index 369ac8048ed..f30c62b09f4 100644
--- a/srcpkgs/mymcplus/template
+++ b/srcpkgs/mymcplus/template
@@ -1,7 +1,7 @@
 # Template file for 'mymcplus'
 pkgname=mymcplus
 version=3.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mymcplus"

From b2378661b9952d583c3fd2fa9a34c0c5323afad2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 722/870] nagstamon: rebuild for Python 3.8.

---
 srcpkgs/nagstamon/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/nagstamon/template b/srcpkgs/nagstamon/template
index 3a63bb5f1d9..6377e269309 100644
--- a/srcpkgs/nagstamon/template
+++ b/srcpkgs/nagstamon/template
@@ -1,7 +1,7 @@
 # Template file for 'nagstamon'
 pkgname=nagstamon
 version=3.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=Nagstamon
 build_style=python3-module

From 603bb18ac02a2be19f284b1f67d90c521bc01c8f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 723/870] neovim-remote: rebuild for Python 3.8.

---
 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 d8473bf0521..7391f9df2ee 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.2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nvr"

From b0ed985381a1685240ba4279fa545dbb0d59bf75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 724/870] newt: rebuild for Python 3.8.

---
 srcpkgs/newt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/newt/template b/srcpkgs/newt/template
index 3971bbfdbf7..25ccc946f51 100644
--- a/srcpkgs/newt/template
+++ b/srcpkgs/newt/template
@@ -1,7 +1,7 @@
 # Template file for 'newt'
 pkgname=newt
 version=0.52.21
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python-devel python3-devel"
 makedepends="slang-devel popt-devel python3-devel python-devel"

From d391f8e56c1266e015552919c6778d81b04188e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 725/870] notmuch: rebuild for Python 3.8.

---
 srcpkgs/notmuch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/notmuch/template b/srcpkgs/notmuch/template
index ced670a59d4..a3085fd4c27 100644
--- a/srcpkgs/notmuch/template
+++ b/srcpkgs/notmuch/template
@@ -1,7 +1,7 @@
 # Template file for 'notmuch'
 pkgname=notmuch
 version=0.29.1
-revision=1
+revision=2
 hostmakedepends="perl pkg-config python-devel python3-Sphinx python3-devel"
 makedepends="bash-completion gmime3-devel talloc-devel xapian-core-devel"
 short_desc="Thread-based email index, search, and tagging"

From 764938fb65f7ce96e941e254e8160b34907628d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 726/870] nyx: rebuild for Python 3.8.

---
 srcpkgs/nyx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/nyx/template b/srcpkgs/nyx/template
index 201ab5856ff..4b265771793 100644
--- a/srcpkgs/nyx/template
+++ b/srcpkgs/nyx/template
@@ -1,7 +1,7 @@
 # Template file for 'nyx'
 pkgname=nyx
 version=2.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nyx"

From 6087f754c2784a04c94f62c673d1b93d1f9b69f8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 727/870] olm-python: rebuild for Python 3.8.

---
 srcpkgs/olm-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/olm-python/template b/srcpkgs/olm-python/template
index 57ac1cfa01b..0141611ea3f 100644
--- a/srcpkgs/olm-python/template
+++ b/srcpkgs/olm-python/template
@@ -1,7 +1,7 @@
 # Template file for 'olm-python'
 pkgname=olm-python
 version=3.1.4
-revision=1
+revision=2
 wrksrc="olm-${version}"
 build_wrksrc=python
 build_style=python-module

From 1fc318bd20b04418299f379ef9aae944b1c52797 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 728/870] onboard: rebuild for Python 3.8.

---
 srcpkgs/onboard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onboard/template b/srcpkgs/onboard/template
index 844744038d8..467ed8f0ea5 100644
--- a/srcpkgs/onboard/template
+++ b/srcpkgs/onboard/template
@@ -1,7 +1,7 @@
 # Template file for 'onboard'
 pkgname=onboard
 version=1.4.1
-revision=4
+revision=5
 build_style=python3-module
 pycompile_module="Onboard"
 patch_args="-Np1"

From 98444af4a966b0963945a92e602015593ab8e13e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 729/870] openrazer-meta: rebuild for Python 3.8.

---
 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 112cb9e900b..60dc8212a73 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=2
+revision=3
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From ae87aaf473f51392a157b756b26694f9cb443bdb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 730/870] openshot: rebuild for Python 3.8.

---
 srcpkgs/openshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/openshot/template b/srcpkgs/openshot/template
index 605ea7305c2..d71b4d09fae 100644
--- a/srcpkgs/openshot/template
+++ b/srcpkgs/openshot/template
@@ -1,7 +1,7 @@
 # Template file for 'openshot'
 pkgname=openshot
 version=2.4.4
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 wrksrc="${pkgname}-qt-${version}"
 build_style=python3-module

From 833825f13e27bb007063cf5088f03b19a2cc08d1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 731/870] orca: rebuild for Python 3.8.

---
 srcpkgs/orca/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/orca/template b/srcpkgs/orca/template
index ac1c0e1dc0e..57d1495c10a 100644
--- a/srcpkgs/orca/template
+++ b/srcpkgs/orca/template
@@ -1,7 +1,7 @@
 # Template file for 'orca'
 pkgname=orca
 version=3.34.0
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="orca"

From fd434fc04bd61615f3ce092210da9bce156e0b1c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 732/870] papis: rebuild for Python 3.8.

---
 srcpkgs/papis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/papis/template b/srcpkgs/papis/template
index 95044b2a6a4..d99f358fc0d 100644
--- a/srcpkgs/papis/template
+++ b/srcpkgs/papis/template
@@ -1,7 +1,7 @@
 # Template file for 'papis'
 pkgname=papis
 version=0.8
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-requests python3-yaml python3-chardet python3-BeautifulSoup4

From 36004787b7c8c90c93861f5eb6f9b74ef642aef7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 733/870] paraview: rebuild for Python 3.8.

---
 srcpkgs/paraview/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/paraview/template b/srcpkgs/paraview/template
index 3b721b1833a..feb1c6ad9d9 100644
--- a/srcpkgs/paraview/template
+++ b/srcpkgs/paraview/template
@@ -1,7 +1,7 @@
 # Template file for 'paraview'
 pkgname=paraview
 version=5.6.1
-revision=1
+revision=2
 wrksrc=ParaView-v${version}
 build_style=cmake
 configure_args="-DPARAVIEW_ENABLE_FFMPEG=ON

From 2b51d62c321774f3a43496f679dfd488f706067d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 734/870] pass-git-helper: rebuild for Python 3.8.

---
 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 dfeed3ba4f0..6d7f25bd8a7 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.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 7acd313d408257f08b7f5107ef2c3a071e27bac7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 735/870] peframe: rebuild for Python 3.8.

---
 srcpkgs/peframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peframe/template b/srcpkgs/peframe/template
index b9d64f7a5a6..5ecede6cf56 100644
--- a/srcpkgs/peframe/template
+++ b/srcpkgs/peframe/template
@@ -1,7 +1,7 @@
 # Template file for 'peframe'
 pkgname=peframe
 version=6.0.3
-revision=1
+revision=2
 archs=noarch
 build_style="python3-module"
 pycompile_module="peframe"

From 52531c540c07eaf0c3a16b6bb67649c95137ca85 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 736/870] peru: rebuild for Python 3.8.

---
 srcpkgs/peru/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peru/template b/srcpkgs/peru/template
index 682440f0b50..10d4689338d 100644
--- a/srcpkgs/peru/template
+++ b/srcpkgs/peru/template
@@ -1,7 +1,7 @@
 # Template file for 'peru'
 pkgname=peru
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="peru"

From ac9029de11dd453ad3d58417cccbafae6f6fe9df Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 737/870] pgcli: rebuild for Python 3.8.

---
 srcpkgs/pgcli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index b967287e9cb..b187a0a4440 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,7 +1,7 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pgcli"

From 697b8b19a4450738d8afb43f3b77cdd2aca0e2ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 738/870] picard: rebuild for Python 3.8.

---
 srcpkgs/picard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/picard/template b/srcpkgs/picard/template
index 1bae142434a..08404a88475 100644
--- a/srcpkgs/picard/template
+++ b/srcpkgs/picard/template
@@ -1,7 +1,7 @@
 # Template file for 'picard'
 pkgname=picard
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname}-release-${version}"
 build_style=python3-module

From 97e6c4b434ba43b31ea9750f0cde96e7e90d3cdb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 739/870] piper: rebuild for Python 3.8.

---
 srcpkgs/piper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/piper/template b/srcpkgs/piper/template
index af8cc854991..91a31131f84 100644
--- a/srcpkgs/piper/template
+++ b/srcpkgs/piper/template
@@ -1,7 +1,7 @@
 # Template file for 'piper'
 pkgname=piper
 version=0.2.904
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 hostmakedepends="libratbag pkg-config glib-devel"

From f09dd780f8b4fd3fc1fce2c6353bd6fd4f28068a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 740/870] playitslowly: rebuild for Python 3.8.

---
 srcpkgs/playitslowly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/playitslowly/template b/srcpkgs/playitslowly/template
index d26cea3510a..6d3483ae251 100644
--- a/srcpkgs/playitslowly/template
+++ b/srcpkgs/playitslowly/template
@@ -1,7 +1,7 @@
 # Template file for 'playitslowly'
 pkgname=playitslowly
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From 8c15c00c27bec33d1ebaf461d73630f537f68cfb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 741/870] pmbootstrap: rebuild for Python 3.8.

---
 srcpkgs/pmbootstrap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pmbootstrap/template b/srcpkgs/pmbootstrap/template
index 1bfa8183a84..15e606439c2 100644
--- a/srcpkgs/pmbootstrap/template
+++ b/srcpkgs/pmbootstrap/template
@@ -1,7 +1,7 @@
 # Template file for 'pmbootstrap'
 pkgname=pmbootstrap
 version=1.9.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pmb"

From 85aa9e230e8defb3743cf881d851670569ea96ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 742/870] pockyt: rebuild for Python 3.8.

---
 srcpkgs/pockyt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pockyt/template b/srcpkgs/pockyt/template
index 760573904b1..ca56e9f98f0 100644
--- a/srcpkgs/pockyt/template
+++ b/srcpkgs/pockyt/template
@@ -1,7 +1,7 @@
 # Template file for 'pockyt'
 pkgname=pockyt
 version=1.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From c250ac766afa4af143600d8797168e0c2580a09a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 743/870] poezio: rebuild for Python 3.8.

---
 srcpkgs/poezio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/poezio/template b/srcpkgs/poezio/template
index 56f8138bb5e..4b318419dab 100644
--- a/srcpkgs/poezio/template
+++ b/srcpkgs/poezio/template
@@ -1,7 +1,7 @@
 # Template file for 'poezio'
 pkgname=poezio
 version=0.12.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="poezio poezio_plugins poezio_themes"
 hostmakedepends="python3-setuptools pkg-config"

From 239065bf2b49e534baae7b89acdbcc0936f7ab92 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 744/870] protontricks: rebuild for Python 3.8.

---
 srcpkgs/protontricks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/protontricks/template b/srcpkgs/protontricks/template
index a32f51c4845..dc003b63690 100644
--- a/srcpkgs/protontricks/template
+++ b/srcpkgs/protontricks/template
@@ -1,7 +1,7 @@
 # Template file for 'protontricks'
 pkgname=protontricks
 version=1.2.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-setuptools"

From 20fd99ca3a5123c7bd44ea479c9e40343e512fef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 745/870] pulseaudio-equalizer-ladspa: rebuild for Python 3.8.

---
 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 62d7eef2a65..10198de2c08 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=1
+revision=2
 wrksrc="equalizer-${version}"
 build_style=meson
 pycompile_module="pulseeq"

From a9e46412f1cd45af9dfb388fb63d869c0802a1e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 746/870] pulseeffects: rebuild for Python 3.8.

---
 srcpkgs/pulseeffects/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pulseeffects/template b/srcpkgs/pulseeffects/template
index 7fc44f938d9..dc9044cad32 100644
--- a/srcpkgs/pulseeffects/template
+++ b/srcpkgs/pulseeffects/template
@@ -2,7 +2,7 @@
 pkgname=pulseeffects
 reverts="4.3.4_1"
 version=3.2.3
-revision=3
+revision=4
 build_style=meson
 pycompile_module="PulseEffects PulseEffectsTest"
 hostmakedepends="pkg-config"

From 9f36566f7d8bd66300ba6ffa78e2825b0851b251 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 747/870] py3status: rebuild for Python 3.8.

---
 srcpkgs/py3status/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/py3status/template b/srcpkgs/py3status/template
index b7a263270e4..01709cfd14d 100644
--- a/srcpkgs/py3status/template
+++ b/srcpkgs/py3status/template
@@ -1,7 +1,7 @@
 # Template file for 'py3status'
 pkgname=py3status
 version=3.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="py3status"

From ba76f685d5685ac09453caf484a2acafd4c93017 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 748/870] pychess: rebuild for Python 3.8.

---
 srcpkgs/pychess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pychess/template b/srcpkgs/pychess/template
index 2c6ecef7bf9..d0594aa77f4 100644
--- a/srcpkgs/pychess/template
+++ b/srcpkgs/pychess/template
@@ -1,7 +1,7 @@
 # Template file for 'pychess'
 pkgname=pychess
 version=0.12.4
-revision=2
+revision=3
 build_style=python3-module
 pycompile_module="pychess"
 archs=noarch

From 617f168c619fdf6a04f334411b0416e176236b81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 749/870] pycp: rebuild for Python 3.8.

---
 srcpkgs/pycp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pycp/template b/srcpkgs/pycp/template
index 770eb50d3f4..c9066259862 100644
--- a/srcpkgs/pycp/template
+++ b/srcpkgs/pycp/template
@@ -1,7 +1,7 @@
 # Template file for 'pycp'
 pkgname=pycp
 version=8.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pycp"

From 3c370db9eabed525263ab6615d08ba183947e135 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 750/870] pymol: rebuild for Python 3.8.

---
 srcpkgs/pymol/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pymol/template b/srcpkgs/pymol/template
index 428ba7a6deb..e1031f325c0 100644
--- a/srcpkgs/pymol/template
+++ b/srcpkgs/pymol/template
@@ -1,7 +1,7 @@
 # Template file for 'pymol'
 pkgname=pymol
 version=2.3.0
-revision=1
+revision=2
 wrksrc=${pkgname}-open-source-${version}
 build_style="python3-module"
 makedepends="msgpack-devel python3-numpy freetype-devel libfreeglut-devel glew-devel

From fa99b15008d91a80d97a0b844393ed533af6e473 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 751/870] pyradio: rebuild for Python 3.8.

---
 srcpkgs/pyradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyradio/template b/srcpkgs/pyradio/template
index 10d7d8c6fbb..d2d5feddbdd 100644
--- a/srcpkgs/pyradio/template
+++ b/srcpkgs/pyradio/template
@@ -1,7 +1,7 @@
 # Template file for 'pyradio'
 pkgname=pyradio
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pyradio"

From f64fb1ed8a5d262db96c714377aa188e786924bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 752/870] pyside2-tools: rebuild for Python 3.8.

---
 srcpkgs/pyside2-tools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyside2-tools/template b/srcpkgs/pyside2-tools/template
index 4ba0044452d..0a153de8c15 100644
--- a/srcpkgs/pyside2-tools/template
+++ b/srcpkgs/pyside2-tools/template
@@ -1,7 +1,7 @@
 # Template file for 'pyside2-tools'
 pkgname=pyside2-tools
 version=5.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release

From 6f655056055676e53f3810b50d23122ad660f597 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 753/870] pysolfc: rebuild for Python 3.8.

---
 srcpkgs/pysolfc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pysolfc/template b/srcpkgs/pysolfc/template
index 62eb90009af..1631e9619d3 100644
--- a/srcpkgs/pysolfc/template
+++ b/srcpkgs/pysolfc/template
@@ -1,7 +1,7 @@
 # Template file for 'pysolfc'
 pkgname=pysolfc
 version=2.6.4
-revision=2
+revision=3
 archs="noarch"
 wrksrc="PySolFC-${pkgname}-${version}"
 build_style=python3-module

From 166015c44cc8031246d8c3ad92fa9693b360a0ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 754/870] pywal: rebuild for Python 3.8.

---
 srcpkgs/pywal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pywal/template b/srcpkgs/pywal/template
index 214a36698f2..98c4e1581e4 100644
--- a/srcpkgs/pywal/template
+++ b/srcpkgs/pywal/template
@@ -1,7 +1,7 @@
 # Template file for 'pywal'
 pkgname=pywal
 version=3.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pywal"

From 9420eb21934c4725bc7356059fcfb12bc1282f49 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 755/870] qomui: rebuild for Python 3.8.

---
 srcpkgs/qomui/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qomui/template b/srcpkgs/qomui/template
index 4e68864252d..8063350ba06 100644
--- a/srcpkgs/qomui/template
+++ b/srcpkgs/qomui/template
@@ -1,7 +1,7 @@
 # Template file for 'qomui'
 pkgname=qomui
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qomui"

From 31d555a674d5166324702c69ed5ebba8cf496144 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 756/870] quodlibet: rebuild for Python 3.8.

---
 srcpkgs/quodlibet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/quodlibet/template b/srcpkgs/quodlibet/template
index 53f6e926315..4b0c4ba0de5 100644
--- a/srcpkgs/quodlibet/template
+++ b/srcpkgs/quodlibet/template
@@ -1,7 +1,7 @@
 # Template file for 'quodlibet'
 pkgname=quodlibet
 version=4.2.1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="quodlibet"

From d4f4dc8a65216d468347696da511136a22143d66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 757/870] qutebrowser: rebuild for Python 3.8.

---
 srcpkgs/qutebrowser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qutebrowser/template b/srcpkgs/qutebrowser/template
index 11b74e4445d..07257c2d84b 100644
--- a/srcpkgs/qutebrowser/template
+++ b/srcpkgs/qutebrowser/template
@@ -1,7 +1,7 @@
 # Template file for 'qutebrowser'
 pkgname=qutebrowser
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qutebrowser"

From bc897183184d088cd486028e3acb2f03c3272941 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 758/870] r128gain: rebuild for Python 3.8.

---
 srcpkgs/r128gain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/r128gain/template b/srcpkgs/r128gain/template
index cdea955828e..1cb30c786f8 100644
--- a/srcpkgs/r128gain/template
+++ b/srcpkgs/r128gain/template
@@ -1,7 +1,7 @@
 # Template file for 'r128gain'
 pkgname=r128gain
 version=0.9.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="r128gain"
 hostmakedepends="python3-setuptools"

From 566941478b046f4ce25ce194337759e5cb6bcdbc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 759/870] radicale2: rebuild for Python 3.8.

---
 srcpkgs/radicale2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/radicale2/template b/srcpkgs/radicale2/template
index 0d8a27d89f3..310bc8cb3cf 100644
--- a/srcpkgs/radicale2/template
+++ b/srcpkgs/radicale2/template
@@ -1,7 +1,7 @@
 # Template file for 'radicale2'
 pkgname=radicale2
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module

From 59088edee59e935fd187c295b30c0785430fc79f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 760/870] ranger: rebuild for Python 3.8.

---
 srcpkgs/ranger/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template
index a387eac4ed7..a49716971a5 100644
--- a/srcpkgs/ranger/template
+++ b/srcpkgs/ranger/template
@@ -1,7 +1,7 @@
 # Template file for 'ranger'
 pkgname=ranger
 version=1.9.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ranger"

From 7f57ebbd29684322e558eb1a9b1f9af8e3176c92 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 761/870] rednotebook: rebuild for Python 3.8.

---
 srcpkgs/rednotebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rednotebook/template b/srcpkgs/rednotebook/template
index ac870a7a992..af7dea12fd5 100644
--- a/srcpkgs/rednotebook/template
+++ b/srcpkgs/rednotebook/template
@@ -1,7 +1,7 @@
 # Template file for 'rednotebook'
 pkgname=rednotebook
 version=2.11.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rednotebook"

From dcd691931d2a21c0fa8b4d9f88d1ac9934a57895 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 762/870] redshift: rebuild for Python 3.8.

---
 srcpkgs/redshift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/redshift/template b/srcpkgs/redshift/template
index bb31e7cec05..c58b8daeb76 100644
--- a/srcpkgs/redshift/template
+++ b/srcpkgs/redshift/template
@@ -1,7 +1,7 @@
 # Template file for 'redshift'
 pkgname=redshift
 version=1.12
-revision=1
+revision=2
 build_style=gnu-configure
 build_options="geoclue2"
 configure_args="--enable-gui --disable-geoclue $(vopt_enable geoclue2)"

From 7e532561c9ef350638498faa7e7f325b14d7ab7f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 763/870] ripe-atlas-tools: rebuild for Python 3.8.

---
 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 c8eef786962..c5e21c4b8dc 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=2.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ripe/atlas/tools"

From ee7af3415797f12b96ea4ce055f032f7712eebc4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 764/870] rmlint: rebuild for Python 3.8.

---
 srcpkgs/rmlint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rmlint/template b/srcpkgs/rmlint/template
index dc8d904d0c2..894a9a1dd01 100644
--- a/srcpkgs/rmlint/template
+++ b/srcpkgs/rmlint/template
@@ -1,7 +1,7 @@
 # Template file for 'rmlint'
 pkgname=rmlint
 version=2.9.0
-revision=1
+revision=2
 build_style=scons
 hostmakedepends="pkg-config python3-Sphinx glib-devel"
 makedepends="libblkid-devel elfutils-devel json-glib-devel"

From 2a9b688a2dc36357175d9beadefb812c5d79ce08 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 765/870] rtv: rebuild for Python 3.8.

---
 srcpkgs/rtv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rtv/template b/srcpkgs/rtv/template
index 1a089e3e88d..1fc137b2e5b 100644
--- a/srcpkgs/rtv/template
+++ b/srcpkgs/rtv/template
@@ -1,7 +1,7 @@
 # Template file for 'rtv'
 pkgname=rtv
 version=1.27.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rtv"

From 6505e1bb40cca4307d7178a55644b8ddc9e1dc66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 766/870] rubber: rebuild for Python 3.8.

---
 srcpkgs/rubber/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rubber/template b/srcpkgs/rubber/template
index cf668638cef..c7fe4cbbd06 100644
--- a/srcpkgs/rubber/template
+++ b/srcpkgs/rubber/template
@@ -1,7 +1,7 @@
 # Template file for 'rubber'
 pkgname=rubber
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From 8514a38491af6c2cd7044cf69bbd56c369434d9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 767/870] safeeyes: rebuild for Python 3.8.

---
 srcpkgs/safeeyes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/safeeyes/template b/srcpkgs/safeeyes/template
index bc35f302011..e7019662316 100644
--- a/srcpkgs/safeeyes/template
+++ b/srcpkgs/safeeyes/template
@@ -1,7 +1,7 @@
 # Template file for 'safeeyes'
 pkgname=safeeyes
 version=2.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="safeeyes"

From aec83edf37c40660fad9a3fd85bbfe14e5e21d7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 768/870] scapy: rebuild for Python 3.8.

---
 srcpkgs/scapy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scapy/template b/srcpkgs/scapy/template
index 65242f332a8..36972bfd461 100644
--- a/srcpkgs/scapy/template
+++ b/srcpkgs/scapy/template
@@ -1,7 +1,7 @@
 # Template file for 'scapy'
 pkgname=scapy
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="scapy"

From 0c126e7835156f45c278048217b08ee6e6bd7295 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 769/870] screenplain: rebuild for Python 3.8.

---
 srcpkgs/screenplain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/screenplain/template b/srcpkgs/screenplain/template
index 8410ab45e40..8eb759ae6a6 100644
--- a/srcpkgs/screenplain/template
+++ b/srcpkgs/screenplain/template
@@ -1,7 +1,7 @@
 # Template file for 'screenplain'
 pkgname=screenplain
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenplain"

From c8efdbb3f99764965137fca1dc8692ba005b93ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 770/870] scudcloud: rebuild for Python 3.8.

---
 srcpkgs/scudcloud/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
index 1b9f5f27d8a..1ab2618066e 100644
--- a/srcpkgs/scudcloud/template
+++ b/srcpkgs/scudcloud/template
@@ -1,7 +1,7 @@
 # Template file for 'scudcloud'
 pkgname=scudcloud
 version=1.65
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="scudcloud"
 hostmakedepends="python3-setuptools"

From 5a275f15c82b1c5636d5b579aefb5c24b9ec0d7b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 771/870] seafile-libclient: rebuild for Python 3.8.

---
 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 47c49d5ceb2..5eda59c1041 100644
--- a/srcpkgs/seafile-libclient/template
+++ b/srcpkgs/seafile-libclient/template
@@ -1,7 +1,7 @@
 # Template file for 'seafile-libclient'
 pkgname=seafile-libclient
 version=7.0.2
-revision=1
+revision=2
 _distname="${pkgname/-libclient/}"
 wrksrc="${_distname}-${version}"
 build_style=gnu-configure

From 817b0026ba1b9b733f8ca6db19b410b148a94c3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 772/870] sonata: rebuild for Python 3.8.

---
 srcpkgs/sonata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template
index 3e07610d1e5..fc2d86e6c1a 100644
--- a/srcpkgs/sonata/template
+++ b/srcpkgs/sonata/template
@@ -1,7 +1,7 @@
 # Template file for 'sonata'
 pkgname=sonata
 version=1.7b1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="sonata"

From 836c3b7ddc0fb818f9aa4b7846e9546d73d04b5d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 773/870] speech-dispatcher: rebuild for Python 3.8.

---
 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 0c27951586a..39cebf1f320 100644
--- a/srcpkgs/speech-dispatcher/template
+++ b/srcpkgs/speech-dispatcher/template
@@ -1,7 +1,7 @@
 # Template build file for 'speech-dispatcher'.
 pkgname=speech-dispatcher
 version=0.8.8
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static"
 short_desc="High-level device independent layer for speech synthesis interface"

From def9886a278151b86873ceed2e5ffd38837c7ce3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 774/870] speedtest-cli: rebuild for Python 3.8.

---
 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 6746ea3a35e..c65d9fd631d 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.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="speedtest.py"

From 996c6289bcbad932ba8c0c106212ebc646820dc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 775/870] sshuttle: rebuild for Python 3.8.

---
 srcpkgs/sshuttle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sshuttle/template b/srcpkgs/sshuttle/template
index e74d90171f2..04bae9a15c3 100644
--- a/srcpkgs/sshuttle/template
+++ b/srcpkgs/sshuttle/template
@@ -1,7 +1,7 @@
 # Template file for 'sshuttle'
 pkgname=sshuttle
 version=0.78.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="sshuttle"

From 3c36f9f633c2a5256cafc0e16a370b7361ec6d1b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 776/870] sssd: rebuild for Python 3.8.

---
 srcpkgs/sssd/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sssd/template b/srcpkgs/sssd/template
index 2ea28d21bee..13d0da0ba99 100644
--- a/srcpkgs/sssd/template
+++ b/srcpkgs/sssd/template
@@ -1,7 +1,7 @@
 # Template file for 'sssd'
 pkgname=sssd
 version=2.0.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-selinux --without-semanage
  --disable-cifs-idmap-plugin --without-samba --with-os=fedora

From 3608b9eb56b0ada6a054962a568bf3ca47caff2f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 777/870] stcgal: rebuild for Python 3.8.

---
 srcpkgs/stcgal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stcgal/template b/srcpkgs/stcgal/template
index 3410ccf8678..d75e88837cc 100644
--- a/srcpkgs/stcgal/template
+++ b/srcpkgs/stcgal/template
@@ -1,7 +1,7 @@
 # Template file for 'stcgal'
 pkgname=stcgal
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="stcgal"

From 4600b6fffa5b3a4b5c017f188889cec36dc9d07b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 778/870] stig: rebuild for Python 3.8.

---
 srcpkgs/stig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stig/template b/srcpkgs/stig/template
index 0777c5f0cc2..abe5f3b563c 100644
--- a/srcpkgs/stig/template
+++ b/srcpkgs/stig/template
@@ -1,7 +1,7 @@
 # Template file for 'stig'
 pkgname=stig
 version=0.10.1a
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 1b222affe81449d1fef2829286949c748cc2a86c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 779/870] streamlink: rebuild for Python 3.8.

---
 srcpkgs/streamlink/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/streamlink/template b/srcpkgs/streamlink/template
index abcdc12c4ac..59caa85dc8a 100644
--- a/srcpkgs/streamlink/template
+++ b/srcpkgs/streamlink/template
@@ -1,7 +1,7 @@
 # Template file for 'streamlink'
 pkgname=streamlink
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="streamlink streamlink_cli"

From 9159c5859dc9b5a7c4853e709d3235b4c9bc5f7b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 780/870] subuser: rebuild for Python 3.8.

---
 srcpkgs/subuser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/subuser/template b/srcpkgs/subuser/template
index 50444246b29..0bc3e71db36 100644
--- a/srcpkgs/subuser/template
+++ b/srcpkgs/subuser/template
@@ -1,7 +1,7 @@
 # Template file for 'subuser'
 pkgname=subuser
 version=0.6.2
-revision=2
+revision=3
 archs="x86_64*"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 9e55061a83b04fb846b0107ff8988530c8b7fd7f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 781/870] synapse: rebuild for Python 3.8.

---
 srcpkgs/synapse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template
index daae80e5792..0c0fd6841fb 100644
--- a/srcpkgs/synapse/template
+++ b/srcpkgs/synapse/template
@@ -1,7 +1,7 @@
 # Template file for 'synapse'
 pkgname=synapse
 version=1.3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 3f24791c051e3f4c32097a1e2737de1a83bc4b45 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 782/870] tekaim: rebuild for Python 3.8.

---
 srcpkgs/tekaim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tekaim/template b/srcpkgs/tekaim/template
index e3cc5335ecc..bd60dcc57a6 100644
--- a/srcpkgs/tekaim/template
+++ b/srcpkgs/tekaim/template
@@ -1,7 +1,7 @@
 # Template file for 'tekaim'
 pkgname=tekaim
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From d2c0aca833eabdd8704e7032c2030a6e878ebdc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 783/870] telepresence: rebuild for Python 3.8.

---
 srcpkgs/telepresence/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/telepresence/template b/srcpkgs/telepresence/template
index 17300f3b548..fa7f916f66f 100644
--- a/srcpkgs/telepresence/template
+++ b/srcpkgs/telepresence/template
@@ -1,7 +1,7 @@
 # Template file for 'telepresence'
 pkgname=telepresence
 version=0.102
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="telepresence"

From 8476f6a50e93ab42aefe2cd5eab135b8bc7ee5cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 784/870] termdown: rebuild for Python 3.8.

---
 srcpkgs/termdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/termdown/template b/srcpkgs/termdown/template
index 90a4a894d42..299de920389 100644
--- a/srcpkgs/termdown/template
+++ b/srcpkgs/termdown/template
@@ -1,7 +1,7 @@
 # Template file for 'termdown'
 pkgname=termdown
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="termdown.py"

From 53ec354c343c4beb98601947b280d385494a6a3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 785/870] terminal_markdown_viewer: rebuild for Python 3.8.

---
 srcpkgs/terminal_markdown_viewer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/terminal_markdown_viewer/template b/srcpkgs/terminal_markdown_viewer/template
index e5d0f38aae2..ba3fcfdc8d6 100644
--- a/srcpkgs/terminal_markdown_viewer/template
+++ b/srcpkgs/terminal_markdown_viewer/template
@@ -1,7 +1,7 @@
 # Template file for 'terminal_markdown_viewer'
 pkgname=terminal_markdown_viewer
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mdv"

From f53f56ad912d52d400ede22f1d99020ee5de9e13 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 786/870] thefuck: rebuild for Python 3.8.

---
 srcpkgs/thefuck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thefuck/template b/srcpkgs/thefuck/template
index 714cd7982c7..a0de1c7b6a3 100644
--- a/srcpkgs/thefuck/template
+++ b/srcpkgs/thefuck/template
@@ -1,7 +1,7 @@
 # Template file for 'thefuck'
 pkgname=thefuck
 version=3.29
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="thefuck"

From 34de06d5363c9d1ea8daab260728ef7c29f561ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 787/870] thinkpad-scripts: rebuild for Python 3.8.

---
 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 8d26cf23e77..855d42492fb 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tps"

From 91d4d9e3afde854ecb413fae7ed22ae1c58e62b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 788/870] thrift: rebuild for Python 3.8.

---
 srcpkgs/thrift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thrift/template b/srcpkgs/thrift/template
index 73b0f59d4f6..e379ac35a09 100644
--- a/srcpkgs/thrift/template
+++ b/srcpkgs/thrift/template
@@ -1,7 +1,7 @@
 # Template file for 'thrift'
 pkgname=thrift
 version=0.12.0
-revision=2
+revision=3
 build_style=gnu-configure
 makedepends="boost-devel libressl-devel"
 short_desc="Apache Thrift compiler"

From c0ad7fa0ed65c956f520a08cbac209aca881cbe4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 789/870] todoman: rebuild for Python 3.8.

---
 srcpkgs/todoman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/todoman/template b/srcpkgs/todoman/template
index 2e0489ff49e..676412b8d0b 100644
--- a/srcpkgs/todoman/template
+++ b/srcpkgs/todoman/template
@@ -1,7 +1,7 @@
 # Template file for 'todoman'
 pkgname=todoman
 version=3.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="todoman"

From ff276d32763fff9f2a564b36bf4c02f7e19f36e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 790/870] toot: rebuild for Python 3.8.

---
 srcpkgs/toot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template
index b6dcdc9ede6..7f9fac6ca01 100644
--- a/srcpkgs/toot/template
+++ b/srcpkgs/toot/template
@@ -1,7 +1,7 @@
 # Template file for 'toot'
 pkgname=toot
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="toot"

From 413bd6c28cfcb4764ecf7f4e94b92899b9ab4dee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 791/870] torbrowser-launcher: rebuild for Python 3.8.

---
 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 a4aa707495c..ea2a50aae52 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.2
-revision=1
+revision=2
 archs="i686 x86_64" # limited by Tor Browser itself
 build_style=python3-module
 pycompile_module="torbrowser_launcher"

From 32b0adb025393308a4b937bb42382044236d0702 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 792/870] tox: rebuild for Python 3.8.

---
 srcpkgs/tox/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tox/template b/srcpkgs/tox/template
index 8c6b63a3cb1..908cb86bb38 100644
--- a/srcpkgs/tox/template
+++ b/srcpkgs/tox/template
@@ -1,7 +1,7 @@
 # Template file for 'tox'
 pkgname=tox
 version=3.14.0
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="tox"
 hostmakedepends="python3-setuptools"

From 4d13cd711a251a1cf40f4ecd0e85c99e4637b449 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 793/870] trackma: rebuild for Python 3.8.

---
 srcpkgs/trackma/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/trackma/template b/srcpkgs/trackma/template
index 96833382346..4c29bb8a35d 100644
--- a/srcpkgs/trackma/template
+++ b/srcpkgs/trackma/template
@@ -1,7 +1,7 @@
 # Template file for 'trackma'
 pkgname=trackma
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 562b18817307d630b1014c5a48e1c577c9980420 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 794/870] trash-cli: rebuild for Python 3.8.

---
 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 2a08548c7c8..4ab724d8cb1 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.17.1.14
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3"

From 121236bd7b9bcdeace0c7a3f70b4a6633c6f7293 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 795/870] tryton: rebuild for Python 3.8.

---
 srcpkgs/tryton/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tryton/template b/srcpkgs/tryton/template
index 196033361f6..61e0f733dc9 100644
--- a/srcpkgs/tryton/template
+++ b/srcpkgs/tryton/template
@@ -1,7 +1,7 @@
 # Template file for 'tryton'
 pkgname=tryton
 version=5.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tryton"

From eed2e15e54947d25bd14afaa04c41e0782748cc4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 796/870] tuimoji: rebuild for Python 3.8.

---
 srcpkgs/tuimoji/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuimoji/template b/srcpkgs/tuimoji/template
index 71e0bf540c0..73f5cff281f 100644
--- a/srcpkgs/tuimoji/template
+++ b/srcpkgs/tuimoji/template
@@ -1,7 +1,7 @@
 # Template file for 'tuimoji'
 pkgname=tuimoji
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tuimoji"

From ce7e8ea072e46214a6c0993d8e2c2f87e0e9bed2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 797/870] tuir: rebuild for Python 3.8.

---
 srcpkgs/tuir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuir/template b/srcpkgs/tuir/template
index dfc0b15c535..a98f4484544 100644
--- a/srcpkgs/tuir/template
+++ b/srcpkgs/tuir/template
@@ -1,7 +1,7 @@
 # Template file for 'tuir'
 pkgname=tuir
 version=1.28.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=python3-module

From 97f1c8fd85ab2a8a371791eb12e0c1c0e63d3236 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 798/870] tzupdate: rebuild for Python 3.8.

---
 srcpkgs/tzupdate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tzupdate/template b/srcpkgs/tzupdate/template
index 9531f0f7540..de2217476bd 100644
--- a/srcpkgs/tzupdate/template
+++ b/srcpkgs/tzupdate/template
@@ -1,7 +1,7 @@
 # Template file for 'tzupdate'
 pkgname=tzupdate
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tzupdate.py"

From 80b13ee027f4f64182f7e20687bb823f4b4128cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 799/870] udiskie: rebuild for Python 3.8.

---
 srcpkgs/udiskie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/udiskie/template b/srcpkgs/udiskie/template
index 536f4d5609d..06d58236046 100644
--- a/srcpkgs/udiskie/template
+++ b/srcpkgs/udiskie/template
@@ -1,7 +1,7 @@
 # Template file for 'udiskie'
 pkgname=udiskie
 version=1.7.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="udiskie"

From 1b67d5febbffcb55584b5fda550d107f96cd96a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 800/870] ueberzug: rebuild for Python 3.8.

---
 srcpkgs/ueberzug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ueberzug/template b/srcpkgs/ueberzug/template
index e0c474ff63e..dfa1ab29d96 100644
--- a/srcpkgs/ueberzug/template
+++ b/srcpkgs/ueberzug/template
@@ -1,7 +1,7 @@
 # Template file for 'ueberzug'
 pkgname=ueberzug
 version=18.1.3
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel libX11-devel libXext-devel"

From 2905e1365fe30243aa0fc9390670c848e419162c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 801/870] ufw: rebuild for Python 3.8.

---
 srcpkgs/ufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ufw/template b/srcpkgs/ufw/template
index ac7dfa45cdd..0bf2a3a0b76 100644
--- a/srcpkgs/ufw/template
+++ b/srcpkgs/ufw/template
@@ -1,7 +1,7 @@
 # Template file for 'ufw'
 pkgname=ufw
 version=0.36
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="ufw"

From 7e0780e94649784ef9ce91ffeaaafcdbad03dd0d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 802/870] unicorn: rebuild for Python 3.8.

---
 srcpkgs/unicorn/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/unicorn/template b/srcpkgs/unicorn/template
index 317e261ae88..971d44752ca 100644
--- a/srcpkgs/unicorn/template
+++ b/srcpkgs/unicorn/template
@@ -1,7 +1,7 @@
 # Template file for 'unicorn'
 pkgname=unicorn
 version=1.0.1
-revision=2
+revision=3
 archs="x86_64* i686*"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"
 short_desc="Lightweight multi-platform, multi-architecture CPU emulator framework"

From 789f0fcbd3f7ecfc4dedf71e4c187edb322ad58b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 803/870] unknown-horizons: rebuild for Python 3.8.

---
 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 b5fc593b744..6e81970800d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3 intltool git python3-Pillow"

From fdccb21d4203969c6c01734088eb625e56349155 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 804/870] urh: rebuild for Python 3.8.

---
 srcpkgs/urh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urh/template b/srcpkgs/urh/template
index 2cec83082fd..31f28bb366b 100644
--- a/srcpkgs/urh/template
+++ b/srcpkgs/urh/template
@@ -1,7 +1,7 @@
 # Template file for 'urh'
 pkgname=urh
 version=2.7.5
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="urh"
 hostmakedepends="python3-setuptools python3-Cython"

From 6e94929c2c8ad24aba0695ec7cae0d18f5f6b76c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 805/870] urlscan: rebuild for Python 3.8.

---
 srcpkgs/urlscan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlscan/template b/srcpkgs/urlscan/template
index f6f0d1db07b..2bb1688dad7 100644
--- a/srcpkgs/urlscan/template
+++ b/srcpkgs/urlscan/template
@@ -1,7 +1,7 @@
 # Template file for 'urlscan'
 pkgname=urlscan
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlscan"

From 22ea44a67fcdc0aa53b412fceed5d7015e326f1b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 806/870] urlwatch: rebuild for Python 3.8.

---
 srcpkgs/urlwatch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlwatch/template b/srcpkgs/urlwatch/template
index e8a5e403c92..1166fe101a7 100644
--- a/srcpkgs/urlwatch/template
+++ b/srcpkgs/urlwatch/template
@@ -1,7 +1,7 @@
 # Template file for 'urlwatch'
 pkgname=urlwatch
 version=2.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlwatch"

From f36de76e57978447ecd97b07a9638c4e5f10275c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 807/870] vapoursynth: rebuild for Python 3.8.

---
 srcpkgs/vapoursynth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vapoursynth/template b/srcpkgs/vapoursynth/template
index dd85e8b39dc..ce40f4f8920 100644
--- a/srcpkgs/vapoursynth/template
+++ b/srcpkgs/vapoursynth/template
@@ -1,7 +1,7 @@
 # Template file for 'vapoursynth'
 pkgname=vapoursynth
 version=R47.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake pkg-config libtool nasm python3-Cython"
 makedepends="python3-devel zimg-devel libmagick-devel libass-devel ffmpeg-devel

From e701b07bd308bef67ebf59bd363f5bed1b388aae Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 808/870] variety: rebuild for Python 3.8.

---
 srcpkgs/variety/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/variety/template b/srcpkgs/variety/template
index b4ea756c0c9..4d327a830f8 100644
--- a/srcpkgs/variety/template
+++ b/srcpkgs/variety/template
@@ -1,7 +1,7 @@
 # Template file for 'variety'
 pkgname=variety
 version=0.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="jumble variety variety_lib"

From 28086cda3da71c4cfe79350800dcc84ce20142f8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 809/870] vdirsyncer: rebuild for Python 3.8.

---
 srcpkgs/vdirsyncer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vdirsyncer/template b/srcpkgs/vdirsyncer/template
index 24080413456..708204afda2 100644
--- a/srcpkgs/vdirsyncer/template
+++ b/srcpkgs/vdirsyncer/template
@@ -1,7 +1,7 @@
 # Template file for 'vdirsyncer'
 pkgname=vdirsyncer
 version=0.16.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="vdirsyncer"

From ea5d4c1b6a1a7ea668b39fdf60efd1df33cb91b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 810/870] vidcutter: rebuild for Python 3.8.

---
 srcpkgs/vidcutter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vidcutter/template b/srcpkgs/vidcutter/template
index 4f30b888805..6ca85d4e766 100644
--- a/srcpkgs/vidcutter/template
+++ b/srcpkgs/vidcutter/template
@@ -1,7 +1,7 @@
 # Template file for 'vidcutter'
 pkgname=vidcutter
 version=6.0.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="vidcutter"

From c3d1548ba528eea9d7bef07b46df6ff679a946ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 811/870] vimiv: rebuild for Python 3.8.

---
 srcpkgs/vimiv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vimiv/template b/srcpkgs/vimiv/template
index 20fcbe7a03f..a560d4c9d81 100644
--- a/srcpkgs/vimiv/template
+++ b/srcpkgs/vimiv/template
@@ -1,7 +1,7 @@
 # Template file for 'vimiv'
 pkgname="vimiv"
 version=0.9.1
-revision=2
+revision=3
 build_style=gnu-makefile
 pycompile_module=vimiv
 hostmakedepends="python3-setuptools python3-devel"

From f3232a63ac69bed3ea5e23e3500365d3538881c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 812/870] virtme: rebuild for Python 3.8.

---
 srcpkgs/virtme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtme/template b/srcpkgs/virtme/template
index 3905cb24b1d..30035a734f3 100644
--- a/srcpkgs/virtme/template
+++ b/srcpkgs/virtme/template
@@ -1,7 +1,7 @@
 # Template file for 'virtme'
 pkgname=virtme
 version=0.0.3.20180725
-revision=1
+revision=2
 archs=noarch
 _commit=60100bea82183b5d32ed9fca6534cd0fc60d5eb2
 wrksrc="${_commit}"

From 05fa842bb4d960d15c56d2aadaa52e308e5f2542 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 813/870] virtualenvwrapper: rebuild for Python 3.8.

---
 srcpkgs/virtualenvwrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtualenvwrapper/template b/srcpkgs/virtualenvwrapper/template
index 6007cc5d2ed..1f0c2efee86 100644
--- a/srcpkgs/virtualenvwrapper/template
+++ b/srcpkgs/virtualenvwrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'virtualenvwrapper'
 pkgname=virtualenvwrapper
 version=4.8.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="virtualenvwrapper"

From 409a87f477f4cbc78f961e5d9722d63297610e19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 814/870] visidata: rebuild for Python 3.8.

---
 srcpkgs/visidata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/visidata/template b/srcpkgs/visidata/template
index 715896e5f7c..c5c3ae7c82e 100644
--- a/srcpkgs/visidata/template
+++ b/srcpkgs/visidata/template
@@ -1,7 +1,7 @@
 # Template file for 'visidata'
 pkgname=visidata
 version=1.5.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="visidata"

From 2ba717600d97966db6452a7171e9e5ef361774e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 815/870] volctl: rebuild for Python 3.8.

---
 srcpkgs/volctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template
index 2b01750b9eb..585aabd2495 100644
--- a/srcpkgs/volctl/template
+++ b/srcpkgs/volctl/template
@@ -1,7 +1,7 @@
 # Template file for 'volctl'
 pkgname=volctl
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="volctl"

From 3535201fbe9eee300b3d9d42d26ba9654508ba49 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 816/870] voltron: rebuild for Python 3.8.

---
 srcpkgs/voltron/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/voltron/template b/srcpkgs/voltron/template
index c258bb9bab9..38f47a824e3 100644
--- a/srcpkgs/voltron/template
+++ b/srcpkgs/voltron/template
@@ -1,7 +1,7 @@
 # Template file for 'voltron'
 pkgname=voltron
 version=0.1.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="voltron"

From 89d03bda0a88f88af0ade59c0d348137fed3d591 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 817/870] volume_key: rebuild for Python 3.8.

---
 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 11d7b16bed8..14431cb70e9 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=1
+revision=2
 build_style=gnu-configure
 make_build_args="PYTHON3_CFLAGS=-I${XBPS_CROSS_BASE}/${py3_inc}
  PYTHON_CFLAGS=-I${XBPS_CROSS_BASE}/${py2_inc}"

From 745bee297746d213b3763aacb61d78fc45512775 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 818/870] weather: rebuild for Python 3.8.

---
 srcpkgs/weather/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weather/template b/srcpkgs/weather/template
index ffa8a828b36..3ac33bfac15 100644
--- a/srcpkgs/weather/template
+++ b/srcpkgs/weather/template
@@ -1,7 +1,7 @@
 # Template file for 'weather'
 pkgname=weather
 version=2.3
-revision=2
+revision=3
 archs=noarch
 hostmakedepends="python3"
 depends="python3"

From 945b4b5eb85ec26dcccc50bc215bb8bc60aac7ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 819/870] wfuzz: rebuild for Python 3.8.

---
 srcpkgs/wfuzz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wfuzz/template b/srcpkgs/wfuzz/template
index b03c1f28add..4a88ab67407 100644
--- a/srcpkgs/wfuzz/template
+++ b/srcpkgs/wfuzz/template
@@ -1,7 +1,7 @@
 # Template file for 'wfuzz'
 pkgname=wfuzz
 version=2.4
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="wfuzz"

From 2085ac8f368cf65f73edca6e2eeaa839df9d1bf5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 820/870] wpgtk: rebuild for Python 3.8.

---
 srcpkgs/wpgtk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpgtk/template b/srcpkgs/wpgtk/template
index 7e9d52b4f81..a722da58f22 100644
--- a/srcpkgs/wpgtk/template
+++ b/srcpkgs/wpgtk/template
@@ -1,7 +1,7 @@
 # Template file for 'wpgtk'
 pkgname=wpgtk
 version=6.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpgtk"

From 7c187c9da4ad0ce550ad7ebe59abf5815bfbfe37 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 821/870] wpull: rebuild for Python 3.8.

---
 srcpkgs/wpull/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpull/template b/srcpkgs/wpull/template
index 5e9b9dcc641..621e1c85428 100644
--- a/srcpkgs/wpull/template
+++ b/srcpkgs/wpull/template
@@ -1,7 +1,7 @@
 # Template file for 'wpull'
 pkgname=wpull
 version=2.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpull"

From 701978d33251cde8b705085f662d9458b69a6a0b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 822/870] wxPython4: rebuild for Python 3.8.

---
 srcpkgs/wxPython4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wxPython4/template b/srcpkgs/wxPython4/template
index 2aa7117d5e0..b65e0b2ffe1 100644
--- a/srcpkgs/wxPython4/template
+++ b/srcpkgs/wxPython4/template
@@ -1,7 +1,7 @@
 # Template file for 'wxPython4'
 pkgname=wxPython4
 version=4.0.6
-revision=2
+revision=3
 wrksrc="wxPython-${version}"
 build_style=python3-module
 pycompile_module="wx"

From d49f5dcf19784c87b4939a8669cea6b5ae2feb1b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 823/870] xcb-proto: rebuild for Python 3.8.

---
 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 1b26ecd73f3..020524bda87 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.13
-revision=2
+revision=3
 archs=noarch
 build_style=gnu-configure
 pycompile_module="xcbgen"

From 19e5a584c8c54da3b4eca5724f9aa8c959538374 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 824/870] xdot: rebuild for Python 3.8.

---
 srcpkgs/xdot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xdot/template b/srcpkgs/xdot/template
index 23f7b1f17e0..f7507ffb8c5 100644
--- a/srcpkgs/xdot/template
+++ b/srcpkgs/xdot/template
@@ -1,7 +1,7 @@
 # Template file for 'xdot'
 pkgname=xdot
 version=1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="xdot.py-${version}"
 build_style=python3-module

From 939ee67058450f63487b39065a816a2ed9c6a6a4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 825/870] xkcdpass: rebuild for Python 3.8.

---
 srcpkgs/xkcdpass/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xkcdpass/template b/srcpkgs/xkcdpass/template
index 46b4a9635f9..37fb6872079 100644
--- a/srcpkgs/xkcdpass/template
+++ b/srcpkgs/xkcdpass/template
@@ -1,7 +1,7 @@
 # Template file for 'xkcdpass'
 pkgname=xkcdpass
 version=1.17.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="XKCD-password-generator-xkcdpass-${version}"
 build_style=python3-module

From a67dd87b52f6ca4d5e4cefe17339897f96153b49 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 826/870] xonsh: rebuild for Python 3.8.

---
 srcpkgs/xonsh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xonsh/template b/srcpkgs/xonsh/template
index 768ebf36022..2dca267d0d1 100644
--- a/srcpkgs/xonsh/template
+++ b/srcpkgs/xonsh/template
@@ -1,7 +1,7 @@
 # Template file for 'xonsh'
 pkgname=xonsh
 version=0.9.12
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="xonsh xontrib"

From a5a73e26fd5adfa11baf15371c615f6b8eca0056 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 827/870] yq: rebuild for Python 3.8.

---
 srcpkgs/yq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yq/template b/srcpkgs/yq/template
index 7c3af7f43c2..dda886c6c40 100644
--- a/srcpkgs/yq/template
+++ b/srcpkgs/yq/template
@@ -1,7 +1,7 @@
 # Template file for 'yq'
 pkgname=yq
 version=2.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From d68185e72f93c8a691324e8fedaa890c78ef8a09 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 828/870] ytcc: rebuild for Python 3.8.

---
 srcpkgs/ytcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ytcc/template b/srcpkgs/ytcc/template
index feafa404b75..df4195758c7 100644
--- a/srcpkgs/ytcc/template
+++ b/srcpkgs/ytcc/template
@@ -1,7 +1,7 @@
 # Template file for 'ytcc'
 pkgname=ytcc
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ytcc"

From f45f38019bd061a761b9df987b7e48c4fefbf846 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 829/870] yturl: rebuild for Python 3.8.

---
 srcpkgs/yturl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yturl/template b/srcpkgs/yturl/template
index 6fa3e9872ee..ee14b77b5a0 100644
--- a/srcpkgs/yturl/template
+++ b/srcpkgs/yturl/template
@@ -1,7 +1,7 @@
 # Template file for 'yturl'
 pkgname=yturl
 version=2.0.2
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 3f83c32a7d0e818c552750ea8f887ed8d163817a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 830/870] yubikey-manager: rebuild for Python 3.8.

---
 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 af0330e8e15..fcc7b7cb737 100644
--- a/srcpkgs/yubikey-manager/template
+++ b/srcpkgs/yubikey-manager/template
@@ -1,7 +1,7 @@
 # Template file for 'yubikey-manager'
 pkgname=yubikey-manager
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From f60bba032e72ca7ab9c8b7e920980ea11a443f88 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 831/870] z3: rebuild for Python 3.8.

---
 srcpkgs/z3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/z3/template b/srcpkgs/z3/template
index d632a285019..e054915df91 100644
--- a/srcpkgs/z3/template
+++ b/srcpkgs/z3/template
@@ -1,7 +1,7 @@
 # Template file for 'z3'
 pkgname=z3
 version=4.8.6
-revision=2
+revision=3
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=configure
 configure_args="--prefix=/usr -g --python $(vopt_if ocaml --ml)"

From 46bf7a6b37c53cce9f575b48cddc2ab6d8bf959e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 832/870] zim: rebuild for Python 3.8.

---
 srcpkgs/zim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/zim/template b/srcpkgs/zim/template
index 45b9df5357c..dff4ad22081 100644
--- a/srcpkgs/zim/template
+++ b/srcpkgs/zim/template
@@ -1,7 +1,7 @@
 # Template file for 'zim'
 pkgname=zim
 version=0.71.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="zim"

From c1d74b90a8909dffec1f55829ab22b202c2cdd78 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 833/870] python3-pafy: rebuild for Python 3.8.

---
 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 ce26f770c69..b59c9a0adff 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.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pafy-${version}"
 build_style=python3-module

From 11813bf94ed3fc04b4ce2e8ea22e925268d2b6fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 834/870] python3-perf: rebuild for Python 3.8.

---
 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 a03251f97e8..3d57ddb1c1a 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.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyperf-${version}"
 build_style=python3-module

From 555deeec12853033503f5fb81a015775bc731e4b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 835/870] python3-yara: rebuild for Python 3.8.

---
 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 4a6c56dd083..3bdff14a0da 100644
--- a/srcpkgs/python3-yara/template
+++ b/srcpkgs/python3-yara/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-yara'
 pkgname=python3-yara
 version=3.11.0
-revision=1
+revision=2
 wrksrc="yara-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From e4b9d46c845248b9f5a1edd60e5981335711cab3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:31 +0200
Subject: [PATCH 836/870] azote: rebuild for Python 3.8.

---
 srcpkgs/azote/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/azote/template b/srcpkgs/azote/template
index 0a23c209551..2748cb98733 100644
--- a/srcpkgs/azote/template
+++ b/srcpkgs/azote/template
@@ -1,7 +1,7 @@
 # Template file for 'azote'
 pkgname=azote
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="azote"

From 1890d11ac2946bb5a46be1f60a023c5cac0c1a67 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 837/870] binwalk: rebuild for Python 3.8.

---
 srcpkgs/binwalk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/binwalk/template b/srcpkgs/binwalk/template
index 461ea4b547a..fccd523d584 100644
--- a/srcpkgs/binwalk/template
+++ b/srcpkgs/binwalk/template
@@ -1,7 +1,7 @@
 # Template file for 'binwalk'
 pkgname=binwalk
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="binwalk"

From 590dcfde6a8251f2ea9f03d50221acea7bb646a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 838/870] gnome-builder: rebuild for Python 3.8.

---
 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 9ae9ff9d94c..85aeeee9a15 100644
--- a/srcpkgs/gnome-builder/template
+++ b/srcpkgs/gnome-builder/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-builder'
 pkgname=gnome-builder
 version=3.34.1
-revision=1
+revision=2
 build_style=meson
 configure_args="-Dwith_webkit=true -Dwith_sysprof=true -Dhelp=true"
 hostmakedepends="appdata-tools desktop-file-utils flex gobject-introspection

From 41cc8b2bfeee6c834d40f1887c473f0589e6c205 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 839/870] gnome-tweaks: rebuild for Python 3.8.

---
 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 ac1f8bdb873..d0879253ac5 100644
--- a/srcpkgs/gnome-tweaks/template
+++ b/srcpkgs/gnome-tweaks/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-tweaks'
 pkgname=gnome-tweaks
 version=3.34.0
-revision=2
+revision=3
 archs=noarch
 build_style=meson
 pycompile_module="gtweak"

From d12a7b14e3c384a9eff0b6c348c034d42d393545 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 840/870] meson: rebuild for Python 3.8.

---
 srcpkgs/meson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meson/template b/srcpkgs/meson/template
index 315a0f27a92..76791451681 100644
--- a/srcpkgs/meson/template
+++ b/srcpkgs/meson/template
@@ -2,7 +2,7 @@
 pkgname=meson
 reverts="0.52.0_1 0.52.0_2"
 version=0.51.2
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mesonbuild"

From 1d6ef185feaea898bd2759ef70204447ff39062a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 841/870] onionshare: rebuild for Python 3.8.

---
 srcpkgs/onionshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onionshare/template b/srcpkgs/onionshare/template
index c585ae6101e..c37c5962736 100644
--- a/srcpkgs/onionshare/template
+++ b/srcpkgs/onionshare/template
@@ -1,7 +1,7 @@
 # Template file for 'onionshare'
 pkgname=onionshare
 version=2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="onionshare"

From ad945dd2e4a2ca0bbc9d1d76e67651e24e7d210a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 842/870] portage: rebuild for Python 3.8.

---
 srcpkgs/portage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/portage/template b/srcpkgs/portage/template
index b0f34731035..9610428bbf4 100644
--- a/srcpkgs/portage/template
+++ b/srcpkgs/portage/template
@@ -1,7 +1,7 @@
 # Template file for 'portage'
 pkgname=portage
 version=2.3.77
-revision=1
+revision=2
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=python3-module
 pycompile_module="portage _emerge"

From 73e21b264f71dc2b89d9ee48bf4e4f4f01faf629 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 843/870] rpm: rebuild for Python 3.8.

---
 srcpkgs/rpm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rpm/template b/srcpkgs/rpm/template
index 98e35930c4c..9b111106323 100644
--- a/srcpkgs/rpm/template
+++ b/srcpkgs/rpm/template
@@ -1,7 +1,7 @@
 # Template file for 'rpm'
 pkgname=rpm
 version=4.15.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--with-lua --with-cap --with-acl --with-external-db
  --enable-python PYTHON=python3"

From d1aa57b31e35086942774fc1a2848eb199adecd9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 844/870] youtube-dl: rebuild for Python 3.8.

---
 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 d6596b80bd3..f1ae3aa1a74 100644
--- a/srcpkgs/youtube-dl/template
+++ b/srcpkgs/youtube-dl/template
@@ -1,7 +1,7 @@
 # Template file for 'youtube-dl'
 pkgname=youtube-dl
 version=2019.10.16
-revision=1
+revision=2
 archs=noarch
 wrksrc=youtube-dl
 build_style=python3-module

From 9d31ea81d423187c93c4147a564b7b5a632a5f6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 845/870] blender: rebuild for Python 3.8.

---
 srcpkgs/blender/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template
index 758d1235185..47cb8f8ad13 100644
--- a/srcpkgs/blender/template
+++ b/srcpkgs/blender/template
@@ -1,7 +1,7 @@
 # Template file for 'blender'
 pkgname=blender
 version=2.79b
-revision=9
+revision=10
 build_style="cmake"
 makedepends="
  libgomp-devel libpng-devel tiff-devel python3-devel glu-devel

From f6a55ced0c1e68bc423b7f89b3a163a4a71cc48c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 846/870] freecad: rebuild for Python 3.8.

---
 srcpkgs/freecad/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/freecad/template b/srcpkgs/freecad/template
index 9e9375c4444..26bf34702a2 100644
--- a/srcpkgs/freecad/template
+++ b/srcpkgs/freecad/template
@@ -1,7 +1,7 @@
 # Template file for 'freecad'
 pkgname=freecad
 version=0.18.3
-revision=2
+revision=3
 wrksrc="FreeCAD-${version}"
 build_style=cmake
 

From 88f1b493780357e28482d13786ba015a092d30fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 847/870] gdb: rebuild for Python 3.8.

---
 srcpkgs/gdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gdb/template b/srcpkgs/gdb/template
index 9f84e4869e9..39aab79d08a 100644
--- a/srcpkgs/gdb/template
+++ b/srcpkgs/gdb/template
@@ -1,7 +1,7 @@
 # Template file for 'gdb'
 pkgname=gdb
 version=8.3.1
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="/usr/share/gdb"
 configure_args="--disable-werror --disable-nls --with-system-readline

From e877c311ab9d587b71cb5f96d49c282de4954afb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 848/870] hexchat: rebuild for Python 3.8.

---
 srcpkgs/hexchat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hexchat/template b/srcpkgs/hexchat/template
index fbeaf28ae8a..9f7d7957b76 100644
--- a/srcpkgs/hexchat/template
+++ b/srcpkgs/hexchat/template
@@ -1,7 +1,7 @@
 # Template file for 'hexchat'
 pkgname=hexchat
 version=2.14.2
-revision=6
+revision=7
 build_style=meson
 configure_args="-Dwith-dbus=true -Dwith-ssl=true -Dwith-text=false
  -Dwith-perl=/usr/bin/perl -Dwith-python=python3

From eff53b43d66f9c63f0463678780e1e9fdea842bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 849/870] hyperion: rebuild for Python 3.8.

---
 srcpkgs/hyperion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hyperion/template b/srcpkgs/hyperion/template
index 0befdbe7064..7ce415e929e 100644
--- a/srcpkgs/hyperion/template
+++ b/srcpkgs/hyperion/template
@@ -1,7 +1,7 @@
 # Template file for 'hyperion'
 pkgname=hyperion
 version=1.03.2
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DUSE_SYSTEM_PROTO_LIBS=ON -DENABLE_QT5=ON
  -DPROTOBUF_PROTOC_EXECUTABLE=/usr/bin/protoc -DENABLE_AMLOGIC=ON

From d4fc4ef29c823fce76c385523bb8b0b377b6ef81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 850/870] kdevelop-python: rebuild for Python 3.8.

---
 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 0265916a3d0..a306eb8f442 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.4.2
-revision=1
+revision=2
 wrksrc="kdev-python-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/kdevpythonsupport"

From 483c936f3da457ca617cc8cd63713f6512f2281c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 851/870] kitty: rebuild for Python 3.8.

---
 srcpkgs/kitty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/kitty/template b/srcpkgs/kitty/template
index d79bcc4acce..54cd08c23ec 100644
--- a/srcpkgs/kitty/template
+++ b/srcpkgs/kitty/template
@@ -1,7 +1,7 @@
 # Template file for 'kitty'
 pkgname=kitty
 version=0.14.6
-revision=1
+revision=2
 pycompile_dirs="usr/lib/kitty"
 hostmakedepends="ncurses pkg-config python3 wayland-devel wayland-protocols"
 makedepends="gettext-devel glfw-devel harfbuzz-devel libxkbcommon-devel

From feb4d73da243d1ab1421ff356b564d7d6b824ea2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 852/870] krita: rebuild for Python 3.8.

---
 srcpkgs/krita/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/krita/template b/srcpkgs/krita/template
index 7a59fc9ac58..95a02748136 100644
--- a/srcpkgs/krita/template
+++ b/srcpkgs/krita/template
@@ -1,7 +1,7 @@
 # Template file for 'krita'
 pkgname=krita
 version=4.2.7.1
-revision=1
+revision=2
 build_style=cmake
 configure_args="-Wno-dev -DBUILD_TESTING=OFF"
 hostmakedepends="extra-cmake-modules pkg-config python3"

From e008147169a53e424a2982d0a34a628084e763f5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:26:38 +0200
Subject: [PATCH 853/870] libpeas: rebuild for Python 3.8.

---
 srcpkgs/libpeas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index a69238bf823..d4dcf8b5941 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,7 +1,7 @@
 # Template file for 'libpeas'
 pkgname=libpeas
 version=1.22.0
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"

From 3ca40a97edbbeaa52cfa7323739e0715d1d4af16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 854/870] libreoffice: rebuild for Python 3.8.

---
 srcpkgs/libreoffice/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template
index 6e8685ac0fd..98f04a40304 100644
--- a/srcpkgs/libreoffice/template
+++ b/srcpkgs/libreoffice/template
@@ -1,7 +1,7 @@
 # Template file for 'libreoffice'
 pkgname=libreoffice
 version=6.2.5.2
-revision=2
+revision=3
 build_style=meta
 make_build_args="build-nocheck"
 nocross=yes

From c40924182f3ac59a628e61c9db8f3378cc9e2d23 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 855/870] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index 1f9c8043b46..34174be7535 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=5
+revision=6
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From ce723d3adb1eb6ab4223e53b4ba0516611ea9fe3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 856/870] libsigrokdecode: rebuild for Python 3.8.

---
 srcpkgs/libsigrokdecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsigrokdecode/template b/srcpkgs/libsigrokdecode/template
index 59e15dd61b9..cc9d9a10367 100644
--- a/srcpkgs/libsigrokdecode/template
+++ b/srcpkgs/libsigrokdecode/template
@@ -1,7 +1,7 @@
 # Template file for 'libsigrokdecode'
 pkgname=libsigrokdecode
 version=0.5.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="glib-devel python3-devel"

From 70f90cc98bbf3d43c4c694982c8e365c6d815aad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 857/870] luxrays: rebuild for Python 3.8.

---
 srcpkgs/luxrays/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/luxrays/template b/srcpkgs/luxrays/template
index c783e9fe3e5..58037fbfc05 100644
--- a/srcpkgs/luxrays/template
+++ b/srcpkgs/luxrays/template
@@ -1,7 +1,7 @@
 # Template file for 'luxrays'
 pkgname=luxrays
 version=3.1
-revision=13
+revision=14
 build_style=cmake
 configure_args="-DLUXRAYS_DISABLE_OPENCL=OFF -DCMAKE_SKIP_RPATH=ON"
 hostmakedepends="flex bison boost-devel"

From ba5a43b76a61e7af8304a3a5f3832733d4cc9dc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 858/870] navit: rebuild for Python 3.8.

---
 srcpkgs/navit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/navit/template b/srcpkgs/navit/template
index 461689a3c73..24cd151c64b 100644
--- a/srcpkgs/navit/template
+++ b/srcpkgs/navit/template
@@ -1,7 +1,7 @@
 # Template file for 'navit'
 pkgname=navit
 version=0.5.3
-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 a86dd92b411d17ce958d409f079ee1a477682d22 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 859/870] obs: rebuild for Python 3.8.

---
 srcpkgs/obs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/obs/template b/srcpkgs/obs/template
index 3ed426b1583..45bf81803e4 100644
--- a/srcpkgs/obs/template
+++ b/srcpkgs/obs/template
@@ -1,7 +1,7 @@
 # Template file for 'obs'
 pkgname=obs
 version=24.0.1
-revision=1
+revision=2
 _commit_hash_obs_browser="693498b518cf893876f454ef581e13106e8370ec"
 _commit_hash_obs_vst="fde438f7a8afdf41a7ab386a0aa1a61175fc8427"
 _commit_hash_ftl_sdk="98289f7c2ed754c647d451899b3356850c0c1fa3"

From 66017086ddef2aff16875e87a16fa7b98a275e44 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 860/870] renderdoc: rebuild for Python 3.8.

---
 srcpkgs/renderdoc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/renderdoc/template b/srcpkgs/renderdoc/template
index 32d051864d3..681aafe135d 100644
--- a/srcpkgs/renderdoc/template
+++ b/srcpkgs/renderdoc/template
@@ -1,7 +1,7 @@
 # Template file for 'renderdoc'
 pkgname=renderdoc
 version=1.4
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DENABLE_GL=ON -DENABLE_GLES=ON -DENABLE_QRENDERDOC=ON
  -DENABLE_RENDERDOCCMD=ON -DENABLE_VULKAN=ON -DENABLE_XCB=ON -DENABLE_XLIB=ON

From f3f089bd51a1ab24b5430dc0074867fb1d009b31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 861/870] sigil: rebuild for Python 3.8.

---
 srcpkgs/sigil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sigil/template b/srcpkgs/sigil/template
index 4a90ef95798..1d577ee3487 100644
--- a/srcpkgs/sigil/template
+++ b/srcpkgs/sigil/template
@@ -1,7 +1,7 @@
 # Template file for 'sigil'
 pkgname=sigil
 version=0.9.13
-revision=1
+revision=2
 wrksrc="Sigil-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/sigil/python3lib"

From c7727ba7fd29d9024050b256ff8c70af2ecda6c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 862/870] uwsgi: rebuild for Python 3.8.

---
 srcpkgs/uwsgi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/uwsgi/template b/srcpkgs/uwsgi/template
index 2e96cd2e38e..e283d6bc357 100644
--- a/srcpkgs/uwsgi/template
+++ b/srcpkgs/uwsgi/template
@@ -1,7 +1,7 @@
 # Template file for 'uwsgi'
 pkgname=uwsgi
 version=2.0.18
-revision=1
+revision=2
 hostmakedepends="python python3"
 makedepends="python-devel python3-devel"
 short_desc="Fast, self-healing application container server"

From 15f3b0c807dd23d1e4f3feca8f7cd472db8bfea6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 863/870] vim: rebuild for Python 3.8.

---
 srcpkgs/vim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vim/template b/srcpkgs/vim/template
index 8f543069d19..7c7fd4a30f7 100644
--- a/srcpkgs/vim/template
+++ b/srcpkgs/vim/template
@@ -1,7 +1,7 @@
 # Template file for 'vim'
 pkgname=vim
 version=8.1.2021
-revision=3
+revision=4
 hostmakedepends="glib-devel pkg-config"
 makedepends="acl-devel gtk+3-devel libXt-devel lua-devel ncurses-devel
  perl python-devel python3-devel ruby-devel"

From f24787cfc0df4c3123993007795b3764635e1bc7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 864/870] weechat: rebuild for Python 3.8.

---
 srcpkgs/weechat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weechat/template b/srcpkgs/weechat/template
index 19f8af4fd8f..14c3e2360f5 100644
--- a/srcpkgs/weechat/template
+++ b/srcpkgs/weechat/template
@@ -1,7 +1,7 @@
 # Template file for 'weechat'
 pkgname=weechat
 version=2.6
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_MAN=ON -DENABLE_ENCHANT=ON -DENABLE_PERL=ON
  -DENABLE_LUA=ON -DENABLE_RUBY=ON -DENABLE_SPELL=ON

From 529fa0758fe2b0a93e4ea0356acc0fcb8e5294dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 865/870] znc: rebuild for Python 3.8.

---
 srcpkgs/znc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/znc/template b/srcpkgs/znc/template
index 8af8f23a145..696b59133c8 100644
--- a/srcpkgs/znc/template
+++ b/srcpkgs/znc/template
@@ -1,7 +1,7 @@
 # Template file for 'znc'
 pkgname=znc
 version=1.7.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="
  --enable-python

From 0d29290d975ad28ba2fb5afec86af419c73ce2f4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:18:51 +0200
Subject: [PATCH 866/870] boost: rebuild for Python 3.8.

---
 srcpkgs/boost/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 40a4fe67730..1fb0e8ed519 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=5
+revision=6
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"

From 2b76cd60beaac33c3bf0fd623996d5c349ebef7e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:10 +0200
Subject: [PATCH 867/870] python-pyside: remove, obsolete.

---
 srcpkgs/python-pyside/INSTALL.msg | 1 -
 srcpkgs/python-pyside/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/python-pyside/INSTALL.msg
 delete mode 100644 srcpkgs/python-pyside/template

diff --git a/srcpkgs/python-pyside/INSTALL.msg b/srcpkgs/python-pyside/INSTALL.msg
deleted file mode 100644
index 6de207b7aa2..00000000000
--- a/srcpkgs/python-pyside/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-python-pyside is no longer provided by Void Linux, and will be fully removed from the repos on 2019-07-17
diff --git a/srcpkgs/python-pyside/template b/srcpkgs/python-pyside/template
deleted file mode 100644
index 7053f0e7fc3..00000000000
--- a/srcpkgs/python-pyside/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'python-pyside'
-pkgname=python-pyside
-version=1.2.2
-revision=7
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="http://www.pyside.org/"

From 17d5594c210869fbebfcb232aa95804b5960feb6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:52 +0200
Subject: [PATCH 868/870] pyside-tools: remove, obsolete.

---
 srcpkgs/pyside-tools/INSTALL.msg | 1 -
 srcpkgs/pyside-tools/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/pyside-tools/INSTALL.msg
 delete mode 100644 srcpkgs/pyside-tools/template

diff --git a/srcpkgs/pyside-tools/INSTALL.msg b/srcpkgs/pyside-tools/INSTALL.msg
deleted file mode 100644
index fdb45eb0f42..00000000000
--- a/srcpkgs/pyside-tools/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-pyside-tools is no longer provided by Void Linux, and will be fully removed from the repos on 2019-10-30
diff --git a/srcpkgs/pyside-tools/template b/srcpkgs/pyside-tools/template
deleted file mode 100644
index 27cfc18eea4..00000000000
--- a/srcpkgs/pyside-tools/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'pyside-tools'
-pkgname=pyside-tools
-version=0.2.15
-revision=2
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="https://wiki.qt.io/"

From a3da22494d8adf83a071dce3e8a92aa4d2e3a371 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:22:03 +0200
Subject: [PATCH 869/870] shiboken: remove, obsolete.

---
 srcpkgs/shiboken/patches/python3.6.patch |  11 ---
 srcpkgs/shiboken/template                | 110 -----------------------
 2 files changed, 121 deletions(-)
 delete mode 100644 srcpkgs/shiboken/patches/python3.6.patch
 delete mode 100644 srcpkgs/shiboken/template

diff --git a/srcpkgs/shiboken/patches/python3.6.patch b/srcpkgs/shiboken/patches/python3.6.patch
deleted file mode 100644
index 7145fb4308b..00000000000
--- a/srcpkgs/shiboken/patches/python3.6.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- cmake/Modules/FindPython3Libs.cmake.orig
-+++ cmake/Modules/FindPython3Libs.cmake
-@@ -27,7 +27,7 @@
- # Search for the python framework on Apple.
- # CMAKE_FIND_FRAMEWORKS(Python)
- 
--FOREACH(_CURRENT_VERSION 3.4 3.3 3.2 3.1 3.0)
-+FOREACH(_CURRENT_VERSION 3.6 3.5 3.4 3.3 3.2 3.1 3.0)
-   IF(_CURRENT_VERSION GREATER 3.1)
-       SET(_32FLAGS "m" "u" "mu" "dm" "du" "dmu" "")
-   ELSE()
diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
deleted file mode 100644
index 34174be7535..00000000000
--- a/srcpkgs/shiboken/template
+++ /dev/null
@@ -1,110 +0,0 @@
-# Template file for 'shiboken'
-pkgname=shiboken
-version=1.2.2
-revision=6
-wrksrc="shiboken-${version}"
-hostmakedepends="cmake"
-makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"
-short_desc="CPython bindings generator for C++ libraries"
-maintainer="Enno Boland <gottox@voidlinux.org>"
-homepage="http://www.pyside.org"
-license="LGPL-2.1"
-distfiles="https://download.qt.io/official_releases/pyside/shiboken-${version}.tar.bz2"
-checksum=7625bbcf1fe313fd910c6b8c9cf49ac5495499f9d00867115a2f1f2a69fce5c4
-
-nocross="https://travis-ci.org/voidlinux/void-packages/jobs/269193001#L906"
-
-pre_build() {
-	# Fix inconsistent naming of libshiboken.so and ShibokenConfig.cmake
-	sed -i "/get_config_var('SOABI')/d" cmake/Modules/FindPython3InterpWithDebug.cmake
-}
-do_build() {
-	local args= configure_args="
-		-DCMAKE_INSTALL_PREFIX=/usr \
-		-DCMAKE_BUILD_TYPE=Release \
-		-DBUILD_TESTS=OFF"
-
-	for pyver in $py2_ver $py3_ver; do
-		args=
-		if [ "$pyver" = "$py2_ver" ]; then
-			args="-DPYTHON_SUFFIX=-python$py2_ver"
-		else
-			args="-DUSE_PYTHON3=yes"
-		fi
-
-		[ ! -d build-${pyver} ] && mkdir build-${pyver}
-		pushd build-${pyver}
-		cmake .. ${configure_args} ${args}
-		make ${makejobs}
-		popd
-	done
-}
-do_install() {
-	for pyver in $py2_ver $py3_ver; do
-		make -C build-${pyver} DESTDIR=${DESTDIR} install
-	done
-}
-post_install() {
-	# Fix conflict between .pc files
-	rm -f ${DESTDIR}/usr/lib/pkgconfig/*
-	for pyver in $py2_ver $py3_ver; do
-		vinstall build-${pyver}/data/shiboken.pc 644 \
-			usr/lib/pkgconfig shiboken-python${pyver}.pc
-	done
-}
-
-libshiboken-common-devel_package() {
-	depends="${sourcepkg}-${version}_${revision}"
-	short_desc+=" - common development files"
-	pkg_install() {
-		vmove usr/include
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig.cmake
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfigVersion.cmake
-	}
-}
-libshiboken-python-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python-${version}_${revision}"
-	short_desc="Python2 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py2_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py2_ver}.pc
-		vmove usr/lib/libshiboken-python${py2_ver}.so
-	}
-}
-libshiboken-python_package() {
-	short_desc="Python2 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version}
-	}
-}
-python-shiboken_package() {
-	short_desc="Python2 shiboken bindings"
-	pkg_install() {
-		vmove ${py2_sitelib}/shiboken.so
-	}
-}
-libshiboken-python3-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python3-${version}_${revision}"
-	short_desc="Python3 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py3_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py3_ver}.pc
-		vmove usr/lib/libshiboken-python${py3_ver}.so
-	}
-}
-libshiboken-python3_package() {
-	short_desc="Python3 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version}
-	}
-}
-python3-shiboken_package() {
-	short_desc="Python3 shiboken bindings"
-	pkg_install() {
-		vmove ${py3_sitelib}/shiboken.so
-	}
-}

From a93c18078a2e5e4d5e76d9909dabfbaad1609477 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:34:00 +0200
Subject: [PATCH 870/870] boost: rebuild for Python 3.8.

Also ensure bjam is called with the same parameters, to avoid
a full rebuild with -j1 in do_install.
---
 common/shlibs          |  2 +-
 srcpkgs/boost/template | 13 +++++++------
 2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/common/shlibs b/common/shlibs
index f5133935773..92dae1c282c 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -683,7 +683,7 @@ libboost_stacktrace_noop.so.1.69.0 libboost_stacktrace_noop1.69-1.69.0_1<1.70.0
 libboost_stacktrace_addr2line.so.1.69.0 libboost_stacktrace_addr2line1.69-1.69.0_1<1.70.0
 libboost_stacktrace_basic.so.1.69.0 libboost_stacktrace_basic1.69-1.69.0_1<1.70.0
 libboost_python27.so.1.69.0 boost-python1.69-1.69.0_1<1.70.0
-libboost_python36.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
+libboost_python38.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
 libexempi.so.8 exempi-2.5.0_1
 libatasmart.so.4 libatasmart-0.17_1
 libsgutils2.so.2 libsgutils-1.42_1
diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 1fb0e8ed519..b516b348b14 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=6
+revision=7
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"
@@ -60,9 +60,9 @@ do_build() {
 	using python : ${py3_ver} : ${XBPS_CROSS_BASE}/usr/bin/python3 : ${XBPS_CROSS_BASE}${py3_inc} : ${XBPS_CROSS_BASE}${py3_lib} ;
 
 	__EOF
-	./bjam ${makejobs} \
+	./bjam ${makejobs} --prefix=${DESTDIR}/usr \
 		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam --debug-building \
+		--user-config=${wrksrc}/user-config.jam \
 		python=2.7,${py3_ver}
 }
 do_install() {
@@ -72,9 +72,10 @@ do_install() {
 	done
 
 	# Install headers/libs
-	./bjam --prefix=${DESTDIR}/usr abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam python=2.7,${py3_ver} install
-
+	./bjam --prefix=${DESTDIR}/usr \
+		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
+		--user-config=${wrksrc}/user-config.jam \
+		python=2.7,${py3_ver} install
 	# Install Boost.Build stuff.
 	vmkdir usr/share/boost-build
 	cd ${wrksrc}/tools/build && cp -a . ${DESTDIR}/usr/share/boost-build

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (2 preceding siblings ...)
  2019-10-19 16:55 ` voidlinux-github
@ 2019-10-19 18:43 ` voidlinux-github
  2019-10-19 19:02 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (28 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-10-19 18:43 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 169 bytes --]

New comment by q66 on void-packages repository

https://github.com/void-linux/void-packages/pull/15623#issuecomment-544186357

Comment:
Nothing is going to like this :P

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PR PATCH] [Updated] [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (4 preceding siblings ...)
  2019-10-19 19:02 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-10-19 19:02 ` voidlinux-github
  2019-10-19 21:03 ` voidlinux-github
                   ` (26 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-10-19 19:02 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1010 bytes --]

There is an updated pull request by leahneukirchen against master on the void-packages repository

https://github.com/leahneukirchen/void-packages python38
https://github.com/void-linux/void-packages/pull/15623

[WIP] Python 3.8
This huge PR tries to bump all packages that either shlib-require
libpython3.6m.so.1.0 or put files into /usr/lib/python3.6/site-packages.

Broken packages (on x86_64):

- [ ] attic -> upstream dead, remove?
- [ ] blender -> update to 2.80
- [ ] eolie -> meson
- [x] fontforge
- [ ] freecad
- [ ] gst1-python -> meson
- [ ] libopenshot -> gcc9 issue, but supposedly fixed? @Spencer-H 
- [x] libpeas
- [x] nagstamon
- [ ] paraview
- [x] pockyt
- [ ] ~~scudcloud~~
- [x] torbrowser-launcher
- [ ] unknown-horizons
- [x] vapoursynth
- [x] variety
- [ ] kdevelop-python
- [ ] krita: SHA256 mismatch
- [x] ~~shiboken~~
- [x] renderdoc

Untested:

- [ ] libreoffice


A patch file from https://github.com/void-linux/void-packages/pull/15623.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python38-15623.patch --]
[-- Type: text/x-diff, Size: 632684 bytes --]

From 9907b26ec9aacb2c9c990c665c32502ef0f7c808 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:06:59 +0200
Subject: [PATCH 001/872] python3: update to 3.8.0.

---
 common/shlibs                                 |  3 ++-
 .../python3/patches/fix-xattrs-glibc.patch    | 13 ----------
 srcpkgs/python3/patches/libressl-2.6.patch    | 26 -------------------
 srcpkgs/python3/template                      | 23 ++++++++--------
 4 files changed, 13 insertions(+), 52 deletions(-)
 delete mode 100644 srcpkgs/python3/patches/fix-xattrs-glibc.patch
 delete mode 100644 srcpkgs/python3/patches/libressl-2.6.patch

diff --git a/common/shlibs b/common/shlibs
index cc3fd8383d8..f5133935773 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1698,8 +1698,9 @@ libefiboot.so.1 libefivar-31_1
 libportaudio.so.2 portaudio-19.20140130_1
 libportaudiocpp.so.0 portaudio-cpp-19.20140130_1
 libdar.so.5000 libdar-2.4.14_1
-libpython3.so python3-3.6.2_1
 libpython3.6m.so.1.0 python3-3.6.2_1
+libpython3.so python3-3.8.0_1
+libpython3.8.so.1.0 python3-3.8.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.25.28_1
diff --git a/srcpkgs/python3/patches/fix-xattrs-glibc.patch b/srcpkgs/python3/patches/fix-xattrs-glibc.patch
deleted file mode 100644
index 909901293d5..00000000000
--- a/srcpkgs/python3/patches/fix-xattrs-glibc.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- Modules/posixmodule.c.orig
-+++ Modules/posixmodule.c
-@@ -103,8 +103,9 @@ corresponding Unix manual entries for more information on calls.");
- #undef HAVE_SCHED_SETAFFINITY
- #endif
- 
--#if defined(HAVE_SYS_XATTR_H) && defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
-+#if defined(HAVE_SYS_XATTR_H) && defined(__linux__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
- #define USE_XATTRS
-+#include <linux/limits.h>
- #endif
- 
- #ifdef USE_XATTRS
diff --git a/srcpkgs/python3/patches/libressl-2.6.patch b/srcpkgs/python3/patches/libressl-2.6.patch
deleted file mode 100644
index 92dcf1ef06e..00000000000
--- a/srcpkgs/python3/patches/libressl-2.6.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-https://github.com/python/cpython/pull/4930
-
---- Lib/test/test_ssl.py.orig
-+++ Lib/test/test_ssl.py
-@@ -29,6 +29,12 @@
- PROTOCOLS = sorted(ssl._PROTOCOL_NAMES)
- HOST = support.HOST
- IS_LIBRESSL = ssl.OPENSSL_VERSION.startswith('LibreSSL')
-+if IS_LIBRESSL:
-+    LIBRESSL_VERSION = tuple(
-+        int(s) for s in ssl.OPENSSL_VERSION.rsplit(' ')[-1].split('.')
-+    )
-+else:
-+    LIBRESSL_VERSION = ()
- IS_OPENSSL_1_1 = not IS_LIBRESSL and ssl.OPENSSL_VERSION_INFO >= (1, 1, 0)
- 
- 
-@@ -3392,6 +3398,8 @@ def test_selected_npn_protocol(self):
-                                        chatty=True, connectionchatty=True)
-             self.assertIs(stats['client_npn_protocol'], None)
- 
-+        @unittest.skipIf(IS_LIBRESSL and LIBRESSL_VERSION >= (2, 6, 1),
-+                         "LibreSSL 2.6.1+ has broken NPN support")
-         @unittest.skipUnless(ssl.HAS_NPN, "NPN support needed for this test")
-         def test_npn_protocols(self):
-             server_protocols = ['http/1.1', 'spdy/2']
diff --git a/srcpkgs/python3/template b/srcpkgs/python3/template
index 60bd4411ba8..b03a59beea8 100644
--- a/srcpkgs/python3/template
+++ b/srcpkgs/python3/template
@@ -3,7 +3,7 @@
 # THIS PKG MUST BE SYNCHRONIZED WITH "srcpkgs/python3-tkinter".
 #
 pkgname=python3
-version=3.6.9
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 short_desc="Interpreted, interactive, object-oriented programming language (${version%.*} series)"
@@ -11,7 +11,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=5e2f5f554e3f8f7f0296f7e73d8600c4e9acbaee6b2555b83206edf5153870da
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pycompile_dirs="usr/lib/python${version%.*}"
 hostmakedepends="pkg-config"
@@ -27,8 +27,7 @@ alternatives="
  python:python.1:/usr/share/man/man1/python${version%.*}.1"
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,13 +71,13 @@ do_install() {
 	rm -rf ${DESTDIR}/usr/lib/python${version%.*}/lib2to3/tests
 	# Remove references to the install(1) wrapper.
 	sed -e "s,${XBPS_WRAPPERDIR},/usr/bin,g" -i \
-		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/Makefile
 	if [ "$CROSS_BUILD" ]; then
 		# Remove references to cross toolchain.
 		sed -i "s/$XBPS_CROSS_TRIPLET-//g" \
-			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}/Makefile
 	fi
 }
 
@@ -89,10 +88,10 @@ python3-devel_package() {
 		vmove usr/bin/python*-config
 		vmove usr/lib/pkgconfig
 		vmove usr/include
-		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/libpython${version%.*}m.a \
+		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/libpython${version%.*}*.a \
 			${PKGDESTDIR}/usr/lib
-		mkdir -p ${DESTDIR}/usr/include/python${version%.*}m
-		mv ${PKGDESTDIR}/usr/include/python${version%.*}m/pyconfig.h \
-			${DESTDIR}/usr/include/python${version%.*}m
+		mkdir -p ${DESTDIR}/usr/include/python${version%.*}
+		mv ${PKGDESTDIR}/usr/include/python${version%.*}/pyconfig.h \
+			${DESTDIR}/usr/include/python${version%.*}
 	}
 }

From 82deb1f06d09e93aabaa46495a066cec2647de81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 17:09:57 +0200
Subject: [PATCH 002/872] python3-tkinter: update to 3.8.0.

---
 srcpkgs/python3-tkinter/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template
index 83906219af8..874be51ebdf 100644
--- a/srcpkgs/python3-tkinter/template
+++ b/srcpkgs/python3-tkinter/template
@@ -7,7 +7,7 @@
 _desc="Interpreted, interactive, object-oriented programming language"
 
 pkgname=python3-tkinter
-version=3.6.8
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 pycompile_dirs="
@@ -22,11 +22,10 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=35446241e995773b1bed7d196f4b624dadcadc8429f26282e756b2fb8a351193
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used.
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used.
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,7 +71,7 @@ do_install() {
 		mv ${wrksrc}/${pkgname}-${version}-install/usr/lib/python${version%.*}/${lib} \
 			${DESTDIR}/usr/lib/python${version%.*}/
 	done
-	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*m*.so \
+	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*.so \
 		${DESTDIR}/usr/lib/python${version%.*}/lib-dynload/
 	ln -sf idle${version%.*} ${DESTDIR}/usr/bin/idle3
 }

From 8bb33f77d591103b56f40685a4b61f57b43219cd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:42:15 +0200
Subject: [PATCH 003/872] common/environment/setup/python.sh: update to Python
 3.8.

---
 common/build-style/python-module.sh | 14 ++++----------
 common/environment/setup/python.sh  |  4 ++--
 2 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/common/build-style/python-module.sh b/common/build-style/python-module.sh
index da6ed586cff..ff8f107745f 100644
--- a/common/build-style/python-module.sh
+++ b/common/build-style/python-module.sh
@@ -4,7 +4,7 @@
 
 do_build() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
+	local pyver= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
@@ -12,10 +12,7 @@ do_build() {
 			LDFLAGS="$tmp_ldflags"
 
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
@@ -49,15 +46,12 @@ do_check() {
 
 do_install() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx=
+	local pyver=
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
diff --git a/common/environment/setup/python.sh b/common/environment/setup/python.sh
index d1f4d49a10a..ba181d45361 100644
--- a/common/environment/setup/python.sh
+++ b/common/environment/setup/python.sh
@@ -10,8 +10,8 @@ py2_lib="/usr/lib/python${py2_ver}"
 py2_sitelib="${py2_lib}/site-packages"
 py2_inc="/usr/include/python${py2_ver}"
 
-py3_ver="3.6"
-py3_abiver="m"
+py3_ver="3.8"
+py3_abiver=""
 py3_lib="/usr/lib/python${py3_ver}"
 py3_sitelib="${py3_lib}/site-packages"
 py3_inc="/usr/include/python${py3_ver}${py3_abiver}"

From 75fdcb94c7c7be7dc2c232d271de721d74dc1a6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 004/872] python3-3to2: rebuild for Python 3.8.

---
 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 b6ab94fe7c9..38558f1fcff 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=1
+revision=2
 archs=noarch
 wrksrc="3to2-${version}"
 build_style=python3-module

From 043957a8bcc69ef2ef270f7acd2753a544054759 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 005/872] python-Arrow: rebuild for Python 3.8.

---
 srcpkgs/python-Arrow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Arrow/template b/srcpkgs/python-Arrow/template
index 456e3776188..a3785d60075 100644
--- a/srcpkgs/python-Arrow/template
+++ b/srcpkgs/python-Arrow/template
@@ -2,7 +2,7 @@
 pkgname=python-Arrow
 reverts=0.13.1_1
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="arrow-${version}"
 build_style=python-module

From 5d1bc07743d348083ebd7dfbd1a4ece4913e6a70 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 006/872] python-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Babel/template b/srcpkgs/python-Babel/template
index 34d7a7728ce..619ae432ba4 100644
--- a/srcpkgs/python-Babel/template
+++ b/srcpkgs/python-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Babel'
 pkgname=python-Babel
 version=2.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38e28e565317345549892f5b8da9e3ab1cc3d513 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 007/872] python-BeautifulSoup4: rebuild for Python 3.8.

---
 srcpkgs/python-BeautifulSoup4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-BeautifulSoup4/template b/srcpkgs/python-BeautifulSoup4/template
index 70e4f8a58da..1f6074230c2 100644
--- a/srcpkgs/python-BeautifulSoup4/template
+++ b/srcpkgs/python-BeautifulSoup4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-BeautifulSoup4'
 pkgname=python-BeautifulSoup4
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="beautifulsoup4-${version}"
 build_style=python-module

From 193dc4fe709e1bccd18b84a58f880fde1e4394e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 008/872] python-Bottleneck: rebuild for Python 3.8.

---
 srcpkgs/python-Bottleneck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Bottleneck/template b/srcpkgs/python-Bottleneck/template
index 0c308d5dbb5..28195e99bca 100644
--- a/srcpkgs/python-Bottleneck/template
+++ b/srcpkgs/python-Bottleneck/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Bottleneck'
 pkgname=python-Bottleneck
 version=1.2.1
-revision=4
+revision=5
 wrksrc="Bottleneck-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ff4c422045070300d874353cc6c9750143422e2b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 009/872] python-Cheroot: rebuild for Python 3.8.

---
 srcpkgs/python-Cheroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Cheroot/template b/srcpkgs/python-Cheroot/template
index fcfdf76e69d..7a5375258f4 100644
--- a/srcpkgs/python-Cheroot/template
+++ b/srcpkgs/python-Cheroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Cheroot'
 pkgname=python-Cheroot
 version=8.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cheroot-${version}"
 build_style=python-module

From 6eb51b02b428d8054b1d3a3aa21e6bdcde31cf9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 010/872] python3-CherryPy: rebuild for Python 3.8.

---
 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 b78c01eba2c..450e5791508 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.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python3-module

From 8522b77c798415c2f59fc3b26adc757f66aa0fa7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 011/872] python-ConfigArgParse: rebuild for Python 3.8.

---
 srcpkgs/python-ConfigArgParse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ConfigArgParse/template b/srcpkgs/python-ConfigArgParse/template
index c9a00a04508..d90ca739aee 100644
--- a/srcpkgs/python-ConfigArgParse/template
+++ b/srcpkgs/python-ConfigArgParse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ConfigArgParse'
 pkgname=python-ConfigArgParse
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ConfigArgParse-${version}"
 build_style=python-module

From 3dcbda27301f3e918539317bc411ff556115ef1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 012/872] python-Cython: rebuild for Python 3.8.

---
 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 dc39d54e9c2..675160b3744 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.13
-revision=1
+revision=2
 wrksrc="Cython-${version}"
 build_style=python-module
 pycompile_module="Cython pyximport cython.py"

From 7c69ef59e0a628c13ece955c9f7322631824adca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 013/872] python-Django: rebuild for Python 3.8.

---
 srcpkgs/python-Django/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Django/template b/srcpkgs/python-Django/template
index 21aa405fba1..65a98e41032 100644
--- a/srcpkgs/python-Django/template
+++ b/srcpkgs/python-Django/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Django'
 pkgname=python-Django
 version=1.11.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="Django-${version}"
 build_style=python-module

From 33b250adb0abf2e46663f0a05749097633fce228 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 014/872] python-Flask: rebuild for Python 3.8.

---
 srcpkgs/python-Flask/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask/template b/srcpkgs/python-Flask/template
index 149a76c077e..b75b306701b 100644
--- a/srcpkgs/python-Flask/template
+++ b/srcpkgs/python-Flask/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask'
 pkgname=python-Flask
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9167e534992bd8d17a79a70e22a3b06c68c9762b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 015/872] python-Flask-Assets: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Assets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Assets/template b/srcpkgs/python-Flask-Assets/template
index 339f629f77a..eb81201396b 100644
--- a/srcpkgs/python-Flask-Assets/template
+++ b/srcpkgs/python-Flask-Assets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Assets'
 pkgname=python-Flask-Assets
 version=0.12
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c65d524eb8ee83f7c8eae3ca16878857a374e06c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 016/872] python-Flask-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Babel/template b/srcpkgs/python-Flask-Babel/template
index 3028d15d7bd..b3cc35f230e 100644
--- a/srcpkgs/python-Flask-Babel/template
+++ b/srcpkgs/python-Flask-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Babel'
 pkgname=python-Flask-Babel
 version=0.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From d52f7742820844af3ec25f4b6d4d6d58b19ad722 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 017/872] python-Flask-Login: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Login/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Login/template b/srcpkgs/python-Flask-Login/template
index 8fecf240963..ccaab92d857 100644
--- a/srcpkgs/python-Flask-Login/template
+++ b/srcpkgs/python-Flask-Login/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Login'
 pkgname=python-Flask-Login
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 112c53663ece086d477e4d4fcbc667ae6a2fb518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 018/872] python-Flask-OAuthlib: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-OAuthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-OAuthlib/template b/srcpkgs/python-Flask-OAuthlib/template
index d53157e37b2..958f05a836c 100644
--- a/srcpkgs/python-Flask-OAuthlib/template
+++ b/srcpkgs/python-Flask-OAuthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-OAuthlib'
 pkgname=python-Flask-OAuthlib
 version=0.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From aca82b53b5330ee4a154f2246569006b2d3a38c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 019/872] python3-Flask-RESTful: rebuild for Python 3.8.

---
 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 d0ed467f666..5a05eed0e93 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.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="flask-restful-${version}"
 build_style=python3-module

From 3121295fb06a2b12c0e42b9a6412c1fa52bb86fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 020/872] python-Flask-Script: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Script/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Script/template b/srcpkgs/python-Flask-Script/template
index 19d13887b8e..41312eae57f 100644
--- a/srcpkgs/python-Flask-Script/template
+++ b/srcpkgs/python-Flask-Script/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Script'
 pkgname=python-Flask-Script
 version=2.0.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From cfadd6a4c47e4e611c9d739113006da88f9cb8e7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 021/872] python-Flask-WTF: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-WTF/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-WTF/template b/srcpkgs/python-Flask-WTF/template
index 8edb1d39e35..b2be1e630fb 100644
--- a/srcpkgs/python-Flask-WTF/template
+++ b/srcpkgs/python-Flask-WTF/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-WTF'
 pkgname=python-Flask-WTF
 version=0.14.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 11896d4bd9e1767f6ad8b10e737f0e6a0f5df44f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 022/872] python-GitPython: rebuild for Python 3.8.

---
 srcpkgs/python-GitPython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-GitPython/template b/srcpkgs/python-GitPython/template
index 0edb43cc811..232429265f1 100644
--- a/srcpkgs/python-GitPython/template
+++ b/srcpkgs/python-GitPython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-GitPython'
 pkgname=python-GitPython
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="GitPython-${version}"
 build_style=python-module

From 7008fe32294cead7ef25084a09f874e87cad05e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 023/872] python-IPy: rebuild for Python 3.8.

---
 srcpkgs/python-IPy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-IPy/template b/srcpkgs/python-IPy/template
index d28276383ce..aaae9fcd002 100644
--- a/srcpkgs/python-IPy/template
+++ b/srcpkgs/python-IPy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-IPy'
 pkgname=python-IPy
 version=1.00
-revision=1
+revision=2
 archs=noarch
 wrksrc="IPy-${version}"
 build_style=python-module

From 4ee5b9129c818c4db475e75f899f1f21eb9c312c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 024/872] python3-Inflector: rebuild for Python 3.8.

---
 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 1bfe9ccef7c..e9ee0ffe8d1 100644
--- a/srcpkgs/python3-Inflector/template
+++ b/srcpkgs/python3-Inflector/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-Inflector'
 pkgname=python3-Inflector
 version=2.0.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="Inflector-${version}"
 build_style=python3-module

From 631236d908cbeed8345c2fb159c73e7c54fe1571 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 025/872] python-Jinja2: rebuild for Python 3.8.

---
 srcpkgs/python-Jinja2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Jinja2/template b/srcpkgs/python-Jinja2/template
index c67e6f47f06..3fcd44dc198 100644
--- a/srcpkgs/python-Jinja2/template
+++ b/srcpkgs/python-Jinja2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Jinja2'
 pkgname=python-Jinja2
 version=2.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Jinja2-${version}"
 build_style=python-module

From 3a7808b9f47226adec7dd1e59bef222cf38d7e9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 026/872] python-Levenshtein: rebuild for Python 3.8.

---
 srcpkgs/python-Levenshtein/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Levenshtein/template b/srcpkgs/python-Levenshtein/template
index 26f57d90e70..7d97147ccc8 100644
--- a/srcpkgs/python-Levenshtein/template
+++ b/srcpkgs/python-Levenshtein/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Levenshtein'
 pkgname=python-Levenshtein
 version=0.12.0
-revision=2
+revision=3
 build_style=python-module
 pycompile_module="Levenshtein"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"

From 6d2a898ccc971553cf9dab7239daf8d626350b19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 027/872] python-M2Crypto: rebuild for Python 3.8.

---
 srcpkgs/python-M2Crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-M2Crypto/template b/srcpkgs/python-M2Crypto/template
index 102dbb7261e..6febd5a9ea1 100644
--- a/srcpkgs/python-M2Crypto/template
+++ b/srcpkgs/python-M2Crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-M2Crypto'
 pkgname=python-M2Crypto
 version=0.35.2
-revision=1
+revision=2
 wrksrc="M2Crypto-${version}"
 build_style=python-module
 pycompile_module="M2Crypto"

From 3597aa866d7cb1ff4d5316a0cfe52c8aa8ab717c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 028/872] python-Mako: rebuild for Python 3.8.

---
 srcpkgs/python-Mako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Mako/template b/srcpkgs/python-Mako/template
index e5c3c76170c..f0184179b83 100644
--- a/srcpkgs/python-Mako/template
+++ b/srcpkgs/python-Mako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Mako'
 pkgname=python-Mako
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Mako-${version}"
 build_style=python-module

From 164d5bbfa645fb7b1ddbfbccebb7b85e407c578f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 029/872] python-Markdown: rebuild for Python 3.8.

---
 srcpkgs/python-Markdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markdown/template b/srcpkgs/python-Markdown/template
index 935dcc12bca..03a0d18e23b 100644
--- a/srcpkgs/python-Markdown/template
+++ b/srcpkgs/python-Markdown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markdown'
 pkgname=python-Markdown
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python-module

From c5fcb10688938a17e3acb9f9c630c300f5fe9672 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 030/872] python-MarkupSafe: rebuild for Python 3.8.

---
 srcpkgs/python-MarkupSafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MarkupSafe/template b/srcpkgs/python-MarkupSafe/template
index c12dbb7e656..ae22857aa7a 100644
--- a/srcpkgs/python-MarkupSafe/template
+++ b/srcpkgs/python-MarkupSafe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MarkupSafe'
 pkgname=python-MarkupSafe
 version=1.1.1
-revision=1
+revision=2
 wrksrc="MarkupSafe-${version}"
 build_style=python-module
 pycompile_module="markupsafe"

From b7a4bc0f45110c5c3bd019a437078724336d1888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 031/872] python-Markups: rebuild for Python 3.8.

---
 srcpkgs/python-Markups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markups/template b/srcpkgs/python-Markups/template
index d4817feb430..02ba25ee05c 100644
--- a/srcpkgs/python-Markups/template
+++ b/srcpkgs/python-Markups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markups'
 pkgname=python-Markups
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markups-${version}"
 build_style=python-module

From af8fe2e4b17c908737f599cc43d860493f7da689 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 032/872] python3-MechanicalSoup: rebuild for Python 3.8.

---
 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 b1bbfa4184c..5a3b0b3eb03 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=1
+revision=2
 archs=noarch
 wrksrc=MechanicalSoup-${version}
 build_style=python3-module

From 4d05157344a63fb3d617b00a4268732231187cb4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 033/872] python-MiniMock: rebuild for Python 3.8.

---
 srcpkgs/python-MiniMock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MiniMock/template b/srcpkgs/python-MiniMock/template
index 38c0723f374..8b8c4f5f1e6 100644
--- a/srcpkgs/python-MiniMock/template
+++ b/srcpkgs/python-MiniMock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MiniMock'
 pkgname=python-MiniMock
 version=1.2.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 25b62a34488966009bf8450b60653f01872e2310 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 034/872] python-Pillow: rebuild for Python 3.8.

---
 srcpkgs/python-Pillow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pillow/template b/srcpkgs/python-Pillow/template
index e43d22b8f62..f1791b46d79 100644
--- a/srcpkgs/python-Pillow/template
+++ b/srcpkgs/python-Pillow/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pillow'
 pkgname=python-Pillow
 version=6.2.0
-revision=1
+revision=2
 wrksrc="Pillow-${version}"
 build_style=python-module
 pycompile_module="PIL"

From f79ffe3fe477b7fff206250125a96da96c80c086 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 035/872] python-PyAudio: rebuild for Python 3.8.

---
 srcpkgs/python-PyAudio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyAudio/template b/srcpkgs/python-PyAudio/template
index 5c3286caae0..2e84cf5cc8f 100644
--- a/srcpkgs/python-PyAudio/template
+++ b/srcpkgs/python-PyAudio/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyAudio'
 pkgname=python-PyAudio
 version=0.2.11
-revision=2
+revision=3
 wrksrc="PyAudio-${version}"
 build_style=python-module
 pycompile_module="pyaudio.py"

From 11c99c939a4791ec394842255e6aac23eaae5920 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 036/872] python3-PyBrowserID: rebuild for Python 3.8.

---
 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 abec9dac54e..eefd0175f1b 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=2
+revision=3
 archs=noarch
 wrksrc="PyBrowserID-${version}"
 build_style=python3-module

From d49beb289c07b8d33e8e2f286e068c0e8b3fe4b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 037/872] python3-PyFxA: rebuild for Python 3.8.

---
 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 31175c92435..6fc6791efdd 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=1
+revision=2
 archs=noarch
 wrksrc="PyFxA-${version}"
 build_style=python3-module

From d0eb109c7435d396e67de8f37a376ca0a2958d93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 038/872] python-PyHamcrest: rebuild for Python 3.8.

---
 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 61078241d8a..48f001595aa 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=1
+revision=2
 archs=noarch
 wrksrc="PyHamcrest-${version}"
 build_style=python-module

From 4afc9e488b53ee7025095fe93072953c256fc630 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 039/872] python-PyICU: rebuild for Python 3.8.

---
 srcpkgs/python-PyICU/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyICU/template b/srcpkgs/python-PyICU/template
index be4aaf88639..aab2934cbbd 100644
--- a/srcpkgs/python-PyICU/template
+++ b/srcpkgs/python-PyICU/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyICU'
 pkgname=python-PyICU
 version=2.3.1
-revision=2
+revision=3
 wrksrc="PyICU-${version}"
 build_style=python-module
 pycompile_module="icu PyICU.py"

From a0c3f96b4df2b1efda070832287f3728314c717a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 040/872] python3-PyJWT: rebuild for Python 3.8.

---
 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 6f0830125c1..bf1dda0753e 100644
--- a/srcpkgs/python3-PyJWT/template
+++ b/srcpkgs/python3-PyJWT/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-PyJWT'
 pkgname=python3-PyJWT
 version=1.7.1
-revision=1
+revision=2
 wrksrc="PyJWT-${version}"
 build_style=python3-module
 pycompile_module="PyJWT.py"

From 0355fd4b78af7fbf4ffad4b12dc8e153b70d703d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 041/872] python-PyOpenGL: rebuild for Python 3.8.

---
 srcpkgs/python-PyOpenGL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyOpenGL/template b/srcpkgs/python-PyOpenGL/template
index ec08e0bd667..eafc3be1210 100644
--- a/srcpkgs/python-PyOpenGL/template
+++ b/srcpkgs/python-PyOpenGL/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL'
 pkgname=python-PyOpenGL
 version=3.1.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="PyOpenGL-${version}"
 build_style=python-module

From 1a8da5c4a7dbf53ec6c03efd5387e02d2b0be720 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 17:15:54 +0200
Subject: [PATCH 042/872] python-PyOpenGL-accelerate: update to 3.1.3b1.

---
 srcpkgs/python-PyOpenGL-accelerate/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python-PyOpenGL-accelerate/template b/srcpkgs/python-PyOpenGL-accelerate/template
index 25d84abffcb..5d16a82b845 100644
--- a/srcpkgs/python-PyOpenGL-accelerate/template
+++ b/srcpkgs/python-PyOpenGL-accelerate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL-accelerate'
 pkgname=python-PyOpenGL-accelerate
-version=3.1.0
-revision=5
+version=3.1.3b1
+revision=1
 wrksrc="PyOpenGL-accelerate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"
@@ -9,10 +9,10 @@ makedepends="python-devel python3-devel python-numpy python3-numpy"
 depends="python-numpy"
 short_desc="Acceleration code for PyOpenGL (Python2)"
 maintainer="Alain Kalker <a.c.kalker@gmail.com>"
-license="3-clause-BSD"
+license="BSD-3-Clause"
 homepage="http://pyopengl.sourceforge.net/"
 distfiles="${PYPI_SITE}/P/PyOpenGL-accelerate/PyOpenGL-accelerate-${version}.tar.gz"
-checksum=927f4670b893d46e2f6273ae938bf0a1db27ffae3336eba94813ccef6260c410
+checksum=e687eea7e006d65f531933b49b3b3d2feaaf51279147a904247f9d189762a36f
 
 post_install() {
 	vlicense license.txt LICENSE

From 2f6b6f2c3880b16991df568d3ac18efca5c970c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 043/872] python-PyQt5: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5/template b/srcpkgs/python-PyQt5/template
index 6534d4e22e6..9eba20dc514 100644
--- a/srcpkgs/python-PyQt5/template
+++ b/srcpkgs/python-PyQt5/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5'
 pkgname=python-PyQt5
 version=5.13.0
-revision=1
+revision=2
 _sipver=4.19.18
 lib32disabled=yes
 wrksrc="PyQt5_gpl-${version}"

From cf20a1f23e0c305d2e9672610364b2fd4f566695 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 044/872] python-PyQt5-webengine: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5-webengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5-webengine/template b/srcpkgs/python-PyQt5-webengine/template
index 996ef6b00e2..af7162d20cb 100644
--- a/srcpkgs/python-PyQt5-webengine/template
+++ b/srcpkgs/python-PyQt5-webengine/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5-webengine'
 pkgname=python-PyQt5-webengine
 version=5.13.0
-revision=1
+revision=2
 wrksrc="PyQtWebEngine_gpl-${version}"
 pycompile_module="PyQt5WebEngine"
 hostmakedepends="pkg-config qt5-qmake

From 84502fbd3a591ad0db01072998b5a2b3fcfcf192 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 045/872] python-Pygments: rebuild for Python 3.8.

---
 srcpkgs/python-Pygments/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pygments/template b/srcpkgs/python-Pygments/template
index f5a72ca6cea..8d2214a6bfc 100644
--- a/srcpkgs/python-Pygments/template
+++ b/srcpkgs/python-Pygments/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pygments'
 pkgname=python-Pygments
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Pygments-${version}"
 build_style=python-module

From ef2467b2248b773e2d940058876cf81a2b935043 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 046/872] python-Pyro4: rebuild for Python 3.8.

---
 srcpkgs/python-Pyro4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pyro4/template b/srcpkgs/python-Pyro4/template
index d8925aa141f..0417e9f6a8a 100644
--- a/srcpkgs/python-Pyro4/template
+++ b/srcpkgs/python-Pyro4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pyro4'
 pkgname=python-Pyro4
 version=4.75
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a80785231122d63ad91b973744bf59b0a1b59506 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 047/872] python3-ReParser: rebuild for Python 3.8.

---
 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 5e7b5de3790..5959de9d0e3 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=1
+revision=2
 archs=noarch
 wrksrc=ReParser-${version}
 build_style=python3-module

From 543272b7ff22e6f0642d879c60f19717643fec8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 048/872] python-SPARQLWrapper: rebuild for Python 3.8.

---
 srcpkgs/python-SPARQLWrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-SPARQLWrapper/template b/srcpkgs/python-SPARQLWrapper/template
index d014eb8aab4..8d2db9a02b3 100644
--- a/srcpkgs/python-SPARQLWrapper/template
+++ b/srcpkgs/python-SPARQLWrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'python-SPARQLWrapper'
 pkgname=python-SPARQLWrapper
 version=1.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a01a9e6bc3bd9fddfdd13341f78e625b063be5c8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 049/872] python-SQLAlchemy: rebuild for Python 3.8.

---
 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 7b529ade621..110430ff9f5 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.8
-revision=1
+revision=2
 wrksrc="SQLAlchemy-${version}"
 build_style=python-module
 pycompile_module="sqlalchemy"

From 46382571cad86b54ca46e129f7c2988772d0a48e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 050/872] python3-SecretStorage: rebuild for Python 3.8.

---
 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 8df813ad247..b19d4865f7e 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.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="SecretStorage-${version}"
 build_style=python3-module

From c79427640956f1961211ce3322c3811958e0f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 051/872] python3-SoCo: rebuild for Python 3.8.

---
 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 f0ac9825f57..01ebbeff15a 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="SoCo-${version}"
 build_style=python3-module

From 20a1ac5477ca4a76e0257e06bf6f353835eac7bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 052/872] python-Sphinx: rebuild for Python 3.8.

---
 srcpkgs/python-Sphinx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Sphinx/template b/srcpkgs/python-Sphinx/template
index e70dc9b238e..42969925f9e 100644
--- a/srcpkgs/python-Sphinx/template
+++ b/srcpkgs/python-Sphinx/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Sphinx'
 pkgname=python-Sphinx
 version=1.8.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="Sphinx-${version}"
 build_style=python-module

From 863c01ff80faa4de651a55ba2a354f8da5e6b025 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 053/872] python3-Telethon: rebuild for Python 3.8.

---
 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 b0786559591..d0fa8e34d3f 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.10.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="Telethon-${version}"
 build_style=python3-module

From efc9766b9866c660a4cb508c49be4df48f1e5809 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 054/872] python-Twisted: rebuild for Python 3.8.

---
 srcpkgs/python-Twisted/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Twisted/template b/srcpkgs/python-Twisted/template
index 519a1e251a9..e94e0edf26e 100644
--- a/srcpkgs/python-Twisted/template
+++ b/srcpkgs/python-Twisted/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Twisted'
 pkgname=python-Twisted
 version=18.9.0
-revision=3
+revision=4
 wrksrc="Twisted-${version}"
 build_style=python-module
 pycompile_module="twisted"

From 5fd974f3940d5ee91fe712fef2e93ce539743b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 055/872] python3-TxSNI: rebuild for Python 3.8.

---
 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 403010da5be..d9d7c2a0c83 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.1.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="TxSNI-${version}"
 build_style=python3-module

From 559184031fe43c0ff648fb7fab55ede08fff2c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 056/872] python-Unidecode: rebuild for Python 3.8.

---
 srcpkgs/python-Unidecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Unidecode/template b/srcpkgs/python-Unidecode/template
index 035c5d846be..444eb1427d6 100644
--- a/srcpkgs/python-Unidecode/template
+++ b/srcpkgs/python-Unidecode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Unidecode'
 pkgname=python-Unidecode
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Unidecode-${version}"
 build_style=python-module

From 07f0904b4cb8f2de0b7bc39c0ca28d225c91257d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 057/872] python-WTForms: rebuild for Python 3.8.

---
 srcpkgs/python-WTForms/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-WTForms/template b/srcpkgs/python-WTForms/template
index 06af2366050..98dff7d092f 100644
--- a/srcpkgs/python-WTForms/template
+++ b/srcpkgs/python-WTForms/template
@@ -1,7 +1,7 @@
 # Template file for 'python-WTForms'
 pkgname=python-WTForms
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="WTForms-${version}"
 build_style=python-module

From ec81beba1921fe189a8dd80810da306514a86c1a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 058/872] python3-WebOb: rebuild for Python 3.8.

---
 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 c360542a1f2..53e63879f2c 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=1
+revision=2
 archs=noarch
 wrksrc="WebOb-${version}"
 build_style=python3-module

From 0b7a4a756b3ead4c188a3819311c4471c1b0a21c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 059/872] python-Werkzeug: rebuild for Python 3.8.

---
 srcpkgs/python-Werkzeug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Werkzeug/template b/srcpkgs/python-Werkzeug/template
index 24fff62f1ae..1ca303822e8 100644
--- a/srcpkgs/python-Werkzeug/template
+++ b/srcpkgs/python-Werkzeug/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Werkzeug'
 pkgname=python-Werkzeug
 version=0.15.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c530a6e11127606a3b29b73da4cb31f010d97b5c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 060/872] python-Whoosh: rebuild for Python 3.8.

---
 srcpkgs/python-Whoosh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Whoosh/template b/srcpkgs/python-Whoosh/template
index f2118ed0af2..66856b206a7 100644
--- a/srcpkgs/python-Whoosh/template
+++ b/srcpkgs/python-Whoosh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-whoosh'
 pkgname=python-Whoosh
 version=2.7.4
-revision=1
+revision=2
 wrksrc="Whoosh-${version}"
 archs=noarch
 build_style=python-module

From 3e3ad6526265ded86e6e1b5539061302a3890381 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 061/872] python3-XlsxWriter: rebuild for Python 3.8.

---
 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 ea68ced9a03..b991457e01e 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.1.8
-revision=1
+revision=2
 archs="noarch"
 wrksrc="XlsxWriter-RELEASE_${version}"
 build_style=python3-module

From ed808be70fb42a5a7e827e43a5d8a9954d85823a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 062/872] python-Yapsy: rebuild for Python 3.8.

---
 srcpkgs/python-Yapsy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Yapsy/template b/srcpkgs/python-Yapsy/template
index 9f79423f91d..5ad8b234f5d 100644
--- a/srcpkgs/python-Yapsy/template
+++ b/srcpkgs/python-Yapsy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Yapsy'
 pkgname=python-Yapsy
 version=1.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Yapsy-${version}"
 build_style=python-module

From ef3f8b60f72752d3ec1c7676df4597cc6cfdfb42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 063/872] python-aalib: rebuild for Python 3.8.

---
 srcpkgs/python-aalib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-aalib/template b/srcpkgs/python-aalib/template
index 349b8407343..f9621a9c8dc 100644
--- a/srcpkgs/python-aalib/template
+++ b/srcpkgs/python-aalib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-aalib'
 pkgname=python-aalib
 version=0.3.2
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="aalib.py"
 hostmakedepends="python-setuptools python3-setuptools"

From 1aee008231a9354b62bbf679e89e620deeba0d34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 064/872] python3-acme: rebuild for Python 3.8.

---
 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 d7ef20f2301..844dde9c814 100644
--- a/srcpkgs/python3-acme/template
+++ b/srcpkgs/python3-acme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-acme'
 pkgname=python3-acme
 version=0.39.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="acme-${version}"
 build_style=python3-module

From 877668118087bb2d0bd4b8ebf34db7c6c4308c31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 065/872] python3-aiodns: rebuild for Python 3.8.

---
 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 cca9f45dbf5..8e06ea6e614 100644
--- a/srcpkgs/python3-aiodns/template
+++ b/srcpkgs/python3-aiodns/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiodns'
 pkgname=python3-aiodns
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiodns-${version}"
 build_style=python3-module

From de87766918ac8688cf8992433b56e9b1ad222108 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 066/872] python3-aiohttp: rebuild for Python 3.8.

---
 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 fbe98e07b2b..67e450e6aab 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.5.4
-revision=3
+revision=4
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 0c2d285f8d7edc438e657ec9bc4a2b16982a4a57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 067/872] python3-aiohttp-cors: rebuild for Python 3.8.

---
 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 8a643ca1797..b621716e3cd 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=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 4643a6f9e03d1657e1ac2f5ca93bf616979b58de Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 068/872] python3-aiohttp-cors2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp-cors2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp-cors2/template b/srcpkgs/python3-aiohttp-cors2/template
index 7ff1206538b..f13b0598456 100644
--- a/srcpkgs/python3-aiohttp-cors2/template
+++ b/srcpkgs/python3-aiohttp-cors2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp-cors2'
 pkgname=python3-aiohttp-cors2
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 9db81023f9f60f7a78d62f9f9b8f1fa8afbb9fa8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 069/872] python3-aiohttp2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp2/template b/srcpkgs/python3-aiohttp2/template
index b570043baba..db3704b5700 100644
--- a/srcpkgs/python3-aiohttp2/template
+++ b/srcpkgs/python3-aiohttp2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp2'
 pkgname=python3-aiohttp2
 version=2.3.10
-revision=2
+revision=3
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 9bf56f834aca73a7ea8141ab0c95b4aed0d1f09a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 070/872] python3-aiohttp_socks: rebuild for Python 3.8.

---
 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 93c45ff24c4..10ab967ef76 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.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp_socks-${version}"
 build_style=python3-module

From acad4e265f43c8bc2098168adb1c0442a0c22445 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 071/872] python3-aiorpcx: rebuild for Python 3.8.

---
 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 42b6dc541bf..07922e15ccd 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.17.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiorpcX-${version}"
 build_style=python3-module

From b4945f68890b617f5b513871e533769a2149f07f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 072/872] python-alabaster: rebuild for Python 3.8.

---
 srcpkgs/python-alabaster/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alabaster/template b/srcpkgs/python-alabaster/template
index e4ece5c2991..b33009d5efb 100644
--- a/srcpkgs/python-alabaster/template
+++ b/srcpkgs/python-alabaster/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alabaster'
 pkgname=python-alabaster
 version=0.7.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="alabaster-${version}"
 build_style=python-module

From 04c416b8fb310277c61713ee1b8dd702a970240b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 073/872] python-alembic: rebuild for Python 3.8.

---
 srcpkgs/python-alembic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alembic/template b/srcpkgs/python-alembic/template
index 4011b33c0fa..aecbe10e7d0 100644
--- a/srcpkgs/python-alembic/template
+++ b/srcpkgs/python-alembic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alembic'
 pkgname=python-alembic
 version=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="alembic-${version}"
 build_style=python-module

From 5c2d4bcc3255cb59561524d151fe84b3a70e8ad4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 074/872] python3-altgraph: rebuild for Python 3.8.

---
 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 eff10f7aef4..2bf433edb6e 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.16.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="altgraph-${version}"
 build_style=python3-module

From 3c6234d42f7adffca219ea7f98f11d5283dce900 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 075/872] python3-aniso8601: rebuild for Python 3.8.

---
 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 26540bc8c3f..0253b89b5a3 100644
--- a/srcpkgs/python3-aniso8601/template
+++ b/srcpkgs/python3-aniso8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aniso8601'
 pkgname=python3-aniso8601
 version=8.0.0
-revision=1
+revision=2
 archs=noarch
 _gitver=0ec13b9d81c9
 wrksrc="nielsenb-aniso8601-${_gitver}"

From b4fecde90241517d0629d46de55f99a1ef7edbaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 076/872] python-ansicolor: rebuild for Python 3.8.

---
 srcpkgs/python-ansicolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ansicolor/template b/srcpkgs/python-ansicolor/template
index af18c5b946d..3663a82f0cc 100644
--- a/srcpkgs/python-ansicolor/template
+++ b/srcpkgs/python-ansicolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ansicolor'
 pkgname=python-ansicolor
 version=0.2.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="ansicolor-${version}"
 build_style=python-module

From 3983fbed547fd194f9eefaaf58d10c7770e27350 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 077/872] python3-anytree: rebuild for Python 3.8.

---
 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 5a37dba6581..7368754c426 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.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="anytree-${version}"
 build_style=python3-module

From 6d797f541c2cb160f9cfebd0a3e71dace50cceb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 078/872] python-appdirs: rebuild for Python 3.8.

---
 srcpkgs/python-appdirs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-appdirs/template b/srcpkgs/python-appdirs/template
index fdae1fe184b..15354ec5768 100644
--- a/srcpkgs/python-appdirs/template
+++ b/srcpkgs/python-appdirs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-appdirs'
 pkgname=python-appdirs
 version=1.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 7a7c86554157d7224efc221e706b9aebfc1ff796 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 079/872] python3-applib: rebuild for Python 3.8.

---
 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 95f589dc65a..0fb5a42e618 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=1
+revision=2
 archs=noarch
 wrksrc="applib-${version}"
 build_style=python3-module

From 642416934e5f74b49e1a38fe6e941287cbccbf83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 080/872] python-apsw: rebuild for Python 3.8.

---
 srcpkgs/python-apsw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-apsw/template b/srcpkgs/python-apsw/template
index ed47b4a7803..6146ea639db 100644
--- a/srcpkgs/python-apsw/template
+++ b/srcpkgs/python-apsw/template
@@ -3,7 +3,7 @@ pkgname=python-apsw
 _distver=3.29.0
 _patchver=r1
 version=${_distver}${_patchver}
-revision=1
+revision=2
 wrksrc="apsw-${_distver}-${_patchver}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 765bd2f2b82c6226b12a5d6bbe156b07c03a1bca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 081/872] python-argh: rebuild for Python 3.8.

---
 srcpkgs/python-argh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argh/template b/srcpkgs/python-argh/template
index 4b7aec3b525..656da441757 100644
--- a/srcpkgs/python-argh/template
+++ b/srcpkgs/python-argh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argh'
 pkgname=python-argh
 version=0.26.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="argh-${version}"
 build_style=python-module

From 1f6f709fcbb4353d419be8d129ce581747dae1ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 082/872] python-argon2: rebuild for Python 3.8.

---
 srcpkgs/python-argon2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argon2/template b/srcpkgs/python-argon2/template
index 0b4b132cddd..1b5216cc9c0 100644
--- a/srcpkgs/python-argon2/template
+++ b/srcpkgs/python-argon2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argon2'
 pkgname=python-argon2
 version=18.3.0
-revision=2
+revision=3
 wrksrc="argon2_cffi-${version}"
 build_style=python-module
 pycompile_module="argon2"

From 26f299203792a3fe43e8944054d8c61c83416097 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 083/872] python-arxiv2bib: rebuild for Python 3.8.

---
 srcpkgs/python-arxiv2bib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-arxiv2bib/template b/srcpkgs/python-arxiv2bib/template
index 8bbc6bcf78e..4f245755dcf 100644
--- a/srcpkgs/python-arxiv2bib/template
+++ b/srcpkgs/python-arxiv2bib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-arxiv2bib'
 pkgname=python-arxiv2bib
 version=1.0.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="arxiv2bib-${version}"
 build_style=python-module

From 5d25b8642b8f8043e54a95f2ff5efc880044395a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 084/872] python-asn1crypto: rebuild for Python 3.8.

---
 srcpkgs/python-asn1crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-asn1crypto/template b/srcpkgs/python-asn1crypto/template
index 369c20af98f..e7ffe7415fc 100644
--- a/srcpkgs/python-asn1crypto/template
+++ b/srcpkgs/python-asn1crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-asn1crypto'
 pkgname=python-asn1crypto
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="asn1crypto-${version}"
 build_style=python-module

From c0625af704339d35d7423cd750ef2620c53c39bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 085/872] python-astral: rebuild for Python 3.8.

---
 srcpkgs/python-astral/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-astral/template b/srcpkgs/python-astral/template
index b8fdaee27ac..07aaeee166b 100644
--- a/srcpkgs/python-astral/template
+++ b/srcpkgs/python-astral/template
@@ -1,7 +1,7 @@
 # Template file for 'python-astral'
 pkgname=python-astral
 version=1.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python-}-${version}"
 build_style=python-module

From 6cdbd1584336605868e949368279bb6c2143b1d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 086/872] python3-astroid: rebuild for Python 3.8.

---
 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 28f01bd4445..d964fd2cdf3 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.2.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="astroid-${version}"
 build_style=python3-module

From c0642f6c760884c3209a89e643de35660419627a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 087/872] python3-async-timeout: rebuild for Python 3.8.

---
 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 d949a4fdf9a..854584fb5b2 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=1
+revision=2
 archs=noarch
 wrksrc="async-timeout-${version}"
 build_style=python3-module

From 17cdd1aac68337b8859ce0d970b309f841b8a456 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 088/872] python3-async_generator: rebuild for Python 3.8.

---
 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 c2053d7bf1f..20d9f7ea0d1 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=1
+revision=2
 archs=noarch
 wrksrc="async_generator-${version}"
 build_style=python3-module

From e57ec7e6820968645a23bcc13867add4c9a62399 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 089/872] python-atomicwrites: rebuild for Python 3.8.

---
 srcpkgs/python-atomicwrites/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atomicwrites/template b/srcpkgs/python-atomicwrites/template
index 849272e53f9..ec411d981d4 100644
--- a/srcpkgs/python-atomicwrites/template
+++ b/srcpkgs/python-atomicwrites/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atomicwrites'
 pkgname=python-atomicwrites
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="atomicwrites-${version}"
 build_style=python-module

From 61df9fa27dc05bc6bb5d5a2c5e806fd041d9adb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 090/872] python-atspi: rebuild for Python 3.8.

---
 srcpkgs/python-atspi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atspi/template b/srcpkgs/python-atspi/template
index 4a2007fa319..cfa1ef35377 100644
--- a/srcpkgs/python-atspi/template
+++ b/srcpkgs/python-atspi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atspi'
 pkgname=python-atspi
 version=2.32.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure

From d24c76e2f70e9a9dd9a6aa66a323bf79f37f9110 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 091/872] python-attrs: rebuild for Python 3.8.

---
 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 aaddb13f5be..6e2297a9553 100644
--- a/srcpkgs/python-attrs/template
+++ b/srcpkgs/python-attrs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-attrs'
 pkgname=python-attrs
 version=19.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="attrs-${version}"
 build_style=python-module

From dba37b5f26f28057cb10e86a08a4d2281ee09b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 092/872] python-audioread: rebuild for Python 3.8.

---
 srcpkgs/python-audioread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-audioread/template b/srcpkgs/python-audioread/template
index fc788a2778c..bc878d4b82d 100644
--- a/srcpkgs/python-audioread/template
+++ b/srcpkgs/python-audioread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-audioread'
 pkgname=python-audioread
 version=2.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="audioread-${version}"
 build_style=python-module

From 789a6f2ae1cd503ad69b6a968651c7745f878718 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 093/872] audit: rebuild for Python 3.8.

---
 srcpkgs/audit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/audit/template b/srcpkgs/audit/template
index c624aae0f6d..3e0d21784c0 100644
--- a/srcpkgs/audit/template
+++ b/srcpkgs/audit/template
@@ -1,7 +1,7 @@
 # Template file for 'audit'
 pkgname=audit
 version=2.8.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--libdir=/usr/lib --enable-shared=audit --enable-gssapi-krb5
  --with-apparmor --with-libcap-ng --with-python3"

From e2efc441ba2dda6eac89d6d19f7960be2fb6cb6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 094/872] python3-autobahn: rebuild for Python 3.8.

---
 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 053e45608e5..524ba4b4566 100644
--- a/srcpkgs/python3-autobahn/template
+++ b/srcpkgs/python3-autobahn/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-autobahn'
 pkgname=python3-autobahn
 version=19.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="autobahn-${version}"
 build_style=python3-module

From 9ad07e924752896ad77bccca2019163eb738ebc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 095/872] python-automat: rebuild for Python 3.8.

---
 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 4d0f89a89f5..984f5e9642a 100644
--- a/srcpkgs/python-automat/template
+++ b/srcpkgs/python-automat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-automat'
 pkgname=python-automat
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Automat-${version}"
 build_style=python-module

From a104c6986268b798f373e1fb36de2b20efb9f618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 096/872] python-axolotl: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl/template b/srcpkgs/python-axolotl/template
index cf24db1b6e7..74480b5a9fe 100644
--- a/srcpkgs/python-axolotl/template
+++ b/srcpkgs/python-axolotl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl'
 pkgname=python-axolotl
 version=0.2.3
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="axolotl"

From c0e16521a2125c2ae2c155dd483904a3dce7bd8c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 097/872] python-axolotl-curve25519: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl-curve25519/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl-curve25519/template b/srcpkgs/python-axolotl-curve25519/template
index f7b273b8385..897de4e7cdf 100644
--- a/srcpkgs/python-axolotl-curve25519/template
+++ b/srcpkgs/python-axolotl-curve25519/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl-curve25519'
 pkgname=python-axolotl-curve25519
 version=0.4.1.post2
-revision=2
+revision=3
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 makedepends="python-devel python3-devel"

From 6c250811341de25ed60e2bdfaae58eb8f5a8c159 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 098/872] python-babelfish: rebuild for Python 3.8.

---
 srcpkgs/python-babelfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-babelfish/template b/srcpkgs/python-babelfish/template
index c156255f418..47d5bb176cc 100644
--- a/srcpkgs/python-babelfish/template
+++ b/srcpkgs/python-babelfish/template
@@ -1,7 +1,7 @@
 # Template file for 'python-babelfish'
 pkgname=python-babelfish
 version=0.5.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="babelfish-${version}"
 build_style=python-module

From 3bbb2fa6599ab0470a4209080a69ad4f8476f1ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 099/872] python-backcall: rebuild for Python 3.8.

---
 srcpkgs/python-backcall/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-backcall/template b/srcpkgs/python-backcall/template
index 01dfab9c25d..a55af727ab6 100644
--- a/srcpkgs/python-backcall/template
+++ b/srcpkgs/python-backcall/template
@@ -1,7 +1,7 @@
 # Template file for 'python-backcall'
 pkgname=python-backcall
 version=0.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="backcall-${version}"
 build_style=python-module

From d263efaab1b83cfdc94e9b33011f3cfefc52dcd2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 100/872] bcc: rebuild for Python 3.8.

---
 srcpkgs/bcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template
index a4d32bce7a4..e872cb6a4a8 100644
--- a/srcpkgs/bcc/template
+++ b/srcpkgs/bcc/template
@@ -1,7 +1,7 @@
 # Template file for 'bcc'
 pkgname=bcc
 version=0.11.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DREVISION=${version}"
 hostmakedepends="flex"

From 95aa25d2f02529207de0d9d62aa57353f202d9a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 101/872] python-bcrypt: rebuild for Python 3.8.

---
 srcpkgs/python-bcrypt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bcrypt/template b/srcpkgs/python-bcrypt/template
index 1ccac21ee94..664b5c9df07 100644
--- a/srcpkgs/python-bcrypt/template
+++ b/srcpkgs/python-bcrypt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bcrypt'
 pkgname=python-bcrypt
 version=3.1.7
-revision=1
+revision=2
 wrksrc="bcrypt-${version}"
 build_style=python-module
 pycompile_module="bcrypt"

From 91e29d8f93186f3c597658d4746f864cc6ed9fb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 102/872] python-bibtexparser: rebuild for Python 3.8.

---
 srcpkgs/python-bibtexparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bibtexparser/template b/srcpkgs/python-bibtexparser/template
index 1eff201e6b8..c40115c9fb8 100644
--- a/srcpkgs/python-bibtexparser/template
+++ b/srcpkgs/python-bibtexparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bibtexparser'
 pkgname=python-bibtexparser
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bibtexparser-${version}"
 build_style=python-module

From 6a95de33763230908ad4e9ae408dedcdd2cc431d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 103/872] python-bitarray: rebuild for Python 3.8.

---
 srcpkgs/python-bitarray/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitarray/template b/srcpkgs/python-bitarray/template
index 4f2b4ee392c..f928718a9df 100644
--- a/srcpkgs/python-bitarray/template
+++ b/srcpkgs/python-bitarray/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitarray'
 pkgname=python-bitarray
 version=1.0.1
-revision=1
+revision=2
 wrksrc="bitarray-${version}"
 build_style=python-module
 pycompile_module="bitarray"

From 1f892b7a3495cc0eddd59d14baf8fa6473521ce4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 104/872] python-bitbucket-api: rebuild for Python 3.8.

---
 srcpkgs/python-bitbucket-api/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitbucket-api/template b/srcpkgs/python-bitbucket-api/template
index 27747866baf..448ea60d53d 100644
--- a/srcpkgs/python-bitbucket-api/template
+++ b/srcpkgs/python-bitbucket-api/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitbucket-api'
 pkgname=python-bitbucket-api
 version=0.5.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="bitbucket-api-${version}"
 build_style=python-module

From 9f464ba19a5d403e830d05b84d5b86c6a9bf0209 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 105/872] python-bleach: rebuild for Python 3.8.

---
 srcpkgs/python-bleach/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bleach/template b/srcpkgs/python-bleach/template
index da389c319a5..6e3d4a3bf4c 100644
--- a/srcpkgs/python-bleach/template
+++ b/srcpkgs/python-bleach/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bleach'
 pkgname=python-bleach
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bleach-${version}"
 build_style=python-module

From a79c0811d86d64b345ee5b056c280a062c8e810a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 106/872] python3-blessed: rebuild for Python 3.8.

---
 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 4d494883f9a..8527379351f 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.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessed-${version}"
 build_style=python3-module

From ec38850242ede1700a4b6234199fba116a530b3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 107/872] python-blessings: rebuild for Python 3.8.

---
 srcpkgs/python-blessings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blessings/template b/srcpkgs/python-blessings/template
index f8e396da5c5..baa4938c328 100644
--- a/srcpkgs/python-blessings/template
+++ b/srcpkgs/python-blessings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blessings'
 pkgname=python-blessings
 version=1.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessings-${version}"
 build_style=python-module

From 19252293b6f311e3a280441f83e7ec1589711b77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 108/872] python-blinker: rebuild for Python 3.8.

---
 srcpkgs/python-blinker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blinker/template b/srcpkgs/python-blinker/template
index e34a4a9721a..b6d1d63d19a 100644
--- a/srcpkgs/python-blinker/template
+++ b/srcpkgs/python-blinker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blinker'
 pkgname=python-blinker
 version=1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="blinker-${version}"
 build_style=python-module

From 7cd7b832b55b68ab081454f2b86c254476bd5132 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 109/872] python-bluez: rebuild for Python 3.8.

---
 srcpkgs/python-bluez/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bluez/template b/srcpkgs/python-bluez/template
index 1112352e8ab..4734e47038d 100644
--- a/srcpkgs/python-bluez/template
+++ b/srcpkgs/python-bluez/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bluez'
 pkgname=python-bluez
 version=0.22
-revision=4
+revision=5
 wrksrc="pybluez-${version}"
 build_style=python-module
 pycompile_module="bluetooth"

From 47f9a18cc42f2afe1e8f31696b6928e35b8105c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 110/872] python3-boltons: rebuild for Python 3.8.

---
 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 84a991feef4..1083eb98c51 100644
--- a/srcpkgs/python3-boltons/template
+++ b/srcpkgs/python3-boltons/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-boltons'
 pkgname=python3-boltons
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boltons-${version}"
 build_style=python3-module

From 05f9cb79aa092e2ddeede56d09676742c60cb788 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 111/872] python-boto: rebuild for Python 3.8.

---
 srcpkgs/python-boto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-boto/template b/srcpkgs/python-boto/template
index 40bd3d888b9..684c00feee0 100644
--- a/srcpkgs/python-boto/template
+++ b/srcpkgs/python-boto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-boto'
 pkgname=python-boto
 version=2.49.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boto-${version}"
 build_style=python-module

From ad258b30e35aadb84fd8cd6395bb3d382b429ce9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 112/872] python-botocore: rebuild for Python 3.8.

---
 srcpkgs/python-botocore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-botocore/template b/srcpkgs/python-botocore/template
index ae1a4c17964..0610007f36e 100644
--- a/srcpkgs/python-botocore/template
+++ b/srcpkgs/python-botocore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-botocore'
 pkgname=python-botocore
 version=1.12.243
-revision=1
+revision=2
 archs=noarch
 wrksrc="botocore-${version}"
 build_style=python-module

From 5bc87295c4d5b8af514da116d9b83154488da331 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 113/872] python-bottle: rebuild for Python 3.8.

---
 srcpkgs/python-bottle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bottle/template b/srcpkgs/python-bottle/template
index 8e3a2ad5ad7..0ffc8adfec7 100644
--- a/srcpkgs/python-bottle/template
+++ b/srcpkgs/python-bottle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bottle'
 pkgname=python-bottle
 version=0.12.17
-revision=1
+revision=2
 archs=noarch
 wrksrc="bottle-${version}"
 build_style=python-module

From 86d7964c563357cfa4aec17ced1fefb9e2c974d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 114/872] brltty: rebuild for Python 3.8.

---
 srcpkgs/brltty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/brltty/template b/srcpkgs/brltty/template
index 33f3354a219..a838cd62d55 100644
--- a/srcpkgs/brltty/template
+++ b/srcpkgs/brltty/template
@@ -1,7 +1,7 @@
 # Template file for 'brltty'
 pkgname=brltty
 version=6.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-gpm --with-screen-driver=lx,sc
  --with-tables-directory=/usr/share/brltty PYTHON=/usr/bin/python3"

From 59305e4244220895606aef8a8016d356cee63dff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 115/872] python-bsddb3: rebuild for Python 3.8.

---
 srcpkgs/python-bsddb3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bsddb3/template b/srcpkgs/python-bsddb3/template
index f719a3f9560..1df37cc0e71 100644
--- a/srcpkgs/python-bsddb3/template
+++ b/srcpkgs/python-bsddb3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bsddb3'
 pkgname=python-bsddb3
 version=6.2.6
-revision=2
+revision=3
 wrksrc="bsddb3-${version}"
 build_style=python-module
 make_build_args="--berkeley-db=${XBPS_CROSS_BASE}/usr"

From 8e91ab0e55145cdc83aae10c6f0277d467cb5057 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 116/872] python-cached-property: rebuild for Python 3.8.

---
 srcpkgs/python-cached-property/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cached-property/template b/srcpkgs/python-cached-property/template
index ca2f8536260..16c89346565 100644
--- a/srcpkgs/python-cached-property/template
+++ b/srcpkgs/python-cached-property/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cached-property'
 pkgname=python-cached-property
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cached-property-${version}"
 build_style=python-module

From 3047633291296a9279b5c2a9c0ff04a0cea875f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 117/872] python-cachetools: rebuild for Python 3.8.

---
 srcpkgs/python-cachetools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cachetools/template b/srcpkgs/python-cachetools/template
index ee3ed3a4c94..0f2fdcaed32 100644
--- a/srcpkgs/python-cachetools/template
+++ b/srcpkgs/python-cachetools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cachetools'
 pkgname=python-cachetools
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cachetools-${version}"
 build_style=python-module

From 52e0110b2dc8419583a18babfa62796ef6410ac7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 118/872] python3-cairo: rebuild for Python 3.8.

---
 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 cdde1b83d20..ac158237dd2 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.18.1
-revision=1
+revision=2
 wrksrc="pycairo-${version}"
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From d8f9c3f93f495874237c23477fb548be8b2c0da2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 119/872] python-cairocffi: rebuild for Python 3.8.

---
 srcpkgs/python-cairocffi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cairocffi/template b/srcpkgs/python-cairocffi/template
index baa61334a2a..c057739b03d 100644
--- a/srcpkgs/python-cairocffi/template
+++ b/srcpkgs/python-cairocffi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cairocffi'
 pkgname=python-cairocffi
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cairocffi-${version}"
 build_style=python-module

From bc01f22fb9a5d16bae1b724b675fc57b1f732baa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 120/872] python3-canonicaljson: rebuild for Python 3.8.

---
 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 abc8e95820d..1cbe15f14ae 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.1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="canonicaljson-${version}"
 build_style=python3-module

From e4cba931e3e55f565bc084f8171dea2a8baa9aaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 121/872] python3-casttube: rebuild for Python 3.8.

---
 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 ccd95f3f31c..9e5544b0101 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=1
+revision=2
 archs=noarch
 wrksrc="casttube-${version}"
 build_style=python3-module

From 255661e350728911e6dc85db4bd8a0a0f059b561 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 122/872] python-cffi: rebuild for Python 3.8.

---
 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 27ae03879ac..8501b202bf2 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.12.3
-revision=1
+revision=2
 wrksrc="cffi-${version}"
 build_style=python-module
 pycompile_module="cffi"

From 1b85c0971a1d2d810331d3392d4ecedf140eeb47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 123/872] python3-changelogs: rebuild for Python 3.8.

---
 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 5c2a4889959..d9a7784cf3b 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.14.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="changelogs-${version}"
 build_style=python3-module

From 38e9561402e4ea4c3c4b27c8c747e6b710aec2fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 124/872] python-chardet: rebuild for Python 3.8.

---
 srcpkgs/python-chardet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chardet/template b/srcpkgs/python-chardet/template
index 685d3ab767f..bd502bbbddf 100644
--- a/srcpkgs/python-chardet/template
+++ b/srcpkgs/python-chardet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chardet'
 pkgname=python-chardet
 version=3.0.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="chardet-${version}"
 build_style=python-module

From de1193127ae80857e0f21f1d0499748b6ccafa40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 125/872] python3-cheetah3: rebuild for Python 3.8.

---
 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 40dfee6e322..b2149b2bc22 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.4
-revision=1
+revision=2
 wrksrc="Cheetah3-${version}"
 build_style=python3-module
 pycompile_module="Cheetah"

From 654378c7da0932e5e48085409868c2639efb5294 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 126/872] python3-chess: rebuild for Python 3.8.

---
 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 54b397517cf..e87dab6ca02 100644
--- a/srcpkgs/python3-chess/template
+++ b/srcpkgs/python3-chess/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chess'
 pkgname=python3-chess
 version=0.27.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-chess-${version}"
 build_style=python3-module

From 10db1a1daa9e65a8a20ebc6e20f512884e23f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 127/872] python3-chromecast: rebuild for Python 3.8.

---
 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 16df7502633..cfa41c5dfb5 100644
--- a/srcpkgs/python3-chromecast/template
+++ b/srcpkgs/python3-chromecast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chromecast'
 pkgname=python3-chromecast
 version=4.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychromecast-${version}"
 build_style=python3-module

From 9ff3e7dae7d0ebe28421538f18f150ecd58104e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 128/872] python-chroot: rebuild for Python 3.8.

---
 srcpkgs/python-chroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chroot/template b/srcpkgs/python-chroot/template
index 36853e9f2c0..7faa0f4cce9 100644
--- a/srcpkgs/python-chroot/template
+++ b/srcpkgs/python-chroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chroot'
 pkgname=python-chroot
 version=0.9.18
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychroot-${version}"
 build_style=python-module

From 8d2b57d7f0075beb9134ebd5f7e517ef8a7f20a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 129/872] python3-cli-ui: rebuild for Python 3.8.

---
 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 8303d44eed2..15a9bd32fce 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.9.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-cli-ui-${version}"
 build_style=python3-module

From ecf175e67cdb7bd1e27d29cc47a7e945a6660996 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 130/872] python3-cli_helpers: rebuild for Python 3.8.

---
 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 74b4abf2200..87b284e3cb5 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=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cli_helpers-${version}"
 build_style=python3-module

From aa87c50665110997328e9b80b9b6ba62c47f18bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 131/872] python-click: rebuild for Python 3.8.

---
 srcpkgs/python-click/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click/template b/srcpkgs/python-click/template
index 217e617e73e..4014cb66a83 100644
--- a/srcpkgs/python-click/template
+++ b/srcpkgs/python-click/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click'
 pkgname=python-click
 version=7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Click-${version}"
 build_style="python-module"

From cac08babb361a709a7b7a93c7a825b4682273115 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 132/872] python-click-log: rebuild for Python 3.8.

---
 srcpkgs/python-click-log/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-log/template b/srcpkgs/python-click-log/template
index 37b53f04af0..b57a7a74b4a 100644
--- a/srcpkgs/python-click-log/template
+++ b/srcpkgs/python-click-log/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-log'
 pkgname=python-click-log
 version=0.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-log-${version}"
 build_style="python-module"

From 5a0f06ded0599ac889d808c93865db1723b2ed95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 133/872] python3-click-plugins: rebuild for Python 3.8.

---
 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 cee484018d1..0ef6ce6b248 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=1
+revision=2
 archs=noarch
 wrksrc="click-plugins-${version}"
 build_style=python3-module

From cf104fe4106995307daeb70eb8d34554c238b5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 134/872] python-click-threading: rebuild for Python 3.8.

---
 srcpkgs/python-click-threading/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-threading/template b/srcpkgs/python-click-threading/template
index 76125224992..49b4a4a9aae 100644
--- a/srcpkgs/python-click-threading/template
+++ b/srcpkgs/python-click-threading/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-threading'
 pkgname=python-click-threading
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-threading-${version}"
 build_style="python-module"

From 4bcf653af73bc8e5a6492eee92e5d2826a779d38 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 135/872] python3-cmdln: rebuild for Python 3.8.

---
 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 f00c9a63908..2b7e21f3980 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=1
+revision=2
 archs=noarch
 wrksrc="cmdln-${version}"
 build_style=python3-module

From 52e9257d3be602d0748918c1440a3eae0b6baa51 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 136/872] python-codespell: rebuild for Python 3.8.

---
 srcpkgs/python-codespell/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-codespell/template b/srcpkgs/python-codespell/template
index 92134285a58..211626f33d7 100644
--- a/srcpkgs/python-codespell/template
+++ b/srcpkgs/python-codespell/template
@@ -1,7 +1,7 @@
 # Template file for 'python-codespell'
 pkgname=python-codespell
 version=1.14.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="codespell-${version}"
 build_style=python-module

From 65299f402e3d3a2991e33defee28d85043e0b40f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 137/872] python-colorama: rebuild for Python 3.8.

---
 srcpkgs/python-colorama/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-colorama/template b/srcpkgs/python-colorama/template
index 98ea0d3be78..09562385243 100644
--- a/srcpkgs/python-colorama/template
+++ b/srcpkgs/python-colorama/template
@@ -1,7 +1,7 @@
 # Template file for 'python-colorama'
 pkgname=python-colorama
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="colorama-${version}"
 build_style=python-module

From ec6a8fb7b9e3330e2d7f3fbe139c7a3742013bd8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 138/872] python3-colorclass: rebuild for Python 3.8.

---
 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 4a80f379206..ed8d2d2ea02 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=1
+revision=2
 archs=noarch
 wrksrc="colorclass-${version}"
 build_style=python3-module

From 4b254d3097fa01cb641af24639c6b9a230345954 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 139/872] python-configobj: rebuild for Python 3.8.

---
 srcpkgs/python-configobj/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-configobj/template b/srcpkgs/python-configobj/template
index 95f30d4631a..a8cb5d5d34e 100644
--- a/srcpkgs/python-configobj/template
+++ b/srcpkgs/python-configobj/template
@@ -1,7 +1,7 @@
 # Template file for 'python-configobj'
 pkgname=python-configobj
 version=5.0.6
-revision=5
+revision=6
 archs=noarch
 wrksrc="configobj-${version}"
 build_style=python-module

From 530a6b84ff81274981ed1aa92a2ff85a78dc9775 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 140/872] python-constantly: rebuild for Python 3.8.

---
 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 b5530908ac4..9160aec9edd 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=2
+revision=3
 archs=noarch
 wrksrc="constantly-${version}"
 build_style=python-module

From d2c0a853f5cd6634cca304f7db191fcb1d9a6afa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 141/872] python-construct: rebuild for Python 3.8.

---
 srcpkgs/python-construct/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-construct/template b/srcpkgs/python-construct/template
index 2afe435652c..d6d0b8010e2 100644
--- a/srcpkgs/python-construct/template
+++ b/srcpkgs/python-construct/template
@@ -1,7 +1,7 @@
 # Template file for 'python-construct'
 pkgname=python-construct
 version=2.9.45
-revision=2
+revision=3
 archs=noarch
 wrksrc="construct-${version}"
 build_style=python-module

From 9ba618aa4a4db0062002fcb1ad540bee9b702ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 142/872] python-coverage: rebuild for Python 3.8.

---
 srcpkgs/python-coverage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-coverage/template b/srcpkgs/python-coverage/template
index df6064b9879..1c44b5e18fb 100644
--- a/srcpkgs/python-coverage/template
+++ b/srcpkgs/python-coverage/template
@@ -1,7 +1,7 @@
 # Template file for 'python-coverage'
 pkgname=python-coverage
 version=4.5.4
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="coverage"

From 9adf4621a4960d8a331e1b723971cb326ad2429f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 143/872] python-cram: rebuild for Python 3.8.

---
 srcpkgs/python-cram/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cram/template b/srcpkgs/python-cram/template
index f1fce32149f..8c5d65fe260 100644
--- a/srcpkgs/python-cram/template
+++ b/srcpkgs/python-cram/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cram'
 pkgname=python-cram
 version=0.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="cram-${version}"
 build_style=python-module

From 47ef41a3931be5da08ee8d6fb0ff35b5e1a95d62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 144/872] python3-crcmod: rebuild for Python 3.8.

---
 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 4cd433d2420..9311dedc8ac 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=1
+revision=2
 wrksrc="crcmod-${version}"
 build_style=python3-module
 pycompile_module="crcmod"

From 8b8750f3919e1f23aa6930671f096a365391611a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 145/872] python-cryptography: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography/template b/srcpkgs/python-cryptography/template
index ce3184715dd..39e63d22f7d 100644
--- a/srcpkgs/python-cryptography/template
+++ b/srcpkgs/python-cryptography/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography'
 pkgname=python-cryptography
 version=2.7
-revision=1
+revision=2
 wrksrc="cryptography-${version}"
 build_style=python-module
 pycompile_module="cryptography"

From 676ecf3ea008b8ccabdd3d2798c449a061abb9dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 146/872] python-cryptography_vectors: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography_vectors/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography_vectors/template b/srcpkgs/python-cryptography_vectors/template
index d52e5f5e47c..8fba3a0ce27 100644
--- a/srcpkgs/python-cryptography_vectors/template
+++ b/srcpkgs/python-cryptography_vectors/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography_vectors'
 pkgname=python-cryptography_vectors
 version=2.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="cryptography_vectors-${version}"
 build_style=python-module

From b78a89dedf3b15094ae7febdff460a2cbf547464 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 147/872] python-css-parser: rebuild for Python 3.8.

---
 srcpkgs/python-css-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-css-parser/template b/srcpkgs/python-css-parser/template
index e90b103e4a0..f6d2d0cbf8b 100644
--- a/srcpkgs/python-css-parser/template
+++ b/srcpkgs/python-css-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-css-parser'
 pkgname=python-css-parser
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="css-parser-${version}"
 build_style=python-module

From 036f8b87a68dcb362c7037f58abcffb763571601 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 148/872] python-cssselect: rebuild for Python 3.8.

---
 srcpkgs/python-cssselect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssselect/template b/srcpkgs/python-cssselect/template
index d7dbcebc0ea..c7f43ebca9f 100644
--- a/srcpkgs/python-cssselect/template
+++ b/srcpkgs/python-cssselect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssselect'
 pkgname=python-cssselect
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d4b52974f5f9e8a86060d3dfccc041298c1d666 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 149/872] python-cssutils: rebuild for Python 3.8.

---
 srcpkgs/python-cssutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssutils/template b/srcpkgs/python-cssutils/template
index 648c4754c22..5f08903b9a0 100644
--- a/srcpkgs/python-cssutils/template
+++ b/srcpkgs/python-cssutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssutils'
 pkgname=python-cssutils
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="cssutils-${version}"
 build_style=python-module

From bfb2835290dfefddc0781e2b463d410bf121efa5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 150/872] python-cups: rebuild for Python 3.8.

---
 srcpkgs/python-cups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cups/template b/srcpkgs/python-cups/template
index 2c26e9ef3d0..62c384c9db8 100644
--- a/srcpkgs/python-cups/template
+++ b/srcpkgs/python-cups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cups'
 pkgname=python-cups
 version=1.9.74
-revision=2
+revision=3
 wrksrc="pycups-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 32daac09af71a30483e9985028381670b4ab6245 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 151/872] system-config-printer: rebuild for Python 3.8.

---
 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 e8f8eca46ae..04fe74ff808 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.11
-revision=5
+revision=6
 build_style=gnu-configure
 configure_args="--with-udev-rules"
 make_build_args="udevhelperdir=/usr/lib/udev"

From 582813b2756ce1d1d397113a752b81189680c001 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 152/872] python-curl: rebuild for Python 3.8.

---
 srcpkgs/python-curl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curl/template b/srcpkgs/python-curl/template
index f1f9051d53a..685c63ce68a 100644
--- a/srcpkgs/python-curl/template
+++ b/srcpkgs/python-curl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curl'
 pkgname=python-curl
 version=7.43.0.3
-revision=4
+revision=5
 wrksrc="pycurl-${version}"
 build_style=python-module
 pycompile_module="curl"

From 0eda981910702bfaac2a8af2041fe2c534c13618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 153/872] python-curtsies: rebuild for Python 3.8.

---
 srcpkgs/python-curtsies/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curtsies/template b/srcpkgs/python-curtsies/template
index 158d1c5ce76..6126a11e9b4 100644
--- a/srcpkgs/python-curtsies/template
+++ b/srcpkgs/python-curtsies/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curtsies'
 pkgname=python-curtsies
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="curtsies-${version}"
 build_style=python-module

From 7db16365daaa931d774701441c01b698be457cb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 154/872] python-cycler: rebuild for Python 3.8.

---
 srcpkgs/python-cycler/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cycler/template b/srcpkgs/python-cycler/template
index ee6c985b288..0b53c195dae 100644
--- a/srcpkgs/python-cycler/template
+++ b/srcpkgs/python-cycler/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cycler'
 pkgname=python-cycler
 version=0.10.0
-revision=4
+revision=5
 archs=noarch
 wrksrc="cycler-${version}"
 build_style=python-module

From 2c59e6772ee31b855fe302a27b9b9544cd865e6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 155/872] python-daemonize: rebuild for Python 3.8.

---
 srcpkgs/python-daemonize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-daemonize/template b/srcpkgs/python-daemonize/template
index 699a156b26b..efaf163e573 100644
--- a/srcpkgs/python-daemonize/template
+++ b/srcpkgs/python-daemonize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-daemonize'
 pkgname=python-daemonize
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="daemonize-${version}"
 build_style=python-module

From 84cc63fece0763c8b6920e56e78508551e0fc727 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 156/872] python-dateutil: rebuild for Python 3.8.

---
 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 d9c0f73c883..7675b8f9447 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.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="dateutil"

From 9a19173186ae564f17114f530ac8077484d43c82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 157/872] python-dbus: rebuild for Python 3.8.

---
 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 869c10b2969..3845f6ce34a 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.12
-revision=1
+revision=2
 wrksrc="dbus-python-${version}"
 build_style=gnu-configure
 pycompile_module="dbus"

From 06a9a5b6965485369e669181d99123d7beabf81f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 158/872] python3-dbusmock: rebuild for Python 3.8.

---
 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 67e0ed68078..4abd47843cc 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.18.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-dbusmock-${version}"
 build_style=python3-module

From 694c57d69d63d9f59bef9d31d20a0b16dc73a2a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 159/872] python-decorator: rebuild for Python 3.8.

---
 srcpkgs/python-decorator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-decorator/template b/srcpkgs/python-decorator/template
index 14090c537c9..7f14fef90a6 100644
--- a/srcpkgs/python-decorator/template
+++ b/srcpkgs/python-decorator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-decorator'
 pkgname=python-decorator
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="decorator-${version}"
 build_style=python-module

From 3bd4b100eb970e16e93bbbed8ce2ac91a36e3df5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 160/872] python-defusedxml: rebuild for Python 3.8.

---
 srcpkgs/python-defusedxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-defusedxml/template b/srcpkgs/python-defusedxml/template
index afd62e94414..96234eb18c7 100644
--- a/srcpkgs/python-defusedxml/template
+++ b/srcpkgs/python-defusedxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-defusedxml'
 pkgname=python-defusedxml
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="defusedxml-${version}"
 build_style=python-module

From 442acbe58cd337c55658908f41ec5b6221ca8fcb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 161/872] python3-discid: rebuild for Python 3.8.

---
 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 be5eae1f07f..cc4bc27a1aa 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=1
+revision=2
 archs=noarch
 wrksrc="discid-${version}"
 build_style=python3-module

From 31db2101853fbced7b2655f48906b9054bce07ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 162/872] python-discogs_client: rebuild for Python 3.8.

---
 srcpkgs/python-discogs_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-discogs_client/template b/srcpkgs/python-discogs_client/template
index a27cc50f93c..5af18eda664 100644
--- a/srcpkgs/python-discogs_client/template
+++ b/srcpkgs/python-discogs_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-discogs_client'
 pkgname=python-discogs_client
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="discogs-client-${version}"
 build_style=python-module

From 0aba2b232148b832c27ebd8703c24f42c5018f15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 163/872] python3-distro: rebuild for Python 3.8.

---
 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 86e94572ed7..f1205ace151 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.4.0
-revision=1
+revision=2
 wrksrc=distro-${version}
 build_style=python3-module
 pycompile_module="distro"

From 990a3bd7cef20bd21b781caccd807a7cadf6a0fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 164/872] python-distutils-extra: rebuild for Python 3.8.

---
 srcpkgs/python-distutils-extra/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-distutils-extra/template b/srcpkgs/python-distutils-extra/template
index 9e5728ba08f..46bb0cccc31 100644
--- a/srcpkgs/python-distutils-extra/template
+++ b/srcpkgs/python-distutils-extra/template
@@ -1,7 +1,7 @@
 # Template file for 'python-distutils-extra'
 pkgname=python-distutils-extra
 version=2.39
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 pycompile_module="DistUtilsExtra"

From cc8c6f7c74e5660152cb87b99e7d7b88b5c3d077 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 165/872] python-dkimpy: rebuild for Python 3.8.

---
 srcpkgs/python-dkimpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dkimpy/template b/srcpkgs/python-dkimpy/template
index 4ca5ad386b0..1da26c5de5d 100644
--- a/srcpkgs/python-dkimpy/template
+++ b/srcpkgs/python-dkimpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dkimpy'
 pkgname=python-dkimpy
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="dkimpy-${version}"
 build_style=python-module

From 8560c730ee4396275d04f5b5649fc0b2a1a8819e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 166/872] python-dnspython: rebuild for Python 3.8.

---
 srcpkgs/python-dnspython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dnspython/template b/srcpkgs/python-dnspython/template
index 15d4d7a8a73..66d237e89ee 100644
--- a/srcpkgs/python-dnspython/template
+++ b/srcpkgs/python-dnspython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dnspython'
 pkgname=python-dnspython
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dnspython-${version}"
 build_style=python-module

From c723160d02d838faad8761fcdaa9cfaed2df756f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 167/872] python-docker: rebuild for Python 3.8.

---
 srcpkgs/python-docker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker/template b/srcpkgs/python-docker/template
index b3f8cb2076b..83265bbb606 100644
--- a/srcpkgs/python-docker/template
+++ b/srcpkgs/python-docker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker'
 pkgname=python-docker
 version=3.7.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-${version}"
 build_style=python-module

From 116d9592b10bcde7a5b2f78ed23e0c2e382394da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 168/872] python-docker-pycreds: rebuild for Python 3.8.

---
 srcpkgs/python-docker-pycreds/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker-pycreds/template b/srcpkgs/python-docker-pycreds/template
index c478ded9de6..2224be0d21d 100644
--- a/srcpkgs/python-docker-pycreds/template
+++ b/srcpkgs/python-docker-pycreds/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker-pycreds'
 pkgname=python-docker-pycreds
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-pycreds-${version}"
 build_style=python-module

From 339d2fc160bc67c015b61704b1ade0e15a729050 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 169/872] python-dockerpty: rebuild for Python 3.8.

---
 srcpkgs/python-dockerpty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dockerpty/template b/srcpkgs/python-dockerpty/template
index 78ba5bc3b09..4a0b3a7a33f 100644
--- a/srcpkgs/python-dockerpty/template
+++ b/srcpkgs/python-dockerpty/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dockerpty'
 pkgname=python-dockerpty
 version=0.4.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="dockerpty-${version}"
 build_style=python-module

From 9925e97e6e19313f6899b14640957a47c12c3c6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 170/872] python-docopt: rebuild for Python 3.8.

---
 srcpkgs/python-docopt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docopt/template b/srcpkgs/python-docopt/template
index 4b8661ed2e1..48e5f86c1e0 100644
--- a/srcpkgs/python-docopt/template
+++ b/srcpkgs/python-docopt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docopt'
 pkgname=python-docopt
 version=0.6.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="docopt-${version}"
 build_style=python-module

From b274270fc5a58198a59400d9c8eb825546cf64ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 171/872] python-docutils: rebuild for Python 3.8.

---
 srcpkgs/python-docutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docutils/template b/srcpkgs/python-docutils/template
index 62f080f416a..8fd21a7450b 100644
--- a/srcpkgs/python-docutils/template
+++ b/srcpkgs/python-docutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docutils'
 pkgname=python-docutils
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docutils-${version}"
 build_style=python-module

From 6db8d0a9fb5d7b1cd339f5102d86a29dda19f348 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 172/872] python-dogpile.cache: rebuild for Python 3.8.

---
 srcpkgs/python-dogpile.cache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index f6e106fb4e8..894c6f695bf 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dogpile.cache'
 pkgname=python-dogpile.cache
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dogpile.cache-${version}"
 build_style=python-module

From e603b2f5de239ac8c6e7b8322f560ed5249fe887 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 173/872] python-dominate: rebuild for Python 3.8.

---
 srcpkgs/python-dominate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dominate/template b/srcpkgs/python-dominate/template
index 14ec659bac8..6d6f2caa323 100644
--- a/srcpkgs/python-dominate/template
+++ b/srcpkgs/python-dominate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dominate'
 pkgname=python-dominate
 version=2.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dominate-${version}"
 build_style=python-module

From 2bd7c3e739559614758b25140591fa8bb623a73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 174/872] python-dulwich: rebuild for Python 3.8.

---
 srcpkgs/python-dulwich/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dulwich/template b/srcpkgs/python-dulwich/template
index 0bddda65069..7b8ac45011e 100644
--- a/srcpkgs/python-dulwich/template
+++ b/srcpkgs/python-dulwich/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dulwich'
 pkgname=python-dulwich
 version=0.19.13
-revision=1
+revision=2
 wrksrc="dulwich-${version}"
 build_style=python-module
 pycompile_module="dulwich"

From 9d0b79dad0746da7669be20a38791a7eff4a42dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 175/872] python3-easygui: rebuild for Python 3.8.

---
 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 c1ec4767ae9..a9a2f66d865 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="easygui-${version}"
 build_style=python3-module

From eaa3ee113511523004b2d78a2119becc627b2dcf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 176/872] python-ecdsa: rebuild for Python 3.8.

---
 srcpkgs/python-ecdsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ecdsa/template b/srcpkgs/python-ecdsa/template
index 5e0b217fa73..e6e7d58cd10 100644
--- a/srcpkgs/python-ecdsa/template
+++ b/srcpkgs/python-ecdsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ecdsa'
 pkgname=python-ecdsa
 version=0.13.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 5d7cb5b032b5814415f5b21646b09bceda211fd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 177/872] python-editor: rebuild for Python 3.8.

---
 srcpkgs/python-editor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-editor/template b/srcpkgs/python-editor/template
index 4b86afa6924..3594e407205 100644
--- a/srcpkgs/python-editor/template
+++ b/srcpkgs/python-editor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-editor'
 pkgname=python-editor
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="editor"

From 19c3e09b30ed3cf9c6ffee8cee652d54c672a599 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 178/872] python-efl: rebuild for Python 3.8.

---
 srcpkgs/python-efl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-efl/template b/srcpkgs/python-efl/template
index a49e7d35847..2096f6916da 100644
--- a/srcpkgs/python-efl/template
+++ b/srcpkgs/python-efl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-efl'
 pkgname=python-efl
 version=1.22.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="efl"
 hostmakedepends="pkg-config python-devel python3-devel"

From 82198e93fcca38bb8b5f4f754bcbd6fd7baf59da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 179/872] python3-eliot: rebuild for Python 3.8.

---
 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 15b05dd7331..8453789b688 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="eliot-${version}"
 build_style=python3-module

From bcfe6b0d9db4104d00cb6a16d6012f2258515d59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 180/872] python-empy: rebuild for Python 3.8.

---
 srcpkgs/python-empy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-empy/template b/srcpkgs/python-empy/template
index 97476250cf2..4668a9cc814 100644
--- a/srcpkgs/python-empy/template
+++ b/srcpkgs/python-empy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-empy'
 pkgname=python-empy
 version=3.3.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="empy-${version}"
 build_style=python-module

From 6a91fa7210bd83ced5963d69be69166cd7ad72e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 181/872] python-enchant: rebuild for Python 3.8.

---
 srcpkgs/python-enchant/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enchant/template b/srcpkgs/python-enchant/template
index a443877d821..e499957b47e 100644
--- a/srcpkgs/python-enchant/template
+++ b/srcpkgs/python-enchant/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enchant'
 pkgname=python-enchant
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python-module

From 6ec52886dc67e49d1440bf8d0d1fe8fab07df30a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 182/872] python-entrypoints: rebuild for Python 3.8.

---
 srcpkgs/python-entrypoints/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-entrypoints/template b/srcpkgs/python-entrypoints/template
index ebefb2d04dc..6070650f35d 100644
--- a/srcpkgs/python-entrypoints/template
+++ b/srcpkgs/python-entrypoints/template
@@ -1,7 +1,7 @@
 # Template file for 'python-entrypoints'
 pkgname=python-entrypoints
 version=0.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="entrypoints-${version}"
 build_style=python-module

From 612a78254c1f46db87994e41646495e245a3facf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 183/872] python-envdir: rebuild for Python 3.8.

---
 srcpkgs/python-envdir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-envdir/template b/srcpkgs/python-envdir/template
index 622fcee6b34..b8cccad60ac 100644
--- a/srcpkgs/python-envdir/template
+++ b/srcpkgs/python-envdir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-envdir'
 pkgname=python-envdir
 version=1.0.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 50f8488d9ea7d659590f7d09f42dd5b94e19152c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 184/872] python-enzyme: rebuild for Python 3.8.

---
 srcpkgs/python-enzyme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enzyme/template b/srcpkgs/python-enzyme/template
index 637c858195b..f28f40b0319 100644
--- a/srcpkgs/python-enzyme/template
+++ b/srcpkgs/python-enzyme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enzyme'
 pkgname=python-enzyme
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="enzyme-${version}"
 build_style=python-module

From 0927e611429f29f17290f1e10cf2c0b872d1feb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 185/872] python3-esprima: rebuild for Python 3.8.

---
 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 c3a564123de..aec8930a6bf 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=1
+revision=2
 wrksrc="esprima-${version}"
 build_style=python3-module
 pycompile_module="esprima"

From d10708d4fcebbbc7dccf424ca1a596b43ae8df59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 186/872] python-evdev: rebuild for Python 3.8.

---
 srcpkgs/python-evdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-evdev/template b/srcpkgs/python-evdev/template
index 3c1a5253513..cff10211628 100644
--- a/srcpkgs/python-evdev/template
+++ b/srcpkgs/python-evdev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-evdev'
 pkgname=python-evdev
 version=1.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="evdev"
 hostmakedepends="python-setuptools python3-setuptools"

From d4f74f5bad705da704a6773a834e3939d7700c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 187/872] python-ewmh: rebuild for Python 3.8.

---
 srcpkgs/python-ewmh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ewmh/template b/srcpkgs/python-ewmh/template
index be6d04316b0..a96490fb56d 100644
--- a/srcpkgs/python-ewmh/template
+++ b/srcpkgs/python-ewmh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ewmh'
 pkgname=python-ewmh
 version=0.1.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From afbcc47e23517b6d56ec485dc40f389c1af31701 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 188/872] python-exifread: rebuild for Python 3.8.

---
 srcpkgs/python-exifread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-exifread/template b/srcpkgs/python-exifread/template
index 853f885fff8..834aa7730ee 100644
--- a/srcpkgs/python-exifread/template
+++ b/srcpkgs/python-exifread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-exifread'
 pkgname=python-exifread
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="exif-py-${version}"
 build_style="python-module"

From d05fad06fa4306ef7f685f49a366fcc27e64a40c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 189/872] python-fasteners: rebuild for Python 3.8.

---
 srcpkgs/python-fasteners/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fasteners/template b/srcpkgs/python-fasteners/template
index 34ca4e0e9db..24d2ec0611f 100644
--- a/srcpkgs/python-fasteners/template
+++ b/srcpkgs/python-fasteners/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fasteners'
 pkgname=python-fasteners
 version=0.15
-revision=1
+revision=2
 archs=noarch
 wrksrc="fasteners-${version}"
 build_style=python-module

From 8c663b7a9f12675a94dea8c33eddeededd3c56bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 190/872] python-feedgenerator: rebuild for Python 3.8.

---
 srcpkgs/python-feedgenerator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedgenerator/template b/srcpkgs/python-feedgenerator/template
index 3e5abc4f433..bcffb6728aa 100644
--- a/srcpkgs/python-feedgenerator/template
+++ b/srcpkgs/python-feedgenerator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedgenerator'
 pkgname=python-feedgenerator
 version=1.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="feedgenerator-${version}"
 build_style=python-module

From ab9e5bccaa31f32d93549c21e47bc12c4e5ac181 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 191/872] python-feedparser: rebuild for Python 3.8.

---
 srcpkgs/python-feedparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedparser/template b/srcpkgs/python-feedparser/template
index c5c5e8783eb..94f0a58ec88 100644
--- a/srcpkgs/python-feedparser/template
+++ b/srcpkgs/python-feedparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedparser'
 pkgname=python-feedparser
 version=5.2.1
-revision=5
+revision=6
 archs=noarch
 wrksrc="feedparser-${version}"
 build_style=python-module

From 157719696415e499518e188417324c7d97359d36 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 192/872] python3-fido2: rebuild for Python 3.8.

---
 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 fafb4d61d56..fb737d68d20 100644
--- a/srcpkgs/python3-fido2/template
+++ b/srcpkgs/python3-fido2/template
@@ -2,7 +2,7 @@
 pkgname=python3-fido2
 _pkgname=fido2
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From cbab3fd166f79dc7d2659a802e1953c697f94a95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 193/872] python3-filelock: rebuild for Python 3.8.

---
 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 8e0bc8f1070..9105ff8689d 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.0.12
-revision=1
+revision=2
 wrksrc="filelock-${version}"
 build_style=python3-module
 pycompile_module="filelock.py"

From df9deb02719807bdcb49f7c41040cd8748efd6fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 194/872] python-filetype: rebuild for Python 3.8.

---
 srcpkgs/python-filetype/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-filetype/template b/srcpkgs/python-filetype/template
index 37896cff9d8..10b974794b5 100644
--- a/srcpkgs/python-filetype/template
+++ b/srcpkgs/python-filetype/template
@@ -1,7 +1,7 @@
 # Template file for 'python-filetype'
 pkgname=python-filetype
 version=1.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="filetype-${version}"
 build_style=python-module

From b71ed5528581f9bba57653ff2acb45edf6dcbd81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 195/872] python3-fishnet: rebuild for Python 3.8.

---
 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 9dde60cbb6c..6280ae8e966 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=1
+revision=2
 archs=noarch
 wrksrc="fishnet-${version}"
 build_style=python3-module

From 25bc415f7d96b99e98c97ab0abad6a531786f9e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 196/872] python-flaky: rebuild for Python 3.8.

---
 srcpkgs/python-flaky/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-flaky/template b/srcpkgs/python-flaky/template
index d5211c9cb60..e8e681421f7 100644
--- a/srcpkgs/python-flaky/template
+++ b/srcpkgs/python-flaky/template
@@ -1,7 +1,7 @@
 # Template file for 'python-flaky'
 pkgname=python-flaky
 version=3.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 6dfa18d602ed8d6414a040466c4e0eef4db1d0d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 197/872] python3-flexmock: rebuild for Python 3.8.

---
 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 0663ed5122d..8a7c9a2894d 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.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="flexmock-${version}"
 build_style=python3-module

From 8c90b86b18b06e68260df59166a7228f7af5e5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 198/872] python3-fonttools: rebuild for Python 3.8.

---
 srcpkgs/python3-fonttools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-fonttools/template b/srcpkgs/python3-fonttools/template
index 15cf36585fb..ccd4b66c5d8 100644
--- a/srcpkgs/python3-fonttools/template
+++ b/srcpkgs/python3-fonttools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-fonttools'
 pkgname=python3-fonttools
 version=4.0.2
-revision=1
+revision=2
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 pycompile_module="fonttools"

From 423903ec28541ea1cd89f97400529121dca5e065 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 199/872] python3-frozendict: rebuild for Python 3.8.

---
 srcpkgs/python3-frozendict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-frozendict/template b/srcpkgs/python3-frozendict/template
index d3b4dc91602..739000a887c 100644
--- a/srcpkgs/python3-frozendict/template
+++ b/srcpkgs/python3-frozendict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-frozendict'
 pkgname=python3-frozendict
 version=1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="frozendict-${version}"
 build_style=python3-module

From 0929953d079922e685a9b46372630d69c2c6776d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 200/872] python-fuse: rebuild for Python 3.8.

---
 srcpkgs/python-fuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fuse/template b/srcpkgs/python-fuse/template
index 6449cc36a02..2e99e9866d3 100644
--- a/srcpkgs/python-fuse/template
+++ b/srcpkgs/python-fuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fuse'
 pkgname=python-fuse
 version=0.3.1
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="fuseparts fuse.py"
 hostmakedepends="pkg-config python-setuptools python3-setuptools"

From 505bca67544c8cca26d3f7675eb746bb98abf44e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 201/872] python-future: rebuild for Python 3.8.

---
 srcpkgs/python-future/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-future/template b/srcpkgs/python-future/template
index 1844be2efbc..6cd53908823 100644
--- a/srcpkgs/python-future/template
+++ b/srcpkgs/python-future/template
@@ -1,7 +1,7 @@
 # Template file for 'python-future'
 pkgname=python-future
 version=0.17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="future-${version}"
 build_style=python-module

From 4b595c01c8dcf28a72cf0a96960609ab9788b6ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 202/872] python3-geojson: rebuild for Python 3.8.

---
 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 6bcd0c3092e..90e7d5a0e60 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=1
+revision=2
 archs=noarch
 wrksrc="geojson-${version}"
 build_style=python3-module

From 5e44d64f54a2983f4d5fefba49ef65a6803bd024 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 203/872] python-gevent: rebuild for Python 3.8.

---
 srcpkgs/python-gevent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gevent/template b/srcpkgs/python-gevent/template
index 2bbabee00fc..35c76146d56 100644
--- a/srcpkgs/python-gevent/template
+++ b/srcpkgs/python-gevent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gevent'
 pkgname=python-gevent
 version=1.4.0
-revision=1
+revision=2
 wrksrc="gevent-${version}"
 build_style=python-module
 pycompile_module="gevent"

From 5fed10c6460512a1f1391f079ed47645f9df532e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 204/872] python3-gitchangelog: rebuild for Python 3.8.

---
 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 ed381e07d78..cc1945f2623 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=1
+revision=2
 archs=noarch
 wrksrc="gitchangelog-${version}"
 build_style=python3-module

From b52557ed164619919a05cdf8fae5e77e5b4f53db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 205/872] python-gitdb: rebuild for Python 3.8.

---
 srcpkgs/python-gitdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitdb/template b/srcpkgs/python-gitdb/template
index d9e624b9f53..253ddaa07bd 100644
--- a/srcpkgs/python-gitdb/template
+++ b/srcpkgs/python-gitdb/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitdb'
 pkgname=python-gitdb
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="gitdb2-${version}"
 build_style=python-module

From 53365dcec4eb25138ea4bb248d57c1b2aa7aa311 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 206/872] python-github3: rebuild for Python 3.8.

---
 srcpkgs/python-github3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-github3/template b/srcpkgs/python-github3/template
index 2cb71368f3d..425fe1b7362 100644
--- a/srcpkgs/python-github3/template
+++ b/srcpkgs/python-github3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-github3'
 pkgname=python-github3
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="github3.py-${version}"
 build_style=python-module

From 2b4c90de9a0cbcbb5902a9407f229864bd81a7f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 207/872] python-gitlab: rebuild for Python 3.8.

---
 srcpkgs/python-gitlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitlab/template b/srcpkgs/python-gitlab/template
index 7db583b54c4..0f71b4c7153 100644
--- a/srcpkgs/python-gitlab/template
+++ b/srcpkgs/python-gitlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitlab'
 pkgname=python-gitlab
 version=1.12.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gitlab"

From 51613301779bb891e87daba6b634dca18654d29f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 208/872] python-gmpy2: rebuild for Python 3.8.

---
 srcpkgs/python-gmpy2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gmpy2/template b/srcpkgs/python-gmpy2/template
index c41a9f4595b..74e9b583288 100644
--- a/srcpkgs/python-gmpy2/template
+++ b/srcpkgs/python-gmpy2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gmpy2'
 pkgname=python-gmpy2
 version=2.0.8
-revision=5
+revision=6
 wrksrc="gmpy2-${version}"
 build_style=python-module
 hostmakedepends="unzip python-setuptools python3-setuptools

From a6f4b9ed74b787b741e6297520186bd60de2b46e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 209/872] python-gntp: rebuild for Python 3.8.

---
 srcpkgs/python-gntp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gntp/template b/srcpkgs/python-gntp/template
index 14bd36518f8..7b3bb5a7bb7 100644
--- a/srcpkgs/python-gntp/template
+++ b/srcpkgs/python-gntp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gntp'
 pkgname=python-gntp
 version=1.0.3
-revision=4
+revision=5
 archs=noarch
 wrksrc="gntp-${version}"
 build_style=python-module

From 0730dc20e341ef5247184f85a47f2d1200750698 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 210/872] python-gnupg: rebuild for Python 3.8.

---
 srcpkgs/python-gnupg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gnupg/template b/srcpkgs/python-gnupg/template
index ae6f49c7e27..24c0943d1e4 100644
--- a/srcpkgs/python-gnupg/template
+++ b/srcpkgs/python-gnupg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gnupg'
 pkgname=python-gnupg
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gnupg.py"

From 2c78f38b921da1d4ac2ddf5c200a378cadd75590 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 211/872] python3-gobject: rebuild for Python 3.8.

---
 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 242d33ed3ac..8713ddf5334 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.32.2
-revision=1
+revision=2
 wrksrc="pygobject-${version}"
 build_style=meson
 build_helper="gir"

From 15ed888e45d37128f9852cfc492a14182186f1a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 212/872] python-gogs-client: rebuild for Python 3.8.

---
 srcpkgs/python-gogs-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gogs-client/template b/srcpkgs/python-gogs-client/template
index e8189bc8805..027135d430c 100644
--- a/srcpkgs/python-gogs-client/template
+++ b/srcpkgs/python-gogs-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gogs-client'
 pkgname=python-gogs-client
 version=1.0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="gogs_client-${version}"
 build_style=python-module

From 1ce661eb8f15d8e6d56a3f1e197897c332fa224e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 213/872] python-google-api-python-client: rebuild for Python
 3.8.

---
 srcpkgs/python-google-api-python-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-api-python-client/template b/srcpkgs/python-google-api-python-client/template
index 273cd0722b8..69c2d4e96eb 100644
--- a/srcpkgs/python-google-api-python-client/template
+++ b/srcpkgs/python-google-api-python-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-api-python-client'
 pkgname=python-google-api-python-client
 version=1.7.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From abc55893b0e34778f73646713ec111220a9cafbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 214/872] python-google-auth: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth/template b/srcpkgs/python-google-auth/template
index 708fe08325a..1de6800e3d2 100644
--- a/srcpkgs/python-google-auth/template
+++ b/srcpkgs/python-google-auth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth'
 pkgname=python-google-auth
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 345385c7c36d4b9e58aad80d36b1cd93575ecd95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 215/872] python-google-auth-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth-httplib2/template b/srcpkgs/python-google-auth-httplib2/template
index 9a7fd093ce5..9e43bc92292 100644
--- a/srcpkgs/python-google-auth-httplib2/template
+++ b/srcpkgs/python-google-auth-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth-httplib2'
 pkgname=python-google-auth-httplib2
 version=0.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 659bb740f4ecc98b01dc400608f6b524416a0b86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 216/872] python-gpg: rebuild for Python 3.8.

---
 srcpkgs/python-gpg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gpg/template b/srcpkgs/python-gpg/template
index 4ef85846b42..a17a0324af8 100644
--- a/srcpkgs/python-gpg/template
+++ b/srcpkgs/python-gpg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gpg'
 pkgname=python-gpg
 version=1.10.0
-revision=3
+revision=4
 wrksrc="gpg-${version}"
 build_style=python-module
 hostmakedepends="swig gpgme-devel python-devel python3-devel"

From 873dc5b9b60d819c83e9d76fd366d7e22b1e3bc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 217/872] python-grako: rebuild for Python 3.8.

---
 srcpkgs/python-grako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-grako/template b/srcpkgs/python-grako/template
index cc02973b31e..2b401732735 100644
--- a/srcpkgs/python-grako/template
+++ b/srcpkgs/python-grako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-grako'
 pkgname=python-grako
 version=3.99.9
-revision=3
+revision=4
 wrksrc="neogeny-${pkgname/python-/}-275d3c4fe4ac"
 build_style=python-module
 pycompile_module="grako"

From d47059d2656db0b58c65856428cabac0432d40b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 218/872] python-graphviz: rebuild for Python 3.8.

---
 srcpkgs/python-graphviz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-graphviz/template b/srcpkgs/python-graphviz/template
index 521f2e81213..e3d487a2db7 100644
--- a/srcpkgs/python-graphviz/template
+++ b/srcpkgs/python-graphviz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-graphviz'
 pkgname=python-graphviz
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 604137947acf2b7cd302f3f32e778c96a0f521f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 219/872] python-greenlet: rebuild for Python 3.8.

---
 srcpkgs/python-greenlet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-greenlet/template b/srcpkgs/python-greenlet/template
index d1e63ac7adb..b540e9a286b 100644
--- a/srcpkgs/python-greenlet/template
+++ b/srcpkgs/python-greenlet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-greenlet'
 pkgname=python-greenlet
 version=0.4.15
-revision=2
+revision=3
 wrksrc="greenlet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From c75b3ed338515fef098deb3e5b0d7a6afb7e4027 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 220/872] python-guessit: rebuild for Python 3.8.

---
 srcpkgs/python-guessit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-guessit/template b/srcpkgs/python-guessit/template
index 5029048a041..a962f14522f 100644
--- a/srcpkgs/python-guessit/template
+++ b/srcpkgs/python-guessit/template
@@ -1,7 +1,7 @@
 # Template file for 'python-guessit'
 pkgname=python-guessit
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="guessit-${version}"
 build_style=python-module

From be7acc08bc4f5ffb222fcebc23a391553273ece1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 221/872] python-h11: rebuild for Python 3.8.

---
 srcpkgs/python-h11/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-h11/template b/srcpkgs/python-h11/template
index 88040dfadec..b2e007533a7 100644
--- a/srcpkgs/python-h11/template
+++ b/srcpkgs/python-h11/template
@@ -1,7 +1,7 @@
 # Template file for 'python-h11'
 pkgname=python-h11
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=h11-${version}
 build_style=python-module

From bdf55bd416f8bc2ed44be6c4c54d162c18a8ea97 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 222/872] python-habanero: rebuild for Python 3.8.

---
 srcpkgs/python-habanero/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-habanero/template b/srcpkgs/python-habanero/template
index 86d66befc3d..a914f21ecb7 100644
--- a/srcpkgs/python-habanero/template
+++ b/srcpkgs/python-habanero/template
@@ -1,7 +1,7 @@
 # Template file for 'python-habanero'
 pkgname=python-habanero
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="habanero-${version}"
 build_style=python-module

From 9c07301e6c8b8cbc8282f2c49eee7ea5572650fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 223/872] python3-hawkauthlib: rebuild for Python 3.8.

---
 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 fd7f1405790..1456fa7d814 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=2
+revision=3
 archs=noarch
 wrksrc="hawkauthlib-${version}"
 build_style=python3-module

From 66941ef99dc3f45dea432a38889d9aedcbc58e8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 224/872] python-hiredis: rebuild for Python 3.8.

---
 srcpkgs/python-hiredis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hiredis/template b/srcpkgs/python-hiredis/template
index 23694ae92d7..82a97d5eaf3 100644
--- a/srcpkgs/python-hiredis/template
+++ b/srcpkgs/python-hiredis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hiredis'
 pkgname=python-hiredis
 version=0.2.0
-revision=4
+revision=5
 wrksrc="hiredis-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 335237d6c8ffbf9d850fddc0047cb4ea28057efd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 225/872] python3-hkdf: rebuild for Python 3.8.

---
 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 fabc91ee974..0faaf05b5fe 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=1
+revision=2
 archs=noarch
 wrksrc="hkdf-${version}"
 build_style=python3-module

From fa28e1e2a5b4f298ee9762f0f595a5b1b16db0c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 226/872] python-hoedown: rebuild for Python 3.8.

---
 srcpkgs/python-hoedown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hoedown/template b/srcpkgs/python-hoedown/template
index a964fbbb709..4b82aba9afc 100644
--- a/srcpkgs/python-hoedown/template
+++ b/srcpkgs/python-hoedown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hoedown'
 pkgname=python-hoedown
 version=0.3.0
-revision=2
+revision=3
 wrksrc="hoedown-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 1b9ab7e23ce8f84563cdaac18cbe35d6b5b377eb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 227/872] python-hpack: rebuild for Python 3.8.

---
 srcpkgs/python-hpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hpack/template b/srcpkgs/python-hpack/template
index c69e91daa0e..ffbac313103 100644
--- a/srcpkgs/python-hpack/template
+++ b/srcpkgs/python-hpack/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hpack'
 pkgname=python-hpack
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hpack-${version}
 build_style=python-module

From b6095882129bc28d1a3eec0f996353011126ed10 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 228/872] python3-html2text: rebuild for Python 3.8.

---
 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 006f2a127ad..c74e236a053 100644
--- a/srcpkgs/python3-html2text/template
+++ b/srcpkgs/python3-html2text/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-html2text'
 pkgname=python3-html2text
 version=2019.9.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module

From 78741dc5f018f23c93acabc2cdd16c97d5e08012 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 229/872] python-html5-parser: rebuild for Python 3.8.

---
 srcpkgs/python-html5-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5-parser/template b/srcpkgs/python-html5-parser/template
index 130c5037e57..41bbd0ea157 100644
--- a/srcpkgs/python-html5-parser/template
+++ b/srcpkgs/python-html5-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5-parser'
 pkgname=python-html5-parser
 version=0.4.8
-revision=1
+revision=2
 wrksrc="html5-parser-${version}"
 build_style=python-module
 pycompile_module="html5_parser"

From f69efbb44a9aa15f6b7468ff70a20786ec1a04d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 230/872] python-html5lib: rebuild for Python 3.8.

---
 srcpkgs/python-html5lib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5lib/template b/srcpkgs/python-html5lib/template
index 81e683f7bcf..2565de64fd2 100644
--- a/srcpkgs/python-html5lib/template
+++ b/srcpkgs/python-html5lib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5lib'
 pkgname=python-html5lib
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="html5lib-${version}"
 build_style=python-module

From 6bd979521876c876eea2022ebe023cdbb30777c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 231/872] python-httmock: rebuild for Python 3.8.

---
 srcpkgs/python-httmock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httmock/template b/srcpkgs/python-httmock/template
index 61a60126936..e798b4fc1b3 100644
--- a/srcpkgs/python-httmock/template
+++ b/srcpkgs/python-httmock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httmock'
 pkgname=python-httmock
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="httmock-${version}"
 build_style=python-module

From 7f5b2e5c5738ca5824c255406195ff59f30f2c80 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 232/872] python-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httplib2/template b/srcpkgs/python-httplib2/template
index edcb6abf0c1..fe76a729328 100644
--- a/srcpkgs/python-httplib2/template
+++ b/srcpkgs/python-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httplib2'
 pkgname=python-httplib2
 version=0.13.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="httplib2-${version}"
 build_style=python-module

From 9bd4d3d3c99054f61ceb650933dcd9c5740d5ff0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 233/872] python3-humanize: rebuild for Python 3.8.

---
 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 c82c20fb0f2..d1011fb92e9 100644
--- a/srcpkgs/python3-humanize/template
+++ b/srcpkgs/python3-humanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-humanize'
 pkgname=python3-humanize
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="humanize-${version}"
 build_style=python3-module

From ead6f9504cd4015bc13944d58d676ef457b0fb34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 234/872] python-hyper-h2: rebuild for Python 3.8.

---
 srcpkgs/python-hyper-h2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyper-h2/template b/srcpkgs/python-hyper-h2/template
index 5dcf7ed1c4d..9e5eee3b69b 100644
--- a/srcpkgs/python-hyper-h2/template
+++ b/srcpkgs/python-hyper-h2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyper-h2'
 pkgname=python-hyper-h2
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyper-h2-${version}"
 build_style=python-module

From 8ac54f95c067c3f715c23a58d7f2b6d0683988cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 235/872] python-hyperframe: rebuild for Python 3.8.

---
 srcpkgs/python-hyperframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyperframe/template b/srcpkgs/python-hyperframe/template
index e4cea346f7e..6b544c2061c 100644
--- a/srcpkgs/python-hyperframe/template
+++ b/srcpkgs/python-hyperframe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperframe'
 pkgname=python-hyperframe
 version=5.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hyperframe-${version}
 build_style=python-module

From cb929edb0d026e58d2d6c7e6f9baeee9fedf523e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 236/872] python-hyperlink: rebuild for Python 3.8.

---
 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 1cc7aa0670a..945bf72ee59 100644
--- a/srcpkgs/python-hyperlink/template
+++ b/srcpkgs/python-hyperlink/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperlink'
 pkgname=python-hyperlink
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyperlink-${version}"
 build_style=python-module

From da7a9015ccf93b07d390988b03b1403702cfa14a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 237/872] python-hypothesis: rebuild for Python 3.8.

---
 srcpkgs/python-hypothesis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hypothesis/template b/srcpkgs/python-hypothesis/template
index f3eb931e410..de55593fc02 100644
--- a/srcpkgs/python-hypothesis/template
+++ b/srcpkgs/python-hypothesis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hypothesis'
 pkgname=python-hypothesis
 version=4.38.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="hypothesis-hypothesis-python-${version}"
 build_wrksrc=hypothesis-python

From f091030376534d6a6f7c625b82a8405350e7cdcd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 238/872] python-icalendar: rebuild for Python 3.8.

---
 srcpkgs/python-icalendar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-icalendar/template b/srcpkgs/python-icalendar/template
index b2129648ea6..be45f2d608d 100644
--- a/srcpkgs/python-icalendar/template
+++ b/srcpkgs/python-icalendar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-icalendar'
 pkgname=python-icalendar
 version=4.0.3
-revision=1
+revision=2
 wrksrc="icalendar-${version}"
 archs=noarch
 build_style=python-module

From 474626af886f96ef30849e5aca015775f7edfb8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 239/872] icdiff: rebuild for Python 3.8.

---
 srcpkgs/icdiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template
index 31cfc3e2354..396448b86f4 100644
--- a/srcpkgs/icdiff/template
+++ b/srcpkgs/icdiff/template
@@ -1,7 +1,7 @@
 # Template file for 'icdiff'
 pkgname=icdiff
 version=1.9.5
-revision=1
+revision=2
 wrksrc="${pkgname}-release-${version}"
 archs=noarch
 build_style=python-module

From 21e5ba4fadd590c9e0dd7afde206429c99c46c56 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 240/872] python-idna: rebuild for Python 3.8.

---
 srcpkgs/python-idna/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-idna/template b/srcpkgs/python-idna/template
index 4c6baefd41b..446a04da7d7 100644
--- a/srcpkgs/python-idna/template
+++ b/srcpkgs/python-idna/template
@@ -1,7 +1,7 @@
 # Template file for 'python-idna'
 pkgname=python-idna
 version=2.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-${version}"
 build_style=python-module

From a012eff0de75e8caab0be24964731b749fe6ad8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 241/872] python3-idna-ssl: rebuild for Python 3.8.

---
 srcpkgs/python3-idna-ssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-idna-ssl/template b/srcpkgs/python3-idna-ssl/template
index df953f4d0d9..0608fb7278c 100644
--- a/srcpkgs/python3-idna-ssl/template
+++ b/srcpkgs/python3-idna-ssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-idna-ssl'
 pkgname=python3-idna-ssl
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-ssl-${version}"
 build_style=python3-module

From ac112b7dfc3aadb93225736a4504f7965af29838 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 242/872] python3-ifaddr: rebuild for Python 3.8.

---
 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 37bc2bbaf73..683d76662a3 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ifaddr-${version}"
 build_style=python3-module

From 32d0218ef7a7a721759e4c421d70255f49b3cfd0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 243/872] python-imagesize: rebuild for Python 3.8.

---
 srcpkgs/python-imagesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-imagesize/template b/srcpkgs/python-imagesize/template
index ee231eb9f24..f64c86812b5 100644
--- a/srcpkgs/python-imagesize/template
+++ b/srcpkgs/python-imagesize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-imagesize'
 pkgname=python-imagesize
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="imagesize-${version}"
 build_style=python-module

From f0bf351c50949a7348409d8c132926c401dabf43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 244/872] python3-importlib_metadata: rebuild for Python 3.8.

---
 srcpkgs/python3-importlib_metadata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-importlib_metadata/template b/srcpkgs/python3-importlib_metadata/template
index 9acbe968e10..f88e9d9b780 100644
--- a/srcpkgs/python3-importlib_metadata/template
+++ b/srcpkgs/python3-importlib_metadata/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-importlib_metadata'
 pkgname=python3-importlib_metadata
 version=0.23
-revision=1
+revision=2
 archs=noarch
 wrksrc="importlib_metadata-${version}"
 build_style=python3-module

From 73cc1c05e8e0ccf9063a33dd203d70df2ab135ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 245/872] python-incremental: rebuild for Python 3.8.

---
 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 a1c07042365..70477e26866 100644
--- a/srcpkgs/python-incremental/template
+++ b/srcpkgs/python-incremental/template
@@ -1,7 +1,7 @@
 # Template file for 'python-incremental'
 pkgname=python-incremental
 version=17.5.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="incremental-${version}"
 build_style=python-module

From 82a10b837fff5c5ce2f37ede93dad161025a109c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 246/872] python-inotify: rebuild for Python 3.8.

---
 srcpkgs/python-inotify/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-inotify/template b/srcpkgs/python-inotify/template
index f8e26bcc415..64e48fd9330 100644
--- a/srcpkgs/python-inotify/template
+++ b/srcpkgs/python-inotify/template
@@ -1,7 +1,7 @@
 # Template file for 'python-inotify'
 pkgname=python-inotify
 version=0.9.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="pyinotify-${version}"
 build_style=python-module

From 70f558982c4846e9de5243694f048c7014c7089a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 247/872] python-iptools: rebuild for Python 3.8.

---
 srcpkgs/python-iptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iptools/template b/srcpkgs/python-iptools/template
index 599a85ccdba..3c53013fb9d 100644
--- a/srcpkgs/python-iptools/template
+++ b/srcpkgs/python-iptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iptools'
 pkgname=python-iptools
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9962727fd608ce59af5a55c73c8b4c3d0c17fe71 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 248/872] python3-ipython: rebuild for Python 3.8.

---
 srcpkgs/python3-ipython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template
index 63242f382db..2c08bad1e41 100644
--- a/srcpkgs/python3-ipython/template
+++ b/srcpkgs/python3-ipython/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-ipython'
 pkgname=python3-ipython
 version=7.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipython-${version}"
 build_style=python3-module

From ecafa2b5530001ac56b03e639dff4ae00027d1ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 249/872] python-ipython_genutils: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_genutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_genutils/template b/srcpkgs/python-ipython_genutils/template
index 9af9604ca00..d46a3b0b716 100644
--- a/srcpkgs/python-ipython_genutils/template
+++ b/srcpkgs/python-ipython_genutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_genutils'
 pkgname=python-ipython_genutils
 version=0.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="ipython_genutils-${version}"
 build_style=python-module

From 1349d0a55b00bc5b30629934ad23ae1ed8839d98 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 250/872] python-ipython_ipykernel: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_ipykernel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_ipykernel/template b/srcpkgs/python-ipython_ipykernel/template
index 5ddc333798a..ca17b58c006 100644
--- a/srcpkgs/python-ipython_ipykernel/template
+++ b/srcpkgs/python-ipython_ipykernel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_ipykernel'
 pkgname=python-ipython_ipykernel
 version=4.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipykernel-${version}"
 build_style=python-module

From 1b146320a422b57ba1db41491ccff040d9ee719d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 251/872] python3-irc: rebuild for Python 3.8.

---
 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 eea3a629128..714c11dc943 100644
--- a/srcpkgs/python3-irc/template
+++ b/srcpkgs/python3-irc/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-irc'
 pkgname=python3-irc
 version=17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="irc-${version}"
 build_style=python3-module

From e04c4f250fda964ab555eb6b636f701d995009e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 252/872] python-isbnlib: rebuild for Python 3.8.

---
 srcpkgs/python-isbnlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isbnlib/template b/srcpkgs/python-isbnlib/template
index 3e2f66c6b66..1cc46a060d6 100644
--- a/srcpkgs/python-isbnlib/template
+++ b/srcpkgs/python-isbnlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isbnlib'
 pkgname=python-isbnlib
 version=3.9.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="isbnlib-${version}"
 build_style=python-module

From 2debe6131c52d94acd065961f9ea9ae22176a34c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 253/872] python-iso-8601: rebuild for Python 3.8.

---
 srcpkgs/python-iso-8601/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iso-8601/template b/srcpkgs/python-iso-8601/template
index a483e55b0bd..a841866d439 100644
--- a/srcpkgs/python-iso-8601/template
+++ b/srcpkgs/python-iso-8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iso-8601'
 pkgname=python-iso-8601
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="iso-8601-${version}"
 build_style=python-module

From 8b4be7b5324ac1347d55cc4f4e9eaa552465beec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 254/872] python-isodate: rebuild for Python 3.8.

---
 srcpkgs/python-isodate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isodate/template b/srcpkgs/python-isodate/template
index b2a7eb46591..74e4e813e64 100644
--- a/srcpkgs/python-isodate/template
+++ b/srcpkgs/python-isodate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isodate'
 pkgname=python-isodate
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="isodate-${version}"
 build_style=python-module

From a9c9e144908d37411616dd357e9fdc7575aaa8c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 255/872] python-isort: rebuild for Python 3.8.

---
 srcpkgs/python-isort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isort/template b/srcpkgs/python-isort/template
index df7fcfbf2d2..cd8e43b69ea 100644
--- a/srcpkgs/python-isort/template
+++ b/srcpkgs/python-isort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isort'
 pkgname=python-isort
 version=4.3.21
-revision=1
+revision=2
 archs=noarch
 wrksrc="isort-${version}"
 build_style=python-module

From a81f38d5db390cc4ae2c6be89747bebd3f1f15dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 256/872] python-itsdangerous: rebuild for Python 3.8.

---
 srcpkgs/python-itsdangerous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-itsdangerous/template b/srcpkgs/python-itsdangerous/template
index d1d9234df88..6e6fe5dcb2b 100644
--- a/srcpkgs/python-itsdangerous/template
+++ b/srcpkgs/python-itsdangerous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-itsdangerous'
 pkgname=python-itsdangerous
 version=0.24
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 2d842da30a2a65a2405487fdd5929ca2a0555251 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 257/872] python-iwlib: rebuild for Python 3.8.

---
 srcpkgs/python-iwlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iwlib/template b/srcpkgs/python-iwlib/template
index 2c58d4c8d29..2f4149b4e92 100644
--- a/srcpkgs/python-iwlib/template
+++ b/srcpkgs/python-iwlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iwlib'
 pkgname=python-iwlib
 version=1.6.2
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="iwlib"

From c09cc84b06cf4332a02b0a826494a74c81409175 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 258/872] python-jedi: rebuild for Python 3.8.

---
 srcpkgs/python-jedi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jedi/template b/srcpkgs/python-jedi/template
index 136e6adbea4..a994f0e2861 100644
--- a/srcpkgs/python-jedi/template
+++ b/srcpkgs/python-jedi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jedi'
 pkgname=python-jedi
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 _parsover=0.5.0
 wrksrc="jedi-${version}"

From 235b9031c126ebf53355a5ef0c337423c0df1d95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 259/872] python3-jeepney: rebuild for Python 3.8.

---
 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 2ae308a6fc6..9c5c007aa17 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.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="jeepney-${version}"
 build_style=python3-module

From 4868c0871bc763937dd6b8573e91ee86064e0595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 260/872] python3-jellyfish: rebuild for Python 3.8.

---
 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 dec74539e3f..5d0a614c397 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.7.2
-revision=1
+revision=2
 wrksrc="jellyfish-${version}"
 build_style=python3-module
 pycompile_module="jellyfish"

From a9c225f19782a27d8e5e28a508ea0acc39991390 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 261/872] python-jmespath: rebuild for Python 3.8.

---
 srcpkgs/python-jmespath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jmespath/template b/srcpkgs/python-jmespath/template
index 47508a3a0c2..220f1a33c07 100644
--- a/srcpkgs/python-jmespath/template
+++ b/srcpkgs/python-jmespath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jmespath'
 pkgname=python-jmespath
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jmespath.py-${version}"
 build_style=python-module

From 30e8e2e1619bdf45652db8c6ecdd0e0a4fc90d8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 262/872] python3-josepy: rebuild for Python 3.8.

---
 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 6d6e4547d38..903bd7028ed 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="josepy-${version}"
 build_style=python3-module

From c06d36cf857257f3cf63a7e677498487d37168d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 263/872] python-jsonpointer: rebuild for Python 3.8.

---
 srcpkgs/python-jsonpointer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonpointer/template b/srcpkgs/python-jsonpointer/template
index ed865fbfcba..fd103d123aa 100644
--- a/srcpkgs/python-jsonpointer/template
+++ b/srcpkgs/python-jsonpointer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonpointer'
 pkgname=python-jsonpointer
 version=2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonpointer-${version}"
 build_style=python-module

From be483d0bbf53a22e23a3c2db3d77dc61bff17915 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 264/872] python-jsonrpclib: rebuild for Python 3.8.

---
 srcpkgs/python-jsonrpclib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonrpclib/template b/srcpkgs/python-jsonrpclib/template
index 7253607fe57..a245168a824 100644
--- a/srcpkgs/python-jsonrpclib/template
+++ b/srcpkgs/python-jsonrpclib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonrpclib'
 pkgname=python-jsonrpclib
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonrpclib-pelix-${version}"
 build_style=python-module

From 15ad75adf989474229acc1fdac0c5d5887528bd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 265/872] python-jsonschema: rebuild for Python 3.8.

---
 srcpkgs/python-jsonschema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonschema/template b/srcpkgs/python-jsonschema/template
index 63c30ce6863..326b5609d36 100644
--- a/srcpkgs/python-jsonschema/template
+++ b/srcpkgs/python-jsonschema/template
@@ -2,7 +2,7 @@
 pkgname=python-jsonschema
 reverts="3.0.2_1"
 version=2.6.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="jsonschema-${version}"
 build_style=python-module

From 8bf3797435c040a1682d5e3e4c6c41f650d82b34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 266/872] python-jupyter_client: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_client/template b/srcpkgs/python-jupyter_client/template
index ab5cd0c5b3c..6365dd9e175 100644
--- a/srcpkgs/python-jupyter_client/template
+++ b/srcpkgs/python-jupyter_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_client'
 pkgname=python-jupyter_client
 version=5.2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_client-${version}"
 build_style=python-module

From e732ed651c399cb8d7e96a618444e815bf86ce4b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 267/872] python3-jupyter_console: rebuild for Python 3.8.

---
 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 25b2eda4c2f..3837e5b3bbf 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_console-${version}"
 build_style=python3-module

From b264bc5200c6942b1507777e0bc169838cb6a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 268/872] python-jupyter_core: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_core/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_core/template b/srcpkgs/python-jupyter_core/template
index fcce4e0fe0b..f1629208e86 100644
--- a/srcpkgs/python-jupyter_core/template
+++ b/srcpkgs/python-jupyter_core/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_core'
 pkgname=python-jupyter_core
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_core-${version}"
 build_style=python-module

From 54845c515258535f8793ff37241d0daad10fcddc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 269/872] python-jupyter_ipywidgets: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_ipywidgets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_ipywidgets/template b/srcpkgs/python-jupyter_ipywidgets/template
index 3d511a25152..44570cf390a 100644
--- a/srcpkgs/python-jupyter_ipywidgets/template
+++ b/srcpkgs/python-jupyter_ipywidgets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_ipywidgets'
 pkgname=python-jupyter_ipywidgets
 version=7.4.2
-revision=1
+revision=2
 archs=noarch
 _widgetsnbextver=3.4.0
 wrksrc="ipywidgets-${version}"

From da9dc8f246174d7b5fed1a61f1b4bb127c2bc9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 270/872] python-jupyter_nbconvert: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbconvert/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbconvert/template b/srcpkgs/python-jupyter_nbconvert/template
index 57ac5cce23f..e6cdad7d21c 100644
--- a/srcpkgs/python-jupyter_nbconvert/template
+++ b/srcpkgs/python-jupyter_nbconvert/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbconvert'
 pkgname=python-jupyter_nbconvert
 version=5.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="nbconvert-${version}"
 build_style=python-module

From 8e126f65404eaa5a5b69bca1aa41b4be58abe4b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 271/872] python-jupyter_nbformat: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbformat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbformat/template b/srcpkgs/python-jupyter_nbformat/template
index 11098fd3f90..e2addc8866f 100644
--- a/srcpkgs/python-jupyter_nbformat/template
+++ b/srcpkgs/python-jupyter_nbformat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbformat'
 pkgname=python-jupyter_nbformat
 version=4.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="nbformat-${version}"
 build_style=python-module

From 3d7a11f09a2f159b9e42c935154654a47117f3a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 272/872] python-jupyter_notebook: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_notebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_notebook/template b/srcpkgs/python-jupyter_notebook/template
index c3f478c1fb4..4f6de0f642d 100644
--- a/srcpkgs/python-jupyter_notebook/template
+++ b/srcpkgs/python-jupyter_notebook/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_notebook'
 pkgname=python-jupyter_notebook
 version=5.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="notebook-${version}"
 build_style=python-module

From eab8a5bd67b168048f40a3d2fe199e073715a1b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 273/872] python-jupyter_qtconsole: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_qtconsole/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_qtconsole/template b/srcpkgs/python-jupyter_qtconsole/template
index f8f85534bbd..ea7f89a62af 100644
--- a/srcpkgs/python-jupyter_qtconsole/template
+++ b/srcpkgs/python-jupyter_qtconsole/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_qtconsole'
 pkgname=python-jupyter_qtconsole
 version=4.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="qtconsole-${version}"
 build_style=python-module

From 96c7c1f6f484f9a33a17b0213142b8a97a7c69e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 274/872] python-jupyter_widgetsnbextension: rebuild for Python
 3.8.

---
 srcpkgs/python-jupyter_widgetsnbextension/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_widgetsnbextension/template b/srcpkgs/python-jupyter_widgetsnbextension/template
index dacd88ccb4f..05e9c0d00a3 100644
--- a/srcpkgs/python-jupyter_widgetsnbextension/template
+++ b/srcpkgs/python-jupyter_widgetsnbextension/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_widgetsnbextension'
 pkgname=python-jupyter_widgetsnbextension
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="widgetsnbextension-${version}"
 build_style=python-module

From 6175c117f039e76b8fff45d549f50360a92742b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 275/872] python-kaptan: rebuild for Python 3.8.

---
 srcpkgs/python-kaptan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kaptan/template b/srcpkgs/python-kaptan/template
index 649eeec8568..6668b240008 100644
--- a/srcpkgs/python-kaptan/template
+++ b/srcpkgs/python-kaptan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kaptan'
 pkgname=python-kaptan
 version=0.5.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="kaptan-${version}"
 build_style=python-module

From 6668dcf37c32ef8390c8f45e6cd206d8478b963b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 276/872] python-keepalive: rebuild for Python 3.8.

---
 srcpkgs/python-keepalive/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keepalive/template b/srcpkgs/python-keepalive/template
index deb95a07236..50e1d7e6e78 100644
--- a/srcpkgs/python-keepalive/template
+++ b/srcpkgs/python-keepalive/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keepalive'
 pkgname=python-keepalive
 version=0.5
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9e9d4a781427bc1296f59529a4d83b4a1271c5e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 277/872] python-keyring: rebuild for Python 3.8.

---
 srcpkgs/python-keyring/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyring/template b/srcpkgs/python-keyring/template
index df1c21ee1be..2a87160b04d 100644
--- a/srcpkgs/python-keyring/template
+++ b/srcpkgs/python-keyring/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyring'
 pkgname=python-keyring
 version=18.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyring-${version}"
 build_style=python-module

From 8fea0f10f3e8aebfe92a9d090368b1cda777a405 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 278/872] python3-keyrings-alt: rebuild for Python 3.8.

---
 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 d5820535e54..ed09cfac4a7 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=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyrings.alt-${version}"
 build_style=python3-module

From 271539dc3ed1e21733c374ff971770403194a1d1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 279/872] python-keyutils: rebuild for Python 3.8.

---
 srcpkgs/python-keyutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyutils/template b/srcpkgs/python-keyutils/template
index d56ada0e30e..a72819e963a 100644
--- a/srcpkgs/python-keyutils/template
+++ b/srcpkgs/python-keyutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyutils'
 pkgname=python-keyutils
 version=0.6
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="keyutils"
 hostmakedepends="python-setuptools python3-setuptools"

From 0556a11defcdebd2c4319e286451ce3f45f87ebd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 280/872] python-kitchen: rebuild for Python 3.8.

---
 srcpkgs/python-kitchen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kitchen/template b/srcpkgs/python-kitchen/template
index 2bbd68c13c9..68a46986de9 100644
--- a/srcpkgs/python-kitchen/template
+++ b/srcpkgs/python-kitchen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kitchen'
 pkgname=python-kitchen
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="kitchen-${version}"
 build_style=python-module

From fe5070b00515733fcafbeebc62a10ba2029b40db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 281/872] python-kiwisolver: rebuild for Python 3.8.

---
 srcpkgs/python-kiwisolver/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kiwisolver/template b/srcpkgs/python-kiwisolver/template
index 072bd5af038..67f0805aa51 100644
--- a/srcpkgs/python-kiwisolver/template
+++ b/srcpkgs/python-kiwisolver/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kiwisolver'
 pkgname=python-kiwisolver
 version=1.0.1
-revision=2
+revision=3
 wrksrc="kiwisolver-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From d1c550f6959162ec91e7bb39c54ecdd1d5b7c0ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 282/872] python-lazy-object-proxy: rebuild for Python 3.8.

---
 srcpkgs/python-lazy-object-proxy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lazy-object-proxy/template b/srcpkgs/python-lazy-object-proxy/template
index 07efb7b4777..ab2c6dce05c 100644
--- a/srcpkgs/python-lazy-object-proxy/template
+++ b/srcpkgs/python-lazy-object-proxy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lazy-object-proxy'
 pkgname=python-lazy-object-proxy
 version=1.3.1
-revision=3
+revision=4
 wrksrc="lazy-object-proxy-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e5c9a0cf8e6e0714fba4433b9deb1aaf40d43ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 283/872] python-ldap: rebuild for Python 3.8.

---
 srcpkgs/python-ldap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap/template b/srcpkgs/python-ldap/template
index 7770baa8774..e3efc2fc6b3 100644
--- a/srcpkgs/python-ldap/template
+++ b/srcpkgs/python-ldap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap'
 pkgname=python-ldap
 version=3.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="ldap ldapurl.py ldif.py slapdtest"
 hostmakedepends="python-setuptools python3-setuptools"

From dca16bc247cccf1bc7020afca5594d857514100a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 284/872] python-ldap3: rebuild for Python 3.8.

---
 srcpkgs/python-ldap3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap3/template b/srcpkgs/python-ldap3/template
index 676251a85ff..e8e4cade72b 100644
--- a/srcpkgs/python-ldap3/template
+++ b/srcpkgs/python-ldap3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap3'
 pkgname=python-ldap3
 version=2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ldap3-${version}"
 build_style=python-module

From 8f3e1b0bf64fb527d029fec15229e079f326c373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 285/872] python3-libevdev: rebuild for Python 3.8.

---
 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 0a79893726c..f0295cdee9b 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.8
-revision=1
+revision=2
 _githash=1827bebcf789adee8492cbfcc7cf8d56059a42a4
 wrksrc="python-libevdev-${version}-${_githash}"
 build_style=python3-module

From a5b674c4366c36182e29f21b8071faff59006106 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 286/872] libsmbios: rebuild for Python 3.8.

---
 srcpkgs/libsmbios/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsmbios/template b/srcpkgs/libsmbios/template
index 31d8ffda65f..161cb79deb9 100644
--- a/srcpkgs/libsmbios/template
+++ b/srcpkgs/libsmbios/template
@@ -1,7 +1,7 @@
 # Template file for 'libsmbios'
 pkgname=libsmbios
 version=2.4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--sbindir=/usr/bin --disable-static"
 hostmakedepends="automake doxygen gettext-devel help2man libtool pkg-config"

From 7762c8392d1a03ae7a320bdec0b5402b7147d0b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 287/872] python-libtmux: rebuild for Python 3.8.

---
 srcpkgs/python-libtmux/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-libtmux/template b/srcpkgs/python-libtmux/template
index 36fa7ca7ffd..20f43af5f7d 100644
--- a/srcpkgs/python-libtmux/template
+++ b/srcpkgs/python-libtmux/template
@@ -1,7 +1,7 @@
 # Template file for 'python-libtmux'
 pkgname=python-libtmux
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="libtmux-${version}"
 build_style=python-module

From 16a2a1b8ba0ad9f9032d52092294e8a39041bba2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 288/872] python-llfuse: rebuild for Python 3.8.

---
 srcpkgs/python-llfuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-llfuse/template b/srcpkgs/python-llfuse/template
index 203c5e2fd84..b453c67e91d 100644
--- a/srcpkgs/python-llfuse/template
+++ b/srcpkgs/python-llfuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-llfuse'
 pkgname=python-llfuse
 version=1.3.6
-revision=1
+revision=2
 wrksrc="llfuse-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pkg-config"

From ae7f34ffc994fc4606c9209683fae6625f3e781e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 289/872] python-lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lockfile/template b/srcpkgs/python-lockfile/template
index 4c4612ed144..778cecba7e9 100644
--- a/srcpkgs/python-lockfile/template
+++ b/srcpkgs/python-lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lockfile'
 pkgname=python-lockfile
 version=0.12.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="lockfile-${version}"
 build_style=python-module

From 5fd2f78e26b399ed936b12f51886dae3a8d35cb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 290/872] python-logfury: rebuild for Python 3.8.

---
 srcpkgs/python-logfury/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-logfury/template b/srcpkgs/python-logfury/template
index 4b1c435e34a..1b52d2d7fdf 100644
--- a/srcpkgs/python-logfury/template
+++ b/srcpkgs/python-logfury/template
@@ -1,7 +1,7 @@
 # Template file for 'python-logfury'
 pkgname=python-logfury
 version=0.1.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="logfury-${version}"
 build_style=python-module

From 747dc28bedc27e7b5c8738113573012f545333a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 291/872] python-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lxml/template b/srcpkgs/python-lxml/template
index c3aeabfbf1b..1a6a3ac9113 100644
--- a/srcpkgs/python-lxml/template
+++ b/srcpkgs/python-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lxml'
 pkgname=python-lxml
 version=4.4.1
-revision=1
+revision=2
 wrksrc="lxml-lxml-${version}"
 build_style=python-module
 pycompile_module="lxml"

From ebc274c0463316f63fe99e5df0c704e3d324c885 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 292/872] python-lz4: rebuild for Python 3.8.

---
 srcpkgs/python-lz4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lz4/template b/srcpkgs/python-lz4/template
index dab8e8ed542..76a2e800e38 100644
--- a/srcpkgs/python-lz4/template
+++ b/srcpkgs/python-lz4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lz4'
 pkgname=python-lz4
 version=2.1.6
-revision=2
+revision=3
 wrksrc="lz4-${version}"
 build_style=python-module
 pycompile_module="lz4"

From 8eb3f4d6193b25ae716fa2fdfae1f929deb65a91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 293/872] python3-macaroons: rebuild for Python 3.8.

---
 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 d44100c20f2..420f5aff043 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=1
+revision=2
 archs=noarch
 wrksrc="pymacaroons-${version}"
 build_style=python3-module

From 437e300b76670db404728daad9f6224630daaa3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 294/872] python3-macholib: rebuild for Python 3.8.

---
 srcpkgs/python3-macholib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-macholib/template b/srcpkgs/python3-macholib/template
index a2738f57eb0..525b5f7106b 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.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="macholib-${version}"
 build_style=python3-module

From b08f229d26f5b2c915caabe213234afc1e4002e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 295/872] python-magic: rebuild for Python 3.8.

---
 srcpkgs/python-magic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-magic/template b/srcpkgs/python-magic/template
index 98e3c0802ab..5a59efa4808 100644
--- a/srcpkgs/python-magic/template
+++ b/srcpkgs/python-magic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-magic'
 pkgname=python-magic
 version=0.4.15
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="magic.py"

From c597fee1945d8f994f591622074acf3670a81484 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 296/872] python-marisa-trie: rebuild for Python 3.8.

---
 srcpkgs/python-marisa-trie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-marisa-trie/template b/srcpkgs/python-marisa-trie/template
index bb09c933335..5e46b686ace 100644
--- a/srcpkgs/python-marisa-trie/template
+++ b/srcpkgs/python-marisa-trie/template
@@ -1,7 +1,7 @@
 # Template file for 'python-marisa-trie'
 pkgname=python-marisa-trie
 version=0.7.5
-revision=2
+revision=3
 wrksrc="marisa-trie-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 5366314fc7ba3b340ccf5b4658edff33f5ec148a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 297/872] python-markdown2: rebuild for Python 3.8.

---
 srcpkgs/python-markdown2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-markdown2/template b/srcpkgs/python-markdown2/template
index 2d352ba029d..e9068f64202 100644
--- a/srcpkgs/python-markdown2/template
+++ b/srcpkgs/python-markdown2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-markdown2'
 pkgname=python-markdown2
 version=2.3.8
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="markdown2"

From b56d284bcbb50ddece287bde845145e6481e4d39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 298/872] python3-matplotlib: rebuild for Python 3.8.

---
 srcpkgs/python3-matplotlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template
index 857ba17cacf..be02817a4d3 100644
--- a/srcpkgs/python3-matplotlib/template
+++ b/srcpkgs/python3-matplotlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-matplotlib'
 pkgname=python3-matplotlib
 version=3.1.1
-revision=1
+revision=2
 wrksrc="matplotlib-${version}"
 build_style=python3-module
 pycompile_module="matplotlib mpl_toolkits pylab.py"

From 8b3780e8f6f50712735239defc569952763e8894 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 299/872] python-mccabe: rebuild for Python 3.8.

---
 srcpkgs/python-mccabe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mccabe/template b/srcpkgs/python-mccabe/template
index b6a01929540..1e2ed6328b8 100644
--- a/srcpkgs/python-mccabe/template
+++ b/srcpkgs/python-mccabe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mccabe'
 pkgname=python-mccabe
 version=0.6.1
-revision=2
+revision=3
 archs=noarch
 replaces="mccabe>=0"
 wrksrc="mccabe-${version}"

From 954d38992e9a83e3214b79375b895ee1072db4e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 300/872] python-mechanize: rebuild for Python 3.8.

---
 srcpkgs/python-mechanize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mechanize/template b/srcpkgs/python-mechanize/template
index c5b2b5789a7..ca29bbd0d23 100644
--- a/srcpkgs/python-mechanize/template
+++ b/srcpkgs/python-mechanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mechanize'
 pkgname=python-mechanize
 version=0.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="mechanize-${version}"
 build_style=python-module

From e8762f4af80ad5b1cb6a41af3183141ec903485f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 301/872] python3-minidb: rebuild for Python 3.8.

---
 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 50490794600..140964b7a8a 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.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="minidb-${version}"
 build_style=python3-module

From 93febdb59f89cf4939f3684acd832f879fc774d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 302/872] python-miniupnpc: rebuild for Python 3.8.

---
 srcpkgs/python-miniupnpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-miniupnpc/template b/srcpkgs/python-miniupnpc/template
index 500c217c78e..f7892bab073 100644
--- a/srcpkgs/python-miniupnpc/template
+++ b/srcpkgs/python-miniupnpc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-miniupnpc'
 pkgname=python-miniupnpc
 version=2.0.2
-revision=2
+revision=3
 wrksrc="${pkgname#python-}-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ab280bf26207a66e5e3f418768bf3358cc2c76ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 303/872] python-mistune: rebuild for Python 3.8.

---
 srcpkgs/python-mistune/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mistune/template b/srcpkgs/python-mistune/template
index 0ee8dfde5b1..ef5c054ba75 100644
--- a/srcpkgs/python-mistune/template
+++ b/srcpkgs/python-mistune/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mistune'
 pkgname=python-mistune
 version=0.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="mistune-${version}"
 build_style=python-module

From 05abf67487f6ac161862195dfb2069fade248fbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 304/872] python3-more-itertools: rebuild for Python 3.8.

---
 srcpkgs/python3-more-itertools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-more-itertools/template b/srcpkgs/python3-more-itertools/template
index b089992f84e..a765da98495 100644
--- a/srcpkgs/python3-more-itertools/template
+++ b/srcpkgs/python3-more-itertools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-more-itertools'
 pkgname=python3-more-itertools
 version=7.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python3-module

From efcbd7f439e04ca5dc43be057047c93f1051b5cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 305/872] python-mpd2: rebuild for Python 3.8.

---
 srcpkgs/python-mpd2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template
index 682d9a85f5e..0389f8c2a28 100644
--- a/srcpkgs/python-mpd2/template
+++ b/srcpkgs/python-mpd2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpd2'
 pkgname=python-mpd2
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mpd"

From 507a89e7a29ba5dd81f66830577542bb3a098780 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 306/872] python3-mpi4py: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-mpi4py/template | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/python3-mpi4py/template b/srcpkgs/python3-mpi4py/template
index 94a83b688f2..8f9e76867cc 100644
--- a/srcpkgs/python3-mpi4py/template
+++ b/srcpkgs/python3-mpi4py/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpi4py'
 pkgname=python3-mpi4py
 version=3.0.2
-revision=1
+revision=2
 wrksrc="mpi4py-${version}"
 build_style=python3-module
 pycompile_module="mpi4py"
@@ -15,6 +15,12 @@ homepage="https://bitbucket.org/mpi4py/mpi4py"
 distfiles="$PYPI_SITE/m/mpi4py/mpi4py-${version}.tar.gz"
 checksum=f8d629d1e3e3b7b89cb99d0e3bc5505e76cc42089829807950d5c56606ed48e0
 
+post_extract() {
+	# recythonize
+	rm src/mpi4py/include/mpi4py/mpi4py.MPI.h \
+		src/mpi4py/include/mpi4py/mpi4py.MPI_api.h \
+		src/mpi4py.MPI.c
+}
 post_install() {
 	vlicense LICENSE.rst
 }

From d71d04b6dbfad4ce9460041fe001aab7c4cab301 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 307/872] python-mpmath: rebuild for Python 3.8.

---
 srcpkgs/python-mpmath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpmath/template b/srcpkgs/python-mpmath/template
index b0a38c01514..8fd4873dd62 100644
--- a/srcpkgs/python-mpmath/template
+++ b/srcpkgs/python-mpmath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpmath'
 pkgname=python-mpmath
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="mpmath-${version}"
 build_style=python-module

From f050643cc3d8a1927b2b43a4d6bc3a47fce265d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 308/872] python3-mpv: rebuild for Python 3.8.

---
 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 2780c02610b..1910a4d231d 100644
--- a/srcpkgs/python3-mpv/template
+++ b/srcpkgs/python3-mpv/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpv'
 pkgname=python3-mpv
 version=0.3.9
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-mpv-${version}"
 build_style=python3-module

From 076ab982ba68fae19b6a637c3190d501b6f11afb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 309/872] python-msgpack: rebuild for Python 3.8.

---
 srcpkgs/python-msgpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-msgpack/template b/srcpkgs/python-msgpack/template
index 395d854d638..59571d6a208 100644
--- a/srcpkgs/python-msgpack/template
+++ b/srcpkgs/python-msgpack/template
@@ -2,7 +2,7 @@
 pkgname=python-msgpack
 reverts="0.6.0_1"
 version=0.5.6
-revision=3
+revision=4
 wrksrc="msgpack-${version}"
 build_style=python-module
 pycompile_module="msgpack"

From c0b498d4aabae1c0cc1564a796b43c28045b08f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 310/872] python3-msoffcrypto-tool: rebuild for Python 3.8.

---
 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 5996d3bf355..d1b369fc773 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=4.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="msoffcrypto-tool-${version}"
 build_style=python3-module

From a02ae9dc7e657d6823c09d222a46aaaad0b52e6e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 311/872] python-mtranslate: rebuild for Python 3.8.

---
 srcpkgs/python-mtranslate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mtranslate/template b/srcpkgs/python-mtranslate/template
index d56fa18f0f0..992c7b76fe9 100644
--- a/srcpkgs/python-mtranslate/template
+++ b/srcpkgs/python-mtranslate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mtranslate'
 pkgname=python-mtranslate
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="mtranslate-${version}"
 build_style=python-module

From 1db5126bddf0129431159c083c0e8c7feeda0e24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 312/872] python3-multidict: rebuild for Python 3.8.

---
 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 82888db842f..62054db71f1 100644
--- a/srcpkgs/python3-multidict/template
+++ b/srcpkgs/python3-multidict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-multidict'
 pkgname=python3-multidict
 version=4.5.2
-revision=2
+revision=3
 wrksrc="multidict-${version}"
 build_style=python3-module
 pycompile_module="multidict"

From db397601599182d62444486443fe7887f1bf0869 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 313/872] python3-munkres: rebuild for Python 3.8.

---
 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 15767afe3fe..d0d0a013e80 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python3-module

From f6bec8102ac4a1433f716928258d680f0546e9f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 314/872] python-musicbrainzngs: rebuild for Python 3.8.

---
 srcpkgs/python-musicbrainzngs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-musicbrainzngs/template b/srcpkgs/python-musicbrainzngs/template
index 588c25f7cd8..3d738f0c3c0 100644
--- a/srcpkgs/python-musicbrainzngs/template
+++ b/srcpkgs/python-musicbrainzngs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-musicbrainzngs'
 pkgname=python-musicbrainzngs
 version=0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="musicbrainzngs-${version}"
 build_style="python-module"

From 59d602d19ea627b5ddd3ac33170326df511f1b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 315/872] python3-musicpd: rebuild for Python 3.8.

---
 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 3328b2f4bbf..8c6ba2fb451 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=1
+revision=2
 archs=noarch
 wrksrc="python-musicpd-${version}"
 build_style=python3-module

From e4271deae6b4b0258165475e34a0174f837576d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 316/872] mutagen: rebuild for Python 3.8.

---
 srcpkgs/mutagen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mutagen/template b/srcpkgs/mutagen/template
index cbf05ea8583..8b24cc82dc8 100644
--- a/srcpkgs/mutagen/template
+++ b/srcpkgs/mutagen/template
@@ -1,7 +1,7 @@
 # Template file for 'mutagen'
 pkgname=mutagen
 version=1.42.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mutagen"

From c726c7e86676ccc5612045570a6821438d6541cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 317/872] python-mygpoclient: rebuild for Python 3.8.

---
 srcpkgs/python-mygpoclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mygpoclient/template b/srcpkgs/python-mygpoclient/template
index 3f85c72cc0c..ffad63a70a1 100644
--- a/srcpkgs/python-mygpoclient/template
+++ b/srcpkgs/python-mygpoclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mygpoclient'
 pkgname=python-mygpoclient
 version=1.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="mygpoclient-${version}"
 build_style=python-module

From 1d17c7a2672083ac8c194b767f1be1d8778d6f42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 318/872] python3-mypy: rebuild for Python 3.8.

---
 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 37ecd732c06..564c0a4d47c 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.730
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy-${version}"
 build_style=python3-module

From d44ba12caf9958f6f6d708b0e5061d3ca01990e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 319/872] python3-mypy_extensions: rebuild for Python 3.8.

---
 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 2761924248e..25de48ea141 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy_extensions-${version}"
 build_style=python3-module

From 8c03f1eb83b224187a7b0fb11b5c780c96875438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 320/872] python-mysqlclient: rebuild for Python 3.8.

---
 srcpkgs/python-mysqlclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mysqlclient/template b/srcpkgs/python-mysqlclient/template
index 43fed28d4f0..079666a6dab 100644
--- a/srcpkgs/python-mysqlclient/template
+++ b/srcpkgs/python-mysqlclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mysqlclient'
 pkgname=python-mysqlclient
 version=1.3.14
-revision=2
+revision=3
 wrksrc="mysqlclient-${version}"
 build_style=python-module
 pycompile_module="MySQLdb _mysql_exceptions.py"

From 8b80cedc0b4331f2c1827c959c67be32d904a6b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 321/872] python3-nacl: rebuild for Python 3.8.

---
 srcpkgs/python3-nacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-nacl/template b/srcpkgs/python3-nacl/template
index 5dd6a71ad6a..b59ea0196ac 100644
--- a/srcpkgs/python3-nacl/template
+++ b/srcpkgs/python3-nacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-nacl'
 pkgname=python3-nacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python3-module
 pycompile_module="nacl"

From 4b93d8f922559d3f9f9693969307cdb0dedd22c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 322/872] python-namedlist: rebuild for Python 3.8.

---
 srcpkgs/python-namedlist/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-namedlist/template b/srcpkgs/python-namedlist/template
index 4c6e6f1f3d5..75626b9f6d5 100644
--- a/srcpkgs/python-namedlist/template
+++ b/srcpkgs/python-namedlist/template
@@ -1,7 +1,7 @@
 # Template file for 'python-namedlist'
 pkgname=python-namedlist
 version=1.7
-revision=5
+revision=6
 archs=noarch
 wrksrc="namedlist-${version}"
 build_style=python-module

From 643225c4205051b03e6b58dd88dd0fe79a960880 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 323/872] python-natsort: rebuild for Python 3.8.

---
 srcpkgs/python-natsort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-natsort/template b/srcpkgs/python-natsort/template
index 754ac50c419..7101e297aad 100644
--- a/srcpkgs/python-natsort/template
+++ b/srcpkgs/python-natsort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-natsort'
 pkgname=python-natsort
 version=6.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="natsort-${version}"
 build_style=python-module

From 1b4401089b676f8d76d5cbdf86f7cff95a90063f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 324/872] python-nbxmpp: rebuild for Python 3.8.

---
 srcpkgs/python-nbxmpp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nbxmpp/template b/srcpkgs/python-nbxmpp/template
index 4952ee1e102..8c39a93bca7 100644
--- a/srcpkgs/python-nbxmpp/template
+++ b/srcpkgs/python-nbxmpp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nbxmpp'
 pkgname=python-nbxmpp
 version=0.6.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 1ee192bdc19afbca9bbbc456945aaed8e882dc3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 325/872] python-ndg_httpsclient: rebuild for Python 3.8.

---
 srcpkgs/python-ndg_httpsclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ndg_httpsclient/template b/srcpkgs/python-ndg_httpsclient/template
index 908d7137391..54b653f68a9 100644
--- a/srcpkgs/python-ndg_httpsclient/template
+++ b/srcpkgs/python-ndg_httpsclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ndg_httpsclient'
 pkgname=python-ndg_httpsclient
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ndg_httpsclient-${version}"
 build_style=python-module

From 37b5c7920c617c4f55d5abe58df690c621598a93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 326/872] python3-neovim: rebuild for Python 3.8.

---
 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 44068f17b66..2730cd1b92b 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.3.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="pynvim-${version}"
 build_style="python3-module"

From 8136ec791e98badf101712f4f44830a6721d4849 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 327/872] python-netaddr: rebuild for Python 3.8.

---
 srcpkgs/python-netaddr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netaddr/template b/srcpkgs/python-netaddr/template
index 851095a3c7c..20cc1c93134 100644
--- a/srcpkgs/python-netaddr/template
+++ b/srcpkgs/python-netaddr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netaddr'
 pkgname=python-netaddr
 version=0.7.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="netaddr-${version}"
 build_style=python-module

From ebe247f557b410a62febae438785f8f011964023 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 328/872] python-netifaces: rebuild for Python 3.8.

---
 srcpkgs/python-netifaces/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netifaces/template b/srcpkgs/python-netifaces/template
index b8d6e505879..760f657aaba 100644
--- a/srcpkgs/python-netifaces/template
+++ b/srcpkgs/python-netifaces/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netifaces'
 pkgname=python-netifaces
 version=0.10.9
-revision=1
+revision=2
 wrksrc="netifaces-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 07d0e05094764c4ef127de2a4d489537d8ab5708 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 329/872] python3-networkx: rebuild for Python 3.8.

---
 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 eae29038d94..84acd3e929c 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.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="networkx-${version}"
 build_style=python3-module

From 8a3aeb59a75fbf1b7f0394b94c325ef8827b6b5d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 330/872] python-nose: rebuild for Python 3.8.

---
 srcpkgs/python-nose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose/template b/srcpkgs/python-nose/template
index c9fbe9d28d3..f2cd7fe5c3f 100644
--- a/srcpkgs/python-nose/template
+++ b/srcpkgs/python-nose/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose'
 pkgname=python-nose
 version=1.3.7
-revision=3
+revision=4
 archs=noarch
 wrksrc="nose-${version}"
 build_style=python-module

From f86abdbaaaa9e7e8236c4d39cd7e46a733425805 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 331/872] python-nose2: rebuild for Python 3.8.

---
 srcpkgs/python-nose2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose2/template b/srcpkgs/python-nose2/template
index a9ddf5969a1..058abbd4253 100644
--- a/srcpkgs/python-nose2/template
+++ b/srcpkgs/python-nose2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose2'
 pkgname=python-nose2
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 18b92c10ef3291636c1e7e28d721c5e994bf6302 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 332/872] python-npyscreen: rebuild for Python 3.8.

---
 srcpkgs/python-npyscreen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-npyscreen/template b/srcpkgs/python-npyscreen/template
index 0457fa1aaed..2223850f22e 100644
--- a/srcpkgs/python-npyscreen/template
+++ b/srcpkgs/python-npyscreen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-npyscreen'
 pkgname=python-npyscreen
 version=4.10.5.1
-revision=1
+revision=2
 wrksrc="npyscreen-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 9ea98fac2c37960db9a7b76cea2be115e8a2bed7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 333/872] python-ntplib: rebuild for Python 3.8.

---
 srcpkgs/python-ntplib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ntplib/template b/srcpkgs/python-ntplib/template
index 81bac24971e..0582fb326c1 100644
--- a/srcpkgs/python-ntplib/template
+++ b/srcpkgs/python-ntplib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ntplib'
 pkgname=python-ntplib
 version=0.3.3
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 wrksrc="ntplib-${version}"

From 42e7c3606ad17794721afef48ff01de438abbfde Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 334/872] python-numexpr: rebuild for Python 3.8.

---
 srcpkgs/python-numexpr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numexpr/template b/srcpkgs/python-numexpr/template
index 1db40092411..baf91175a33 100644
--- a/srcpkgs/python-numexpr/template
+++ b/srcpkgs/python-numexpr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numexpr'
 pkgname=python-numexpr
 version=2.7.0
-revision=1
+revision=2
 wrksrc="numexpr-${version}"
 build_style=python-module
 pycompile_module="numexpr"

From 30d9e4a8b4a096dfdf5ebfa58ffcadefb1dc1208 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 335/872] python3-numpy: rebuild for Python 3.8.

---
 srcpkgs/python3-numpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-numpy/template b/srcpkgs/python3-numpy/template
index c4c1936cc0d..f5e8ce2cc32 100644
--- a/srcpkgs/python3-numpy/template
+++ b/srcpkgs/python3-numpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-numpy'
 pkgname=python3-numpy
 version=1.17.2
-revision=1
+revision=2
 wrksrc="numpy-${version}"
 build_style=python3-module
 pycompile_module="numpy"

From 0172497dfdbc4c61b890a5cb33fdf7a4c4f8d99a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 336/872] python-numpy-stl: rebuild for Python 3.8.

---
 srcpkgs/python-numpy-stl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numpy-stl/template b/srcpkgs/python-numpy-stl/template
index 3eed838e4f6..cce1a8ead1f 100644
--- a/srcpkgs/python-numpy-stl/template
+++ b/srcpkgs/python-numpy-stl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numpy-stl'
 pkgname=python-numpy-stl
 version=2.10.1
-revision=1
+revision=2
 wrksrc="numpy-stl-v${version}"
 build_style=python-module
 pycompile_module="stl"

From f24b29a48d74aeaddb7b697a5daffdddbd861096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 337/872] python-oauth2client: rebuild for Python 3.8.

---
 srcpkgs/python-oauth2client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauth2client/template b/srcpkgs/python-oauth2client/template
index fd135e4e98f..2398adba276 100644
--- a/srcpkgs/python-oauth2client/template
+++ b/srcpkgs/python-oauth2client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauth2client'
 pkgname=python-oauth2client
 version=4.1.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 4c0ff2a063a36adf86c97b9d4c835ca20b5edfc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 338/872] python-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauthlib/template b/srcpkgs/python-oauthlib/template
index 5bbaa7df29b..036f1b31c92 100644
--- a/srcpkgs/python-oauthlib/template
+++ b/srcpkgs/python-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauthlib'
 pkgname=python-oauthlib
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 661bc27cfe08965221daa2747362d72e4fc27178 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 339/872] python-olefile: rebuild for Python 3.8.

---
 srcpkgs/python-olefile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-olefile/template b/srcpkgs/python-olefile/template
index 4346cfcf667..803d7b67cd8 100644
--- a/srcpkgs/python-olefile/template
+++ b/srcpkgs/python-olefile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-olefile'
 pkgname=python-olefile
 version=0.46
-revision=1
+revision=2
 archs=noarch
 wrksrc="olefile-${version}"
 build_style=python-module

From 81ad48cc99baa98fff2bb93d2c9ddbfe5bd36422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 340/872] python3-oletools: rebuild for Python 3.8.

---
 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 af9a91ff273..a4fda46427b 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.54.2b
-revision=1
+revision=2
 archs=noarch
 wrksrc="oletools-${version}"
 build_style=python3-module

From 0ae1454dacdb40d36d6c46872241d8b7f943ac15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 341/872] openrazer-meta: rebuild for Python 3.8.

---
 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 d4bd24878b2..112cb9e900b 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=1
+revision=2
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 827b1a86d790e29df3f5448f95b7d7583439ebc7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 342/872] python-openssl: rebuild for Python 3.8.

---
 srcpkgs/python-openssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-openssl/template b/srcpkgs/python-openssl/template
index 94bccaa166f..8aabda074fa 100644
--- a/srcpkgs/python-openssl/template
+++ b/srcpkgs/python-openssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-openssl'
 pkgname=python-openssl
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyOpenSSL-${version}"
 build_style=python-module

From 0b35d1d0b8e9ec0f17cb71edb12538b78cf15fa9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 343/872] python3-orocos-kdl: rebuild for Python 3.8.

---
 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 df3e27d5e7b..85b573b2fa4 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=1
+revision=2
 wrksrc=orocos_kinematics_dynamics-${version}
 build_wrksrc=python_orocos_kdl
 build_style=cmake

From 1f599cbc677804bd62252474063a3f44bab1963f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 344/872] python3-owm: rebuild for Python 3.8.

---
 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 d51e01831e6..acdb960ab45 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=1
+revision=2
 wrksrc="pyowm-${version}"
 build_style=python3-module
 pycompile_module="pyowm"

From 04d5ca1141107a7e08a15eccec26eae0cef6ddfc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 345/872] python-packaging: rebuild for Python 3.8.

---
 srcpkgs/python-packaging/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-packaging/template b/srcpkgs/python-packaging/template
index 505631bb29c..06042d12b90 100644
--- a/srcpkgs/python-packaging/template
+++ b/srcpkgs/python-packaging/template
@@ -1,7 +1,7 @@
 # Template file for 'python-packaging'
 pkgname=python-packaging
 version=19.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="packaging-${version}"
 build_style=python-module

From 3d4f635d1909bcc10be550a6ba92c93bab657d24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 346/872] python-pam: rebuild for Python 3.8.

---
 srcpkgs/python-pam/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pam/template b/srcpkgs/python-pam/template
index e696a05ae7f..28c22cfd6ea 100644
--- a/srcpkgs/python-pam/template
+++ b/srcpkgs/python-pam/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pam'
 pkgname=python-pam
 version=1.8.4
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="pam.py"

From 7906adb846a053b93372b360401c778862703de5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 347/872] python3-pandas: rebuild for Python 3.8.

---
 srcpkgs/python3-pandas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pandas/template b/srcpkgs/python3-pandas/template
index ad282b4d5d4..10f9d5a77d9 100644
--- a/srcpkgs/python3-pandas/template
+++ b/srcpkgs/python3-pandas/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pandas'
 pkgname=python3-pandas
 version=0.25.1
-revision=1
+revision=2
 wrksrc="pandas-${version}"
 build_style=python3-module
 pycompile_module="pandas"

From 5f63764964faf4b0d244098f5f64ba1225e14c5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 348/872] python-pandocfilters: rebuild for Python 3.8.

---
 srcpkgs/python-pandocfilters/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pandocfilters/template b/srcpkgs/python-pandocfilters/template
index a7a3d442052..8650d20256f 100644
--- a/srcpkgs/python-pandocfilters/template
+++ b/srcpkgs/python-pandocfilters/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pandocfilters'
 pkgname=python-pandocfilters
 version=1.4.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="pandocfilters-${version}"
 build_style=python-module

From cedefda1104de9c58b20c6b7e1d8a0f4d5385b24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 349/872] python-paramiko: rebuild for Python 3.8.

---
 srcpkgs/python-paramiko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-paramiko/template b/srcpkgs/python-paramiko/template
index c512ceb951f..d6f75508a03 100644
--- a/srcpkgs/python-paramiko/template
+++ b/srcpkgs/python-paramiko/template
@@ -1,7 +1,7 @@
 # Template file for 'python-paramiko'
 pkgname=python-paramiko
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 6c5cdbb0603a5742137ad2399e1f282d7135ecbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 350/872] python-parse: rebuild for Python 3.8.

---
 srcpkgs/python-parse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parse/template b/srcpkgs/python-parse/template
index 298d0b65e78..ded581b4420 100644
--- a/srcpkgs/python-parse/template
+++ b/srcpkgs/python-parse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parse'
 pkgname=python-parse
 version=1.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="parse-${version}"
 build_style=python-module

From 06c32d13c6ecc8f5c59fd3d28c856cddb7e55b69 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 351/872] python3-parsedatetime: rebuild for Python 3.8.

---
 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 d3ac21d7d34..34e9ba0f416 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="parsedatetime-${version}"
 build_style=python3-module

From 149092afd6b238ec9977aa2ba8d8f244d5357e67 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 352/872] python-parsing: rebuild for Python 3.8.

---
 srcpkgs/python-parsing/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parsing/template b/srcpkgs/python-parsing/template
index 0cc744eaf79..bd6cf2c2238 100644
--- a/srcpkgs/python-parsing/template
+++ b/srcpkgs/python-parsing/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parsing'
 pkgname=python-parsing
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyparsing-pyparsing_${version}"
 build_style=python-module

From c302574bea31ba81d3f2e4d6c1b8b8212592985d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 353/872] python-parso: rebuild for Python 3.8.

---
 srcpkgs/python-parso/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parso/template b/srcpkgs/python-parso/template
index 20e5fe306c0..1959b42622a 100644
--- a/srcpkgs/python-parso/template
+++ b/srcpkgs/python-parso/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parso'
 pkgname=python-parso
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="parso-${version}"
 build_style=python-module

From 6b9c95f942435b16d67021b0ce8f182c24bb943f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 354/872] python-passlib: rebuild for Python 3.8.

---
 srcpkgs/python-passlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-passlib/template b/srcpkgs/python-passlib/template
index 3af12ce7b1b..f46a3e92642 100644
--- a/srcpkgs/python-passlib/template
+++ b/srcpkgs/python-passlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-passlib'
 pkgname=python-passlib
 version=1.7.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="passlib-${version}"
 build_style=python-module

From 49600da0619f7152e3ea828c366d9a4680ebac40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 355/872] python-pathlib2: rebuild for Python 3.8.

---
 srcpkgs/python-pathlib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathlib2/template b/srcpkgs/python-pathlib2/template
index bb7bec778f5..fa600b78fbe 100644
--- a/srcpkgs/python-pathlib2/template
+++ b/srcpkgs/python-pathlib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathlib2'
 pkgname=python-pathlib2
 version=2.3.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pathlib2-${version}"
 build_style=python-module

From a0a108aec87134d5b6d2e03e731f48739e1226c0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 356/872] python-pathspec: rebuild for Python 3.8.

---
 srcpkgs/python-pathspec/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathspec/template b/srcpkgs/python-pathspec/template
index 7c5fe04097a..2fa8fa1a811 100644
--- a/srcpkgs/python-pathspec/template
+++ b/srcpkgs/python-pathspec/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathspec'
 pkgname=python-pathspec
 version=0.5.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathspec-${version}"
 build_style=python-module

From c66de315dc6f359ddb581056e8ef350e92acb135 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 357/872] python-pathtools: rebuild for Python 3.8.

---
 srcpkgs/python-pathtools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathtools/template b/srcpkgs/python-pathtools/template
index 218e6ed2f57..47dc6ef6a71 100644
--- a/srcpkgs/python-pathtools/template
+++ b/srcpkgs/python-pathtools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathtools'
 pkgname=python-pathtools
 version=0.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathtools-${version}"
 build_style=python-module

From d3d8ba877ce3e383a472c68a51b4eb6138da7d25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 358/872] python-pbkdf2: rebuild for Python 3.8.

---
 srcpkgs/python-pbkdf2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pbkdf2/template b/srcpkgs/python-pbkdf2/template
index edc50f824c2..956d0b4cad9 100644
--- a/srcpkgs/python-pbkdf2/template
+++ b/srcpkgs/python-pbkdf2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pbkdf2'
 pkgname=python-pbkdf2
 version=1.3
-revision=3
+revision=4
 archs=noarch
 wrksrc="pbkdf2-${version}"
 build_style=python-module

From 92b150f4aee95d71074c2bc7e253e089372033b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 359/872] python-pbr: rebuild for Python 3.8.

---
 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 7ab0b39539f..9c7216056fe 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.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pbr-${version}"
 build_style=python-module

From a5f7f198ba9557855d1662cf7b3d806286d735b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 360/872] python3-pcodedmp: rebuild for Python 3.8.

---
 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 efe8cc83ee7..eb52c809fae 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=1
+revision=2
 archs=noarch
 wrksrc="pcodedmp-${version}"
 build_style=python3-module

From c6f7d3cab5a62a3302eedc82e3ce1b5af007e967 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 361/872] python-pdfrw: rebuild for Python 3.8.

---
 srcpkgs/python-pdfrw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pdfrw/template b/srcpkgs/python-pdfrw/template
index ddb43b928fc..ef7db98e491 100644
--- a/srcpkgs/python-pdfrw/template
+++ b/srcpkgs/python-pdfrw/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pdfrw'
 pkgname=python-pdfrw
 version=0.4
-revision=2
+revision=3
 archs=noarch
 replaces="python-pdfrw-example<${version}_${revision}"
 wrksrc="${pkgname/python-//}-${version}"

From 8f02a9d6b13212de51e3921f641914d153244a1d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 362/872] python-peewee: rebuild for Python 3.8.

---
 srcpkgs/python-peewee/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-peewee/template b/srcpkgs/python-peewee/template
index 9b07ed413b9..de0068a330e 100644
--- a/srcpkgs/python-peewee/template
+++ b/srcpkgs/python-peewee/template
@@ -1,7 +1,7 @@
 # Template file for 'python-peewee'
 pkgname=python-peewee
 version=3.11.2
-revision=1
+revision=2
 wrksrc="peewee-${version}"
 build_style=python-module
 pycompile_module="playhouse peewee.py pwiz.py"

From 8c541b3666a838b55909e5f7ca46b7318c1e315e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 363/872] python3-pefile: rebuild for Python 3.8.

---
 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 305d64e0758..8791f06640b 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=1
+revision=2
 archs=noarch
 wrksrc="pefile-${version}"
 build_style=python3-module

From edc8e4f2bb803865815c3d0bd64a2e50bfdf5da8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 364/872] python3-pem: rebuild for Python 3.8.

---
 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 3517c80b66a..15417666597 100644
--- a/srcpkgs/python3-pem/template
+++ b/srcpkgs/python3-pem/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pem'
 pkgname=python3-pem
 version=19.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pem-${version}"
 build_style=python3-module

From 164760eb3d8d28400ea4be2967d7678696839866 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 365/872] python-pex: rebuild for Python 3.8.

---
 srcpkgs/python-pex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pex/template b/srcpkgs/python-pex/template
index 4beafcf7b4b..e36ccda8180 100644
--- a/srcpkgs/python-pex/template
+++ b/srcpkgs/python-pex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pex'
 pkgname=python-pex
 version=1.6.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="pex-${version}"
 build_style=python-module

From b4043ec822756e0711d025e31db342f81853fc0b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 366/872] python-pexpect: rebuild for Python 3.8.

---
 srcpkgs/python-pexpect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pexpect/template b/srcpkgs/python-pexpect/template
index 8d03a1945f3..03102c3d294 100644
--- a/srcpkgs/python-pexpect/template
+++ b/srcpkgs/python-pexpect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pexpect'
 pkgname=python-pexpect
 version=4.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pexpect-${version}"
 build_style=python-module

From 50f6291ca752dc88af34a7df4987b99f11369c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 367/872] python-pgmigrate: rebuild for Python 3.8.

---
 srcpkgs/python-pgmigrate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgmigrate/template b/srcpkgs/python-pgmigrate/template
index b441ba2a89f..767b6cf8921 100644
--- a/srcpkgs/python-pgmigrate/template
+++ b/srcpkgs/python-pgmigrate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgmigrate'
 pkgname=python-pgmigrate
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgmigrate-${version}"
 build_style=python-module

From 19bc6f8c731b45f52c358d34830221558e54f36f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 368/872] python-pgpdump: rebuild for Python 3.8.

---
 srcpkgs/python-pgpdump/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgpdump/template b/srcpkgs/python-pgpdump/template
index 58be9116feb..a28b6e209e7 100644
--- a/srcpkgs/python-pgpdump/template
+++ b/srcpkgs/python-pgpdump/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgpdump'
 pkgname=python-pgpdump
 version=1.5
-revision=5
+revision=6
 archs=noarch
 build_style=python-module
 pycompile_module="pgpdump"

From d3bc17a7484bd198f2f0e5d449b183920ca6ef9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 369/872] python3-pgspecial: rebuild for Python 3.8.

---
 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 dc52d12c214..c4f67a707f1 100644
--- a/srcpkgs/python3-pgspecial/template
+++ b/srcpkgs/python3-pgspecial/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pgspecial'
 pkgname=python3-pgspecial
 version=1.11.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgspecial-${version}"
 build_style=python3-module

From 630e0f8ca443d21d7a84c4cb44ab119db356b6fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 370/872] python3-pgzero: rebuild for Python 3.8.

---
 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 9653505acda..8b8f477112d 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgzero-${version}"
 build_style=python3-module

From b39841f2f8458d2865aac460282b318538b727c4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 371/872] python3-phonenumbers: rebuild for Python 3.8.

---
 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 ebf33f226e4..7b4e889fd8d 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.10.20
-revision=1
+revision=2
 archs=noarch
 wrksrc="phonenumbers-${version}"
 build_style=python3-module

From c4dbacfe25a16b0526190c66a838b7e407125426 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 372/872] python-picamera: rebuild for Python 3.8.

---
 srcpkgs/python-picamera/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-picamera/template b/srcpkgs/python-picamera/template
index 92bc2a57a6d..e3c9a17bfdc 100644
--- a/srcpkgs/python-picamera/template
+++ b/srcpkgs/python-picamera/template
@@ -1,7 +1,7 @@
 # Template file for 'python-picamera'
 pkgname=python-picamera
 version=1.13
-revision=1
+revision=2
 archs=noarch
 wrksrc="picamera-${version}"
 build_style=python-module

From 29473c016c6cd2d720c417714e89e9eaba3b321e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 373/872] python-pickleshare: rebuild for Python 3.8.

---
 srcpkgs/python-pickleshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pickleshare/template b/srcpkgs/python-pickleshare/template
index 2485c95230a..c1d86826c15 100644
--- a/srcpkgs/python-pickleshare/template
+++ b/srcpkgs/python-pickleshare/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pickleshare'
 pkgname=python-pickleshare
 version=0.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pickleshare-${version}"
 build_style=python-module

From 7c358da397b1273369bbeb98240a250157d4fe9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 374/872] python3-pillow-simd: rebuild for Python 3.8.

---
 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 7bab9fb20c3..4c756b07c79 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=5.3.0.post1
-revision=1
+revision=2
 archs="x86_64*"
 wrksrc="pillow-simd-${version}"
 build_style=python3-module

From 06b38c4e7a2c4a5ec22c8a9c530dbe56d846260f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 375/872] python-pip: rebuild for Python 3.8.

---
 srcpkgs/python-pip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pip/template b/srcpkgs/python-pip/template
index 75f11561816..9d4607095c7 100644
--- a/srcpkgs/python-pip/template
+++ b/srcpkgs/python-pip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pip'
 pkgname=python-pip
 version=19.2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pip-${version}"
 build_style=python-module

From 16067b9358434ea80b4b86a4dcd5a60f6b9e575b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 376/872] python-pipenv: rebuild for Python 3.8.

---
 srcpkgs/python-pipenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pipenv/template b/srcpkgs/python-pipenv/template
index e7ce3922875..210a0813673 100644
--- a/srcpkgs/python-pipenv/template
+++ b/srcpkgs/python-pipenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pipenv'
 pkgname=python-pipenv
 version=2018.11.26
-revision=3
+revision=4
 archs=noarch
 wrksrc="pipenv-${version}"
 build_style=python-module

From cb995aed1307a20f4ffe7746dbe54e4099ce9670 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 377/872] python-pkgconfig: rebuild for Python 3.8.

---
 srcpkgs/python-pkgconfig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pkgconfig/template b/srcpkgs/python-pkgconfig/template
index 13e1dcd3bf7..e9e5480907d 100644
--- a/srcpkgs/python-pkgconfig/template
+++ b/srcpkgs/python-pkgconfig/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pkgconfig'
 pkgname=python-pkgconfig
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pkgconfig-${version}"
 build_style=python-module

From f284340f35211b5c0879b7a5338c325e6cfe62da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 378/872] python-plotly: rebuild for Python 3.8.

---
 srcpkgs/python-plotly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-plotly/template b/srcpkgs/python-plotly/template
index fbbb3a3a520..1593b108f7a 100644
--- a/srcpkgs/python-plotly/template
+++ b/srcpkgs/python-plotly/template
@@ -1,7 +1,7 @@
 # Template file for 'python-plotly'
 pkgname=python-plotly
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 #wrksrc="${pkgname#*-}-${version}"
 wrksrc="plotly.py-${version}"

From ee0d515dc265db17d6c90029fc5ffad4fbfb17ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 379/872] python3-pluggy: rebuild for Python 3.8.

---
 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 37ebc2dae40..6f97cb25f21 100644
--- a/srcpkgs/python3-pluggy/template
+++ b/srcpkgs/python3-pluggy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pluggy'
 pkgname=python3-pluggy
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python3-module

From 60f109b4924812d3cbb6107b8d070a2fdb642962 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 380/872] python-ply: rebuild for Python 3.8.

---
 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 034fbcfa531..04a3defa6aa 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=1
+revision=2
 archs=noarch
 wrksrc="ply-${version}"
 build_style=python-module

From 95b0bc668a60a91dbbd68944bdc712d271e93723 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 381/872] python3-pmw: rebuild for Python 3.8.

---
 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 646e7129443..289b5ef1d0d 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=1
+revision=2
 archs=noarch
 short_desc="Python 3 Tkinter widget toolkit"
 homepage="http://pmw.sourceforge.net/"

From 760b2aa66f385f882c6da4545bc93c906a387d73 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 382/872] python-podcastparser: rebuild for Python 3.8.

---
 srcpkgs/python-podcastparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-podcastparser/template b/srcpkgs/python-podcastparser/template
index e4847d3ed65..61702f0d28b 100644
--- a/srcpkgs/python-podcastparser/template
+++ b/srcpkgs/python-podcastparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-podcastparser'
 pkgname=python-podcastparser
 version=0.6.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="podcastparser-${version}"
 build_style=python-module

From e0ad0641945e1dea937fb2ca555a61603e4560b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 383/872] python-polib: rebuild for Python 3.8.

---
 srcpkgs/python-polib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-polib/template b/srcpkgs/python-polib/template
index b0ade05d90d..8b8d4b66c68 100644
--- a/srcpkgs/python-polib/template
+++ b/srcpkgs/python-polib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-polib'
 pkgname=python-polib
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="polib-${version}"
 build_style=python-module

From 0030be5c9ea47539a72b9d5b5131abeac8412e47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 384/872] python-portend: rebuild for Python 3.8.

---
 srcpkgs/python-portend/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python-portend/template b/srcpkgs/python-portend/template
index 216ae413d09..0538f68083f 100644
--- a/srcpkgs/python-portend/template
+++ b/srcpkgs/python-portend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-portend'
 pkgname=python-portend
 version=2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="portend-${version}"
 build_style=python-module
@@ -14,7 +14,7 @@ license="MIT"
 homepage="https://github.com/jaraco/portend"
 changelog="https://github.com/jaraco/portend/blob/master/CHANGES.rst"
 distfiles="https://github.com/jaraco/portend/archive/${version}.tar.gz"
-checksum=61aa1a8fd76d64bd6093e4151a2bfeda177d5083bf2e2bcc92a053bd2104fde3
+checksum=c0740375a19168e117d291e7ed307e985d2c0e2dc732ca97444bc58a28076dfa
 
 pre_build() {
 	sed -i setup.py \

From 86c2211e1837e156275077b9efe1e25572514867 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 385/872] python-prctl: rebuild for Python 3.8.

---
 srcpkgs/python-prctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prctl/template b/srcpkgs/python-prctl/template
index 2b420d655cf..e8bf54b98fd 100644
--- a/srcpkgs/python-prctl/template
+++ b/srcpkgs/python-prctl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prctl'
 pkgname=python-prctl
 version=1.7
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="prctl.py"
 hostmakedepends="python-setuptools python3-setuptools libcap-devel"

From e7c53afc196d066076f9117158bd6a0b7b28bf52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 386/872] python3-precis-i18n: rebuild for Python 3.8.

---
 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 19612bc818b..be7bb0b0b56 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=1
+revision=2
 archs=noarch
 wrksrc="precis_i18n-${version}"
 build_style=python3-module

From fc6a6a6ae9e2454bc6e5aa117ab2f5f747f1c3d2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 387/872] python-pretend: rebuild for Python 3.8.

---
 srcpkgs/python-pretend/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pretend/template b/srcpkgs/python-pretend/template
index 9a647271b57..6d8063fc43a 100644
--- a/srcpkgs/python-pretend/template
+++ b/srcpkgs/python-pretend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pretend'
 pkgname=python-pretend
 version=1.0.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pretend-${version}"
 build_style=python-module

From 990266b8ce207f64d2a8e2f2f2c11473236e4a2d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 388/872] python-progress: rebuild for Python 3.8.

---
 srcpkgs/python-progress/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-progress/template b/srcpkgs/python-progress/template
index 7d3924e3618..0d6bd1db69d 100644
--- a/srcpkgs/python-progress/template
+++ b/srcpkgs/python-progress/template
@@ -1,7 +1,7 @@
 # Template file for 'python-progress'
 pkgname=python-progress
 version=1.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="progress-${version}"
 build_style=python-module

From 1259abece823637c18eaca058493cebdf15842ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 389/872] python-prometheus_client: rebuild for Python 3.8.

---
 srcpkgs/python-prometheus_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prometheus_client/template b/srcpkgs/python-prometheus_client/template
index 46df561f7d4..7b71fbeffc2 100644
--- a/srcpkgs/python-prometheus_client/template
+++ b/srcpkgs/python-prometheus_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prometheus_client'
 pkgname=python-prometheus_client
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="prometheus_client-${version}"
 build_style=python-module

From 67527aa7cf723b45f2c49017717337d56884bf4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 390/872] python-prompt_toolkit1: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit1/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit1/template b/srcpkgs/python-prompt_toolkit1/template
index d117d620ba5..7afe6179f33 100644
--- a/srcpkgs/python-prompt_toolkit1/template
+++ b/srcpkgs/python-prompt_toolkit1/template
@@ -2,7 +2,7 @@
 pkgname=python-prompt_toolkit1
 reverts="2.0.9_1"
 version=1.0.15
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From ad672131c8ab27e3e4dfa04ab7264c23d46f206e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 391/872] python-prompt_toolkit2: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit2/template b/srcpkgs/python-prompt_toolkit2/template
index 0fa71fa06dc..d7f2fd11e14 100644
--- a/srcpkgs/python-prompt_toolkit2/template
+++ b/srcpkgs/python-prompt_toolkit2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prompt_toolkit2'
 pkgname=python-prompt_toolkit2
 version=2.0.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From 2d3dfe28989a26dbea6bd90097a7a4046839373e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 392/872] python-proselint: rebuild for Python 3.8.

---
 srcpkgs/python-proselint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-proselint/template b/srcpkgs/python-proselint/template
index c017c497386..b1da90de474 100644
--- a/srcpkgs/python-proselint/template
+++ b/srcpkgs/python-proselint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-proselint'
 pkgname=python-proselint
 version=0.10.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="proselint-${version}"
 build_style=python-module

From 3dceefa27e529cfd28f51c8b96cec007bd4464e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 393/872] python-protobuf: rebuild for Python 3.8.

---
 srcpkgs/python-protobuf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-protobuf/template b/srcpkgs/python-protobuf/template
index 4b736f1e7af..7dbed97fb76 100644
--- a/srcpkgs/python-protobuf/template
+++ b/srcpkgs/python-protobuf/template
@@ -1,7 +1,7 @@
 # Template file for 'python-protobuf'
 pkgname=python-protobuf
 version=3.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="protobuf-${version}"
 build_style=python-module

From abc13cfff04878580efaf4333ca9548112b11049 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 394/872] python-psutil: rebuild for Python 3.8.

---
 srcpkgs/python-psutil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psutil/template b/srcpkgs/python-psutil/template
index 96cbb3c399f..11353ed2179 100644
--- a/srcpkgs/python-psutil/template
+++ b/srcpkgs/python-psutil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psutil'
 pkgname=python-psutil
 version=5.6.3
-revision=1
+revision=2
 wrksrc="psutil-${version}"
 build_style=python-module
 pycompile_module="psutil"

From 970bcf29dafb825894593f644c2fb7b4f1b86aff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 395/872] python-psycopg2: rebuild for Python 3.8.

---
 srcpkgs/python-psycopg2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psycopg2/template b/srcpkgs/python-psycopg2/template
index f41de2880e6..14b28b8aed1 100644
--- a/srcpkgs/python-psycopg2/template
+++ b/srcpkgs/python-psycopg2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psycopg2'
 pkgname=python-psycopg2
 version=2.8.3
-revision=1
+revision=2
 wrksrc="psycopg2-${version}"
 build_style=python-module
 pycompile_module="psycopg2"

From f987fad321d899f07d159588838ad3f3bfd1eb12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 396/872] python-ptyprocess: rebuild for Python 3.8.

---
 srcpkgs/python-ptyprocess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ptyprocess/template b/srcpkgs/python-ptyprocess/template
index 04c4cf89391..fd2e51fa3ac 100644
--- a/srcpkgs/python-ptyprocess/template
+++ b/srcpkgs/python-ptyprocess/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ptyprocess'
 pkgname=python-ptyprocess
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ptyprocess-${version}"
 build_style=python-module

From 6854ff4b103875e8ed393d695b71afd7a2589626 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 397/872] python3-pulsectl: rebuild for Python 3.8.

---
 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 429dd1abe45..045afdb411b 100644
--- a/srcpkgs/python3-pulsectl/template
+++ b/srcpkgs/python3-pulsectl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pulsectl'
 pkgname=python3-pulsectl
 version=19.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pulsectl-${version}"
 build_style=python3-module

From e8331ef1c889bc2b1756c6ed55a1cc93186445af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 398/872] python-py: rebuild for Python 3.8.

---
 srcpkgs/python-py/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-py/template b/srcpkgs/python-py/template
index 99644bc228a..07a1ae2a21b 100644
--- a/srcpkgs/python-py/template
+++ b/srcpkgs/python-py/template
@@ -1,7 +1,7 @@
 # Template file for 'python-py'
 pkgname=python-py
 version=1.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="py-${version}"
 build_style=python-module

From 1f71c5025d9cb40d86e4245b6a90731b3f25c6fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 399/872] python-pyPEG2: rebuild for Python 3.8.

---
 srcpkgs/python-pyPEG2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyPEG2/template b/srcpkgs/python-pyPEG2/template
index 113948af730..6ba175687f1 100644
--- a/srcpkgs/python-pyPEG2/template
+++ b/srcpkgs/python-pyPEG2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyPEG2'
 pkgname=python-pyPEG2
 version=2.15.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 3f82483327ba7958b0a6f8b67e63abf009c360ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 400/872] python-pyacoustid: rebuild for Python 3.8.

---
 srcpkgs/python-pyacoustid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyacoustid/template b/srcpkgs/python-pyacoustid/template
index 068d3d52649..d5b2d967f4e 100644
--- a/srcpkgs/python-pyacoustid/template
+++ b/srcpkgs/python-pyacoustid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyacoustid'
 pkgname=python-pyacoustid
 version=1.1.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyacoustid-${version}"
 build_style=python-module

From da477a37411d7cf0d00da2dea60d734072705be7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 401/872] python-pyaes: rebuild for Python 3.8.

---
 srcpkgs/python-pyaes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyaes/template b/srcpkgs/python-pyaes/template
index a8c812a9e01..d31766d0481 100644
--- a/srcpkgs/python-pyaes/template
+++ b/srcpkgs/python-pyaes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyaes'
 pkgname=python-pyaes
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyaes-${version}"
 build_style=python-module

From 9e2b6fe7e7b67777d70eb25705c27d4ed6462a3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 402/872] python-pyasn1: rebuild for Python 3.8.

---
 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 510dfa09816..fcddad43633 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyasn1-${version}"
 build_style=python-module

From 712c6a81632d8741a302138a46ffd3b1c8fb079f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 403/872] python-pyasn1-modules: rebuild for Python 3.8.

---
 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 bc19e4940ed..b142819a272 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 989e8e1bc0a51f2fa1a88ec8f99eae20dd3e21ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 404/872] python3-pycares: rebuild for Python 3.8.

---
 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 c52702904b4..ed82808bada 100644
--- a/srcpkgs/python3-pycares/template
+++ b/srcpkgs/python3-pycares/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pycares'
 pkgname=python3-pycares
 version=2.3.0
-revision=2
+revision=3
 wrksrc="pycares-${version}"
 build_style=python3-module
 pycompile_module="pycares"

From 0885c6a30ff0765b465e0e4c84803b48b9090dc5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 405/872] python-pycodestyle: rebuild for Python 3.8.

---
 srcpkgs/python-pycodestyle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycodestyle/template b/srcpkgs/python-pycodestyle/template
index ca20d8e0c97..08bc8c8bec7 100644
--- a/srcpkgs/python-pycodestyle/template
+++ b/srcpkgs/python-pycodestyle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycodestyle'
 pkgname=python-pycodestyle
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycodestyle-${version}"
 build_style=python-module

From 61d0268320bb8306c2b2823a663588c885a01df6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 406/872] python-pycountry: rebuild for Python 3.8.

---
 srcpkgs/python-pycountry/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycountry/template b/srcpkgs/python-pycountry/template
index 88a0025f258..205db6240b7 100644
--- a/srcpkgs/python-pycountry/template
+++ b/srcpkgs/python-pycountry/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycountry'
 pkgname=python-pycountry
 version=18.12.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycountry-${version}"
 build_style=python-module

From e3a689e939cf482e09d50cf25b8f244cbec3dc12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 407/872] python-pycparser: rebuild for Python 3.8.

---
 srcpkgs/python-pycparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycparser/template b/srcpkgs/python-pycparser/template
index a521b3494ab..d2e83aa79b2 100644
--- a/srcpkgs/python-pycparser/template
+++ b/srcpkgs/python-pycparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycparser'
 pkgname=python-pycparser
 version=2.19
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycparser-${version}"
 build_style=python-module

From a86a5e2a75c91a868bf9b10f7ad9d86ca4df85d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 408/872] python-pycryptodome: rebuild for Python 3.8.

---
 srcpkgs/python-pycryptodome/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycryptodome/template b/srcpkgs/python-pycryptodome/template
index f01b5731c45..a4368d61b39 100644
--- a/srcpkgs/python-pycryptodome/template
+++ b/srcpkgs/python-pycryptodome/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycryptodome'
 pkgname=python-pycryptodome
 version=3.9.0
-revision=1
+revision=2
 wrksrc="pycryptodome-${version}"
 build_style=python-module
 pycompile_module="Crypto"

From 0cd2d63524942e2cfe5220436720dab24ef75308 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 409/872] python-pyelftools: rebuild for Python 3.8.

---
 srcpkgs/python-pyelftools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyelftools/template b/srcpkgs/python-pyelftools/template
index a6e9e9b644e..193650442fc 100644
--- a/srcpkgs/python-pyelftools/template
+++ b/srcpkgs/python-pyelftools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyelftools'
 pkgname=python-pyelftools
 version=0.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyelftools-${version}"
 build_style=python-module

From 61ae993767f544e608a601e6727e58b8c73400fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 410/872] python3-pyfiglet: rebuild for Python 3.8.

---
 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 d00b4fda62a..a4a67b12d42 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=1
+revision=2
 archs=noarch
 wrksrc="pyfiglet-${version}"
 build_style="python3-module"

From 7f5bd3a27f56badc9d95d3b2b7a684604262af1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 411/872] python-pyflakes: rebuild for Python 3.8.

---
 srcpkgs/python-pyflakes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyflakes/template b/srcpkgs/python-pyflakes/template
index 86d477c47f2..19229ebb3a4 100644
--- a/srcpkgs/python-pyflakes/template
+++ b/srcpkgs/python-pyflakes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyflakes'
 pkgname=python-pyflakes
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyflakes-${version}"
 build_style=python-module

From a811c56d34b1f53ac8aeca03f5247410137fe8d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 412/872] python-pygame: rebuild for Python 3.8.

---
 srcpkgs/python-pygame/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pygame/template b/srcpkgs/python-pygame/template
index a510333df6e..a900d62dbe3 100644
--- a/srcpkgs/python-pygame/template
+++ b/srcpkgs/python-pygame/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pygame'
 pkgname=python-pygame
 version=1.9.4
-revision=2
+revision=3
 wrksrc="pygame-${version}"
 build_style=python-module
 pycompile_module="pygame"

From e62822b2e5fa56868e80f10a019c7a0d66abbcbd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 413/872] python-pyglet: rebuild for Python 3.8.

---
 srcpkgs/python-pyglet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyglet/template b/srcpkgs/python-pyglet/template
index f8315bdf616..ee6ed16064c 100644
--- a/srcpkgs/python-pyglet/template
+++ b/srcpkgs/python-pyglet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyglet'
 pkgname=python-pyglet
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyglet-${version}"
 build_style=python-module

From 1f0bf2cea3a10c9982132fbe81c5ebd884defa35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 414/872] python3-pykeepass: rebuild for Python 3.8.

---
 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 c0e0fd4db41..135da6fea65 100644
--- a/srcpkgs/python3-pykeepass/template
+++ b/srcpkgs/python3-pykeepass/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pykeepass'
 pkgname=python3-pykeepass
 version=3.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="pykeepass-${version}"
 build_style=python3-module

From f2d7f9a6199d6780975ad9efb639642e96acc8c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 415/872] python3-pykwalify: rebuild for Python 3.8.

---
 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 27bc0c37355..b3727aba651 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pykwalify-${version}"
 build_style=python3-module

From cb348b8cc013bee10cb1adcdd5b9dac8e8f37a83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 416/872] python3-pylast: rebuild for Python 3.8.

---
 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 187b51943a8..60184348d80 100644
--- a/srcpkgs/python3-pylast/template
+++ b/srcpkgs/python3-pylast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylast'
 pkgname=python3-pylast
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylast-${version}"
 build_style=python3-module

From 6629ec0088134c22cfb115f29fd4a90a9b38e7a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 417/872] python3-pylibgen: rebuild for Python 3.8.

---
 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 641bf649c17..540ccb32790 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylibgen-${version}"
 build_style=python3-module

From 953751fa6deeafefea78df4f5ec27ee5c5c9902d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 418/872] python3-pylint: rebuild for Python 3.8.

---
 srcpkgs/python3-pylint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pylint/template b/srcpkgs/python3-pylint/template
index 6c8800069f0..315dbffb3fc 100644
--- a/srcpkgs/python3-pylint/template
+++ b/srcpkgs/python3-pylint/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylint'
 pkgname=python3-pylint
 version=2.3.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="pylint-${version}"
 build_style=python3-module

From 96bc4e17e1f144c3528e0ec3b455d501c2c3efdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 419/872] python-pynacl: rebuild for Python 3.8.

---
 srcpkgs/python-pynacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pynacl/template b/srcpkgs/python-pynacl/template
index 6ead91820b1..7a7fe246821 100644
--- a/srcpkgs/python-pynacl/template
+++ b/srcpkgs/python-pynacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pynacl'
 pkgname=python-pynacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python-module
 pycompile_module="nacl"

From ec1da9dfd353e059b23780a676ef1561f56f9b2e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 420/872] python-pyotp: rebuild for Python 3.8.

---
 srcpkgs/python-pyotp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyotp/template b/srcpkgs/python-pyotp/template
index 54714ee2ebb..b70bd73d4aa 100644
--- a/srcpkgs/python-pyotp/template
+++ b/srcpkgs/python-pyotp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyotp'
 pkgname=python-pyotp
 version=2.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyotp-${version}"
 build_style=python-module

From 3c83515599af94f7483a3e165f03547f9daa2835 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 421/872] python-pyperclip: rebuild for Python 3.8.

---
 srcpkgs/python-pyperclip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyperclip/template b/srcpkgs/python-pyperclip/template
index 512dc8d3dfb..b173f1479a5 100644
--- a/srcpkgs/python-pyperclip/template
+++ b/srcpkgs/python-pyperclip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyperclip'
 pkgname=python-pyperclip
 version=1.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=pyperclip-${version}
 build_style=python-module

From 6d17f7510d6ce4ec430e8bf72567fecdbd521681 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 422/872] python-pyqtgraph: rebuild for Python 3.8.

---
 srcpkgs/python-pyqtgraph/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyqtgraph/template b/srcpkgs/python-pyqtgraph/template
index f90e2b15319..1bea9c2ffdf 100644
--- a/srcpkgs/python-pyqtgraph/template
+++ b/srcpkgs/python-pyqtgraph/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyqtgraph'
 pkgname=python-pyqtgraph
 version=0.10.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${pkgname#*-}-${version}"
 build_style=python-module

From fff21c3dd38242e2992b276e00f6970f96a34293 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 423/872] python-pyrfc3339: rebuild for Python 3.8.

---
 srcpkgs/python-pyrfc3339/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyrfc3339/template b/srcpkgs/python-pyrfc3339/template
index 618e46d1c4b..cd81c4d0624 100644
--- a/srcpkgs/python-pyrfc3339/template
+++ b/srcpkgs/python-pyrfc3339/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyrfc3339'
 pkgname=python-pyrfc3339
 version=1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="pyrfc3339"

From bdfc6ef4d47bd373ff649510c96f640b48da738a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 424/872] python-pyscss: rebuild for Python 3.8.

---
 srcpkgs/python-pyscss/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyscss/template b/srcpkgs/python-pyscss/template
index 1f7d8b7d8cd..1a8e9c44d7d 100644
--- a/srcpkgs/python-pyscss/template
+++ b/srcpkgs/python-pyscss/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyscss'
 pkgname=python-pyscss
 version=1.3.5
-revision=6
+revision=7
 wrksrc="pyScss-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pcre-devel"

From 6bdfad32f6894df0a7f3eb185662fa32228408ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 425/872] python3-pysdl2: rebuild for Python 3.8.

---
 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 d59ea7d7fa2..3efdca5b667 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=1
+revision=2
 archs=noarch
 wrksrc="py-sdl2-rel_${version//./_}"
 build_style=python3-module

From 67dab081767478a600fbc44d5333dc2746a683ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 426/872] python-pyserial: rebuild for Python 3.8.

---
 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 8808e76d206..354be493b16 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=2
+revision=3
 archs=noarch
 wrksrc="pyserial-${version}"
 build_style=python-module

From a6914f6aa35af001fd954260658bed6e1e5df2bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 427/872] python3-pyside2: rebuild for Python 3.8.

---
 srcpkgs/python3-pyside2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pyside2/template b/srcpkgs/python3-pyside2/template
index a5d60b17568..1da3400f239 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.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From deee942f64ef5e0e70f6a45a7f9e3a2593d53add Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 428/872] python3-pysigset: rebuild for Python 3.8.

---
 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 8de87145a09..50d9162ea70 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.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysigset-${version}"
 build_style=python3-module

From 913752d5b84f0054c829fc060939c366bf5b28cb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 429/872] python-pysocks: rebuild for Python 3.8.

---
 srcpkgs/python-pysocks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysocks/template b/srcpkgs/python-pysocks/template
index 68a27819e3d..d9b216aeab8 100644
--- a/srcpkgs/python-pysocks/template
+++ b/srcpkgs/python-pysocks/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysocks'
 pkgname=python-pysocks
 version=1.6.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="PySocks-${version}"
 build_style=python-module

From e256b35c573b66ccaaffbf92ee92ecad250db3c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 430/872] python3-pysol_cards: rebuild for Python 3.8.

---
 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 e03d92fe077..a37429754a2 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.8.6
-revision=1
+revision=2
 wrksrc="pysol_cards-${version}"
 build_style=python3-module
 pycompile_module="pysol_cards"

From d29dab0ddee296649a1f4ace5c33678cc349d6ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 431/872] python-pysrt: rebuild for Python 3.8.

---
 srcpkgs/python-pysrt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysrt/template b/srcpkgs/python-pysrt/template
index 061435a52c7..7e154825bef 100644
--- a/srcpkgs/python-pysrt/template
+++ b/srcpkgs/python-pysrt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysrt'
 pkgname=python-pysrt
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysrt-${version}"
 build_style=python-module

From 4ba7eb802460f8e4e15f1389bebd64237c6f1aec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 432/872] python-pystache: rebuild for Python 3.8.

---
 srcpkgs/python-pystache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pystache/template b/srcpkgs/python-pystache/template
index 13f8b04aa88..c1a5bcd57d9 100644
--- a/srcpkgs/python-pystache/template
+++ b/srcpkgs/python-pystache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pystache'
 pkgname=python-pystache
 version=0.5.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pystache-${version}"
 build_style=python-module

From a6a1d8010f3909cc551f70485efc660b22168f46 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 433/872] python-pyte: rebuild for Python 3.8.

---
 srcpkgs/python-pyte/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyte/template b/srcpkgs/python-pyte/template
index 43b708adc66..76efbec91d1 100644
--- a/srcpkgs/python-pyte/template
+++ b/srcpkgs/python-pyte/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyte'
 pkgname=python-pyte
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyte-${version}"
 build_style=python-module

From 03679e357b0bdbd90ddbb6deba5693594ef9d592 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 434/872] python-pytest: rebuild for Python 3.8.

---
 srcpkgs/python-pytest/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest/template b/srcpkgs/python-pytest/template
index 6481f21e677..d5c246599c6 100644
--- a/srcpkgs/python-pytest/template
+++ b/srcpkgs/python-pytest/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest'
 pkgname=python-pytest
 version=3.7.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From d8ff8818fa4f90c63cf468feb2bba5d8b9dca026 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 435/872] python3-pytest-asyncio: rebuild for Python 3.8.

---
 srcpkgs/python3-pytest-asyncio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template
index bd104f99e2c..0c90d33a9e5 100644
--- a/srcpkgs/python3-pytest-asyncio/template
+++ b/srcpkgs/python3-pytest-asyncio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pytest-asyncio'
 pkgname=python3-pytest-asyncio
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytest-asyncio-${version}"
 build_style=python3-module

From 8bdff4905b1d2e832656b8dde532b566e516752c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 436/872] python-pytest-fixture-config: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-fixture-config/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-fixture-config/template b/srcpkgs/python-pytest-fixture-config/template
index cd3e38a592a..14255af8a35 100644
--- a/srcpkgs/python-pytest-fixture-config/template
+++ b/srcpkgs/python-pytest-fixture-config/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-fixture-config'
 pkgname=python-pytest-fixture-config
 version=1.3.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 89c93c6cebe4d9e57d61a6e1c0d1782514496073 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 437/872] python-pytest-mock: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-mock/template b/srcpkgs/python-pytest-mock/template
index f3dc85810b6..240e8773aaa 100644
--- a/srcpkgs/python-pytest-mock/template
+++ b/srcpkgs/python-pytest-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-mock'
 pkgname=python-pytest-mock
 version=1.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From e10ffc843814c368a7fd76e24e6afa8512ce198c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 438/872] python-pytz: rebuild for Python 3.8.

---
 srcpkgs/python-pytz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytz/template b/srcpkgs/python-pytz/template
index d6becf829a7..40f582962c8 100644
--- a/srcpkgs/python-pytz/template
+++ b/srcpkgs/python-pytz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytz'
 pkgname=python-pytz
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytz-${version}"
 build_style=python-module

From 562767d788b8e163bcde2dbd45de9eca2899bd90 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 439/872] python-pyudev: rebuild for Python 3.8.

---
 srcpkgs/python-pyudev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyudev/template b/srcpkgs/python-pyudev/template
index d059b7882a2..2ec53088636 100644
--- a/srcpkgs/python-pyudev/template
+++ b/srcpkgs/python-pyudev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyudev'
 pkgname=python-pyudev
 version=0.21.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyudev-${version}"
 build_style=python-module

From bb91a3d4616a0e9dbf1a34b271d62527a455f4ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 440/872] python3-pyx: rebuild for Python 3.8.

---
 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 87608c43428..89963bed89f 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.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="PyX-${version}"
 build_style=python3-module

From caa3ad83cde6d2b66687ae0ac2bb87dfd8eb100f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 441/872] python-pyzbar: rebuild for Python 3.8.

---
 srcpkgs/python-pyzbar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzbar/template b/srcpkgs/python-pyzbar/template
index 06ae37a5708..35b568eb4e6 100644
--- a/srcpkgs/python-pyzbar/template
+++ b/srcpkgs/python-pyzbar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzbar'
 pkgname=python-pyzbar
 version=0.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyzbar-${version}"
 build_style=python-module

From 83e0ba8fd12c3f07b4f3c2f8109ff0cd9a69353b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 442/872] python-pyzmq: rebuild for Python 3.8.

---
 srcpkgs/python-pyzmq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzmq/template b/srcpkgs/python-pyzmq/template
index 859aab5983d..27dbe29e516 100644
--- a/srcpkgs/python-pyzmq/template
+++ b/srcpkgs/python-pyzmq/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzmq'
 pkgname=python-pyzmq
 version=18.0.1
-revision=1
+revision=2
 wrksrc="pyzmq-${version}"
 build_style=python-module
 make_build_args="--zmq=${XBPS_CROSS_BASE}/usr"

From 2d71150f372801e322d8ee5f31b2bc67795fc3a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 443/872] python-qrcode: rebuild for Python 3.8.

---
 srcpkgs/python-qrcode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-qrcode/template b/srcpkgs/python-qrcode/template
index 9deb485855f..bf35c82757e 100644
--- a/srcpkgs/python-qrcode/template
+++ b/srcpkgs/python-qrcode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-qrcode'
 pkgname=python-qrcode
 version=6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="qrcode-${version}"
 build_style=python-module

From 55eeefa7bb378b38024ce5c57d228c5d2c24875f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 444/872] python-random2: rebuild for Python 3.8.

---
 srcpkgs/python-random2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-random2/template b/srcpkgs/python-random2/template
index 92f36fee139..2603cae3584 100644
--- a/srcpkgs/python-random2/template
+++ b/srcpkgs/python-random2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-random2'
 pkgname=python-random2
 version=1.0.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="random2-${version}"
 build_style=python-module

From 4aa520f994404a836b859a95bf53280ec662d779 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 445/872] python-rarfile: rebuild for Python 3.8.

---
 srcpkgs/python-rarfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rarfile/template b/srcpkgs/python-rarfile/template
index e0c597c1fb1..e3b6f3e2887 100644
--- a/srcpkgs/python-rarfile/template
+++ b/srcpkgs/python-rarfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rarfile'
 pkgname=python-rarfile
 version=3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="rarfile-${version}"
 build_style=python-module

From 77edc413dd0a2b7d7423d47946137d1db7452b91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 446/872] python-raven: rebuild for Python 3.8.

---
 srcpkgs/python-raven/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-raven/template b/srcpkgs/python-raven/template
index eec4e5f49b6..87382c21602 100644
--- a/srcpkgs/python-raven/template
+++ b/srcpkgs/python-raven/template
@@ -1,7 +1,7 @@
 # Template file for 'python-raven'
 pkgname=python-raven
 version=6.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="raven-${version}"
 build_style=python-module

From 0fd244bc29d49109b475295b68c11c496626bd43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 447/872] python-rdflib: rebuild for Python 3.8.

---
 srcpkgs/python-rdflib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rdflib/template b/srcpkgs/python-rdflib/template
index 0512abb0e5a..f676dedfb2f 100644
--- a/srcpkgs/python-rdflib/template
+++ b/srcpkgs/python-rdflib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rdflib'
 pkgname=python-rdflib
 version=4.2.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="rdflib-${version}"
 build_style=python-module

From 52682c54b0a7808306dcb6c0c9af5436d056d6a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 448/872] python-readability-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-readability-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-readability-lxml/template b/srcpkgs/python-readability-lxml/template
index ddf0602b730..19dadaa336f 100644
--- a/srcpkgs/python-readability-lxml/template
+++ b/srcpkgs/python-readability-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-readability-lxml'
 pkgname=python-readability-lxml
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="readability-lxml-${version}"
 build_style=python-module

From 5b239aeb5613465b0d414e14b8b37a83f65232fc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 449/872] python3-readlike: rebuild for Python 3.8.

---
 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 cbba969b076..43159962442 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=1
+revision=2
 archs=noarch
 wrksrc=readlike-${version}
 build_style=python3-module

From 10ff7da432e0f1563ed8c4feb921648f20e75246 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 450/872] python-rebulk: rebuild for Python 3.8.

---
 srcpkgs/python-rebulk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rebulk/template b/srcpkgs/python-rebulk/template
index 1cf6cf623c8..8f9c2621304 100644
--- a/srcpkgs/python-rebulk/template
+++ b/srcpkgs/python-rebulk/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rebulk'
 pkgname=python-rebulk
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rebulk-${version}"
 build_style=python-module

From b720f89f9fb6ecb79aa43ff92f151239049cb9c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 451/872] python-redis: rebuild for Python 3.8.

---
 srcpkgs/python-redis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-redis/template b/srcpkgs/python-redis/template
index f57c0d841b3..b7e773fde54 100644
--- a/srcpkgs/python-redis/template
+++ b/srcpkgs/python-redis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-redis'
 pkgname=python-redis
 version=2.10.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="redis-${version}"
 build_style=python-module

From 90d47f03a3f7a55f623c0b5019b0b58b6169aae5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 452/872] python-regex: rebuild for Python 3.8.

---
 srcpkgs/python-regex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-regex/template b/srcpkgs/python-regex/template
index 33e99b0127b..7a624db9477 100644
--- a/srcpkgs/python-regex/template
+++ b/srcpkgs/python-regex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-regex'
 pkgname=python-regex
 version=2019.08.19
-revision=1
+revision=2
 wrksrc="regex-${version}"
 build_style=python-module
 pycompile_module="_regex_core.py regex.py test_regex.py"

From e132fc559392a2f2a5268100218ef2061759c476 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 453/872] python-rencode: rebuild for Python 3.8.

---
 srcpkgs/python-rencode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rencode/template b/srcpkgs/python-rencode/template
index 7176038a60a..021e1d414b8 100644
--- a/srcpkgs/python-rencode/template
+++ b/srcpkgs/python-rencode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rencode'
 pkgname=python-rencode
 version=1.0.6
-revision=2
+revision=3
 wrksrc="rencode-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"

From 635743944483bd5fdbf4a909ef4874532f1035b9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 454/872] python-reportlab: rebuild for Python 3.8.

---
 srcpkgs/python-reportlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-reportlab/template b/srcpkgs/python-reportlab/template
index 7f153d65a2a..3915767b6d3 100644
--- a/srcpkgs/python-reportlab/template
+++ b/srcpkgs/python-reportlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-reportlab'
 pkgname=python-reportlab
 version=3.5.23
-revision=1
+revision=2
 wrksrc="reportlab-${version}"
 build_style=python-module
 pycompile_module="reportlab"

From 4a6d7b1e5e0d64a6834cc210da11806cbe217453 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 455/872] python-requests: rebuild for Python 3.8.

---
 srcpkgs/python-requests/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests/template b/srcpkgs/python-requests/template
index fc806b611e9..73d2d5945ef 100644
--- a/srcpkgs/python-requests/template
+++ b/srcpkgs/python-requests/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests'
 pkgname=python-requests
 version=2.22.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-${version}"
 build_style=python-module

From 61f6560b710773eab8296ef28bd943f5dc0d290d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 456/872] python-requests-mock: rebuild for Python 3.8.

---
 srcpkgs/python-requests-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-mock/template b/srcpkgs/python-requests-mock/template
index 5b89b5ed3b8..2d1410fcd1b 100644
--- a/srcpkgs/python-requests-mock/template
+++ b/srcpkgs/python-requests-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-mock'
 pkgname=python-requests-mock
 version=1.5.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="requests-mock-${version}"
 build_style=python-module

From f4f04d85ce7abb39fbbf306bc3c1dcfc467cdf14 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 457/872] python-requests-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-requests-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-oauthlib/template b/srcpkgs/python-requests-oauthlib/template
index b011ea17a36..8cd838090a7 100644
--- a/srcpkgs/python-requests-oauthlib/template
+++ b/srcpkgs/python-requests-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-oauthlib'
 pkgname=python-requests-oauthlib
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5853f21b57bde4c4e66293b132fba4fc03804518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 458/872] python-requests-toolbelt: rebuild for Python 3.8.

---
 srcpkgs/python-requests-toolbelt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-toolbelt/template b/srcpkgs/python-requests-toolbelt/template
index 3ba66a0a007..13a81586221 100644
--- a/srcpkgs/python-requests-toolbelt/template
+++ b/srcpkgs/python-requests-toolbelt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-toolbelt'
 pkgname=python-requests-toolbelt
 version=0.9.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 14171483829854051f0c8030562c1052094d78c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 459/872] python3-requests-unixsocket: rebuild for Python 3.8.

---
 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 ec9e1074566..fd389ec2d13 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-unixsocket-${version}"
 build_style=python3-module

From 9b589212b423bd7e2dfbb7ab7ef63c65b9dd07cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 460/872] python-rfc6555: rebuild for Python 3.8.

---
 srcpkgs/python-rfc6555/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rfc6555/template b/srcpkgs/python-rfc6555/template
index c3babc25b93..2522872cc32 100644
--- a/srcpkgs/python-rfc6555/template
+++ b/srcpkgs/python-rfc6555/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rfc6555'
 pkgname=python-rfc6555
 version=0.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rfc6555-${version}"
 build_style=python-module

From a399a96d8293a9387f5648001a03178d2550059b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 461/872] python-ripe-atlas-cousteau: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-cousteau/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-cousteau/template b/srcpkgs/python-ripe-atlas-cousteau/template
index ac16300fe3d..72f32a9da0d 100644
--- a/srcpkgs/python-ripe-atlas-cousteau/template
+++ b/srcpkgs/python-ripe-atlas-cousteau/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-cousteau'
 pkgname=python-ripe-atlas-cousteau
 version=1.4.2
-revision=1
+revision=2
 build_style=python-module
 archs=noarch
 pycompile_module="ripe/atlas/cousteau"

From 4c2ddc085f45f52b438013ad3d494f8f59859504 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 462/872] python-ripe-atlas-sagan: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-sagan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-sagan/template b/srcpkgs/python-ripe-atlas-sagan/template
index 60a9b883b93..22abb48af46 100644
--- a/srcpkgs/python-ripe-atlas-sagan/template
+++ b/srcpkgs/python-ripe-atlas-sagan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-sagan'
 pkgname=python-ripe-atlas-sagan
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ripe.atlas.sagan-${version}"
 build_style=python-module

From 10e7db3d51d8370e317d667edc372d0fcfd5bad9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 463/872] python-rsa: rebuild for Python 3.8.

---
 srcpkgs/python-rsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rsa/template b/srcpkgs/python-rsa/template
index a4ae59846ff..11e9bf2c60d 100644
--- a/srcpkgs/python-rsa/template
+++ b/srcpkgs/python-rsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rsa'
 pkgname=python-rsa
 version=4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a3bbda3918c5b4bb668860ba5bbd81f83f1a4925 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 464/872] python3-rsistent: rebuild for Python 3.8.

---
 srcpkgs/python3-rsistent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-rsistent/template b/srcpkgs/python3-rsistent/template
index 13019f472cd..7897e107b2b 100644
--- a/srcpkgs/python3-rsistent/template
+++ b/srcpkgs/python3-rsistent/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-rsistent'
 pkgname=python3-rsistent
 version=0.15.4
-revision=1
+revision=2
 wrksrc="pyrsistent-${version}"
 build_style=python3-module
 pycompile_module="pyrsistent"

From 7d4c9082b7051c6ce978ca21f34f138189c7f2d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 465/872] python3-rss2email: rebuild for Python 3.8.

---
 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 d07984d33d8..34e7d4e65a6 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.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="rss2email-${version}"
 build_style=python3-module

From a0a5e6df8a02d98f37c3c22c043adb325c8a8a62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 466/872] python-ruamel.yaml: rebuild for Python 3.8.

---
 srcpkgs/python-ruamel.yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ruamel.yaml/template b/srcpkgs/python-ruamel.yaml/template
index d86ddfc67c9..789f8a7acd2 100644
--- a/srcpkgs/python-ruamel.yaml/template
+++ b/srcpkgs/python-ruamel.yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ruamel.yaml'
 pkgname=python-ruamel.yaml
 version=0.15.92
-revision=1
+revision=2
 wrksrc="ruamel.yaml-${version}"
 build_style=python-module
 pycompile_module="ruamel/yaml"

From 6b579f083949bbd67a78d66ae983de1f36f03a82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 467/872] python3-s-tui: rebuild for Python 3.8.

---
 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 4c7db6ff3c9..85a945b1b09 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=0.8.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="s-tui-${version}"
 build_style=python3-module

From 5cc92799a690ba40dd26192e3f0182e07089683a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 468/872] python-s3transfer: rebuild for Python 3.8.

---
 srcpkgs/python-s3transfer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-s3transfer/template b/srcpkgs/python-s3transfer/template
index e306c3c3b1a..dd92eeff657 100644
--- a/srcpkgs/python-s3transfer/template
+++ b/srcpkgs/python-s3transfer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-s3transfer'
 pkgname=python-s3transfer
 version=0.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="s3transfer-${version}"
 build_style=python-module

From 2ec5386706a289e510b5b03e33cf74e0a23596a6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 469/872] python3-saml2: rebuild for Python 3.8.

---
 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 e94602a82ea..c0dabb5e9d0 100644
--- a/srcpkgs/python3-saml2/template
+++ b/srcpkgs/python3-saml2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-saml2'
 pkgname=python3-saml2
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysaml2-${version}"
 build_style=python3-module

From e856d28eb580f0af5442d11d24ffacdd7fade12b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 470/872] python-scandir: rebuild for Python 3.8.

---
 srcpkgs/python-scandir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scandir/template b/srcpkgs/python-scandir/template
index 774fac91b8f..b02fe6d0281 100644
--- a/srcpkgs/python-scandir/template
+++ b/srcpkgs/python-scandir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scandir'
 pkgname=python-scandir
 version=1.10.0
-revision=2
+revision=3
 wrksrc="scandir-${version}"
 build_style=python-module
 pycompile_module="scandir.py"

From 3b5e1eeb2ce0519b51592cebffc1bd89dce0f96c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 471/872] python3-scard: rebuild for Python 3.8.

---
 srcpkgs/python3-scard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scard/template b/srcpkgs/python3-scard/template
index 793f144a74b..279419ac3e3 100644
--- a/srcpkgs/python3-scard/template
+++ b/srcpkgs/python3-scard/template
@@ -2,7 +2,7 @@
 pkgname=python3-scard
 _pkgname=pyscard
 version=1.9.8
-revision=1
+revision=2
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module
 pycompile_module=smartcard

From f62ba61eaebce26c267e2d453d8e0ea6e005a285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 472/872] python3-scikit-learn: rebuild for Python 3.8.

---
 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 73799b9f420..8ac82167832 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.20.4
-revision=1
+revision=2
 wrksrc="scikit-learn-${version}"
 build_style=python3-module
 pycompile_module="sklearn"

From ccf4f6aa1bd0ba8aaf9499dcacb1320a77221004 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 473/872] python3-scipy: rebuild for Python 3.8.

---
 srcpkgs/python3-scipy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scipy/template b/srcpkgs/python3-scipy/template
index 291ac3734f1..2cef9ac33e1 100644
--- a/srcpkgs/python3-scipy/template
+++ b/srcpkgs/python3-scipy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-scipy'
 pkgname=python3-scipy
 version=1.3.1
-revision=1
+revision=2
 wrksrc="scipy-${version}"
 build_style=python3-module
 pycompile_module="scipy"

From 04cbe0c6403a4ecd9cda36e10bba5d06e472823d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 474/872] python-scour: rebuild for Python 3.8.

---
 srcpkgs/python-scour/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scour/template b/srcpkgs/python-scour/template
index b78cf37f057..0db5b157ce1 100644
--- a/srcpkgs/python-scour/template
+++ b/srcpkgs/python-scour/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scour'
 pkgname=python-scour
 version=0.37
-revision=1
+revision=2
 archs=noarch
 wrksrc="scour-${version}"
 build_style=python-module

From 0fd08871993ece59d562feb8472d05249ae1d76a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 475/872] python3-scruffy: rebuild for Python 3.8.

---
 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 e797b110f42..62a21a74eca 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="scruffy-${version}"
 build_style=python3-module

From 65cb259cf8f67f78fe484e4423fe0006aae17045 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 476/872] python-send2trash: rebuild for Python 3.8.

---
 srcpkgs/python-send2trash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-send2trash/template b/srcpkgs/python-send2trash/template
index 49c3a2b3d77..94f56545695 100644
--- a/srcpkgs/python-send2trash/template
+++ b/srcpkgs/python-send2trash/template
@@ -1,7 +1,7 @@
 # Template file for 'python-send2trash'
 pkgname=python-send2trash
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="send2trash-${version}"
 build_style=python-module

From 04a4413d706d49df8a415b9714091b0e4bb0fdfa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 477/872] python-serpent: rebuild for Python 3.8.

---
 srcpkgs/python-serpent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-serpent/template b/srcpkgs/python-serpent/template
index b60d390c1ab..a40f0d44515 100644
--- a/srcpkgs/python-serpent/template
+++ b/srcpkgs/python-serpent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-serpent'
 pkgname=python-serpent
 version=1.28
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38131f811a874463c71c55408ef6e629166a5b8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 478/872] python-service_identity: rebuild for Python 3.8.

---
 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 eae084c858f..e21a1520a75 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=1
+revision=2
 archs=noarch
 wrksrc="service_identity-${version}"
 build_style=python-module

From 9a538d41d8b848da9da43cd5d6f80428b7208be8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 479/872] setconf: rebuild for Python 3.8.

---
 srcpkgs/setconf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/setconf/template b/srcpkgs/setconf/template
index a3d22376a5b..1911c558c77 100644
--- a/srcpkgs/setconf/template
+++ b/srcpkgs/setconf/template
@@ -1,7 +1,7 @@
 # Template file for 'setconf'
 pkgname=setconf
 version=0.7.6
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="setconf.py"

From aacff3894cc42a49ab1becc06f64f23197302443 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 480/872] python-setproctitle: rebuild for Python 3.8.

---
 srcpkgs/python-setproctitle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setproctitle/template b/srcpkgs/python-setproctitle/template
index d0d41ae888d..c47e3a9db53 100644
--- a/srcpkgs/python-setproctitle/template
+++ b/srcpkgs/python-setproctitle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setproctitle'
 pkgname=python-setproctitle
 version=1.1.10
-revision=5
+revision=6
 wrksrc="setproctitle-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e2b8c2ac8d355cdb0f221b80ab39e2ef92beb3e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 481/872] python-setuptools: rebuild for Python 3.8.

---
 srcpkgs/python-setuptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setuptools/template b/srcpkgs/python-setuptools/template
index 382a9b45bcd..a172f8e8e09 100644
--- a/srcpkgs/python-setuptools/template
+++ b/srcpkgs/python-setuptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setuptools'
 pkgname=python-setuptools
 version=41.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python-module

From 5feb793ba33633318f41644f84b5ffd5428e2d4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 482/872] python-sh: rebuild for Python 3.8.

---
 srcpkgs/python-sh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sh/template b/srcpkgs/python-sh/template
index 1826986b25c..76985dc1f01 100644
--- a/srcpkgs/python-sh/template
+++ b/srcpkgs/python-sh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sh'
 pkgname=python-sh
 version=1.12.14
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From f0cfe151eea6fcf86d1196385a1ac0057a65ab48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 483/872] python-shapely: rebuild for Python 3.8.

---
 srcpkgs/python-shapely/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-shapely/template b/srcpkgs/python-shapely/template
index 25cc875a02c..114726838f9 100644
--- a/srcpkgs/python-shapely/template
+++ b/srcpkgs/python-shapely/template
@@ -1,7 +1,7 @@
 # Template file for 'python-shapely'
 pkgname=python-shapely
 version=1.7a1
-revision=2
+revision=3
 wrksrc="Shapely-${version}"
 build_style=python-module
 pycompile_module="shapely"

From 0908618383925caf43243de8097dbf6491149f8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 484/872] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index d552ce8432d..1f9c8043b46 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=4
+revision=5
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From 14af86f199e28c6eae170b10c1c662bd0184b73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 485/872] shiboken2: rebuild for Python 3.8.

---
 srcpkgs/shiboken2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken2/template b/srcpkgs/shiboken2/template
index 394d9ba4f94..a08edf3f2a0 100644
--- a/srcpkgs/shiboken2/template
+++ b/srcpkgs/shiboken2/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken2'
 pkgname=shiboken2
 version=5.11.2
-revision=2
+revision=3
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From 9ea535c3baf70c69a2bbe07d057742af1877d648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 486/872] python3-shodan: rebuild for Python 3.8.

---
 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 858a0b921f8..033b5a269ff 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.19.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="shodan-python-${version}"
 build_style=python3-module

From 76805ea236fc7f4ecd5948a492413602efff91e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 487/872] python3-signedjson: rebuild for Python 3.8.

---
 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 6f6fb339fd2..d8f9b06b22f 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-signedjson-${version}"
 build_style=python3-module

From 12e9d209470a13cdd9063e5544ffd00c5952138e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 488/872] python-simplebayes: rebuild for Python 3.8.

---
 srcpkgs/python-simplebayes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplebayes/template b/srcpkgs/python-simplebayes/template
index e76b94ad549..6c95222fa7e 100644
--- a/srcpkgs/python-simplebayes/template
+++ b/srcpkgs/python-simplebayes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplebayes'
 pkgname=python-simplebayes
 version=1.5.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="simplebayes-${version}"
 build_style=python-module

From d1ad830144a3e370bbac6e82affb1d06805dfdbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 489/872] python-simplegeneric: rebuild for Python 3.8.

---
 srcpkgs/python-simplegeneric/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplegeneric/template b/srcpkgs/python-simplegeneric/template
index 3dc4e1dda94..f352387fa1f 100644
--- a/srcpkgs/python-simplegeneric/template
+++ b/srcpkgs/python-simplegeneric/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplegeneric'
 pkgname=python-simplegeneric
 version=0.8.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="simplegeneric-${version}"
 build_style=python-module

From f6d990c1a1436b305f8b5af6f58c1f6430d96dc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 490/872] python-simplejson: rebuild for Python 3.8.

---
 srcpkgs/python-simplejson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplejson/template b/srcpkgs/python-simplejson/template
index b453ae952ba..1b8523d0d46 100644
--- a/srcpkgs/python-simplejson/template
+++ b/srcpkgs/python-simplejson/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplejson'
 pkgname=python-simplejson
 version=3.16.1
-revision=2
+revision=3
 wrksrc="simplejson-${version}"
 build_style=python-module
 pycompile_module="simplejson"

From b6f0878a2894ffdd731251a64a26cb1ddf40038a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 491/872] sip: rebuild for Python 3.8.

---
 srcpkgs/sip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sip/template b/srcpkgs/sip/template
index 9d09b823bb6..0e8a81000b1 100644
--- a/srcpkgs/sip/template
+++ b/srcpkgs/sip/template
@@ -1,7 +1,7 @@
 # Template file for 'sip'
 pkgname=sip
 version=4.19.18
-revision=1
+revision=2
 wrksrc="sip-${version}"
 hostmakedepends="python-devel python3-devel"
 makedepends="${hostmakedepends}"

From 5f24e47fb2b044495bbf0ee108d18220ad3b3bd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 492/872] python-six: rebuild for Python 3.8.

---
 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 c6d91f5ece9..a25323caa2a 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.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="six-${version}"
 build_style=python-module

From 09784cf129c5a66b731964fcda119a53dd9dbb7b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 493/872] python3-slixmpp: rebuild for Python 3.8.

---
 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 db367c3d0ab..cbbde6f394b 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.4.2
-revision=1
+revision=2
 wrksrc="slixmpp-${version}"
 build_style=python3-module
 pycompile_module="slixmpp"

From 5e4eb88ccd16957dc33f6923ae3a72151385e9ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 494/872] python3-slugify: rebuild for Python 3.8.

---
 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 44d37f2aed7..012bb98f063 100644
--- a/srcpkgs/python3-slugify/template
+++ b/srcpkgs/python3-slugify/template
@@ -3,7 +3,7 @@ pkgname=python3-slugify
 # Please don't update. Only required by Transifx-client,
 # doesn't work with newer versions
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-slugify-${version}"
 build_style=python3-module

From 3673d2d0b57421bb69e3ed7407630c26169fab96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 495/872] python-smbc: rebuild for Python 3.8.

---
 srcpkgs/python-smbc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smbc/template b/srcpkgs/python-smbc/template
index abc745f8982..6a280139a25 100644
--- a/srcpkgs/python-smbc/template
+++ b/srcpkgs/python-smbc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smbc'
 pkgname=python-smbc
 version=1.0.16
-revision=1
+revision=2
 wrksrc="pysmbc-${version}"
 build_style=python-module
 pycompile_module="smbc"

From 2e7eca88dff9a562419fb01bfafbdaf55a6c2bd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 496/872] python-smmap: rebuild for Python 3.8.

---
 srcpkgs/python-smmap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smmap/template b/srcpkgs/python-smmap/template
index 4aa0c37ff40..8c8ea952285 100644
--- a/srcpkgs/python-smmap/template
+++ b/srcpkgs/python-smmap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smmap'
 pkgname=python-smmap
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="smmap-${version}"
 build_style=python-module

From fd787d6092a892885c1a37ff836d919c3268746b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 497/872] python-snakeoil: rebuild for Python 3.8.

---
 srcpkgs/python-snakeoil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snakeoil/template b/srcpkgs/python-snakeoil/template
index 9c98461c555..79e964d9254 100644
--- a/srcpkgs/python-snakeoil/template
+++ b/srcpkgs/python-snakeoil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snakeoil'
 pkgname=python-snakeoil
 version=0.7.5
-revision=2
+revision=3
 wrksrc="snakeoil-${version}"
 build_style=python-module
 pycompile_module="snakeoil"

From c023c48bda41f4e9b16718923037b0abc4c9cc57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 498/872] python-snappy: rebuild for Python 3.8.

---
 srcpkgs/python-snappy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snappy/template b/srcpkgs/python-snappy/template
index ac386f64fae..b1870cbe681 100644
--- a/srcpkgs/python-snappy/template
+++ b/srcpkgs/python-snappy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snappy'
 pkgname=python-snappy
 version=0.5.4
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="snappy"
 hostmakedepends="python-setuptools python3-setuptools"

From cf3b5c203b490e3aa45e74d0cef8b0d0c4d9cbd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 499/872] python-snowballstemmer: rebuild for Python 3.8.

---
 srcpkgs/python-snowballstemmer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snowballstemmer/template b/srcpkgs/python-snowballstemmer/template
index 6c21632cffa..221478860e5 100644
--- a/srcpkgs/python-snowballstemmer/template
+++ b/srcpkgs/python-snowballstemmer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snowballstemmer'
 pkgname=python-snowballstemmer
 version=1.2.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="snowballstemmer-${version}"
 build_style=python-module

From ebbd083848ced4227417bedacb81db1e46b3b0d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 500/872] python-socketIO-client: rebuild for Python 3.8.

---
 srcpkgs/python-socketIO-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-socketIO-client/template b/srcpkgs/python-socketIO-client/template
index 32fdac4117d..9495d7cf40b 100644
--- a/srcpkgs/python-socketIO-client/template
+++ b/srcpkgs/python-socketIO-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-socketIO-client'
 pkgname=python-socketIO-client
 version=0.7.2
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="socketIO_client"

From bf4912c1b4d342f253c99ee2ff30408cc72ef150 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 501/872] python3-sortedcontainers: rebuild for Python 3.8.

---
 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 2b531ded9b6..41d87d4ebd0 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.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="sortedcontainers-${version}"
 build_style=python3-module

From d111b9221a51cf160ffadb598d8ab186bac3562f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 502/872] python-soupsieve: rebuild for Python 3.8.

---
 srcpkgs/python-soupsieve/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-soupsieve/template b/srcpkgs/python-soupsieve/template
index 586553ca759..63b65c5910f 100644
--- a/srcpkgs/python-soupsieve/template
+++ b/srcpkgs/python-soupsieve/template
@@ -1,7 +1,7 @@
 # Template file for 'python-soupsieve'
 pkgname=python-soupsieve
 version=1.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="soupsieve-${version}"
 build_style=python-module

From 505955408532e39107891c66bb40c986d8a5da3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 503/872] python3-spake2: rebuild for Python 3.8.

---
 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 ff83afed1d6..dc0cdced747 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=1
+revision=2
 archs=noarch
 wrksrc="python-spake2-${version}"
 build_style=python3-module

From ed28cd6c33b5a607891182e27d4edc4b33e42c75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 504/872] python-sphinx_rtd_theme: rebuild for Python 3.8.

---
 srcpkgs/python-sphinx_rtd_theme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinx_rtd_theme/template b/srcpkgs/python-sphinx_rtd_theme/template
index 90def1c9d1d..ebd4f13da8f 100644
--- a/srcpkgs/python-sphinx_rtd_theme/template
+++ b/srcpkgs/python-sphinx_rtd_theme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinx_rtd_theme'
 pkgname=python-sphinx_rtd_theme
 version=0.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinx_rtd_theme-${version}"
 build_style=python-module

From dc5c184f3eb8653ed7620ead5c8c28a67daed07d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 505/872] python-sphinxcontrib: rebuild for Python 3.8.

---
 srcpkgs/python-sphinxcontrib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib/template b/srcpkgs/python-sphinxcontrib/template
index ce3befc56d7..c6789cc77f5 100644
--- a/srcpkgs/python-sphinxcontrib/template
+++ b/srcpkgs/python-sphinxcontrib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib'
 pkgname=python-sphinxcontrib
 version=1.0
-revision=2
+revision=3
 archs=noarch
 create_wrksrc=yes
 pycompile_module="sphinxcontrib"

From 044129ada15eeb9695b554976702e8af049dcfd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 506/872] python-sphinxcontrib-websupport: rebuild for Python
 3.8.

---
 srcpkgs/python-sphinxcontrib-websupport/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib-websupport/template b/srcpkgs/python-sphinxcontrib-websupport/template
index 2236e50b25b..5387dec6519 100644
--- a/srcpkgs/python-sphinxcontrib-websupport/template
+++ b/srcpkgs/python-sphinxcontrib-websupport/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib-websupport'
 pkgname=python-sphinxcontrib-websupport
 version=1.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinxcontrib-websupport-${version}"
 build_style=python-module

From d4fb3b78447ca7349e0a94033b436c3e0caa5dc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 507/872] python-sqlalchemy-migrate: rebuild for Python 3.8.

---
 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 cfdf6166695..bb002660c0f 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=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 863a48d9543b2461c699350ad32bb2ae925e30c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 508/872] python-sqlparse: rebuild for Python 3.8.

---
 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 29a477db392..0f8c6f8ea2e 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=1
+revision=2
 archs=noarch
 wrksrc="sqlparse-${version}"
 build_style=python-module

From b477355bf26b723b8ab7cab61902be1e4aaee7bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 509/872] python-stem: rebuild for Python 3.8.

---
 srcpkgs/python-stem/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index e04ae0a848c..e16e79d84bb 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stem'
 pkgname=python-stem
 version=1.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stem-${version/b/}"
 build_style=python-module

From 82d435bdfc12ea7b4a3dabd17da5113470bffe26 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 510/872] python-stevedore: rebuild for Python 3.8.

---
 srcpkgs/python-stevedore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stevedore/template b/srcpkgs/python-stevedore/template
index 281538211af..4f781304d3f 100644
--- a/srcpkgs/python-stevedore/template
+++ b/srcpkgs/python-stevedore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stevedore'
 pkgname=python-stevedore
 version=1.30.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stevedore-${version}"
 build_style=python-module

From 2afe8f7a4ce71437484d9258f44ead34ae2f6647 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 511/872] python-stormssh: rebuild for Python 3.8.

---
 srcpkgs/python-stormssh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stormssh/template b/srcpkgs/python-stormssh/template
index 250e838e582..11f63f67bba 100644
--- a/srcpkgs/python-stormssh/template
+++ b/srcpkgs/python-stormssh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stormssh'
 pkgname=python-stormssh
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=storm-${version}
 build_style=python-module

From 754addaa6845cd505b5d744fa4e54a66dba9c4ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 512/872] python-subliminal: rebuild for Python 3.8.

---
 srcpkgs/python-subliminal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-subliminal/template b/srcpkgs/python-subliminal/template
index 035ca844880..216c11bb4c0 100644
--- a/srcpkgs/python-subliminal/template
+++ b/srcpkgs/python-subliminal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-subliminal'
 pkgname=python-subliminal
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="subliminal-${version}"
 build_style=python-module

From da488d7b04fb3b00046be4293c33ae0809dad8e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 513/872] python-sympy: rebuild for Python 3.8.

---
 srcpkgs/python-sympy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sympy/template b/srcpkgs/python-sympy/template
index 21d8cf69840..d41c8a392b0 100644
--- a/srcpkgs/python-sympy/template
+++ b/srcpkgs/python-sympy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sympy'
 pkgname=python-sympy
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="sympy-${version}"
 build_style=python-module

From 78857098e3058d7f0df7ece8be24b84196d16921 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 514/872] python-tables: rebuild for Python 3.8.

---
 srcpkgs/python-tables/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tables/template b/srcpkgs/python-tables/template
index 644ae3d1a35..5f61fe8fb88 100644
--- a/srcpkgs/python-tables/template
+++ b/srcpkgs/python-tables/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tables'
 pkgname=python-tables
 version=3.5.2
-revision=1
+revision=2
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="tables"

From 45955cd565bccabbc642dce6684af05ad7651ba5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 515/872] python3-tabulate: rebuild for Python 3.8.

---
 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 19b61edd88c..6f142077300 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="tabulate-${version}"
 build_style=python3-module

From 285f369cadcf0d14f66db8045bb3fb979e69937f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 516/872] python-tempita: rebuild for Python 3.8.

---
 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 9e7123fbd9d..c1c75ee1cac 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=3
+revision=4
 archs=noarch
 wrksrc="Tempita-${version}"
 build_style=python-module

From efa04f85df83993e48813e00587c05cd6c722387 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 517/872] python-tempora: rebuild for Python 3.8.

---
 srcpkgs/python-tempora/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tempora/template b/srcpkgs/python-tempora/template
index fa1cbd4fbd1..866d163f367 100644
--- a/srcpkgs/python-tempora/template
+++ b/srcpkgs/python-tempora/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tempora'
 pkgname=python-tempora
 version=1.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tempora-${version}"
 build_style=python-module

From 783b09196fc04d62a7e7a220ffffc941acedfeeb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 518/872] python-termcolor: rebuild for Python 3.8.

---
 srcpkgs/python-termcolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-termcolor/template b/srcpkgs/python-termcolor/template
index 877e5e59d9b..73c18fc79eb 100644
--- a/srcpkgs/python-termcolor/template
+++ b/srcpkgs/python-termcolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-termcolor'
 pkgname=python-termcolor
 version=1.1.0
-revision=5
+revision=6
 archs=noarch
 wrksrc="termcolor-${version}"
 build_style=python-module

From 469ef1b462bbb9fb2d5d97b38e357b662f5009d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 519/872] python-terminado: rebuild for Python 3.8.

---
 srcpkgs/python-terminado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-terminado/template b/srcpkgs/python-terminado/template
index cdfe6163991..d649364d88d 100644
--- a/srcpkgs/python-terminado/template
+++ b/srcpkgs/python-terminado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-terminado'
 pkgname=python-terminado
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="terminado-${version}"
 build_style=python-module

From ced3b80cce126ab9d23dd2a4bc9505e23b5a4888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 520/872] python3-terminaltables: rebuild for Python 3.8.

---
 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 60ada7ffcb6..4f781eab76d 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=1
+revision=2
 archs=noarch
 wrksrc="terminaltables-${version}"
 build_style=python3-module

From 7a90fec1dbe0347ede0762e747d8edf378bd497c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 521/872] python-testpath: rebuild for Python 3.8.

---
 srcpkgs/python-testpath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-testpath/template b/srcpkgs/python-testpath/template
index bac7270fd40..abfc59900c0 100644
--- a/srcpkgs/python-testpath/template
+++ b/srcpkgs/python-testpath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-testpath'
 pkgname=python-testpath
 version=0.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="testpath-${version}"
 build_style=python-module

From f8761f2f7116f9b2691807d35d9836a34fbbbf32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 522/872] python3-text-unidecode: rebuild for Python 3.8.

---
 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 77163d9e0b6..b3b5aa95575 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="text-unidecode-${version}"
 build_style=python3-module

From 2d2f99664b0644e22e4876b9d54048008a392289 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 523/872] python-texttable: rebuild for Python 3.8.

---
 srcpkgs/python-texttable/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-texttable/template b/srcpkgs/python-texttable/template
index a9c5ec66db1..24bac87af6a 100644
--- a/srcpkgs/python-texttable/template
+++ b/srcpkgs/python-texttable/template
@@ -1,7 +1,7 @@
 # Template file for 'python-texttable'
 pkgname=python-texttable
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="texttable-${version}"
 build_style=python-module

From c671c144e8fe81895f6995347d19725f72165b25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 524/872] python3-tinycss: rebuild for Python 3.8.

---
 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 91fda6f808d..3b4717c234e 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=1
+revision=2
 archs=noarch
 wrksrc=tinycss-${version}
 build_style=python3-module

From 9aa3e8105128dc5e3b86a83bd0ae76e7d9c9cf86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 525/872] python-tmuxp: rebuild for Python 3.8.

---
 srcpkgs/python-tmuxp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tmuxp/template b/srcpkgs/python-tmuxp/template
index 00c86730cbe..45b4a9772b2 100644
--- a/srcpkgs/python-tmuxp/template
+++ b/srcpkgs/python-tmuxp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tmuxp'
 pkgname=python-tmuxp
 version=1.5.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="tmuxp-${version}"
 build_style=python-module

From 995158f34c29d704b44eae2b32df801023781096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 526/872] python-toml: rebuild for Python 3.8.

---
 srcpkgs/python-toml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-toml/template b/srcpkgs/python-toml/template
index 0eee1b0b2c3..2fd6eaa0cea 100644
--- a/srcpkgs/python-toml/template
+++ b/srcpkgs/python-toml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-toml'
 pkgname=python-toml
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="toml-${version}"
 build_style=python-module

From 6270afd962719dd0e9b876b40ab7bf9be9936cf5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 527/872] python-tornado: rebuild for Python 3.8.

---
 srcpkgs/python-tornado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tornado/template b/srcpkgs/python-tornado/template
index 7e5700177f5..bd558d251f5 100644
--- a/srcpkgs/python-tornado/template
+++ b/srcpkgs/python-tornado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tornado'
 pkgname=python-tornado
 version=5.1.1
-revision=1
+revision=2
 wrksrc="tornado-${version}"
 build_style=python-module
 pycompile_module="tornado"

From cd9e416288ae101465f91c75453326fdead7d148 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 528/872] python-tqdm: rebuild for Python 3.8.

---
 srcpkgs/python-tqdm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tqdm/template b/srcpkgs/python-tqdm/template
index 69369bfd6b9..ef1f07127ad 100644
--- a/srcpkgs/python-tqdm/template
+++ b/srcpkgs/python-tqdm/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tqdm'
 pkgname=python-tqdm
 version=4.36.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tqdm-${version}"
 build_style=python-module

From 4ef8d34c3ab05cf43591d92220fc001007644a6d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 529/872] python-traitlets: rebuild for Python 3.8.

---
 srcpkgs/python-traitlets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-traitlets/template b/srcpkgs/python-traitlets/template
index d2d1b85edb6..797dd0268da 100644
--- a/srcpkgs/python-traitlets/template
+++ b/srcpkgs/python-traitlets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-traitlets'
 pkgname=python-traitlets
 version=4.3.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="traitlets-${version}"
 build_style=python-module

From f41edcb16535bb92b415439644ee01a61da14478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 530/872] python3-transifex-client: rebuild for Python 3.8.

---
 srcpkgs/python3-transifex-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-transifex-client/template b/srcpkgs/python3-transifex-client/template
index 77ca15313e0..5ea767b5a7d 100644
--- a/srcpkgs/python3-transifex-client/template
+++ b/srcpkgs/python3-transifex-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-transifex-client'
 pkgname=python3-transifex-client
 version=0.13.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="transifex-client-${version}"
 build_style=python3-module

From d2c27a7fe61e206ccbf655146feec32e4b13cfc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 531/872] python3-treq: rebuild for Python 3.8.

---
 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 8f210d13489..e46e1e7e7a5 100644
--- a/srcpkgs/python3-treq/template
+++ b/srcpkgs/python3-treq/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-treq'
 pkgname=python3-treq
 version=18.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="treq-${version}"
 build_style=python3-module

From 26b5427ba0e26d8712ebe081a774396e3ea39d76 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 532/872] python-ttystatus: rebuild for Python 3.8.

---
 srcpkgs/python-ttystatus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ttystatus/template b/srcpkgs/python-ttystatus/template
index 9fbefad3461..43e87ddcdf0 100644
--- a/srcpkgs/python-ttystatus/template
+++ b/srcpkgs/python-ttystatus/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ttystatus'
 pkgname=python-ttystatus
 version=0.38
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="ttystatus"

From dbf349fac2110dc33ad6d676748e46240dec1fbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 533/872] python-twitter: rebuild for Python 3.8.

---
 srcpkgs/python-twitter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-twitter/template b/srcpkgs/python-twitter/template
index c299b28dedf..e5e7194078a 100644
--- a/srcpkgs/python-twitter/template
+++ b/srcpkgs/python-twitter/template
@@ -1,7 +1,7 @@
 # Template file for 'python-twitter'
 pkgname=python-twitter
 version=3.5
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="twitter"

From 58eab12e88f689c694ef474e09d2266b77b5bcc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 534/872] python3-txacme: rebuild for Python 3.8.

---
 srcpkgs/python3-txacme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-txacme/template b/srcpkgs/python3-txacme/template
index e6becf593e7..c678addda4d 100644
--- a/srcpkgs/python3-txacme/template
+++ b/srcpkgs/python3-txacme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txacme'
 pkgname=python3-txacme
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="txacme-${version}"
 build_style=python3-module

From a1a3464258c255e0b73cbdb47e0337d3b8af473e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 535/872] python3-txaio: rebuild for Python 3.8.

---
 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 fa13338cd30..8163f5c90fd 100644
--- a/srcpkgs/python3-txaio/template
+++ b/srcpkgs/python3-txaio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txaio'
 pkgname=python3-txaio
 version=18.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="txaio-${version}"
 build_style=python3-module

From 66d08c9f4945499ccd01b127d7ec1f8cfd468dd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 536/872] python3-txtorcon: rebuild for Python 3.8.

---
 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 3018a65e457..a10ab59c582 100644
--- a/srcpkgs/python3-txtorcon/template
+++ b/srcpkgs/python3-txtorcon/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txtorcon'
 pkgname=python3-txtorcon
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="txtorcon-${version}"
 build_style=python3-module

From f3bf9db3f8b699c67eebc7fa0278fca9de892d75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 537/872] python3-typed-ast: update to 1.4.0.

---
 srcpkgs/python3-typed-ast/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-typed-ast/template b/srcpkgs/python3-typed-ast/template
index ec5b5b9df11..b38f0fe065c 100644
--- a/srcpkgs/python3-typed-ast/template
+++ b/srcpkgs/python3-typed-ast/template
@@ -1,8 +1,8 @@
 # Template file for 'python3-typed-ast'
 pkgname=python3-typed-ast
-version=1.3.4
+version=1.4.0
 revision=1
-wrksrc="typed-ast-${version}"
+wrksrc="typed_ast-${version}"
 build_style=python3-module
 pycompile_module="typed_ast"
 hostmakedepends="python3-devel python3-setuptools"
@@ -11,6 +11,6 @@ short_desc="Ast module with type comment support"
 maintainer="whoami <whoami@systemli.org>"
 license="Apache-2.0"
 homepage="https://github.com/python/typed_ast"
-distfiles="${PYPI_SITE}/t/typed-ast/typed-ast-${version}.tar.gz"
-checksum=68c362848d9fb71d3c3e5f43c09974a0ae319144634e7a47db62f0f2a54a7fa7
+distfiles="${PYPI_SITE}/t/typed-ast/typed_ast-${version}.tar.gz"
+checksum=66480f95b8167c9c5c5c87f32cf437d585937970f3fc24386f313a4c97b44e34
 nocross="https://travis-ci.org/void-linux/void-packages/jobs/509366923#L1009"

From d977434aa35e2c6bc03c5db7514f5409eb21a2a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 538/872] python3-typing_extensions: rebuild for Python 3.8.

---
 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 ab96df4eb2d..605af46216d 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=3.6.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module

From d1368b489e196a385edf9b15df4da773505f8a5e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 539/872] python-tzlocal: rebuild for Python 3.8.

---
 srcpkgs/python-tzlocal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tzlocal/template b/srcpkgs/python-tzlocal/template
index 396eada3982..684d2a21b40 100644
--- a/srcpkgs/python-tzlocal/template
+++ b/srcpkgs/python-tzlocal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tzlocal'
 pkgname=python-tzlocal
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tzlocal-${version}"
 build_style=python-module

From 0ec72579de99edead05daf85e7cac5e0e2ab641b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 540/872] python-unittest-mixins: rebuild for Python 3.8.

---
 srcpkgs/python-unittest-mixins/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-unittest-mixins/template b/srcpkgs/python-unittest-mixins/template
index 6f7c7204112..2ff5c497523 100644
--- a/srcpkgs/python-unittest-mixins/template
+++ b/srcpkgs/python-unittest-mixins/template
@@ -1,7 +1,7 @@
 # Template file for 'python-unittest-mixins'
 pkgname=python-unittest-mixins
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From a5e3289470d7f0e25e09237aa9463d28817818c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 541/872] python3-unpaddedbase64: rebuild for Python 3.8.

---
 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 37df2c1d642..06a47db3b64 100644
--- a/srcpkgs/python3-unpaddedbase64/template
+++ b/srcpkgs/python3-unpaddedbase64/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-unpaddedbase64'
 pkgname=python3-unpaddedbase64
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-unpaddedbase64-${version}"
 build_style=python3-module

From 13043751d10b741546f419a7e9089a5b252fd5c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 542/872] python-urbandict: rebuild for Python 3.8.

---
 srcpkgs/python-urbandict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urbandict/template b/srcpkgs/python-urbandict/template
index ff09e963fa7..ed359c744be 100644
--- a/srcpkgs/python-urbandict/template
+++ b/srcpkgs/python-urbandict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urbandict'
 pkgname=python-urbandict
 version=0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="urbandict-${version}"
 build_style=python-module

From a15bf0893e7a65a070751099b3ddca9172b49912 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 543/872] python-uritemplate: rebuild for Python 3.8.

---
 srcpkgs/python-uritemplate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-uritemplate/template b/srcpkgs/python-uritemplate/template
index 7a530fee03b..cdcda419efe 100644
--- a/srcpkgs/python-uritemplate/template
+++ b/srcpkgs/python-uritemplate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-uritemplate'
 pkgname=python-uritemplate
 version=3.0.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 43c97a015ea83b2b0934ea864a84b324ec83f31a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 544/872] python3-urlgrabber: rebuild for Python 3.8.

---
 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 087087d5ed1..eef67c8e13c 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=1
+revision=2
 archs=noarch
 wrksrc="urlgrabber-${version}"
 build_style=python3-module

From 016dbcff2bb0c1709814f4da4fe214d551e3d4cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 545/872] python-urllib3: rebuild for Python 3.8.

---
 srcpkgs/python-urllib3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urllib3/template b/srcpkgs/python-urllib3/template
index 8056518c9c1..1ff21f7555d 100644
--- a/srcpkgs/python-urllib3/template
+++ b/srcpkgs/python-urllib3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urllib3'
 pkgname=python-urllib3
 version=1.25.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="urllib3-${version}"
 build_style=python-module

From 9629da352be38a0f14bcb680c7fc05dd1d1167f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 546/872] python-urwid: rebuild for Python 3.8.

---
 srcpkgs/python-urwid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwid/template b/srcpkgs/python-urwid/template
index ae6722b1135..7adf8b76b96 100644
--- a/srcpkgs/python-urwid/template
+++ b/srcpkgs/python-urwid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwid'
 pkgname=python-urwid
 version=2.0.1
-revision=2
+revision=3
 wrksrc="urwid-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"

From 4be978b1173afce93e7ff39f6e577059f4c7dd4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 547/872] python-urwidtrees: rebuild for Python 3.8.

---
 srcpkgs/python-urwidtrees/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwidtrees/template b/srcpkgs/python-urwidtrees/template
index be0e906addf..62d214489e2 100644
--- a/srcpkgs/python-urwidtrees/template
+++ b/srcpkgs/python-urwidtrees/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwidtrees'
 pkgname=python-urwidtrees
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="urwidtrees-${version}"
 build_style=python-module

From c9f3ad0ed793593060952aa365e888244dfd07e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 548/872] python3-usb: rebuild for Python 3.8.

---
 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 a081ee5ba76..d26c24df669 100644
--- a/srcpkgs/python3-usb/template
+++ b/srcpkgs/python3-usb/template
@@ -2,7 +2,7 @@
 pkgname=python3-usb
 _pkgname=pyusb
 version=1.0.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From 454ef49754696a81de599e7fa6cf9cab31ccbc31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 549/872] python-utils: rebuild for Python 3.8.

---
 srcpkgs/python-utils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-utils/template b/srcpkgs/python-utils/template
index e881e70c0f0..6745df121a6 100644
--- a/srcpkgs/python-utils/template
+++ b/srcpkgs/python-utils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-utils'
 pkgname=python-utils
 version=2.3.0
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 wrksrc="python-utils-${version}"

From eef5c75b93453defdcb8def5b34c20f20cda0fc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 550/872] python3-validators: rebuild for Python 3.8.

---
 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 29b9fc74c30..6d9da94c4bb 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.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="validators-${version}"
 build_style=python3-module

From 53ce0ff21de84f26405d0314002bb11e85903128 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 551/872] python3-vdf: rebuild for Python 3.8.

---
 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 44c635ecdd6..88bd521beaa 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.2
-revision=1
+revision=2
 wrksrc=vdf-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From f720d6ed8267fa4b27a7ce83dd3a265a18cd13b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 552/872] python-vint: rebuild for Python 3.8.

---
 srcpkgs/python-vint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vint/template b/srcpkgs/python-vint/template
index 4ca693f7eb2..62c663bf18e 100644
--- a/srcpkgs/python-vint/template
+++ b/srcpkgs/python-vint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vint'
 pkgname=python-vint
 version=0.3.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="vim-vint-${version}"
 build_style=python-module

From 573eadbcb861065b712050cf6e7fd200c33a73b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 553/872] python-virtualenv: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv/template b/srcpkgs/python-virtualenv/template
index 1f9166e79a2..cdeda28c53e 100644
--- a/srcpkgs/python-virtualenv/template
+++ b/srcpkgs/python-virtualenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv'
 pkgname=python-virtualenv
 version=16.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="virtualenv-${version}"
 build_style=python-module

From 25eda2949787b488dfc7cfc6512d02a4971d4f96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 554/872] python-virtualenv-clone: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv-clone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv-clone/template b/srcpkgs/python-virtualenv-clone/template
index 3c9f601bc6e..273b9ddf6d3 100644
--- a/srcpkgs/python-virtualenv-clone/template
+++ b/srcpkgs/python-virtualenv-clone/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv-clone'
 pkgname=python-virtualenv-clone
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5a922ea064a496fb01ff970e45a43ef51561b373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 555/872] python3-virustotal-api: rebuild for Python 3.8.

---
 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 2bc6592c91f..fc362c03b39 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=1
+revision=2
 archs=noarch
 wrksrc="virustotal-api-${version}"
 build_style=python3-module

From 65deaff01a3a9a5d82641fe121fdb2964b75346f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 556/872] python-vispy: rebuild for Python 3.8.

---
 srcpkgs/python-vispy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vispy/template b/srcpkgs/python-vispy/template
index b757e5a271f..624ade6f12b 100644
--- a/srcpkgs/python-vispy/template
+++ b/srcpkgs/python-vispy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vispy'
 pkgname=python-vispy
 version=0.6.1
-revision=1
+revision=2
 wrksrc="vispy-${version}"
 build_style=python-module
 pycompile_module="vispy"

From 5e47d846dedfdbef61bd10a33928ce13b600c648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 557/872] python-vobject: rebuild for Python 3.8.

---
 srcpkgs/python-vobject/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vobject/template b/srcpkgs/python-vobject/template
index 54f575aa1a1..2c1c215527c 100644
--- a/srcpkgs/python-vobject/template
+++ b/srcpkgs/python-vobject/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vobject'
 pkgname=python-vobject
 version=0.9.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="vobject-${version}"
 build_style=python-module

From 8125ffd3d4822ca6bf81508ed8b859e079cd9437 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 558/872] python-voluptuous: rebuild for Python 3.8.

---
 srcpkgs/python-voluptuous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-voluptuous/template b/srcpkgs/python-voluptuous/template
index fd44ae2e324..1dd5de27491 100644
--- a/srcpkgs/python-voluptuous/template
+++ b/srcpkgs/python-voluptuous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-voluptuous'
 pkgname=python-voluptuous
 version=0.11.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="voluptuous-${version}"
 build_style=python-module

From 608126ee8043f8d45a8e56608f99e0df6cc2ee9e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 559/872] python-watchdog: rebuild for Python 3.8.

---
 srcpkgs/python-watchdog/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchdog/template b/srcpkgs/python-watchdog/template
index f6027c3b5ca..2eea6397f00 100644
--- a/srcpkgs/python-watchdog/template
+++ b/srcpkgs/python-watchdog/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchdog'
 pkgname=python-watchdog
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="watchdog-${version}"
 build_style=python-module

From a54fc09b58f905a0ed5cd5892db67b7c4ea6ae9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 560/872] python-watchman: rebuild for Python 3.8.

---
 srcpkgs/python-watchman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchman/template b/srcpkgs/python-watchman/template
index 4c41c275ca2..97400668d64 100644
--- a/srcpkgs/python-watchman/template
+++ b/srcpkgs/python-watchman/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchman'
 pkgname=python-watchman
 version=1.4.1
-revision=2
+revision=3
 wrksrc="pywatchman-${version}"
 build_style=python-module
 pycompile_module="pywatchman"

From 4dd6084e6c30a25fb4ff3c44bf2c751eaab07715 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 561/872] python-wcwidth: rebuild for Python 3.8.

---
 srcpkgs/python-wcwidth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wcwidth/template b/srcpkgs/python-wcwidth/template
index 34bc22cbcb6..8ec6d17450c 100644
--- a/srcpkgs/python-wcwidth/template
+++ b/srcpkgs/python-wcwidth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wcwidth'
 pkgname=python-wcwidth
 version=0.1.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="wcwidth-${version}"
 build_style=python-module

From cafaf5868e58cb26c2cdd29d0d1b52f9cf1e31ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 562/872] python-webassets: rebuild for Python 3.8.

---
 srcpkgs/python-webassets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webassets/template b/srcpkgs/python-webassets/template
index 3ad5475bd17..789be9684f7 100644
--- a/srcpkgs/python-webassets/template
+++ b/srcpkgs/python-webassets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webassets'
 pkgname=python-webassets
 version=0.12.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 88d8fa4eb1ca72857d5a1cab8a4f7495a9af1595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 563/872] python-webencodings: rebuild for Python 3.8.

---
 srcpkgs/python-webencodings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webencodings/template b/srcpkgs/python-webencodings/template
index 5a05af10835..f047a9e3c52 100644
--- a/srcpkgs/python-webencodings/template
+++ b/srcpkgs/python-webencodings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webencodings'
 pkgname=python-webencodings
 version=0.5.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="webencodings-${version}"
 build_style=python-module

From 81c9d07c0e756cc87a6cd2c444c0b2f0987463da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 564/872] python-websocket-client: rebuild for Python 3.8.

---
 srcpkgs/python-websocket-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-websocket-client/template b/srcpkgs/python-websocket-client/template
index 8aa276655cb..3df8ab42b36 100644
--- a/srcpkgs/python-websocket-client/template
+++ b/srcpkgs/python-websocket-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-websocket-client'
 pkgname=python-websocket-client
 version=0.56.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="websocket_client-${version}"
 build_style=python-module

From 97fc927913b3f2682b7ddf73982008e9fdc1e42d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 565/872] python-wheel: rebuild for Python 3.8.

---
 srcpkgs/python-wheel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wheel/template b/srcpkgs/python-wheel/template
index 11c50bd65e6..11aeaf42316 100644
--- a/srcpkgs/python-wheel/template
+++ b/srcpkgs/python-wheel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wheel'
 pkgname=python-wheel
 version=0.32.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="wheel-${version}"
 build_style=python-module

From 861d20f2f112cd829f2f06f746680e2c034a812f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 566/872] python-wikipedia: rebuild for Python 3.8.

---
 srcpkgs/python-wikipedia/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wikipedia/template b/srcpkgs/python-wikipedia/template
index e6ebf65f7c2..f8a69755b74 100644
--- a/srcpkgs/python-wikipedia/template
+++ b/srcpkgs/python-wikipedia/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wikipedia'
 pkgname=python-wikipedia
 version=1.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="wikipedia-${version}"
 build_style=python-module

From c58e9b08de69bd19aa3bcf91ec42d1b626a2a6bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 567/872] python-wrapt: rebuild for Python 3.8.

---
 srcpkgs/python-wrapt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wrapt/template b/srcpkgs/python-wrapt/template
index a3a237aa08d..c2d2850bf5a 100644
--- a/srcpkgs/python-wrapt/template
+++ b/srcpkgs/python-wrapt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wrapt'
 pkgname=python-wrapt
 version=1.10.11
-revision=3
+revision=4
 wrksrc="wrapt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From f65cbaf6b92acb78d54d3b498924285bce64fb66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 568/872] python-wsproto: rebuild for Python 3.8.

---
 srcpkgs/python-wsproto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wsproto/template b/srcpkgs/python-wsproto/template
index 88b08f796d4..a93a799be0a 100644
--- a/srcpkgs/python-wsproto/template
+++ b/srcpkgs/python-wsproto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wsproto'
 pkgname=python-wsproto
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="wsproto-${version}"
 build_style=python-module

From 1b60fb796f8ac377a2e31dc0503df215c27fc59e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 569/872] python-xapp: rebuild for Python 3.8.

---
 srcpkgs/python-xapp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xapp/template b/srcpkgs/python-xapp/template
index 9b6938113f2..798041eb946 100644
--- a/srcpkgs/python-xapp/template
+++ b/srcpkgs/python-xapp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xapp'
 pkgname=python-xapp
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="xapp"

From 415bec8de0abe2772c407df9db650bd06ba122ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 570/872] python-xdg: rebuild for Python 3.8.

---
 srcpkgs/python-xdg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xdg/template b/srcpkgs/python-xdg/template
index afa6c180043..4e819c8bec7 100644
--- a/srcpkgs/python-xdg/template
+++ b/srcpkgs/python-xdg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xdg'
 pkgname=python-xdg
 version=0.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyxdg-${version}"
 build_style=python-module

From 4518feeb499caa6631ef29ead0439c5bcc67a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 571/872] python-xlib: rebuild for Python 3.8.

---
 srcpkgs/python-xlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xlib/template b/srcpkgs/python-xlib/template
index 1f97c4117d4..e67d1d82e73 100644
--- a/srcpkgs/python-xlib/template
+++ b/srcpkgs/python-xlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xlib'
 pkgname=python-xlib
 version=0.25
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="Xlib"

From 1cef928049b5216468e701acce714fc14d79694f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 572/872] python-xmldiff: rebuild for Python 3.8.

---
 srcpkgs/python-xmldiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmldiff/template b/srcpkgs/python-xmldiff/template
index a0a8004ea7b..4f3cc2d27b7 100644
--- a/srcpkgs/python-xmldiff/template
+++ b/srcpkgs/python-xmldiff/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmldiff'
 pkgname=python-xmldiff
 version=2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmldiff-${version}"
 build_style=python-module

From cefcbea2ec7904b0c1ad16ec32963bf430b27c4a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 573/872] python-xmltodict: rebuild for Python 3.8.

---
 srcpkgs/python-xmltodict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmltodict/template b/srcpkgs/python-xmltodict/template
index a48e6d46aa6..b3d7ef042e8 100644
--- a/srcpkgs/python-xmltodict/template
+++ b/srcpkgs/python-xmltodict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmltodict'
 pkgname=python-xmltodict
 version=0.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmltodict-${version}"
 build_style=python-module

From 889d5fe9fe9f1830bec336ac52bd8bd32f47f0a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 574/872] python-yaml: rebuild for Python 3.8.

---
 srcpkgs/python-yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yaml/template b/srcpkgs/python-yaml/template
index 8a7caf1d99e..e3bad0ae59b 100644
--- a/srcpkgs/python-yaml/template
+++ b/srcpkgs/python-yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yaml'
 pkgname=python-yaml
 version=5.1.2
-revision=1
+revision=2
 wrksrc="PyYAML-${version}"
 build_style=python-module
 pycompile_module="yaml"

From 1b3e89ca272ae28a62064bf83eaff84332307682 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 575/872] python-yamllint: rebuild for Python 3.8.

---
 srcpkgs/python-yamllint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yamllint/template b/srcpkgs/python-yamllint/template
index 1a05e1043bb..d0b51ba637a 100644
--- a/srcpkgs/python-yamllint/template
+++ b/srcpkgs/python-yamllint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yamllint'
 pkgname=python-yamllint
 version=1.15.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="yamllint-${version}"
 build_style=python-module

From b233bcb50542e39ba02899ef3d1b833e385204e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 576/872] python3-yarl: rebuild for Python 3.8.

---
 srcpkgs/python3-yarl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-yarl/template b/srcpkgs/python3-yarl/template
index 222f176cfcf..ecb79a3cc9c 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.3.0
-revision=2
+revision=3
 wrksrc="yarl-${version}"
 build_style=python3-module
 pycompile_module="yarl"

From 484c2559f18644c63342db467c703e2e998e89b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 577/872] python-zc.lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-zc.lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zc.lockfile/template b/srcpkgs/python-zc.lockfile/template
index cb0bee99506..b77071af04f 100644
--- a/srcpkgs/python-zc.lockfile/template
+++ b/srcpkgs/python-zc.lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zc.lockfile'
 pkgname=python-zc.lockfile
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 364e398c8dd7e3dd141ceb1c22626ecf2a5b9b32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 578/872] python3-zeroconf: rebuild for Python 3.8.

---
 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 497a8bc6b69..dda37bd3dc4 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.23.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-zeroconf-${version}"
 build_style=python3-module

From 22b5d6236d8f0ff0050135b2e77eca608519b1ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 579/872] python3-zipp: rebuild for Python 3.8.

---
 srcpkgs/python3-zipp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-zipp/template b/srcpkgs/python3-zipp/template
index 8445c10825c..ba682915beb 100644
--- a/srcpkgs/python3-zipp/template
+++ b/srcpkgs/python3-zipp/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-zipp'
 pkgname=python3-zipp
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="zipp-${version}"
 build_style=python3-module

From c5c37d6e890a553e458333e610ab56b1a5c9b516 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 580/872] python-zipstream: rebuild for Python 3.8.

---
 srcpkgs/python-zipstream/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zipstream/template b/srcpkgs/python-zipstream/template
index 89079e21b22..2c7390127ac 100644
--- a/srcpkgs/python-zipstream/template
+++ b/srcpkgs/python-zipstream/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zipstream'
 pkgname=python-zipstream
 version=1.1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="python-zipstream-${version}"
 build_style=python-module

From bc31e25a00839c9d3cc5ac70edf0485ee4b21d4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 581/872] python3-zope.cachedescriptors: rebuild for Python
 3.8.

---
 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 bdd5ef41e21..1f1fae5b27b 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.3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="zope.cachedescriptors-${version}"
 build_style=python3-module

From 40a63988f3c2db41391f0a7ab6cde24a9b79ed05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 582/872] python-zope.component: rebuild for Python 3.8.

---
 srcpkgs/python-zope.component/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.component/template b/srcpkgs/python-zope.component/template
index 7cea5b9d71d..66ef109a4aa 100644
--- a/srcpkgs/python-zope.component/template
+++ b/srcpkgs/python-zope.component/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.component'
 pkgname=python-zope.component
 version=4.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 799496c35db93c88e6d00e4b41eeca8b4af5b188 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 583/872] python-zope.event: rebuild for Python 3.8.

---
 srcpkgs/python-zope.event/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.event/template b/srcpkgs/python-zope.event/template
index 3c7fb8dfd6e..6518cb4529b 100644
--- a/srcpkgs/python-zope.event/template
+++ b/srcpkgs/python-zope.event/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.event'
 pkgname=python-zope.event
 version=4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d77b16ecad39877131af8a9c01ea925b33737b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 584/872] python-zope.interface: rebuild for Python 3.8.

---
 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 d3c57be85f7..1dbcbecd377 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=4.6.0
-revision=2
+revision=3
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="zope"

From e5cb80612a71c54facf607c52c7a385badeba668 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 585/872] python3-pivy: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-pivy/patches/73cd928f.patch | 36 +++++++++++++++++++++
 srcpkgs/python3-pivy/template               |  2 +-
 2 files changed, 37 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/python3-pivy/patches/73cd928f.patch

diff --git a/srcpkgs/python3-pivy/patches/73cd928f.patch b/srcpkgs/python3-pivy/patches/73cd928f.patch
new file mode 100644
index 00000000000..edff803822a
--- /dev/null
+++ b/srcpkgs/python3-pivy/patches/73cd928f.patch
@@ -0,0 +1,36 @@
+From 73cd928fe1a9c2abbe6f28844a7fc695ad11d7cf Mon Sep 17 00:00:00 2001
+From: Peter Lama <peterldev94@gmail.com>
+Date: Fri, 24 Aug 2018 17:25:47 -0700
+Subject: [PATCH] Fix issue #39: PyUnicode_AsUTF8 returns const char*
+
+Even with python 2, it doesn't seem like char* is needed
+
+--- Inventor/nodes/SoMarkerSet.i
++++ Inventor/nodes/SoMarkerSet.i
+@@ -5,7 +5,7 @@
+         short WIDTH, HEIGHT;
+         size.getValue(WIDTH, HEIGHT);
+         short BYTEWIDTH = (WIDTH + 7) / 2;
+-        char* coin_marker;
++        const char* coin_marker;
+ #ifdef PY_2
+         if (PyString_Check(string))
+         {
+@@ -49,4 +49,4 @@
+         delete[] bitmapbytes;
+         bitmapbytes = NULL;
+     }
+-}
+\ No newline at end of file
++}
+--- Inventor/sensors/SoSensor.i
++++ Inventor/sensors/SoSensor.i
+@@ -4,7 +4,7 @@ SoSensorPythonCB(void * data, SoSensor * sensor)
+ {
+   PyGILState_STATE gil = PyGILState_Ensure();
+   swig_type_info * swig_type = 0;
+-  char * sensor_cast_name = NULL;
++  const char * sensor_cast_name = NULL;
+   PyObject * func, * arglist;
+   PyObject * result, * pysensor;
+ 
diff --git a/srcpkgs/python3-pivy/template b/srcpkgs/python3-pivy/template
index 4a733e805e3..9caa13837e2 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.4
-revision=1
+revision=2
 wrksrc="Coin3D-${pkgname#python3-}-a84100beff22"
 build_style=python3-module
 pycompile_module="pivy"

From 7d8cfe1721327d4b8695c6abc56d012b27989c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 586/872] python-tweepy: update to 3.8.0.

---
 srcpkgs/python-tweepy/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python-tweepy/template b/srcpkgs/python-tweepy/template
index ef61039dac5..4605bbf83ea 100644
--- a/srcpkgs/python-tweepy/template
+++ b/srcpkgs/python-tweepy/template
@@ -1,6 +1,6 @@
 # Template file for 'python-tweepy'
 pkgname=python-tweepy
-version=3.7.0
+version=3.8.0
 revision=1
 archs=noarch
 wrksrc="tweepy-${version}"
@@ -14,8 +14,8 @@ license="MIT"
 homepage="https://github.com/tweepy/tweepy"
 distfiles="${PYPI_SITE}/t/tweepy/tweepy-${version}.tar.gz
  https://raw.githubusercontent.com/tweepy/tweepy/master/LICENSE>LICENSE.txt"
-checksum="fe85a79f58a01dd335968523b91c5fce760e7fe78bf25a6e71c72204fe499d0b
- deeeae0dcc22dbf108a801b8dc4e484bcc1bfb541b1a4f4615ab3e61def44fb5"
+checksum="8abd828ba51a85a2b5bb7373715d6d3bb32d18ac624e3a4db02e4ef8ab48316b
+ bf9bc5b9dcb8421bb3c342bb7fd29194688e1262b50766bd71b21a07461e74b7"
 
 post_install() {
 	vlicense ../LICENSE.txt

From 5f654f2f6a7eca9a50adb53af9037466723dd82c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 587/872] Electron-Cash: rebuild for Python 3.8.

---
 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 2db05c94832..08670c5f08d 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.0.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electroncash electroncash_gui electroncash_plugins"

From 931f125f8699e33cb16c8ed43a5e910d0056db6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 588/872] OpenLP: rebuild for Python 3.8.

---
 srcpkgs/OpenLP/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/OpenLP/template b/srcpkgs/OpenLP/template
index fb417f8d05e..ccae6d0282e 100644
--- a/srcpkgs/OpenLP/template
+++ b/srcpkgs/OpenLP/template
@@ -1,7 +1,7 @@
 # Template file for 'OpenLP'
 pkgname=OpenLP
 version=2.4.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="openlp"

From 21b02367e81c8635c88830fd008c0ba44ffcccff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 589/872] PhotoCollage: rebuild for Python 3.8.

---
 srcpkgs/PhotoCollage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/PhotoCollage/template b/srcpkgs/PhotoCollage/template
index 2c55ca87ce0..9997d1e7d98 100644
--- a/srcpkgs/PhotoCollage/template
+++ b/srcpkgs/PhotoCollage/template
@@ -1,7 +1,7 @@
 # Template file for 'PhotoCollage'
 pkgname=PhotoCollage
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="photocollage"

From 49dffe4070ca7dff3c38379b8df9d9b0d04395ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 590/872] ReText: rebuild for Python 3.8.

---
 srcpkgs/ReText/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ReText/template b/srcpkgs/ReText/template
index cc092ee6a36..a6551fbdf7c 100644
--- a/srcpkgs/ReText/template
+++ b/srcpkgs/ReText/template
@@ -1,7 +1,7 @@
 # Template file for 'ReText'
 pkgname=ReText
 version=7.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ReText"

From 225e30aaea5daebb0d4fc36c6d73424ad6fb1ec5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 591/872] SoapySDR: rebuild for Python 3.8.

---
 srcpkgs/SoapySDR/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/SoapySDR/template b/srcpkgs/SoapySDR/template
index 1bb66ce0689..bcfe45dc78a 100644
--- a/srcpkgs/SoapySDR/template
+++ b/srcpkgs/SoapySDR/template
@@ -1,7 +1,7 @@
 # Template file for 'SoapySDR'
 pkgname=SoapySDR
 version=0.7.1
-revision=1
+revision=2
 wrksrc="${pkgname}-soapy-sdr-${version}"
 build_style=cmake
 pycompile_module="SoapySDR.py"

From 2e64750e75e61296567ebb0053c46081cbab8e13 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 592/872] Solaar: rebuild for Python 3.8.

---
 srcpkgs/Solaar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Solaar/template b/srcpkgs/Solaar/template
index 2e8f4112e0e..86cab83d497 100644
--- a/srcpkgs/Solaar/template
+++ b/srcpkgs/Solaar/template
@@ -1,7 +1,7 @@
 # Template file for 'Solaar'
 pkgname=Solaar
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="hidapi logitech_receiver solaar"

From 21eb59c332d0765268a9b3a5442e4e265144a4ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 593/872] Trimage: rebuild for Python 3.8.

---
 srcpkgs/Trimage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Trimage/template b/srcpkgs/Trimage/template
index 14fc1d1bd1c..c9f4b047ccd 100644
--- a/srcpkgs/Trimage/template
+++ b/srcpkgs/Trimage/template
@@ -1,7 +1,7 @@
 # Template file for 'Trimage'
 pkgname=Trimage
 version=1.0.6
-revision=1
+revision=2
 wrksrc="Trimage-${version}"
 build_style=python3-module
 hostmakedepends="python3"

From 51428dec66979d2e47361fb2af5e7ad35acbe530 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 594/872] TwitchNotifier: rebuild for Python 3.8.

---
 srcpkgs/TwitchNotifier/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/TwitchNotifier/template b/srcpkgs/TwitchNotifier/template
index 01153bcc710..3bbba11db49 100644
--- a/srcpkgs/TwitchNotifier/template
+++ b/srcpkgs/TwitchNotifier/template
@@ -1,7 +1,7 @@
 # Template file for 'TwitchNotifier'
 pkgname=TwitchNotifier
 version=0.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-devel"
 makedepends="python3-devel"

From 18ad02f16088cf17e66f60da882ead88b4872617 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 595/872] Uranium: rebuild for Python 3.8.

---
 srcpkgs/Uranium/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Uranium/template b/srcpkgs/Uranium/template
index 193d5e211df..7a9509c2079 100644
--- a/srcpkgs/Uranium/template
+++ b/srcpkgs/Uranium/template
@@ -1,7 +1,7 @@
 # Template file for 'Uranium'
 pkgname=Uranium
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=cmake
 pycompile_module="UM"

From 1bfabd6cc63a8b03b99500dc59e362061f7549e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 596/872] afew: rebuild for Python 3.8.

---
 srcpkgs/afew/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/afew/template b/srcpkgs/afew/template
index a9156bbc902..f4b10098e66 100644
--- a/srcpkgs/afew/template
+++ b/srcpkgs/afew/template
@@ -1,7 +1,7 @@
 # Template file for 'afew'
 pkgname=afew
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="afew"

From f0695c0a0e527ead9d61cbbd52e872f5a6e7f422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 597/872] alot: rebuild for Python 3.8.

---
 srcpkgs/alot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/alot/template b/srcpkgs/alot/template
index 4ff75637282..c8e29e36297 100644
--- a/srcpkgs/alot/template
+++ b/srcpkgs/alot/template
@@ -1,7 +1,7 @@
 # Template file for 'alot'
 pkgname=alot
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="alot"

From ec032cb507b4dca0034eab7e0281dedd3b7dc418 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 598/872] ansible: rebuild for Python 3.8.

---
 srcpkgs/ansible/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ansible/template b/srcpkgs/ansible/template
index 413e6f8803e..773f890e114 100644
--- a/srcpkgs/ansible/template
+++ b/srcpkgs/ansible/template
@@ -1,7 +1,7 @@
 # Template file for 'ansible'
 pkgname=ansible
 version=2.8.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ansible"

From a97554cec966a402d73b894865fe2d37f1833cec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 599/872] apparmor: rebuild for Python 3.8.

---
 srcpkgs/apparmor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/apparmor/template b/srcpkgs/apparmor/template
index c0ef28bae03..e4f8e3fb3ae 100644
--- a/srcpkgs/apparmor/template
+++ b/srcpkgs/apparmor/template
@@ -1,7 +1,7 @@
 # Template file for 'apparmor'
 pkgname=apparmor
 version=2.13.3
-revision=1
+revision=2
 wrksrc="${pkgname}-v${version}"
 build_wrksrc=libraries/libapparmor
 build_style=gnu-configure

From 57116ea3c564f2a1852b8583df85c35aefe177a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 600/872] arandr: rebuild for Python 3.8.

---
 srcpkgs/arandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/arandr/template b/srcpkgs/arandr/template
index 71c8cbcd6ed..610dbc28bca 100644
--- a/srcpkgs/arandr/template
+++ b/srcpkgs/arandr/template
@@ -1,7 +1,7 @@
 # Template file for 'arandr'
 pkgname=arandr
 version=0.1.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenlayout"

From 4dbfc32dae63dc77f95207dc5aa5a79d26d2c9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 601/872] asciinema: rebuild for Python 3.8.

---
 srcpkgs/asciinema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/asciinema/template b/srcpkgs/asciinema/template
index 961b2756301..38b8871753c 100644
--- a/srcpkgs/asciinema/template
+++ b/srcpkgs/asciinema/template
@@ -1,7 +1,7 @@
 # Template file for 'asciinema'
 pkgname=asciinema
 version=2.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="asciinema"

From 956b672f4c6db0ea67d9ad05a8308ec5ea193930 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 602/872] attic: rebuild for Python 3.8.

---
 srcpkgs/attic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/attic/template b/srcpkgs/attic/template
index 533ef7377bc..ed454302ce4 100644
--- a/srcpkgs/attic/template
+++ b/srcpkgs/attic/template
@@ -1,7 +1,7 @@
 # Template file for 'attic'
 pkgname=attic
 version=0.16
-revision=14
+revision=15
 wrksrc="Attic-$version"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel python3-Sphinx"

From 3a21ab47b75c96c91b8447979356e5d4d4027fd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 603/872] autorandr: rebuild for Python 3.8.

---
 srcpkgs/autorandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/autorandr/template b/srcpkgs/autorandr/template
index bf38b833632..7f9796be18f 100644
--- a/srcpkgs/autorandr/template
+++ b/srcpkgs/autorandr/template
@@ -1,7 +1,7 @@
 # Template file for 'autorandr'
 pkgname=autorandr
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="autorandr.py"

From ca443f3bf2b2ea4c91fa81f47ea823293476950b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 604/872] avideo: rebuild for Python 3.8.

---
 srcpkgs/avideo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/avideo/template b/srcpkgs/avideo/template
index e4d004aafff..6430d391286 100644
--- a/srcpkgs/avideo/template
+++ b/srcpkgs/avideo/template
@@ -1,7 +1,7 @@
 # Template file for 'avideo'
 pkgname=avideo
 version=2017.9.27
-revision=3
+revision=4
 archs=noarch
 wrksrc="avideo"
 build_style=python3-module

From b1abf9d1270b34913e7bd6dbfcd004dba8a8c5ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 605/872] aws-cli: rebuild for Python 3.8.

---
 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 4e5e200e3f9..4328e203c3c 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.16.253
-revision=1
+revision=2
 archs=noarch
 wrksrc="aws-cli-${version}"
 build_style=python3-module

From af6fd86e4f623114e23d8cd19217a8ba196231c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 606/872] bandit: rebuild for Python 3.8.

---
 srcpkgs/bandit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bandit/template b/srcpkgs/bandit/template
index e6c1aa52d7c..d29873ecf61 100644
--- a/srcpkgs/bandit/template
+++ b/srcpkgs/bandit/template
@@ -1,7 +1,7 @@
 # Template file for 'bandit'
 pkgname=bandit
 version=1.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="bandit"

From acb296380ef65f2682ec382f88706be8dc3bf79f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 607/872] beancount: rebuild for Python 3.8.

---
 srcpkgs/beancount/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beancount/template b/srcpkgs/beancount/template
index b1e2a121668..0ba68fc8f4e 100644
--- a/srcpkgs/beancount/template
+++ b/srcpkgs/beancount/template
@@ -1,7 +1,7 @@
 # Template file for 'beancount'
 pkgname=beancount
 version=2.2.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="beancount"
 hostmakedepends="python3-setuptools"

From 4d085c5998e4472b4e7b4fceabecba11440daceb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 608/872] beets: rebuild for Python 3.8.

---
 srcpkgs/beets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beets/template b/srcpkgs/beets/template
index 7dab56ceef8..975e6ec9f86 100644
--- a/srcpkgs/beets/template
+++ b/srcpkgs/beets/template
@@ -1,7 +1,7 @@
 # Template file for 'beets'
 pkgname=beets
 version=1.4.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="beets beetsplug"

From 1640cb62a84da8a46aff2a9c6ee5f75c0ab73224 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 609/872] black: rebuild for Python 3.8.

---
 srcpkgs/black/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/black/template b/srcpkgs/black/template
index f6d433038b9..38498a1db07 100644
--- a/srcpkgs/black/template
+++ b/srcpkgs/black/template
@@ -1,7 +1,7 @@
 # Template file for 'black'
 pkgname=black
 version=19.3b0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="black.py blib2to3"

From 5939f3d169c384cfe92957888f7b53678a69e770 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 610/872] blueman: rebuild for Python 3.8.

---
 srcpkgs/blueman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blueman/template b/srcpkgs/blueman/template
index 83f9b899583..3616aee7da3 100644
--- a/srcpkgs/blueman/template
+++ b/srcpkgs/blueman/template
@@ -1,7 +1,7 @@
 # Template file for 'blueman'
 pkgname=blueman
 version=2.1.1
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="blueman"
 configure_args="--disable-static"

From 325ad86e9fdcfc900e695cdcb3b40bc448b85d06 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 611/872] borg: rebuild for Python 3.8.

---
 srcpkgs/borg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borg/template b/srcpkgs/borg/template
index 520b1b2f65a..b69c7d3418e 100644
--- a/srcpkgs/borg/template
+++ b/srcpkgs/borg/template
@@ -1,7 +1,7 @@
 # Template file for 'borg'
 pkgname=borg
 version=1.1.10
-revision=2
+revision=3
 wrksrc="borgbackup-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel"

From 73a17277e22d3252a93a66237bf81a04393fc244 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 612/872] borgmatic: rebuild for Python 3.8.

---
 srcpkgs/borgmatic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borgmatic/template b/srcpkgs/borgmatic/template
index 8ef7c0568a6..bdc6446243c 100644
--- a/srcpkgs/borgmatic/template
+++ b/srcpkgs/borgmatic/template
@@ -1,7 +1,7 @@
 # Template file for 'borgmatic'
 pkgname=borgmatic
 version=1.3.24
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="borgmatic"

From 482c5d69113ad10842dfe91f0ac4a0631660ac77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 613/872] btrfs-backup: rebuild for Python 3.8.

---
 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 07d08a1b62b..55a3800a857 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=1
+revision=2
 wrksrc="${pkgname/-/_}-${version}"
 archs=noarch
 build_style=python3-module

From 4fce3c4f00a44852e3f9fcab80a10d4acfc04ad6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 614/872] bum: rebuild for Python 3.8.

---
 srcpkgs/bum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bum/template b/srcpkgs/bum/template
index 58d0bb2b7f7..20f200e74d6 100644
--- a/srcpkgs/bum/template
+++ b/srcpkgs/bum/template
@@ -1,7 +1,7 @@
 # Template file for 'bum'
 pkgname=bum
 version=0.1.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="bum"

From a384e5462965e984f1abca2ca12b7f62b1a415d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 615/872] caffeine-ng: rebuild for Python 3.8.

---
 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 36287fbef5b..455b2f225c4 100644
--- a/srcpkgs/caffeine-ng/template
+++ b/srcpkgs/caffeine-ng/template
@@ -1,7 +1,7 @@
 # Template file for 'caffeine-ng'
 pkgname=caffeine-ng
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="caffeine"

From b857565a7a7fddfbffbcf40b9e784593d099a0a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 616/872] cairo-dock-plugins: rebuild for Python 3.8.

---
 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 9e6149c617f..0c23a7f6928 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=11
+revision=12
 build_style=cmake
 hostmakedepends="pkg-config"
 # XXX libetpan, libdbusmenu, etc

From c0c15488d9189a782c2ab6436de598620d4d2435 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 617/872] canto-curses: rebuild for Python 3.8.

---
 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 0905972b480..4270d61c2e0 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=4
+revision=5
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel ncurses-devel readline-devel"

From a821add22450c016c7b851ee1a0309da5b5d83af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 618/872] canto-next: rebuild for Python 3.8.

---
 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 fff7e82e238..fa28bde891b 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.7
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From fa2afe1224ee7d1e031e769bf84bd596e5ac6de2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 619/872] capstone: rebuild for Python 3.8.

---
 srcpkgs/capstone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/capstone/template b/srcpkgs/capstone/template
index e13c7666ed1..fded7c7157e 100644
--- a/srcpkgs/capstone/template
+++ b/srcpkgs/capstone/template
@@ -1,7 +1,7 @@
 # Template file for 'capstone'
 pkgname=capstone
 version=4.0.1
-revision=1
+revision=2
 build_style=gnu-makefile
 make_use_env=1
 hostmakedepends="python-setuptools python3-setuptools"

From 923fca0cf844d03c602bbae81add86e8be495762 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 620/872] catfish: rebuild for Python 3.8.

---
 srcpkgs/catfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/catfish/template b/srcpkgs/catfish/template
index 1b28ffcafff..b53de6b8ea6 100644
--- a/srcpkgs/catfish/template
+++ b/srcpkgs/catfish/template
@@ -1,7 +1,7 @@
 # Template file for 'catfish'
 pkgname=catfish
 version=1.4.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="catfish catfish_lib"

From fb71b3b941c7341384c307ef6e1654b8d0b54a3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 621/872] ccsm: rebuild for Python 3.8.

---
 srcpkgs/ccsm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ccsm/template b/srcpkgs/ccsm/template
index 0421e587b23..3067003017f 100644
--- a/srcpkgs/ccsm/template
+++ b/srcpkgs/ccsm/template
@@ -1,7 +1,7 @@
 # Template file for 'ccsm'
 pkgname=ccsm
 version=0.8.16
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 hostmakedepends="automake intltool libtool pkg-config python3"

From f4212d55b3ec84e188189bc74a572c728a37c66a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 622/872] cheat: rebuild for Python 3.8.

---
 srcpkgs/cheat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cheat/template b/srcpkgs/cheat/template
index b60b4ba53b2..f1e419c3c5a 100644
--- a/srcpkgs/cheat/template
+++ b/srcpkgs/cheat/template
@@ -1,7 +1,7 @@
 # Template file for 'cheat'
 pkgname=cheat
 version=2.5.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="cheat"
 conf_files="/etc/cheat"

From eb72b0be44091e56a3e5b73cdf6d11ff80ecb8ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 623/872] clearine: rebuild for Python 3.8.

---
 srcpkgs/clearine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/clearine/template b/srcpkgs/clearine/template
index 419bb3c4550..539d494b79b 100644
--- a/srcpkgs/clearine/template
+++ b/srcpkgs/clearine/template
@@ -1,7 +1,7 @@
 # Template file for 'clearine'
 pkgname=clearine
 version=0.7
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="Clearine"
 hostmakedepends="python3-setuptools"

From ca7e63827b68cba4586e81da6e622e70addc8b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 624/872] coccigrep: rebuild for Python 3.8.

---
 srcpkgs/coccigrep/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/coccigrep/template b/srcpkgs/coccigrep/template
index 736f16a458e..a02c2f78bb2 100644
--- a/srcpkgs/coccigrep/template
+++ b/srcpkgs/coccigrep/template
@@ -1,7 +1,7 @@
 # Template file for 'coccigrep'
 pkgname=coccigrep
 version=1.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coccigrep"

From 8b0269365914ae7e030b07b30f4a76f2f1726270 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 625/872] compizconfig-python: rebuild for Python 3.8.

---
 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 b9d9ce2892b..77d53c97f46 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.16
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static"
 hostmakedepends="automake intltool libtool pkg-config glib-devel gettext-devel python3-Cython"

From c7955381746f2b68e5bb140afe81526fd62a2d16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 626/872] coursera-dl: rebuild for Python 3.8.

---
 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 0dfdd73083f..2b09e53d836 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.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coursera"

From 1bf8d7143694f636186cfbdcf357f9b86f5a635b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 627/872] cozy: rebuild for Python 3.8.

---
 srcpkgs/cozy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cozy/template b/srcpkgs/cozy/template
index a35aff61f37..2515388da18 100644
--- a/srcpkgs/cozy/template
+++ b/srcpkgs/cozy/template
@@ -1,7 +1,7 @@
 # Template file for 'cozy'
 pkgname=cozy
 version=0.6.8
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 pycompile_module="cozy"

From 7b58e6f69ae54c84b50dfe4d6041cf861a698c60 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 628/872] cpuset: rebuild for Python 3.8.

---
 srcpkgs/cpuset/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cpuset/template b/srcpkgs/cpuset/template
index cf3910d2304..12b54631617 100644
--- a/srcpkgs/cpuset/template
+++ b/srcpkgs/cpuset/template
@@ -1,7 +1,7 @@
 # Template file for 'cpuset'
 pkgname=cpuset
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="cpuset"

From a542aca478f0e84bbc23d3fd91a236635712a9f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 629/872] ctop: rebuild for Python 3.8.

---
 srcpkgs/ctop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ctop/template b/srcpkgs/ctop/template
index b8ea58515b2..5231b4a4cb3 100644
--- a/srcpkgs/ctop/template
+++ b/srcpkgs/ctop/template
@@ -1,7 +1,7 @@
 # Template file for 'ctop'
 pkgname=ctop
 version=1.0.0
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="cgroup_top.py"

From b3065c411c5e0b3e48432c6901e1e7fb20eb00d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 630/872] cura: rebuild for Python 3.8.

---
 srcpkgs/cura/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cura/template b/srcpkgs/cura/template
index 31318e5aecf..ab5cd315f21 100644
--- a/srcpkgs/cura/template
+++ b/srcpkgs/cura/template
@@ -1,7 +1,7 @@
 # Template file for 'cura'
 pkgname=cura
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Cura-${version}"
 build_style=cmake

From 9f4eb67830feb2103a78edc7651e1f73cc606074 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 631/872] curseradio: rebuild for Python 3.8.

---
 srcpkgs/curseradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/curseradio/template b/srcpkgs/curseradio/template
index 4fe2306364a..f5afe3bba34 100644
--- a/srcpkgs/curseradio/template
+++ b/srcpkgs/curseradio/template
@@ -1,7 +1,7 @@
 # Template file for 'curseradio'
 pkgname=curseradio
 version=0.0.20171017
-revision=3
+revision=4
 archs=noarch
 _commit=1bd4bd0faeec675e0647bac9a100b526cba19f8d
 wrksrc="curseradio-${_commit}"

From fa4e6156adf5c317bb85ee1d8271c9e6ce57b3e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 632/872] d-feet: rebuild for Python 3.8.

---
 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 6930eddf582..7f7d593f30a 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.15
-revision=1
+revision=2
 build_style=meson
 maintainer="Enno Boland <gottox@voidlinux.org>"
 hostmakedepends="pkg-config intltool itstool python3-pycodestyle"

From d6145053ac873c90f6383dee8ec4d696463928f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 633/872] deluge: rebuild for Python 3.8.

---
 srcpkgs/deluge/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/deluge/template b/srcpkgs/deluge/template
index 6dc7f26184d..8148c68033c 100644
--- a/srcpkgs/deluge/template
+++ b/srcpkgs/deluge/template
@@ -1,7 +1,7 @@
 # Template file for 'deluge'
 pkgname=deluge
 version=2.0.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="deluge"

From 0b2691a90e5de63e49a3c3f3adfa709d618b0a05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 634/872] devedeng: rebuild for Python 3.8.

---
 srcpkgs/devedeng/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/devedeng/template b/srcpkgs/devedeng/template
index d971b2e207b..2d0516cedd3 100644
--- a/srcpkgs/devedeng/template
+++ b/srcpkgs/devedeng/template
@@ -1,7 +1,7 @@
 # Template file for 'devedeng'
 pkgname=devedeng
 version=4.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="devedeng"

From 8b7c3bcfced7b21089b0a64ac1c375eb973af343 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 635/872] distcc: rebuild for Python 3.8.

---
 srcpkgs/distcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/distcc/template b/srcpkgs/distcc/template
index ded4255becd..4d6a450533f 100644
--- a/srcpkgs/distcc/template
+++ b/srcpkgs/distcc/template
@@ -1,7 +1,7 @@
 # Template file for 'distcc'
 pkgname=distcc
 version=3.3.3
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-Werror --with-gtk"
 conf_files="

From 98151a807bebdc6d5e41e0b6a1bd0d65659fbb7e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 636/872] docker-compose: rebuild for Python 3.8.

---
 srcpkgs/docker-compose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/docker-compose/template b/srcpkgs/docker-compose/template
index c3383fdf1ad..f4a34005c83 100644
--- a/srcpkgs/docker-compose/template
+++ b/srcpkgs/docker-compose/template
@@ -1,7 +1,7 @@
 # Template file for 'docker-compose'
 pkgname=docker-compose
 version=1.24.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="compose-${version}"
 build_style=python3-module

From 9dc2f62edc54b5e314c24fe7bb303496223adb45 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 637/872] edx-dl: rebuild for Python 3.8.

---
 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 209884640c6..a51c917d606 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.10
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="edx_dl"

From 6a769ff00b2fc959627e96d44172f8a656548751 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 638/872] electrum: rebuild for Python 3.8.

---
 srcpkgs/electrum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template
index 3861becdda9..7525e08e9e2 100644
--- a/srcpkgs/electrum/template
+++ b/srcpkgs/electrum/template
@@ -1,7 +1,7 @@
 # Template file for 'electrum'
 pkgname=electrum
 version=3.3.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electrum electrum_gui electrum_plugins"

From be52dccd4b30af3377095664bf239767a0f7be39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 639/872] electrum-ltc: rebuild for Python 3.8.

---
 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 ad6f745e152..cf7265fbec8 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.6.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"

From 45951afeb4bab3066e0459cf1441d9c3570c85dc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 640/872] eolie: rebuild for Python 3.8.

---
 srcpkgs/eolie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eolie/template b/srcpkgs/eolie/template
index b3da3dcd829..94514510c98 100644
--- a/srcpkgs/eolie/template
+++ b/srcpkgs/eolie/template
@@ -1,7 +1,7 @@
 # Template file for 'eolie'
 pkgname=eolie
 version=0.9.62
-revision=1
+revision=2
 _eolie_hash=bb4aad19272cc636bd17f2f6602127fe
 build_style=meson
 pycompile_module="eolie"

From ad02dba2226dbfc6b1fb5e715af8b58821cd8c07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 641/872] eyeD3: rebuild for Python 3.8.

---
 srcpkgs/eyeD3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eyeD3/template b/srcpkgs/eyeD3/template
index 7be047810bd..211553f0adb 100644
--- a/srcpkgs/eyeD3/template
+++ b/srcpkgs/eyeD3/template
@@ -1,7 +1,7 @@
 # Template file for 'eyeD3'
 pkgname=eyeD3
 version=0.8.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="eyed3"

From 5333d561e8831b7103f00f5e4564ce20bc26e9b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 642/872] fail2ban: rebuild for Python 3.8.

---
 srcpkgs/fail2ban/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 829e93385dc..361bcd12edd 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,7 +1,7 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
 version=0.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From 6ed6f50c8422b21b0f8244e983014120a3467562 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 643/872] fava: rebuild for Python 3.8.

---
 srcpkgs/fava/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fava/template b/srcpkgs/fava/template
index 24e66cac45b..890858b095b 100644
--- a/srcpkgs/fava/template
+++ b/srcpkgs/fava/template
@@ -1,7 +1,7 @@
 # Template file for 'fava'
 pkgname=fava
 version=1.11
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fava"

From cfe04c8e627d5d3626d852a05f3a87ecf053557f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 644/872] fierce: rebuild for Python 3.8.

---
 srcpkgs/fierce/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fierce/template b/srcpkgs/fierce/template
index 86dedb39ad2..86692c6457b 100644
--- a/srcpkgs/fierce/template
+++ b/srcpkgs/fierce/template
@@ -1,7 +1,7 @@
 # Template file for 'fierce'
 pkgname=fierce
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fierce"

From c67a6380bd6f21a660d10cde09cb2930536faee5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 645/872] fifengine: rebuild for Python 3.8.

---
 srcpkgs/fifengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fifengine/template b/srcpkgs/fifengine/template
index 1d4bcbb9297..871c94ad7e0 100644
--- a/srcpkgs/fifengine/template
+++ b/srcpkgs/fifengine/template
@@ -1,7 +1,7 @@
 # Template file for 'fifengine'
 pkgname=fifengine
 version=0.4.2
-revision=1
+revision=2
 build_style=cmake
 pycompile_module="fife"
 hostmakedepends="swig python3"

From 407bb3354f4705ac3e7d9c40479ff7272cbf5478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 646/872] flake8: rebuild for Python 3.8.

---
 srcpkgs/flake8/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/flake8/template b/srcpkgs/flake8/template
index d8f2b095644..4d7ebeba176 100644
--- a/srcpkgs/flake8/template
+++ b/srcpkgs/flake8/template
@@ -1,7 +1,7 @@
 # Template file for 'flake8'
 pkgname=flake8
 version=3.7.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="flake8"

From 770a2460b2b1f167fe87687c22ab0ff3d925964d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 647/872] fontforge: fix and rebuild for Python 3.8.

---
 srcpkgs/fontforge/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/fontforge/template b/srcpkgs/fontforge/template
index 7fb02d7e371..2893bc52cfb 100644
--- a/srcpkgs/fontforge/template
+++ b/srcpkgs/fontforge/template
@@ -1,7 +1,7 @@
 # Template file for 'fontforge'
 pkgname=fontforge
 version=20190801
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake ca-certificates git libltdl-devel libtool m4
  pkg-config python3"
@@ -20,6 +20,7 @@ checksum="e4501de5bd8e7f6c68fe7d3abd4667bf44a07b981d342ffa00e8f42e155ce633
  1bf9c7eb8835e6ed94e62cb49f1141bc046c562849e52e6c3c7f1d7cfc95c7b3"
 
 pre_configure() {
+        sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION}/&-embed/g' m4/fontforge_arg_enable.m4
 	./bootstrap
 }
 

From b878e1d66ee439999393e2aa55941b07f8e6c745 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 648/872] gajim: rebuild for Python 3.8.

---
 srcpkgs/gajim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gajim/template b/srcpkgs/gajim/template
index 8c49c0cf6ef..e81015b3906 100644
--- a/srcpkgs/gajim/template
+++ b/srcpkgs/gajim/template
@@ -1,7 +1,7 @@
 # Template file for 'gajim'
 pkgname=gajim
 version=1.1.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gajim"

From e0ad178e264be367206a16d9b96524e6d37e4b22 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 649/872] gajim-omemo: rebuild for Python 3.8.

---
 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 803f94713be..64d47228496 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.6.29
-revision=1
+revision=2
 wrksrc="omemo"
 hostmakedepends="unzip"
 depends="python3 python3-setuptools python3-cryptography python3-axolotl python3-qrcode"

From 4988da06fe14563631406801f6b22795355576a4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 650/872] gallery-dl: rebuild for Python 3.8.

---
 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 a1e8c633fe3..62b338a32e3 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.10.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gallery_dl"

From 7d5c0c0d7a1dcc5f3c504ed769a3730c7d688ed3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 651/872] gandi-cli: rebuild for Python 3.8.

---
 srcpkgs/gandi-cli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gandi-cli/template b/srcpkgs/gandi-cli/template
index c5e805a09fd..4193bfe4638 100644
--- a/srcpkgs/gandi-cli/template
+++ b/srcpkgs/gandi-cli/template
@@ -1,7 +1,7 @@
 # Template file for 'gandi-cli'
 pkgname=gandi-cli
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="gandi.cli-${version}"
 build_style=python3-module

From 7ae81741d5a1d24c19e0950a8631b2afb2f66301 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 652/872] gcovr: rebuild for Python 3.8.

---
 srcpkgs/gcovr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gcovr/template b/srcpkgs/gcovr/template
index 2b9ff94bf2a..0d4addfc8a7 100644
--- a/srcpkgs/gcovr/template
+++ b/srcpkgs/gcovr/template
@@ -1,7 +1,7 @@
 # Template file for 'gcovr'
 pkgname=gcovr
 version=4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gcovr"

From ff745f27bbeb2148c202a6cfde42c27c27ffb081 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 653/872] gedit: rebuild for Python 3.8.

---
 srcpkgs/gedit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gedit/template b/srcpkgs/gedit/template
index 904d3b7c3c4..6666c331c52 100644
--- a/srcpkgs/gedit/template
+++ b/srcpkgs/gedit/template
@@ -1,7 +1,7 @@
 # Template file for 'gedit'
 pkgname=gedit
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gi/overrides"

From 6d37a1560ee94e42e383c5bc4cba87d59366a1bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 654/872] geis: rebuild for Python 3.8.

---
 srcpkgs/geis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/geis/template b/srcpkgs/geis/template
index fe31a3d2aeb..20afe76b0d8 100644
--- a/srcpkgs/geis/template
+++ b/srcpkgs/geis/template
@@ -1,7 +1,7 @@
 # Template file for 'geis'
 pkgname=geis
 version=2.2.17
-revision=4
+revision=5
 hostmakedepends="pkg-config python3-devel"
 makedepends="dbus-devel grail-devel frame-devel libXi-devel python3-devel xorg-server-devel"
 build_style="gnu-configure"

From 83ad8dc7e8dc71c64a9004e04aba36ca30c051fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 655/872] git-cola: rebuild for Python 3.8.

---
 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 7eaba90f3be..fd0bbf971d3 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.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/share/git-cola/lib"

From 69e4bac4c10842ce70ce2a1db26f883af407e79c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 656/872] git-review: rebuild for Python 3.8.

---
 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 d999dc87b16..c180cc60780 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="git_review"

From 7c0a260d7120bd5e0e4e27c6b30b83e9dfe60359 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 657/872] git-revise: rebuild for Python 3.8.

---
 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 4179a52bddc..a1bf51dc447 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.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gitrevise"

From 49a8265f4cd71c84814307928cbbd2eb33c4bbad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 658/872] gitg: rebuild for Python 3.8.

---
 srcpkgs/gitg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gitg/template b/srcpkgs/gitg/template
index e0da8e9490d..a3381fdb3a7 100644
--- a/srcpkgs/gitg/template
+++ b/srcpkgs/gitg/template
@@ -1,7 +1,7 @@
 # Template file for 'gitg'
 pkgname=gitg
 version=3.32.1
-revision=1
+revision=2
 build_style=meson
 hostmakedepends="intltool pkg-config gobject-introspection vala glib-devel"
 makedepends="gtksourceview-devel libgit2-glib-devel libgee08-devel gtkspell3-devel

From 5b5919636d70cb1259ebd7740e9b55936a7c29f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 659/872] glances: rebuild for Python 3.8.

---
 srcpkgs/glances/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glances/template b/srcpkgs/glances/template
index 6d4766493c3..753d9e20c92 100644
--- a/srcpkgs/glances/template
+++ b/srcpkgs/glances/template
@@ -1,7 +1,7 @@
 # Template file for 'glances'
 pkgname=glances
 version=3.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Glances-${version}"
 build_style=python3-module

From 8b16492c679f3eb6c6ae2d4573f9adeb356715be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 660/872] glusterfs: rebuild for Python 3.8.

---
 srcpkgs/glusterfs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glusterfs/template b/srcpkgs/glusterfs/template
index a1304e266fe..90093864286 100644
--- a/srcpkgs/glusterfs/template
+++ b/srcpkgs/glusterfs/template
@@ -1,7 +1,7 @@
 # Template file for 'glusterfs'
 pkgname=glusterfs
 version=6.5
-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 22925c23326876f7422d67e1f21f0e629b9c7ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 661/872] gnome-authenticator: rebuild for Python 3.8.

---
 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 52d161897c7..ab7c505c0fe 100644
--- a/srcpkgs/gnome-authenticator/template
+++ b/srcpkgs/gnome-authenticator/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-authenticator'
 pkgname=gnome-authenticator
 version=0.2.4
-revision=2
+revision=3
 _libgd_hash=7ae254bfc5f641c60566614e08245176f7bc5aa8
 wrksrc="Authenticator-${version}"
 build_style=meson

From 4130139a7454a2050f48c6feac4f9312c50219d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 662/872] gnome-music: rebuild for Python 3.8.

---
 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 bceb7c369c8..e2fbbcbdeca 100644
--- a/srcpkgs/gnome-music/template
+++ b/srcpkgs/gnome-music/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-music'
 pkgname=gnome-music
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gnomemusic"

From 94b0589cc1f42f2505ac86d6596ab748ab75e02f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 663/872] gnome-passbook: rebuild for Python 3.8.

---
 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 54035dc920b..89047338503 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.1
-revision=1
+revision=2
 _release_hash=0a227cfdf706f4bfcc0b782026f1aeb2
 wrksrc="passbook-${version}"
 build_style=meson

From 76dae990f2ec69291f7826391c7a375014867fb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 664/872] gnome-passwordsafe: rebuild for Python 3.8.

---
 srcpkgs/gnome-passwordsafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnome-passwordsafe/template b/srcpkgs/gnome-passwordsafe/template
index f310ce03a08..8f1f19174d2 100644
--- a/srcpkgs/gnome-passwordsafe/template
+++ b/srcpkgs/gnome-passwordsafe/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-passwordsafe'
 pkgname=gnome-passwordsafe
 version=3.32.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="PasswordSafe-${version}"
 build_style=meson

From ebb227d14a2271cc033506f2dd54957eecc5b719 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 665/872] gns3-gui: rebuild for Python 3.8.

---
 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 38751dea59b..f4318dc6afc 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.1.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3"

From b44e9cf882e059036ed7e3834cafdf689c956e32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 666/872] gns3-net-converter: rebuild for Python 3.8.

---
 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 b9b7403e8a6..70b6c90e8c8 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=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3converter"

From eaf37536ad96d1421cc95823589d2cd21779089d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 667/872] gns3-server: rebuild for Python 3.8.

---
 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 6bd9c067b20..739c584cb7c 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.1.21
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="gns3server"
 hostmakedepends="python3-setuptools"

From 3a2540b9e2143af7b07dcaee0ed3930b9016dc1e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 668/872] gnucash: rebuild for Python 3.8.

---
 srcpkgs/gnucash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnucash/template b/srcpkgs/gnucash/template
index 68bb811fc42..d8ff0a8ec86 100644
--- a/srcpkgs/gnucash/template
+++ b/srcpkgs/gnucash/template
@@ -1,7 +1,7 @@
 # Template file for 'gnucash'
 pkgname=gnucash
 version=3.7
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DWITH_SQL=0 -DWITH_PYTHON=1"
 hostmakedepends="pkg-config guile python3 libxslt perl"

From c1420969fc916318d29dfdc3836adf0580095969 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 669/872] gom: rebuild for Python 3.8.

---
 srcpkgs/gom/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gom/template b/srcpkgs/gom/template
index 6ec2a5e338f..0b45e19def4 100644
--- a/srcpkgs/gom/template
+++ b/srcpkgs/gom/template
@@ -1,7 +1,7 @@
 # Template file for 'gom'
 pkgname=gom
 version=0.3.3
-revision=3
+revision=4
 build_style=meson
 build_helper="gir"
 configure_args="-Denable-introspection=$(vopt_if gir true false)

From e55d5d66739df70ca67793cbca3b12aa5f01e751 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 670/872] gpodder: rebuild for Python 3.8.

---
 srcpkgs/gpodder/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gpodder/template b/srcpkgs/gpodder/template
index 7c7414e19cd..5cc63ab4205 100644
--- a/srcpkgs/gpodder/template
+++ b/srcpkgs/gpodder/template
@@ -1,7 +1,7 @@
 # Template file for 'gpodder'
 pkgname=gpodder
 version=3.10.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="gpodder-${version}"
 make_check_target=unittest

From d91d30f5f2b0b5e6323da1f35eaf923fed0a111f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 671/872] gramps: rebuild for Python 3.8.

---
 srcpkgs/gramps/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gramps/template b/srcpkgs/gramps/template
index 9d1d1a4616a..5d40aeefb49 100644
--- a/srcpkgs/gramps/template
+++ b/srcpkgs/gramps/template
@@ -1,7 +1,7 @@
 # Template file for 'gramps'
 pkgname=gramps
 version=5.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gramps"

From bb3e960f11dda36c822c8bd1e8575b2a69ce9a66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 672/872] greg: rebuild for Python 3.8.

---
 srcpkgs/greg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/greg/template b/srcpkgs/greg/template
index 9c15ba82f4b..d898d5fdf61 100644
--- a/srcpkgs/greg/template
+++ b/srcpkgs/greg/template
@@ -1,7 +1,7 @@
 # Template file for 'greg'
 pkgname=greg
 version=0.4.7
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 pycompile_module="greg"

From be202bce8c20fb165e811e32683e96aae42b1452 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 673/872] gst1-python3: rebuild for Python 3.8.

---
 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 6f02f19aca3..bf946f6a8bf 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.16.1
-revision=1
+revision=2
 wrksrc="gst-python-${version}"
 build_style=meson
 pycompile_module="gi/overrides"

From b9ef9fe5fb2d7b03831106592cfae54a25c41a0f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 674/872] guake: rebuild for Python 3.8.

---
 srcpkgs/guake/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/guake/template b/srcpkgs/guake/template
index 86eaba649a7..d92fdf89355 100644
--- a/srcpkgs/guake/template
+++ b/srcpkgs/guake/template
@@ -1,7 +1,7 @@
 # Template file for 'guake'
 pkgname=guake
 version=3.6.3
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 wrksrc="Guake-${version}"

From a53d49cbf26761960b1d159a12df007b627e7650 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 675/872] gufw: rebuild for Python 3.8.

---
 srcpkgs/gufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gufw/template b/srcpkgs/gufw/template
index d2b8a4b025d..a4e7d861d71 100644
--- a/srcpkgs/gufw/template
+++ b/srcpkgs/gufw/template
@@ -1,7 +1,7 @@
 # Template file for 'gufw'
 pkgname=gufw
 version=19.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="gui-ufw-${version}"
 build_style=python3-module

From 165d3546e52431e5cb6d8f7534344eb7da2982a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 676/872] hamlib: rebuild for Python 3.8.

---
 srcpkgs/hamlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hamlib/template b/srcpkgs/hamlib/template
index c28a069cd6f..d52436c0893 100644
--- a/srcpkgs/hamlib/template
+++ b/srcpkgs/hamlib/template
@@ -1,7 +1,7 @@
 # Template file for 'hamlib'
 pkgname=hamlib
 version=3.3
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static --with-perl-binding --with-python-binding
  --with-tcl-binding --with-xml-support"

From fe67c3b8e01dac359eba93dada80286f4b7bd546 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 677/872] hangups: rebuild for Python 3.8.

---
 srcpkgs/hangups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hangups/template b/srcpkgs/hangups/template
index 0a2f2db16b4..0837a2c47c3 100644
--- a/srcpkgs/hangups/template
+++ b/srcpkgs/hangups/template
@@ -1,7 +1,7 @@
 # Template file for 'hangups'
 pkgname=hangups
 version=0.4.9
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="hangups"
 hostmakedepends="python3-setuptools"

From 54c05618d6ea2a636e7649b6dfb4df7e9097df99 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 678/872] hplip: rebuild for Python 3.8.

---
 srcpkgs/hplip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hplip/template b/srcpkgs/hplip/template
index 07a707569f6..3ef76e4591b 100644
--- a/srcpkgs/hplip/template
+++ b/srcpkgs/hplip/template
@@ -1,7 +1,7 @@
 # Template file for 'hplip'
 pkgname=hplip
 version=3.19.8
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="usr/share/hplip"
 configure_args="

From b9133921feebbc073c9d3cecdc138c34dd553caa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 679/872] httpie: rebuild for Python 3.8.

---
 srcpkgs/httpie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/httpie/template b/srcpkgs/httpie/template
index 387af8ebf05..61fc1499d35 100644
--- a/srcpkgs/httpie/template
+++ b/srcpkgs/httpie/template
@@ -1,7 +1,7 @@
 # Template file for 'httpie'
 pkgname=httpie
 version=1.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="httpie"

From 6c6626a47930ae266d4f95bc011f99e15b7237a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 680/872] ibus: rebuild for Python 3.8.

---
 srcpkgs/ibus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ibus/template b/srcpkgs/ibus/template
index 4875c7535d6..d3c35d786a4 100644
--- a/srcpkgs/ibus/template
+++ b/srcpkgs/ibus/template
@@ -1,7 +1,7 @@
 # Template file for 'ibus'
 pkgname=ibus
 version=1.5.20
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 configure_args="--enable-ui --enable-gtk3 --disable-tests

From ad8f78bd52e9d9925d746e1bbca9a926040dc866 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 681/872] iotop: rebuild for Python 3.8.

---
 srcpkgs/iotop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template
index 146a9e97791..522bf32a7c2 100644
--- a/srcpkgs/iotop/template
+++ b/srcpkgs/iotop/template
@@ -1,7 +1,7 @@
 # Template file for 'iotop'
 pkgname=iotop
 version=0.6
-revision=5
+revision=6
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From bf6b1d411e5f8d2459161a4599d66d7148220c48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 682/872] jrnl: rebuild for Python 3.8.

---
 srcpkgs/jrnl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template
index 3d08f129885..b184ef09508 100644
--- a/srcpkgs/jrnl/template
+++ b/srcpkgs/jrnl/template
@@ -1,7 +1,7 @@
 # Template file for 'jrnl'
 pkgname=jrnl
 version=1.9.8
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="jrnl"

From 3262fda476f3282359c09dd2902deac5997a3394 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 683/872] khal: rebuild for Python 3.8.

---
 srcpkgs/khal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khal/template b/srcpkgs/khal/template
index 39d08a66ba8..a73516695bf 100644
--- a/srcpkgs/khal/template
+++ b/srcpkgs/khal/template
@@ -1,7 +1,7 @@
 # Template file for 'khal'
 pkgname=khal
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khal"

From be7f25caca1d74c5f9f58c4cc40c3f3f889971d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 684/872] khard: rebuild for Python 3.8.

---
 srcpkgs/khard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khard/template b/srcpkgs/khard/template
index 6c6f3024be1..3ec9f398d99 100644
--- a/srcpkgs/khard/template
+++ b/srcpkgs/khard/template
@@ -1,7 +1,7 @@
 # Template file for 'khard'
 pkgname=khard
 version=0.14.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khard"

From 0509f15447526a6132348baf9eb600d22a0c20f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 685/872] lfm: rebuild for Python 3.8.

---
 srcpkgs/lfm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lfm/template b/srcpkgs/lfm/template
index 0a0a3b4f563..1e0e7cf29fa 100644
--- a/srcpkgs/lfm/template
+++ b/srcpkgs/lfm/template
@@ -1,7 +1,7 @@
 # Template file for 'lfm'
 pkgname=lfm
 version=3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 9ac423037b0a4806134116f0b6501d27f2bb3047 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 686/872] libArcus: rebuild for Python 3.8.

---
 srcpkgs/libArcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libArcus/template b/srcpkgs/libArcus/template
index 8e6c97ada21..d2ffda576d4 100644
--- a/srcpkgs/libArcus/template
+++ b/srcpkgs/libArcus/template
@@ -1,7 +1,7 @@
 # Template file for 'libArcus'
 pkgname=libArcus
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DBUILD_EXAMPLES=OFF"
 hostmakedepends="protobuf python3-sip-devel"

From 8a5c0bc1b4d750fbb633dcfb68645bdb8e23ac37 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 687/872] libSavitar: rebuild for Python 3.8.

---
 srcpkgs/libSavitar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libSavitar/template b/srcpkgs/libSavitar/template
index a9d3020158f..213f02f4d65 100644
--- a/srcpkgs/libSavitar/template
+++ b/srcpkgs/libSavitar/template
@@ -1,7 +1,7 @@
 # Template file for 'libSavitar'
 pkgname=libSavitar
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 hostmakedepends="python3"
 makedepends="python3-sip-devel python3-devel pugixml-devel"

From 888da49c1bb8061c80359b4015485b151f0d74d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 688/872] libaccounts-glib: rebuild for Python 3.8.

---
 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 717be24f209..239f9307261 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=2
+revision=3
 wrksrc="${pkgname}-VERSION_${version}-8948717702424ce15f4e23e5db2c8ce0799ec120"
 build_style=meson
 hostmakedepends="gtk-doc pkg-config glib-devel gobject-introspection vala"

From bd98c3c06982e10c3f9df1df66d5b04f1a5ef434 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 689/872] libblockdev: rebuild for Python 3.8.

---
 srcpkgs/libblockdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libblockdev/template b/srcpkgs/libblockdev/template
index 1df156e3c5b..ff20fc70618 100644
--- a/srcpkgs/libblockdev/template
+++ b/srcpkgs/libblockdev/template
@@ -1,7 +1,7 @@
 # Template file for 'libblockdev'
 pkgname=libblockdev
 version=2.21
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="cryptsetup-devel device-mapper-devel dmraid-devel libbytesize-devel

From 41b298fd633e7e588071f06e8d421ed9b2c21a8c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 690/872] libbytesize: rebuild for Python 3.8.

---
 srcpkgs/libbytesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libbytesize/template b/srcpkgs/libbytesize/template
index ee1862d889d..e07cdf29a82 100644
--- a/srcpkgs/libbytesize/template
+++ b/srcpkgs/libbytesize/template
@@ -1,7 +1,7 @@
 # Template file for 'libbytesize'
 pkgname=libbytesize
 version=1.4
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python3"
 makedepends="mpfr-devel pcre-devel"

From bdb495aaf63cb8b79a83eda9623e54e67de33d75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 691/872] libcap-ng: rebuild for Python 3.8.

---
 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 f462636c4c1..c6ec4f0a216 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.7.10
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-python --without-python3"
 short_desc="Alternate POSIX capabilities library"

From 64a29440ad0bb81db7db97e461b4b68478993d17 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 692/872] libffado: rebuild for Python 3.8.

---
 srcpkgs/libffado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libffado/template b/srcpkgs/libffado/template
index a9b6a5ec6a8..d566806bd82 100644
--- a/srcpkgs/libffado/template
+++ b/srcpkgs/libffado/template
@@ -1,7 +1,7 @@
 # Template file for 'libffado'
 pkgname=libffado
 version=2.4.1
-revision=1
+revision=2
 build_style=scons
 make_build_args="PREFIX=/usr MANDIR=/usr/share/man
  UDEVDIR=/usr/lib/udev/rules.d CUSTOM_ENV=1 BUILD_TESTS=0

From 3ac32b19e51680d2330b26da6cb8d640904fcb75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 693/872] libgit2-glib: rebuild for Python 3.8.

---
 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 05389a18258..ce68cb35d66 100644
--- a/srcpkgs/libgit2-glib/template
+++ b/srcpkgs/libgit2-glib/template
@@ -1,7 +1,7 @@
 # Template file for 'libgit2-glib'
 pkgname=libgit2-glib
 version=0.28.0.1
-revision=1
+revision=2
 build_style=meson
 build_helper="gir"
 configure_args="-Dintrospection=$(vopt_if gir true false)

From 6950f9e7571c268c087d93d7e94d169a8fb8291b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 694/872] libixion: rebuild for Python 3.8.

---
 srcpkgs/libixion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libixion/template b/srcpkgs/libixion/template
index 5d2c58ee7c0..dbc05d8b9c1 100644
--- a/srcpkgs/libixion/template
+++ b/srcpkgs/libixion/template
@@ -2,7 +2,7 @@
 pkgname=libixion
 reverts="0.15.0_1"
 version=0.14.1
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="boost-devel mdds python3-devel"

From 45a847c34a550d9cc64985d24ef9b306aade5790 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 695/872] liblouis: rebuild for Python 3.8.

---
 srcpkgs/liblouis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liblouis/template b/srcpkgs/liblouis/template
index 77194ad8820..13c29b62b21 100644
--- a/srcpkgs/liblouis/template
+++ b/srcpkgs/liblouis/template
@@ -1,7 +1,7 @@
 # Template file for 'liblouis'
 pkgname=liblouis
 version=3.9.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--enable-ucs4"
 pycompile_module="louis"

From f79d54ca6d5162f4f17a9cae76f0bd941deaf438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 696/872] opencv: rebuild for Python 3.8.

---
 srcpkgs/opencv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/opencv/template b/srcpkgs/opencv/template
index fcc38299f23..474b77be181 100644
--- a/srcpkgs/opencv/template
+++ b/srcpkgs/opencv/template
@@ -1,7 +1,7 @@
 # Template file for 'opencv'
 pkgname=opencv
 version=3.4.5
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_PRECOMPILED_HEADERS=OFF -DWITH_OPENMP=ON
  -DWITH_OPENCL=ON -DENABLE_CXX11=ON -DOPENCV_SKIP_PYTHON_LOADER=ON

From f3399fca6f67a8990fa1adc144bd949c0a5c66c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 697/872] libopenshot: rebuild for Python 3.8.

---
 srcpkgs/libopenshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libopenshot/template b/srcpkgs/libopenshot/template
index e1ac18faf93..dab1f2ae1e3 100644
--- a/srcpkgs/libopenshot/template
+++ b/srcpkgs/libopenshot/template
@@ -1,7 +1,7 @@
 # Template file for 'libopenshot'
 pkgname=libopenshot
 version=0.2.3
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 build_style=cmake
 pycompile_module="openshot.py"

From c7902fc599bfc61c600307df6f75acfadf8e612e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 698/872] liborcus: rebuild for Python 3.8.

---
 srcpkgs/liborcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liborcus/template b/srcpkgs/liborcus/template
index 3523d7830d8..e7704c43974 100644
--- a/srcpkgs/liborcus/template
+++ b/srcpkgs/liborcus/template
@@ -2,7 +2,7 @@
 pkgname=liborcus
 reverts="0.15.0_1"
 version=0.14.1
-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 aec13b74f5953d86ed1dab8574a9bb836924a3da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 699/872] libpwquality: rebuild for Python 3.8.

---
 srcpkgs/libpwquality/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpwquality/template b/srcpkgs/libpwquality/template
index e5a656236d7..6c2209155a3 100644
--- a/srcpkgs/libpwquality/template
+++ b/srcpkgs/libpwquality/template
@@ -1,7 +1,7 @@
 # Template file for 'libpwquality'
 pkgname=libpwquality
 version=1.4.1
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static --enable-pam --with-securedir=/usr/lib/security"
 hostmakedepends="libtool automake gettext-devel"

From a5604d1184badc5a3b5afb2426bc910d703ee0f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 700/872] libsearpc: rebuild for Python 3.8.

---
 srcpkgs/libsearpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsearpc/template b/srcpkgs/libsearpc/template
index 61f68e5e7de..a7e0b9ce05c 100644
--- a/srcpkgs/libsearpc/template
+++ b/srcpkgs/libsearpc/template
@@ -1,7 +1,7 @@
 # Template file for 'libsearpc'
 pkgname=libsearpc
 version=3.1.0
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="pysearpc"
 configure_args="PYTHON=python3 --disable-static --disable-compile-demo"

From 5aaa024e287c3460065dbe861abc25499a281e07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 701/872] libtorrent-rasterbar: fix and rebuild for Python 3.8.

---
 srcpkgs/libtorrent-rasterbar/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libtorrent-rasterbar/template b/srcpkgs/libtorrent-rasterbar/template
index 118108c6184..51b7175fb81 100644
--- a/srcpkgs/libtorrent-rasterbar/template
+++ b/srcpkgs/libtorrent-rasterbar/template
@@ -1,9 +1,9 @@
 # Template file for 'libtorrent-rasterbar'
 pkgname=libtorrent-rasterbar
 version=1.1.13
-revision=3
+revision=4
 build_style=gnu-configure
-configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=boost_python36"
+configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=libboost_python${py3_ver/./}"
 hostmakedepends="automake pkg-config intltool libtool python3-devel"
 makedepends="libressl-devel boost-devel geoip-devel python3-devel"
 short_desc="C++ bittorrent library by Rasterbar Software"
@@ -14,9 +14,9 @@ distfiles="https://github.com/arvidn/libtorrent/releases/download/libtorrent-${v
 checksum=30040719858e3c06634764e0c1778738eb42ecd0b45e814afa746329a948ead7
 
 pre_configure() {
-	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython3.6m"
+	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython${py3_ver}${py3_abiver}"
 	autoreconf -fi
 }
 

From 75ce8cab25904eeb4975663fb77b4f29c10c1dbe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 702/872] libvirt-python: rebuild for Python 3.8.

---
 srcpkgs/libvirt-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvirt-python/template b/srcpkgs/libvirt-python/template
index a2f0e038166..56253c9d3b0 100644
--- a/srcpkgs/libvirt-python/template
+++ b/srcpkgs/libvirt-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libvirt-python'
 pkgname=libvirt-python
 version=5.8.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="libvirt.py libvirt_lxc.py libvirt_qemu.py"
 hostmakedepends="pkg-config python-devel python3-devel libvirt-devel"

From 5e9842585a68fb832637cdd1b5adcd50bc48841b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 703/872] libvoikko: rebuild for Python 3.8.

---
 srcpkgs/libvoikko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvoikko/template b/srcpkgs/libvoikko/template
index 8d21b0f9c71..ba8eef837ee 100644
--- a/srcpkgs/libvoikko/template
+++ b/srcpkgs/libvoikko/template
@@ -1,7 +1,7 @@
 # Template file for 'libvoikko'
 pkgname=libvoikko
 version=4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-hfst=false --with-dictionary-path=/usr/share/voikko"
 pycompile_module="libvoikko.py"

From 8141b26019c7a2414b15fcf8b8672eb24047f49d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 704/872] libxml2-python: rebuild for Python 3.8.

---
 srcpkgs/libxml2-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libxml2-python/template b/srcpkgs/libxml2-python/template
index a80208823c2..5514ed43437 100644
--- a/srcpkgs/libxml2-python/template
+++ b/srcpkgs/libxml2-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libxml2-python'
 pkgname=libxml2-python
 version=2.9.9
-revision=3
+revision=4
 wrksrc="${pkgname%-python}-${version}"
 build_wrksrc=python
 build_style=python-module

From 70f5881f1b341100ddc517ba0f4b54e161303165 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 705/872] lightdm-gtk-greeter-settings: rebuild for Python 3.8.

---
 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 715f41bbef4..76a25b91e4c 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=1
+revision=2
 build_style=python3-module
 pycompile_module="lightdm_gtk_greeter_settings"
 hostmakedepends="python3-distutils-extra intltool"

From 04c380043914f79a0c6cd3199748bb0fb2e37967 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 706/872] llvm9: rebuild for Python 3.8.

---
 srcpkgs/llvm9/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/llvm9/template b/srcpkgs/llvm9/template
index 3c1a1a3451b..890a93855d8 100644
--- a/srcpkgs/llvm9/template
+++ b/srcpkgs/llvm9/template
@@ -1,7 +1,7 @@
 # Template file for 'llvm9'
 pkgname=llvm9
 version=9.0.0
-revision=2
+revision=3
 wrksrc="llvm-${version}.src"
 build_style=cmake
 configure_args="

From 4778e7a0c73ffa2fae833fee20ac790fef99fff9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 707/872] lollypop: rebuild for Python 3.8.

---
 srcpkgs/lollypop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lollypop/template b/srcpkgs/lollypop/template
index 56ace773bf3..3bd13c0d387 100644
--- a/srcpkgs/lollypop/template
+++ b/srcpkgs/lollypop/template
@@ -1,7 +1,7 @@
 # Template file for 'lollypop'
 pkgname=lollypop
 version=1.1.4.16
-revision=1
+revision=2
 # Gitlab upload tag hash
 _uhash=6b4e4e7a2c17f0770c1e2b3354ae5a3a
 archs=noarch

From 6041a22c11224f7e771c92e9f61adf7eaf37450a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 708/872] lutris: rebuild for Python 3.8.

---
 srcpkgs/lutris/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lutris/template b/srcpkgs/lutris/template
index 8f54d693a12..75be521cc7c 100644
--- a/srcpkgs/lutris/template
+++ b/srcpkgs/lutris/template
@@ -1,7 +1,7 @@
 # Template file for 'lutris'
 pkgname=lutris
 version=0.5.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 build_helper="gir"

From 768559bee2d66197ffebf07de70d31e1098fe2a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 709/872] magic-wormhole: rebuild for Python 3.8.

---
 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 c07753ce6ad..d93a1bbe1fc 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.11.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wormhole"

From 2a5b126fdf712642756c4d70a6a679f4479b504c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 710/872] mate-tweak: rebuild for Python 3.8.

---
 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 85b829e85e8..76b79524269 100644
--- a/srcpkgs/mate-tweak/template
+++ b/srcpkgs/mate-tweak/template
@@ -1,7 +1,7 @@
 # Template file for 'mate-tweak'
 pkgname=mate-tweak
 version=19.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-pbr python3-setuptools"

From 2717d85b6903ce0f45484d5f051e477d27e68ff3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 711/872] med: rebuild for Python 3.8.

---
 srcpkgs/med/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/med/template b/srcpkgs/med/template
index 34dd6d006d6..acd79293246 100644
--- a/srcpkgs/med/template
+++ b/srcpkgs/med/template
@@ -1,7 +1,7 @@
 # Template file for 'med'
 pkgname=med
 version=4.0.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--with-swig=yes --includedir=/usr/include/med"
 pycompile_module=med

From e6073b9b26be31845b922008dc6d5083ec2516e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 712/872] meld: rebuild for Python 3.8.

---
 srcpkgs/meld/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meld/template b/srcpkgs/meld/template
index 9ed6114299e..7cbac065ce6 100644
--- a/srcpkgs/meld/template
+++ b/srcpkgs/meld/template
@@ -1,7 +1,7 @@
 # Template file for 'meld'
 pkgname=meld
 version=3.20.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="meld"

From 30bbbb75eda44c4dfeac15c27223fe671d4703ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 713/872] menulibre: rebuild for Python 3.8.

---
 srcpkgs/menulibre/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/menulibre/template b/srcpkgs/menulibre/template
index 64311115bec..f16c5f64337 100644
--- a/srcpkgs/menulibre/template
+++ b/srcpkgs/menulibre/template
@@ -1,7 +1,7 @@
 # Template file for 'menulibre'
 pkgname=menulibre
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="menulibre menulibre_lib"

From 7f5fb6f6a41e18474dce397f36f38f5cce8f9eca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 714/872] meson-cmake-wrapper: rebuild for Python 3.8.

---
 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 ca14e533431..57eea159ca8 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mcw"

From 2c4c7008df31cd5ec9699fe3aba2f53facd423e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 715/872] mimeo: rebuild for Python 3.8.

---
 srcpkgs/mimeo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mimeo/template b/srcpkgs/mimeo/template
index bef8dcde863..991c61d9df8 100644
--- a/srcpkgs/mimeo/template
+++ b/srcpkgs/mimeo/template
@@ -1,7 +1,7 @@
 # Template file for 'mimeo'
 pkgname=mimeo
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="Mimeo.py"

From 533400db8d1d7673cb8a5b187cf4510495a5d6fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 716/872] mozo: rebuild for Python 3.8.

---
 srcpkgs/mozo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template
index 041f2454c3d..7bc18f017c7 100644
--- a/srcpkgs/mozo/template
+++ b/srcpkgs/mozo/template
@@ -1,7 +1,7 @@
 # Template file for 'mozo'
 pkgname=mozo
 version=1.22.2
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="Mozo"

From 79476ba290c89d038ce38a9ed875bed6b5bf69e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 717/872] mpd-sima: rebuild for Python 3.8.

---
 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 fb72f0d2632..831fec709b7 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=1
+revision=2
 archs=noarch
 wrksrc="MPD_sima-${version}"
 build_style=python3-module

From 9d547673ab95e2aeb2d2405f6fff480cbd9afa5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 718/872] mps-youtube: rebuild for Python 3.8.

---
 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 7b104aa706f..2141b3e627d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mps_youtube"

From 8e1db2d48466dc2bdc06e1330eeefaa727da6356 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 719/872] mugshot: rebuild for Python 3.8.

---
 srcpkgs/mugshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mugshot/template b/srcpkgs/mugshot/template
index cf27b30acac..1e695654a86 100644
--- a/srcpkgs/mugshot/template
+++ b/srcpkgs/mugshot/template
@@ -1,7 +1,7 @@
 # Template file for 'mugshot'
 pkgname=mugshot
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra"

From dd0ad3b8c52088d1809fd214b32ed7b0acdd2f66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 720/872] multibootusb: rebuild for Python 3.8.

---
 srcpkgs/multibootusb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/multibootusb/template b/srcpkgs/multibootusb/template
index 049b641c5fd..70cb07a85ac 100644
--- a/srcpkgs/multibootusb/template
+++ b/srcpkgs/multibootusb/template
@@ -1,7 +1,7 @@
 # Template file for 'multibootusb'
 pkgname=multibootusb
 version=9.2.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="scripts"

From 85356b30501f219e78afd8cb95f1a6cb09193ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 721/872] mymcplus: rebuild for Python 3.8.

---
 srcpkgs/mymcplus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mymcplus/template b/srcpkgs/mymcplus/template
index 369ac8048ed..f30c62b09f4 100644
--- a/srcpkgs/mymcplus/template
+++ b/srcpkgs/mymcplus/template
@@ -1,7 +1,7 @@
 # Template file for 'mymcplus'
 pkgname=mymcplus
 version=3.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mymcplus"

From f10ceae15759ab2c42d786a23926a759967abb41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 722/872] nagstamon: fix and rebuild for Python 3.8.

---
 srcpkgs/nagstamon/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/nagstamon/template b/srcpkgs/nagstamon/template
index 3a63bb5f1d9..0eb5bc75d27 100644
--- a/srcpkgs/nagstamon/template
+++ b/srcpkgs/nagstamon/template
@@ -1,7 +1,7 @@
 # Template file for 'nagstamon'
 pkgname=nagstamon
 version=3.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=Nagstamon
 build_style=python3-module
@@ -16,6 +16,10 @@ homepage="https://nagstamon.ifw-dresden.de"
 distfiles="https://nagstamon.ifw-dresden.de/files/stable/Nagstamon-${version}.tar.gz"
 checksum=a834460e78dc01f62171a83c4a11d890702264ed662863dff39edaf14ae98880
 
+post_extract() {
+	# Gone in python 3.8, but these where the python 3.6 values.  ;)
+	vsed -i -e 's/platform.dist()/("","","")/g' setup.py
+}
 post_install() {
 	chmod 644 ${DESTDIR}/usr/share/pixmaps/nagstamon.svg
 	mv -v ${DESTDIR}/usr/bin/nagstamon.py ${DESTDIR}/usr/bin/nagstamon

From 52acf83950d25bcf72b3fc81796436543c409ce8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 723/872] neovim-remote: rebuild for Python 3.8.

---
 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 d8473bf0521..7391f9df2ee 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.2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nvr"

From ae77cba0468f1ab1fe3e89bf758d2d153c6b8725 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 724/872] newt: rebuild for Python 3.8.

---
 srcpkgs/newt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/newt/template b/srcpkgs/newt/template
index 3971bbfdbf7..25ccc946f51 100644
--- a/srcpkgs/newt/template
+++ b/srcpkgs/newt/template
@@ -1,7 +1,7 @@
 # Template file for 'newt'
 pkgname=newt
 version=0.52.21
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python-devel python3-devel"
 makedepends="slang-devel popt-devel python3-devel python-devel"

From 5d77f30f98b4d84c2807418deb840acda4016790 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 725/872] notmuch: rebuild for Python 3.8.

---
 srcpkgs/notmuch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/notmuch/template b/srcpkgs/notmuch/template
index ced670a59d4..a3085fd4c27 100644
--- a/srcpkgs/notmuch/template
+++ b/srcpkgs/notmuch/template
@@ -1,7 +1,7 @@
 # Template file for 'notmuch'
 pkgname=notmuch
 version=0.29.1
-revision=1
+revision=2
 hostmakedepends="perl pkg-config python-devel python3-Sphinx python3-devel"
 makedepends="bash-completion gmime3-devel talloc-devel xapian-core-devel"
 short_desc="Thread-based email index, search, and tagging"

From 2a004663318b9be9e0b13e69c2f89b9682ece8e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 726/872] nyx: rebuild for Python 3.8.

---
 srcpkgs/nyx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/nyx/template b/srcpkgs/nyx/template
index 201ab5856ff..4b265771793 100644
--- a/srcpkgs/nyx/template
+++ b/srcpkgs/nyx/template
@@ -1,7 +1,7 @@
 # Template file for 'nyx'
 pkgname=nyx
 version=2.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nyx"

From 9ff1df8e1d687a5a38d373d51d32e4e428dbe286 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 727/872] olm-python: rebuild for Python 3.8.

---
 srcpkgs/olm-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/olm-python/template b/srcpkgs/olm-python/template
index 57ac1cfa01b..0141611ea3f 100644
--- a/srcpkgs/olm-python/template
+++ b/srcpkgs/olm-python/template
@@ -1,7 +1,7 @@
 # Template file for 'olm-python'
 pkgname=olm-python
 version=3.1.4
-revision=1
+revision=2
 wrksrc="olm-${version}"
 build_wrksrc=python
 build_style=python-module

From b5b9070e7d35511535cee5a401bcdb4ea6359959 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 728/872] onboard: rebuild for Python 3.8.

---
 srcpkgs/onboard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onboard/template b/srcpkgs/onboard/template
index 844744038d8..467ed8f0ea5 100644
--- a/srcpkgs/onboard/template
+++ b/srcpkgs/onboard/template
@@ -1,7 +1,7 @@
 # Template file for 'onboard'
 pkgname=onboard
 version=1.4.1
-revision=4
+revision=5
 build_style=python3-module
 pycompile_module="Onboard"
 patch_args="-Np1"

From c23e1317c4a493f2967ade1da8cf6eb9806b2066 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 729/872] openrazer-meta: rebuild for Python 3.8.

---
 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 112cb9e900b..60dc8212a73 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=2
+revision=3
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 0c8dabe0616d85f801dfefea1b22748ee6055bdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 730/872] openshot: rebuild for Python 3.8.

---
 srcpkgs/openshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/openshot/template b/srcpkgs/openshot/template
index 605ea7305c2..d71b4d09fae 100644
--- a/srcpkgs/openshot/template
+++ b/srcpkgs/openshot/template
@@ -1,7 +1,7 @@
 # Template file for 'openshot'
 pkgname=openshot
 version=2.4.4
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 wrksrc="${pkgname}-qt-${version}"
 build_style=python3-module

From e14cf6e0c5c985078aade34a1f21446e153dbeed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 731/872] orca: rebuild for Python 3.8.

---
 srcpkgs/orca/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/orca/template b/srcpkgs/orca/template
index ac1c0e1dc0e..57d1495c10a 100644
--- a/srcpkgs/orca/template
+++ b/srcpkgs/orca/template
@@ -1,7 +1,7 @@
 # Template file for 'orca'
 pkgname=orca
 version=3.34.0
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="orca"

From ef83881d95547fbaa4f216958aa7f49b0b2c98b3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 732/872] papis: rebuild for Python 3.8.

---
 srcpkgs/papis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/papis/template b/srcpkgs/papis/template
index 95044b2a6a4..d99f358fc0d 100644
--- a/srcpkgs/papis/template
+++ b/srcpkgs/papis/template
@@ -1,7 +1,7 @@
 # Template file for 'papis'
 pkgname=papis
 version=0.8
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-requests python3-yaml python3-chardet python3-BeautifulSoup4

From 19426200e7bc7017a4677c4484f21f3c50753bf3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 733/872] paraview: rebuild for Python 3.8.

---
 srcpkgs/paraview/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/paraview/template b/srcpkgs/paraview/template
index 3b721b1833a..feb1c6ad9d9 100644
--- a/srcpkgs/paraview/template
+++ b/srcpkgs/paraview/template
@@ -1,7 +1,7 @@
 # Template file for 'paraview'
 pkgname=paraview
 version=5.6.1
-revision=1
+revision=2
 wrksrc=ParaView-v${version}
 build_style=cmake
 configure_args="-DPARAVIEW_ENABLE_FFMPEG=ON

From 59418f99dab295be136d845489fb9be0808502ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 734/872] pass-git-helper: rebuild for Python 3.8.

---
 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 dfeed3ba4f0..6d7f25bd8a7 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.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 0e5b3ff5c7325f87724ab65db42f3b6bc206de5d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 735/872] peframe: rebuild for Python 3.8.

---
 srcpkgs/peframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peframe/template b/srcpkgs/peframe/template
index b9d64f7a5a6..5ecede6cf56 100644
--- a/srcpkgs/peframe/template
+++ b/srcpkgs/peframe/template
@@ -1,7 +1,7 @@
 # Template file for 'peframe'
 pkgname=peframe
 version=6.0.3
-revision=1
+revision=2
 archs=noarch
 build_style="python3-module"
 pycompile_module="peframe"

From 75d45b4f04e1fb2840ff323ca8d046618d568ef0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 736/872] peru: rebuild for Python 3.8.

---
 srcpkgs/peru/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peru/template b/srcpkgs/peru/template
index 682440f0b50..10d4689338d 100644
--- a/srcpkgs/peru/template
+++ b/srcpkgs/peru/template
@@ -1,7 +1,7 @@
 # Template file for 'peru'
 pkgname=peru
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="peru"

From 5e93ec69ed5809d9d90e182d4877d50a76d0d1f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 737/872] pgcli: rebuild for Python 3.8.

---
 srcpkgs/pgcli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index b967287e9cb..b187a0a4440 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,7 +1,7 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pgcli"

From 503ab0dc705126de83742fc162807eee6ba6abc5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 738/872] picard: rebuild for Python 3.8.

---
 srcpkgs/picard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/picard/template b/srcpkgs/picard/template
index 1bae142434a..08404a88475 100644
--- a/srcpkgs/picard/template
+++ b/srcpkgs/picard/template
@@ -1,7 +1,7 @@
 # Template file for 'picard'
 pkgname=picard
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname}-release-${version}"
 build_style=python3-module

From 4bc74c52012b010f4a6868916399415cb549ac03 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 739/872] piper: rebuild for Python 3.8.

---
 srcpkgs/piper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/piper/template b/srcpkgs/piper/template
index af8cc854991..91a31131f84 100644
--- a/srcpkgs/piper/template
+++ b/srcpkgs/piper/template
@@ -1,7 +1,7 @@
 # Template file for 'piper'
 pkgname=piper
 version=0.2.904
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 hostmakedepends="libratbag pkg-config glib-devel"

From 42ecbdbd06cecacd65a3bf53f7ab45bd25a336c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 740/872] playitslowly: rebuild for Python 3.8.

---
 srcpkgs/playitslowly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/playitslowly/template b/srcpkgs/playitslowly/template
index d26cea3510a..6d3483ae251 100644
--- a/srcpkgs/playitslowly/template
+++ b/srcpkgs/playitslowly/template
@@ -1,7 +1,7 @@
 # Template file for 'playitslowly'
 pkgname=playitslowly
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From d2e82f0e5981ebb4285cfd2409988c29e913a965 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 741/872] pmbootstrap: rebuild for Python 3.8.

---
 srcpkgs/pmbootstrap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pmbootstrap/template b/srcpkgs/pmbootstrap/template
index 1bfa8183a84..15e606439c2 100644
--- a/srcpkgs/pmbootstrap/template
+++ b/srcpkgs/pmbootstrap/template
@@ -1,7 +1,7 @@
 # Template file for 'pmbootstrap'
 pkgname=pmbootstrap
 version=1.9.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pmb"

From 47600e0ab86689c4a6f0579bf3fa94b0f2accb42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 742/872] pockyt: fix and rebuild for Python 3.8.

---
 srcpkgs/pockyt/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/pockyt/template b/srcpkgs/pockyt/template
index 760573904b1..ff12361d443 100644
--- a/srcpkgs/pockyt/template
+++ b/srcpkgs/pockyt/template
@@ -1,7 +1,7 @@
 # Template file for 'pockyt'
 pkgname=pockyt
 version=1.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -13,3 +13,7 @@ license="GPL-3.0-or-later"
 homepage="https://github.com/arvindch/pockyt"
 distfiles="${homepage}/archive/${version}.tar.gz"
 checksum=cd9561e126a6a01c73762639eb7e38b8c509ed1412f72fcc4729b12565b9962c
+
+post_extract() {
+	sed -i 's/(3, 7)/&, (3, 8)/' setup.py
+}

From 745917b64a29acb44c59c16f84cd1da19242b9da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 743/872] poezio: rebuild for Python 3.8.

---
 srcpkgs/poezio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/poezio/template b/srcpkgs/poezio/template
index 56f8138bb5e..4b318419dab 100644
--- a/srcpkgs/poezio/template
+++ b/srcpkgs/poezio/template
@@ -1,7 +1,7 @@
 # Template file for 'poezio'
 pkgname=poezio
 version=0.12.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="poezio poezio_plugins poezio_themes"
 hostmakedepends="python3-setuptools pkg-config"

From f08563dc5e2ca3a4f512faef50f8d610a44a5417 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 744/872] protontricks: rebuild for Python 3.8.

---
 srcpkgs/protontricks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/protontricks/template b/srcpkgs/protontricks/template
index a32f51c4845..dc003b63690 100644
--- a/srcpkgs/protontricks/template
+++ b/srcpkgs/protontricks/template
@@ -1,7 +1,7 @@
 # Template file for 'protontricks'
 pkgname=protontricks
 version=1.2.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-setuptools"

From 84d15a48851048231bdb7cf8c4b12bac191edc81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 745/872] pulseaudio-equalizer-ladspa: rebuild for Python 3.8.

---
 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 62d7eef2a65..10198de2c08 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=1
+revision=2
 wrksrc="equalizer-${version}"
 build_style=meson
 pycompile_module="pulseeq"

From cbc413860bce0c1bc2bc870cfca1d78b08a3c70d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 746/872] pulseeffects: rebuild for Python 3.8.

---
 srcpkgs/pulseeffects/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pulseeffects/template b/srcpkgs/pulseeffects/template
index 7fc44f938d9..dc9044cad32 100644
--- a/srcpkgs/pulseeffects/template
+++ b/srcpkgs/pulseeffects/template
@@ -2,7 +2,7 @@
 pkgname=pulseeffects
 reverts="4.3.4_1"
 version=3.2.3
-revision=3
+revision=4
 build_style=meson
 pycompile_module="PulseEffects PulseEffectsTest"
 hostmakedepends="pkg-config"

From fa82c60121a5038222e25f989a117e9b66fed5ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 747/872] py3status: rebuild for Python 3.8.

---
 srcpkgs/py3status/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/py3status/template b/srcpkgs/py3status/template
index b7a263270e4..01709cfd14d 100644
--- a/srcpkgs/py3status/template
+++ b/srcpkgs/py3status/template
@@ -1,7 +1,7 @@
 # Template file for 'py3status'
 pkgname=py3status
 version=3.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="py3status"

From 99e46cbedac8347b78860a72942ecf8b994755fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 748/872] pychess: rebuild for Python 3.8.

---
 srcpkgs/pychess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pychess/template b/srcpkgs/pychess/template
index 2c6ecef7bf9..d0594aa77f4 100644
--- a/srcpkgs/pychess/template
+++ b/srcpkgs/pychess/template
@@ -1,7 +1,7 @@
 # Template file for 'pychess'
 pkgname=pychess
 version=0.12.4
-revision=2
+revision=3
 build_style=python3-module
 pycompile_module="pychess"
 archs=noarch

From f5d5094b4231a3151651e50c8c143d0faac48182 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 749/872] pycp: rebuild for Python 3.8.

---
 srcpkgs/pycp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pycp/template b/srcpkgs/pycp/template
index 770eb50d3f4..c9066259862 100644
--- a/srcpkgs/pycp/template
+++ b/srcpkgs/pycp/template
@@ -1,7 +1,7 @@
 # Template file for 'pycp'
 pkgname=pycp
 version=8.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pycp"

From a9316abb40ad6656f8b70d2be897d05e92e2c445 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 750/872] pymol: rebuild for Python 3.8.

---
 srcpkgs/pymol/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pymol/template b/srcpkgs/pymol/template
index 428ba7a6deb..e1031f325c0 100644
--- a/srcpkgs/pymol/template
+++ b/srcpkgs/pymol/template
@@ -1,7 +1,7 @@
 # Template file for 'pymol'
 pkgname=pymol
 version=2.3.0
-revision=1
+revision=2
 wrksrc=${pkgname}-open-source-${version}
 build_style="python3-module"
 makedepends="msgpack-devel python3-numpy freetype-devel libfreeglut-devel glew-devel

From f09d5d387905ce01cc34d50614432404592d57ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 751/872] pyradio: rebuild for Python 3.8.

---
 srcpkgs/pyradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyradio/template b/srcpkgs/pyradio/template
index 10d7d8c6fbb..d2d5feddbdd 100644
--- a/srcpkgs/pyradio/template
+++ b/srcpkgs/pyradio/template
@@ -1,7 +1,7 @@
 # Template file for 'pyradio'
 pkgname=pyradio
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pyradio"

From 5af42ef74126dd9fa795a2c842839cb8887e135e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 752/872] pyside2-tools: rebuild for Python 3.8.

---
 srcpkgs/pyside2-tools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyside2-tools/template b/srcpkgs/pyside2-tools/template
index 4ba0044452d..0a153de8c15 100644
--- a/srcpkgs/pyside2-tools/template
+++ b/srcpkgs/pyside2-tools/template
@@ -1,7 +1,7 @@
 # Template file for 'pyside2-tools'
 pkgname=pyside2-tools
 version=5.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release

From cf86283fda94e4f7a37fec57a2dcaf7df2245af3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 753/872] pysolfc: rebuild for Python 3.8.

---
 srcpkgs/pysolfc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pysolfc/template b/srcpkgs/pysolfc/template
index 62eb90009af..1631e9619d3 100644
--- a/srcpkgs/pysolfc/template
+++ b/srcpkgs/pysolfc/template
@@ -1,7 +1,7 @@
 # Template file for 'pysolfc'
 pkgname=pysolfc
 version=2.6.4
-revision=2
+revision=3
 archs="noarch"
 wrksrc="PySolFC-${pkgname}-${version}"
 build_style=python3-module

From 18f662644a3a4f6bfc49b51d2dc3f1e9a8ceb35f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 754/872] pywal: rebuild for Python 3.8.

---
 srcpkgs/pywal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pywal/template b/srcpkgs/pywal/template
index 214a36698f2..98c4e1581e4 100644
--- a/srcpkgs/pywal/template
+++ b/srcpkgs/pywal/template
@@ -1,7 +1,7 @@
 # Template file for 'pywal'
 pkgname=pywal
 version=3.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pywal"

From 4c664b23fcf828761b2ff29730bc7e3af37661c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 755/872] qomui: rebuild for Python 3.8.

---
 srcpkgs/qomui/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qomui/template b/srcpkgs/qomui/template
index 4e68864252d..8063350ba06 100644
--- a/srcpkgs/qomui/template
+++ b/srcpkgs/qomui/template
@@ -1,7 +1,7 @@
 # Template file for 'qomui'
 pkgname=qomui
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qomui"

From 03e5c0a83dec6db85793336fd91d43a3315b7531 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 756/872] quodlibet: rebuild for Python 3.8.

---
 srcpkgs/quodlibet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/quodlibet/template b/srcpkgs/quodlibet/template
index 53f6e926315..4b0c4ba0de5 100644
--- a/srcpkgs/quodlibet/template
+++ b/srcpkgs/quodlibet/template
@@ -1,7 +1,7 @@
 # Template file for 'quodlibet'
 pkgname=quodlibet
 version=4.2.1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="quodlibet"

From c25e7bf98d74e4f70a1f6e97496153c062556e8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 757/872] qutebrowser: rebuild for Python 3.8.

---
 srcpkgs/qutebrowser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qutebrowser/template b/srcpkgs/qutebrowser/template
index 11b74e4445d..07257c2d84b 100644
--- a/srcpkgs/qutebrowser/template
+++ b/srcpkgs/qutebrowser/template
@@ -1,7 +1,7 @@
 # Template file for 'qutebrowser'
 pkgname=qutebrowser
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qutebrowser"

From 9678b64e70e0cf110e0a1db321fa5dbdce069073 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 758/872] r128gain: rebuild for Python 3.8.

---
 srcpkgs/r128gain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/r128gain/template b/srcpkgs/r128gain/template
index cdea955828e..1cb30c786f8 100644
--- a/srcpkgs/r128gain/template
+++ b/srcpkgs/r128gain/template
@@ -1,7 +1,7 @@
 # Template file for 'r128gain'
 pkgname=r128gain
 version=0.9.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="r128gain"
 hostmakedepends="python3-setuptools"

From 873c796a91a43930919a30f0f31fd6a702c088bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 759/872] radicale2: rebuild for Python 3.8.

---
 srcpkgs/radicale2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/radicale2/template b/srcpkgs/radicale2/template
index 0d8a27d89f3..310bc8cb3cf 100644
--- a/srcpkgs/radicale2/template
+++ b/srcpkgs/radicale2/template
@@ -1,7 +1,7 @@
 # Template file for 'radicale2'
 pkgname=radicale2
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module

From b76ee93222f7fee174ae63614a9a1da3eab43836 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 760/872] ranger: rebuild for Python 3.8.

---
 srcpkgs/ranger/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template
index a387eac4ed7..a49716971a5 100644
--- a/srcpkgs/ranger/template
+++ b/srcpkgs/ranger/template
@@ -1,7 +1,7 @@
 # Template file for 'ranger'
 pkgname=ranger
 version=1.9.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ranger"

From ed185ddba5a93855623b432a9a412429a2bfb7a6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 761/872] rednotebook: rebuild for Python 3.8.

---
 srcpkgs/rednotebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rednotebook/template b/srcpkgs/rednotebook/template
index ac870a7a992..af7dea12fd5 100644
--- a/srcpkgs/rednotebook/template
+++ b/srcpkgs/rednotebook/template
@@ -1,7 +1,7 @@
 # Template file for 'rednotebook'
 pkgname=rednotebook
 version=2.11.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rednotebook"

From 0daed8f8c77c9fee93dd7e9546d5383fb2e71ae2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 762/872] redshift: rebuild for Python 3.8.

---
 srcpkgs/redshift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/redshift/template b/srcpkgs/redshift/template
index bb31e7cec05..c58b8daeb76 100644
--- a/srcpkgs/redshift/template
+++ b/srcpkgs/redshift/template
@@ -1,7 +1,7 @@
 # Template file for 'redshift'
 pkgname=redshift
 version=1.12
-revision=1
+revision=2
 build_style=gnu-configure
 build_options="geoclue2"
 configure_args="--enable-gui --disable-geoclue $(vopt_enable geoclue2)"

From d3b85a8c2fef29f44fa480dc19854bbd4707011d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 763/872] ripe-atlas-tools: rebuild for Python 3.8.

---
 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 c8eef786962..c5e21c4b8dc 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=2.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ripe/atlas/tools"

From 4250c8ac7b20cc84032ce0fbb3bf17c511f5bf80 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 764/872] rmlint: rebuild for Python 3.8.

---
 srcpkgs/rmlint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rmlint/template b/srcpkgs/rmlint/template
index dc8d904d0c2..894a9a1dd01 100644
--- a/srcpkgs/rmlint/template
+++ b/srcpkgs/rmlint/template
@@ -1,7 +1,7 @@
 # Template file for 'rmlint'
 pkgname=rmlint
 version=2.9.0
-revision=1
+revision=2
 build_style=scons
 hostmakedepends="pkg-config python3-Sphinx glib-devel"
 makedepends="libblkid-devel elfutils-devel json-glib-devel"

From 2afa5a195821c3a789d98e4c9d2154f02bf90e43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 765/872] rtv: rebuild for Python 3.8.

---
 srcpkgs/rtv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rtv/template b/srcpkgs/rtv/template
index 1a089e3e88d..1fc137b2e5b 100644
--- a/srcpkgs/rtv/template
+++ b/srcpkgs/rtv/template
@@ -1,7 +1,7 @@
 # Template file for 'rtv'
 pkgname=rtv
 version=1.27.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rtv"

From e55f932cc929409d82f0298d09eeb270ea1ffc8e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 766/872] rubber: rebuild for Python 3.8.

---
 srcpkgs/rubber/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rubber/template b/srcpkgs/rubber/template
index cf668638cef..c7fe4cbbd06 100644
--- a/srcpkgs/rubber/template
+++ b/srcpkgs/rubber/template
@@ -1,7 +1,7 @@
 # Template file for 'rubber'
 pkgname=rubber
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From 3fa1e2b5550ecad5ab2bf113dbbc42f09e9f6a8e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 767/872] safeeyes: rebuild for Python 3.8.

---
 srcpkgs/safeeyes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/safeeyes/template b/srcpkgs/safeeyes/template
index bc35f302011..e7019662316 100644
--- a/srcpkgs/safeeyes/template
+++ b/srcpkgs/safeeyes/template
@@ -1,7 +1,7 @@
 # Template file for 'safeeyes'
 pkgname=safeeyes
 version=2.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="safeeyes"

From b46de00cb6f8b626b115a68ac9f93ffc53f59fdb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 768/872] scapy: rebuild for Python 3.8.

---
 srcpkgs/scapy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scapy/template b/srcpkgs/scapy/template
index 65242f332a8..36972bfd461 100644
--- a/srcpkgs/scapy/template
+++ b/srcpkgs/scapy/template
@@ -1,7 +1,7 @@
 # Template file for 'scapy'
 pkgname=scapy
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="scapy"

From 30a99ae5725d1a482bed5defbe883b897f1d2822 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 769/872] screenplain: rebuild for Python 3.8.

---
 srcpkgs/screenplain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/screenplain/template b/srcpkgs/screenplain/template
index 8410ab45e40..8eb759ae6a6 100644
--- a/srcpkgs/screenplain/template
+++ b/srcpkgs/screenplain/template
@@ -1,7 +1,7 @@
 # Template file for 'screenplain'
 pkgname=screenplain
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenplain"

From 5c98d72e60aaab3cde6775faa81915104c394306 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 770/872] scudcloud: rebuild for Python 3.8.

---
 srcpkgs/scudcloud/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
index 1b9f5f27d8a..1ab2618066e 100644
--- a/srcpkgs/scudcloud/template
+++ b/srcpkgs/scudcloud/template
@@ -1,7 +1,7 @@
 # Template file for 'scudcloud'
 pkgname=scudcloud
 version=1.65
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="scudcloud"
 hostmakedepends="python3-setuptools"

From 6f3ad68b2aa6c33de5221f19c8a8a27f313472fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 771/872] seafile-libclient: rebuild for Python 3.8.

---
 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 47c49d5ceb2..5eda59c1041 100644
--- a/srcpkgs/seafile-libclient/template
+++ b/srcpkgs/seafile-libclient/template
@@ -1,7 +1,7 @@
 # Template file for 'seafile-libclient'
 pkgname=seafile-libclient
 version=7.0.2
-revision=1
+revision=2
 _distname="${pkgname/-libclient/}"
 wrksrc="${_distname}-${version}"
 build_style=gnu-configure

From 2303111b6c6b5ea883a09c17f897a0a16b40fc4e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 772/872] sonata: rebuild for Python 3.8.

---
 srcpkgs/sonata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template
index 3e07610d1e5..fc2d86e6c1a 100644
--- a/srcpkgs/sonata/template
+++ b/srcpkgs/sonata/template
@@ -1,7 +1,7 @@
 # Template file for 'sonata'
 pkgname=sonata
 version=1.7b1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="sonata"

From 6da1a72c9755a57a393427057bbffef56f8ac5fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 773/872] speech-dispatcher: rebuild for Python 3.8.

---
 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 0c27951586a..39cebf1f320 100644
--- a/srcpkgs/speech-dispatcher/template
+++ b/srcpkgs/speech-dispatcher/template
@@ -1,7 +1,7 @@
 # Template build file for 'speech-dispatcher'.
 pkgname=speech-dispatcher
 version=0.8.8
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static"
 short_desc="High-level device independent layer for speech synthesis interface"

From fa28f31d859e28c01dc74c0793a150b2c2b36c10 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 774/872] speedtest-cli: rebuild for Python 3.8.

---
 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 6746ea3a35e..c65d9fd631d 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.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="speedtest.py"

From 7bff7cb445f033116d28442afd0c27064fd0b1ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 775/872] sshuttle: rebuild for Python 3.8.

---
 srcpkgs/sshuttle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sshuttle/template b/srcpkgs/sshuttle/template
index e74d90171f2..04bae9a15c3 100644
--- a/srcpkgs/sshuttle/template
+++ b/srcpkgs/sshuttle/template
@@ -1,7 +1,7 @@
 # Template file for 'sshuttle'
 pkgname=sshuttle
 version=0.78.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="sshuttle"

From 2b75e1514f9248b3fcaa9618d5a4c46859d91a51 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 776/872] sssd: rebuild for Python 3.8.

---
 srcpkgs/sssd/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sssd/template b/srcpkgs/sssd/template
index 2ea28d21bee..13d0da0ba99 100644
--- a/srcpkgs/sssd/template
+++ b/srcpkgs/sssd/template
@@ -1,7 +1,7 @@
 # Template file for 'sssd'
 pkgname=sssd
 version=2.0.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-selinux --without-semanage
  --disable-cifs-idmap-plugin --without-samba --with-os=fedora

From c2df06d9cfb97462622a79c0f7d10a3630523dbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 777/872] stcgal: rebuild for Python 3.8.

---
 srcpkgs/stcgal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stcgal/template b/srcpkgs/stcgal/template
index 3410ccf8678..d75e88837cc 100644
--- a/srcpkgs/stcgal/template
+++ b/srcpkgs/stcgal/template
@@ -1,7 +1,7 @@
 # Template file for 'stcgal'
 pkgname=stcgal
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="stcgal"

From e3d5cff6a1acb5184829736df4a75efd2ddc2939 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 778/872] stig: rebuild for Python 3.8.

---
 srcpkgs/stig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stig/template b/srcpkgs/stig/template
index 0777c5f0cc2..abe5f3b563c 100644
--- a/srcpkgs/stig/template
+++ b/srcpkgs/stig/template
@@ -1,7 +1,7 @@
 # Template file for 'stig'
 pkgname=stig
 version=0.10.1a
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From d9e0ce3c6ca93674e285abd5900ebf51c3d8afff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 779/872] streamlink: rebuild for Python 3.8.

---
 srcpkgs/streamlink/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/streamlink/template b/srcpkgs/streamlink/template
index abcdc12c4ac..59caa85dc8a 100644
--- a/srcpkgs/streamlink/template
+++ b/srcpkgs/streamlink/template
@@ -1,7 +1,7 @@
 # Template file for 'streamlink'
 pkgname=streamlink
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="streamlink streamlink_cli"

From 9545a515c312d91a04d0d2d8e97f12437044fa40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 780/872] subuser: rebuild for Python 3.8.

---
 srcpkgs/subuser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/subuser/template b/srcpkgs/subuser/template
index 50444246b29..0bc3e71db36 100644
--- a/srcpkgs/subuser/template
+++ b/srcpkgs/subuser/template
@@ -1,7 +1,7 @@
 # Template file for 'subuser'
 pkgname=subuser
 version=0.6.2
-revision=2
+revision=3
 archs="x86_64*"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 00c937d56ad1e2aec8b205dba5a9aefa78c49526 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 781/872] synapse: rebuild for Python 3.8.

---
 srcpkgs/synapse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template
index daae80e5792..0c0fd6841fb 100644
--- a/srcpkgs/synapse/template
+++ b/srcpkgs/synapse/template
@@ -1,7 +1,7 @@
 # Template file for 'synapse'
 pkgname=synapse
 version=1.3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From a08980caca6925b14c1b165cc93937700be71dde Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 782/872] tekaim: rebuild for Python 3.8.

---
 srcpkgs/tekaim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tekaim/template b/srcpkgs/tekaim/template
index e3cc5335ecc..bd60dcc57a6 100644
--- a/srcpkgs/tekaim/template
+++ b/srcpkgs/tekaim/template
@@ -1,7 +1,7 @@
 # Template file for 'tekaim'
 pkgname=tekaim
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From d890dd33d09e171c7a7cee354cc021b725451292 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 783/872] telepresence: rebuild for Python 3.8.

---
 srcpkgs/telepresence/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/telepresence/template b/srcpkgs/telepresence/template
index 17300f3b548..fa7f916f66f 100644
--- a/srcpkgs/telepresence/template
+++ b/srcpkgs/telepresence/template
@@ -1,7 +1,7 @@
 # Template file for 'telepresence'
 pkgname=telepresence
 version=0.102
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="telepresence"

From 809ad6584dfe919563065a0d6037d05100240167 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 784/872] termdown: rebuild for Python 3.8.

---
 srcpkgs/termdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/termdown/template b/srcpkgs/termdown/template
index 90a4a894d42..299de920389 100644
--- a/srcpkgs/termdown/template
+++ b/srcpkgs/termdown/template
@@ -1,7 +1,7 @@
 # Template file for 'termdown'
 pkgname=termdown
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="termdown.py"

From 16a5256631ad8647631c4bd0d433e6f5f3c917c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 785/872] terminal_markdown_viewer: rebuild for Python 3.8.

---
 srcpkgs/terminal_markdown_viewer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/terminal_markdown_viewer/template b/srcpkgs/terminal_markdown_viewer/template
index e5d0f38aae2..ba3fcfdc8d6 100644
--- a/srcpkgs/terminal_markdown_viewer/template
+++ b/srcpkgs/terminal_markdown_viewer/template
@@ -1,7 +1,7 @@
 # Template file for 'terminal_markdown_viewer'
 pkgname=terminal_markdown_viewer
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mdv"

From 8fa86b045c3460fc75215ea47cf0b2c589ec5e8b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 786/872] thefuck: rebuild for Python 3.8.

---
 srcpkgs/thefuck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thefuck/template b/srcpkgs/thefuck/template
index 714cd7982c7..a0de1c7b6a3 100644
--- a/srcpkgs/thefuck/template
+++ b/srcpkgs/thefuck/template
@@ -1,7 +1,7 @@
 # Template file for 'thefuck'
 pkgname=thefuck
 version=3.29
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="thefuck"

From cc6d1eec3b77cd13bf5833f6589a86f6aae6f8ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 787/872] thinkpad-scripts: rebuild for Python 3.8.

---
 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 8d26cf23e77..855d42492fb 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tps"

From 3c8de020f1c2c062d6268f1a5336328eeeefbcd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 788/872] thrift: rebuild for Python 3.8.

---
 srcpkgs/thrift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thrift/template b/srcpkgs/thrift/template
index 73b0f59d4f6..e379ac35a09 100644
--- a/srcpkgs/thrift/template
+++ b/srcpkgs/thrift/template
@@ -1,7 +1,7 @@
 # Template file for 'thrift'
 pkgname=thrift
 version=0.12.0
-revision=2
+revision=3
 build_style=gnu-configure
 makedepends="boost-devel libressl-devel"
 short_desc="Apache Thrift compiler"

From 324aa7ceb67702c22e78481ede2e6807738dd827 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 789/872] todoman: rebuild for Python 3.8.

---
 srcpkgs/todoman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/todoman/template b/srcpkgs/todoman/template
index 2e0489ff49e..676412b8d0b 100644
--- a/srcpkgs/todoman/template
+++ b/srcpkgs/todoman/template
@@ -1,7 +1,7 @@
 # Template file for 'todoman'
 pkgname=todoman
 version=3.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="todoman"

From 774a41521523b99b95857d3d27ce1c2fe22714a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 790/872] toot: rebuild for Python 3.8.

---
 srcpkgs/toot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template
index b6dcdc9ede6..7f9fac6ca01 100644
--- a/srcpkgs/toot/template
+++ b/srcpkgs/toot/template
@@ -1,7 +1,7 @@
 # Template file for 'toot'
 pkgname=toot
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="toot"

From 28d64d51bcffc428add93b5377bbf1efbe03d6c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 791/872] torbrowser-launcher: fix and rebuild for Python 3.8.

---
 srcpkgs/torbrowser-launcher/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/torbrowser-launcher/template b/srcpkgs/torbrowser-launcher/template
index a4aa707495c..4986b6b3240 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.2
-revision=1
+revision=2
 archs="i686 x86_64" # limited by Tor Browser itself
 build_style=python3-module
 pycompile_module="torbrowser_launcher"
@@ -15,6 +15,10 @@ changelog="https://raw.githubusercontent.com/micahflee/torbrowser-launcher/maste
 distfiles="https://github.com/micahflee/torbrowser-launcher/archive/v${version}.tar.gz"
 checksum=25ad4b0c70579628bf18f4cdcd18ac303fe4f7f1c590cc48df2a87651c92991c
 
+post_extract() { 
+	# Python 3.8 removed platform.dist()
+	sed -i 's/distro =.*/distro = "Void"/' setup.py
+}
 post_install() {
 	vlicense LICENSE
 	rm ${DESTDIR}/usr/share/locale/torbrowser-launcher.mo # installed twice

From 2c38590e3df050689c7c1447441a20d4cea3f52e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 792/872] tox: rebuild for Python 3.8.

---
 srcpkgs/tox/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tox/template b/srcpkgs/tox/template
index 8c6b63a3cb1..908cb86bb38 100644
--- a/srcpkgs/tox/template
+++ b/srcpkgs/tox/template
@@ -1,7 +1,7 @@
 # Template file for 'tox'
 pkgname=tox
 version=3.14.0
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="tox"
 hostmakedepends="python3-setuptools"

From f2dd191ed0a9f99e59952db0c15d93226a7bf5d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 793/872] trackma: rebuild for Python 3.8.

---
 srcpkgs/trackma/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/trackma/template b/srcpkgs/trackma/template
index 96833382346..4c29bb8a35d 100644
--- a/srcpkgs/trackma/template
+++ b/srcpkgs/trackma/template
@@ -1,7 +1,7 @@
 # Template file for 'trackma'
 pkgname=trackma
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 33027845956879b9967e82f78ec93eb89ccdbb67 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 794/872] trash-cli: rebuild for Python 3.8.

---
 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 2a08548c7c8..4ab724d8cb1 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.17.1.14
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3"

From 4eb7023381ba2f71c7856b572e53f87e66a5c43a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 795/872] tryton: rebuild for Python 3.8.

---
 srcpkgs/tryton/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tryton/template b/srcpkgs/tryton/template
index 196033361f6..61e0f733dc9 100644
--- a/srcpkgs/tryton/template
+++ b/srcpkgs/tryton/template
@@ -1,7 +1,7 @@
 # Template file for 'tryton'
 pkgname=tryton
 version=5.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tryton"

From 61b3464bedc43796966eab9a295630e11b20f510 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 796/872] tuimoji: rebuild for Python 3.8.

---
 srcpkgs/tuimoji/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuimoji/template b/srcpkgs/tuimoji/template
index 71e0bf540c0..73f5cff281f 100644
--- a/srcpkgs/tuimoji/template
+++ b/srcpkgs/tuimoji/template
@@ -1,7 +1,7 @@
 # Template file for 'tuimoji'
 pkgname=tuimoji
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tuimoji"

From 80e3d602a8ffb5e96f6382abd6b6a1a94bccde4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 797/872] tuir: rebuild for Python 3.8.

---
 srcpkgs/tuir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuir/template b/srcpkgs/tuir/template
index dfc0b15c535..a98f4484544 100644
--- a/srcpkgs/tuir/template
+++ b/srcpkgs/tuir/template
@@ -1,7 +1,7 @@
 # Template file for 'tuir'
 pkgname=tuir
 version=1.28.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=python3-module

From a05dee51ef0587f4581bdc503147dbc8d0fda34e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 798/872] tzupdate: rebuild for Python 3.8.

---
 srcpkgs/tzupdate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tzupdate/template b/srcpkgs/tzupdate/template
index 9531f0f7540..de2217476bd 100644
--- a/srcpkgs/tzupdate/template
+++ b/srcpkgs/tzupdate/template
@@ -1,7 +1,7 @@
 # Template file for 'tzupdate'
 pkgname=tzupdate
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tzupdate.py"

From 7036b1289a1ec41c19098983943b287f4a01761c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 799/872] udiskie: rebuild for Python 3.8.

---
 srcpkgs/udiskie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/udiskie/template b/srcpkgs/udiskie/template
index 536f4d5609d..06d58236046 100644
--- a/srcpkgs/udiskie/template
+++ b/srcpkgs/udiskie/template
@@ -1,7 +1,7 @@
 # Template file for 'udiskie'
 pkgname=udiskie
 version=1.7.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="udiskie"

From 9fd0c0e021419cd77de884b219a27876ab90fa72 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 800/872] ueberzug: rebuild for Python 3.8.

---
 srcpkgs/ueberzug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ueberzug/template b/srcpkgs/ueberzug/template
index e0c474ff63e..dfa1ab29d96 100644
--- a/srcpkgs/ueberzug/template
+++ b/srcpkgs/ueberzug/template
@@ -1,7 +1,7 @@
 # Template file for 'ueberzug'
 pkgname=ueberzug
 version=18.1.3
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel libX11-devel libXext-devel"

From c665443fcd0d0f3bcd9b0af8a2fee205a9c84cfa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 801/872] ufw: rebuild for Python 3.8.

---
 srcpkgs/ufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ufw/template b/srcpkgs/ufw/template
index ac7dfa45cdd..0bf2a3a0b76 100644
--- a/srcpkgs/ufw/template
+++ b/srcpkgs/ufw/template
@@ -1,7 +1,7 @@
 # Template file for 'ufw'
 pkgname=ufw
 version=0.36
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="ufw"

From 25de5e750f4874d7593206822c6f3799c9ca16b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 802/872] unicorn: rebuild for Python 3.8.

---
 srcpkgs/unicorn/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/unicorn/template b/srcpkgs/unicorn/template
index 317e261ae88..971d44752ca 100644
--- a/srcpkgs/unicorn/template
+++ b/srcpkgs/unicorn/template
@@ -1,7 +1,7 @@
 # Template file for 'unicorn'
 pkgname=unicorn
 version=1.0.1
-revision=2
+revision=3
 archs="x86_64* i686*"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"
 short_desc="Lightweight multi-platform, multi-architecture CPU emulator framework"

From 9e4dabd0b19bd79e690284ca3d8cbd44ead4aa7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 803/872] unknown-horizons: rebuild for Python 3.8.

---
 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 b5fc593b744..6e81970800d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3 intltool git python3-Pillow"

From 63b9392b25544b409a97e287fb27efb12f3826d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 804/872] urh: rebuild for Python 3.8.

---
 srcpkgs/urh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urh/template b/srcpkgs/urh/template
index 2cec83082fd..31f28bb366b 100644
--- a/srcpkgs/urh/template
+++ b/srcpkgs/urh/template
@@ -1,7 +1,7 @@
 # Template file for 'urh'
 pkgname=urh
 version=2.7.5
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="urh"
 hostmakedepends="python3-setuptools python3-Cython"

From 21d6f757899fc4733345a917b42456df1cf374f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 805/872] urlscan: rebuild for Python 3.8.

---
 srcpkgs/urlscan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlscan/template b/srcpkgs/urlscan/template
index f6f0d1db07b..2bb1688dad7 100644
--- a/srcpkgs/urlscan/template
+++ b/srcpkgs/urlscan/template
@@ -1,7 +1,7 @@
 # Template file for 'urlscan'
 pkgname=urlscan
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlscan"

From b1340a955fbf6f0de37bb82e56d5e5bb6f7fb51d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 806/872] urlwatch: rebuild for Python 3.8.

---
 srcpkgs/urlwatch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlwatch/template b/srcpkgs/urlwatch/template
index e8a5e403c92..1166fe101a7 100644
--- a/srcpkgs/urlwatch/template
+++ b/srcpkgs/urlwatch/template
@@ -1,7 +1,7 @@
 # Template file for 'urlwatch'
 pkgname=urlwatch
 version=2.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlwatch"

From 2da61527e3fb71b6b9edfb41324862bc66cd3f69 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 807/872] vapoursynth: fix and rebuild for Python 3.8.

---
 srcpkgs/vapoursynth/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/vapoursynth/template b/srcpkgs/vapoursynth/template
index dd85e8b39dc..1c417a624c3 100644
--- a/srcpkgs/vapoursynth/template
+++ b/srcpkgs/vapoursynth/template
@@ -1,7 +1,7 @@
 # Template file for 'vapoursynth'
 pkgname=vapoursynth
 version=R47.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake pkg-config libtool nasm python3-Cython"
 makedepends="python3-devel zimg-devel libmagick-devel libass-devel ffmpeg-devel
@@ -21,6 +21,7 @@ case $XBPS_TARGET_MACHINE in
 esac
 
 pre_configure() {
+	sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION/&-embed/g' configure.ac
 	./autogen.sh
 	case $XBPS_TARGET_MACHINE in
 		arm*musl)

From 8cf72938dfcf97f9f1ed39dac376fb800cc0199a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 808/872] variety: rebuild for Python 3.8.

---
 srcpkgs/variety/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/variety/template b/srcpkgs/variety/template
index b4ea756c0c9..4d327a830f8 100644
--- a/srcpkgs/variety/template
+++ b/srcpkgs/variety/template
@@ -1,7 +1,7 @@
 # Template file for 'variety'
 pkgname=variety
 version=0.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="jumble variety variety_lib"

From 626869809e97ac370fadfe8d4c58a138e8e2a09b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 809/872] vdirsyncer: rebuild for Python 3.8.

---
 srcpkgs/vdirsyncer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vdirsyncer/template b/srcpkgs/vdirsyncer/template
index 24080413456..708204afda2 100644
--- a/srcpkgs/vdirsyncer/template
+++ b/srcpkgs/vdirsyncer/template
@@ -1,7 +1,7 @@
 # Template file for 'vdirsyncer'
 pkgname=vdirsyncer
 version=0.16.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="vdirsyncer"

From c224b81d65d4bd99c195e0d3850e0186ee5d1444 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 810/872] vidcutter: rebuild for Python 3.8.

---
 srcpkgs/vidcutter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vidcutter/template b/srcpkgs/vidcutter/template
index 4f30b888805..6ca85d4e766 100644
--- a/srcpkgs/vidcutter/template
+++ b/srcpkgs/vidcutter/template
@@ -1,7 +1,7 @@
 # Template file for 'vidcutter'
 pkgname=vidcutter
 version=6.0.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="vidcutter"

From 2cadf7a6f198c2bd4393d31e0ac457840585369a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 811/872] vimiv: rebuild for Python 3.8.

---
 srcpkgs/vimiv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vimiv/template b/srcpkgs/vimiv/template
index 20fcbe7a03f..a560d4c9d81 100644
--- a/srcpkgs/vimiv/template
+++ b/srcpkgs/vimiv/template
@@ -1,7 +1,7 @@
 # Template file for 'vimiv'
 pkgname="vimiv"
 version=0.9.1
-revision=2
+revision=3
 build_style=gnu-makefile
 pycompile_module=vimiv
 hostmakedepends="python3-setuptools python3-devel"

From f66d7876c7f9fc42185c35a9398e8d9abc91de5d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 812/872] virtme: rebuild for Python 3.8.

---
 srcpkgs/virtme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtme/template b/srcpkgs/virtme/template
index 3905cb24b1d..30035a734f3 100644
--- a/srcpkgs/virtme/template
+++ b/srcpkgs/virtme/template
@@ -1,7 +1,7 @@
 # Template file for 'virtme'
 pkgname=virtme
 version=0.0.3.20180725
-revision=1
+revision=2
 archs=noarch
 _commit=60100bea82183b5d32ed9fca6534cd0fc60d5eb2
 wrksrc="${_commit}"

From 14104be7b72153715770becf8d322e42e63248ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 813/872] virtualenvwrapper: rebuild for Python 3.8.

---
 srcpkgs/virtualenvwrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtualenvwrapper/template b/srcpkgs/virtualenvwrapper/template
index 6007cc5d2ed..1f0c2efee86 100644
--- a/srcpkgs/virtualenvwrapper/template
+++ b/srcpkgs/virtualenvwrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'virtualenvwrapper'
 pkgname=virtualenvwrapper
 version=4.8.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="virtualenvwrapper"

From f9d707b8c54e1a037a9e6b973a6a57d3ab3a06d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 814/872] visidata: rebuild for Python 3.8.

---
 srcpkgs/visidata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/visidata/template b/srcpkgs/visidata/template
index 715896e5f7c..c5c3ae7c82e 100644
--- a/srcpkgs/visidata/template
+++ b/srcpkgs/visidata/template
@@ -1,7 +1,7 @@
 # Template file for 'visidata'
 pkgname=visidata
 version=1.5.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="visidata"

From 950732e157330587a5bc9b3997d5e929e99a7524 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 815/872] volctl: rebuild for Python 3.8.

---
 srcpkgs/volctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template
index 2b01750b9eb..585aabd2495 100644
--- a/srcpkgs/volctl/template
+++ b/srcpkgs/volctl/template
@@ -1,7 +1,7 @@
 # Template file for 'volctl'
 pkgname=volctl
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="volctl"

From 95f58b2e2fef1423e429882b79d2b4aaadb8fffd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 816/872] voltron: rebuild for Python 3.8.

---
 srcpkgs/voltron/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/voltron/template b/srcpkgs/voltron/template
index c258bb9bab9..38f47a824e3 100644
--- a/srcpkgs/voltron/template
+++ b/srcpkgs/voltron/template
@@ -1,7 +1,7 @@
 # Template file for 'voltron'
 pkgname=voltron
 version=0.1.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="voltron"

From 15987c07727f2c18290a8bec6a5d8533265ea131 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 817/872] volume_key: rebuild for Python 3.8.

---
 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 11d7b16bed8..14431cb70e9 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=1
+revision=2
 build_style=gnu-configure
 make_build_args="PYTHON3_CFLAGS=-I${XBPS_CROSS_BASE}/${py3_inc}
  PYTHON_CFLAGS=-I${XBPS_CROSS_BASE}/${py2_inc}"

From d9985830c4851bc918e7480b6da049317fc6cde0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 818/872] weather: rebuild for Python 3.8.

---
 srcpkgs/weather/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weather/template b/srcpkgs/weather/template
index ffa8a828b36..3ac33bfac15 100644
--- a/srcpkgs/weather/template
+++ b/srcpkgs/weather/template
@@ -1,7 +1,7 @@
 # Template file for 'weather'
 pkgname=weather
 version=2.3
-revision=2
+revision=3
 archs=noarch
 hostmakedepends="python3"
 depends="python3"

From 01b1041ae3ae1725dfea5c43f88deb8589fa8a1c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 819/872] wfuzz: rebuild for Python 3.8.

---
 srcpkgs/wfuzz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wfuzz/template b/srcpkgs/wfuzz/template
index b03c1f28add..4a88ab67407 100644
--- a/srcpkgs/wfuzz/template
+++ b/srcpkgs/wfuzz/template
@@ -1,7 +1,7 @@
 # Template file for 'wfuzz'
 pkgname=wfuzz
 version=2.4
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="wfuzz"

From 3b7733b84909412b60910e06f2951fb050473e3f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 820/872] wpgtk: rebuild for Python 3.8.

---
 srcpkgs/wpgtk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpgtk/template b/srcpkgs/wpgtk/template
index 7e9d52b4f81..a722da58f22 100644
--- a/srcpkgs/wpgtk/template
+++ b/srcpkgs/wpgtk/template
@@ -1,7 +1,7 @@
 # Template file for 'wpgtk'
 pkgname=wpgtk
 version=6.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpgtk"

From 822aa4a911d4cc44c9a8bddb49e2ef047590a125 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 821/872] wpull: rebuild for Python 3.8.

---
 srcpkgs/wpull/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpull/template b/srcpkgs/wpull/template
index 5e9b9dcc641..621e1c85428 100644
--- a/srcpkgs/wpull/template
+++ b/srcpkgs/wpull/template
@@ -1,7 +1,7 @@
 # Template file for 'wpull'
 pkgname=wpull
 version=2.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpull"

From 2bf332e5274a0b3c0761dc238405358635da880a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 822/872] wxPython4: rebuild for Python 3.8.

---
 srcpkgs/wxPython4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wxPython4/template b/srcpkgs/wxPython4/template
index 2aa7117d5e0..b65e0b2ffe1 100644
--- a/srcpkgs/wxPython4/template
+++ b/srcpkgs/wxPython4/template
@@ -1,7 +1,7 @@
 # Template file for 'wxPython4'
 pkgname=wxPython4
 version=4.0.6
-revision=2
+revision=3
 wrksrc="wxPython-${version}"
 build_style=python3-module
 pycompile_module="wx"

From 1a9791d34f81ee37e9ad7d0177609d79c5722cf2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 823/872] xcb-proto: rebuild for Python 3.8.

---
 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 1b26ecd73f3..020524bda87 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.13
-revision=2
+revision=3
 archs=noarch
 build_style=gnu-configure
 pycompile_module="xcbgen"

From bcd63ec56fafbc76a0d8f58d8625643e8423fcd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 824/872] xdot: rebuild for Python 3.8.

---
 srcpkgs/xdot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xdot/template b/srcpkgs/xdot/template
index 23f7b1f17e0..f7507ffb8c5 100644
--- a/srcpkgs/xdot/template
+++ b/srcpkgs/xdot/template
@@ -1,7 +1,7 @@
 # Template file for 'xdot'
 pkgname=xdot
 version=1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="xdot.py-${version}"
 build_style=python3-module

From 33173f3413057032d21c88bd743224ca5956a3d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 825/872] xkcdpass: rebuild for Python 3.8.

---
 srcpkgs/xkcdpass/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xkcdpass/template b/srcpkgs/xkcdpass/template
index 46b4a9635f9..37fb6872079 100644
--- a/srcpkgs/xkcdpass/template
+++ b/srcpkgs/xkcdpass/template
@@ -1,7 +1,7 @@
 # Template file for 'xkcdpass'
 pkgname=xkcdpass
 version=1.17.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="XKCD-password-generator-xkcdpass-${version}"
 build_style=python3-module

From c49fb624b4f248639eff2b2d0d46399fa44185b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 826/872] xonsh: rebuild for Python 3.8.

---
 srcpkgs/xonsh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xonsh/template b/srcpkgs/xonsh/template
index 768ebf36022..2dca267d0d1 100644
--- a/srcpkgs/xonsh/template
+++ b/srcpkgs/xonsh/template
@@ -1,7 +1,7 @@
 # Template file for 'xonsh'
 pkgname=xonsh
 version=0.9.12
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="xonsh xontrib"

From f6940a7524d62d31151e639bcfb6a84774a6246c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 827/872] yq: rebuild for Python 3.8.

---
 srcpkgs/yq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yq/template b/srcpkgs/yq/template
index 7c3af7f43c2..dda886c6c40 100644
--- a/srcpkgs/yq/template
+++ b/srcpkgs/yq/template
@@ -1,7 +1,7 @@
 # Template file for 'yq'
 pkgname=yq
 version=2.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From b616e4468c1dbe3e48846ce3129649cfcd0bf847 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 828/872] ytcc: rebuild for Python 3.8.

---
 srcpkgs/ytcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ytcc/template b/srcpkgs/ytcc/template
index feafa404b75..df4195758c7 100644
--- a/srcpkgs/ytcc/template
+++ b/srcpkgs/ytcc/template
@@ -1,7 +1,7 @@
 # Template file for 'ytcc'
 pkgname=ytcc
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ytcc"

From ecd0188a7fa508de7620ebdaff620b1036f63ca1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 829/872] yturl: rebuild for Python 3.8.

---
 srcpkgs/yturl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yturl/template b/srcpkgs/yturl/template
index 6fa3e9872ee..ee14b77b5a0 100644
--- a/srcpkgs/yturl/template
+++ b/srcpkgs/yturl/template
@@ -1,7 +1,7 @@
 # Template file for 'yturl'
 pkgname=yturl
 version=2.0.2
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From b8aa9aaf83391e8517a127450b988ba5158e1143 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 830/872] yubikey-manager: rebuild for Python 3.8.

---
 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 af0330e8e15..fcc7b7cb737 100644
--- a/srcpkgs/yubikey-manager/template
+++ b/srcpkgs/yubikey-manager/template
@@ -1,7 +1,7 @@
 # Template file for 'yubikey-manager'
 pkgname=yubikey-manager
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From f7742bb475472d9be8aa78203a762aa803e66127 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 831/872] z3: rebuild for Python 3.8.

---
 srcpkgs/z3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/z3/template b/srcpkgs/z3/template
index d632a285019..e054915df91 100644
--- a/srcpkgs/z3/template
+++ b/srcpkgs/z3/template
@@ -1,7 +1,7 @@
 # Template file for 'z3'
 pkgname=z3
 version=4.8.6
-revision=2
+revision=3
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=configure
 configure_args="--prefix=/usr -g --python $(vopt_if ocaml --ml)"

From bd88f79891678b05e61ea20c114941c7a464190b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 832/872] zim: rebuild for Python 3.8.

---
 srcpkgs/zim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/zim/template b/srcpkgs/zim/template
index 45b9df5357c..dff4ad22081 100644
--- a/srcpkgs/zim/template
+++ b/srcpkgs/zim/template
@@ -1,7 +1,7 @@
 # Template file for 'zim'
 pkgname=zim
 version=0.71.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="zim"

From c0d6bed534081540b2dca25201a55a79ff23fdd9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 833/872] python3-pafy: rebuild for Python 3.8.

---
 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 ce26f770c69..b59c9a0adff 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.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pafy-${version}"
 build_style=python3-module

From 7204f3a9760080d1b696708578e9814bb7c52c7c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 834/872] python3-perf: rebuild for Python 3.8.

---
 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 a03251f97e8..3d57ddb1c1a 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.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyperf-${version}"
 build_style=python3-module

From 6f2d8d718050c14165b1c0cde55e06a7027ea661 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 835/872] python3-yara: rebuild for Python 3.8.

---
 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 4a6c56dd083..3bdff14a0da 100644
--- a/srcpkgs/python3-yara/template
+++ b/srcpkgs/python3-yara/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-yara'
 pkgname=python3-yara
 version=3.11.0
-revision=1
+revision=2
 wrksrc="yara-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 2734a739227ebfaaeb57ee3d8053936b709150af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:31 +0200
Subject: [PATCH 836/872] azote: rebuild for Python 3.8.

---
 srcpkgs/azote/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/azote/template b/srcpkgs/azote/template
index 0a23c209551..2748cb98733 100644
--- a/srcpkgs/azote/template
+++ b/srcpkgs/azote/template
@@ -1,7 +1,7 @@
 # Template file for 'azote'
 pkgname=azote
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="azote"

From 323748647505898fe307672b215259d25836b457 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 837/872] binwalk: rebuild for Python 3.8.

---
 srcpkgs/binwalk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/binwalk/template b/srcpkgs/binwalk/template
index 461ea4b547a..fccd523d584 100644
--- a/srcpkgs/binwalk/template
+++ b/srcpkgs/binwalk/template
@@ -1,7 +1,7 @@
 # Template file for 'binwalk'
 pkgname=binwalk
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="binwalk"

From ee134598b034585b99960fd3c8747ebfd6163b06 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 838/872] gnome-builder: rebuild for Python 3.8.

---
 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 9ae9ff9d94c..85aeeee9a15 100644
--- a/srcpkgs/gnome-builder/template
+++ b/srcpkgs/gnome-builder/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-builder'
 pkgname=gnome-builder
 version=3.34.1
-revision=1
+revision=2
 build_style=meson
 configure_args="-Dwith_webkit=true -Dwith_sysprof=true -Dhelp=true"
 hostmakedepends="appdata-tools desktop-file-utils flex gobject-introspection

From 6d4dcdd4d0a9e913527f5cd503597fe6f1b1bda3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 839/872] gnome-tweaks: rebuild for Python 3.8.

---
 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 ac1f8bdb873..d0879253ac5 100644
--- a/srcpkgs/gnome-tweaks/template
+++ b/srcpkgs/gnome-tweaks/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-tweaks'
 pkgname=gnome-tweaks
 version=3.34.0
-revision=2
+revision=3
 archs=noarch
 build_style=meson
 pycompile_module="gtweak"

From 5840949e349e954ecec6da04344bedf53faea436 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 840/872] meson: rebuild for Python 3.8.

---
 srcpkgs/meson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meson/template b/srcpkgs/meson/template
index 315a0f27a92..76791451681 100644
--- a/srcpkgs/meson/template
+++ b/srcpkgs/meson/template
@@ -2,7 +2,7 @@
 pkgname=meson
 reverts="0.52.0_1 0.52.0_2"
 version=0.51.2
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mesonbuild"

From bbb82b12f8ee9e5dadd1e00dc0bfbbf4630d104e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 841/872] onionshare: rebuild for Python 3.8.

---
 srcpkgs/onionshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onionshare/template b/srcpkgs/onionshare/template
index c585ae6101e..c37c5962736 100644
--- a/srcpkgs/onionshare/template
+++ b/srcpkgs/onionshare/template
@@ -1,7 +1,7 @@
 # Template file for 'onionshare'
 pkgname=onionshare
 version=2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="onionshare"

From ca39288f48cb14dd5292c1c6741700a891282cfc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 842/872] portage: rebuild for Python 3.8.

---
 srcpkgs/portage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/portage/template b/srcpkgs/portage/template
index b0f34731035..9610428bbf4 100644
--- a/srcpkgs/portage/template
+++ b/srcpkgs/portage/template
@@ -1,7 +1,7 @@
 # Template file for 'portage'
 pkgname=portage
 version=2.3.77
-revision=1
+revision=2
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=python3-module
 pycompile_module="portage _emerge"

From d6740a08049902abd3a56a8f9f5eb614ca470fc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 843/872] rpm: fix and rebuild for Python 3.8.

---
 srcpkgs/rpm/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/rpm/template b/srcpkgs/rpm/template
index 98e35930c4c..695195323fd 100644
--- a/srcpkgs/rpm/template
+++ b/srcpkgs/rpm/template
@@ -1,7 +1,7 @@
 # Template file for 'rpm'
 pkgname=rpm
 version=4.15.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--with-lua --with-cap --with-acl --with-external-db
  --enable-python PYTHON=python3"
@@ -18,7 +18,7 @@ distfiles="http://ftp.rpm.org/releases/rpm-4.15.x/rpm-${version}.tar.bz2"
 checksum=1e06723b13591e57c99ebe2006fb8daddc4cf72efb366a64a34673ba5f61c201
 conflicts="rpmextract>=0" # Both provide rpm2cpio
 
-CFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6"
+CFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nss"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nspr"
 

From 865409d17d11c096751c787dd08244422613085a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 844/872] youtube-dl: rebuild for Python 3.8.

---
 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 d6596b80bd3..f1ae3aa1a74 100644
--- a/srcpkgs/youtube-dl/template
+++ b/srcpkgs/youtube-dl/template
@@ -1,7 +1,7 @@
 # Template file for 'youtube-dl'
 pkgname=youtube-dl
 version=2019.10.16
-revision=1
+revision=2
 archs=noarch
 wrksrc=youtube-dl
 build_style=python3-module

From 0cb5b534b1543f50099e21c9a26de6af1de0c0bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 845/872] blender: rebuild for Python 3.8.

---
 srcpkgs/blender/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template
index 758d1235185..47cb8f8ad13 100644
--- a/srcpkgs/blender/template
+++ b/srcpkgs/blender/template
@@ -1,7 +1,7 @@
 # Template file for 'blender'
 pkgname=blender
 version=2.79b
-revision=9
+revision=10
 build_style="cmake"
 makedepends="
  libgomp-devel libpng-devel tiff-devel python3-devel glu-devel

From 811c1a86667182da9c44b803b93bbc5afcdd8f31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 846/872] freecad: rebuild for Python 3.8.

---
 srcpkgs/freecad/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/freecad/template b/srcpkgs/freecad/template
index 9e9375c4444..26bf34702a2 100644
--- a/srcpkgs/freecad/template
+++ b/srcpkgs/freecad/template
@@ -1,7 +1,7 @@
 # Template file for 'freecad'
 pkgname=freecad
 version=0.18.3
-revision=2
+revision=3
 wrksrc="FreeCAD-${version}"
 build_style=cmake
 

From 30dac185c3b621348bd2ee013d6e1f7391334f1e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 847/872] gdb: rebuild for Python 3.8.

---
 srcpkgs/gdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gdb/template b/srcpkgs/gdb/template
index 9f84e4869e9..39aab79d08a 100644
--- a/srcpkgs/gdb/template
+++ b/srcpkgs/gdb/template
@@ -1,7 +1,7 @@
 # Template file for 'gdb'
 pkgname=gdb
 version=8.3.1
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="/usr/share/gdb"
 configure_args="--disable-werror --disable-nls --with-system-readline

From 0621479e3256e3114d5354e57fbdfedece4a40b9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 848/872] hexchat: rebuild for Python 3.8.

---
 srcpkgs/hexchat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hexchat/template b/srcpkgs/hexchat/template
index fbeaf28ae8a..9f7d7957b76 100644
--- a/srcpkgs/hexchat/template
+++ b/srcpkgs/hexchat/template
@@ -1,7 +1,7 @@
 # Template file for 'hexchat'
 pkgname=hexchat
 version=2.14.2
-revision=6
+revision=7
 build_style=meson
 configure_args="-Dwith-dbus=true -Dwith-ssl=true -Dwith-text=false
  -Dwith-perl=/usr/bin/perl -Dwith-python=python3

From 0508e1efeaa3250557c90a98551db5c6f9eab9af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 849/872] hyperion: rebuild for Python 3.8.

---
 srcpkgs/hyperion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hyperion/template b/srcpkgs/hyperion/template
index 0befdbe7064..7ce415e929e 100644
--- a/srcpkgs/hyperion/template
+++ b/srcpkgs/hyperion/template
@@ -1,7 +1,7 @@
 # Template file for 'hyperion'
 pkgname=hyperion
 version=1.03.2
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DUSE_SYSTEM_PROTO_LIBS=ON -DENABLE_QT5=ON
  -DPROTOBUF_PROTOC_EXECUTABLE=/usr/bin/protoc -DENABLE_AMLOGIC=ON

From f90d060dbb8d1b54707b9ccdc5534a892dc39832 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 850/872] kdevelop-python: rebuild for Python 3.8.

---
 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 0265916a3d0..a306eb8f442 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.4.2
-revision=1
+revision=2
 wrksrc="kdev-python-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/kdevpythonsupport"

From a4f089407a78a26bb4dd55efb1868d48ef370c68 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 851/872] kitty: rebuild for Python 3.8.

---
 srcpkgs/kitty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/kitty/template b/srcpkgs/kitty/template
index d79bcc4acce..54cd08c23ec 100644
--- a/srcpkgs/kitty/template
+++ b/srcpkgs/kitty/template
@@ -1,7 +1,7 @@
 # Template file for 'kitty'
 pkgname=kitty
 version=0.14.6
-revision=1
+revision=2
 pycompile_dirs="usr/lib/kitty"
 hostmakedepends="ncurses pkg-config python3 wayland-devel wayland-protocols"
 makedepends="gettext-devel glfw-devel harfbuzz-devel libxkbcommon-devel

From c50bdc00181acfd54a1164aa5c78fd5420af9c76 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 852/872] krita: rebuild for Python 3.8, fix sha256sum.

Tarball was yanked for trivial fix.
---
 srcpkgs/krita/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/krita/template b/srcpkgs/krita/template
index 7a59fc9ac58..67f128c61ce 100644
--- a/srcpkgs/krita/template
+++ b/srcpkgs/krita/template
@@ -1,7 +1,7 @@
 # Template file for 'krita'
 pkgname=krita
 version=4.2.7.1
-revision=1
+revision=2
 build_style=cmake
 configure_args="-Wno-dev -DBUILD_TESTING=OFF"
 hostmakedepends="extra-cmake-modules pkg-config python3"
@@ -18,6 +18,6 @@ license="GPL-3.0-only"
 homepage="https://krita.org/"
 KDE_SITE="http://ftp5.gwdg.de/pub/linux/kde/stable/"
 distfiles="${KDE_SITE}/krita/${version}/krita-${version}.tar.gz"
-checksum=28218030edca9dfa1c7e255401ca6fc8fe0e5329f7611cfc196e35746d312086
+checksum=3ed29fd9d8e067def55e703fc55312815c21041d274727e228bdbe0478c09c3d
 nocross=yes
 replaces="calligra-krita>=0"

From 6955e98aee7712fc15d4c04645d7403bd08bb10b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:26:38 +0200
Subject: [PATCH 853/872] libpeas: rebuild for Python 3.8.

---
 srcpkgs/libpeas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index a69238bf823..d4dcf8b5941 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,7 +1,7 @@
 # Template file for 'libpeas'
 pkgname=libpeas
 version=1.22.0
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"

From d5bd58c38a14b11dd6f2a3fdaf2c959d498ed2fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 854/872] libreoffice: rebuild for Python 3.8.

---
 srcpkgs/libreoffice/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template
index 6e8685ac0fd..98f04a40304 100644
--- a/srcpkgs/libreoffice/template
+++ b/srcpkgs/libreoffice/template
@@ -1,7 +1,7 @@
 # Template file for 'libreoffice'
 pkgname=libreoffice
 version=6.2.5.2
-revision=2
+revision=3
 build_style=meta
 make_build_args="build-nocheck"
 nocross=yes

From 964a772005f1d048f3df1e669d4c05dd8cd009d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 855/872] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index 1f9c8043b46..34174be7535 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=5
+revision=6
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From dae5562b9ea3004707c77e11062ed4875888ce10 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 856/872] libsigrokdecode: rebuild for Python 3.8.

---
 srcpkgs/libsigrokdecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsigrokdecode/template b/srcpkgs/libsigrokdecode/template
index 59e15dd61b9..cc9d9a10367 100644
--- a/srcpkgs/libsigrokdecode/template
+++ b/srcpkgs/libsigrokdecode/template
@@ -1,7 +1,7 @@
 # Template file for 'libsigrokdecode'
 pkgname=libsigrokdecode
 version=0.5.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="glib-devel python3-devel"

From ed7c70b9f8b490ede33864a933a72c35e58f5793 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 857/872] luxrays: rebuild for Python 3.8.

---
 srcpkgs/luxrays/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/luxrays/template b/srcpkgs/luxrays/template
index c783e9fe3e5..58037fbfc05 100644
--- a/srcpkgs/luxrays/template
+++ b/srcpkgs/luxrays/template
@@ -1,7 +1,7 @@
 # Template file for 'luxrays'
 pkgname=luxrays
 version=3.1
-revision=13
+revision=14
 build_style=cmake
 configure_args="-DLUXRAYS_DISABLE_OPENCL=OFF -DCMAKE_SKIP_RPATH=ON"
 hostmakedepends="flex bison boost-devel"

From f81dc20fbdadf42d30367ddf692b01568cbcf5d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 858/872] navit: rebuild for Python 3.8.

---
 srcpkgs/navit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/navit/template b/srcpkgs/navit/template
index 461689a3c73..24cd151c64b 100644
--- a/srcpkgs/navit/template
+++ b/srcpkgs/navit/template
@@ -1,7 +1,7 @@
 # Template file for 'navit'
 pkgname=navit
 version=0.5.3
-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 2cdf4ada91af7ff1b90ddf1f2fb22403876facb3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 859/872] obs: rebuild for Python 3.8.

---
 srcpkgs/obs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/obs/template b/srcpkgs/obs/template
index 3ed426b1583..45bf81803e4 100644
--- a/srcpkgs/obs/template
+++ b/srcpkgs/obs/template
@@ -1,7 +1,7 @@
 # Template file for 'obs'
 pkgname=obs
 version=24.0.1
-revision=1
+revision=2
 _commit_hash_obs_browser="693498b518cf893876f454ef581e13106e8370ec"
 _commit_hash_obs_vst="fde438f7a8afdf41a7ab386a0aa1a61175fc8427"
 _commit_hash_ftl_sdk="98289f7c2ed754c647d451899b3356850c0c1fa3"

From 4b53e6f247e65e6d02d21723ded3a5b23695da4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 860/872] renderdoc: fix and rebuild for Python 3.8.

---
 srcpkgs/renderdoc/files/swig-py38.patch    | 28 +++++++++++++
 srcpkgs/renderdoc/patches/cmake-py38.patch | 48 ++++++++++++++++++++++
 srcpkgs/renderdoc/template                 |  8 ++--
 3 files changed, 81 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/renderdoc/files/swig-py38.patch
 create mode 100644 srcpkgs/renderdoc/patches/cmake-py38.patch

diff --git a/srcpkgs/renderdoc/files/swig-py38.patch b/srcpkgs/renderdoc/files/swig-py38.patch
new file mode 100644
index 00000000000..0595599c658
--- /dev/null
+++ b/srcpkgs/renderdoc/files/swig-py38.patch
@@ -0,0 +1,28 @@
+From dbe955dd0300d55a32fd73a4eef730b3e30ed5c4 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 20:32:03 +0200
+Subject: [PATCH] swig: avoid use of _PyObject_GC_UNTRACK
+
+It is deprecated[1]. Use PyObject_GC_UnTrack instead.
+
+[1] https://docs.python.org/3/c-api/gcsupport.html#c._PyObject_GC_UNTRACK
+---
+ Lib/python/builtin.swg | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Lib/python/builtin.swg b/Lib/python/builtin.swg
+index 9597653b7..6af45a9d1 100644
+--- a/Lib/python/builtin.swg
++++ b/Lib/python/builtin.swg
+@@ -120,7 +120,7 @@ SwigPyBuiltin_FunpackSetterClosure (PyObject *obj, PyObject *val, void *closure)
+ 
+ SWIGINTERN void
+ SwigPyStaticVar_dealloc(PyDescrObject *descr) {
+-  _PyObject_GC_UNTRACK(descr);
++  PyObject_GC_UnTrack(descr);
+   Py_XDECREF(PyDescr_TYPE(descr));
+   Py_XDECREF(PyDescr_NAME(descr));
+   PyObject_GC_Del(descr);
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/patches/cmake-py38.patch b/srcpkgs/renderdoc/patches/cmake-py38.patch
new file mode 100644
index 00000000000..fc1adb9ddbc
--- /dev/null
+++ b/srcpkgs/renderdoc/patches/cmake-py38.patch
@@ -0,0 +1,48 @@
+From 56769d3e2cc12670b73a1ddd9dfaab959340c2e2 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 21:27:02 +0200
+Subject: [PATCH] CMake: py3.8 support, ability to patch swig
+
+Add 3.8 to list of python versions and ability to patch the custom
+swig, also needed for 3.8
+---
+ CMakeLists.txt            | 2 +-
+ qrenderdoc/CMakeLists.txt | 2 ++
+ 2 files changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 13818e5b8..00feda2ad 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -308,7 +308,7 @@ add_subdirectory(renderdoc)
+ # are handled in common
+ if(ENABLE_QRENDERDOC OR ENABLE_PYRENDERDOC)
+     # Make sure Python 3 is found
+-    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7)
++    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7 3.8)
+     find_package(PythonInterp 3 REQUIRED)
+     find_package(PythonLibs 3 REQUIRED)
+     # we also need python3-config for swig
+diff --git a/qrenderdoc/CMakeLists.txt b/qrenderdoc/CMakeLists.txt
+index 9fd65b2d3..1ef284349 100644
+--- a/qrenderdoc/CMakeLists.txt
++++ b/qrenderdoc/CMakeLists.txt
+@@ -7,6 +7,7 @@ endif()
+ 
+ set(QMAKE_QT5_COMMAND ${QT_QMAKE_EXECUTABLE} CACHE STRING "Command to run to invoke Qt5's qmake. Normally this is qmake, possibly with qtchooser, but might be qmake-qt5")
+ set(RENDERDOC_SWIG_PACKAGE https://github.com/baldurk/swig/archive/renderdoc-modified-6.zip CACHE STRING "The location where RenderDoc's swig fork source can be found. By default points to the URL on github but can be pointed to a local file.")
++set(RENDERDOC_SWIG_PATCH "" CACHE STRING "The location for the patch to apply to swig.")
+ 
+ set(QMAKE_CONFIG "debug")
+ set(QMAKE_LDFLAGS "")
+@@ -99,6 +100,7 @@ ExternalProject_Add(custom_swig
+     # using an URL to a zip directly so we don't clone the history etc
+     URL ${RENDERDOC_SWIG_PACKAGE}
+     BUILD_IN_SOURCE 1
++    PATCH_COMMAND patch -p1 -i ${RENDERDOC_SWIG_PATCH} > /dev/null
+     CONFIGURE_COMMAND ./autogen.sh > /dev/null 2>&1
+     COMMAND CC=${SWIG_CONFIGURE_CC} CXX=${SWIG_CONFIGURE_CXX} CFLAGS=-fPIC CXXFLAGS=-fPIC ./configure --with-pcre=yes --prefix=${CMAKE_BINARY_DIR} > /dev/null
+     BUILD_COMMAND ${GENERATOR_MAKE} > /dev/null 2>&1
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/template b/srcpkgs/renderdoc/template
index 32d051864d3..9972d9435b0 100644
--- a/srcpkgs/renderdoc/template
+++ b/srcpkgs/renderdoc/template
@@ -1,11 +1,13 @@
 # Template file for 'renderdoc'
 pkgname=renderdoc
 version=1.4
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DENABLE_GL=ON -DENABLE_GLES=ON -DENABLE_QRENDERDOC=ON
  -DENABLE_RENDERDOCCMD=ON -DENABLE_VULKAN=ON -DENABLE_XCB=ON -DENABLE_XLIB=ON
- -DENABLE_PYRENDERDOC=ON"
+ -DENABLE_PYRENDERDOC=ON
+ -DRENDERDOC_SWIG_PATCH=${XBPS_SRCPKGDIR}/${pkgname}/files/swig-py38.patch"
+patch_args="-p1"
 hostmakedepends="bison autoconf automake pkg-config python3"
 makedepends="libX11-devel libxcb-devel xcb-util-keysyms-devel libGL qt5-devel
  qt5-svg-devel qt5-x11extras-devel pcre-devel python3-devel"
@@ -17,7 +19,7 @@ distfiles="https://github.com/baldurk/${pkgname}/archive/v${version}.tar.gz"
 checksum=9a78951f386fb7c3ecf7df6919d300db59719d14f0621438963ae30a75d33677
 
 case "$XBPS_TARGET_MACHINE" in
-	*-musl) broken="This package uses execnfo.h which is not available on musl"
+	*-musl) broken="This package uses execinfo.h which is not available on musl"
 esac
 
 if [ "$CROSS_BUILD" ]; then

From 903e4a6b8a4a53b78aca6235a20477f28b55104e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 861/872] sigil: rebuild for Python 3.8.

---
 srcpkgs/sigil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sigil/template b/srcpkgs/sigil/template
index 4a90ef95798..1d577ee3487 100644
--- a/srcpkgs/sigil/template
+++ b/srcpkgs/sigil/template
@@ -1,7 +1,7 @@
 # Template file for 'sigil'
 pkgname=sigil
 version=0.9.13
-revision=1
+revision=2
 wrksrc="Sigil-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/sigil/python3lib"

From b7415d707e7c9e71a8d790e9cfce9617ff22b7a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 862/872] uwsgi: rebuild for Python 3.8.

---
 srcpkgs/uwsgi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/uwsgi/template b/srcpkgs/uwsgi/template
index 2e96cd2e38e..e283d6bc357 100644
--- a/srcpkgs/uwsgi/template
+++ b/srcpkgs/uwsgi/template
@@ -1,7 +1,7 @@
 # Template file for 'uwsgi'
 pkgname=uwsgi
 version=2.0.18
-revision=1
+revision=2
 hostmakedepends="python python3"
 makedepends="python-devel python3-devel"
 short_desc="Fast, self-healing application container server"

From 4f58025455bb49a6fb774a474aba13ad7f5c4412 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 863/872] vim: rebuild for Python 3.8.

---
 srcpkgs/vim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vim/template b/srcpkgs/vim/template
index 8f543069d19..7c7fd4a30f7 100644
--- a/srcpkgs/vim/template
+++ b/srcpkgs/vim/template
@@ -1,7 +1,7 @@
 # Template file for 'vim'
 pkgname=vim
 version=8.1.2021
-revision=3
+revision=4
 hostmakedepends="glib-devel pkg-config"
 makedepends="acl-devel gtk+3-devel libXt-devel lua-devel ncurses-devel
  perl python-devel python3-devel ruby-devel"

From 51a99f19037a5fe04d0e591aec88ddb4ff7cc85e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 864/872] weechat: rebuild for Python 3.8.

---
 srcpkgs/weechat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weechat/template b/srcpkgs/weechat/template
index 19f8af4fd8f..14c3e2360f5 100644
--- a/srcpkgs/weechat/template
+++ b/srcpkgs/weechat/template
@@ -1,7 +1,7 @@
 # Template file for 'weechat'
 pkgname=weechat
 version=2.6
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_MAN=ON -DENABLE_ENCHANT=ON -DENABLE_PERL=ON
  -DENABLE_LUA=ON -DENABLE_RUBY=ON -DENABLE_SPELL=ON

From a45db3d2782675fe1830f4ea9f3780f075973dcb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 865/872] znc: rebuild for Python 3.8.

---
 srcpkgs/znc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/znc/template b/srcpkgs/znc/template
index 8af8f23a145..696b59133c8 100644
--- a/srcpkgs/znc/template
+++ b/srcpkgs/znc/template
@@ -1,7 +1,7 @@
 # Template file for 'znc'
 pkgname=znc
 version=1.7.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="
  --enable-python

From 9c15678ec3e225f98b4d7f3e8d103bf1ec60d7c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:18:51 +0200
Subject: [PATCH 866/872] boost: rebuild for Python 3.8.

---
 srcpkgs/boost/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 40a4fe67730..1fb0e8ed519 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=5
+revision=6
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"

From 4ab56583f1e4c6bbb215f9633179f8571907619d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:10 +0200
Subject: [PATCH 867/872] python-pyside: remove, obsolete.

---
 srcpkgs/python-pyside/INSTALL.msg | 1 -
 srcpkgs/python-pyside/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/python-pyside/INSTALL.msg
 delete mode 100644 srcpkgs/python-pyside/template

diff --git a/srcpkgs/python-pyside/INSTALL.msg b/srcpkgs/python-pyside/INSTALL.msg
deleted file mode 100644
index 6de207b7aa2..00000000000
--- a/srcpkgs/python-pyside/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-python-pyside is no longer provided by Void Linux, and will be fully removed from the repos on 2019-07-17
diff --git a/srcpkgs/python-pyside/template b/srcpkgs/python-pyside/template
deleted file mode 100644
index 7053f0e7fc3..00000000000
--- a/srcpkgs/python-pyside/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'python-pyside'
-pkgname=python-pyside
-version=1.2.2
-revision=7
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="http://www.pyside.org/"

From 5ddfaffd91d6b6a64dafb458d39629362dc46f10 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:52 +0200
Subject: [PATCH 868/872] pyside-tools: remove, obsolete.

---
 srcpkgs/pyside-tools/INSTALL.msg | 1 -
 srcpkgs/pyside-tools/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/pyside-tools/INSTALL.msg
 delete mode 100644 srcpkgs/pyside-tools/template

diff --git a/srcpkgs/pyside-tools/INSTALL.msg b/srcpkgs/pyside-tools/INSTALL.msg
deleted file mode 100644
index fdb45eb0f42..00000000000
--- a/srcpkgs/pyside-tools/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-pyside-tools is no longer provided by Void Linux, and will be fully removed from the repos on 2019-10-30
diff --git a/srcpkgs/pyside-tools/template b/srcpkgs/pyside-tools/template
deleted file mode 100644
index 27cfc18eea4..00000000000
--- a/srcpkgs/pyside-tools/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'pyside-tools'
-pkgname=pyside-tools
-version=0.2.15
-revision=2
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="https://wiki.qt.io/"

From c56e4ccd06c9624898aba66422ca2f832a081d48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:22:03 +0200
Subject: [PATCH 869/872] shiboken: remove, obsolete.

---
 srcpkgs/shiboken/patches/python3.6.patch |  11 ---
 srcpkgs/shiboken/template                | 110 -----------------------
 2 files changed, 121 deletions(-)
 delete mode 100644 srcpkgs/shiboken/patches/python3.6.patch
 delete mode 100644 srcpkgs/shiboken/template

diff --git a/srcpkgs/shiboken/patches/python3.6.patch b/srcpkgs/shiboken/patches/python3.6.patch
deleted file mode 100644
index 7145fb4308b..00000000000
--- a/srcpkgs/shiboken/patches/python3.6.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- cmake/Modules/FindPython3Libs.cmake.orig
-+++ cmake/Modules/FindPython3Libs.cmake
-@@ -27,7 +27,7 @@
- # Search for the python framework on Apple.
- # CMAKE_FIND_FRAMEWORKS(Python)
- 
--FOREACH(_CURRENT_VERSION 3.4 3.3 3.2 3.1 3.0)
-+FOREACH(_CURRENT_VERSION 3.6 3.5 3.4 3.3 3.2 3.1 3.0)
-   IF(_CURRENT_VERSION GREATER 3.1)
-       SET(_32FLAGS "m" "u" "mu" "dm" "du" "dmu" "")
-   ELSE()
diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
deleted file mode 100644
index 34174be7535..00000000000
--- a/srcpkgs/shiboken/template
+++ /dev/null
@@ -1,110 +0,0 @@
-# Template file for 'shiboken'
-pkgname=shiboken
-version=1.2.2
-revision=6
-wrksrc="shiboken-${version}"
-hostmakedepends="cmake"
-makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"
-short_desc="CPython bindings generator for C++ libraries"
-maintainer="Enno Boland <gottox@voidlinux.org>"
-homepage="http://www.pyside.org"
-license="LGPL-2.1"
-distfiles="https://download.qt.io/official_releases/pyside/shiboken-${version}.tar.bz2"
-checksum=7625bbcf1fe313fd910c6b8c9cf49ac5495499f9d00867115a2f1f2a69fce5c4
-
-nocross="https://travis-ci.org/voidlinux/void-packages/jobs/269193001#L906"
-
-pre_build() {
-	# Fix inconsistent naming of libshiboken.so and ShibokenConfig.cmake
-	sed -i "/get_config_var('SOABI')/d" cmake/Modules/FindPython3InterpWithDebug.cmake
-}
-do_build() {
-	local args= configure_args="
-		-DCMAKE_INSTALL_PREFIX=/usr \
-		-DCMAKE_BUILD_TYPE=Release \
-		-DBUILD_TESTS=OFF"
-
-	for pyver in $py2_ver $py3_ver; do
-		args=
-		if [ "$pyver" = "$py2_ver" ]; then
-			args="-DPYTHON_SUFFIX=-python$py2_ver"
-		else
-			args="-DUSE_PYTHON3=yes"
-		fi
-
-		[ ! -d build-${pyver} ] && mkdir build-${pyver}
-		pushd build-${pyver}
-		cmake .. ${configure_args} ${args}
-		make ${makejobs}
-		popd
-	done
-}
-do_install() {
-	for pyver in $py2_ver $py3_ver; do
-		make -C build-${pyver} DESTDIR=${DESTDIR} install
-	done
-}
-post_install() {
-	# Fix conflict between .pc files
-	rm -f ${DESTDIR}/usr/lib/pkgconfig/*
-	for pyver in $py2_ver $py3_ver; do
-		vinstall build-${pyver}/data/shiboken.pc 644 \
-			usr/lib/pkgconfig shiboken-python${pyver}.pc
-	done
-}
-
-libshiboken-common-devel_package() {
-	depends="${sourcepkg}-${version}_${revision}"
-	short_desc+=" - common development files"
-	pkg_install() {
-		vmove usr/include
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig.cmake
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfigVersion.cmake
-	}
-}
-libshiboken-python-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python-${version}_${revision}"
-	short_desc="Python2 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py2_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py2_ver}.pc
-		vmove usr/lib/libshiboken-python${py2_ver}.so
-	}
-}
-libshiboken-python_package() {
-	short_desc="Python2 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version}
-	}
-}
-python-shiboken_package() {
-	short_desc="Python2 shiboken bindings"
-	pkg_install() {
-		vmove ${py2_sitelib}/shiboken.so
-	}
-}
-libshiboken-python3-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python3-${version}_${revision}"
-	short_desc="Python3 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py3_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py3_ver}.pc
-		vmove usr/lib/libshiboken-python${py3_ver}.so
-	}
-}
-libshiboken-python3_package() {
-	short_desc="Python3 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version}
-	}
-}
-python3-shiboken_package() {
-	short_desc="Python3 shiboken bindings"
-	pkg_install() {
-		vmove ${py3_sitelib}/shiboken.so
-	}
-}

From b7ec477c9ff652b3de0e4e69a33e2b94798df398 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:34:00 +0200
Subject: [PATCH 870/872] boost: rebuild for Python 3.8.

Also ensure bjam is called with the same parameters, to avoid
a full rebuild with -j1 in do_install.
---
 common/shlibs          |  2 +-
 srcpkgs/boost/template | 13 +++++++------
 2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/common/shlibs b/common/shlibs
index f5133935773..92dae1c282c 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -683,7 +683,7 @@ libboost_stacktrace_noop.so.1.69.0 libboost_stacktrace_noop1.69-1.69.0_1<1.70.0
 libboost_stacktrace_addr2line.so.1.69.0 libboost_stacktrace_addr2line1.69-1.69.0_1<1.70.0
 libboost_stacktrace_basic.so.1.69.0 libboost_stacktrace_basic1.69-1.69.0_1<1.70.0
 libboost_python27.so.1.69.0 boost-python1.69-1.69.0_1<1.70.0
-libboost_python36.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
+libboost_python38.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
 libexempi.so.8 exempi-2.5.0_1
 libatasmart.so.4 libatasmart-0.17_1
 libsgutils2.so.2 libsgutils-1.42_1
diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 1fb0e8ed519..b516b348b14 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=6
+revision=7
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"
@@ -60,9 +60,9 @@ do_build() {
 	using python : ${py3_ver} : ${XBPS_CROSS_BASE}/usr/bin/python3 : ${XBPS_CROSS_BASE}${py3_inc} : ${XBPS_CROSS_BASE}${py3_lib} ;
 
 	__EOF
-	./bjam ${makejobs} \
+	./bjam ${makejobs} --prefix=${DESTDIR}/usr \
 		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam --debug-building \
+		--user-config=${wrksrc}/user-config.jam \
 		python=2.7,${py3_ver}
 }
 do_install() {
@@ -72,9 +72,10 @@ do_install() {
 	done
 
 	# Install headers/libs
-	./bjam --prefix=${DESTDIR}/usr abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam python=2.7,${py3_ver} install
-
+	./bjam --prefix=${DESTDIR}/usr \
+		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
+		--user-config=${wrksrc}/user-config.jam \
+		python=2.7,${py3_ver} install
 	# Install Boost.Build stuff.
 	vmkdir usr/share/boost-build
 	cd ${wrksrc}/tools/build && cp -a . ${DESTDIR}/usr/share/boost-build

From 4bced237fec782dd812ff03718fc0e2f7eb1d0fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 19:40:03 +0200
Subject: [PATCH 871/872] libpeas: update to 1.24.0.

---
 srcpkgs/libpeas/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index d4dcf8b5941..1ff2598c527 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,8 +1,8 @@
 # Template file for 'libpeas'
 pkgname=libpeas
-version=1.22.0
-revision=6
-build_style=gnu-configure
+version=1.24.0
+revision=1
+build_style=meson
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"
 makedepends="vala-devel gtk+3-devel python3-gobject-devel
@@ -13,7 +13,7 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://wiki.gnome.org/Projects/Libpeas"
 distfiles="${GNOME_SITE}/${pkgname}/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=5b2fc0f53962b25bca131a5ec0139e6fef8e254481b6e777975f7a1d2702a962
+checksum=0b9a00138c129a663de3eef5569b00ace03ce31d345f7af783768e9f35c8e6f9
 
 pre_build() {
 	if [ "$CROSS_BUILD" ]; then
@@ -35,7 +35,6 @@ libpeas-devel_package() {
 		vmove usr/lib/pkgconfig
 		vmove "usr/lib/*.so"
 		vmove usr/share/gir-1.0
-		vmove usr/share/gtk-doc
 		vmove usr/share/glade
 	}
 }

From 7295a70530a949207fdd145518b3e1f27348d385 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 20:33:53 +0200
Subject: [PATCH 872/872] scudcloud: upstream dead.

---
 srcpkgs/scudcloud/template | 21 ---------------------
 1 file changed, 21 deletions(-)
 delete mode 100644 srcpkgs/scudcloud/template

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
deleted file mode 100644
index 1ab2618066e..00000000000
--- a/srcpkgs/scudcloud/template
+++ /dev/null
@@ -1,21 +0,0 @@
-# Template file for 'scudcloud'
-pkgname=scudcloud
-version=1.65
-revision=2
-build_style=python3-module
-pycompile_module="scudcloud"
-hostmakedepends="python3-setuptools"
-makedepends="python3-setuptools python-PyQt5 python-dbus python3-PyQt5-dbus"
-depends="python3-setuptools python-PyQt5 python3-PyQt5-dbus
- python3-PyQt5-webkit xdg-utils"
-short_desc="Non official desktop client app for Slack"
-archs=noarch
-maintainer="Gurpreet Singh <gurpreet@mailfence.com>"
-license="MIT"
-homepage="https://launchpad.net/~rael-gc/+archive/ubuntu/scudcloud"
-distfiles="https://github.com/raelgc/${pkgname}/archive/v${version}.tar.gz"
-checksum=1b5420a868a37e181655e9799a3d1fcbbc0b0112349c44ac3d7936b626334791
-
-post_install() {
-	vlicense LICENSE
-}

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PR PATCH] [Updated] [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (3 preceding siblings ...)
  2019-10-19 18:43 ` voidlinux-github
@ 2019-10-19 19:02 ` voidlinux-github
  2019-10-19 19:02 ` voidlinux-github
                   ` (27 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-10-19 19:02 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1010 bytes --]

There is an updated pull request by leahneukirchen against master on the void-packages repository

https://github.com/leahneukirchen/void-packages python38
https://github.com/void-linux/void-packages/pull/15623

[WIP] Python 3.8
This huge PR tries to bump all packages that either shlib-require
libpython3.6m.so.1.0 or put files into /usr/lib/python3.6/site-packages.

Broken packages (on x86_64):

- [ ] attic -> upstream dead, remove?
- [ ] blender -> update to 2.80
- [ ] eolie -> meson
- [x] fontforge
- [ ] freecad
- [ ] gst1-python -> meson
- [ ] libopenshot -> gcc9 issue, but supposedly fixed? @Spencer-H 
- [x] libpeas
- [x] nagstamon
- [ ] paraview
- [x] pockyt
- [ ] ~~scudcloud~~
- [x] torbrowser-launcher
- [ ] unknown-horizons
- [x] vapoursynth
- [x] variety
- [ ] kdevelop-python
- [ ] krita: SHA256 mismatch
- [x] ~~shiboken~~
- [x] renderdoc

Untested:

- [ ] libreoffice


A patch file from https://github.com/void-linux/void-packages/pull/15623.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python38-15623.patch --]
[-- Type: text/x-diff, Size: 632684 bytes --]

From 9907b26ec9aacb2c9c990c665c32502ef0f7c808 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:06:59 +0200
Subject: [PATCH 001/872] python3: update to 3.8.0.

---
 common/shlibs                                 |  3 ++-
 .../python3/patches/fix-xattrs-glibc.patch    | 13 ----------
 srcpkgs/python3/patches/libressl-2.6.patch    | 26 -------------------
 srcpkgs/python3/template                      | 23 ++++++++--------
 4 files changed, 13 insertions(+), 52 deletions(-)
 delete mode 100644 srcpkgs/python3/patches/fix-xattrs-glibc.patch
 delete mode 100644 srcpkgs/python3/patches/libressl-2.6.patch

diff --git a/common/shlibs b/common/shlibs
index cc3fd8383d8..f5133935773 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1698,8 +1698,9 @@ libefiboot.so.1 libefivar-31_1
 libportaudio.so.2 portaudio-19.20140130_1
 libportaudiocpp.so.0 portaudio-cpp-19.20140130_1
 libdar.so.5000 libdar-2.4.14_1
-libpython3.so python3-3.6.2_1
 libpython3.6m.so.1.0 python3-3.6.2_1
+libpython3.so python3-3.8.0_1
+libpython3.8.so.1.0 python3-3.8.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.25.28_1
diff --git a/srcpkgs/python3/patches/fix-xattrs-glibc.patch b/srcpkgs/python3/patches/fix-xattrs-glibc.patch
deleted file mode 100644
index 909901293d5..00000000000
--- a/srcpkgs/python3/patches/fix-xattrs-glibc.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- Modules/posixmodule.c.orig
-+++ Modules/posixmodule.c
-@@ -103,8 +103,9 @@ corresponding Unix manual entries for more information on calls.");
- #undef HAVE_SCHED_SETAFFINITY
- #endif
- 
--#if defined(HAVE_SYS_XATTR_H) && defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
-+#if defined(HAVE_SYS_XATTR_H) && defined(__linux__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
- #define USE_XATTRS
-+#include <linux/limits.h>
- #endif
- 
- #ifdef USE_XATTRS
diff --git a/srcpkgs/python3/patches/libressl-2.6.patch b/srcpkgs/python3/patches/libressl-2.6.patch
deleted file mode 100644
index 92dcf1ef06e..00000000000
--- a/srcpkgs/python3/patches/libressl-2.6.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-https://github.com/python/cpython/pull/4930
-
---- Lib/test/test_ssl.py.orig
-+++ Lib/test/test_ssl.py
-@@ -29,6 +29,12 @@
- PROTOCOLS = sorted(ssl._PROTOCOL_NAMES)
- HOST = support.HOST
- IS_LIBRESSL = ssl.OPENSSL_VERSION.startswith('LibreSSL')
-+if IS_LIBRESSL:
-+    LIBRESSL_VERSION = tuple(
-+        int(s) for s in ssl.OPENSSL_VERSION.rsplit(' ')[-1].split('.')
-+    )
-+else:
-+    LIBRESSL_VERSION = ()
- IS_OPENSSL_1_1 = not IS_LIBRESSL and ssl.OPENSSL_VERSION_INFO >= (1, 1, 0)
- 
- 
-@@ -3392,6 +3398,8 @@ def test_selected_npn_protocol(self):
-                                        chatty=True, connectionchatty=True)
-             self.assertIs(stats['client_npn_protocol'], None)
- 
-+        @unittest.skipIf(IS_LIBRESSL and LIBRESSL_VERSION >= (2, 6, 1),
-+                         "LibreSSL 2.6.1+ has broken NPN support")
-         @unittest.skipUnless(ssl.HAS_NPN, "NPN support needed for this test")
-         def test_npn_protocols(self):
-             server_protocols = ['http/1.1', 'spdy/2']
diff --git a/srcpkgs/python3/template b/srcpkgs/python3/template
index 60bd4411ba8..b03a59beea8 100644
--- a/srcpkgs/python3/template
+++ b/srcpkgs/python3/template
@@ -3,7 +3,7 @@
 # THIS PKG MUST BE SYNCHRONIZED WITH "srcpkgs/python3-tkinter".
 #
 pkgname=python3
-version=3.6.9
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 short_desc="Interpreted, interactive, object-oriented programming language (${version%.*} series)"
@@ -11,7 +11,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=5e2f5f554e3f8f7f0296f7e73d8600c4e9acbaee6b2555b83206edf5153870da
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pycompile_dirs="usr/lib/python${version%.*}"
 hostmakedepends="pkg-config"
@@ -27,8 +27,7 @@ alternatives="
  python:python.1:/usr/share/man/man1/python${version%.*}.1"
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,13 +71,13 @@ do_install() {
 	rm -rf ${DESTDIR}/usr/lib/python${version%.*}/lib2to3/tests
 	# Remove references to the install(1) wrapper.
 	sed -e "s,${XBPS_WRAPPERDIR},/usr/bin,g" -i \
-		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/Makefile
 	if [ "$CROSS_BUILD" ]; then
 		# Remove references to cross toolchain.
 		sed -i "s/$XBPS_CROSS_TRIPLET-//g" \
-			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}/Makefile
 	fi
 }
 
@@ -89,10 +88,10 @@ python3-devel_package() {
 		vmove usr/bin/python*-config
 		vmove usr/lib/pkgconfig
 		vmove usr/include
-		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/libpython${version%.*}m.a \
+		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/libpython${version%.*}*.a \
 			${PKGDESTDIR}/usr/lib
-		mkdir -p ${DESTDIR}/usr/include/python${version%.*}m
-		mv ${PKGDESTDIR}/usr/include/python${version%.*}m/pyconfig.h \
-			${DESTDIR}/usr/include/python${version%.*}m
+		mkdir -p ${DESTDIR}/usr/include/python${version%.*}
+		mv ${PKGDESTDIR}/usr/include/python${version%.*}/pyconfig.h \
+			${DESTDIR}/usr/include/python${version%.*}
 	}
 }

From 82deb1f06d09e93aabaa46495a066cec2647de81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 17:09:57 +0200
Subject: [PATCH 002/872] python3-tkinter: update to 3.8.0.

---
 srcpkgs/python3-tkinter/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template
index 83906219af8..874be51ebdf 100644
--- a/srcpkgs/python3-tkinter/template
+++ b/srcpkgs/python3-tkinter/template
@@ -7,7 +7,7 @@
 _desc="Interpreted, interactive, object-oriented programming language"
 
 pkgname=python3-tkinter
-version=3.6.8
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 pycompile_dirs="
@@ -22,11 +22,10 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=35446241e995773b1bed7d196f4b624dadcadc8429f26282e756b2fb8a351193
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used.
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used.
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,7 +71,7 @@ do_install() {
 		mv ${wrksrc}/${pkgname}-${version}-install/usr/lib/python${version%.*}/${lib} \
 			${DESTDIR}/usr/lib/python${version%.*}/
 	done
-	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*m*.so \
+	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*.so \
 		${DESTDIR}/usr/lib/python${version%.*}/lib-dynload/
 	ln -sf idle${version%.*} ${DESTDIR}/usr/bin/idle3
 }

From 8bb33f77d591103b56f40685a4b61f57b43219cd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:42:15 +0200
Subject: [PATCH 003/872] common/environment/setup/python.sh: update to Python
 3.8.

---
 common/build-style/python-module.sh | 14 ++++----------
 common/environment/setup/python.sh  |  4 ++--
 2 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/common/build-style/python-module.sh b/common/build-style/python-module.sh
index da6ed586cff..ff8f107745f 100644
--- a/common/build-style/python-module.sh
+++ b/common/build-style/python-module.sh
@@ -4,7 +4,7 @@
 
 do_build() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
+	local pyver= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
@@ -12,10 +12,7 @@ do_build() {
 			LDFLAGS="$tmp_ldflags"
 
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
@@ -49,15 +46,12 @@ do_check() {
 
 do_install() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx=
+	local pyver=
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
diff --git a/common/environment/setup/python.sh b/common/environment/setup/python.sh
index d1f4d49a10a..ba181d45361 100644
--- a/common/environment/setup/python.sh
+++ b/common/environment/setup/python.sh
@@ -10,8 +10,8 @@ py2_lib="/usr/lib/python${py2_ver}"
 py2_sitelib="${py2_lib}/site-packages"
 py2_inc="/usr/include/python${py2_ver}"
 
-py3_ver="3.6"
-py3_abiver="m"
+py3_ver="3.8"
+py3_abiver=""
 py3_lib="/usr/lib/python${py3_ver}"
 py3_sitelib="${py3_lib}/site-packages"
 py3_inc="/usr/include/python${py3_ver}${py3_abiver}"

From 75fdcb94c7c7be7dc2c232d271de721d74dc1a6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 004/872] python3-3to2: rebuild for Python 3.8.

---
 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 b6ab94fe7c9..38558f1fcff 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=1
+revision=2
 archs=noarch
 wrksrc="3to2-${version}"
 build_style=python3-module

From 043957a8bcc69ef2ef270f7acd2753a544054759 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 005/872] python-Arrow: rebuild for Python 3.8.

---
 srcpkgs/python-Arrow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Arrow/template b/srcpkgs/python-Arrow/template
index 456e3776188..a3785d60075 100644
--- a/srcpkgs/python-Arrow/template
+++ b/srcpkgs/python-Arrow/template
@@ -2,7 +2,7 @@
 pkgname=python-Arrow
 reverts=0.13.1_1
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="arrow-${version}"
 build_style=python-module

From 5d1bc07743d348083ebd7dfbd1a4ece4913e6a70 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 006/872] python-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Babel/template b/srcpkgs/python-Babel/template
index 34d7a7728ce..619ae432ba4 100644
--- a/srcpkgs/python-Babel/template
+++ b/srcpkgs/python-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Babel'
 pkgname=python-Babel
 version=2.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38e28e565317345549892f5b8da9e3ab1cc3d513 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 007/872] python-BeautifulSoup4: rebuild for Python 3.8.

---
 srcpkgs/python-BeautifulSoup4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-BeautifulSoup4/template b/srcpkgs/python-BeautifulSoup4/template
index 70e4f8a58da..1f6074230c2 100644
--- a/srcpkgs/python-BeautifulSoup4/template
+++ b/srcpkgs/python-BeautifulSoup4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-BeautifulSoup4'
 pkgname=python-BeautifulSoup4
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="beautifulsoup4-${version}"
 build_style=python-module

From 193dc4fe709e1bccd18b84a58f880fde1e4394e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 008/872] python-Bottleneck: rebuild for Python 3.8.

---
 srcpkgs/python-Bottleneck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Bottleneck/template b/srcpkgs/python-Bottleneck/template
index 0c308d5dbb5..28195e99bca 100644
--- a/srcpkgs/python-Bottleneck/template
+++ b/srcpkgs/python-Bottleneck/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Bottleneck'
 pkgname=python-Bottleneck
 version=1.2.1
-revision=4
+revision=5
 wrksrc="Bottleneck-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ff4c422045070300d874353cc6c9750143422e2b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 009/872] python-Cheroot: rebuild for Python 3.8.

---
 srcpkgs/python-Cheroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Cheroot/template b/srcpkgs/python-Cheroot/template
index fcfdf76e69d..7a5375258f4 100644
--- a/srcpkgs/python-Cheroot/template
+++ b/srcpkgs/python-Cheroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Cheroot'
 pkgname=python-Cheroot
 version=8.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cheroot-${version}"
 build_style=python-module

From 6eb51b02b428d8054b1d3a3aa21e6bdcde31cf9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 010/872] python3-CherryPy: rebuild for Python 3.8.

---
 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 b78c01eba2c..450e5791508 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.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python3-module

From 8522b77c798415c2f59fc3b26adc757f66aa0fa7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 011/872] python-ConfigArgParse: rebuild for Python 3.8.

---
 srcpkgs/python-ConfigArgParse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ConfigArgParse/template b/srcpkgs/python-ConfigArgParse/template
index c9a00a04508..d90ca739aee 100644
--- a/srcpkgs/python-ConfigArgParse/template
+++ b/srcpkgs/python-ConfigArgParse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ConfigArgParse'
 pkgname=python-ConfigArgParse
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ConfigArgParse-${version}"
 build_style=python-module

From 3dcbda27301f3e918539317bc411ff556115ef1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 012/872] python-Cython: rebuild for Python 3.8.

---
 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 dc39d54e9c2..675160b3744 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.13
-revision=1
+revision=2
 wrksrc="Cython-${version}"
 build_style=python-module
 pycompile_module="Cython pyximport cython.py"

From 7c69ef59e0a628c13ece955c9f7322631824adca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 013/872] python-Django: rebuild for Python 3.8.

---
 srcpkgs/python-Django/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Django/template b/srcpkgs/python-Django/template
index 21aa405fba1..65a98e41032 100644
--- a/srcpkgs/python-Django/template
+++ b/srcpkgs/python-Django/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Django'
 pkgname=python-Django
 version=1.11.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="Django-${version}"
 build_style=python-module

From 33b250adb0abf2e46663f0a05749097633fce228 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 014/872] python-Flask: rebuild for Python 3.8.

---
 srcpkgs/python-Flask/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask/template b/srcpkgs/python-Flask/template
index 149a76c077e..b75b306701b 100644
--- a/srcpkgs/python-Flask/template
+++ b/srcpkgs/python-Flask/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask'
 pkgname=python-Flask
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9167e534992bd8d17a79a70e22a3b06c68c9762b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 015/872] python-Flask-Assets: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Assets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Assets/template b/srcpkgs/python-Flask-Assets/template
index 339f629f77a..eb81201396b 100644
--- a/srcpkgs/python-Flask-Assets/template
+++ b/srcpkgs/python-Flask-Assets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Assets'
 pkgname=python-Flask-Assets
 version=0.12
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c65d524eb8ee83f7c8eae3ca16878857a374e06c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 016/872] python-Flask-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Babel/template b/srcpkgs/python-Flask-Babel/template
index 3028d15d7bd..b3cc35f230e 100644
--- a/srcpkgs/python-Flask-Babel/template
+++ b/srcpkgs/python-Flask-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Babel'
 pkgname=python-Flask-Babel
 version=0.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From d52f7742820844af3ec25f4b6d4d6d58b19ad722 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 017/872] python-Flask-Login: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Login/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Login/template b/srcpkgs/python-Flask-Login/template
index 8fecf240963..ccaab92d857 100644
--- a/srcpkgs/python-Flask-Login/template
+++ b/srcpkgs/python-Flask-Login/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Login'
 pkgname=python-Flask-Login
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 112c53663ece086d477e4d4fcbc667ae6a2fb518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 018/872] python-Flask-OAuthlib: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-OAuthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-OAuthlib/template b/srcpkgs/python-Flask-OAuthlib/template
index d53157e37b2..958f05a836c 100644
--- a/srcpkgs/python-Flask-OAuthlib/template
+++ b/srcpkgs/python-Flask-OAuthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-OAuthlib'
 pkgname=python-Flask-OAuthlib
 version=0.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From aca82b53b5330ee4a154f2246569006b2d3a38c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 019/872] python3-Flask-RESTful: rebuild for Python 3.8.

---
 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 d0ed467f666..5a05eed0e93 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.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="flask-restful-${version}"
 build_style=python3-module

From 3121295fb06a2b12c0e42b9a6412c1fa52bb86fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 020/872] python-Flask-Script: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Script/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Script/template b/srcpkgs/python-Flask-Script/template
index 19d13887b8e..41312eae57f 100644
--- a/srcpkgs/python-Flask-Script/template
+++ b/srcpkgs/python-Flask-Script/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Script'
 pkgname=python-Flask-Script
 version=2.0.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From cfadd6a4c47e4e611c9d739113006da88f9cb8e7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 021/872] python-Flask-WTF: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-WTF/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-WTF/template b/srcpkgs/python-Flask-WTF/template
index 8edb1d39e35..b2be1e630fb 100644
--- a/srcpkgs/python-Flask-WTF/template
+++ b/srcpkgs/python-Flask-WTF/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-WTF'
 pkgname=python-Flask-WTF
 version=0.14.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 11896d4bd9e1767f6ad8b10e737f0e6a0f5df44f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 022/872] python-GitPython: rebuild for Python 3.8.

---
 srcpkgs/python-GitPython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-GitPython/template b/srcpkgs/python-GitPython/template
index 0edb43cc811..232429265f1 100644
--- a/srcpkgs/python-GitPython/template
+++ b/srcpkgs/python-GitPython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-GitPython'
 pkgname=python-GitPython
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="GitPython-${version}"
 build_style=python-module

From 7008fe32294cead7ef25084a09f874e87cad05e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 023/872] python-IPy: rebuild for Python 3.8.

---
 srcpkgs/python-IPy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-IPy/template b/srcpkgs/python-IPy/template
index d28276383ce..aaae9fcd002 100644
--- a/srcpkgs/python-IPy/template
+++ b/srcpkgs/python-IPy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-IPy'
 pkgname=python-IPy
 version=1.00
-revision=1
+revision=2
 archs=noarch
 wrksrc="IPy-${version}"
 build_style=python-module

From 4ee5b9129c818c4db475e75f899f1f21eb9c312c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 024/872] python3-Inflector: rebuild for Python 3.8.

---
 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 1bfe9ccef7c..e9ee0ffe8d1 100644
--- a/srcpkgs/python3-Inflector/template
+++ b/srcpkgs/python3-Inflector/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-Inflector'
 pkgname=python3-Inflector
 version=2.0.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="Inflector-${version}"
 build_style=python3-module

From 631236d908cbeed8345c2fb159c73e7c54fe1571 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 025/872] python-Jinja2: rebuild for Python 3.8.

---
 srcpkgs/python-Jinja2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Jinja2/template b/srcpkgs/python-Jinja2/template
index c67e6f47f06..3fcd44dc198 100644
--- a/srcpkgs/python-Jinja2/template
+++ b/srcpkgs/python-Jinja2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Jinja2'
 pkgname=python-Jinja2
 version=2.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Jinja2-${version}"
 build_style=python-module

From 3a7808b9f47226adec7dd1e59bef222cf38d7e9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 026/872] python-Levenshtein: rebuild for Python 3.8.

---
 srcpkgs/python-Levenshtein/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Levenshtein/template b/srcpkgs/python-Levenshtein/template
index 26f57d90e70..7d97147ccc8 100644
--- a/srcpkgs/python-Levenshtein/template
+++ b/srcpkgs/python-Levenshtein/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Levenshtein'
 pkgname=python-Levenshtein
 version=0.12.0
-revision=2
+revision=3
 build_style=python-module
 pycompile_module="Levenshtein"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"

From 6d2a898ccc971553cf9dab7239daf8d626350b19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 027/872] python-M2Crypto: rebuild for Python 3.8.

---
 srcpkgs/python-M2Crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-M2Crypto/template b/srcpkgs/python-M2Crypto/template
index 102dbb7261e..6febd5a9ea1 100644
--- a/srcpkgs/python-M2Crypto/template
+++ b/srcpkgs/python-M2Crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-M2Crypto'
 pkgname=python-M2Crypto
 version=0.35.2
-revision=1
+revision=2
 wrksrc="M2Crypto-${version}"
 build_style=python-module
 pycompile_module="M2Crypto"

From 3597aa866d7cb1ff4d5316a0cfe52c8aa8ab717c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 028/872] python-Mako: rebuild for Python 3.8.

---
 srcpkgs/python-Mako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Mako/template b/srcpkgs/python-Mako/template
index e5c3c76170c..f0184179b83 100644
--- a/srcpkgs/python-Mako/template
+++ b/srcpkgs/python-Mako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Mako'
 pkgname=python-Mako
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Mako-${version}"
 build_style=python-module

From 164d5bbfa645fb7b1ddbfbccebb7b85e407c578f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 029/872] python-Markdown: rebuild for Python 3.8.

---
 srcpkgs/python-Markdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markdown/template b/srcpkgs/python-Markdown/template
index 935dcc12bca..03a0d18e23b 100644
--- a/srcpkgs/python-Markdown/template
+++ b/srcpkgs/python-Markdown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markdown'
 pkgname=python-Markdown
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python-module

From c5fcb10688938a17e3acb9f9c630c300f5fe9672 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 030/872] python-MarkupSafe: rebuild for Python 3.8.

---
 srcpkgs/python-MarkupSafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MarkupSafe/template b/srcpkgs/python-MarkupSafe/template
index c12dbb7e656..ae22857aa7a 100644
--- a/srcpkgs/python-MarkupSafe/template
+++ b/srcpkgs/python-MarkupSafe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MarkupSafe'
 pkgname=python-MarkupSafe
 version=1.1.1
-revision=1
+revision=2
 wrksrc="MarkupSafe-${version}"
 build_style=python-module
 pycompile_module="markupsafe"

From b7a4bc0f45110c5c3bd019a437078724336d1888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 031/872] python-Markups: rebuild for Python 3.8.

---
 srcpkgs/python-Markups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markups/template b/srcpkgs/python-Markups/template
index d4817feb430..02ba25ee05c 100644
--- a/srcpkgs/python-Markups/template
+++ b/srcpkgs/python-Markups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markups'
 pkgname=python-Markups
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markups-${version}"
 build_style=python-module

From af8fe2e4b17c908737f599cc43d860493f7da689 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 032/872] python3-MechanicalSoup: rebuild for Python 3.8.

---
 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 b1bbfa4184c..5a3b0b3eb03 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=1
+revision=2
 archs=noarch
 wrksrc=MechanicalSoup-${version}
 build_style=python3-module

From 4d05157344a63fb3d617b00a4268732231187cb4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 033/872] python-MiniMock: rebuild for Python 3.8.

---
 srcpkgs/python-MiniMock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MiniMock/template b/srcpkgs/python-MiniMock/template
index 38c0723f374..8b8c4f5f1e6 100644
--- a/srcpkgs/python-MiniMock/template
+++ b/srcpkgs/python-MiniMock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MiniMock'
 pkgname=python-MiniMock
 version=1.2.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 25b62a34488966009bf8450b60653f01872e2310 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 034/872] python-Pillow: rebuild for Python 3.8.

---
 srcpkgs/python-Pillow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pillow/template b/srcpkgs/python-Pillow/template
index e43d22b8f62..f1791b46d79 100644
--- a/srcpkgs/python-Pillow/template
+++ b/srcpkgs/python-Pillow/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pillow'
 pkgname=python-Pillow
 version=6.2.0
-revision=1
+revision=2
 wrksrc="Pillow-${version}"
 build_style=python-module
 pycompile_module="PIL"

From f79ffe3fe477b7fff206250125a96da96c80c086 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 035/872] python-PyAudio: rebuild for Python 3.8.

---
 srcpkgs/python-PyAudio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyAudio/template b/srcpkgs/python-PyAudio/template
index 5c3286caae0..2e84cf5cc8f 100644
--- a/srcpkgs/python-PyAudio/template
+++ b/srcpkgs/python-PyAudio/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyAudio'
 pkgname=python-PyAudio
 version=0.2.11
-revision=2
+revision=3
 wrksrc="PyAudio-${version}"
 build_style=python-module
 pycompile_module="pyaudio.py"

From 11c99c939a4791ec394842255e6aac23eaae5920 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 036/872] python3-PyBrowserID: rebuild for Python 3.8.

---
 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 abec9dac54e..eefd0175f1b 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=2
+revision=3
 archs=noarch
 wrksrc="PyBrowserID-${version}"
 build_style=python3-module

From d49beb289c07b8d33e8e2f286e068c0e8b3fe4b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 037/872] python3-PyFxA: rebuild for Python 3.8.

---
 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 31175c92435..6fc6791efdd 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=1
+revision=2
 archs=noarch
 wrksrc="PyFxA-${version}"
 build_style=python3-module

From d0eb109c7435d396e67de8f37a376ca0a2958d93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 038/872] python-PyHamcrest: rebuild for Python 3.8.

---
 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 61078241d8a..48f001595aa 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=1
+revision=2
 archs=noarch
 wrksrc="PyHamcrest-${version}"
 build_style=python-module

From 4afc9e488b53ee7025095fe93072953c256fc630 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 039/872] python-PyICU: rebuild for Python 3.8.

---
 srcpkgs/python-PyICU/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyICU/template b/srcpkgs/python-PyICU/template
index be4aaf88639..aab2934cbbd 100644
--- a/srcpkgs/python-PyICU/template
+++ b/srcpkgs/python-PyICU/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyICU'
 pkgname=python-PyICU
 version=2.3.1
-revision=2
+revision=3
 wrksrc="PyICU-${version}"
 build_style=python-module
 pycompile_module="icu PyICU.py"

From a0c3f96b4df2b1efda070832287f3728314c717a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 040/872] python3-PyJWT: rebuild for Python 3.8.

---
 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 6f0830125c1..bf1dda0753e 100644
--- a/srcpkgs/python3-PyJWT/template
+++ b/srcpkgs/python3-PyJWT/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-PyJWT'
 pkgname=python3-PyJWT
 version=1.7.1
-revision=1
+revision=2
 wrksrc="PyJWT-${version}"
 build_style=python3-module
 pycompile_module="PyJWT.py"

From 0355fd4b78af7fbf4ffad4b12dc8e153b70d703d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 041/872] python-PyOpenGL: rebuild for Python 3.8.

---
 srcpkgs/python-PyOpenGL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyOpenGL/template b/srcpkgs/python-PyOpenGL/template
index ec08e0bd667..eafc3be1210 100644
--- a/srcpkgs/python-PyOpenGL/template
+++ b/srcpkgs/python-PyOpenGL/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL'
 pkgname=python-PyOpenGL
 version=3.1.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="PyOpenGL-${version}"
 build_style=python-module

From 1a8da5c4a7dbf53ec6c03efd5387e02d2b0be720 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 17:15:54 +0200
Subject: [PATCH 042/872] python-PyOpenGL-accelerate: update to 3.1.3b1.

---
 srcpkgs/python-PyOpenGL-accelerate/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python-PyOpenGL-accelerate/template b/srcpkgs/python-PyOpenGL-accelerate/template
index 25d84abffcb..5d16a82b845 100644
--- a/srcpkgs/python-PyOpenGL-accelerate/template
+++ b/srcpkgs/python-PyOpenGL-accelerate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL-accelerate'
 pkgname=python-PyOpenGL-accelerate
-version=3.1.0
-revision=5
+version=3.1.3b1
+revision=1
 wrksrc="PyOpenGL-accelerate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"
@@ -9,10 +9,10 @@ makedepends="python-devel python3-devel python-numpy python3-numpy"
 depends="python-numpy"
 short_desc="Acceleration code for PyOpenGL (Python2)"
 maintainer="Alain Kalker <a.c.kalker@gmail.com>"
-license="3-clause-BSD"
+license="BSD-3-Clause"
 homepage="http://pyopengl.sourceforge.net/"
 distfiles="${PYPI_SITE}/P/PyOpenGL-accelerate/PyOpenGL-accelerate-${version}.tar.gz"
-checksum=927f4670b893d46e2f6273ae938bf0a1db27ffae3336eba94813ccef6260c410
+checksum=e687eea7e006d65f531933b49b3b3d2feaaf51279147a904247f9d189762a36f
 
 post_install() {
 	vlicense license.txt LICENSE

From 2f6b6f2c3880b16991df568d3ac18efca5c970c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 043/872] python-PyQt5: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5/template b/srcpkgs/python-PyQt5/template
index 6534d4e22e6..9eba20dc514 100644
--- a/srcpkgs/python-PyQt5/template
+++ b/srcpkgs/python-PyQt5/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5'
 pkgname=python-PyQt5
 version=5.13.0
-revision=1
+revision=2
 _sipver=4.19.18
 lib32disabled=yes
 wrksrc="PyQt5_gpl-${version}"

From cf20a1f23e0c305d2e9672610364b2fd4f566695 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 044/872] python-PyQt5-webengine: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5-webengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5-webengine/template b/srcpkgs/python-PyQt5-webengine/template
index 996ef6b00e2..af7162d20cb 100644
--- a/srcpkgs/python-PyQt5-webengine/template
+++ b/srcpkgs/python-PyQt5-webengine/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5-webengine'
 pkgname=python-PyQt5-webengine
 version=5.13.0
-revision=1
+revision=2
 wrksrc="PyQtWebEngine_gpl-${version}"
 pycompile_module="PyQt5WebEngine"
 hostmakedepends="pkg-config qt5-qmake

From 84502fbd3a591ad0db01072998b5a2b3fcfcf192 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 045/872] python-Pygments: rebuild for Python 3.8.

---
 srcpkgs/python-Pygments/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pygments/template b/srcpkgs/python-Pygments/template
index f5a72ca6cea..8d2214a6bfc 100644
--- a/srcpkgs/python-Pygments/template
+++ b/srcpkgs/python-Pygments/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pygments'
 pkgname=python-Pygments
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Pygments-${version}"
 build_style=python-module

From ef2467b2248b773e2d940058876cf81a2b935043 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 046/872] python-Pyro4: rebuild for Python 3.8.

---
 srcpkgs/python-Pyro4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pyro4/template b/srcpkgs/python-Pyro4/template
index d8925aa141f..0417e9f6a8a 100644
--- a/srcpkgs/python-Pyro4/template
+++ b/srcpkgs/python-Pyro4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pyro4'
 pkgname=python-Pyro4
 version=4.75
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a80785231122d63ad91b973744bf59b0a1b59506 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 047/872] python3-ReParser: rebuild for Python 3.8.

---
 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 5e7b5de3790..5959de9d0e3 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=1
+revision=2
 archs=noarch
 wrksrc=ReParser-${version}
 build_style=python3-module

From 543272b7ff22e6f0642d879c60f19717643fec8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 048/872] python-SPARQLWrapper: rebuild for Python 3.8.

---
 srcpkgs/python-SPARQLWrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-SPARQLWrapper/template b/srcpkgs/python-SPARQLWrapper/template
index d014eb8aab4..8d2db9a02b3 100644
--- a/srcpkgs/python-SPARQLWrapper/template
+++ b/srcpkgs/python-SPARQLWrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'python-SPARQLWrapper'
 pkgname=python-SPARQLWrapper
 version=1.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a01a9e6bc3bd9fddfdd13341f78e625b063be5c8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 049/872] python-SQLAlchemy: rebuild for Python 3.8.

---
 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 7b529ade621..110430ff9f5 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.8
-revision=1
+revision=2
 wrksrc="SQLAlchemy-${version}"
 build_style=python-module
 pycompile_module="sqlalchemy"

From 46382571cad86b54ca46e129f7c2988772d0a48e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 050/872] python3-SecretStorage: rebuild for Python 3.8.

---
 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 8df813ad247..b19d4865f7e 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.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="SecretStorage-${version}"
 build_style=python3-module

From c79427640956f1961211ce3322c3811958e0f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 051/872] python3-SoCo: rebuild for Python 3.8.

---
 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 f0ac9825f57..01ebbeff15a 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="SoCo-${version}"
 build_style=python3-module

From 20a1ac5477ca4a76e0257e06bf6f353835eac7bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 052/872] python-Sphinx: rebuild for Python 3.8.

---
 srcpkgs/python-Sphinx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Sphinx/template b/srcpkgs/python-Sphinx/template
index e70dc9b238e..42969925f9e 100644
--- a/srcpkgs/python-Sphinx/template
+++ b/srcpkgs/python-Sphinx/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Sphinx'
 pkgname=python-Sphinx
 version=1.8.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="Sphinx-${version}"
 build_style=python-module

From 863c01ff80faa4de651a55ba2a354f8da5e6b025 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 053/872] python3-Telethon: rebuild for Python 3.8.

---
 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 b0786559591..d0fa8e34d3f 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.10.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="Telethon-${version}"
 build_style=python3-module

From efc9766b9866c660a4cb508c49be4df48f1e5809 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 054/872] python-Twisted: rebuild for Python 3.8.

---
 srcpkgs/python-Twisted/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Twisted/template b/srcpkgs/python-Twisted/template
index 519a1e251a9..e94e0edf26e 100644
--- a/srcpkgs/python-Twisted/template
+++ b/srcpkgs/python-Twisted/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Twisted'
 pkgname=python-Twisted
 version=18.9.0
-revision=3
+revision=4
 wrksrc="Twisted-${version}"
 build_style=python-module
 pycompile_module="twisted"

From 5fd974f3940d5ee91fe712fef2e93ce539743b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 055/872] python3-TxSNI: rebuild for Python 3.8.

---
 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 403010da5be..d9d7c2a0c83 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.1.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="TxSNI-${version}"
 build_style=python3-module

From 559184031fe43c0ff648fb7fab55ede08fff2c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 056/872] python-Unidecode: rebuild for Python 3.8.

---
 srcpkgs/python-Unidecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Unidecode/template b/srcpkgs/python-Unidecode/template
index 035c5d846be..444eb1427d6 100644
--- a/srcpkgs/python-Unidecode/template
+++ b/srcpkgs/python-Unidecode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Unidecode'
 pkgname=python-Unidecode
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Unidecode-${version}"
 build_style=python-module

From 07f0904b4cb8f2de0b7bc39c0ca28d225c91257d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 057/872] python-WTForms: rebuild for Python 3.8.

---
 srcpkgs/python-WTForms/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-WTForms/template b/srcpkgs/python-WTForms/template
index 06af2366050..98dff7d092f 100644
--- a/srcpkgs/python-WTForms/template
+++ b/srcpkgs/python-WTForms/template
@@ -1,7 +1,7 @@
 # Template file for 'python-WTForms'
 pkgname=python-WTForms
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="WTForms-${version}"
 build_style=python-module

From ec81beba1921fe189a8dd80810da306514a86c1a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 058/872] python3-WebOb: rebuild for Python 3.8.

---
 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 c360542a1f2..53e63879f2c 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=1
+revision=2
 archs=noarch
 wrksrc="WebOb-${version}"
 build_style=python3-module

From 0b7a4a756b3ead4c188a3819311c4471c1b0a21c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 059/872] python-Werkzeug: rebuild for Python 3.8.

---
 srcpkgs/python-Werkzeug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Werkzeug/template b/srcpkgs/python-Werkzeug/template
index 24fff62f1ae..1ca303822e8 100644
--- a/srcpkgs/python-Werkzeug/template
+++ b/srcpkgs/python-Werkzeug/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Werkzeug'
 pkgname=python-Werkzeug
 version=0.15.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c530a6e11127606a3b29b73da4cb31f010d97b5c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 060/872] python-Whoosh: rebuild for Python 3.8.

---
 srcpkgs/python-Whoosh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Whoosh/template b/srcpkgs/python-Whoosh/template
index f2118ed0af2..66856b206a7 100644
--- a/srcpkgs/python-Whoosh/template
+++ b/srcpkgs/python-Whoosh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-whoosh'
 pkgname=python-Whoosh
 version=2.7.4
-revision=1
+revision=2
 wrksrc="Whoosh-${version}"
 archs=noarch
 build_style=python-module

From 3e3ad6526265ded86e6e1b5539061302a3890381 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 061/872] python3-XlsxWriter: rebuild for Python 3.8.

---
 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 ea68ced9a03..b991457e01e 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.1.8
-revision=1
+revision=2
 archs="noarch"
 wrksrc="XlsxWriter-RELEASE_${version}"
 build_style=python3-module

From ed808be70fb42a5a7e827e43a5d8a9954d85823a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 062/872] python-Yapsy: rebuild for Python 3.8.

---
 srcpkgs/python-Yapsy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Yapsy/template b/srcpkgs/python-Yapsy/template
index 9f79423f91d..5ad8b234f5d 100644
--- a/srcpkgs/python-Yapsy/template
+++ b/srcpkgs/python-Yapsy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Yapsy'
 pkgname=python-Yapsy
 version=1.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Yapsy-${version}"
 build_style=python-module

From ef3f8b60f72752d3ec1c7676df4597cc6cfdfb42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 063/872] python-aalib: rebuild for Python 3.8.

---
 srcpkgs/python-aalib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-aalib/template b/srcpkgs/python-aalib/template
index 349b8407343..f9621a9c8dc 100644
--- a/srcpkgs/python-aalib/template
+++ b/srcpkgs/python-aalib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-aalib'
 pkgname=python-aalib
 version=0.3.2
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="aalib.py"
 hostmakedepends="python-setuptools python3-setuptools"

From 1aee008231a9354b62bbf679e89e620deeba0d34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 064/872] python3-acme: rebuild for Python 3.8.

---
 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 d7ef20f2301..844dde9c814 100644
--- a/srcpkgs/python3-acme/template
+++ b/srcpkgs/python3-acme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-acme'
 pkgname=python3-acme
 version=0.39.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="acme-${version}"
 build_style=python3-module

From 877668118087bb2d0bd4b8ebf34db7c6c4308c31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 065/872] python3-aiodns: rebuild for Python 3.8.

---
 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 cca9f45dbf5..8e06ea6e614 100644
--- a/srcpkgs/python3-aiodns/template
+++ b/srcpkgs/python3-aiodns/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiodns'
 pkgname=python3-aiodns
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiodns-${version}"
 build_style=python3-module

From de87766918ac8688cf8992433b56e9b1ad222108 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 066/872] python3-aiohttp: rebuild for Python 3.8.

---
 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 fbe98e07b2b..67e450e6aab 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.5.4
-revision=3
+revision=4
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 0c2d285f8d7edc438e657ec9bc4a2b16982a4a57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 067/872] python3-aiohttp-cors: rebuild for Python 3.8.

---
 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 8a643ca1797..b621716e3cd 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=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 4643a6f9e03d1657e1ac2f5ca93bf616979b58de Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 068/872] python3-aiohttp-cors2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp-cors2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp-cors2/template b/srcpkgs/python3-aiohttp-cors2/template
index 7ff1206538b..f13b0598456 100644
--- a/srcpkgs/python3-aiohttp-cors2/template
+++ b/srcpkgs/python3-aiohttp-cors2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp-cors2'
 pkgname=python3-aiohttp-cors2
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 9db81023f9f60f7a78d62f9f9b8f1fa8afbb9fa8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 069/872] python3-aiohttp2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp2/template b/srcpkgs/python3-aiohttp2/template
index b570043baba..db3704b5700 100644
--- a/srcpkgs/python3-aiohttp2/template
+++ b/srcpkgs/python3-aiohttp2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp2'
 pkgname=python3-aiohttp2
 version=2.3.10
-revision=2
+revision=3
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 9bf56f834aca73a7ea8141ab0c95b4aed0d1f09a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 070/872] python3-aiohttp_socks: rebuild for Python 3.8.

---
 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 93c45ff24c4..10ab967ef76 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.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp_socks-${version}"
 build_style=python3-module

From acad4e265f43c8bc2098168adb1c0442a0c22445 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 071/872] python3-aiorpcx: rebuild for Python 3.8.

---
 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 42b6dc541bf..07922e15ccd 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.17.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiorpcX-${version}"
 build_style=python3-module

From b4945f68890b617f5b513871e533769a2149f07f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 072/872] python-alabaster: rebuild for Python 3.8.

---
 srcpkgs/python-alabaster/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alabaster/template b/srcpkgs/python-alabaster/template
index e4ece5c2991..b33009d5efb 100644
--- a/srcpkgs/python-alabaster/template
+++ b/srcpkgs/python-alabaster/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alabaster'
 pkgname=python-alabaster
 version=0.7.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="alabaster-${version}"
 build_style=python-module

From 04c416b8fb310277c61713ee1b8dd702a970240b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 073/872] python-alembic: rebuild for Python 3.8.

---
 srcpkgs/python-alembic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alembic/template b/srcpkgs/python-alembic/template
index 4011b33c0fa..aecbe10e7d0 100644
--- a/srcpkgs/python-alembic/template
+++ b/srcpkgs/python-alembic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alembic'
 pkgname=python-alembic
 version=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="alembic-${version}"
 build_style=python-module

From 5c2d4bcc3255cb59561524d151fe84b3a70e8ad4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 074/872] python3-altgraph: rebuild for Python 3.8.

---
 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 eff10f7aef4..2bf433edb6e 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.16.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="altgraph-${version}"
 build_style=python3-module

From 3c6234d42f7adffca219ea7f98f11d5283dce900 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 075/872] python3-aniso8601: rebuild for Python 3.8.

---
 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 26540bc8c3f..0253b89b5a3 100644
--- a/srcpkgs/python3-aniso8601/template
+++ b/srcpkgs/python3-aniso8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aniso8601'
 pkgname=python3-aniso8601
 version=8.0.0
-revision=1
+revision=2
 archs=noarch
 _gitver=0ec13b9d81c9
 wrksrc="nielsenb-aniso8601-${_gitver}"

From b4fecde90241517d0629d46de55f99a1ef7edbaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 076/872] python-ansicolor: rebuild for Python 3.8.

---
 srcpkgs/python-ansicolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ansicolor/template b/srcpkgs/python-ansicolor/template
index af18c5b946d..3663a82f0cc 100644
--- a/srcpkgs/python-ansicolor/template
+++ b/srcpkgs/python-ansicolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ansicolor'
 pkgname=python-ansicolor
 version=0.2.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="ansicolor-${version}"
 build_style=python-module

From 3983fbed547fd194f9eefaaf58d10c7770e27350 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 077/872] python3-anytree: rebuild for Python 3.8.

---
 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 5a37dba6581..7368754c426 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.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="anytree-${version}"
 build_style=python3-module

From 6d797f541c2cb160f9cfebd0a3e71dace50cceb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 078/872] python-appdirs: rebuild for Python 3.8.

---
 srcpkgs/python-appdirs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-appdirs/template b/srcpkgs/python-appdirs/template
index fdae1fe184b..15354ec5768 100644
--- a/srcpkgs/python-appdirs/template
+++ b/srcpkgs/python-appdirs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-appdirs'
 pkgname=python-appdirs
 version=1.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 7a7c86554157d7224efc221e706b9aebfc1ff796 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 079/872] python3-applib: rebuild for Python 3.8.

---
 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 95f589dc65a..0fb5a42e618 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=1
+revision=2
 archs=noarch
 wrksrc="applib-${version}"
 build_style=python3-module

From 642416934e5f74b49e1a38fe6e941287cbccbf83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 080/872] python-apsw: rebuild for Python 3.8.

---
 srcpkgs/python-apsw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-apsw/template b/srcpkgs/python-apsw/template
index ed47b4a7803..6146ea639db 100644
--- a/srcpkgs/python-apsw/template
+++ b/srcpkgs/python-apsw/template
@@ -3,7 +3,7 @@ pkgname=python-apsw
 _distver=3.29.0
 _patchver=r1
 version=${_distver}${_patchver}
-revision=1
+revision=2
 wrksrc="apsw-${_distver}-${_patchver}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 765bd2f2b82c6226b12a5d6bbe156b07c03a1bca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 081/872] python-argh: rebuild for Python 3.8.

---
 srcpkgs/python-argh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argh/template b/srcpkgs/python-argh/template
index 4b7aec3b525..656da441757 100644
--- a/srcpkgs/python-argh/template
+++ b/srcpkgs/python-argh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argh'
 pkgname=python-argh
 version=0.26.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="argh-${version}"
 build_style=python-module

From 1f6f709fcbb4353d419be8d129ce581747dae1ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 082/872] python-argon2: rebuild for Python 3.8.

---
 srcpkgs/python-argon2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argon2/template b/srcpkgs/python-argon2/template
index 0b4b132cddd..1b5216cc9c0 100644
--- a/srcpkgs/python-argon2/template
+++ b/srcpkgs/python-argon2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argon2'
 pkgname=python-argon2
 version=18.3.0
-revision=2
+revision=3
 wrksrc="argon2_cffi-${version}"
 build_style=python-module
 pycompile_module="argon2"

From 26f299203792a3fe43e8944054d8c61c83416097 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 083/872] python-arxiv2bib: rebuild for Python 3.8.

---
 srcpkgs/python-arxiv2bib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-arxiv2bib/template b/srcpkgs/python-arxiv2bib/template
index 8bbc6bcf78e..4f245755dcf 100644
--- a/srcpkgs/python-arxiv2bib/template
+++ b/srcpkgs/python-arxiv2bib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-arxiv2bib'
 pkgname=python-arxiv2bib
 version=1.0.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="arxiv2bib-${version}"
 build_style=python-module

From 5d25b8642b8f8043e54a95f2ff5efc880044395a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 084/872] python-asn1crypto: rebuild for Python 3.8.

---
 srcpkgs/python-asn1crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-asn1crypto/template b/srcpkgs/python-asn1crypto/template
index 369c20af98f..e7ffe7415fc 100644
--- a/srcpkgs/python-asn1crypto/template
+++ b/srcpkgs/python-asn1crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-asn1crypto'
 pkgname=python-asn1crypto
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="asn1crypto-${version}"
 build_style=python-module

From c0625af704339d35d7423cd750ef2620c53c39bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 085/872] python-astral: rebuild for Python 3.8.

---
 srcpkgs/python-astral/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-astral/template b/srcpkgs/python-astral/template
index b8fdaee27ac..07aaeee166b 100644
--- a/srcpkgs/python-astral/template
+++ b/srcpkgs/python-astral/template
@@ -1,7 +1,7 @@
 # Template file for 'python-astral'
 pkgname=python-astral
 version=1.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python-}-${version}"
 build_style=python-module

From 6cdbd1584336605868e949368279bb6c2143b1d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 086/872] python3-astroid: rebuild for Python 3.8.

---
 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 28f01bd4445..d964fd2cdf3 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.2.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="astroid-${version}"
 build_style=python3-module

From c0642f6c760884c3209a89e643de35660419627a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 087/872] python3-async-timeout: rebuild for Python 3.8.

---
 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 d949a4fdf9a..854584fb5b2 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=1
+revision=2
 archs=noarch
 wrksrc="async-timeout-${version}"
 build_style=python3-module

From 17cdd1aac68337b8859ce0d970b309f841b8a456 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 088/872] python3-async_generator: rebuild for Python 3.8.

---
 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 c2053d7bf1f..20d9f7ea0d1 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=1
+revision=2
 archs=noarch
 wrksrc="async_generator-${version}"
 build_style=python3-module

From e57ec7e6820968645a23bcc13867add4c9a62399 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 089/872] python-atomicwrites: rebuild for Python 3.8.

---
 srcpkgs/python-atomicwrites/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atomicwrites/template b/srcpkgs/python-atomicwrites/template
index 849272e53f9..ec411d981d4 100644
--- a/srcpkgs/python-atomicwrites/template
+++ b/srcpkgs/python-atomicwrites/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atomicwrites'
 pkgname=python-atomicwrites
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="atomicwrites-${version}"
 build_style=python-module

From 61df9fa27dc05bc6bb5d5a2c5e806fd041d9adb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 090/872] python-atspi: rebuild for Python 3.8.

---
 srcpkgs/python-atspi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atspi/template b/srcpkgs/python-atspi/template
index 4a2007fa319..cfa1ef35377 100644
--- a/srcpkgs/python-atspi/template
+++ b/srcpkgs/python-atspi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atspi'
 pkgname=python-atspi
 version=2.32.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure

From d24c76e2f70e9a9dd9a6aa66a323bf79f37f9110 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 091/872] python-attrs: rebuild for Python 3.8.

---
 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 aaddb13f5be..6e2297a9553 100644
--- a/srcpkgs/python-attrs/template
+++ b/srcpkgs/python-attrs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-attrs'
 pkgname=python-attrs
 version=19.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="attrs-${version}"
 build_style=python-module

From dba37b5f26f28057cb10e86a08a4d2281ee09b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 092/872] python-audioread: rebuild for Python 3.8.

---
 srcpkgs/python-audioread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-audioread/template b/srcpkgs/python-audioread/template
index fc788a2778c..bc878d4b82d 100644
--- a/srcpkgs/python-audioread/template
+++ b/srcpkgs/python-audioread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-audioread'
 pkgname=python-audioread
 version=2.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="audioread-${version}"
 build_style=python-module

From 789a6f2ae1cd503ad69b6a968651c7745f878718 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 093/872] audit: rebuild for Python 3.8.

---
 srcpkgs/audit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/audit/template b/srcpkgs/audit/template
index c624aae0f6d..3e0d21784c0 100644
--- a/srcpkgs/audit/template
+++ b/srcpkgs/audit/template
@@ -1,7 +1,7 @@
 # Template file for 'audit'
 pkgname=audit
 version=2.8.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--libdir=/usr/lib --enable-shared=audit --enable-gssapi-krb5
  --with-apparmor --with-libcap-ng --with-python3"

From e2efc441ba2dda6eac89d6d19f7960be2fb6cb6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 094/872] python3-autobahn: rebuild for Python 3.8.

---
 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 053e45608e5..524ba4b4566 100644
--- a/srcpkgs/python3-autobahn/template
+++ b/srcpkgs/python3-autobahn/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-autobahn'
 pkgname=python3-autobahn
 version=19.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="autobahn-${version}"
 build_style=python3-module

From 9ad07e924752896ad77bccca2019163eb738ebc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 095/872] python-automat: rebuild for Python 3.8.

---
 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 4d0f89a89f5..984f5e9642a 100644
--- a/srcpkgs/python-automat/template
+++ b/srcpkgs/python-automat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-automat'
 pkgname=python-automat
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Automat-${version}"
 build_style=python-module

From a104c6986268b798f373e1fb36de2b20efb9f618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 096/872] python-axolotl: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl/template b/srcpkgs/python-axolotl/template
index cf24db1b6e7..74480b5a9fe 100644
--- a/srcpkgs/python-axolotl/template
+++ b/srcpkgs/python-axolotl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl'
 pkgname=python-axolotl
 version=0.2.3
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="axolotl"

From c0e16521a2125c2ae2c155dd483904a3dce7bd8c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 097/872] python-axolotl-curve25519: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl-curve25519/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl-curve25519/template b/srcpkgs/python-axolotl-curve25519/template
index f7b273b8385..897de4e7cdf 100644
--- a/srcpkgs/python-axolotl-curve25519/template
+++ b/srcpkgs/python-axolotl-curve25519/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl-curve25519'
 pkgname=python-axolotl-curve25519
 version=0.4.1.post2
-revision=2
+revision=3
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 makedepends="python-devel python3-devel"

From 6c250811341de25ed60e2bdfaae58eb8f5a8c159 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 098/872] python-babelfish: rebuild for Python 3.8.

---
 srcpkgs/python-babelfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-babelfish/template b/srcpkgs/python-babelfish/template
index c156255f418..47d5bb176cc 100644
--- a/srcpkgs/python-babelfish/template
+++ b/srcpkgs/python-babelfish/template
@@ -1,7 +1,7 @@
 # Template file for 'python-babelfish'
 pkgname=python-babelfish
 version=0.5.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="babelfish-${version}"
 build_style=python-module

From 3bbb2fa6599ab0470a4209080a69ad4f8476f1ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 099/872] python-backcall: rebuild for Python 3.8.

---
 srcpkgs/python-backcall/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-backcall/template b/srcpkgs/python-backcall/template
index 01dfab9c25d..a55af727ab6 100644
--- a/srcpkgs/python-backcall/template
+++ b/srcpkgs/python-backcall/template
@@ -1,7 +1,7 @@
 # Template file for 'python-backcall'
 pkgname=python-backcall
 version=0.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="backcall-${version}"
 build_style=python-module

From d263efaab1b83cfdc94e9b33011f3cfefc52dcd2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 100/872] bcc: rebuild for Python 3.8.

---
 srcpkgs/bcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template
index a4d32bce7a4..e872cb6a4a8 100644
--- a/srcpkgs/bcc/template
+++ b/srcpkgs/bcc/template
@@ -1,7 +1,7 @@
 # Template file for 'bcc'
 pkgname=bcc
 version=0.11.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DREVISION=${version}"
 hostmakedepends="flex"

From 95aa25d2f02529207de0d9d62aa57353f202d9a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 101/872] python-bcrypt: rebuild for Python 3.8.

---
 srcpkgs/python-bcrypt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bcrypt/template b/srcpkgs/python-bcrypt/template
index 1ccac21ee94..664b5c9df07 100644
--- a/srcpkgs/python-bcrypt/template
+++ b/srcpkgs/python-bcrypt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bcrypt'
 pkgname=python-bcrypt
 version=3.1.7
-revision=1
+revision=2
 wrksrc="bcrypt-${version}"
 build_style=python-module
 pycompile_module="bcrypt"

From 91e29d8f93186f3c597658d4746f864cc6ed9fb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 102/872] python-bibtexparser: rebuild for Python 3.8.

---
 srcpkgs/python-bibtexparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bibtexparser/template b/srcpkgs/python-bibtexparser/template
index 1eff201e6b8..c40115c9fb8 100644
--- a/srcpkgs/python-bibtexparser/template
+++ b/srcpkgs/python-bibtexparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bibtexparser'
 pkgname=python-bibtexparser
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bibtexparser-${version}"
 build_style=python-module

From 6a95de33763230908ad4e9ae408dedcdd2cc431d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 103/872] python-bitarray: rebuild for Python 3.8.

---
 srcpkgs/python-bitarray/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitarray/template b/srcpkgs/python-bitarray/template
index 4f2b4ee392c..f928718a9df 100644
--- a/srcpkgs/python-bitarray/template
+++ b/srcpkgs/python-bitarray/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitarray'
 pkgname=python-bitarray
 version=1.0.1
-revision=1
+revision=2
 wrksrc="bitarray-${version}"
 build_style=python-module
 pycompile_module="bitarray"

From 1f892b7a3495cc0eddd59d14baf8fa6473521ce4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 104/872] python-bitbucket-api: rebuild for Python 3.8.

---
 srcpkgs/python-bitbucket-api/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitbucket-api/template b/srcpkgs/python-bitbucket-api/template
index 27747866baf..448ea60d53d 100644
--- a/srcpkgs/python-bitbucket-api/template
+++ b/srcpkgs/python-bitbucket-api/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitbucket-api'
 pkgname=python-bitbucket-api
 version=0.5.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="bitbucket-api-${version}"
 build_style=python-module

From 9f464ba19a5d403e830d05b84d5b86c6a9bf0209 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 105/872] python-bleach: rebuild for Python 3.8.

---
 srcpkgs/python-bleach/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bleach/template b/srcpkgs/python-bleach/template
index da389c319a5..6e3d4a3bf4c 100644
--- a/srcpkgs/python-bleach/template
+++ b/srcpkgs/python-bleach/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bleach'
 pkgname=python-bleach
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bleach-${version}"
 build_style=python-module

From a79c0811d86d64b345ee5b056c280a062c8e810a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 106/872] python3-blessed: rebuild for Python 3.8.

---
 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 4d494883f9a..8527379351f 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.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessed-${version}"
 build_style=python3-module

From ec38850242ede1700a4b6234199fba116a530b3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 107/872] python-blessings: rebuild for Python 3.8.

---
 srcpkgs/python-blessings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blessings/template b/srcpkgs/python-blessings/template
index f8e396da5c5..baa4938c328 100644
--- a/srcpkgs/python-blessings/template
+++ b/srcpkgs/python-blessings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blessings'
 pkgname=python-blessings
 version=1.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessings-${version}"
 build_style=python-module

From 19252293b6f311e3a280441f83e7ec1589711b77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 108/872] python-blinker: rebuild for Python 3.8.

---
 srcpkgs/python-blinker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blinker/template b/srcpkgs/python-blinker/template
index e34a4a9721a..b6d1d63d19a 100644
--- a/srcpkgs/python-blinker/template
+++ b/srcpkgs/python-blinker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blinker'
 pkgname=python-blinker
 version=1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="blinker-${version}"
 build_style=python-module

From 7cd7b832b55b68ab081454f2b86c254476bd5132 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 109/872] python-bluez: rebuild for Python 3.8.

---
 srcpkgs/python-bluez/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bluez/template b/srcpkgs/python-bluez/template
index 1112352e8ab..4734e47038d 100644
--- a/srcpkgs/python-bluez/template
+++ b/srcpkgs/python-bluez/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bluez'
 pkgname=python-bluez
 version=0.22
-revision=4
+revision=5
 wrksrc="pybluez-${version}"
 build_style=python-module
 pycompile_module="bluetooth"

From 47f9a18cc42f2afe1e8f31696b6928e35b8105c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 110/872] python3-boltons: rebuild for Python 3.8.

---
 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 84a991feef4..1083eb98c51 100644
--- a/srcpkgs/python3-boltons/template
+++ b/srcpkgs/python3-boltons/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-boltons'
 pkgname=python3-boltons
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boltons-${version}"
 build_style=python3-module

From 05f9cb79aa092e2ddeede56d09676742c60cb788 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 111/872] python-boto: rebuild for Python 3.8.

---
 srcpkgs/python-boto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-boto/template b/srcpkgs/python-boto/template
index 40bd3d888b9..684c00feee0 100644
--- a/srcpkgs/python-boto/template
+++ b/srcpkgs/python-boto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-boto'
 pkgname=python-boto
 version=2.49.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boto-${version}"
 build_style=python-module

From ad258b30e35aadb84fd8cd6395bb3d382b429ce9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 112/872] python-botocore: rebuild for Python 3.8.

---
 srcpkgs/python-botocore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-botocore/template b/srcpkgs/python-botocore/template
index ae1a4c17964..0610007f36e 100644
--- a/srcpkgs/python-botocore/template
+++ b/srcpkgs/python-botocore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-botocore'
 pkgname=python-botocore
 version=1.12.243
-revision=1
+revision=2
 archs=noarch
 wrksrc="botocore-${version}"
 build_style=python-module

From 5bc87295c4d5b8af514da116d9b83154488da331 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 113/872] python-bottle: rebuild for Python 3.8.

---
 srcpkgs/python-bottle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bottle/template b/srcpkgs/python-bottle/template
index 8e3a2ad5ad7..0ffc8adfec7 100644
--- a/srcpkgs/python-bottle/template
+++ b/srcpkgs/python-bottle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bottle'
 pkgname=python-bottle
 version=0.12.17
-revision=1
+revision=2
 archs=noarch
 wrksrc="bottle-${version}"
 build_style=python-module

From 86d7964c563357cfa4aec17ced1fefb9e2c974d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 114/872] brltty: rebuild for Python 3.8.

---
 srcpkgs/brltty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/brltty/template b/srcpkgs/brltty/template
index 33f3354a219..a838cd62d55 100644
--- a/srcpkgs/brltty/template
+++ b/srcpkgs/brltty/template
@@ -1,7 +1,7 @@
 # Template file for 'brltty'
 pkgname=brltty
 version=6.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-gpm --with-screen-driver=lx,sc
  --with-tables-directory=/usr/share/brltty PYTHON=/usr/bin/python3"

From 59305e4244220895606aef8a8016d356cee63dff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 115/872] python-bsddb3: rebuild for Python 3.8.

---
 srcpkgs/python-bsddb3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bsddb3/template b/srcpkgs/python-bsddb3/template
index f719a3f9560..1df37cc0e71 100644
--- a/srcpkgs/python-bsddb3/template
+++ b/srcpkgs/python-bsddb3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bsddb3'
 pkgname=python-bsddb3
 version=6.2.6
-revision=2
+revision=3
 wrksrc="bsddb3-${version}"
 build_style=python-module
 make_build_args="--berkeley-db=${XBPS_CROSS_BASE}/usr"

From 8e91ab0e55145cdc83aae10c6f0277d467cb5057 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 116/872] python-cached-property: rebuild for Python 3.8.

---
 srcpkgs/python-cached-property/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cached-property/template b/srcpkgs/python-cached-property/template
index ca2f8536260..16c89346565 100644
--- a/srcpkgs/python-cached-property/template
+++ b/srcpkgs/python-cached-property/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cached-property'
 pkgname=python-cached-property
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cached-property-${version}"
 build_style=python-module

From 3047633291296a9279b5c2a9c0ff04a0cea875f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 117/872] python-cachetools: rebuild for Python 3.8.

---
 srcpkgs/python-cachetools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cachetools/template b/srcpkgs/python-cachetools/template
index ee3ed3a4c94..0f2fdcaed32 100644
--- a/srcpkgs/python-cachetools/template
+++ b/srcpkgs/python-cachetools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cachetools'
 pkgname=python-cachetools
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cachetools-${version}"
 build_style=python-module

From 52e0110b2dc8419583a18babfa62796ef6410ac7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 118/872] python3-cairo: rebuild for Python 3.8.

---
 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 cdde1b83d20..ac158237dd2 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.18.1
-revision=1
+revision=2
 wrksrc="pycairo-${version}"
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From d8f9c3f93f495874237c23477fb548be8b2c0da2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 119/872] python-cairocffi: rebuild for Python 3.8.

---
 srcpkgs/python-cairocffi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cairocffi/template b/srcpkgs/python-cairocffi/template
index baa61334a2a..c057739b03d 100644
--- a/srcpkgs/python-cairocffi/template
+++ b/srcpkgs/python-cairocffi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cairocffi'
 pkgname=python-cairocffi
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cairocffi-${version}"
 build_style=python-module

From bc01f22fb9a5d16bae1b724b675fc57b1f732baa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 120/872] python3-canonicaljson: rebuild for Python 3.8.

---
 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 abc8e95820d..1cbe15f14ae 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.1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="canonicaljson-${version}"
 build_style=python3-module

From e4cba931e3e55f565bc084f8171dea2a8baa9aaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 121/872] python3-casttube: rebuild for Python 3.8.

---
 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 ccd95f3f31c..9e5544b0101 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=1
+revision=2
 archs=noarch
 wrksrc="casttube-${version}"
 build_style=python3-module

From 255661e350728911e6dc85db4bd8a0a0f059b561 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 122/872] python-cffi: rebuild for Python 3.8.

---
 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 27ae03879ac..8501b202bf2 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.12.3
-revision=1
+revision=2
 wrksrc="cffi-${version}"
 build_style=python-module
 pycompile_module="cffi"

From 1b85c0971a1d2d810331d3392d4ecedf140eeb47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 123/872] python3-changelogs: rebuild for Python 3.8.

---
 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 5c2a4889959..d9a7784cf3b 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.14.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="changelogs-${version}"
 build_style=python3-module

From 38e9561402e4ea4c3c4b27c8c747e6b710aec2fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 124/872] python-chardet: rebuild for Python 3.8.

---
 srcpkgs/python-chardet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chardet/template b/srcpkgs/python-chardet/template
index 685d3ab767f..bd502bbbddf 100644
--- a/srcpkgs/python-chardet/template
+++ b/srcpkgs/python-chardet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chardet'
 pkgname=python-chardet
 version=3.0.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="chardet-${version}"
 build_style=python-module

From de1193127ae80857e0f21f1d0499748b6ccafa40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 125/872] python3-cheetah3: rebuild for Python 3.8.

---
 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 40dfee6e322..b2149b2bc22 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.4
-revision=1
+revision=2
 wrksrc="Cheetah3-${version}"
 build_style=python3-module
 pycompile_module="Cheetah"

From 654378c7da0932e5e48085409868c2639efb5294 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 126/872] python3-chess: rebuild for Python 3.8.

---
 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 54b397517cf..e87dab6ca02 100644
--- a/srcpkgs/python3-chess/template
+++ b/srcpkgs/python3-chess/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chess'
 pkgname=python3-chess
 version=0.27.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-chess-${version}"
 build_style=python3-module

From 10db1a1daa9e65a8a20ebc6e20f512884e23f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 127/872] python3-chromecast: rebuild for Python 3.8.

---
 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 16df7502633..cfa41c5dfb5 100644
--- a/srcpkgs/python3-chromecast/template
+++ b/srcpkgs/python3-chromecast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chromecast'
 pkgname=python3-chromecast
 version=4.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychromecast-${version}"
 build_style=python3-module

From 9ff3e7dae7d0ebe28421538f18f150ecd58104e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 128/872] python-chroot: rebuild for Python 3.8.

---
 srcpkgs/python-chroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chroot/template b/srcpkgs/python-chroot/template
index 36853e9f2c0..7faa0f4cce9 100644
--- a/srcpkgs/python-chroot/template
+++ b/srcpkgs/python-chroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chroot'
 pkgname=python-chroot
 version=0.9.18
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychroot-${version}"
 build_style=python-module

From 8d2b57d7f0075beb9134ebd5f7e517ef8a7f20a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 129/872] python3-cli-ui: rebuild for Python 3.8.

---
 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 8303d44eed2..15a9bd32fce 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.9.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-cli-ui-${version}"
 build_style=python3-module

From ecf175e67cdb7bd1e27d29cc47a7e945a6660996 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 130/872] python3-cli_helpers: rebuild for Python 3.8.

---
 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 74b4abf2200..87b284e3cb5 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=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cli_helpers-${version}"
 build_style=python3-module

From aa87c50665110997328e9b80b9b6ba62c47f18bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 131/872] python-click: rebuild for Python 3.8.

---
 srcpkgs/python-click/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click/template b/srcpkgs/python-click/template
index 217e617e73e..4014cb66a83 100644
--- a/srcpkgs/python-click/template
+++ b/srcpkgs/python-click/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click'
 pkgname=python-click
 version=7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Click-${version}"
 build_style="python-module"

From cac08babb361a709a7b7a93c7a825b4682273115 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 132/872] python-click-log: rebuild for Python 3.8.

---
 srcpkgs/python-click-log/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-log/template b/srcpkgs/python-click-log/template
index 37b53f04af0..b57a7a74b4a 100644
--- a/srcpkgs/python-click-log/template
+++ b/srcpkgs/python-click-log/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-log'
 pkgname=python-click-log
 version=0.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-log-${version}"
 build_style="python-module"

From 5a0f06ded0599ac889d808c93865db1723b2ed95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 133/872] python3-click-plugins: rebuild for Python 3.8.

---
 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 cee484018d1..0ef6ce6b248 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=1
+revision=2
 archs=noarch
 wrksrc="click-plugins-${version}"
 build_style=python3-module

From cf104fe4106995307daeb70eb8d34554c238b5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 134/872] python-click-threading: rebuild for Python 3.8.

---
 srcpkgs/python-click-threading/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-threading/template b/srcpkgs/python-click-threading/template
index 76125224992..49b4a4a9aae 100644
--- a/srcpkgs/python-click-threading/template
+++ b/srcpkgs/python-click-threading/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-threading'
 pkgname=python-click-threading
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-threading-${version}"
 build_style="python-module"

From 4bcf653af73bc8e5a6492eee92e5d2826a779d38 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 135/872] python3-cmdln: rebuild for Python 3.8.

---
 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 f00c9a63908..2b7e21f3980 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=1
+revision=2
 archs=noarch
 wrksrc="cmdln-${version}"
 build_style=python3-module

From 52e9257d3be602d0748918c1440a3eae0b6baa51 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 136/872] python-codespell: rebuild for Python 3.8.

---
 srcpkgs/python-codespell/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-codespell/template b/srcpkgs/python-codespell/template
index 92134285a58..211626f33d7 100644
--- a/srcpkgs/python-codespell/template
+++ b/srcpkgs/python-codespell/template
@@ -1,7 +1,7 @@
 # Template file for 'python-codespell'
 pkgname=python-codespell
 version=1.14.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="codespell-${version}"
 build_style=python-module

From 65299f402e3d3a2991e33defee28d85043e0b40f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 137/872] python-colorama: rebuild for Python 3.8.

---
 srcpkgs/python-colorama/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-colorama/template b/srcpkgs/python-colorama/template
index 98ea0d3be78..09562385243 100644
--- a/srcpkgs/python-colorama/template
+++ b/srcpkgs/python-colorama/template
@@ -1,7 +1,7 @@
 # Template file for 'python-colorama'
 pkgname=python-colorama
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="colorama-${version}"
 build_style=python-module

From ec6a8fb7b9e3330e2d7f3fbe139c7a3742013bd8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 138/872] python3-colorclass: rebuild for Python 3.8.

---
 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 4a80f379206..ed8d2d2ea02 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=1
+revision=2
 archs=noarch
 wrksrc="colorclass-${version}"
 build_style=python3-module

From 4b254d3097fa01cb641af24639c6b9a230345954 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 139/872] python-configobj: rebuild for Python 3.8.

---
 srcpkgs/python-configobj/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-configobj/template b/srcpkgs/python-configobj/template
index 95f30d4631a..a8cb5d5d34e 100644
--- a/srcpkgs/python-configobj/template
+++ b/srcpkgs/python-configobj/template
@@ -1,7 +1,7 @@
 # Template file for 'python-configobj'
 pkgname=python-configobj
 version=5.0.6
-revision=5
+revision=6
 archs=noarch
 wrksrc="configobj-${version}"
 build_style=python-module

From 530a6b84ff81274981ed1aa92a2ff85a78dc9775 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 140/872] python-constantly: rebuild for Python 3.8.

---
 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 b5530908ac4..9160aec9edd 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=2
+revision=3
 archs=noarch
 wrksrc="constantly-${version}"
 build_style=python-module

From d2c0a853f5cd6634cca304f7db191fcb1d9a6afa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 141/872] python-construct: rebuild for Python 3.8.

---
 srcpkgs/python-construct/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-construct/template b/srcpkgs/python-construct/template
index 2afe435652c..d6d0b8010e2 100644
--- a/srcpkgs/python-construct/template
+++ b/srcpkgs/python-construct/template
@@ -1,7 +1,7 @@
 # Template file for 'python-construct'
 pkgname=python-construct
 version=2.9.45
-revision=2
+revision=3
 archs=noarch
 wrksrc="construct-${version}"
 build_style=python-module

From 9ba618aa4a4db0062002fcb1ad540bee9b702ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 142/872] python-coverage: rebuild for Python 3.8.

---
 srcpkgs/python-coverage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-coverage/template b/srcpkgs/python-coverage/template
index df6064b9879..1c44b5e18fb 100644
--- a/srcpkgs/python-coverage/template
+++ b/srcpkgs/python-coverage/template
@@ -1,7 +1,7 @@
 # Template file for 'python-coverage'
 pkgname=python-coverage
 version=4.5.4
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="coverage"

From 9adf4621a4960d8a331e1b723971cb326ad2429f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 143/872] python-cram: rebuild for Python 3.8.

---
 srcpkgs/python-cram/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cram/template b/srcpkgs/python-cram/template
index f1fce32149f..8c5d65fe260 100644
--- a/srcpkgs/python-cram/template
+++ b/srcpkgs/python-cram/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cram'
 pkgname=python-cram
 version=0.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="cram-${version}"
 build_style=python-module

From 47ef41a3931be5da08ee8d6fb0ff35b5e1a95d62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 144/872] python3-crcmod: rebuild for Python 3.8.

---
 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 4cd433d2420..9311dedc8ac 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=1
+revision=2
 wrksrc="crcmod-${version}"
 build_style=python3-module
 pycompile_module="crcmod"

From 8b8750f3919e1f23aa6930671f096a365391611a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 145/872] python-cryptography: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography/template b/srcpkgs/python-cryptography/template
index ce3184715dd..39e63d22f7d 100644
--- a/srcpkgs/python-cryptography/template
+++ b/srcpkgs/python-cryptography/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography'
 pkgname=python-cryptography
 version=2.7
-revision=1
+revision=2
 wrksrc="cryptography-${version}"
 build_style=python-module
 pycompile_module="cryptography"

From 676ecf3ea008b8ccabdd3d2798c449a061abb9dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 146/872] python-cryptography_vectors: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography_vectors/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography_vectors/template b/srcpkgs/python-cryptography_vectors/template
index d52e5f5e47c..8fba3a0ce27 100644
--- a/srcpkgs/python-cryptography_vectors/template
+++ b/srcpkgs/python-cryptography_vectors/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography_vectors'
 pkgname=python-cryptography_vectors
 version=2.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="cryptography_vectors-${version}"
 build_style=python-module

From b78a89dedf3b15094ae7febdff460a2cbf547464 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 147/872] python-css-parser: rebuild for Python 3.8.

---
 srcpkgs/python-css-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-css-parser/template b/srcpkgs/python-css-parser/template
index e90b103e4a0..f6d2d0cbf8b 100644
--- a/srcpkgs/python-css-parser/template
+++ b/srcpkgs/python-css-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-css-parser'
 pkgname=python-css-parser
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="css-parser-${version}"
 build_style=python-module

From 036f8b87a68dcb362c7037f58abcffb763571601 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 148/872] python-cssselect: rebuild for Python 3.8.

---
 srcpkgs/python-cssselect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssselect/template b/srcpkgs/python-cssselect/template
index d7dbcebc0ea..c7f43ebca9f 100644
--- a/srcpkgs/python-cssselect/template
+++ b/srcpkgs/python-cssselect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssselect'
 pkgname=python-cssselect
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d4b52974f5f9e8a86060d3dfccc041298c1d666 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 149/872] python-cssutils: rebuild for Python 3.8.

---
 srcpkgs/python-cssutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssutils/template b/srcpkgs/python-cssutils/template
index 648c4754c22..5f08903b9a0 100644
--- a/srcpkgs/python-cssutils/template
+++ b/srcpkgs/python-cssutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssutils'
 pkgname=python-cssutils
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="cssutils-${version}"
 build_style=python-module

From bfb2835290dfefddc0781e2b463d410bf121efa5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 150/872] python-cups: rebuild for Python 3.8.

---
 srcpkgs/python-cups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cups/template b/srcpkgs/python-cups/template
index 2c26e9ef3d0..62c384c9db8 100644
--- a/srcpkgs/python-cups/template
+++ b/srcpkgs/python-cups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cups'
 pkgname=python-cups
 version=1.9.74
-revision=2
+revision=3
 wrksrc="pycups-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 32daac09af71a30483e9985028381670b4ab6245 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 151/872] system-config-printer: rebuild for Python 3.8.

---
 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 e8f8eca46ae..04fe74ff808 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.11
-revision=5
+revision=6
 build_style=gnu-configure
 configure_args="--with-udev-rules"
 make_build_args="udevhelperdir=/usr/lib/udev"

From 582813b2756ce1d1d397113a752b81189680c001 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 152/872] python-curl: rebuild for Python 3.8.

---
 srcpkgs/python-curl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curl/template b/srcpkgs/python-curl/template
index f1f9051d53a..685c63ce68a 100644
--- a/srcpkgs/python-curl/template
+++ b/srcpkgs/python-curl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curl'
 pkgname=python-curl
 version=7.43.0.3
-revision=4
+revision=5
 wrksrc="pycurl-${version}"
 build_style=python-module
 pycompile_module="curl"

From 0eda981910702bfaac2a8af2041fe2c534c13618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 153/872] python-curtsies: rebuild for Python 3.8.

---
 srcpkgs/python-curtsies/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curtsies/template b/srcpkgs/python-curtsies/template
index 158d1c5ce76..6126a11e9b4 100644
--- a/srcpkgs/python-curtsies/template
+++ b/srcpkgs/python-curtsies/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curtsies'
 pkgname=python-curtsies
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="curtsies-${version}"
 build_style=python-module

From 7db16365daaa931d774701441c01b698be457cb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 154/872] python-cycler: rebuild for Python 3.8.

---
 srcpkgs/python-cycler/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cycler/template b/srcpkgs/python-cycler/template
index ee6c985b288..0b53c195dae 100644
--- a/srcpkgs/python-cycler/template
+++ b/srcpkgs/python-cycler/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cycler'
 pkgname=python-cycler
 version=0.10.0
-revision=4
+revision=5
 archs=noarch
 wrksrc="cycler-${version}"
 build_style=python-module

From 2c59e6772ee31b855fe302a27b9b9544cd865e6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 155/872] python-daemonize: rebuild for Python 3.8.

---
 srcpkgs/python-daemonize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-daemonize/template b/srcpkgs/python-daemonize/template
index 699a156b26b..efaf163e573 100644
--- a/srcpkgs/python-daemonize/template
+++ b/srcpkgs/python-daemonize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-daemonize'
 pkgname=python-daemonize
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="daemonize-${version}"
 build_style=python-module

From 84cc63fece0763c8b6920e56e78508551e0fc727 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 156/872] python-dateutil: rebuild for Python 3.8.

---
 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 d9c0f73c883..7675b8f9447 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.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="dateutil"

From 9a19173186ae564f17114f530ac8077484d43c82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 157/872] python-dbus: rebuild for Python 3.8.

---
 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 869c10b2969..3845f6ce34a 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.12
-revision=1
+revision=2
 wrksrc="dbus-python-${version}"
 build_style=gnu-configure
 pycompile_module="dbus"

From 06a9a5b6965485369e669181d99123d7beabf81f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 158/872] python3-dbusmock: rebuild for Python 3.8.

---
 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 67e0ed68078..4abd47843cc 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.18.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-dbusmock-${version}"
 build_style=python3-module

From 694c57d69d63d9f59bef9d31d20a0b16dc73a2a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 159/872] python-decorator: rebuild for Python 3.8.

---
 srcpkgs/python-decorator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-decorator/template b/srcpkgs/python-decorator/template
index 14090c537c9..7f14fef90a6 100644
--- a/srcpkgs/python-decorator/template
+++ b/srcpkgs/python-decorator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-decorator'
 pkgname=python-decorator
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="decorator-${version}"
 build_style=python-module

From 3bd4b100eb970e16e93bbbed8ce2ac91a36e3df5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 160/872] python-defusedxml: rebuild for Python 3.8.

---
 srcpkgs/python-defusedxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-defusedxml/template b/srcpkgs/python-defusedxml/template
index afd62e94414..96234eb18c7 100644
--- a/srcpkgs/python-defusedxml/template
+++ b/srcpkgs/python-defusedxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-defusedxml'
 pkgname=python-defusedxml
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="defusedxml-${version}"
 build_style=python-module

From 442acbe58cd337c55658908f41ec5b6221ca8fcb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 161/872] python3-discid: rebuild for Python 3.8.

---
 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 be5eae1f07f..cc4bc27a1aa 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=1
+revision=2
 archs=noarch
 wrksrc="discid-${version}"
 build_style=python3-module

From 31db2101853fbced7b2655f48906b9054bce07ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 162/872] python-discogs_client: rebuild for Python 3.8.

---
 srcpkgs/python-discogs_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-discogs_client/template b/srcpkgs/python-discogs_client/template
index a27cc50f93c..5af18eda664 100644
--- a/srcpkgs/python-discogs_client/template
+++ b/srcpkgs/python-discogs_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-discogs_client'
 pkgname=python-discogs_client
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="discogs-client-${version}"
 build_style=python-module

From 0aba2b232148b832c27ebd8703c24f42c5018f15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 163/872] python3-distro: rebuild for Python 3.8.

---
 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 86e94572ed7..f1205ace151 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.4.0
-revision=1
+revision=2
 wrksrc=distro-${version}
 build_style=python3-module
 pycompile_module="distro"

From 990a3bd7cef20bd21b781caccd807a7cadf6a0fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 164/872] python-distutils-extra: rebuild for Python 3.8.

---
 srcpkgs/python-distutils-extra/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-distutils-extra/template b/srcpkgs/python-distutils-extra/template
index 9e5728ba08f..46bb0cccc31 100644
--- a/srcpkgs/python-distutils-extra/template
+++ b/srcpkgs/python-distutils-extra/template
@@ -1,7 +1,7 @@
 # Template file for 'python-distutils-extra'
 pkgname=python-distutils-extra
 version=2.39
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 pycompile_module="DistUtilsExtra"

From cc8c6f7c74e5660152cb87b99e7d7b88b5c3d077 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 165/872] python-dkimpy: rebuild for Python 3.8.

---
 srcpkgs/python-dkimpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dkimpy/template b/srcpkgs/python-dkimpy/template
index 4ca5ad386b0..1da26c5de5d 100644
--- a/srcpkgs/python-dkimpy/template
+++ b/srcpkgs/python-dkimpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dkimpy'
 pkgname=python-dkimpy
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="dkimpy-${version}"
 build_style=python-module

From 8560c730ee4396275d04f5b5649fc0b2a1a8819e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 166/872] python-dnspython: rebuild for Python 3.8.

---
 srcpkgs/python-dnspython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dnspython/template b/srcpkgs/python-dnspython/template
index 15d4d7a8a73..66d237e89ee 100644
--- a/srcpkgs/python-dnspython/template
+++ b/srcpkgs/python-dnspython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dnspython'
 pkgname=python-dnspython
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dnspython-${version}"
 build_style=python-module

From c723160d02d838faad8761fcdaa9cfaed2df756f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 167/872] python-docker: rebuild for Python 3.8.

---
 srcpkgs/python-docker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker/template b/srcpkgs/python-docker/template
index b3f8cb2076b..83265bbb606 100644
--- a/srcpkgs/python-docker/template
+++ b/srcpkgs/python-docker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker'
 pkgname=python-docker
 version=3.7.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-${version}"
 build_style=python-module

From 116d9592b10bcde7a5b2f78ed23e0c2e382394da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 168/872] python-docker-pycreds: rebuild for Python 3.8.

---
 srcpkgs/python-docker-pycreds/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker-pycreds/template b/srcpkgs/python-docker-pycreds/template
index c478ded9de6..2224be0d21d 100644
--- a/srcpkgs/python-docker-pycreds/template
+++ b/srcpkgs/python-docker-pycreds/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker-pycreds'
 pkgname=python-docker-pycreds
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-pycreds-${version}"
 build_style=python-module

From 339d2fc160bc67c015b61704b1ade0e15a729050 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 169/872] python-dockerpty: rebuild for Python 3.8.

---
 srcpkgs/python-dockerpty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dockerpty/template b/srcpkgs/python-dockerpty/template
index 78ba5bc3b09..4a0b3a7a33f 100644
--- a/srcpkgs/python-dockerpty/template
+++ b/srcpkgs/python-dockerpty/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dockerpty'
 pkgname=python-dockerpty
 version=0.4.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="dockerpty-${version}"
 build_style=python-module

From 9925e97e6e19313f6899b14640957a47c12c3c6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 170/872] python-docopt: rebuild for Python 3.8.

---
 srcpkgs/python-docopt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docopt/template b/srcpkgs/python-docopt/template
index 4b8661ed2e1..48e5f86c1e0 100644
--- a/srcpkgs/python-docopt/template
+++ b/srcpkgs/python-docopt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docopt'
 pkgname=python-docopt
 version=0.6.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="docopt-${version}"
 build_style=python-module

From b274270fc5a58198a59400d9c8eb825546cf64ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 171/872] python-docutils: rebuild for Python 3.8.

---
 srcpkgs/python-docutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docutils/template b/srcpkgs/python-docutils/template
index 62f080f416a..8fd21a7450b 100644
--- a/srcpkgs/python-docutils/template
+++ b/srcpkgs/python-docutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docutils'
 pkgname=python-docutils
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docutils-${version}"
 build_style=python-module

From 6db8d0a9fb5d7b1cd339f5102d86a29dda19f348 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 172/872] python-dogpile.cache: rebuild for Python 3.8.

---
 srcpkgs/python-dogpile.cache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index f6e106fb4e8..894c6f695bf 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dogpile.cache'
 pkgname=python-dogpile.cache
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dogpile.cache-${version}"
 build_style=python-module

From e603b2f5de239ac8c6e7b8322f560ed5249fe887 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 173/872] python-dominate: rebuild for Python 3.8.

---
 srcpkgs/python-dominate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dominate/template b/srcpkgs/python-dominate/template
index 14ec659bac8..6d6f2caa323 100644
--- a/srcpkgs/python-dominate/template
+++ b/srcpkgs/python-dominate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dominate'
 pkgname=python-dominate
 version=2.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dominate-${version}"
 build_style=python-module

From 2bd7c3e739559614758b25140591fa8bb623a73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 174/872] python-dulwich: rebuild for Python 3.8.

---
 srcpkgs/python-dulwich/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dulwich/template b/srcpkgs/python-dulwich/template
index 0bddda65069..7b8ac45011e 100644
--- a/srcpkgs/python-dulwich/template
+++ b/srcpkgs/python-dulwich/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dulwich'
 pkgname=python-dulwich
 version=0.19.13
-revision=1
+revision=2
 wrksrc="dulwich-${version}"
 build_style=python-module
 pycompile_module="dulwich"

From 9d0b79dad0746da7669be20a38791a7eff4a42dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 175/872] python3-easygui: rebuild for Python 3.8.

---
 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 c1ec4767ae9..a9a2f66d865 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="easygui-${version}"
 build_style=python3-module

From eaa3ee113511523004b2d78a2119becc627b2dcf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 176/872] python-ecdsa: rebuild for Python 3.8.

---
 srcpkgs/python-ecdsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ecdsa/template b/srcpkgs/python-ecdsa/template
index 5e0b217fa73..e6e7d58cd10 100644
--- a/srcpkgs/python-ecdsa/template
+++ b/srcpkgs/python-ecdsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ecdsa'
 pkgname=python-ecdsa
 version=0.13.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 5d7cb5b032b5814415f5b21646b09bceda211fd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 177/872] python-editor: rebuild for Python 3.8.

---
 srcpkgs/python-editor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-editor/template b/srcpkgs/python-editor/template
index 4b86afa6924..3594e407205 100644
--- a/srcpkgs/python-editor/template
+++ b/srcpkgs/python-editor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-editor'
 pkgname=python-editor
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="editor"

From 19c3e09b30ed3cf9c6ffee8cee652d54c672a599 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 178/872] python-efl: rebuild for Python 3.8.

---
 srcpkgs/python-efl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-efl/template b/srcpkgs/python-efl/template
index a49e7d35847..2096f6916da 100644
--- a/srcpkgs/python-efl/template
+++ b/srcpkgs/python-efl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-efl'
 pkgname=python-efl
 version=1.22.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="efl"
 hostmakedepends="pkg-config python-devel python3-devel"

From 82198e93fcca38bb8b5f4f754bcbd6fd7baf59da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 179/872] python3-eliot: rebuild for Python 3.8.

---
 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 15b05dd7331..8453789b688 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="eliot-${version}"
 build_style=python3-module

From bcfe6b0d9db4104d00cb6a16d6012f2258515d59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 180/872] python-empy: rebuild for Python 3.8.

---
 srcpkgs/python-empy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-empy/template b/srcpkgs/python-empy/template
index 97476250cf2..4668a9cc814 100644
--- a/srcpkgs/python-empy/template
+++ b/srcpkgs/python-empy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-empy'
 pkgname=python-empy
 version=3.3.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="empy-${version}"
 build_style=python-module

From 6a91fa7210bd83ced5963d69be69166cd7ad72e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 181/872] python-enchant: rebuild for Python 3.8.

---
 srcpkgs/python-enchant/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enchant/template b/srcpkgs/python-enchant/template
index a443877d821..e499957b47e 100644
--- a/srcpkgs/python-enchant/template
+++ b/srcpkgs/python-enchant/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enchant'
 pkgname=python-enchant
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python-module

From 6ec52886dc67e49d1440bf8d0d1fe8fab07df30a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 182/872] python-entrypoints: rebuild for Python 3.8.

---
 srcpkgs/python-entrypoints/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-entrypoints/template b/srcpkgs/python-entrypoints/template
index ebefb2d04dc..6070650f35d 100644
--- a/srcpkgs/python-entrypoints/template
+++ b/srcpkgs/python-entrypoints/template
@@ -1,7 +1,7 @@
 # Template file for 'python-entrypoints'
 pkgname=python-entrypoints
 version=0.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="entrypoints-${version}"
 build_style=python-module

From 612a78254c1f46db87994e41646495e245a3facf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 183/872] python-envdir: rebuild for Python 3.8.

---
 srcpkgs/python-envdir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-envdir/template b/srcpkgs/python-envdir/template
index 622fcee6b34..b8cccad60ac 100644
--- a/srcpkgs/python-envdir/template
+++ b/srcpkgs/python-envdir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-envdir'
 pkgname=python-envdir
 version=1.0.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 50f8488d9ea7d659590f7d09f42dd5b94e19152c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 184/872] python-enzyme: rebuild for Python 3.8.

---
 srcpkgs/python-enzyme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enzyme/template b/srcpkgs/python-enzyme/template
index 637c858195b..f28f40b0319 100644
--- a/srcpkgs/python-enzyme/template
+++ b/srcpkgs/python-enzyme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enzyme'
 pkgname=python-enzyme
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="enzyme-${version}"
 build_style=python-module

From 0927e611429f29f17290f1e10cf2c0b872d1feb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 185/872] python3-esprima: rebuild for Python 3.8.

---
 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 c3a564123de..aec8930a6bf 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=1
+revision=2
 wrksrc="esprima-${version}"
 build_style=python3-module
 pycompile_module="esprima"

From d10708d4fcebbbc7dccf424ca1a596b43ae8df59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 186/872] python-evdev: rebuild for Python 3.8.

---
 srcpkgs/python-evdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-evdev/template b/srcpkgs/python-evdev/template
index 3c1a5253513..cff10211628 100644
--- a/srcpkgs/python-evdev/template
+++ b/srcpkgs/python-evdev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-evdev'
 pkgname=python-evdev
 version=1.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="evdev"
 hostmakedepends="python-setuptools python3-setuptools"

From d4f74f5bad705da704a6773a834e3939d7700c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 187/872] python-ewmh: rebuild for Python 3.8.

---
 srcpkgs/python-ewmh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ewmh/template b/srcpkgs/python-ewmh/template
index be6d04316b0..a96490fb56d 100644
--- a/srcpkgs/python-ewmh/template
+++ b/srcpkgs/python-ewmh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ewmh'
 pkgname=python-ewmh
 version=0.1.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From afbcc47e23517b6d56ec485dc40f389c1af31701 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 188/872] python-exifread: rebuild for Python 3.8.

---
 srcpkgs/python-exifread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-exifread/template b/srcpkgs/python-exifread/template
index 853f885fff8..834aa7730ee 100644
--- a/srcpkgs/python-exifread/template
+++ b/srcpkgs/python-exifread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-exifread'
 pkgname=python-exifread
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="exif-py-${version}"
 build_style="python-module"

From d05fad06fa4306ef7f685f49a366fcc27e64a40c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 189/872] python-fasteners: rebuild for Python 3.8.

---
 srcpkgs/python-fasteners/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fasteners/template b/srcpkgs/python-fasteners/template
index 34ca4e0e9db..24d2ec0611f 100644
--- a/srcpkgs/python-fasteners/template
+++ b/srcpkgs/python-fasteners/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fasteners'
 pkgname=python-fasteners
 version=0.15
-revision=1
+revision=2
 archs=noarch
 wrksrc="fasteners-${version}"
 build_style=python-module

From 8c663b7a9f12675a94dea8c33eddeededd3c56bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 190/872] python-feedgenerator: rebuild for Python 3.8.

---
 srcpkgs/python-feedgenerator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedgenerator/template b/srcpkgs/python-feedgenerator/template
index 3e5abc4f433..bcffb6728aa 100644
--- a/srcpkgs/python-feedgenerator/template
+++ b/srcpkgs/python-feedgenerator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedgenerator'
 pkgname=python-feedgenerator
 version=1.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="feedgenerator-${version}"
 build_style=python-module

From ab9e5bccaa31f32d93549c21e47bc12c4e5ac181 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 191/872] python-feedparser: rebuild for Python 3.8.

---
 srcpkgs/python-feedparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedparser/template b/srcpkgs/python-feedparser/template
index c5c5e8783eb..94f0a58ec88 100644
--- a/srcpkgs/python-feedparser/template
+++ b/srcpkgs/python-feedparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedparser'
 pkgname=python-feedparser
 version=5.2.1
-revision=5
+revision=6
 archs=noarch
 wrksrc="feedparser-${version}"
 build_style=python-module

From 157719696415e499518e188417324c7d97359d36 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 192/872] python3-fido2: rebuild for Python 3.8.

---
 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 fafb4d61d56..fb737d68d20 100644
--- a/srcpkgs/python3-fido2/template
+++ b/srcpkgs/python3-fido2/template
@@ -2,7 +2,7 @@
 pkgname=python3-fido2
 _pkgname=fido2
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From cbab3fd166f79dc7d2659a802e1953c697f94a95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 193/872] python3-filelock: rebuild for Python 3.8.

---
 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 8e0bc8f1070..9105ff8689d 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.0.12
-revision=1
+revision=2
 wrksrc="filelock-${version}"
 build_style=python3-module
 pycompile_module="filelock.py"

From df9deb02719807bdcb49f7c41040cd8748efd6fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 194/872] python-filetype: rebuild for Python 3.8.

---
 srcpkgs/python-filetype/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-filetype/template b/srcpkgs/python-filetype/template
index 37896cff9d8..10b974794b5 100644
--- a/srcpkgs/python-filetype/template
+++ b/srcpkgs/python-filetype/template
@@ -1,7 +1,7 @@
 # Template file for 'python-filetype'
 pkgname=python-filetype
 version=1.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="filetype-${version}"
 build_style=python-module

From b71ed5528581f9bba57653ff2acb45edf6dcbd81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 195/872] python3-fishnet: rebuild for Python 3.8.

---
 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 9dde60cbb6c..6280ae8e966 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=1
+revision=2
 archs=noarch
 wrksrc="fishnet-${version}"
 build_style=python3-module

From 25bc415f7d96b99e98c97ab0abad6a531786f9e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 196/872] python-flaky: rebuild for Python 3.8.

---
 srcpkgs/python-flaky/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-flaky/template b/srcpkgs/python-flaky/template
index d5211c9cb60..e8e681421f7 100644
--- a/srcpkgs/python-flaky/template
+++ b/srcpkgs/python-flaky/template
@@ -1,7 +1,7 @@
 # Template file for 'python-flaky'
 pkgname=python-flaky
 version=3.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 6dfa18d602ed8d6414a040466c4e0eef4db1d0d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 197/872] python3-flexmock: rebuild for Python 3.8.

---
 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 0663ed5122d..8a7c9a2894d 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.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="flexmock-${version}"
 build_style=python3-module

From 8c90b86b18b06e68260df59166a7228f7af5e5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 198/872] python3-fonttools: rebuild for Python 3.8.

---
 srcpkgs/python3-fonttools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-fonttools/template b/srcpkgs/python3-fonttools/template
index 15cf36585fb..ccd4b66c5d8 100644
--- a/srcpkgs/python3-fonttools/template
+++ b/srcpkgs/python3-fonttools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-fonttools'
 pkgname=python3-fonttools
 version=4.0.2
-revision=1
+revision=2
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 pycompile_module="fonttools"

From 423903ec28541ea1cd89f97400529121dca5e065 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 199/872] python3-frozendict: rebuild for Python 3.8.

---
 srcpkgs/python3-frozendict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-frozendict/template b/srcpkgs/python3-frozendict/template
index d3b4dc91602..739000a887c 100644
--- a/srcpkgs/python3-frozendict/template
+++ b/srcpkgs/python3-frozendict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-frozendict'
 pkgname=python3-frozendict
 version=1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="frozendict-${version}"
 build_style=python3-module

From 0929953d079922e685a9b46372630d69c2c6776d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 200/872] python-fuse: rebuild for Python 3.8.

---
 srcpkgs/python-fuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fuse/template b/srcpkgs/python-fuse/template
index 6449cc36a02..2e99e9866d3 100644
--- a/srcpkgs/python-fuse/template
+++ b/srcpkgs/python-fuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fuse'
 pkgname=python-fuse
 version=0.3.1
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="fuseparts fuse.py"
 hostmakedepends="pkg-config python-setuptools python3-setuptools"

From 505bca67544c8cca26d3f7675eb746bb98abf44e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 201/872] python-future: rebuild for Python 3.8.

---
 srcpkgs/python-future/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-future/template b/srcpkgs/python-future/template
index 1844be2efbc..6cd53908823 100644
--- a/srcpkgs/python-future/template
+++ b/srcpkgs/python-future/template
@@ -1,7 +1,7 @@
 # Template file for 'python-future'
 pkgname=python-future
 version=0.17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="future-${version}"
 build_style=python-module

From 4b595c01c8dcf28a72cf0a96960609ab9788b6ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 202/872] python3-geojson: rebuild for Python 3.8.

---
 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 6bcd0c3092e..90e7d5a0e60 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=1
+revision=2
 archs=noarch
 wrksrc="geojson-${version}"
 build_style=python3-module

From 5e44d64f54a2983f4d5fefba49ef65a6803bd024 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 203/872] python-gevent: rebuild for Python 3.8.

---
 srcpkgs/python-gevent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gevent/template b/srcpkgs/python-gevent/template
index 2bbabee00fc..35c76146d56 100644
--- a/srcpkgs/python-gevent/template
+++ b/srcpkgs/python-gevent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gevent'
 pkgname=python-gevent
 version=1.4.0
-revision=1
+revision=2
 wrksrc="gevent-${version}"
 build_style=python-module
 pycompile_module="gevent"

From 5fed10c6460512a1f1391f079ed47645f9df532e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 204/872] python3-gitchangelog: rebuild for Python 3.8.

---
 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 ed381e07d78..cc1945f2623 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=1
+revision=2
 archs=noarch
 wrksrc="gitchangelog-${version}"
 build_style=python3-module

From b52557ed164619919a05cdf8fae5e77e5b4f53db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 205/872] python-gitdb: rebuild for Python 3.8.

---
 srcpkgs/python-gitdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitdb/template b/srcpkgs/python-gitdb/template
index d9e624b9f53..253ddaa07bd 100644
--- a/srcpkgs/python-gitdb/template
+++ b/srcpkgs/python-gitdb/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitdb'
 pkgname=python-gitdb
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="gitdb2-${version}"
 build_style=python-module

From 53365dcec4eb25138ea4bb248d57c1b2aa7aa311 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 206/872] python-github3: rebuild for Python 3.8.

---
 srcpkgs/python-github3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-github3/template b/srcpkgs/python-github3/template
index 2cb71368f3d..425fe1b7362 100644
--- a/srcpkgs/python-github3/template
+++ b/srcpkgs/python-github3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-github3'
 pkgname=python-github3
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="github3.py-${version}"
 build_style=python-module

From 2b4c90de9a0cbcbb5902a9407f229864bd81a7f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 207/872] python-gitlab: rebuild for Python 3.8.

---
 srcpkgs/python-gitlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitlab/template b/srcpkgs/python-gitlab/template
index 7db583b54c4..0f71b4c7153 100644
--- a/srcpkgs/python-gitlab/template
+++ b/srcpkgs/python-gitlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitlab'
 pkgname=python-gitlab
 version=1.12.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gitlab"

From 51613301779bb891e87daba6b634dca18654d29f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 208/872] python-gmpy2: rebuild for Python 3.8.

---
 srcpkgs/python-gmpy2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gmpy2/template b/srcpkgs/python-gmpy2/template
index c41a9f4595b..74e9b583288 100644
--- a/srcpkgs/python-gmpy2/template
+++ b/srcpkgs/python-gmpy2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gmpy2'
 pkgname=python-gmpy2
 version=2.0.8
-revision=5
+revision=6
 wrksrc="gmpy2-${version}"
 build_style=python-module
 hostmakedepends="unzip python-setuptools python3-setuptools

From a6f4b9ed74b787b741e6297520186bd60de2b46e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 209/872] python-gntp: rebuild for Python 3.8.

---
 srcpkgs/python-gntp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gntp/template b/srcpkgs/python-gntp/template
index 14bd36518f8..7b3bb5a7bb7 100644
--- a/srcpkgs/python-gntp/template
+++ b/srcpkgs/python-gntp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gntp'
 pkgname=python-gntp
 version=1.0.3
-revision=4
+revision=5
 archs=noarch
 wrksrc="gntp-${version}"
 build_style=python-module

From 0730dc20e341ef5247184f85a47f2d1200750698 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 210/872] python-gnupg: rebuild for Python 3.8.

---
 srcpkgs/python-gnupg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gnupg/template b/srcpkgs/python-gnupg/template
index ae6f49c7e27..24c0943d1e4 100644
--- a/srcpkgs/python-gnupg/template
+++ b/srcpkgs/python-gnupg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gnupg'
 pkgname=python-gnupg
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gnupg.py"

From 2c78f38b921da1d4ac2ddf5c200a378cadd75590 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 211/872] python3-gobject: rebuild for Python 3.8.

---
 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 242d33ed3ac..8713ddf5334 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.32.2
-revision=1
+revision=2
 wrksrc="pygobject-${version}"
 build_style=meson
 build_helper="gir"

From 15ed888e45d37128f9852cfc492a14182186f1a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 212/872] python-gogs-client: rebuild for Python 3.8.

---
 srcpkgs/python-gogs-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gogs-client/template b/srcpkgs/python-gogs-client/template
index e8189bc8805..027135d430c 100644
--- a/srcpkgs/python-gogs-client/template
+++ b/srcpkgs/python-gogs-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gogs-client'
 pkgname=python-gogs-client
 version=1.0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="gogs_client-${version}"
 build_style=python-module

From 1ce661eb8f15d8e6d56a3f1e197897c332fa224e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 213/872] python-google-api-python-client: rebuild for Python
 3.8.

---
 srcpkgs/python-google-api-python-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-api-python-client/template b/srcpkgs/python-google-api-python-client/template
index 273cd0722b8..69c2d4e96eb 100644
--- a/srcpkgs/python-google-api-python-client/template
+++ b/srcpkgs/python-google-api-python-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-api-python-client'
 pkgname=python-google-api-python-client
 version=1.7.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From abc55893b0e34778f73646713ec111220a9cafbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 214/872] python-google-auth: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth/template b/srcpkgs/python-google-auth/template
index 708fe08325a..1de6800e3d2 100644
--- a/srcpkgs/python-google-auth/template
+++ b/srcpkgs/python-google-auth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth'
 pkgname=python-google-auth
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 345385c7c36d4b9e58aad80d36b1cd93575ecd95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 215/872] python-google-auth-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth-httplib2/template b/srcpkgs/python-google-auth-httplib2/template
index 9a7fd093ce5..9e43bc92292 100644
--- a/srcpkgs/python-google-auth-httplib2/template
+++ b/srcpkgs/python-google-auth-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth-httplib2'
 pkgname=python-google-auth-httplib2
 version=0.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 659bb740f4ecc98b01dc400608f6b524416a0b86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 216/872] python-gpg: rebuild for Python 3.8.

---
 srcpkgs/python-gpg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gpg/template b/srcpkgs/python-gpg/template
index 4ef85846b42..a17a0324af8 100644
--- a/srcpkgs/python-gpg/template
+++ b/srcpkgs/python-gpg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gpg'
 pkgname=python-gpg
 version=1.10.0
-revision=3
+revision=4
 wrksrc="gpg-${version}"
 build_style=python-module
 hostmakedepends="swig gpgme-devel python-devel python3-devel"

From 873dc5b9b60d819c83e9d76fd366d7e22b1e3bc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 217/872] python-grako: rebuild for Python 3.8.

---
 srcpkgs/python-grako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-grako/template b/srcpkgs/python-grako/template
index cc02973b31e..2b401732735 100644
--- a/srcpkgs/python-grako/template
+++ b/srcpkgs/python-grako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-grako'
 pkgname=python-grako
 version=3.99.9
-revision=3
+revision=4
 wrksrc="neogeny-${pkgname/python-/}-275d3c4fe4ac"
 build_style=python-module
 pycompile_module="grako"

From d47059d2656db0b58c65856428cabac0432d40b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 218/872] python-graphviz: rebuild for Python 3.8.

---
 srcpkgs/python-graphviz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-graphviz/template b/srcpkgs/python-graphviz/template
index 521f2e81213..e3d487a2db7 100644
--- a/srcpkgs/python-graphviz/template
+++ b/srcpkgs/python-graphviz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-graphviz'
 pkgname=python-graphviz
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 604137947acf2b7cd302f3f32e778c96a0f521f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 219/872] python-greenlet: rebuild for Python 3.8.

---
 srcpkgs/python-greenlet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-greenlet/template b/srcpkgs/python-greenlet/template
index d1e63ac7adb..b540e9a286b 100644
--- a/srcpkgs/python-greenlet/template
+++ b/srcpkgs/python-greenlet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-greenlet'
 pkgname=python-greenlet
 version=0.4.15
-revision=2
+revision=3
 wrksrc="greenlet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From c75b3ed338515fef098deb3e5b0d7a6afb7e4027 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 220/872] python-guessit: rebuild for Python 3.8.

---
 srcpkgs/python-guessit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-guessit/template b/srcpkgs/python-guessit/template
index 5029048a041..a962f14522f 100644
--- a/srcpkgs/python-guessit/template
+++ b/srcpkgs/python-guessit/template
@@ -1,7 +1,7 @@
 # Template file for 'python-guessit'
 pkgname=python-guessit
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="guessit-${version}"
 build_style=python-module

From be7acc08bc4f5ffb222fcebc23a391553273ece1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 221/872] python-h11: rebuild for Python 3.8.

---
 srcpkgs/python-h11/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-h11/template b/srcpkgs/python-h11/template
index 88040dfadec..b2e007533a7 100644
--- a/srcpkgs/python-h11/template
+++ b/srcpkgs/python-h11/template
@@ -1,7 +1,7 @@
 # Template file for 'python-h11'
 pkgname=python-h11
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=h11-${version}
 build_style=python-module

From bdf55bd416f8bc2ed44be6c4c54d162c18a8ea97 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 222/872] python-habanero: rebuild for Python 3.8.

---
 srcpkgs/python-habanero/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-habanero/template b/srcpkgs/python-habanero/template
index 86d66befc3d..a914f21ecb7 100644
--- a/srcpkgs/python-habanero/template
+++ b/srcpkgs/python-habanero/template
@@ -1,7 +1,7 @@
 # Template file for 'python-habanero'
 pkgname=python-habanero
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="habanero-${version}"
 build_style=python-module

From 9c07301e6c8b8cbc8282f2c49eee7ea5572650fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 223/872] python3-hawkauthlib: rebuild for Python 3.8.

---
 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 fd7f1405790..1456fa7d814 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=2
+revision=3
 archs=noarch
 wrksrc="hawkauthlib-${version}"
 build_style=python3-module

From 66941ef99dc3f45dea432a38889d9aedcbc58e8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 224/872] python-hiredis: rebuild for Python 3.8.

---
 srcpkgs/python-hiredis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hiredis/template b/srcpkgs/python-hiredis/template
index 23694ae92d7..82a97d5eaf3 100644
--- a/srcpkgs/python-hiredis/template
+++ b/srcpkgs/python-hiredis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hiredis'
 pkgname=python-hiredis
 version=0.2.0
-revision=4
+revision=5
 wrksrc="hiredis-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 335237d6c8ffbf9d850fddc0047cb4ea28057efd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 225/872] python3-hkdf: rebuild for Python 3.8.

---
 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 fabc91ee974..0faaf05b5fe 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=1
+revision=2
 archs=noarch
 wrksrc="hkdf-${version}"
 build_style=python3-module

From fa28e1e2a5b4f298ee9762f0f595a5b1b16db0c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 226/872] python-hoedown: rebuild for Python 3.8.

---
 srcpkgs/python-hoedown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hoedown/template b/srcpkgs/python-hoedown/template
index a964fbbb709..4b82aba9afc 100644
--- a/srcpkgs/python-hoedown/template
+++ b/srcpkgs/python-hoedown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hoedown'
 pkgname=python-hoedown
 version=0.3.0
-revision=2
+revision=3
 wrksrc="hoedown-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 1b9ab7e23ce8f84563cdaac18cbe35d6b5b377eb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 227/872] python-hpack: rebuild for Python 3.8.

---
 srcpkgs/python-hpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hpack/template b/srcpkgs/python-hpack/template
index c69e91daa0e..ffbac313103 100644
--- a/srcpkgs/python-hpack/template
+++ b/srcpkgs/python-hpack/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hpack'
 pkgname=python-hpack
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hpack-${version}
 build_style=python-module

From b6095882129bc28d1a3eec0f996353011126ed10 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 228/872] python3-html2text: rebuild for Python 3.8.

---
 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 006f2a127ad..c74e236a053 100644
--- a/srcpkgs/python3-html2text/template
+++ b/srcpkgs/python3-html2text/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-html2text'
 pkgname=python3-html2text
 version=2019.9.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module

From 78741dc5f018f23c93acabc2cdd16c97d5e08012 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 229/872] python-html5-parser: rebuild for Python 3.8.

---
 srcpkgs/python-html5-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5-parser/template b/srcpkgs/python-html5-parser/template
index 130c5037e57..41bbd0ea157 100644
--- a/srcpkgs/python-html5-parser/template
+++ b/srcpkgs/python-html5-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5-parser'
 pkgname=python-html5-parser
 version=0.4.8
-revision=1
+revision=2
 wrksrc="html5-parser-${version}"
 build_style=python-module
 pycompile_module="html5_parser"

From f69efbb44a9aa15f6b7468ff70a20786ec1a04d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 230/872] python-html5lib: rebuild for Python 3.8.

---
 srcpkgs/python-html5lib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5lib/template b/srcpkgs/python-html5lib/template
index 81e683f7bcf..2565de64fd2 100644
--- a/srcpkgs/python-html5lib/template
+++ b/srcpkgs/python-html5lib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5lib'
 pkgname=python-html5lib
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="html5lib-${version}"
 build_style=python-module

From 6bd979521876c876eea2022ebe023cdbb30777c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 231/872] python-httmock: rebuild for Python 3.8.

---
 srcpkgs/python-httmock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httmock/template b/srcpkgs/python-httmock/template
index 61a60126936..e798b4fc1b3 100644
--- a/srcpkgs/python-httmock/template
+++ b/srcpkgs/python-httmock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httmock'
 pkgname=python-httmock
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="httmock-${version}"
 build_style=python-module

From 7f5b2e5c5738ca5824c255406195ff59f30f2c80 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 232/872] python-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httplib2/template b/srcpkgs/python-httplib2/template
index edcb6abf0c1..fe76a729328 100644
--- a/srcpkgs/python-httplib2/template
+++ b/srcpkgs/python-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httplib2'
 pkgname=python-httplib2
 version=0.13.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="httplib2-${version}"
 build_style=python-module

From 9bd4d3d3c99054f61ceb650933dcd9c5740d5ff0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 233/872] python3-humanize: rebuild for Python 3.8.

---
 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 c82c20fb0f2..d1011fb92e9 100644
--- a/srcpkgs/python3-humanize/template
+++ b/srcpkgs/python3-humanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-humanize'
 pkgname=python3-humanize
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="humanize-${version}"
 build_style=python3-module

From ead6f9504cd4015bc13944d58d676ef457b0fb34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 234/872] python-hyper-h2: rebuild for Python 3.8.

---
 srcpkgs/python-hyper-h2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyper-h2/template b/srcpkgs/python-hyper-h2/template
index 5dcf7ed1c4d..9e5eee3b69b 100644
--- a/srcpkgs/python-hyper-h2/template
+++ b/srcpkgs/python-hyper-h2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyper-h2'
 pkgname=python-hyper-h2
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyper-h2-${version}"
 build_style=python-module

From 8ac54f95c067c3f715c23a58d7f2b6d0683988cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 235/872] python-hyperframe: rebuild for Python 3.8.

---
 srcpkgs/python-hyperframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyperframe/template b/srcpkgs/python-hyperframe/template
index e4cea346f7e..6b544c2061c 100644
--- a/srcpkgs/python-hyperframe/template
+++ b/srcpkgs/python-hyperframe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperframe'
 pkgname=python-hyperframe
 version=5.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hyperframe-${version}
 build_style=python-module

From cb929edb0d026e58d2d6c7e6f9baeee9fedf523e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 236/872] python-hyperlink: rebuild for Python 3.8.

---
 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 1cc7aa0670a..945bf72ee59 100644
--- a/srcpkgs/python-hyperlink/template
+++ b/srcpkgs/python-hyperlink/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperlink'
 pkgname=python-hyperlink
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyperlink-${version}"
 build_style=python-module

From da7a9015ccf93b07d390988b03b1403702cfa14a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 237/872] python-hypothesis: rebuild for Python 3.8.

---
 srcpkgs/python-hypothesis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hypothesis/template b/srcpkgs/python-hypothesis/template
index f3eb931e410..de55593fc02 100644
--- a/srcpkgs/python-hypothesis/template
+++ b/srcpkgs/python-hypothesis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hypothesis'
 pkgname=python-hypothesis
 version=4.38.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="hypothesis-hypothesis-python-${version}"
 build_wrksrc=hypothesis-python

From f091030376534d6a6f7c625b82a8405350e7cdcd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 238/872] python-icalendar: rebuild for Python 3.8.

---
 srcpkgs/python-icalendar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-icalendar/template b/srcpkgs/python-icalendar/template
index b2129648ea6..be45f2d608d 100644
--- a/srcpkgs/python-icalendar/template
+++ b/srcpkgs/python-icalendar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-icalendar'
 pkgname=python-icalendar
 version=4.0.3
-revision=1
+revision=2
 wrksrc="icalendar-${version}"
 archs=noarch
 build_style=python-module

From 474626af886f96ef30849e5aca015775f7edfb8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 239/872] icdiff: rebuild for Python 3.8.

---
 srcpkgs/icdiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template
index 31cfc3e2354..396448b86f4 100644
--- a/srcpkgs/icdiff/template
+++ b/srcpkgs/icdiff/template
@@ -1,7 +1,7 @@
 # Template file for 'icdiff'
 pkgname=icdiff
 version=1.9.5
-revision=1
+revision=2
 wrksrc="${pkgname}-release-${version}"
 archs=noarch
 build_style=python-module

From 21e5ba4fadd590c9e0dd7afde206429c99c46c56 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 240/872] python-idna: rebuild for Python 3.8.

---
 srcpkgs/python-idna/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-idna/template b/srcpkgs/python-idna/template
index 4c6baefd41b..446a04da7d7 100644
--- a/srcpkgs/python-idna/template
+++ b/srcpkgs/python-idna/template
@@ -1,7 +1,7 @@
 # Template file for 'python-idna'
 pkgname=python-idna
 version=2.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-${version}"
 build_style=python-module

From a012eff0de75e8caab0be24964731b749fe6ad8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 241/872] python3-idna-ssl: rebuild for Python 3.8.

---
 srcpkgs/python3-idna-ssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-idna-ssl/template b/srcpkgs/python3-idna-ssl/template
index df953f4d0d9..0608fb7278c 100644
--- a/srcpkgs/python3-idna-ssl/template
+++ b/srcpkgs/python3-idna-ssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-idna-ssl'
 pkgname=python3-idna-ssl
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-ssl-${version}"
 build_style=python3-module

From ac112b7dfc3aadb93225736a4504f7965af29838 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 242/872] python3-ifaddr: rebuild for Python 3.8.

---
 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 37bc2bbaf73..683d76662a3 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ifaddr-${version}"
 build_style=python3-module

From 32d0218ef7a7a721759e4c421d70255f49b3cfd0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 243/872] python-imagesize: rebuild for Python 3.8.

---
 srcpkgs/python-imagesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-imagesize/template b/srcpkgs/python-imagesize/template
index ee231eb9f24..f64c86812b5 100644
--- a/srcpkgs/python-imagesize/template
+++ b/srcpkgs/python-imagesize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-imagesize'
 pkgname=python-imagesize
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="imagesize-${version}"
 build_style=python-module

From f0bf351c50949a7348409d8c132926c401dabf43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 244/872] python3-importlib_metadata: rebuild for Python 3.8.

---
 srcpkgs/python3-importlib_metadata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-importlib_metadata/template b/srcpkgs/python3-importlib_metadata/template
index 9acbe968e10..f88e9d9b780 100644
--- a/srcpkgs/python3-importlib_metadata/template
+++ b/srcpkgs/python3-importlib_metadata/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-importlib_metadata'
 pkgname=python3-importlib_metadata
 version=0.23
-revision=1
+revision=2
 archs=noarch
 wrksrc="importlib_metadata-${version}"
 build_style=python3-module

From 73cc1c05e8e0ccf9063a33dd203d70df2ab135ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 245/872] python-incremental: rebuild for Python 3.8.

---
 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 a1c07042365..70477e26866 100644
--- a/srcpkgs/python-incremental/template
+++ b/srcpkgs/python-incremental/template
@@ -1,7 +1,7 @@
 # Template file for 'python-incremental'
 pkgname=python-incremental
 version=17.5.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="incremental-${version}"
 build_style=python-module

From 82a10b837fff5c5ce2f37ede93dad161025a109c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 246/872] python-inotify: rebuild for Python 3.8.

---
 srcpkgs/python-inotify/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-inotify/template b/srcpkgs/python-inotify/template
index f8e26bcc415..64e48fd9330 100644
--- a/srcpkgs/python-inotify/template
+++ b/srcpkgs/python-inotify/template
@@ -1,7 +1,7 @@
 # Template file for 'python-inotify'
 pkgname=python-inotify
 version=0.9.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="pyinotify-${version}"
 build_style=python-module

From 70f558982c4846e9de5243694f048c7014c7089a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 247/872] python-iptools: rebuild for Python 3.8.

---
 srcpkgs/python-iptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iptools/template b/srcpkgs/python-iptools/template
index 599a85ccdba..3c53013fb9d 100644
--- a/srcpkgs/python-iptools/template
+++ b/srcpkgs/python-iptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iptools'
 pkgname=python-iptools
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9962727fd608ce59af5a55c73c8b4c3d0c17fe71 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 248/872] python3-ipython: rebuild for Python 3.8.

---
 srcpkgs/python3-ipython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template
index 63242f382db..2c08bad1e41 100644
--- a/srcpkgs/python3-ipython/template
+++ b/srcpkgs/python3-ipython/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-ipython'
 pkgname=python3-ipython
 version=7.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipython-${version}"
 build_style=python3-module

From ecafa2b5530001ac56b03e639dff4ae00027d1ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 249/872] python-ipython_genutils: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_genutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_genutils/template b/srcpkgs/python-ipython_genutils/template
index 9af9604ca00..d46a3b0b716 100644
--- a/srcpkgs/python-ipython_genutils/template
+++ b/srcpkgs/python-ipython_genutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_genutils'
 pkgname=python-ipython_genutils
 version=0.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="ipython_genutils-${version}"
 build_style=python-module

From 1349d0a55b00bc5b30629934ad23ae1ed8839d98 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 250/872] python-ipython_ipykernel: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_ipykernel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_ipykernel/template b/srcpkgs/python-ipython_ipykernel/template
index 5ddc333798a..ca17b58c006 100644
--- a/srcpkgs/python-ipython_ipykernel/template
+++ b/srcpkgs/python-ipython_ipykernel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_ipykernel'
 pkgname=python-ipython_ipykernel
 version=4.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipykernel-${version}"
 build_style=python-module

From 1b146320a422b57ba1db41491ccff040d9ee719d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 251/872] python3-irc: rebuild for Python 3.8.

---
 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 eea3a629128..714c11dc943 100644
--- a/srcpkgs/python3-irc/template
+++ b/srcpkgs/python3-irc/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-irc'
 pkgname=python3-irc
 version=17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="irc-${version}"
 build_style=python3-module

From e04c4f250fda964ab555eb6b636f701d995009e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 252/872] python-isbnlib: rebuild for Python 3.8.

---
 srcpkgs/python-isbnlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isbnlib/template b/srcpkgs/python-isbnlib/template
index 3e2f66c6b66..1cc46a060d6 100644
--- a/srcpkgs/python-isbnlib/template
+++ b/srcpkgs/python-isbnlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isbnlib'
 pkgname=python-isbnlib
 version=3.9.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="isbnlib-${version}"
 build_style=python-module

From 2debe6131c52d94acd065961f9ea9ae22176a34c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 253/872] python-iso-8601: rebuild for Python 3.8.

---
 srcpkgs/python-iso-8601/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iso-8601/template b/srcpkgs/python-iso-8601/template
index a483e55b0bd..a841866d439 100644
--- a/srcpkgs/python-iso-8601/template
+++ b/srcpkgs/python-iso-8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iso-8601'
 pkgname=python-iso-8601
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="iso-8601-${version}"
 build_style=python-module

From 8b4be7b5324ac1347d55cc4f4e9eaa552465beec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 254/872] python-isodate: rebuild for Python 3.8.

---
 srcpkgs/python-isodate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isodate/template b/srcpkgs/python-isodate/template
index b2a7eb46591..74e4e813e64 100644
--- a/srcpkgs/python-isodate/template
+++ b/srcpkgs/python-isodate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isodate'
 pkgname=python-isodate
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="isodate-${version}"
 build_style=python-module

From a9c9e144908d37411616dd357e9fdc7575aaa8c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 255/872] python-isort: rebuild for Python 3.8.

---
 srcpkgs/python-isort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isort/template b/srcpkgs/python-isort/template
index df7fcfbf2d2..cd8e43b69ea 100644
--- a/srcpkgs/python-isort/template
+++ b/srcpkgs/python-isort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isort'
 pkgname=python-isort
 version=4.3.21
-revision=1
+revision=2
 archs=noarch
 wrksrc="isort-${version}"
 build_style=python-module

From a81f38d5db390cc4ae2c6be89747bebd3f1f15dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 256/872] python-itsdangerous: rebuild for Python 3.8.

---
 srcpkgs/python-itsdangerous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-itsdangerous/template b/srcpkgs/python-itsdangerous/template
index d1d9234df88..6e6fe5dcb2b 100644
--- a/srcpkgs/python-itsdangerous/template
+++ b/srcpkgs/python-itsdangerous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-itsdangerous'
 pkgname=python-itsdangerous
 version=0.24
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 2d842da30a2a65a2405487fdd5929ca2a0555251 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 257/872] python-iwlib: rebuild for Python 3.8.

---
 srcpkgs/python-iwlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iwlib/template b/srcpkgs/python-iwlib/template
index 2c58d4c8d29..2f4149b4e92 100644
--- a/srcpkgs/python-iwlib/template
+++ b/srcpkgs/python-iwlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iwlib'
 pkgname=python-iwlib
 version=1.6.2
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="iwlib"

From c09cc84b06cf4332a02b0a826494a74c81409175 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 258/872] python-jedi: rebuild for Python 3.8.

---
 srcpkgs/python-jedi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jedi/template b/srcpkgs/python-jedi/template
index 136e6adbea4..a994f0e2861 100644
--- a/srcpkgs/python-jedi/template
+++ b/srcpkgs/python-jedi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jedi'
 pkgname=python-jedi
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 _parsover=0.5.0
 wrksrc="jedi-${version}"

From 235b9031c126ebf53355a5ef0c337423c0df1d95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 259/872] python3-jeepney: rebuild for Python 3.8.

---
 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 2ae308a6fc6..9c5c007aa17 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.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="jeepney-${version}"
 build_style=python3-module

From 4868c0871bc763937dd6b8573e91ee86064e0595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 260/872] python3-jellyfish: rebuild for Python 3.8.

---
 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 dec74539e3f..5d0a614c397 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.7.2
-revision=1
+revision=2
 wrksrc="jellyfish-${version}"
 build_style=python3-module
 pycompile_module="jellyfish"

From a9c225f19782a27d8e5e28a508ea0acc39991390 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 261/872] python-jmespath: rebuild for Python 3.8.

---
 srcpkgs/python-jmespath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jmespath/template b/srcpkgs/python-jmespath/template
index 47508a3a0c2..220f1a33c07 100644
--- a/srcpkgs/python-jmespath/template
+++ b/srcpkgs/python-jmespath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jmespath'
 pkgname=python-jmespath
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jmespath.py-${version}"
 build_style=python-module

From 30e8e2e1619bdf45652db8c6ecdd0e0a4fc90d8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 262/872] python3-josepy: rebuild for Python 3.8.

---
 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 6d6e4547d38..903bd7028ed 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="josepy-${version}"
 build_style=python3-module

From c06d36cf857257f3cf63a7e677498487d37168d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 263/872] python-jsonpointer: rebuild for Python 3.8.

---
 srcpkgs/python-jsonpointer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonpointer/template b/srcpkgs/python-jsonpointer/template
index ed865fbfcba..fd103d123aa 100644
--- a/srcpkgs/python-jsonpointer/template
+++ b/srcpkgs/python-jsonpointer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonpointer'
 pkgname=python-jsonpointer
 version=2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonpointer-${version}"
 build_style=python-module

From be483d0bbf53a22e23a3c2db3d77dc61bff17915 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 264/872] python-jsonrpclib: rebuild for Python 3.8.

---
 srcpkgs/python-jsonrpclib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonrpclib/template b/srcpkgs/python-jsonrpclib/template
index 7253607fe57..a245168a824 100644
--- a/srcpkgs/python-jsonrpclib/template
+++ b/srcpkgs/python-jsonrpclib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonrpclib'
 pkgname=python-jsonrpclib
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonrpclib-pelix-${version}"
 build_style=python-module

From 15ad75adf989474229acc1fdac0c5d5887528bd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 265/872] python-jsonschema: rebuild for Python 3.8.

---
 srcpkgs/python-jsonschema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonschema/template b/srcpkgs/python-jsonschema/template
index 63c30ce6863..326b5609d36 100644
--- a/srcpkgs/python-jsonschema/template
+++ b/srcpkgs/python-jsonschema/template
@@ -2,7 +2,7 @@
 pkgname=python-jsonschema
 reverts="3.0.2_1"
 version=2.6.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="jsonschema-${version}"
 build_style=python-module

From 8bf3797435c040a1682d5e3e4c6c41f650d82b34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 266/872] python-jupyter_client: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_client/template b/srcpkgs/python-jupyter_client/template
index ab5cd0c5b3c..6365dd9e175 100644
--- a/srcpkgs/python-jupyter_client/template
+++ b/srcpkgs/python-jupyter_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_client'
 pkgname=python-jupyter_client
 version=5.2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_client-${version}"
 build_style=python-module

From e732ed651c399cb8d7e96a618444e815bf86ce4b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 267/872] python3-jupyter_console: rebuild for Python 3.8.

---
 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 25b2eda4c2f..3837e5b3bbf 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_console-${version}"
 build_style=python3-module

From b264bc5200c6942b1507777e0bc169838cb6a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 268/872] python-jupyter_core: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_core/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_core/template b/srcpkgs/python-jupyter_core/template
index fcce4e0fe0b..f1629208e86 100644
--- a/srcpkgs/python-jupyter_core/template
+++ b/srcpkgs/python-jupyter_core/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_core'
 pkgname=python-jupyter_core
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_core-${version}"
 build_style=python-module

From 54845c515258535f8793ff37241d0daad10fcddc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 269/872] python-jupyter_ipywidgets: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_ipywidgets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_ipywidgets/template b/srcpkgs/python-jupyter_ipywidgets/template
index 3d511a25152..44570cf390a 100644
--- a/srcpkgs/python-jupyter_ipywidgets/template
+++ b/srcpkgs/python-jupyter_ipywidgets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_ipywidgets'
 pkgname=python-jupyter_ipywidgets
 version=7.4.2
-revision=1
+revision=2
 archs=noarch
 _widgetsnbextver=3.4.0
 wrksrc="ipywidgets-${version}"

From da9dc8f246174d7b5fed1a61f1b4bb127c2bc9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 270/872] python-jupyter_nbconvert: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbconvert/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbconvert/template b/srcpkgs/python-jupyter_nbconvert/template
index 57ac5cce23f..e6cdad7d21c 100644
--- a/srcpkgs/python-jupyter_nbconvert/template
+++ b/srcpkgs/python-jupyter_nbconvert/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbconvert'
 pkgname=python-jupyter_nbconvert
 version=5.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="nbconvert-${version}"
 build_style=python-module

From 8e126f65404eaa5a5b69bca1aa41b4be58abe4b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 271/872] python-jupyter_nbformat: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbformat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbformat/template b/srcpkgs/python-jupyter_nbformat/template
index 11098fd3f90..e2addc8866f 100644
--- a/srcpkgs/python-jupyter_nbformat/template
+++ b/srcpkgs/python-jupyter_nbformat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbformat'
 pkgname=python-jupyter_nbformat
 version=4.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="nbformat-${version}"
 build_style=python-module

From 3d7a11f09a2f159b9e42c935154654a47117f3a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 272/872] python-jupyter_notebook: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_notebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_notebook/template b/srcpkgs/python-jupyter_notebook/template
index c3f478c1fb4..4f6de0f642d 100644
--- a/srcpkgs/python-jupyter_notebook/template
+++ b/srcpkgs/python-jupyter_notebook/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_notebook'
 pkgname=python-jupyter_notebook
 version=5.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="notebook-${version}"
 build_style=python-module

From eab8a5bd67b168048f40a3d2fe199e073715a1b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 273/872] python-jupyter_qtconsole: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_qtconsole/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_qtconsole/template b/srcpkgs/python-jupyter_qtconsole/template
index f8f85534bbd..ea7f89a62af 100644
--- a/srcpkgs/python-jupyter_qtconsole/template
+++ b/srcpkgs/python-jupyter_qtconsole/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_qtconsole'
 pkgname=python-jupyter_qtconsole
 version=4.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="qtconsole-${version}"
 build_style=python-module

From 96c7c1f6f484f9a33a17b0213142b8a97a7c69e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 274/872] python-jupyter_widgetsnbextension: rebuild for Python
 3.8.

---
 srcpkgs/python-jupyter_widgetsnbextension/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_widgetsnbextension/template b/srcpkgs/python-jupyter_widgetsnbextension/template
index dacd88ccb4f..05e9c0d00a3 100644
--- a/srcpkgs/python-jupyter_widgetsnbextension/template
+++ b/srcpkgs/python-jupyter_widgetsnbextension/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_widgetsnbextension'
 pkgname=python-jupyter_widgetsnbextension
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="widgetsnbextension-${version}"
 build_style=python-module

From 6175c117f039e76b8fff45d549f50360a92742b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 275/872] python-kaptan: rebuild for Python 3.8.

---
 srcpkgs/python-kaptan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kaptan/template b/srcpkgs/python-kaptan/template
index 649eeec8568..6668b240008 100644
--- a/srcpkgs/python-kaptan/template
+++ b/srcpkgs/python-kaptan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kaptan'
 pkgname=python-kaptan
 version=0.5.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="kaptan-${version}"
 build_style=python-module

From 6668dcf37c32ef8390c8f45e6cd206d8478b963b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 276/872] python-keepalive: rebuild for Python 3.8.

---
 srcpkgs/python-keepalive/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keepalive/template b/srcpkgs/python-keepalive/template
index deb95a07236..50e1d7e6e78 100644
--- a/srcpkgs/python-keepalive/template
+++ b/srcpkgs/python-keepalive/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keepalive'
 pkgname=python-keepalive
 version=0.5
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9e9d4a781427bc1296f59529a4d83b4a1271c5e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 277/872] python-keyring: rebuild for Python 3.8.

---
 srcpkgs/python-keyring/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyring/template b/srcpkgs/python-keyring/template
index df1c21ee1be..2a87160b04d 100644
--- a/srcpkgs/python-keyring/template
+++ b/srcpkgs/python-keyring/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyring'
 pkgname=python-keyring
 version=18.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyring-${version}"
 build_style=python-module

From 8fea0f10f3e8aebfe92a9d090368b1cda777a405 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 278/872] python3-keyrings-alt: rebuild for Python 3.8.

---
 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 d5820535e54..ed09cfac4a7 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=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyrings.alt-${version}"
 build_style=python3-module

From 271539dc3ed1e21733c374ff971770403194a1d1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 279/872] python-keyutils: rebuild for Python 3.8.

---
 srcpkgs/python-keyutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyutils/template b/srcpkgs/python-keyutils/template
index d56ada0e30e..a72819e963a 100644
--- a/srcpkgs/python-keyutils/template
+++ b/srcpkgs/python-keyutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyutils'
 pkgname=python-keyutils
 version=0.6
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="keyutils"
 hostmakedepends="python-setuptools python3-setuptools"

From 0556a11defcdebd2c4319e286451ce3f45f87ebd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 280/872] python-kitchen: rebuild for Python 3.8.

---
 srcpkgs/python-kitchen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kitchen/template b/srcpkgs/python-kitchen/template
index 2bbd68c13c9..68a46986de9 100644
--- a/srcpkgs/python-kitchen/template
+++ b/srcpkgs/python-kitchen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kitchen'
 pkgname=python-kitchen
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="kitchen-${version}"
 build_style=python-module

From fe5070b00515733fcafbeebc62a10ba2029b40db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 281/872] python-kiwisolver: rebuild for Python 3.8.

---
 srcpkgs/python-kiwisolver/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kiwisolver/template b/srcpkgs/python-kiwisolver/template
index 072bd5af038..67f0805aa51 100644
--- a/srcpkgs/python-kiwisolver/template
+++ b/srcpkgs/python-kiwisolver/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kiwisolver'
 pkgname=python-kiwisolver
 version=1.0.1
-revision=2
+revision=3
 wrksrc="kiwisolver-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From d1c550f6959162ec91e7bb39c54ecdd1d5b7c0ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 282/872] python-lazy-object-proxy: rebuild for Python 3.8.

---
 srcpkgs/python-lazy-object-proxy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lazy-object-proxy/template b/srcpkgs/python-lazy-object-proxy/template
index 07efb7b4777..ab2c6dce05c 100644
--- a/srcpkgs/python-lazy-object-proxy/template
+++ b/srcpkgs/python-lazy-object-proxy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lazy-object-proxy'
 pkgname=python-lazy-object-proxy
 version=1.3.1
-revision=3
+revision=4
 wrksrc="lazy-object-proxy-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e5c9a0cf8e6e0714fba4433b9deb1aaf40d43ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 283/872] python-ldap: rebuild for Python 3.8.

---
 srcpkgs/python-ldap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap/template b/srcpkgs/python-ldap/template
index 7770baa8774..e3efc2fc6b3 100644
--- a/srcpkgs/python-ldap/template
+++ b/srcpkgs/python-ldap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap'
 pkgname=python-ldap
 version=3.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="ldap ldapurl.py ldif.py slapdtest"
 hostmakedepends="python-setuptools python3-setuptools"

From dca16bc247cccf1bc7020afca5594d857514100a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 284/872] python-ldap3: rebuild for Python 3.8.

---
 srcpkgs/python-ldap3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap3/template b/srcpkgs/python-ldap3/template
index 676251a85ff..e8e4cade72b 100644
--- a/srcpkgs/python-ldap3/template
+++ b/srcpkgs/python-ldap3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap3'
 pkgname=python-ldap3
 version=2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ldap3-${version}"
 build_style=python-module

From 8f3e1b0bf64fb527d029fec15229e079f326c373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 285/872] python3-libevdev: rebuild for Python 3.8.

---
 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 0a79893726c..f0295cdee9b 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.8
-revision=1
+revision=2
 _githash=1827bebcf789adee8492cbfcc7cf8d56059a42a4
 wrksrc="python-libevdev-${version}-${_githash}"
 build_style=python3-module

From a5b674c4366c36182e29f21b8071faff59006106 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 286/872] libsmbios: rebuild for Python 3.8.

---
 srcpkgs/libsmbios/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsmbios/template b/srcpkgs/libsmbios/template
index 31d8ffda65f..161cb79deb9 100644
--- a/srcpkgs/libsmbios/template
+++ b/srcpkgs/libsmbios/template
@@ -1,7 +1,7 @@
 # Template file for 'libsmbios'
 pkgname=libsmbios
 version=2.4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--sbindir=/usr/bin --disable-static"
 hostmakedepends="automake doxygen gettext-devel help2man libtool pkg-config"

From 7762c8392d1a03ae7a320bdec0b5402b7147d0b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 287/872] python-libtmux: rebuild for Python 3.8.

---
 srcpkgs/python-libtmux/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-libtmux/template b/srcpkgs/python-libtmux/template
index 36fa7ca7ffd..20f43af5f7d 100644
--- a/srcpkgs/python-libtmux/template
+++ b/srcpkgs/python-libtmux/template
@@ -1,7 +1,7 @@
 # Template file for 'python-libtmux'
 pkgname=python-libtmux
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="libtmux-${version}"
 build_style=python-module

From 16a2a1b8ba0ad9f9032d52092294e8a39041bba2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 288/872] python-llfuse: rebuild for Python 3.8.

---
 srcpkgs/python-llfuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-llfuse/template b/srcpkgs/python-llfuse/template
index 203c5e2fd84..b453c67e91d 100644
--- a/srcpkgs/python-llfuse/template
+++ b/srcpkgs/python-llfuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-llfuse'
 pkgname=python-llfuse
 version=1.3.6
-revision=1
+revision=2
 wrksrc="llfuse-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pkg-config"

From ae7f34ffc994fc4606c9209683fae6625f3e781e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 289/872] python-lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lockfile/template b/srcpkgs/python-lockfile/template
index 4c4612ed144..778cecba7e9 100644
--- a/srcpkgs/python-lockfile/template
+++ b/srcpkgs/python-lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lockfile'
 pkgname=python-lockfile
 version=0.12.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="lockfile-${version}"
 build_style=python-module

From 5fd2f78e26b399ed936b12f51886dae3a8d35cb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 290/872] python-logfury: rebuild for Python 3.8.

---
 srcpkgs/python-logfury/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-logfury/template b/srcpkgs/python-logfury/template
index 4b1c435e34a..1b52d2d7fdf 100644
--- a/srcpkgs/python-logfury/template
+++ b/srcpkgs/python-logfury/template
@@ -1,7 +1,7 @@
 # Template file for 'python-logfury'
 pkgname=python-logfury
 version=0.1.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="logfury-${version}"
 build_style=python-module

From 747dc28bedc27e7b5c8738113573012f545333a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 291/872] python-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lxml/template b/srcpkgs/python-lxml/template
index c3aeabfbf1b..1a6a3ac9113 100644
--- a/srcpkgs/python-lxml/template
+++ b/srcpkgs/python-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lxml'
 pkgname=python-lxml
 version=4.4.1
-revision=1
+revision=2
 wrksrc="lxml-lxml-${version}"
 build_style=python-module
 pycompile_module="lxml"

From ebc274c0463316f63fe99e5df0c704e3d324c885 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 292/872] python-lz4: rebuild for Python 3.8.

---
 srcpkgs/python-lz4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lz4/template b/srcpkgs/python-lz4/template
index dab8e8ed542..76a2e800e38 100644
--- a/srcpkgs/python-lz4/template
+++ b/srcpkgs/python-lz4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lz4'
 pkgname=python-lz4
 version=2.1.6
-revision=2
+revision=3
 wrksrc="lz4-${version}"
 build_style=python-module
 pycompile_module="lz4"

From 8eb3f4d6193b25ae716fa2fdfae1f929deb65a91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 293/872] python3-macaroons: rebuild for Python 3.8.

---
 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 d44100c20f2..420f5aff043 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=1
+revision=2
 archs=noarch
 wrksrc="pymacaroons-${version}"
 build_style=python3-module

From 437e300b76670db404728daad9f6224630daaa3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 294/872] python3-macholib: rebuild for Python 3.8.

---
 srcpkgs/python3-macholib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-macholib/template b/srcpkgs/python3-macholib/template
index a2738f57eb0..525b5f7106b 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.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="macholib-${version}"
 build_style=python3-module

From b08f229d26f5b2c915caabe213234afc1e4002e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 295/872] python-magic: rebuild for Python 3.8.

---
 srcpkgs/python-magic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-magic/template b/srcpkgs/python-magic/template
index 98e3c0802ab..5a59efa4808 100644
--- a/srcpkgs/python-magic/template
+++ b/srcpkgs/python-magic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-magic'
 pkgname=python-magic
 version=0.4.15
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="magic.py"

From c597fee1945d8f994f591622074acf3670a81484 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 296/872] python-marisa-trie: rebuild for Python 3.8.

---
 srcpkgs/python-marisa-trie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-marisa-trie/template b/srcpkgs/python-marisa-trie/template
index bb09c933335..5e46b686ace 100644
--- a/srcpkgs/python-marisa-trie/template
+++ b/srcpkgs/python-marisa-trie/template
@@ -1,7 +1,7 @@
 # Template file for 'python-marisa-trie'
 pkgname=python-marisa-trie
 version=0.7.5
-revision=2
+revision=3
 wrksrc="marisa-trie-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 5366314fc7ba3b340ccf5b4658edff33f5ec148a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 297/872] python-markdown2: rebuild for Python 3.8.

---
 srcpkgs/python-markdown2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-markdown2/template b/srcpkgs/python-markdown2/template
index 2d352ba029d..e9068f64202 100644
--- a/srcpkgs/python-markdown2/template
+++ b/srcpkgs/python-markdown2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-markdown2'
 pkgname=python-markdown2
 version=2.3.8
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="markdown2"

From b56d284bcbb50ddece287bde845145e6481e4d39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 298/872] python3-matplotlib: rebuild for Python 3.8.

---
 srcpkgs/python3-matplotlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template
index 857ba17cacf..be02817a4d3 100644
--- a/srcpkgs/python3-matplotlib/template
+++ b/srcpkgs/python3-matplotlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-matplotlib'
 pkgname=python3-matplotlib
 version=3.1.1
-revision=1
+revision=2
 wrksrc="matplotlib-${version}"
 build_style=python3-module
 pycompile_module="matplotlib mpl_toolkits pylab.py"

From 8b3780e8f6f50712735239defc569952763e8894 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 299/872] python-mccabe: rebuild for Python 3.8.

---
 srcpkgs/python-mccabe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mccabe/template b/srcpkgs/python-mccabe/template
index b6a01929540..1e2ed6328b8 100644
--- a/srcpkgs/python-mccabe/template
+++ b/srcpkgs/python-mccabe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mccabe'
 pkgname=python-mccabe
 version=0.6.1
-revision=2
+revision=3
 archs=noarch
 replaces="mccabe>=0"
 wrksrc="mccabe-${version}"

From 954d38992e9a83e3214b79375b895ee1072db4e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 300/872] python-mechanize: rebuild for Python 3.8.

---
 srcpkgs/python-mechanize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mechanize/template b/srcpkgs/python-mechanize/template
index c5b2b5789a7..ca29bbd0d23 100644
--- a/srcpkgs/python-mechanize/template
+++ b/srcpkgs/python-mechanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mechanize'
 pkgname=python-mechanize
 version=0.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="mechanize-${version}"
 build_style=python-module

From e8762f4af80ad5b1cb6a41af3183141ec903485f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 301/872] python3-minidb: rebuild for Python 3.8.

---
 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 50490794600..140964b7a8a 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.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="minidb-${version}"
 build_style=python3-module

From 93febdb59f89cf4939f3684acd832f879fc774d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 302/872] python-miniupnpc: rebuild for Python 3.8.

---
 srcpkgs/python-miniupnpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-miniupnpc/template b/srcpkgs/python-miniupnpc/template
index 500c217c78e..f7892bab073 100644
--- a/srcpkgs/python-miniupnpc/template
+++ b/srcpkgs/python-miniupnpc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-miniupnpc'
 pkgname=python-miniupnpc
 version=2.0.2
-revision=2
+revision=3
 wrksrc="${pkgname#python-}-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ab280bf26207a66e5e3f418768bf3358cc2c76ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 303/872] python-mistune: rebuild for Python 3.8.

---
 srcpkgs/python-mistune/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mistune/template b/srcpkgs/python-mistune/template
index 0ee8dfde5b1..ef5c054ba75 100644
--- a/srcpkgs/python-mistune/template
+++ b/srcpkgs/python-mistune/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mistune'
 pkgname=python-mistune
 version=0.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="mistune-${version}"
 build_style=python-module

From 05abf67487f6ac161862195dfb2069fade248fbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 304/872] python3-more-itertools: rebuild for Python 3.8.

---
 srcpkgs/python3-more-itertools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-more-itertools/template b/srcpkgs/python3-more-itertools/template
index b089992f84e..a765da98495 100644
--- a/srcpkgs/python3-more-itertools/template
+++ b/srcpkgs/python3-more-itertools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-more-itertools'
 pkgname=python3-more-itertools
 version=7.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python3-module

From efcbd7f439e04ca5dc43be057047c93f1051b5cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 305/872] python-mpd2: rebuild for Python 3.8.

---
 srcpkgs/python-mpd2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template
index 682d9a85f5e..0389f8c2a28 100644
--- a/srcpkgs/python-mpd2/template
+++ b/srcpkgs/python-mpd2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpd2'
 pkgname=python-mpd2
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mpd"

From 507a89e7a29ba5dd81f66830577542bb3a098780 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 306/872] python3-mpi4py: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-mpi4py/template | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/python3-mpi4py/template b/srcpkgs/python3-mpi4py/template
index 94a83b688f2..8f9e76867cc 100644
--- a/srcpkgs/python3-mpi4py/template
+++ b/srcpkgs/python3-mpi4py/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpi4py'
 pkgname=python3-mpi4py
 version=3.0.2
-revision=1
+revision=2
 wrksrc="mpi4py-${version}"
 build_style=python3-module
 pycompile_module="mpi4py"
@@ -15,6 +15,12 @@ homepage="https://bitbucket.org/mpi4py/mpi4py"
 distfiles="$PYPI_SITE/m/mpi4py/mpi4py-${version}.tar.gz"
 checksum=f8d629d1e3e3b7b89cb99d0e3bc5505e76cc42089829807950d5c56606ed48e0
 
+post_extract() {
+	# recythonize
+	rm src/mpi4py/include/mpi4py/mpi4py.MPI.h \
+		src/mpi4py/include/mpi4py/mpi4py.MPI_api.h \
+		src/mpi4py.MPI.c
+}
 post_install() {
 	vlicense LICENSE.rst
 }

From d71d04b6dbfad4ce9460041fe001aab7c4cab301 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 307/872] python-mpmath: rebuild for Python 3.8.

---
 srcpkgs/python-mpmath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpmath/template b/srcpkgs/python-mpmath/template
index b0a38c01514..8fd4873dd62 100644
--- a/srcpkgs/python-mpmath/template
+++ b/srcpkgs/python-mpmath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpmath'
 pkgname=python-mpmath
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="mpmath-${version}"
 build_style=python-module

From f050643cc3d8a1927b2b43a4d6bc3a47fce265d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 308/872] python3-mpv: rebuild for Python 3.8.

---
 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 2780c02610b..1910a4d231d 100644
--- a/srcpkgs/python3-mpv/template
+++ b/srcpkgs/python3-mpv/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpv'
 pkgname=python3-mpv
 version=0.3.9
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-mpv-${version}"
 build_style=python3-module

From 076ab982ba68fae19b6a637c3190d501b6f11afb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 309/872] python-msgpack: rebuild for Python 3.8.

---
 srcpkgs/python-msgpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-msgpack/template b/srcpkgs/python-msgpack/template
index 395d854d638..59571d6a208 100644
--- a/srcpkgs/python-msgpack/template
+++ b/srcpkgs/python-msgpack/template
@@ -2,7 +2,7 @@
 pkgname=python-msgpack
 reverts="0.6.0_1"
 version=0.5.6
-revision=3
+revision=4
 wrksrc="msgpack-${version}"
 build_style=python-module
 pycompile_module="msgpack"

From c0b498d4aabae1c0cc1564a796b43c28045b08f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 310/872] python3-msoffcrypto-tool: rebuild for Python 3.8.

---
 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 5996d3bf355..d1b369fc773 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=4.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="msoffcrypto-tool-${version}"
 build_style=python3-module

From a02ae9dc7e657d6823c09d222a46aaaad0b52e6e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 311/872] python-mtranslate: rebuild for Python 3.8.

---
 srcpkgs/python-mtranslate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mtranslate/template b/srcpkgs/python-mtranslate/template
index d56fa18f0f0..992c7b76fe9 100644
--- a/srcpkgs/python-mtranslate/template
+++ b/srcpkgs/python-mtranslate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mtranslate'
 pkgname=python-mtranslate
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="mtranslate-${version}"
 build_style=python-module

From 1db5126bddf0129431159c083c0e8c7feeda0e24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 312/872] python3-multidict: rebuild for Python 3.8.

---
 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 82888db842f..62054db71f1 100644
--- a/srcpkgs/python3-multidict/template
+++ b/srcpkgs/python3-multidict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-multidict'
 pkgname=python3-multidict
 version=4.5.2
-revision=2
+revision=3
 wrksrc="multidict-${version}"
 build_style=python3-module
 pycompile_module="multidict"

From db397601599182d62444486443fe7887f1bf0869 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 313/872] python3-munkres: rebuild for Python 3.8.

---
 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 15767afe3fe..d0d0a013e80 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python3-module

From f6bec8102ac4a1433f716928258d680f0546e9f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 314/872] python-musicbrainzngs: rebuild for Python 3.8.

---
 srcpkgs/python-musicbrainzngs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-musicbrainzngs/template b/srcpkgs/python-musicbrainzngs/template
index 588c25f7cd8..3d738f0c3c0 100644
--- a/srcpkgs/python-musicbrainzngs/template
+++ b/srcpkgs/python-musicbrainzngs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-musicbrainzngs'
 pkgname=python-musicbrainzngs
 version=0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="musicbrainzngs-${version}"
 build_style="python-module"

From 59d602d19ea627b5ddd3ac33170326df511f1b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 315/872] python3-musicpd: rebuild for Python 3.8.

---
 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 3328b2f4bbf..8c6ba2fb451 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=1
+revision=2
 archs=noarch
 wrksrc="python-musicpd-${version}"
 build_style=python3-module

From e4271deae6b4b0258165475e34a0174f837576d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 316/872] mutagen: rebuild for Python 3.8.

---
 srcpkgs/mutagen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mutagen/template b/srcpkgs/mutagen/template
index cbf05ea8583..8b24cc82dc8 100644
--- a/srcpkgs/mutagen/template
+++ b/srcpkgs/mutagen/template
@@ -1,7 +1,7 @@
 # Template file for 'mutagen'
 pkgname=mutagen
 version=1.42.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mutagen"

From c726c7e86676ccc5612045570a6821438d6541cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 317/872] python-mygpoclient: rebuild for Python 3.8.

---
 srcpkgs/python-mygpoclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mygpoclient/template b/srcpkgs/python-mygpoclient/template
index 3f85c72cc0c..ffad63a70a1 100644
--- a/srcpkgs/python-mygpoclient/template
+++ b/srcpkgs/python-mygpoclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mygpoclient'
 pkgname=python-mygpoclient
 version=1.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="mygpoclient-${version}"
 build_style=python-module

From 1d17c7a2672083ac8c194b767f1be1d8778d6f42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 318/872] python3-mypy: rebuild for Python 3.8.

---
 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 37ecd732c06..564c0a4d47c 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.730
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy-${version}"
 build_style=python3-module

From d44ba12caf9958f6f6d708b0e5061d3ca01990e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 319/872] python3-mypy_extensions: rebuild for Python 3.8.

---
 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 2761924248e..25de48ea141 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy_extensions-${version}"
 build_style=python3-module

From 8c03f1eb83b224187a7b0fb11b5c780c96875438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 320/872] python-mysqlclient: rebuild for Python 3.8.

---
 srcpkgs/python-mysqlclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mysqlclient/template b/srcpkgs/python-mysqlclient/template
index 43fed28d4f0..079666a6dab 100644
--- a/srcpkgs/python-mysqlclient/template
+++ b/srcpkgs/python-mysqlclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mysqlclient'
 pkgname=python-mysqlclient
 version=1.3.14
-revision=2
+revision=3
 wrksrc="mysqlclient-${version}"
 build_style=python-module
 pycompile_module="MySQLdb _mysql_exceptions.py"

From 8b80cedc0b4331f2c1827c959c67be32d904a6b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 321/872] python3-nacl: rebuild for Python 3.8.

---
 srcpkgs/python3-nacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-nacl/template b/srcpkgs/python3-nacl/template
index 5dd6a71ad6a..b59ea0196ac 100644
--- a/srcpkgs/python3-nacl/template
+++ b/srcpkgs/python3-nacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-nacl'
 pkgname=python3-nacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python3-module
 pycompile_module="nacl"

From 4b93d8f922559d3f9f9693969307cdb0dedd22c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 322/872] python-namedlist: rebuild for Python 3.8.

---
 srcpkgs/python-namedlist/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-namedlist/template b/srcpkgs/python-namedlist/template
index 4c6e6f1f3d5..75626b9f6d5 100644
--- a/srcpkgs/python-namedlist/template
+++ b/srcpkgs/python-namedlist/template
@@ -1,7 +1,7 @@
 # Template file for 'python-namedlist'
 pkgname=python-namedlist
 version=1.7
-revision=5
+revision=6
 archs=noarch
 wrksrc="namedlist-${version}"
 build_style=python-module

From 643225c4205051b03e6b58dd88dd0fe79a960880 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 323/872] python-natsort: rebuild for Python 3.8.

---
 srcpkgs/python-natsort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-natsort/template b/srcpkgs/python-natsort/template
index 754ac50c419..7101e297aad 100644
--- a/srcpkgs/python-natsort/template
+++ b/srcpkgs/python-natsort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-natsort'
 pkgname=python-natsort
 version=6.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="natsort-${version}"
 build_style=python-module

From 1b4401089b676f8d76d5cbdf86f7cff95a90063f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 324/872] python-nbxmpp: rebuild for Python 3.8.

---
 srcpkgs/python-nbxmpp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nbxmpp/template b/srcpkgs/python-nbxmpp/template
index 4952ee1e102..8c39a93bca7 100644
--- a/srcpkgs/python-nbxmpp/template
+++ b/srcpkgs/python-nbxmpp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nbxmpp'
 pkgname=python-nbxmpp
 version=0.6.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 1ee192bdc19afbca9bbbc456945aaed8e882dc3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 325/872] python-ndg_httpsclient: rebuild for Python 3.8.

---
 srcpkgs/python-ndg_httpsclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ndg_httpsclient/template b/srcpkgs/python-ndg_httpsclient/template
index 908d7137391..54b653f68a9 100644
--- a/srcpkgs/python-ndg_httpsclient/template
+++ b/srcpkgs/python-ndg_httpsclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ndg_httpsclient'
 pkgname=python-ndg_httpsclient
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ndg_httpsclient-${version}"
 build_style=python-module

From 37b5c7920c617c4f55d5abe58df690c621598a93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 326/872] python3-neovim: rebuild for Python 3.8.

---
 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 44068f17b66..2730cd1b92b 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.3.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="pynvim-${version}"
 build_style="python3-module"

From 8136ec791e98badf101712f4f44830a6721d4849 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 327/872] python-netaddr: rebuild for Python 3.8.

---
 srcpkgs/python-netaddr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netaddr/template b/srcpkgs/python-netaddr/template
index 851095a3c7c..20cc1c93134 100644
--- a/srcpkgs/python-netaddr/template
+++ b/srcpkgs/python-netaddr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netaddr'
 pkgname=python-netaddr
 version=0.7.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="netaddr-${version}"
 build_style=python-module

From ebe247f557b410a62febae438785f8f011964023 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 328/872] python-netifaces: rebuild for Python 3.8.

---
 srcpkgs/python-netifaces/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netifaces/template b/srcpkgs/python-netifaces/template
index b8d6e505879..760f657aaba 100644
--- a/srcpkgs/python-netifaces/template
+++ b/srcpkgs/python-netifaces/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netifaces'
 pkgname=python-netifaces
 version=0.10.9
-revision=1
+revision=2
 wrksrc="netifaces-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 07d0e05094764c4ef127de2a4d489537d8ab5708 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 329/872] python3-networkx: rebuild for Python 3.8.

---
 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 eae29038d94..84acd3e929c 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.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="networkx-${version}"
 build_style=python3-module

From 8a3aeb59a75fbf1b7f0394b94c325ef8827b6b5d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 330/872] python-nose: rebuild for Python 3.8.

---
 srcpkgs/python-nose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose/template b/srcpkgs/python-nose/template
index c9fbe9d28d3..f2cd7fe5c3f 100644
--- a/srcpkgs/python-nose/template
+++ b/srcpkgs/python-nose/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose'
 pkgname=python-nose
 version=1.3.7
-revision=3
+revision=4
 archs=noarch
 wrksrc="nose-${version}"
 build_style=python-module

From f86abdbaaaa9e7e8236c4d39cd7e46a733425805 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 331/872] python-nose2: rebuild for Python 3.8.

---
 srcpkgs/python-nose2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose2/template b/srcpkgs/python-nose2/template
index a9ddf5969a1..058abbd4253 100644
--- a/srcpkgs/python-nose2/template
+++ b/srcpkgs/python-nose2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose2'
 pkgname=python-nose2
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 18b92c10ef3291636c1e7e28d721c5e994bf6302 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 332/872] python-npyscreen: rebuild for Python 3.8.

---
 srcpkgs/python-npyscreen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-npyscreen/template b/srcpkgs/python-npyscreen/template
index 0457fa1aaed..2223850f22e 100644
--- a/srcpkgs/python-npyscreen/template
+++ b/srcpkgs/python-npyscreen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-npyscreen'
 pkgname=python-npyscreen
 version=4.10.5.1
-revision=1
+revision=2
 wrksrc="npyscreen-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 9ea98fac2c37960db9a7b76cea2be115e8a2bed7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 333/872] python-ntplib: rebuild for Python 3.8.

---
 srcpkgs/python-ntplib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ntplib/template b/srcpkgs/python-ntplib/template
index 81bac24971e..0582fb326c1 100644
--- a/srcpkgs/python-ntplib/template
+++ b/srcpkgs/python-ntplib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ntplib'
 pkgname=python-ntplib
 version=0.3.3
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 wrksrc="ntplib-${version}"

From 42e7c3606ad17794721afef48ff01de438abbfde Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 334/872] python-numexpr: rebuild for Python 3.8.

---
 srcpkgs/python-numexpr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numexpr/template b/srcpkgs/python-numexpr/template
index 1db40092411..baf91175a33 100644
--- a/srcpkgs/python-numexpr/template
+++ b/srcpkgs/python-numexpr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numexpr'
 pkgname=python-numexpr
 version=2.7.0
-revision=1
+revision=2
 wrksrc="numexpr-${version}"
 build_style=python-module
 pycompile_module="numexpr"

From 30d9e4a8b4a096dfdf5ebfa58ffcadefb1dc1208 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 335/872] python3-numpy: rebuild for Python 3.8.

---
 srcpkgs/python3-numpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-numpy/template b/srcpkgs/python3-numpy/template
index c4c1936cc0d..f5e8ce2cc32 100644
--- a/srcpkgs/python3-numpy/template
+++ b/srcpkgs/python3-numpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-numpy'
 pkgname=python3-numpy
 version=1.17.2
-revision=1
+revision=2
 wrksrc="numpy-${version}"
 build_style=python3-module
 pycompile_module="numpy"

From 0172497dfdbc4c61b890a5cb33fdf7a4c4f8d99a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 336/872] python-numpy-stl: rebuild for Python 3.8.

---
 srcpkgs/python-numpy-stl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numpy-stl/template b/srcpkgs/python-numpy-stl/template
index 3eed838e4f6..cce1a8ead1f 100644
--- a/srcpkgs/python-numpy-stl/template
+++ b/srcpkgs/python-numpy-stl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numpy-stl'
 pkgname=python-numpy-stl
 version=2.10.1
-revision=1
+revision=2
 wrksrc="numpy-stl-v${version}"
 build_style=python-module
 pycompile_module="stl"

From f24b29a48d74aeaddb7b697a5daffdddbd861096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 337/872] python-oauth2client: rebuild for Python 3.8.

---
 srcpkgs/python-oauth2client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauth2client/template b/srcpkgs/python-oauth2client/template
index fd135e4e98f..2398adba276 100644
--- a/srcpkgs/python-oauth2client/template
+++ b/srcpkgs/python-oauth2client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauth2client'
 pkgname=python-oauth2client
 version=4.1.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 4c0ff2a063a36adf86c97b9d4c835ca20b5edfc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 338/872] python-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauthlib/template b/srcpkgs/python-oauthlib/template
index 5bbaa7df29b..036f1b31c92 100644
--- a/srcpkgs/python-oauthlib/template
+++ b/srcpkgs/python-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauthlib'
 pkgname=python-oauthlib
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 661bc27cfe08965221daa2747362d72e4fc27178 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 339/872] python-olefile: rebuild for Python 3.8.

---
 srcpkgs/python-olefile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-olefile/template b/srcpkgs/python-olefile/template
index 4346cfcf667..803d7b67cd8 100644
--- a/srcpkgs/python-olefile/template
+++ b/srcpkgs/python-olefile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-olefile'
 pkgname=python-olefile
 version=0.46
-revision=1
+revision=2
 archs=noarch
 wrksrc="olefile-${version}"
 build_style=python-module

From 81ad48cc99baa98fff2bb93d2c9ddbfe5bd36422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 340/872] python3-oletools: rebuild for Python 3.8.

---
 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 af9a91ff273..a4fda46427b 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.54.2b
-revision=1
+revision=2
 archs=noarch
 wrksrc="oletools-${version}"
 build_style=python3-module

From 0ae1454dacdb40d36d6c46872241d8b7f943ac15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 341/872] openrazer-meta: rebuild for Python 3.8.

---
 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 d4bd24878b2..112cb9e900b 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=1
+revision=2
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 827b1a86d790e29df3f5448f95b7d7583439ebc7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 342/872] python-openssl: rebuild for Python 3.8.

---
 srcpkgs/python-openssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-openssl/template b/srcpkgs/python-openssl/template
index 94bccaa166f..8aabda074fa 100644
--- a/srcpkgs/python-openssl/template
+++ b/srcpkgs/python-openssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-openssl'
 pkgname=python-openssl
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyOpenSSL-${version}"
 build_style=python-module

From 0b35d1d0b8e9ec0f17cb71edb12538b78cf15fa9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 343/872] python3-orocos-kdl: rebuild for Python 3.8.

---
 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 df3e27d5e7b..85b573b2fa4 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=1
+revision=2
 wrksrc=orocos_kinematics_dynamics-${version}
 build_wrksrc=python_orocos_kdl
 build_style=cmake

From 1f599cbc677804bd62252474063a3f44bab1963f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 344/872] python3-owm: rebuild for Python 3.8.

---
 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 d51e01831e6..acdb960ab45 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=1
+revision=2
 wrksrc="pyowm-${version}"
 build_style=python3-module
 pycompile_module="pyowm"

From 04d5ca1141107a7e08a15eccec26eae0cef6ddfc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 345/872] python-packaging: rebuild for Python 3.8.

---
 srcpkgs/python-packaging/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-packaging/template b/srcpkgs/python-packaging/template
index 505631bb29c..06042d12b90 100644
--- a/srcpkgs/python-packaging/template
+++ b/srcpkgs/python-packaging/template
@@ -1,7 +1,7 @@
 # Template file for 'python-packaging'
 pkgname=python-packaging
 version=19.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="packaging-${version}"
 build_style=python-module

From 3d4f635d1909bcc10be550a6ba92c93bab657d24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 346/872] python-pam: rebuild for Python 3.8.

---
 srcpkgs/python-pam/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pam/template b/srcpkgs/python-pam/template
index e696a05ae7f..28c22cfd6ea 100644
--- a/srcpkgs/python-pam/template
+++ b/srcpkgs/python-pam/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pam'
 pkgname=python-pam
 version=1.8.4
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="pam.py"

From 7906adb846a053b93372b360401c778862703de5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 347/872] python3-pandas: rebuild for Python 3.8.

---
 srcpkgs/python3-pandas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pandas/template b/srcpkgs/python3-pandas/template
index ad282b4d5d4..10f9d5a77d9 100644
--- a/srcpkgs/python3-pandas/template
+++ b/srcpkgs/python3-pandas/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pandas'
 pkgname=python3-pandas
 version=0.25.1
-revision=1
+revision=2
 wrksrc="pandas-${version}"
 build_style=python3-module
 pycompile_module="pandas"

From 5f63764964faf4b0d244098f5f64ba1225e14c5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 348/872] python-pandocfilters: rebuild for Python 3.8.

---
 srcpkgs/python-pandocfilters/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pandocfilters/template b/srcpkgs/python-pandocfilters/template
index a7a3d442052..8650d20256f 100644
--- a/srcpkgs/python-pandocfilters/template
+++ b/srcpkgs/python-pandocfilters/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pandocfilters'
 pkgname=python-pandocfilters
 version=1.4.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="pandocfilters-${version}"
 build_style=python-module

From cedefda1104de9c58b20c6b7e1d8a0f4d5385b24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 349/872] python-paramiko: rebuild for Python 3.8.

---
 srcpkgs/python-paramiko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-paramiko/template b/srcpkgs/python-paramiko/template
index c512ceb951f..d6f75508a03 100644
--- a/srcpkgs/python-paramiko/template
+++ b/srcpkgs/python-paramiko/template
@@ -1,7 +1,7 @@
 # Template file for 'python-paramiko'
 pkgname=python-paramiko
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 6c5cdbb0603a5742137ad2399e1f282d7135ecbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 350/872] python-parse: rebuild for Python 3.8.

---
 srcpkgs/python-parse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parse/template b/srcpkgs/python-parse/template
index 298d0b65e78..ded581b4420 100644
--- a/srcpkgs/python-parse/template
+++ b/srcpkgs/python-parse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parse'
 pkgname=python-parse
 version=1.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="parse-${version}"
 build_style=python-module

From 06c32d13c6ecc8f5c59fd3d28c856cddb7e55b69 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 351/872] python3-parsedatetime: rebuild for Python 3.8.

---
 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 d3ac21d7d34..34e9ba0f416 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="parsedatetime-${version}"
 build_style=python3-module

From 149092afd6b238ec9977aa2ba8d8f244d5357e67 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 352/872] python-parsing: rebuild for Python 3.8.

---
 srcpkgs/python-parsing/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parsing/template b/srcpkgs/python-parsing/template
index 0cc744eaf79..bd6cf2c2238 100644
--- a/srcpkgs/python-parsing/template
+++ b/srcpkgs/python-parsing/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parsing'
 pkgname=python-parsing
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyparsing-pyparsing_${version}"
 build_style=python-module

From c302574bea31ba81d3f2e4d6c1b8b8212592985d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 353/872] python-parso: rebuild for Python 3.8.

---
 srcpkgs/python-parso/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parso/template b/srcpkgs/python-parso/template
index 20e5fe306c0..1959b42622a 100644
--- a/srcpkgs/python-parso/template
+++ b/srcpkgs/python-parso/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parso'
 pkgname=python-parso
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="parso-${version}"
 build_style=python-module

From 6b9c95f942435b16d67021b0ce8f182c24bb943f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 354/872] python-passlib: rebuild for Python 3.8.

---
 srcpkgs/python-passlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-passlib/template b/srcpkgs/python-passlib/template
index 3af12ce7b1b..f46a3e92642 100644
--- a/srcpkgs/python-passlib/template
+++ b/srcpkgs/python-passlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-passlib'
 pkgname=python-passlib
 version=1.7.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="passlib-${version}"
 build_style=python-module

From 49600da0619f7152e3ea828c366d9a4680ebac40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 355/872] python-pathlib2: rebuild for Python 3.8.

---
 srcpkgs/python-pathlib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathlib2/template b/srcpkgs/python-pathlib2/template
index bb7bec778f5..fa600b78fbe 100644
--- a/srcpkgs/python-pathlib2/template
+++ b/srcpkgs/python-pathlib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathlib2'
 pkgname=python-pathlib2
 version=2.3.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pathlib2-${version}"
 build_style=python-module

From a0a108aec87134d5b6d2e03e731f48739e1226c0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 356/872] python-pathspec: rebuild for Python 3.8.

---
 srcpkgs/python-pathspec/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathspec/template b/srcpkgs/python-pathspec/template
index 7c5fe04097a..2fa8fa1a811 100644
--- a/srcpkgs/python-pathspec/template
+++ b/srcpkgs/python-pathspec/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathspec'
 pkgname=python-pathspec
 version=0.5.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathspec-${version}"
 build_style=python-module

From c66de315dc6f359ddb581056e8ef350e92acb135 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 357/872] python-pathtools: rebuild for Python 3.8.

---
 srcpkgs/python-pathtools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathtools/template b/srcpkgs/python-pathtools/template
index 218e6ed2f57..47dc6ef6a71 100644
--- a/srcpkgs/python-pathtools/template
+++ b/srcpkgs/python-pathtools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathtools'
 pkgname=python-pathtools
 version=0.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathtools-${version}"
 build_style=python-module

From d3d8ba877ce3e383a472c68a51b4eb6138da7d25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 358/872] python-pbkdf2: rebuild for Python 3.8.

---
 srcpkgs/python-pbkdf2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pbkdf2/template b/srcpkgs/python-pbkdf2/template
index edc50f824c2..956d0b4cad9 100644
--- a/srcpkgs/python-pbkdf2/template
+++ b/srcpkgs/python-pbkdf2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pbkdf2'
 pkgname=python-pbkdf2
 version=1.3
-revision=3
+revision=4
 archs=noarch
 wrksrc="pbkdf2-${version}"
 build_style=python-module

From 92b150f4aee95d71074c2bc7e253e089372033b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 359/872] python-pbr: rebuild for Python 3.8.

---
 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 7ab0b39539f..9c7216056fe 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.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pbr-${version}"
 build_style=python-module

From a5f7f198ba9557855d1662cf7b3d806286d735b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 360/872] python3-pcodedmp: rebuild for Python 3.8.

---
 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 efe8cc83ee7..eb52c809fae 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=1
+revision=2
 archs=noarch
 wrksrc="pcodedmp-${version}"
 build_style=python3-module

From c6f7d3cab5a62a3302eedc82e3ce1b5af007e967 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 361/872] python-pdfrw: rebuild for Python 3.8.

---
 srcpkgs/python-pdfrw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pdfrw/template b/srcpkgs/python-pdfrw/template
index ddb43b928fc..ef7db98e491 100644
--- a/srcpkgs/python-pdfrw/template
+++ b/srcpkgs/python-pdfrw/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pdfrw'
 pkgname=python-pdfrw
 version=0.4
-revision=2
+revision=3
 archs=noarch
 replaces="python-pdfrw-example<${version}_${revision}"
 wrksrc="${pkgname/python-//}-${version}"

From 8f02a9d6b13212de51e3921f641914d153244a1d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 362/872] python-peewee: rebuild for Python 3.8.

---
 srcpkgs/python-peewee/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-peewee/template b/srcpkgs/python-peewee/template
index 9b07ed413b9..de0068a330e 100644
--- a/srcpkgs/python-peewee/template
+++ b/srcpkgs/python-peewee/template
@@ -1,7 +1,7 @@
 # Template file for 'python-peewee'
 pkgname=python-peewee
 version=3.11.2
-revision=1
+revision=2
 wrksrc="peewee-${version}"
 build_style=python-module
 pycompile_module="playhouse peewee.py pwiz.py"

From 8c541b3666a838b55909e5f7ca46b7318c1e315e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 363/872] python3-pefile: rebuild for Python 3.8.

---
 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 305d64e0758..8791f06640b 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=1
+revision=2
 archs=noarch
 wrksrc="pefile-${version}"
 build_style=python3-module

From edc8e4f2bb803865815c3d0bd64a2e50bfdf5da8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 364/872] python3-pem: rebuild for Python 3.8.

---
 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 3517c80b66a..15417666597 100644
--- a/srcpkgs/python3-pem/template
+++ b/srcpkgs/python3-pem/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pem'
 pkgname=python3-pem
 version=19.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pem-${version}"
 build_style=python3-module

From 164760eb3d8d28400ea4be2967d7678696839866 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 365/872] python-pex: rebuild for Python 3.8.

---
 srcpkgs/python-pex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pex/template b/srcpkgs/python-pex/template
index 4beafcf7b4b..e36ccda8180 100644
--- a/srcpkgs/python-pex/template
+++ b/srcpkgs/python-pex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pex'
 pkgname=python-pex
 version=1.6.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="pex-${version}"
 build_style=python-module

From b4043ec822756e0711d025e31db342f81853fc0b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 366/872] python-pexpect: rebuild for Python 3.8.

---
 srcpkgs/python-pexpect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pexpect/template b/srcpkgs/python-pexpect/template
index 8d03a1945f3..03102c3d294 100644
--- a/srcpkgs/python-pexpect/template
+++ b/srcpkgs/python-pexpect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pexpect'
 pkgname=python-pexpect
 version=4.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pexpect-${version}"
 build_style=python-module

From 50f6291ca752dc88af34a7df4987b99f11369c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 367/872] python-pgmigrate: rebuild for Python 3.8.

---
 srcpkgs/python-pgmigrate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgmigrate/template b/srcpkgs/python-pgmigrate/template
index b441ba2a89f..767b6cf8921 100644
--- a/srcpkgs/python-pgmigrate/template
+++ b/srcpkgs/python-pgmigrate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgmigrate'
 pkgname=python-pgmigrate
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgmigrate-${version}"
 build_style=python-module

From 19bc6f8c731b45f52c358d34830221558e54f36f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 368/872] python-pgpdump: rebuild for Python 3.8.

---
 srcpkgs/python-pgpdump/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgpdump/template b/srcpkgs/python-pgpdump/template
index 58be9116feb..a28b6e209e7 100644
--- a/srcpkgs/python-pgpdump/template
+++ b/srcpkgs/python-pgpdump/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgpdump'
 pkgname=python-pgpdump
 version=1.5
-revision=5
+revision=6
 archs=noarch
 build_style=python-module
 pycompile_module="pgpdump"

From d3bc17a7484bd198f2f0e5d449b183920ca6ef9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 369/872] python3-pgspecial: rebuild for Python 3.8.

---
 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 dc52d12c214..c4f67a707f1 100644
--- a/srcpkgs/python3-pgspecial/template
+++ b/srcpkgs/python3-pgspecial/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pgspecial'
 pkgname=python3-pgspecial
 version=1.11.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgspecial-${version}"
 build_style=python3-module

From 630e0f8ca443d21d7a84c4cb44ab119db356b6fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 370/872] python3-pgzero: rebuild for Python 3.8.

---
 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 9653505acda..8b8f477112d 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgzero-${version}"
 build_style=python3-module

From b39841f2f8458d2865aac460282b318538b727c4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 371/872] python3-phonenumbers: rebuild for Python 3.8.

---
 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 ebf33f226e4..7b4e889fd8d 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.10.20
-revision=1
+revision=2
 archs=noarch
 wrksrc="phonenumbers-${version}"
 build_style=python3-module

From c4dbacfe25a16b0526190c66a838b7e407125426 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 372/872] python-picamera: rebuild for Python 3.8.

---
 srcpkgs/python-picamera/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-picamera/template b/srcpkgs/python-picamera/template
index 92bc2a57a6d..e3c9a17bfdc 100644
--- a/srcpkgs/python-picamera/template
+++ b/srcpkgs/python-picamera/template
@@ -1,7 +1,7 @@
 # Template file for 'python-picamera'
 pkgname=python-picamera
 version=1.13
-revision=1
+revision=2
 archs=noarch
 wrksrc="picamera-${version}"
 build_style=python-module

From 29473c016c6cd2d720c417714e89e9eaba3b321e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 373/872] python-pickleshare: rebuild for Python 3.8.

---
 srcpkgs/python-pickleshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pickleshare/template b/srcpkgs/python-pickleshare/template
index 2485c95230a..c1d86826c15 100644
--- a/srcpkgs/python-pickleshare/template
+++ b/srcpkgs/python-pickleshare/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pickleshare'
 pkgname=python-pickleshare
 version=0.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pickleshare-${version}"
 build_style=python-module

From 7c358da397b1273369bbeb98240a250157d4fe9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 374/872] python3-pillow-simd: rebuild for Python 3.8.

---
 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 7bab9fb20c3..4c756b07c79 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=5.3.0.post1
-revision=1
+revision=2
 archs="x86_64*"
 wrksrc="pillow-simd-${version}"
 build_style=python3-module

From 06b38c4e7a2c4a5ec22c8a9c530dbe56d846260f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 375/872] python-pip: rebuild for Python 3.8.

---
 srcpkgs/python-pip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pip/template b/srcpkgs/python-pip/template
index 75f11561816..9d4607095c7 100644
--- a/srcpkgs/python-pip/template
+++ b/srcpkgs/python-pip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pip'
 pkgname=python-pip
 version=19.2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pip-${version}"
 build_style=python-module

From 16067b9358434ea80b4b86a4dcd5a60f6b9e575b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 376/872] python-pipenv: rebuild for Python 3.8.

---
 srcpkgs/python-pipenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pipenv/template b/srcpkgs/python-pipenv/template
index e7ce3922875..210a0813673 100644
--- a/srcpkgs/python-pipenv/template
+++ b/srcpkgs/python-pipenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pipenv'
 pkgname=python-pipenv
 version=2018.11.26
-revision=3
+revision=4
 archs=noarch
 wrksrc="pipenv-${version}"
 build_style=python-module

From cb995aed1307a20f4ffe7746dbe54e4099ce9670 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 377/872] python-pkgconfig: rebuild for Python 3.8.

---
 srcpkgs/python-pkgconfig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pkgconfig/template b/srcpkgs/python-pkgconfig/template
index 13e1dcd3bf7..e9e5480907d 100644
--- a/srcpkgs/python-pkgconfig/template
+++ b/srcpkgs/python-pkgconfig/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pkgconfig'
 pkgname=python-pkgconfig
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pkgconfig-${version}"
 build_style=python-module

From f284340f35211b5c0879b7a5338c325e6cfe62da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 378/872] python-plotly: rebuild for Python 3.8.

---
 srcpkgs/python-plotly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-plotly/template b/srcpkgs/python-plotly/template
index fbbb3a3a520..1593b108f7a 100644
--- a/srcpkgs/python-plotly/template
+++ b/srcpkgs/python-plotly/template
@@ -1,7 +1,7 @@
 # Template file for 'python-plotly'
 pkgname=python-plotly
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 #wrksrc="${pkgname#*-}-${version}"
 wrksrc="plotly.py-${version}"

From ee0d515dc265db17d6c90029fc5ffad4fbfb17ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 379/872] python3-pluggy: rebuild for Python 3.8.

---
 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 37ebc2dae40..6f97cb25f21 100644
--- a/srcpkgs/python3-pluggy/template
+++ b/srcpkgs/python3-pluggy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pluggy'
 pkgname=python3-pluggy
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python3-module

From 60f109b4924812d3cbb6107b8d070a2fdb642962 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 380/872] python-ply: rebuild for Python 3.8.

---
 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 034fbcfa531..04a3defa6aa 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=1
+revision=2
 archs=noarch
 wrksrc="ply-${version}"
 build_style=python-module

From 95b0bc668a60a91dbbd68944bdc712d271e93723 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 381/872] python3-pmw: rebuild for Python 3.8.

---
 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 646e7129443..289b5ef1d0d 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=1
+revision=2
 archs=noarch
 short_desc="Python 3 Tkinter widget toolkit"
 homepage="http://pmw.sourceforge.net/"

From 760b2aa66f385f882c6da4545bc93c906a387d73 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 382/872] python-podcastparser: rebuild for Python 3.8.

---
 srcpkgs/python-podcastparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-podcastparser/template b/srcpkgs/python-podcastparser/template
index e4847d3ed65..61702f0d28b 100644
--- a/srcpkgs/python-podcastparser/template
+++ b/srcpkgs/python-podcastparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-podcastparser'
 pkgname=python-podcastparser
 version=0.6.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="podcastparser-${version}"
 build_style=python-module

From e0ad0641945e1dea937fb2ca555a61603e4560b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 383/872] python-polib: rebuild for Python 3.8.

---
 srcpkgs/python-polib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-polib/template b/srcpkgs/python-polib/template
index b0ade05d90d..8b8d4b66c68 100644
--- a/srcpkgs/python-polib/template
+++ b/srcpkgs/python-polib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-polib'
 pkgname=python-polib
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="polib-${version}"
 build_style=python-module

From 0030be5c9ea47539a72b9d5b5131abeac8412e47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 384/872] python-portend: rebuild for Python 3.8.

---
 srcpkgs/python-portend/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python-portend/template b/srcpkgs/python-portend/template
index 216ae413d09..0538f68083f 100644
--- a/srcpkgs/python-portend/template
+++ b/srcpkgs/python-portend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-portend'
 pkgname=python-portend
 version=2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="portend-${version}"
 build_style=python-module
@@ -14,7 +14,7 @@ license="MIT"
 homepage="https://github.com/jaraco/portend"
 changelog="https://github.com/jaraco/portend/blob/master/CHANGES.rst"
 distfiles="https://github.com/jaraco/portend/archive/${version}.tar.gz"
-checksum=61aa1a8fd76d64bd6093e4151a2bfeda177d5083bf2e2bcc92a053bd2104fde3
+checksum=c0740375a19168e117d291e7ed307e985d2c0e2dc732ca97444bc58a28076dfa
 
 pre_build() {
 	sed -i setup.py \

From 86c2211e1837e156275077b9efe1e25572514867 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 385/872] python-prctl: rebuild for Python 3.8.

---
 srcpkgs/python-prctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prctl/template b/srcpkgs/python-prctl/template
index 2b420d655cf..e8bf54b98fd 100644
--- a/srcpkgs/python-prctl/template
+++ b/srcpkgs/python-prctl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prctl'
 pkgname=python-prctl
 version=1.7
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="prctl.py"
 hostmakedepends="python-setuptools python3-setuptools libcap-devel"

From e7c53afc196d066076f9117158bd6a0b7b28bf52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 386/872] python3-precis-i18n: rebuild for Python 3.8.

---
 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 19612bc818b..be7bb0b0b56 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=1
+revision=2
 archs=noarch
 wrksrc="precis_i18n-${version}"
 build_style=python3-module

From fc6a6a6ae9e2454bc6e5aa117ab2f5f747f1c3d2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 387/872] python-pretend: rebuild for Python 3.8.

---
 srcpkgs/python-pretend/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pretend/template b/srcpkgs/python-pretend/template
index 9a647271b57..6d8063fc43a 100644
--- a/srcpkgs/python-pretend/template
+++ b/srcpkgs/python-pretend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pretend'
 pkgname=python-pretend
 version=1.0.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pretend-${version}"
 build_style=python-module

From 990266b8ce207f64d2a8e2f2f2c11473236e4a2d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 388/872] python-progress: rebuild for Python 3.8.

---
 srcpkgs/python-progress/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-progress/template b/srcpkgs/python-progress/template
index 7d3924e3618..0d6bd1db69d 100644
--- a/srcpkgs/python-progress/template
+++ b/srcpkgs/python-progress/template
@@ -1,7 +1,7 @@
 # Template file for 'python-progress'
 pkgname=python-progress
 version=1.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="progress-${version}"
 build_style=python-module

From 1259abece823637c18eaca058493cebdf15842ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 389/872] python-prometheus_client: rebuild for Python 3.8.

---
 srcpkgs/python-prometheus_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prometheus_client/template b/srcpkgs/python-prometheus_client/template
index 46df561f7d4..7b71fbeffc2 100644
--- a/srcpkgs/python-prometheus_client/template
+++ b/srcpkgs/python-prometheus_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prometheus_client'
 pkgname=python-prometheus_client
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="prometheus_client-${version}"
 build_style=python-module

From 67527aa7cf723b45f2c49017717337d56884bf4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 390/872] python-prompt_toolkit1: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit1/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit1/template b/srcpkgs/python-prompt_toolkit1/template
index d117d620ba5..7afe6179f33 100644
--- a/srcpkgs/python-prompt_toolkit1/template
+++ b/srcpkgs/python-prompt_toolkit1/template
@@ -2,7 +2,7 @@
 pkgname=python-prompt_toolkit1
 reverts="2.0.9_1"
 version=1.0.15
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From ad672131c8ab27e3e4dfa04ab7264c23d46f206e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 391/872] python-prompt_toolkit2: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit2/template b/srcpkgs/python-prompt_toolkit2/template
index 0fa71fa06dc..d7f2fd11e14 100644
--- a/srcpkgs/python-prompt_toolkit2/template
+++ b/srcpkgs/python-prompt_toolkit2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prompt_toolkit2'
 pkgname=python-prompt_toolkit2
 version=2.0.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From 2d3dfe28989a26dbea6bd90097a7a4046839373e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 392/872] python-proselint: rebuild for Python 3.8.

---
 srcpkgs/python-proselint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-proselint/template b/srcpkgs/python-proselint/template
index c017c497386..b1da90de474 100644
--- a/srcpkgs/python-proselint/template
+++ b/srcpkgs/python-proselint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-proselint'
 pkgname=python-proselint
 version=0.10.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="proselint-${version}"
 build_style=python-module

From 3dceefa27e529cfd28f51c8b96cec007bd4464e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 393/872] python-protobuf: rebuild for Python 3.8.

---
 srcpkgs/python-protobuf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-protobuf/template b/srcpkgs/python-protobuf/template
index 4b736f1e7af..7dbed97fb76 100644
--- a/srcpkgs/python-protobuf/template
+++ b/srcpkgs/python-protobuf/template
@@ -1,7 +1,7 @@
 # Template file for 'python-protobuf'
 pkgname=python-protobuf
 version=3.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="protobuf-${version}"
 build_style=python-module

From abc13cfff04878580efaf4333ca9548112b11049 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 394/872] python-psutil: rebuild for Python 3.8.

---
 srcpkgs/python-psutil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psutil/template b/srcpkgs/python-psutil/template
index 96cbb3c399f..11353ed2179 100644
--- a/srcpkgs/python-psutil/template
+++ b/srcpkgs/python-psutil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psutil'
 pkgname=python-psutil
 version=5.6.3
-revision=1
+revision=2
 wrksrc="psutil-${version}"
 build_style=python-module
 pycompile_module="psutil"

From 970bcf29dafb825894593f644c2fb7b4f1b86aff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 395/872] python-psycopg2: rebuild for Python 3.8.

---
 srcpkgs/python-psycopg2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psycopg2/template b/srcpkgs/python-psycopg2/template
index f41de2880e6..14b28b8aed1 100644
--- a/srcpkgs/python-psycopg2/template
+++ b/srcpkgs/python-psycopg2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psycopg2'
 pkgname=python-psycopg2
 version=2.8.3
-revision=1
+revision=2
 wrksrc="psycopg2-${version}"
 build_style=python-module
 pycompile_module="psycopg2"

From f987fad321d899f07d159588838ad3f3bfd1eb12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 396/872] python-ptyprocess: rebuild for Python 3.8.

---
 srcpkgs/python-ptyprocess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ptyprocess/template b/srcpkgs/python-ptyprocess/template
index 04c4cf89391..fd2e51fa3ac 100644
--- a/srcpkgs/python-ptyprocess/template
+++ b/srcpkgs/python-ptyprocess/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ptyprocess'
 pkgname=python-ptyprocess
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ptyprocess-${version}"
 build_style=python-module

From 6854ff4b103875e8ed393d695b71afd7a2589626 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 397/872] python3-pulsectl: rebuild for Python 3.8.

---
 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 429dd1abe45..045afdb411b 100644
--- a/srcpkgs/python3-pulsectl/template
+++ b/srcpkgs/python3-pulsectl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pulsectl'
 pkgname=python3-pulsectl
 version=19.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pulsectl-${version}"
 build_style=python3-module

From e8331ef1c889bc2b1756c6ed55a1cc93186445af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 398/872] python-py: rebuild for Python 3.8.

---
 srcpkgs/python-py/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-py/template b/srcpkgs/python-py/template
index 99644bc228a..07a1ae2a21b 100644
--- a/srcpkgs/python-py/template
+++ b/srcpkgs/python-py/template
@@ -1,7 +1,7 @@
 # Template file for 'python-py'
 pkgname=python-py
 version=1.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="py-${version}"
 build_style=python-module

From 1f71c5025d9cb40d86e4245b6a90731b3f25c6fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 399/872] python-pyPEG2: rebuild for Python 3.8.

---
 srcpkgs/python-pyPEG2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyPEG2/template b/srcpkgs/python-pyPEG2/template
index 113948af730..6ba175687f1 100644
--- a/srcpkgs/python-pyPEG2/template
+++ b/srcpkgs/python-pyPEG2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyPEG2'
 pkgname=python-pyPEG2
 version=2.15.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 3f82483327ba7958b0a6f8b67e63abf009c360ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 400/872] python-pyacoustid: rebuild for Python 3.8.

---
 srcpkgs/python-pyacoustid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyacoustid/template b/srcpkgs/python-pyacoustid/template
index 068d3d52649..d5b2d967f4e 100644
--- a/srcpkgs/python-pyacoustid/template
+++ b/srcpkgs/python-pyacoustid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyacoustid'
 pkgname=python-pyacoustid
 version=1.1.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyacoustid-${version}"
 build_style=python-module

From da477a37411d7cf0d00da2dea60d734072705be7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 401/872] python-pyaes: rebuild for Python 3.8.

---
 srcpkgs/python-pyaes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyaes/template b/srcpkgs/python-pyaes/template
index a8c812a9e01..d31766d0481 100644
--- a/srcpkgs/python-pyaes/template
+++ b/srcpkgs/python-pyaes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyaes'
 pkgname=python-pyaes
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyaes-${version}"
 build_style=python-module

From 9e2b6fe7e7b67777d70eb25705c27d4ed6462a3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 402/872] python-pyasn1: rebuild for Python 3.8.

---
 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 510dfa09816..fcddad43633 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyasn1-${version}"
 build_style=python-module

From 712c6a81632d8741a302138a46ffd3b1c8fb079f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 403/872] python-pyasn1-modules: rebuild for Python 3.8.

---
 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 bc19e4940ed..b142819a272 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 989e8e1bc0a51f2fa1a88ec8f99eae20dd3e21ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 404/872] python3-pycares: rebuild for Python 3.8.

---
 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 c52702904b4..ed82808bada 100644
--- a/srcpkgs/python3-pycares/template
+++ b/srcpkgs/python3-pycares/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pycares'
 pkgname=python3-pycares
 version=2.3.0
-revision=2
+revision=3
 wrksrc="pycares-${version}"
 build_style=python3-module
 pycompile_module="pycares"

From 0885c6a30ff0765b465e0e4c84803b48b9090dc5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 405/872] python-pycodestyle: rebuild for Python 3.8.

---
 srcpkgs/python-pycodestyle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycodestyle/template b/srcpkgs/python-pycodestyle/template
index ca20d8e0c97..08bc8c8bec7 100644
--- a/srcpkgs/python-pycodestyle/template
+++ b/srcpkgs/python-pycodestyle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycodestyle'
 pkgname=python-pycodestyle
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycodestyle-${version}"
 build_style=python-module

From 61d0268320bb8306c2b2823a663588c885a01df6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 406/872] python-pycountry: rebuild for Python 3.8.

---
 srcpkgs/python-pycountry/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycountry/template b/srcpkgs/python-pycountry/template
index 88a0025f258..205db6240b7 100644
--- a/srcpkgs/python-pycountry/template
+++ b/srcpkgs/python-pycountry/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycountry'
 pkgname=python-pycountry
 version=18.12.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycountry-${version}"
 build_style=python-module

From e3a689e939cf482e09d50cf25b8f244cbec3dc12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 407/872] python-pycparser: rebuild for Python 3.8.

---
 srcpkgs/python-pycparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycparser/template b/srcpkgs/python-pycparser/template
index a521b3494ab..d2e83aa79b2 100644
--- a/srcpkgs/python-pycparser/template
+++ b/srcpkgs/python-pycparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycparser'
 pkgname=python-pycparser
 version=2.19
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycparser-${version}"
 build_style=python-module

From a86a5e2a75c91a868bf9b10f7ad9d86ca4df85d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 408/872] python-pycryptodome: rebuild for Python 3.8.

---
 srcpkgs/python-pycryptodome/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycryptodome/template b/srcpkgs/python-pycryptodome/template
index f01b5731c45..a4368d61b39 100644
--- a/srcpkgs/python-pycryptodome/template
+++ b/srcpkgs/python-pycryptodome/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycryptodome'
 pkgname=python-pycryptodome
 version=3.9.0
-revision=1
+revision=2
 wrksrc="pycryptodome-${version}"
 build_style=python-module
 pycompile_module="Crypto"

From 0cd2d63524942e2cfe5220436720dab24ef75308 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 409/872] python-pyelftools: rebuild for Python 3.8.

---
 srcpkgs/python-pyelftools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyelftools/template b/srcpkgs/python-pyelftools/template
index a6e9e9b644e..193650442fc 100644
--- a/srcpkgs/python-pyelftools/template
+++ b/srcpkgs/python-pyelftools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyelftools'
 pkgname=python-pyelftools
 version=0.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyelftools-${version}"
 build_style=python-module

From 61ae993767f544e608a601e6727e58b8c73400fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 410/872] python3-pyfiglet: rebuild for Python 3.8.

---
 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 d00b4fda62a..a4a67b12d42 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=1
+revision=2
 archs=noarch
 wrksrc="pyfiglet-${version}"
 build_style="python3-module"

From 7f5bd3a27f56badc9d95d3b2b7a684604262af1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 411/872] python-pyflakes: rebuild for Python 3.8.

---
 srcpkgs/python-pyflakes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyflakes/template b/srcpkgs/python-pyflakes/template
index 86d477c47f2..19229ebb3a4 100644
--- a/srcpkgs/python-pyflakes/template
+++ b/srcpkgs/python-pyflakes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyflakes'
 pkgname=python-pyflakes
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyflakes-${version}"
 build_style=python-module

From a811c56d34b1f53ac8aeca03f5247410137fe8d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 412/872] python-pygame: rebuild for Python 3.8.

---
 srcpkgs/python-pygame/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pygame/template b/srcpkgs/python-pygame/template
index a510333df6e..a900d62dbe3 100644
--- a/srcpkgs/python-pygame/template
+++ b/srcpkgs/python-pygame/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pygame'
 pkgname=python-pygame
 version=1.9.4
-revision=2
+revision=3
 wrksrc="pygame-${version}"
 build_style=python-module
 pycompile_module="pygame"

From e62822b2e5fa56868e80f10a019c7a0d66abbcbd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 413/872] python-pyglet: rebuild for Python 3.8.

---
 srcpkgs/python-pyglet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyglet/template b/srcpkgs/python-pyglet/template
index f8315bdf616..ee6ed16064c 100644
--- a/srcpkgs/python-pyglet/template
+++ b/srcpkgs/python-pyglet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyglet'
 pkgname=python-pyglet
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyglet-${version}"
 build_style=python-module

From 1f0bf2cea3a10c9982132fbe81c5ebd884defa35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 414/872] python3-pykeepass: rebuild for Python 3.8.

---
 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 c0e0fd4db41..135da6fea65 100644
--- a/srcpkgs/python3-pykeepass/template
+++ b/srcpkgs/python3-pykeepass/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pykeepass'
 pkgname=python3-pykeepass
 version=3.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="pykeepass-${version}"
 build_style=python3-module

From f2d7f9a6199d6780975ad9efb639642e96acc8c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 415/872] python3-pykwalify: rebuild for Python 3.8.

---
 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 27bc0c37355..b3727aba651 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pykwalify-${version}"
 build_style=python3-module

From cb348b8cc013bee10cb1adcdd5b9dac8e8f37a83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 416/872] python3-pylast: rebuild for Python 3.8.

---
 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 187b51943a8..60184348d80 100644
--- a/srcpkgs/python3-pylast/template
+++ b/srcpkgs/python3-pylast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylast'
 pkgname=python3-pylast
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylast-${version}"
 build_style=python3-module

From 6629ec0088134c22cfb115f29fd4a90a9b38e7a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 417/872] python3-pylibgen: rebuild for Python 3.8.

---
 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 641bf649c17..540ccb32790 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylibgen-${version}"
 build_style=python3-module

From 953751fa6deeafefea78df4f5ec27ee5c5c9902d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 418/872] python3-pylint: rebuild for Python 3.8.

---
 srcpkgs/python3-pylint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pylint/template b/srcpkgs/python3-pylint/template
index 6c8800069f0..315dbffb3fc 100644
--- a/srcpkgs/python3-pylint/template
+++ b/srcpkgs/python3-pylint/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylint'
 pkgname=python3-pylint
 version=2.3.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="pylint-${version}"
 build_style=python3-module

From 96bc4e17e1f144c3528e0ec3b455d501c2c3efdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 419/872] python-pynacl: rebuild for Python 3.8.

---
 srcpkgs/python-pynacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pynacl/template b/srcpkgs/python-pynacl/template
index 6ead91820b1..7a7fe246821 100644
--- a/srcpkgs/python-pynacl/template
+++ b/srcpkgs/python-pynacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pynacl'
 pkgname=python-pynacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python-module
 pycompile_module="nacl"

From ec1da9dfd353e059b23780a676ef1561f56f9b2e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 420/872] python-pyotp: rebuild for Python 3.8.

---
 srcpkgs/python-pyotp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyotp/template b/srcpkgs/python-pyotp/template
index 54714ee2ebb..b70bd73d4aa 100644
--- a/srcpkgs/python-pyotp/template
+++ b/srcpkgs/python-pyotp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyotp'
 pkgname=python-pyotp
 version=2.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyotp-${version}"
 build_style=python-module

From 3c83515599af94f7483a3e165f03547f9daa2835 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 421/872] python-pyperclip: rebuild for Python 3.8.

---
 srcpkgs/python-pyperclip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyperclip/template b/srcpkgs/python-pyperclip/template
index 512dc8d3dfb..b173f1479a5 100644
--- a/srcpkgs/python-pyperclip/template
+++ b/srcpkgs/python-pyperclip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyperclip'
 pkgname=python-pyperclip
 version=1.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=pyperclip-${version}
 build_style=python-module

From 6d17f7510d6ce4ec430e8bf72567fecdbd521681 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 422/872] python-pyqtgraph: rebuild for Python 3.8.

---
 srcpkgs/python-pyqtgraph/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyqtgraph/template b/srcpkgs/python-pyqtgraph/template
index f90e2b15319..1bea9c2ffdf 100644
--- a/srcpkgs/python-pyqtgraph/template
+++ b/srcpkgs/python-pyqtgraph/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyqtgraph'
 pkgname=python-pyqtgraph
 version=0.10.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${pkgname#*-}-${version}"
 build_style=python-module

From fff21c3dd38242e2992b276e00f6970f96a34293 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 423/872] python-pyrfc3339: rebuild for Python 3.8.

---
 srcpkgs/python-pyrfc3339/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyrfc3339/template b/srcpkgs/python-pyrfc3339/template
index 618e46d1c4b..cd81c4d0624 100644
--- a/srcpkgs/python-pyrfc3339/template
+++ b/srcpkgs/python-pyrfc3339/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyrfc3339'
 pkgname=python-pyrfc3339
 version=1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="pyrfc3339"

From bdfc6ef4d47bd373ff649510c96f640b48da738a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 424/872] python-pyscss: rebuild for Python 3.8.

---
 srcpkgs/python-pyscss/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyscss/template b/srcpkgs/python-pyscss/template
index 1f7d8b7d8cd..1a8e9c44d7d 100644
--- a/srcpkgs/python-pyscss/template
+++ b/srcpkgs/python-pyscss/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyscss'
 pkgname=python-pyscss
 version=1.3.5
-revision=6
+revision=7
 wrksrc="pyScss-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pcre-devel"

From 6bdfad32f6894df0a7f3eb185662fa32228408ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 425/872] python3-pysdl2: rebuild for Python 3.8.

---
 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 d59ea7d7fa2..3efdca5b667 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=1
+revision=2
 archs=noarch
 wrksrc="py-sdl2-rel_${version//./_}"
 build_style=python3-module

From 67dab081767478a600fbc44d5333dc2746a683ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 426/872] python-pyserial: rebuild for Python 3.8.

---
 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 8808e76d206..354be493b16 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=2
+revision=3
 archs=noarch
 wrksrc="pyserial-${version}"
 build_style=python-module

From a6914f6aa35af001fd954260658bed6e1e5df2bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 427/872] python3-pyside2: rebuild for Python 3.8.

---
 srcpkgs/python3-pyside2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pyside2/template b/srcpkgs/python3-pyside2/template
index a5d60b17568..1da3400f239 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.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From deee942f64ef5e0e70f6a45a7f9e3a2593d53add Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 428/872] python3-pysigset: rebuild for Python 3.8.

---
 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 8de87145a09..50d9162ea70 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.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysigset-${version}"
 build_style=python3-module

From 913752d5b84f0054c829fc060939c366bf5b28cb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 429/872] python-pysocks: rebuild for Python 3.8.

---
 srcpkgs/python-pysocks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysocks/template b/srcpkgs/python-pysocks/template
index 68a27819e3d..d9b216aeab8 100644
--- a/srcpkgs/python-pysocks/template
+++ b/srcpkgs/python-pysocks/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysocks'
 pkgname=python-pysocks
 version=1.6.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="PySocks-${version}"
 build_style=python-module

From e256b35c573b66ccaaffbf92ee92ecad250db3c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 430/872] python3-pysol_cards: rebuild for Python 3.8.

---
 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 e03d92fe077..a37429754a2 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.8.6
-revision=1
+revision=2
 wrksrc="pysol_cards-${version}"
 build_style=python3-module
 pycompile_module="pysol_cards"

From d29dab0ddee296649a1f4ace5c33678cc349d6ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 431/872] python-pysrt: rebuild for Python 3.8.

---
 srcpkgs/python-pysrt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysrt/template b/srcpkgs/python-pysrt/template
index 061435a52c7..7e154825bef 100644
--- a/srcpkgs/python-pysrt/template
+++ b/srcpkgs/python-pysrt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysrt'
 pkgname=python-pysrt
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysrt-${version}"
 build_style=python-module

From 4ba7eb802460f8e4e15f1389bebd64237c6f1aec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 432/872] python-pystache: rebuild for Python 3.8.

---
 srcpkgs/python-pystache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pystache/template b/srcpkgs/python-pystache/template
index 13f8b04aa88..c1a5bcd57d9 100644
--- a/srcpkgs/python-pystache/template
+++ b/srcpkgs/python-pystache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pystache'
 pkgname=python-pystache
 version=0.5.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pystache-${version}"
 build_style=python-module

From a6a1d8010f3909cc551f70485efc660b22168f46 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 433/872] python-pyte: rebuild for Python 3.8.

---
 srcpkgs/python-pyte/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyte/template b/srcpkgs/python-pyte/template
index 43b708adc66..76efbec91d1 100644
--- a/srcpkgs/python-pyte/template
+++ b/srcpkgs/python-pyte/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyte'
 pkgname=python-pyte
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyte-${version}"
 build_style=python-module

From 03679e357b0bdbd90ddbb6deba5693594ef9d592 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 434/872] python-pytest: rebuild for Python 3.8.

---
 srcpkgs/python-pytest/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest/template b/srcpkgs/python-pytest/template
index 6481f21e677..d5c246599c6 100644
--- a/srcpkgs/python-pytest/template
+++ b/srcpkgs/python-pytest/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest'
 pkgname=python-pytest
 version=3.7.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From d8ff8818fa4f90c63cf468feb2bba5d8b9dca026 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 435/872] python3-pytest-asyncio: rebuild for Python 3.8.

---
 srcpkgs/python3-pytest-asyncio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template
index bd104f99e2c..0c90d33a9e5 100644
--- a/srcpkgs/python3-pytest-asyncio/template
+++ b/srcpkgs/python3-pytest-asyncio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pytest-asyncio'
 pkgname=python3-pytest-asyncio
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytest-asyncio-${version}"
 build_style=python3-module

From 8bdff4905b1d2e832656b8dde532b566e516752c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 436/872] python-pytest-fixture-config: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-fixture-config/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-fixture-config/template b/srcpkgs/python-pytest-fixture-config/template
index cd3e38a592a..14255af8a35 100644
--- a/srcpkgs/python-pytest-fixture-config/template
+++ b/srcpkgs/python-pytest-fixture-config/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-fixture-config'
 pkgname=python-pytest-fixture-config
 version=1.3.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 89c93c6cebe4d9e57d61a6e1c0d1782514496073 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 437/872] python-pytest-mock: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-mock/template b/srcpkgs/python-pytest-mock/template
index f3dc85810b6..240e8773aaa 100644
--- a/srcpkgs/python-pytest-mock/template
+++ b/srcpkgs/python-pytest-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-mock'
 pkgname=python-pytest-mock
 version=1.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From e10ffc843814c368a7fd76e24e6afa8512ce198c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 438/872] python-pytz: rebuild for Python 3.8.

---
 srcpkgs/python-pytz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytz/template b/srcpkgs/python-pytz/template
index d6becf829a7..40f582962c8 100644
--- a/srcpkgs/python-pytz/template
+++ b/srcpkgs/python-pytz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytz'
 pkgname=python-pytz
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytz-${version}"
 build_style=python-module

From 562767d788b8e163bcde2dbd45de9eca2899bd90 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 439/872] python-pyudev: rebuild for Python 3.8.

---
 srcpkgs/python-pyudev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyudev/template b/srcpkgs/python-pyudev/template
index d059b7882a2..2ec53088636 100644
--- a/srcpkgs/python-pyudev/template
+++ b/srcpkgs/python-pyudev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyudev'
 pkgname=python-pyudev
 version=0.21.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyudev-${version}"
 build_style=python-module

From bb91a3d4616a0e9dbf1a34b271d62527a455f4ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 440/872] python3-pyx: rebuild for Python 3.8.

---
 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 87608c43428..89963bed89f 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.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="PyX-${version}"
 build_style=python3-module

From caa3ad83cde6d2b66687ae0ac2bb87dfd8eb100f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 441/872] python-pyzbar: rebuild for Python 3.8.

---
 srcpkgs/python-pyzbar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzbar/template b/srcpkgs/python-pyzbar/template
index 06ae37a5708..35b568eb4e6 100644
--- a/srcpkgs/python-pyzbar/template
+++ b/srcpkgs/python-pyzbar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzbar'
 pkgname=python-pyzbar
 version=0.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyzbar-${version}"
 build_style=python-module

From 83e0ba8fd12c3f07b4f3c2f8109ff0cd9a69353b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 442/872] python-pyzmq: rebuild for Python 3.8.

---
 srcpkgs/python-pyzmq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzmq/template b/srcpkgs/python-pyzmq/template
index 859aab5983d..27dbe29e516 100644
--- a/srcpkgs/python-pyzmq/template
+++ b/srcpkgs/python-pyzmq/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzmq'
 pkgname=python-pyzmq
 version=18.0.1
-revision=1
+revision=2
 wrksrc="pyzmq-${version}"
 build_style=python-module
 make_build_args="--zmq=${XBPS_CROSS_BASE}/usr"

From 2d71150f372801e322d8ee5f31b2bc67795fc3a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 443/872] python-qrcode: rebuild for Python 3.8.

---
 srcpkgs/python-qrcode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-qrcode/template b/srcpkgs/python-qrcode/template
index 9deb485855f..bf35c82757e 100644
--- a/srcpkgs/python-qrcode/template
+++ b/srcpkgs/python-qrcode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-qrcode'
 pkgname=python-qrcode
 version=6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="qrcode-${version}"
 build_style=python-module

From 55eeefa7bb378b38024ce5c57d228c5d2c24875f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 444/872] python-random2: rebuild for Python 3.8.

---
 srcpkgs/python-random2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-random2/template b/srcpkgs/python-random2/template
index 92f36fee139..2603cae3584 100644
--- a/srcpkgs/python-random2/template
+++ b/srcpkgs/python-random2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-random2'
 pkgname=python-random2
 version=1.0.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="random2-${version}"
 build_style=python-module

From 4aa520f994404a836b859a95bf53280ec662d779 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 445/872] python-rarfile: rebuild for Python 3.8.

---
 srcpkgs/python-rarfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rarfile/template b/srcpkgs/python-rarfile/template
index e0c597c1fb1..e3b6f3e2887 100644
--- a/srcpkgs/python-rarfile/template
+++ b/srcpkgs/python-rarfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rarfile'
 pkgname=python-rarfile
 version=3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="rarfile-${version}"
 build_style=python-module

From 77edc413dd0a2b7d7423d47946137d1db7452b91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 446/872] python-raven: rebuild for Python 3.8.

---
 srcpkgs/python-raven/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-raven/template b/srcpkgs/python-raven/template
index eec4e5f49b6..87382c21602 100644
--- a/srcpkgs/python-raven/template
+++ b/srcpkgs/python-raven/template
@@ -1,7 +1,7 @@
 # Template file for 'python-raven'
 pkgname=python-raven
 version=6.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="raven-${version}"
 build_style=python-module

From 0fd244bc29d49109b475295b68c11c496626bd43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 447/872] python-rdflib: rebuild for Python 3.8.

---
 srcpkgs/python-rdflib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rdflib/template b/srcpkgs/python-rdflib/template
index 0512abb0e5a..f676dedfb2f 100644
--- a/srcpkgs/python-rdflib/template
+++ b/srcpkgs/python-rdflib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rdflib'
 pkgname=python-rdflib
 version=4.2.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="rdflib-${version}"
 build_style=python-module

From 52682c54b0a7808306dcb6c0c9af5436d056d6a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 448/872] python-readability-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-readability-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-readability-lxml/template b/srcpkgs/python-readability-lxml/template
index ddf0602b730..19dadaa336f 100644
--- a/srcpkgs/python-readability-lxml/template
+++ b/srcpkgs/python-readability-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-readability-lxml'
 pkgname=python-readability-lxml
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="readability-lxml-${version}"
 build_style=python-module

From 5b239aeb5613465b0d414e14b8b37a83f65232fc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 449/872] python3-readlike: rebuild for Python 3.8.

---
 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 cbba969b076..43159962442 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=1
+revision=2
 archs=noarch
 wrksrc=readlike-${version}
 build_style=python3-module

From 10ff7da432e0f1563ed8c4feb921648f20e75246 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 450/872] python-rebulk: rebuild for Python 3.8.

---
 srcpkgs/python-rebulk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rebulk/template b/srcpkgs/python-rebulk/template
index 1cf6cf623c8..8f9c2621304 100644
--- a/srcpkgs/python-rebulk/template
+++ b/srcpkgs/python-rebulk/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rebulk'
 pkgname=python-rebulk
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rebulk-${version}"
 build_style=python-module

From b720f89f9fb6ecb79aa43ff92f151239049cb9c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 451/872] python-redis: rebuild for Python 3.8.

---
 srcpkgs/python-redis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-redis/template b/srcpkgs/python-redis/template
index f57c0d841b3..b7e773fde54 100644
--- a/srcpkgs/python-redis/template
+++ b/srcpkgs/python-redis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-redis'
 pkgname=python-redis
 version=2.10.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="redis-${version}"
 build_style=python-module

From 90d47f03a3f7a55f623c0b5019b0b58b6169aae5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 452/872] python-regex: rebuild for Python 3.8.

---
 srcpkgs/python-regex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-regex/template b/srcpkgs/python-regex/template
index 33e99b0127b..7a624db9477 100644
--- a/srcpkgs/python-regex/template
+++ b/srcpkgs/python-regex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-regex'
 pkgname=python-regex
 version=2019.08.19
-revision=1
+revision=2
 wrksrc="regex-${version}"
 build_style=python-module
 pycompile_module="_regex_core.py regex.py test_regex.py"

From e132fc559392a2f2a5268100218ef2061759c476 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 453/872] python-rencode: rebuild for Python 3.8.

---
 srcpkgs/python-rencode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rencode/template b/srcpkgs/python-rencode/template
index 7176038a60a..021e1d414b8 100644
--- a/srcpkgs/python-rencode/template
+++ b/srcpkgs/python-rencode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rencode'
 pkgname=python-rencode
 version=1.0.6
-revision=2
+revision=3
 wrksrc="rencode-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"

From 635743944483bd5fdbf4a909ef4874532f1035b9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 454/872] python-reportlab: rebuild for Python 3.8.

---
 srcpkgs/python-reportlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-reportlab/template b/srcpkgs/python-reportlab/template
index 7f153d65a2a..3915767b6d3 100644
--- a/srcpkgs/python-reportlab/template
+++ b/srcpkgs/python-reportlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-reportlab'
 pkgname=python-reportlab
 version=3.5.23
-revision=1
+revision=2
 wrksrc="reportlab-${version}"
 build_style=python-module
 pycompile_module="reportlab"

From 4a6d7b1e5e0d64a6834cc210da11806cbe217453 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 455/872] python-requests: rebuild for Python 3.8.

---
 srcpkgs/python-requests/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests/template b/srcpkgs/python-requests/template
index fc806b611e9..73d2d5945ef 100644
--- a/srcpkgs/python-requests/template
+++ b/srcpkgs/python-requests/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests'
 pkgname=python-requests
 version=2.22.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-${version}"
 build_style=python-module

From 61f6560b710773eab8296ef28bd943f5dc0d290d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 456/872] python-requests-mock: rebuild for Python 3.8.

---
 srcpkgs/python-requests-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-mock/template b/srcpkgs/python-requests-mock/template
index 5b89b5ed3b8..2d1410fcd1b 100644
--- a/srcpkgs/python-requests-mock/template
+++ b/srcpkgs/python-requests-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-mock'
 pkgname=python-requests-mock
 version=1.5.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="requests-mock-${version}"
 build_style=python-module

From f4f04d85ce7abb39fbbf306bc3c1dcfc467cdf14 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 457/872] python-requests-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-requests-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-oauthlib/template b/srcpkgs/python-requests-oauthlib/template
index b011ea17a36..8cd838090a7 100644
--- a/srcpkgs/python-requests-oauthlib/template
+++ b/srcpkgs/python-requests-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-oauthlib'
 pkgname=python-requests-oauthlib
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5853f21b57bde4c4e66293b132fba4fc03804518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 458/872] python-requests-toolbelt: rebuild for Python 3.8.

---
 srcpkgs/python-requests-toolbelt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-toolbelt/template b/srcpkgs/python-requests-toolbelt/template
index 3ba66a0a007..13a81586221 100644
--- a/srcpkgs/python-requests-toolbelt/template
+++ b/srcpkgs/python-requests-toolbelt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-toolbelt'
 pkgname=python-requests-toolbelt
 version=0.9.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 14171483829854051f0c8030562c1052094d78c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 459/872] python3-requests-unixsocket: rebuild for Python 3.8.

---
 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 ec9e1074566..fd389ec2d13 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-unixsocket-${version}"
 build_style=python3-module

From 9b589212b423bd7e2dfbb7ab7ef63c65b9dd07cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 460/872] python-rfc6555: rebuild for Python 3.8.

---
 srcpkgs/python-rfc6555/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rfc6555/template b/srcpkgs/python-rfc6555/template
index c3babc25b93..2522872cc32 100644
--- a/srcpkgs/python-rfc6555/template
+++ b/srcpkgs/python-rfc6555/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rfc6555'
 pkgname=python-rfc6555
 version=0.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rfc6555-${version}"
 build_style=python-module

From a399a96d8293a9387f5648001a03178d2550059b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 461/872] python-ripe-atlas-cousteau: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-cousteau/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-cousteau/template b/srcpkgs/python-ripe-atlas-cousteau/template
index ac16300fe3d..72f32a9da0d 100644
--- a/srcpkgs/python-ripe-atlas-cousteau/template
+++ b/srcpkgs/python-ripe-atlas-cousteau/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-cousteau'
 pkgname=python-ripe-atlas-cousteau
 version=1.4.2
-revision=1
+revision=2
 build_style=python-module
 archs=noarch
 pycompile_module="ripe/atlas/cousteau"

From 4c2ddc085f45f52b438013ad3d494f8f59859504 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 462/872] python-ripe-atlas-sagan: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-sagan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-sagan/template b/srcpkgs/python-ripe-atlas-sagan/template
index 60a9b883b93..22abb48af46 100644
--- a/srcpkgs/python-ripe-atlas-sagan/template
+++ b/srcpkgs/python-ripe-atlas-sagan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-sagan'
 pkgname=python-ripe-atlas-sagan
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ripe.atlas.sagan-${version}"
 build_style=python-module

From 10e7db3d51d8370e317d667edc372d0fcfd5bad9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 463/872] python-rsa: rebuild for Python 3.8.

---
 srcpkgs/python-rsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rsa/template b/srcpkgs/python-rsa/template
index a4ae59846ff..11e9bf2c60d 100644
--- a/srcpkgs/python-rsa/template
+++ b/srcpkgs/python-rsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rsa'
 pkgname=python-rsa
 version=4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a3bbda3918c5b4bb668860ba5bbd81f83f1a4925 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 464/872] python3-rsistent: rebuild for Python 3.8.

---
 srcpkgs/python3-rsistent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-rsistent/template b/srcpkgs/python3-rsistent/template
index 13019f472cd..7897e107b2b 100644
--- a/srcpkgs/python3-rsistent/template
+++ b/srcpkgs/python3-rsistent/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-rsistent'
 pkgname=python3-rsistent
 version=0.15.4
-revision=1
+revision=2
 wrksrc="pyrsistent-${version}"
 build_style=python3-module
 pycompile_module="pyrsistent"

From 7d4c9082b7051c6ce978ca21f34f138189c7f2d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 465/872] python3-rss2email: rebuild for Python 3.8.

---
 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 d07984d33d8..34e7d4e65a6 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.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="rss2email-${version}"
 build_style=python3-module

From a0a5e6df8a02d98f37c3c22c043adb325c8a8a62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 466/872] python-ruamel.yaml: rebuild for Python 3.8.

---
 srcpkgs/python-ruamel.yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ruamel.yaml/template b/srcpkgs/python-ruamel.yaml/template
index d86ddfc67c9..789f8a7acd2 100644
--- a/srcpkgs/python-ruamel.yaml/template
+++ b/srcpkgs/python-ruamel.yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ruamel.yaml'
 pkgname=python-ruamel.yaml
 version=0.15.92
-revision=1
+revision=2
 wrksrc="ruamel.yaml-${version}"
 build_style=python-module
 pycompile_module="ruamel/yaml"

From 6b579f083949bbd67a78d66ae983de1f36f03a82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 467/872] python3-s-tui: rebuild for Python 3.8.

---
 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 4c7db6ff3c9..85a945b1b09 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=0.8.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="s-tui-${version}"
 build_style=python3-module

From 5cc92799a690ba40dd26192e3f0182e07089683a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 468/872] python-s3transfer: rebuild for Python 3.8.

---
 srcpkgs/python-s3transfer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-s3transfer/template b/srcpkgs/python-s3transfer/template
index e306c3c3b1a..dd92eeff657 100644
--- a/srcpkgs/python-s3transfer/template
+++ b/srcpkgs/python-s3transfer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-s3transfer'
 pkgname=python-s3transfer
 version=0.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="s3transfer-${version}"
 build_style=python-module

From 2ec5386706a289e510b5b03e33cf74e0a23596a6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 469/872] python3-saml2: rebuild for Python 3.8.

---
 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 e94602a82ea..c0dabb5e9d0 100644
--- a/srcpkgs/python3-saml2/template
+++ b/srcpkgs/python3-saml2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-saml2'
 pkgname=python3-saml2
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysaml2-${version}"
 build_style=python3-module

From e856d28eb580f0af5442d11d24ffacdd7fade12b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 470/872] python-scandir: rebuild for Python 3.8.

---
 srcpkgs/python-scandir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scandir/template b/srcpkgs/python-scandir/template
index 774fac91b8f..b02fe6d0281 100644
--- a/srcpkgs/python-scandir/template
+++ b/srcpkgs/python-scandir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scandir'
 pkgname=python-scandir
 version=1.10.0
-revision=2
+revision=3
 wrksrc="scandir-${version}"
 build_style=python-module
 pycompile_module="scandir.py"

From 3b5e1eeb2ce0519b51592cebffc1bd89dce0f96c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 471/872] python3-scard: rebuild for Python 3.8.

---
 srcpkgs/python3-scard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scard/template b/srcpkgs/python3-scard/template
index 793f144a74b..279419ac3e3 100644
--- a/srcpkgs/python3-scard/template
+++ b/srcpkgs/python3-scard/template
@@ -2,7 +2,7 @@
 pkgname=python3-scard
 _pkgname=pyscard
 version=1.9.8
-revision=1
+revision=2
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module
 pycompile_module=smartcard

From f62ba61eaebce26c267e2d453d8e0ea6e005a285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 472/872] python3-scikit-learn: rebuild for Python 3.8.

---
 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 73799b9f420..8ac82167832 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.20.4
-revision=1
+revision=2
 wrksrc="scikit-learn-${version}"
 build_style=python3-module
 pycompile_module="sklearn"

From ccf4f6aa1bd0ba8aaf9499dcacb1320a77221004 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 473/872] python3-scipy: rebuild for Python 3.8.

---
 srcpkgs/python3-scipy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scipy/template b/srcpkgs/python3-scipy/template
index 291ac3734f1..2cef9ac33e1 100644
--- a/srcpkgs/python3-scipy/template
+++ b/srcpkgs/python3-scipy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-scipy'
 pkgname=python3-scipy
 version=1.3.1
-revision=1
+revision=2
 wrksrc="scipy-${version}"
 build_style=python3-module
 pycompile_module="scipy"

From 04cbe0c6403a4ecd9cda36e10bba5d06e472823d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 474/872] python-scour: rebuild for Python 3.8.

---
 srcpkgs/python-scour/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scour/template b/srcpkgs/python-scour/template
index b78cf37f057..0db5b157ce1 100644
--- a/srcpkgs/python-scour/template
+++ b/srcpkgs/python-scour/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scour'
 pkgname=python-scour
 version=0.37
-revision=1
+revision=2
 archs=noarch
 wrksrc="scour-${version}"
 build_style=python-module

From 0fd08871993ece59d562feb8472d05249ae1d76a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 475/872] python3-scruffy: rebuild for Python 3.8.

---
 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 e797b110f42..62a21a74eca 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="scruffy-${version}"
 build_style=python3-module

From 65cb259cf8f67f78fe484e4423fe0006aae17045 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 476/872] python-send2trash: rebuild for Python 3.8.

---
 srcpkgs/python-send2trash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-send2trash/template b/srcpkgs/python-send2trash/template
index 49c3a2b3d77..94f56545695 100644
--- a/srcpkgs/python-send2trash/template
+++ b/srcpkgs/python-send2trash/template
@@ -1,7 +1,7 @@
 # Template file for 'python-send2trash'
 pkgname=python-send2trash
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="send2trash-${version}"
 build_style=python-module

From 04a4413d706d49df8a415b9714091b0e4bb0fdfa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 477/872] python-serpent: rebuild for Python 3.8.

---
 srcpkgs/python-serpent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-serpent/template b/srcpkgs/python-serpent/template
index b60d390c1ab..a40f0d44515 100644
--- a/srcpkgs/python-serpent/template
+++ b/srcpkgs/python-serpent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-serpent'
 pkgname=python-serpent
 version=1.28
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38131f811a874463c71c55408ef6e629166a5b8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 478/872] python-service_identity: rebuild for Python 3.8.

---
 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 eae084c858f..e21a1520a75 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=1
+revision=2
 archs=noarch
 wrksrc="service_identity-${version}"
 build_style=python-module

From 9a538d41d8b848da9da43cd5d6f80428b7208be8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 479/872] setconf: rebuild for Python 3.8.

---
 srcpkgs/setconf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/setconf/template b/srcpkgs/setconf/template
index a3d22376a5b..1911c558c77 100644
--- a/srcpkgs/setconf/template
+++ b/srcpkgs/setconf/template
@@ -1,7 +1,7 @@
 # Template file for 'setconf'
 pkgname=setconf
 version=0.7.6
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="setconf.py"

From aacff3894cc42a49ab1becc06f64f23197302443 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 480/872] python-setproctitle: rebuild for Python 3.8.

---
 srcpkgs/python-setproctitle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setproctitle/template b/srcpkgs/python-setproctitle/template
index d0d41ae888d..c47e3a9db53 100644
--- a/srcpkgs/python-setproctitle/template
+++ b/srcpkgs/python-setproctitle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setproctitle'
 pkgname=python-setproctitle
 version=1.1.10
-revision=5
+revision=6
 wrksrc="setproctitle-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e2b8c2ac8d355cdb0f221b80ab39e2ef92beb3e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 481/872] python-setuptools: rebuild for Python 3.8.

---
 srcpkgs/python-setuptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setuptools/template b/srcpkgs/python-setuptools/template
index 382a9b45bcd..a172f8e8e09 100644
--- a/srcpkgs/python-setuptools/template
+++ b/srcpkgs/python-setuptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setuptools'
 pkgname=python-setuptools
 version=41.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python-module

From 5feb793ba33633318f41644f84b5ffd5428e2d4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 482/872] python-sh: rebuild for Python 3.8.

---
 srcpkgs/python-sh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sh/template b/srcpkgs/python-sh/template
index 1826986b25c..76985dc1f01 100644
--- a/srcpkgs/python-sh/template
+++ b/srcpkgs/python-sh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sh'
 pkgname=python-sh
 version=1.12.14
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From f0cfe151eea6fcf86d1196385a1ac0057a65ab48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 483/872] python-shapely: rebuild for Python 3.8.

---
 srcpkgs/python-shapely/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-shapely/template b/srcpkgs/python-shapely/template
index 25cc875a02c..114726838f9 100644
--- a/srcpkgs/python-shapely/template
+++ b/srcpkgs/python-shapely/template
@@ -1,7 +1,7 @@
 # Template file for 'python-shapely'
 pkgname=python-shapely
 version=1.7a1
-revision=2
+revision=3
 wrksrc="Shapely-${version}"
 build_style=python-module
 pycompile_module="shapely"

From 0908618383925caf43243de8097dbf6491149f8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 484/872] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index d552ce8432d..1f9c8043b46 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=4
+revision=5
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From 14af86f199e28c6eae170b10c1c662bd0184b73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 485/872] shiboken2: rebuild for Python 3.8.

---
 srcpkgs/shiboken2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken2/template b/srcpkgs/shiboken2/template
index 394d9ba4f94..a08edf3f2a0 100644
--- a/srcpkgs/shiboken2/template
+++ b/srcpkgs/shiboken2/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken2'
 pkgname=shiboken2
 version=5.11.2
-revision=2
+revision=3
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From 9ea535c3baf70c69a2bbe07d057742af1877d648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 486/872] python3-shodan: rebuild for Python 3.8.

---
 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 858a0b921f8..033b5a269ff 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.19.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="shodan-python-${version}"
 build_style=python3-module

From 76805ea236fc7f4ecd5948a492413602efff91e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 487/872] python3-signedjson: rebuild for Python 3.8.

---
 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 6f6fb339fd2..d8f9b06b22f 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-signedjson-${version}"
 build_style=python3-module

From 12e9d209470a13cdd9063e5544ffd00c5952138e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 488/872] python-simplebayes: rebuild for Python 3.8.

---
 srcpkgs/python-simplebayes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplebayes/template b/srcpkgs/python-simplebayes/template
index e76b94ad549..6c95222fa7e 100644
--- a/srcpkgs/python-simplebayes/template
+++ b/srcpkgs/python-simplebayes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplebayes'
 pkgname=python-simplebayes
 version=1.5.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="simplebayes-${version}"
 build_style=python-module

From d1ad830144a3e370bbac6e82affb1d06805dfdbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 489/872] python-simplegeneric: rebuild for Python 3.8.

---
 srcpkgs/python-simplegeneric/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplegeneric/template b/srcpkgs/python-simplegeneric/template
index 3dc4e1dda94..f352387fa1f 100644
--- a/srcpkgs/python-simplegeneric/template
+++ b/srcpkgs/python-simplegeneric/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplegeneric'
 pkgname=python-simplegeneric
 version=0.8.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="simplegeneric-${version}"
 build_style=python-module

From f6d990c1a1436b305f8b5af6f58c1f6430d96dc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 490/872] python-simplejson: rebuild for Python 3.8.

---
 srcpkgs/python-simplejson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplejson/template b/srcpkgs/python-simplejson/template
index b453ae952ba..1b8523d0d46 100644
--- a/srcpkgs/python-simplejson/template
+++ b/srcpkgs/python-simplejson/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplejson'
 pkgname=python-simplejson
 version=3.16.1
-revision=2
+revision=3
 wrksrc="simplejson-${version}"
 build_style=python-module
 pycompile_module="simplejson"

From b6f0878a2894ffdd731251a64a26cb1ddf40038a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 491/872] sip: rebuild for Python 3.8.

---
 srcpkgs/sip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sip/template b/srcpkgs/sip/template
index 9d09b823bb6..0e8a81000b1 100644
--- a/srcpkgs/sip/template
+++ b/srcpkgs/sip/template
@@ -1,7 +1,7 @@
 # Template file for 'sip'
 pkgname=sip
 version=4.19.18
-revision=1
+revision=2
 wrksrc="sip-${version}"
 hostmakedepends="python-devel python3-devel"
 makedepends="${hostmakedepends}"

From 5f24e47fb2b044495bbf0ee108d18220ad3b3bd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 492/872] python-six: rebuild for Python 3.8.

---
 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 c6d91f5ece9..a25323caa2a 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.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="six-${version}"
 build_style=python-module

From 09784cf129c5a66b731964fcda119a53dd9dbb7b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 493/872] python3-slixmpp: rebuild for Python 3.8.

---
 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 db367c3d0ab..cbbde6f394b 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.4.2
-revision=1
+revision=2
 wrksrc="slixmpp-${version}"
 build_style=python3-module
 pycompile_module="slixmpp"

From 5e4eb88ccd16957dc33f6923ae3a72151385e9ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 494/872] python3-slugify: rebuild for Python 3.8.

---
 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 44d37f2aed7..012bb98f063 100644
--- a/srcpkgs/python3-slugify/template
+++ b/srcpkgs/python3-slugify/template
@@ -3,7 +3,7 @@ pkgname=python3-slugify
 # Please don't update. Only required by Transifx-client,
 # doesn't work with newer versions
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-slugify-${version}"
 build_style=python3-module

From 3673d2d0b57421bb69e3ed7407630c26169fab96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 495/872] python-smbc: rebuild for Python 3.8.

---
 srcpkgs/python-smbc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smbc/template b/srcpkgs/python-smbc/template
index abc745f8982..6a280139a25 100644
--- a/srcpkgs/python-smbc/template
+++ b/srcpkgs/python-smbc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smbc'
 pkgname=python-smbc
 version=1.0.16
-revision=1
+revision=2
 wrksrc="pysmbc-${version}"
 build_style=python-module
 pycompile_module="smbc"

From 2e7eca88dff9a562419fb01bfafbdaf55a6c2bd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 496/872] python-smmap: rebuild for Python 3.8.

---
 srcpkgs/python-smmap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smmap/template b/srcpkgs/python-smmap/template
index 4aa0c37ff40..8c8ea952285 100644
--- a/srcpkgs/python-smmap/template
+++ b/srcpkgs/python-smmap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smmap'
 pkgname=python-smmap
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="smmap-${version}"
 build_style=python-module

From fd787d6092a892885c1a37ff836d919c3268746b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 497/872] python-snakeoil: rebuild for Python 3.8.

---
 srcpkgs/python-snakeoil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snakeoil/template b/srcpkgs/python-snakeoil/template
index 9c98461c555..79e964d9254 100644
--- a/srcpkgs/python-snakeoil/template
+++ b/srcpkgs/python-snakeoil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snakeoil'
 pkgname=python-snakeoil
 version=0.7.5
-revision=2
+revision=3
 wrksrc="snakeoil-${version}"
 build_style=python-module
 pycompile_module="snakeoil"

From c023c48bda41f4e9b16718923037b0abc4c9cc57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 498/872] python-snappy: rebuild for Python 3.8.

---
 srcpkgs/python-snappy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snappy/template b/srcpkgs/python-snappy/template
index ac386f64fae..b1870cbe681 100644
--- a/srcpkgs/python-snappy/template
+++ b/srcpkgs/python-snappy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snappy'
 pkgname=python-snappy
 version=0.5.4
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="snappy"
 hostmakedepends="python-setuptools python3-setuptools"

From cf3b5c203b490e3aa45e74d0cef8b0d0c4d9cbd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 499/872] python-snowballstemmer: rebuild for Python 3.8.

---
 srcpkgs/python-snowballstemmer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snowballstemmer/template b/srcpkgs/python-snowballstemmer/template
index 6c21632cffa..221478860e5 100644
--- a/srcpkgs/python-snowballstemmer/template
+++ b/srcpkgs/python-snowballstemmer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snowballstemmer'
 pkgname=python-snowballstemmer
 version=1.2.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="snowballstemmer-${version}"
 build_style=python-module

From ebbd083848ced4227417bedacb81db1e46b3b0d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 500/872] python-socketIO-client: rebuild for Python 3.8.

---
 srcpkgs/python-socketIO-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-socketIO-client/template b/srcpkgs/python-socketIO-client/template
index 32fdac4117d..9495d7cf40b 100644
--- a/srcpkgs/python-socketIO-client/template
+++ b/srcpkgs/python-socketIO-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-socketIO-client'
 pkgname=python-socketIO-client
 version=0.7.2
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="socketIO_client"

From bf4912c1b4d342f253c99ee2ff30408cc72ef150 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 501/872] python3-sortedcontainers: rebuild for Python 3.8.

---
 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 2b531ded9b6..41d87d4ebd0 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.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="sortedcontainers-${version}"
 build_style=python3-module

From d111b9221a51cf160ffadb598d8ab186bac3562f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 502/872] python-soupsieve: rebuild for Python 3.8.

---
 srcpkgs/python-soupsieve/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-soupsieve/template b/srcpkgs/python-soupsieve/template
index 586553ca759..63b65c5910f 100644
--- a/srcpkgs/python-soupsieve/template
+++ b/srcpkgs/python-soupsieve/template
@@ -1,7 +1,7 @@
 # Template file for 'python-soupsieve'
 pkgname=python-soupsieve
 version=1.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="soupsieve-${version}"
 build_style=python-module

From 505955408532e39107891c66bb40c986d8a5da3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 503/872] python3-spake2: rebuild for Python 3.8.

---
 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 ff83afed1d6..dc0cdced747 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=1
+revision=2
 archs=noarch
 wrksrc="python-spake2-${version}"
 build_style=python3-module

From ed28cd6c33b5a607891182e27d4edc4b33e42c75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 504/872] python-sphinx_rtd_theme: rebuild for Python 3.8.

---
 srcpkgs/python-sphinx_rtd_theme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinx_rtd_theme/template b/srcpkgs/python-sphinx_rtd_theme/template
index 90def1c9d1d..ebd4f13da8f 100644
--- a/srcpkgs/python-sphinx_rtd_theme/template
+++ b/srcpkgs/python-sphinx_rtd_theme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinx_rtd_theme'
 pkgname=python-sphinx_rtd_theme
 version=0.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinx_rtd_theme-${version}"
 build_style=python-module

From dc5c184f3eb8653ed7620ead5c8c28a67daed07d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 505/872] python-sphinxcontrib: rebuild for Python 3.8.

---
 srcpkgs/python-sphinxcontrib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib/template b/srcpkgs/python-sphinxcontrib/template
index ce3befc56d7..c6789cc77f5 100644
--- a/srcpkgs/python-sphinxcontrib/template
+++ b/srcpkgs/python-sphinxcontrib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib'
 pkgname=python-sphinxcontrib
 version=1.0
-revision=2
+revision=3
 archs=noarch
 create_wrksrc=yes
 pycompile_module="sphinxcontrib"

From 044129ada15eeb9695b554976702e8af049dcfd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 506/872] python-sphinxcontrib-websupport: rebuild for Python
 3.8.

---
 srcpkgs/python-sphinxcontrib-websupport/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib-websupport/template b/srcpkgs/python-sphinxcontrib-websupport/template
index 2236e50b25b..5387dec6519 100644
--- a/srcpkgs/python-sphinxcontrib-websupport/template
+++ b/srcpkgs/python-sphinxcontrib-websupport/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib-websupport'
 pkgname=python-sphinxcontrib-websupport
 version=1.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinxcontrib-websupport-${version}"
 build_style=python-module

From d4fb3b78447ca7349e0a94033b436c3e0caa5dc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 507/872] python-sqlalchemy-migrate: rebuild for Python 3.8.

---
 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 cfdf6166695..bb002660c0f 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=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 863a48d9543b2461c699350ad32bb2ae925e30c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 508/872] python-sqlparse: rebuild for Python 3.8.

---
 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 29a477db392..0f8c6f8ea2e 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=1
+revision=2
 archs=noarch
 wrksrc="sqlparse-${version}"
 build_style=python-module

From b477355bf26b723b8ab7cab61902be1e4aaee7bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 509/872] python-stem: rebuild for Python 3.8.

---
 srcpkgs/python-stem/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index e04ae0a848c..e16e79d84bb 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stem'
 pkgname=python-stem
 version=1.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stem-${version/b/}"
 build_style=python-module

From 82d435bdfc12ea7b4a3dabd17da5113470bffe26 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 510/872] python-stevedore: rebuild for Python 3.8.

---
 srcpkgs/python-stevedore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stevedore/template b/srcpkgs/python-stevedore/template
index 281538211af..4f781304d3f 100644
--- a/srcpkgs/python-stevedore/template
+++ b/srcpkgs/python-stevedore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stevedore'
 pkgname=python-stevedore
 version=1.30.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stevedore-${version}"
 build_style=python-module

From 2afe8f7a4ce71437484d9258f44ead34ae2f6647 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 511/872] python-stormssh: rebuild for Python 3.8.

---
 srcpkgs/python-stormssh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stormssh/template b/srcpkgs/python-stormssh/template
index 250e838e582..11f63f67bba 100644
--- a/srcpkgs/python-stormssh/template
+++ b/srcpkgs/python-stormssh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stormssh'
 pkgname=python-stormssh
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=storm-${version}
 build_style=python-module

From 754addaa6845cd505b5d744fa4e54a66dba9c4ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 512/872] python-subliminal: rebuild for Python 3.8.

---
 srcpkgs/python-subliminal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-subliminal/template b/srcpkgs/python-subliminal/template
index 035ca844880..216c11bb4c0 100644
--- a/srcpkgs/python-subliminal/template
+++ b/srcpkgs/python-subliminal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-subliminal'
 pkgname=python-subliminal
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="subliminal-${version}"
 build_style=python-module

From da488d7b04fb3b00046be4293c33ae0809dad8e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 513/872] python-sympy: rebuild for Python 3.8.

---
 srcpkgs/python-sympy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sympy/template b/srcpkgs/python-sympy/template
index 21d8cf69840..d41c8a392b0 100644
--- a/srcpkgs/python-sympy/template
+++ b/srcpkgs/python-sympy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sympy'
 pkgname=python-sympy
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="sympy-${version}"
 build_style=python-module

From 78857098e3058d7f0df7ece8be24b84196d16921 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 514/872] python-tables: rebuild for Python 3.8.

---
 srcpkgs/python-tables/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tables/template b/srcpkgs/python-tables/template
index 644ae3d1a35..5f61fe8fb88 100644
--- a/srcpkgs/python-tables/template
+++ b/srcpkgs/python-tables/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tables'
 pkgname=python-tables
 version=3.5.2
-revision=1
+revision=2
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="tables"

From 45955cd565bccabbc642dce6684af05ad7651ba5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 515/872] python3-tabulate: rebuild for Python 3.8.

---
 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 19b61edd88c..6f142077300 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="tabulate-${version}"
 build_style=python3-module

From 285f369cadcf0d14f66db8045bb3fb979e69937f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 516/872] python-tempita: rebuild for Python 3.8.

---
 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 9e7123fbd9d..c1c75ee1cac 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=3
+revision=4
 archs=noarch
 wrksrc="Tempita-${version}"
 build_style=python-module

From efa04f85df83993e48813e00587c05cd6c722387 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 517/872] python-tempora: rebuild for Python 3.8.

---
 srcpkgs/python-tempora/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tempora/template b/srcpkgs/python-tempora/template
index fa1cbd4fbd1..866d163f367 100644
--- a/srcpkgs/python-tempora/template
+++ b/srcpkgs/python-tempora/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tempora'
 pkgname=python-tempora
 version=1.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tempora-${version}"
 build_style=python-module

From 783b09196fc04d62a7e7a220ffffc941acedfeeb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 518/872] python-termcolor: rebuild for Python 3.8.

---
 srcpkgs/python-termcolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-termcolor/template b/srcpkgs/python-termcolor/template
index 877e5e59d9b..73c18fc79eb 100644
--- a/srcpkgs/python-termcolor/template
+++ b/srcpkgs/python-termcolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-termcolor'
 pkgname=python-termcolor
 version=1.1.0
-revision=5
+revision=6
 archs=noarch
 wrksrc="termcolor-${version}"
 build_style=python-module

From 469ef1b462bbb9fb2d5d97b38e357b662f5009d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 519/872] python-terminado: rebuild for Python 3.8.

---
 srcpkgs/python-terminado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-terminado/template b/srcpkgs/python-terminado/template
index cdfe6163991..d649364d88d 100644
--- a/srcpkgs/python-terminado/template
+++ b/srcpkgs/python-terminado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-terminado'
 pkgname=python-terminado
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="terminado-${version}"
 build_style=python-module

From ced3b80cce126ab9d23dd2a4bc9505e23b5a4888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 520/872] python3-terminaltables: rebuild for Python 3.8.

---
 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 60ada7ffcb6..4f781eab76d 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=1
+revision=2
 archs=noarch
 wrksrc="terminaltables-${version}"
 build_style=python3-module

From 7a90fec1dbe0347ede0762e747d8edf378bd497c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 521/872] python-testpath: rebuild for Python 3.8.

---
 srcpkgs/python-testpath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-testpath/template b/srcpkgs/python-testpath/template
index bac7270fd40..abfc59900c0 100644
--- a/srcpkgs/python-testpath/template
+++ b/srcpkgs/python-testpath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-testpath'
 pkgname=python-testpath
 version=0.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="testpath-${version}"
 build_style=python-module

From f8761f2f7116f9b2691807d35d9836a34fbbbf32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 522/872] python3-text-unidecode: rebuild for Python 3.8.

---
 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 77163d9e0b6..b3b5aa95575 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="text-unidecode-${version}"
 build_style=python3-module

From 2d2f99664b0644e22e4876b9d54048008a392289 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 523/872] python-texttable: rebuild for Python 3.8.

---
 srcpkgs/python-texttable/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-texttable/template b/srcpkgs/python-texttable/template
index a9c5ec66db1..24bac87af6a 100644
--- a/srcpkgs/python-texttable/template
+++ b/srcpkgs/python-texttable/template
@@ -1,7 +1,7 @@
 # Template file for 'python-texttable'
 pkgname=python-texttable
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="texttable-${version}"
 build_style=python-module

From c671c144e8fe81895f6995347d19725f72165b25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 524/872] python3-tinycss: rebuild for Python 3.8.

---
 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 91fda6f808d..3b4717c234e 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=1
+revision=2
 archs=noarch
 wrksrc=tinycss-${version}
 build_style=python3-module

From 9aa3e8105128dc5e3b86a83bd0ae76e7d9c9cf86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 525/872] python-tmuxp: rebuild for Python 3.8.

---
 srcpkgs/python-tmuxp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tmuxp/template b/srcpkgs/python-tmuxp/template
index 00c86730cbe..45b4a9772b2 100644
--- a/srcpkgs/python-tmuxp/template
+++ b/srcpkgs/python-tmuxp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tmuxp'
 pkgname=python-tmuxp
 version=1.5.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="tmuxp-${version}"
 build_style=python-module

From 995158f34c29d704b44eae2b32df801023781096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 526/872] python-toml: rebuild for Python 3.8.

---
 srcpkgs/python-toml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-toml/template b/srcpkgs/python-toml/template
index 0eee1b0b2c3..2fd6eaa0cea 100644
--- a/srcpkgs/python-toml/template
+++ b/srcpkgs/python-toml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-toml'
 pkgname=python-toml
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="toml-${version}"
 build_style=python-module

From 6270afd962719dd0e9b876b40ab7bf9be9936cf5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 527/872] python-tornado: rebuild for Python 3.8.

---
 srcpkgs/python-tornado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tornado/template b/srcpkgs/python-tornado/template
index 7e5700177f5..bd558d251f5 100644
--- a/srcpkgs/python-tornado/template
+++ b/srcpkgs/python-tornado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tornado'
 pkgname=python-tornado
 version=5.1.1
-revision=1
+revision=2
 wrksrc="tornado-${version}"
 build_style=python-module
 pycompile_module="tornado"

From cd9e416288ae101465f91c75453326fdead7d148 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 528/872] python-tqdm: rebuild for Python 3.8.

---
 srcpkgs/python-tqdm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tqdm/template b/srcpkgs/python-tqdm/template
index 69369bfd6b9..ef1f07127ad 100644
--- a/srcpkgs/python-tqdm/template
+++ b/srcpkgs/python-tqdm/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tqdm'
 pkgname=python-tqdm
 version=4.36.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tqdm-${version}"
 build_style=python-module

From 4ef8d34c3ab05cf43591d92220fc001007644a6d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 529/872] python-traitlets: rebuild for Python 3.8.

---
 srcpkgs/python-traitlets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-traitlets/template b/srcpkgs/python-traitlets/template
index d2d1b85edb6..797dd0268da 100644
--- a/srcpkgs/python-traitlets/template
+++ b/srcpkgs/python-traitlets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-traitlets'
 pkgname=python-traitlets
 version=4.3.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="traitlets-${version}"
 build_style=python-module

From f41edcb16535bb92b415439644ee01a61da14478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 530/872] python3-transifex-client: rebuild for Python 3.8.

---
 srcpkgs/python3-transifex-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-transifex-client/template b/srcpkgs/python3-transifex-client/template
index 77ca15313e0..5ea767b5a7d 100644
--- a/srcpkgs/python3-transifex-client/template
+++ b/srcpkgs/python3-transifex-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-transifex-client'
 pkgname=python3-transifex-client
 version=0.13.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="transifex-client-${version}"
 build_style=python3-module

From d2c27a7fe61e206ccbf655146feec32e4b13cfc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 531/872] python3-treq: rebuild for Python 3.8.

---
 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 8f210d13489..e46e1e7e7a5 100644
--- a/srcpkgs/python3-treq/template
+++ b/srcpkgs/python3-treq/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-treq'
 pkgname=python3-treq
 version=18.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="treq-${version}"
 build_style=python3-module

From 26b5427ba0e26d8712ebe081a774396e3ea39d76 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 532/872] python-ttystatus: rebuild for Python 3.8.

---
 srcpkgs/python-ttystatus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ttystatus/template b/srcpkgs/python-ttystatus/template
index 9fbefad3461..43e87ddcdf0 100644
--- a/srcpkgs/python-ttystatus/template
+++ b/srcpkgs/python-ttystatus/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ttystatus'
 pkgname=python-ttystatus
 version=0.38
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="ttystatus"

From dbf349fac2110dc33ad6d676748e46240dec1fbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 533/872] python-twitter: rebuild for Python 3.8.

---
 srcpkgs/python-twitter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-twitter/template b/srcpkgs/python-twitter/template
index c299b28dedf..e5e7194078a 100644
--- a/srcpkgs/python-twitter/template
+++ b/srcpkgs/python-twitter/template
@@ -1,7 +1,7 @@
 # Template file for 'python-twitter'
 pkgname=python-twitter
 version=3.5
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="twitter"

From 58eab12e88f689c694ef474e09d2266b77b5bcc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 534/872] python3-txacme: rebuild for Python 3.8.

---
 srcpkgs/python3-txacme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-txacme/template b/srcpkgs/python3-txacme/template
index e6becf593e7..c678addda4d 100644
--- a/srcpkgs/python3-txacme/template
+++ b/srcpkgs/python3-txacme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txacme'
 pkgname=python3-txacme
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="txacme-${version}"
 build_style=python3-module

From a1a3464258c255e0b73cbdb47e0337d3b8af473e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 535/872] python3-txaio: rebuild for Python 3.8.

---
 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 fa13338cd30..8163f5c90fd 100644
--- a/srcpkgs/python3-txaio/template
+++ b/srcpkgs/python3-txaio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txaio'
 pkgname=python3-txaio
 version=18.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="txaio-${version}"
 build_style=python3-module

From 66d08c9f4945499ccd01b127d7ec1f8cfd468dd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 536/872] python3-txtorcon: rebuild for Python 3.8.

---
 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 3018a65e457..a10ab59c582 100644
--- a/srcpkgs/python3-txtorcon/template
+++ b/srcpkgs/python3-txtorcon/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txtorcon'
 pkgname=python3-txtorcon
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="txtorcon-${version}"
 build_style=python3-module

From f3bf9db3f8b699c67eebc7fa0278fca9de892d75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 537/872] python3-typed-ast: update to 1.4.0.

---
 srcpkgs/python3-typed-ast/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-typed-ast/template b/srcpkgs/python3-typed-ast/template
index ec5b5b9df11..b38f0fe065c 100644
--- a/srcpkgs/python3-typed-ast/template
+++ b/srcpkgs/python3-typed-ast/template
@@ -1,8 +1,8 @@
 # Template file for 'python3-typed-ast'
 pkgname=python3-typed-ast
-version=1.3.4
+version=1.4.0
 revision=1
-wrksrc="typed-ast-${version}"
+wrksrc="typed_ast-${version}"
 build_style=python3-module
 pycompile_module="typed_ast"
 hostmakedepends="python3-devel python3-setuptools"
@@ -11,6 +11,6 @@ short_desc="Ast module with type comment support"
 maintainer="whoami <whoami@systemli.org>"
 license="Apache-2.0"
 homepage="https://github.com/python/typed_ast"
-distfiles="${PYPI_SITE}/t/typed-ast/typed-ast-${version}.tar.gz"
-checksum=68c362848d9fb71d3c3e5f43c09974a0ae319144634e7a47db62f0f2a54a7fa7
+distfiles="${PYPI_SITE}/t/typed-ast/typed_ast-${version}.tar.gz"
+checksum=66480f95b8167c9c5c5c87f32cf437d585937970f3fc24386f313a4c97b44e34
 nocross="https://travis-ci.org/void-linux/void-packages/jobs/509366923#L1009"

From d977434aa35e2c6bc03c5db7514f5409eb21a2a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 538/872] python3-typing_extensions: rebuild for Python 3.8.

---
 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 ab96df4eb2d..605af46216d 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=3.6.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module

From d1368b489e196a385edf9b15df4da773505f8a5e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 539/872] python-tzlocal: rebuild for Python 3.8.

---
 srcpkgs/python-tzlocal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tzlocal/template b/srcpkgs/python-tzlocal/template
index 396eada3982..684d2a21b40 100644
--- a/srcpkgs/python-tzlocal/template
+++ b/srcpkgs/python-tzlocal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tzlocal'
 pkgname=python-tzlocal
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tzlocal-${version}"
 build_style=python-module

From 0ec72579de99edead05daf85e7cac5e0e2ab641b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 540/872] python-unittest-mixins: rebuild for Python 3.8.

---
 srcpkgs/python-unittest-mixins/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-unittest-mixins/template b/srcpkgs/python-unittest-mixins/template
index 6f7c7204112..2ff5c497523 100644
--- a/srcpkgs/python-unittest-mixins/template
+++ b/srcpkgs/python-unittest-mixins/template
@@ -1,7 +1,7 @@
 # Template file for 'python-unittest-mixins'
 pkgname=python-unittest-mixins
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From a5e3289470d7f0e25e09237aa9463d28817818c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 541/872] python3-unpaddedbase64: rebuild for Python 3.8.

---
 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 37df2c1d642..06a47db3b64 100644
--- a/srcpkgs/python3-unpaddedbase64/template
+++ b/srcpkgs/python3-unpaddedbase64/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-unpaddedbase64'
 pkgname=python3-unpaddedbase64
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-unpaddedbase64-${version}"
 build_style=python3-module

From 13043751d10b741546f419a7e9089a5b252fd5c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 542/872] python-urbandict: rebuild for Python 3.8.

---
 srcpkgs/python-urbandict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urbandict/template b/srcpkgs/python-urbandict/template
index ff09e963fa7..ed359c744be 100644
--- a/srcpkgs/python-urbandict/template
+++ b/srcpkgs/python-urbandict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urbandict'
 pkgname=python-urbandict
 version=0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="urbandict-${version}"
 build_style=python-module

From a15bf0893e7a65a070751099b3ddca9172b49912 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 543/872] python-uritemplate: rebuild for Python 3.8.

---
 srcpkgs/python-uritemplate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-uritemplate/template b/srcpkgs/python-uritemplate/template
index 7a530fee03b..cdcda419efe 100644
--- a/srcpkgs/python-uritemplate/template
+++ b/srcpkgs/python-uritemplate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-uritemplate'
 pkgname=python-uritemplate
 version=3.0.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 43c97a015ea83b2b0934ea864a84b324ec83f31a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 544/872] python3-urlgrabber: rebuild for Python 3.8.

---
 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 087087d5ed1..eef67c8e13c 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=1
+revision=2
 archs=noarch
 wrksrc="urlgrabber-${version}"
 build_style=python3-module

From 016dbcff2bb0c1709814f4da4fe214d551e3d4cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 545/872] python-urllib3: rebuild for Python 3.8.

---
 srcpkgs/python-urllib3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urllib3/template b/srcpkgs/python-urllib3/template
index 8056518c9c1..1ff21f7555d 100644
--- a/srcpkgs/python-urllib3/template
+++ b/srcpkgs/python-urllib3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urllib3'
 pkgname=python-urllib3
 version=1.25.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="urllib3-${version}"
 build_style=python-module

From 9629da352be38a0f14bcb680c7fc05dd1d1167f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 546/872] python-urwid: rebuild for Python 3.8.

---
 srcpkgs/python-urwid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwid/template b/srcpkgs/python-urwid/template
index ae6722b1135..7adf8b76b96 100644
--- a/srcpkgs/python-urwid/template
+++ b/srcpkgs/python-urwid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwid'
 pkgname=python-urwid
 version=2.0.1
-revision=2
+revision=3
 wrksrc="urwid-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"

From 4be978b1173afce93e7ff39f6e577059f4c7dd4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 547/872] python-urwidtrees: rebuild for Python 3.8.

---
 srcpkgs/python-urwidtrees/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwidtrees/template b/srcpkgs/python-urwidtrees/template
index be0e906addf..62d214489e2 100644
--- a/srcpkgs/python-urwidtrees/template
+++ b/srcpkgs/python-urwidtrees/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwidtrees'
 pkgname=python-urwidtrees
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="urwidtrees-${version}"
 build_style=python-module

From c9f3ad0ed793593060952aa365e888244dfd07e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 548/872] python3-usb: rebuild for Python 3.8.

---
 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 a081ee5ba76..d26c24df669 100644
--- a/srcpkgs/python3-usb/template
+++ b/srcpkgs/python3-usb/template
@@ -2,7 +2,7 @@
 pkgname=python3-usb
 _pkgname=pyusb
 version=1.0.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From 454ef49754696a81de599e7fa6cf9cab31ccbc31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 549/872] python-utils: rebuild for Python 3.8.

---
 srcpkgs/python-utils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-utils/template b/srcpkgs/python-utils/template
index e881e70c0f0..6745df121a6 100644
--- a/srcpkgs/python-utils/template
+++ b/srcpkgs/python-utils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-utils'
 pkgname=python-utils
 version=2.3.0
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 wrksrc="python-utils-${version}"

From eef5c75b93453defdcb8def5b34c20f20cda0fc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 550/872] python3-validators: rebuild for Python 3.8.

---
 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 29b9fc74c30..6d9da94c4bb 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.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="validators-${version}"
 build_style=python3-module

From 53ce0ff21de84f26405d0314002bb11e85903128 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 551/872] python3-vdf: rebuild for Python 3.8.

---
 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 44c635ecdd6..88bd521beaa 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.2
-revision=1
+revision=2
 wrksrc=vdf-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From f720d6ed8267fa4b27a7ce83dd3a265a18cd13b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 552/872] python-vint: rebuild for Python 3.8.

---
 srcpkgs/python-vint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vint/template b/srcpkgs/python-vint/template
index 4ca693f7eb2..62c663bf18e 100644
--- a/srcpkgs/python-vint/template
+++ b/srcpkgs/python-vint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vint'
 pkgname=python-vint
 version=0.3.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="vim-vint-${version}"
 build_style=python-module

From 573eadbcb861065b712050cf6e7fd200c33a73b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 553/872] python-virtualenv: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv/template b/srcpkgs/python-virtualenv/template
index 1f9166e79a2..cdeda28c53e 100644
--- a/srcpkgs/python-virtualenv/template
+++ b/srcpkgs/python-virtualenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv'
 pkgname=python-virtualenv
 version=16.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="virtualenv-${version}"
 build_style=python-module

From 25eda2949787b488dfc7cfc6512d02a4971d4f96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 554/872] python-virtualenv-clone: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv-clone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv-clone/template b/srcpkgs/python-virtualenv-clone/template
index 3c9f601bc6e..273b9ddf6d3 100644
--- a/srcpkgs/python-virtualenv-clone/template
+++ b/srcpkgs/python-virtualenv-clone/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv-clone'
 pkgname=python-virtualenv-clone
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5a922ea064a496fb01ff970e45a43ef51561b373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 555/872] python3-virustotal-api: rebuild for Python 3.8.

---
 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 2bc6592c91f..fc362c03b39 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=1
+revision=2
 archs=noarch
 wrksrc="virustotal-api-${version}"
 build_style=python3-module

From 65deaff01a3a9a5d82641fe121fdb2964b75346f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 556/872] python-vispy: rebuild for Python 3.8.

---
 srcpkgs/python-vispy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vispy/template b/srcpkgs/python-vispy/template
index b757e5a271f..624ade6f12b 100644
--- a/srcpkgs/python-vispy/template
+++ b/srcpkgs/python-vispy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vispy'
 pkgname=python-vispy
 version=0.6.1
-revision=1
+revision=2
 wrksrc="vispy-${version}"
 build_style=python-module
 pycompile_module="vispy"

From 5e47d846dedfdbef61bd10a33928ce13b600c648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 557/872] python-vobject: rebuild for Python 3.8.

---
 srcpkgs/python-vobject/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vobject/template b/srcpkgs/python-vobject/template
index 54f575aa1a1..2c1c215527c 100644
--- a/srcpkgs/python-vobject/template
+++ b/srcpkgs/python-vobject/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vobject'
 pkgname=python-vobject
 version=0.9.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="vobject-${version}"
 build_style=python-module

From 8125ffd3d4822ca6bf81508ed8b859e079cd9437 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 558/872] python-voluptuous: rebuild for Python 3.8.

---
 srcpkgs/python-voluptuous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-voluptuous/template b/srcpkgs/python-voluptuous/template
index fd44ae2e324..1dd5de27491 100644
--- a/srcpkgs/python-voluptuous/template
+++ b/srcpkgs/python-voluptuous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-voluptuous'
 pkgname=python-voluptuous
 version=0.11.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="voluptuous-${version}"
 build_style=python-module

From 608126ee8043f8d45a8e56608f99e0df6cc2ee9e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 559/872] python-watchdog: rebuild for Python 3.8.

---
 srcpkgs/python-watchdog/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchdog/template b/srcpkgs/python-watchdog/template
index f6027c3b5ca..2eea6397f00 100644
--- a/srcpkgs/python-watchdog/template
+++ b/srcpkgs/python-watchdog/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchdog'
 pkgname=python-watchdog
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="watchdog-${version}"
 build_style=python-module

From a54fc09b58f905a0ed5cd5892db67b7c4ea6ae9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 560/872] python-watchman: rebuild for Python 3.8.

---
 srcpkgs/python-watchman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchman/template b/srcpkgs/python-watchman/template
index 4c41c275ca2..97400668d64 100644
--- a/srcpkgs/python-watchman/template
+++ b/srcpkgs/python-watchman/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchman'
 pkgname=python-watchman
 version=1.4.1
-revision=2
+revision=3
 wrksrc="pywatchman-${version}"
 build_style=python-module
 pycompile_module="pywatchman"

From 4dd6084e6c30a25fb4ff3c44bf2c751eaab07715 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 561/872] python-wcwidth: rebuild for Python 3.8.

---
 srcpkgs/python-wcwidth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wcwidth/template b/srcpkgs/python-wcwidth/template
index 34bc22cbcb6..8ec6d17450c 100644
--- a/srcpkgs/python-wcwidth/template
+++ b/srcpkgs/python-wcwidth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wcwidth'
 pkgname=python-wcwidth
 version=0.1.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="wcwidth-${version}"
 build_style=python-module

From cafaf5868e58cb26c2cdd29d0d1b52f9cf1e31ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 562/872] python-webassets: rebuild for Python 3.8.

---
 srcpkgs/python-webassets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webassets/template b/srcpkgs/python-webassets/template
index 3ad5475bd17..789be9684f7 100644
--- a/srcpkgs/python-webassets/template
+++ b/srcpkgs/python-webassets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webassets'
 pkgname=python-webassets
 version=0.12.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 88d8fa4eb1ca72857d5a1cab8a4f7495a9af1595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 563/872] python-webencodings: rebuild for Python 3.8.

---
 srcpkgs/python-webencodings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webencodings/template b/srcpkgs/python-webencodings/template
index 5a05af10835..f047a9e3c52 100644
--- a/srcpkgs/python-webencodings/template
+++ b/srcpkgs/python-webencodings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webencodings'
 pkgname=python-webencodings
 version=0.5.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="webencodings-${version}"
 build_style=python-module

From 81c9d07c0e756cc87a6cd2c444c0b2f0987463da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 564/872] python-websocket-client: rebuild for Python 3.8.

---
 srcpkgs/python-websocket-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-websocket-client/template b/srcpkgs/python-websocket-client/template
index 8aa276655cb..3df8ab42b36 100644
--- a/srcpkgs/python-websocket-client/template
+++ b/srcpkgs/python-websocket-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-websocket-client'
 pkgname=python-websocket-client
 version=0.56.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="websocket_client-${version}"
 build_style=python-module

From 97fc927913b3f2682b7ddf73982008e9fdc1e42d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 565/872] python-wheel: rebuild for Python 3.8.

---
 srcpkgs/python-wheel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wheel/template b/srcpkgs/python-wheel/template
index 11c50bd65e6..11aeaf42316 100644
--- a/srcpkgs/python-wheel/template
+++ b/srcpkgs/python-wheel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wheel'
 pkgname=python-wheel
 version=0.32.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="wheel-${version}"
 build_style=python-module

From 861d20f2f112cd829f2f06f746680e2c034a812f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 566/872] python-wikipedia: rebuild for Python 3.8.

---
 srcpkgs/python-wikipedia/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wikipedia/template b/srcpkgs/python-wikipedia/template
index e6ebf65f7c2..f8a69755b74 100644
--- a/srcpkgs/python-wikipedia/template
+++ b/srcpkgs/python-wikipedia/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wikipedia'
 pkgname=python-wikipedia
 version=1.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="wikipedia-${version}"
 build_style=python-module

From c58e9b08de69bd19aa3bcf91ec42d1b626a2a6bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 567/872] python-wrapt: rebuild for Python 3.8.

---
 srcpkgs/python-wrapt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wrapt/template b/srcpkgs/python-wrapt/template
index a3a237aa08d..c2d2850bf5a 100644
--- a/srcpkgs/python-wrapt/template
+++ b/srcpkgs/python-wrapt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wrapt'
 pkgname=python-wrapt
 version=1.10.11
-revision=3
+revision=4
 wrksrc="wrapt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From f65cbaf6b92acb78d54d3b498924285bce64fb66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 568/872] python-wsproto: rebuild for Python 3.8.

---
 srcpkgs/python-wsproto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wsproto/template b/srcpkgs/python-wsproto/template
index 88b08f796d4..a93a799be0a 100644
--- a/srcpkgs/python-wsproto/template
+++ b/srcpkgs/python-wsproto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wsproto'
 pkgname=python-wsproto
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="wsproto-${version}"
 build_style=python-module

From 1b60fb796f8ac377a2e31dc0503df215c27fc59e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 569/872] python-xapp: rebuild for Python 3.8.

---
 srcpkgs/python-xapp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xapp/template b/srcpkgs/python-xapp/template
index 9b6938113f2..798041eb946 100644
--- a/srcpkgs/python-xapp/template
+++ b/srcpkgs/python-xapp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xapp'
 pkgname=python-xapp
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="xapp"

From 415bec8de0abe2772c407df9db650bd06ba122ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 570/872] python-xdg: rebuild for Python 3.8.

---
 srcpkgs/python-xdg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xdg/template b/srcpkgs/python-xdg/template
index afa6c180043..4e819c8bec7 100644
--- a/srcpkgs/python-xdg/template
+++ b/srcpkgs/python-xdg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xdg'
 pkgname=python-xdg
 version=0.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyxdg-${version}"
 build_style=python-module

From 4518feeb499caa6631ef29ead0439c5bcc67a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 571/872] python-xlib: rebuild for Python 3.8.

---
 srcpkgs/python-xlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xlib/template b/srcpkgs/python-xlib/template
index 1f97c4117d4..e67d1d82e73 100644
--- a/srcpkgs/python-xlib/template
+++ b/srcpkgs/python-xlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xlib'
 pkgname=python-xlib
 version=0.25
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="Xlib"

From 1cef928049b5216468e701acce714fc14d79694f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 572/872] python-xmldiff: rebuild for Python 3.8.

---
 srcpkgs/python-xmldiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmldiff/template b/srcpkgs/python-xmldiff/template
index a0a8004ea7b..4f3cc2d27b7 100644
--- a/srcpkgs/python-xmldiff/template
+++ b/srcpkgs/python-xmldiff/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmldiff'
 pkgname=python-xmldiff
 version=2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmldiff-${version}"
 build_style=python-module

From cefcbea2ec7904b0c1ad16ec32963bf430b27c4a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 573/872] python-xmltodict: rebuild for Python 3.8.

---
 srcpkgs/python-xmltodict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmltodict/template b/srcpkgs/python-xmltodict/template
index a48e6d46aa6..b3d7ef042e8 100644
--- a/srcpkgs/python-xmltodict/template
+++ b/srcpkgs/python-xmltodict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmltodict'
 pkgname=python-xmltodict
 version=0.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmltodict-${version}"
 build_style=python-module

From 889d5fe9fe9f1830bec336ac52bd8bd32f47f0a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 574/872] python-yaml: rebuild for Python 3.8.

---
 srcpkgs/python-yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yaml/template b/srcpkgs/python-yaml/template
index 8a7caf1d99e..e3bad0ae59b 100644
--- a/srcpkgs/python-yaml/template
+++ b/srcpkgs/python-yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yaml'
 pkgname=python-yaml
 version=5.1.2
-revision=1
+revision=2
 wrksrc="PyYAML-${version}"
 build_style=python-module
 pycompile_module="yaml"

From 1b3e89ca272ae28a62064bf83eaff84332307682 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 575/872] python-yamllint: rebuild for Python 3.8.

---
 srcpkgs/python-yamllint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yamllint/template b/srcpkgs/python-yamllint/template
index 1a05e1043bb..d0b51ba637a 100644
--- a/srcpkgs/python-yamllint/template
+++ b/srcpkgs/python-yamllint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yamllint'
 pkgname=python-yamllint
 version=1.15.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="yamllint-${version}"
 build_style=python-module

From b233bcb50542e39ba02899ef3d1b833e385204e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 576/872] python3-yarl: rebuild for Python 3.8.

---
 srcpkgs/python3-yarl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-yarl/template b/srcpkgs/python3-yarl/template
index 222f176cfcf..ecb79a3cc9c 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.3.0
-revision=2
+revision=3
 wrksrc="yarl-${version}"
 build_style=python3-module
 pycompile_module="yarl"

From 484c2559f18644c63342db467c703e2e998e89b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 577/872] python-zc.lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-zc.lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zc.lockfile/template b/srcpkgs/python-zc.lockfile/template
index cb0bee99506..b77071af04f 100644
--- a/srcpkgs/python-zc.lockfile/template
+++ b/srcpkgs/python-zc.lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zc.lockfile'
 pkgname=python-zc.lockfile
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 364e398c8dd7e3dd141ceb1c22626ecf2a5b9b32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 578/872] python3-zeroconf: rebuild for Python 3.8.

---
 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 497a8bc6b69..dda37bd3dc4 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.23.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-zeroconf-${version}"
 build_style=python3-module

From 22b5d6236d8f0ff0050135b2e77eca608519b1ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 579/872] python3-zipp: rebuild for Python 3.8.

---
 srcpkgs/python3-zipp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-zipp/template b/srcpkgs/python3-zipp/template
index 8445c10825c..ba682915beb 100644
--- a/srcpkgs/python3-zipp/template
+++ b/srcpkgs/python3-zipp/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-zipp'
 pkgname=python3-zipp
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="zipp-${version}"
 build_style=python3-module

From c5c37d6e890a553e458333e610ab56b1a5c9b516 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 580/872] python-zipstream: rebuild for Python 3.8.

---
 srcpkgs/python-zipstream/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zipstream/template b/srcpkgs/python-zipstream/template
index 89079e21b22..2c7390127ac 100644
--- a/srcpkgs/python-zipstream/template
+++ b/srcpkgs/python-zipstream/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zipstream'
 pkgname=python-zipstream
 version=1.1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="python-zipstream-${version}"
 build_style=python-module

From bc31e25a00839c9d3cc5ac70edf0485ee4b21d4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 581/872] python3-zope.cachedescriptors: rebuild for Python
 3.8.

---
 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 bdd5ef41e21..1f1fae5b27b 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.3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="zope.cachedescriptors-${version}"
 build_style=python3-module

From 40a63988f3c2db41391f0a7ab6cde24a9b79ed05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 582/872] python-zope.component: rebuild for Python 3.8.

---
 srcpkgs/python-zope.component/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.component/template b/srcpkgs/python-zope.component/template
index 7cea5b9d71d..66ef109a4aa 100644
--- a/srcpkgs/python-zope.component/template
+++ b/srcpkgs/python-zope.component/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.component'
 pkgname=python-zope.component
 version=4.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 799496c35db93c88e6d00e4b41eeca8b4af5b188 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 583/872] python-zope.event: rebuild for Python 3.8.

---
 srcpkgs/python-zope.event/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.event/template b/srcpkgs/python-zope.event/template
index 3c7fb8dfd6e..6518cb4529b 100644
--- a/srcpkgs/python-zope.event/template
+++ b/srcpkgs/python-zope.event/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.event'
 pkgname=python-zope.event
 version=4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d77b16ecad39877131af8a9c01ea925b33737b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 584/872] python-zope.interface: rebuild for Python 3.8.

---
 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 d3c57be85f7..1dbcbecd377 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=4.6.0
-revision=2
+revision=3
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="zope"

From e5cb80612a71c54facf607c52c7a385badeba668 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 585/872] python3-pivy: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-pivy/patches/73cd928f.patch | 36 +++++++++++++++++++++
 srcpkgs/python3-pivy/template               |  2 +-
 2 files changed, 37 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/python3-pivy/patches/73cd928f.patch

diff --git a/srcpkgs/python3-pivy/patches/73cd928f.patch b/srcpkgs/python3-pivy/patches/73cd928f.patch
new file mode 100644
index 00000000000..edff803822a
--- /dev/null
+++ b/srcpkgs/python3-pivy/patches/73cd928f.patch
@@ -0,0 +1,36 @@
+From 73cd928fe1a9c2abbe6f28844a7fc695ad11d7cf Mon Sep 17 00:00:00 2001
+From: Peter Lama <peterldev94@gmail.com>
+Date: Fri, 24 Aug 2018 17:25:47 -0700
+Subject: [PATCH] Fix issue #39: PyUnicode_AsUTF8 returns const char*
+
+Even with python 2, it doesn't seem like char* is needed
+
+--- Inventor/nodes/SoMarkerSet.i
++++ Inventor/nodes/SoMarkerSet.i
+@@ -5,7 +5,7 @@
+         short WIDTH, HEIGHT;
+         size.getValue(WIDTH, HEIGHT);
+         short BYTEWIDTH = (WIDTH + 7) / 2;
+-        char* coin_marker;
++        const char* coin_marker;
+ #ifdef PY_2
+         if (PyString_Check(string))
+         {
+@@ -49,4 +49,4 @@
+         delete[] bitmapbytes;
+         bitmapbytes = NULL;
+     }
+-}
+\ No newline at end of file
++}
+--- Inventor/sensors/SoSensor.i
++++ Inventor/sensors/SoSensor.i
+@@ -4,7 +4,7 @@ SoSensorPythonCB(void * data, SoSensor * sensor)
+ {
+   PyGILState_STATE gil = PyGILState_Ensure();
+   swig_type_info * swig_type = 0;
+-  char * sensor_cast_name = NULL;
++  const char * sensor_cast_name = NULL;
+   PyObject * func, * arglist;
+   PyObject * result, * pysensor;
+ 
diff --git a/srcpkgs/python3-pivy/template b/srcpkgs/python3-pivy/template
index 4a733e805e3..9caa13837e2 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.4
-revision=1
+revision=2
 wrksrc="Coin3D-${pkgname#python3-}-a84100beff22"
 build_style=python3-module
 pycompile_module="pivy"

From 7d8cfe1721327d4b8695c6abc56d012b27989c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 586/872] python-tweepy: update to 3.8.0.

---
 srcpkgs/python-tweepy/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python-tweepy/template b/srcpkgs/python-tweepy/template
index ef61039dac5..4605bbf83ea 100644
--- a/srcpkgs/python-tweepy/template
+++ b/srcpkgs/python-tweepy/template
@@ -1,6 +1,6 @@
 # Template file for 'python-tweepy'
 pkgname=python-tweepy
-version=3.7.0
+version=3.8.0
 revision=1
 archs=noarch
 wrksrc="tweepy-${version}"
@@ -14,8 +14,8 @@ license="MIT"
 homepage="https://github.com/tweepy/tweepy"
 distfiles="${PYPI_SITE}/t/tweepy/tweepy-${version}.tar.gz
  https://raw.githubusercontent.com/tweepy/tweepy/master/LICENSE>LICENSE.txt"
-checksum="fe85a79f58a01dd335968523b91c5fce760e7fe78bf25a6e71c72204fe499d0b
- deeeae0dcc22dbf108a801b8dc4e484bcc1bfb541b1a4f4615ab3e61def44fb5"
+checksum="8abd828ba51a85a2b5bb7373715d6d3bb32d18ac624e3a4db02e4ef8ab48316b
+ bf9bc5b9dcb8421bb3c342bb7fd29194688e1262b50766bd71b21a07461e74b7"
 
 post_install() {
 	vlicense ../LICENSE.txt

From 5f654f2f6a7eca9a50adb53af9037466723dd82c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 587/872] Electron-Cash: rebuild for Python 3.8.

---
 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 2db05c94832..08670c5f08d 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.0.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electroncash electroncash_gui electroncash_plugins"

From 931f125f8699e33cb16c8ed43a5e910d0056db6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 588/872] OpenLP: rebuild for Python 3.8.

---
 srcpkgs/OpenLP/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/OpenLP/template b/srcpkgs/OpenLP/template
index fb417f8d05e..ccae6d0282e 100644
--- a/srcpkgs/OpenLP/template
+++ b/srcpkgs/OpenLP/template
@@ -1,7 +1,7 @@
 # Template file for 'OpenLP'
 pkgname=OpenLP
 version=2.4.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="openlp"

From 21b02367e81c8635c88830fd008c0ba44ffcccff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 589/872] PhotoCollage: rebuild for Python 3.8.

---
 srcpkgs/PhotoCollage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/PhotoCollage/template b/srcpkgs/PhotoCollage/template
index 2c55ca87ce0..9997d1e7d98 100644
--- a/srcpkgs/PhotoCollage/template
+++ b/srcpkgs/PhotoCollage/template
@@ -1,7 +1,7 @@
 # Template file for 'PhotoCollage'
 pkgname=PhotoCollage
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="photocollage"

From 49dffe4070ca7dff3c38379b8df9d9b0d04395ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 590/872] ReText: rebuild for Python 3.8.

---
 srcpkgs/ReText/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ReText/template b/srcpkgs/ReText/template
index cc092ee6a36..a6551fbdf7c 100644
--- a/srcpkgs/ReText/template
+++ b/srcpkgs/ReText/template
@@ -1,7 +1,7 @@
 # Template file for 'ReText'
 pkgname=ReText
 version=7.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ReText"

From 225e30aaea5daebb0d4fc36c6d73424ad6fb1ec5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 591/872] SoapySDR: rebuild for Python 3.8.

---
 srcpkgs/SoapySDR/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/SoapySDR/template b/srcpkgs/SoapySDR/template
index 1bb66ce0689..bcfe45dc78a 100644
--- a/srcpkgs/SoapySDR/template
+++ b/srcpkgs/SoapySDR/template
@@ -1,7 +1,7 @@
 # Template file for 'SoapySDR'
 pkgname=SoapySDR
 version=0.7.1
-revision=1
+revision=2
 wrksrc="${pkgname}-soapy-sdr-${version}"
 build_style=cmake
 pycompile_module="SoapySDR.py"

From 2e64750e75e61296567ebb0053c46081cbab8e13 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 592/872] Solaar: rebuild for Python 3.8.

---
 srcpkgs/Solaar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Solaar/template b/srcpkgs/Solaar/template
index 2e8f4112e0e..86cab83d497 100644
--- a/srcpkgs/Solaar/template
+++ b/srcpkgs/Solaar/template
@@ -1,7 +1,7 @@
 # Template file for 'Solaar'
 pkgname=Solaar
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="hidapi logitech_receiver solaar"

From 21eb59c332d0765268a9b3a5442e4e265144a4ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 593/872] Trimage: rebuild for Python 3.8.

---
 srcpkgs/Trimage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Trimage/template b/srcpkgs/Trimage/template
index 14fc1d1bd1c..c9f4b047ccd 100644
--- a/srcpkgs/Trimage/template
+++ b/srcpkgs/Trimage/template
@@ -1,7 +1,7 @@
 # Template file for 'Trimage'
 pkgname=Trimage
 version=1.0.6
-revision=1
+revision=2
 wrksrc="Trimage-${version}"
 build_style=python3-module
 hostmakedepends="python3"

From 51428dec66979d2e47361fb2af5e7ad35acbe530 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 594/872] TwitchNotifier: rebuild for Python 3.8.

---
 srcpkgs/TwitchNotifier/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/TwitchNotifier/template b/srcpkgs/TwitchNotifier/template
index 01153bcc710..3bbba11db49 100644
--- a/srcpkgs/TwitchNotifier/template
+++ b/srcpkgs/TwitchNotifier/template
@@ -1,7 +1,7 @@
 # Template file for 'TwitchNotifier'
 pkgname=TwitchNotifier
 version=0.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-devel"
 makedepends="python3-devel"

From 18ad02f16088cf17e66f60da882ead88b4872617 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 595/872] Uranium: rebuild for Python 3.8.

---
 srcpkgs/Uranium/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Uranium/template b/srcpkgs/Uranium/template
index 193d5e211df..7a9509c2079 100644
--- a/srcpkgs/Uranium/template
+++ b/srcpkgs/Uranium/template
@@ -1,7 +1,7 @@
 # Template file for 'Uranium'
 pkgname=Uranium
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=cmake
 pycompile_module="UM"

From 1bfabd6cc63a8b03b99500dc59e362061f7549e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 596/872] afew: rebuild for Python 3.8.

---
 srcpkgs/afew/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/afew/template b/srcpkgs/afew/template
index a9156bbc902..f4b10098e66 100644
--- a/srcpkgs/afew/template
+++ b/srcpkgs/afew/template
@@ -1,7 +1,7 @@
 # Template file for 'afew'
 pkgname=afew
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="afew"

From f0695c0a0e527ead9d61cbbd52e872f5a6e7f422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 597/872] alot: rebuild for Python 3.8.

---
 srcpkgs/alot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/alot/template b/srcpkgs/alot/template
index 4ff75637282..c8e29e36297 100644
--- a/srcpkgs/alot/template
+++ b/srcpkgs/alot/template
@@ -1,7 +1,7 @@
 # Template file for 'alot'
 pkgname=alot
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="alot"

From ec032cb507b4dca0034eab7e0281dedd3b7dc418 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 598/872] ansible: rebuild for Python 3.8.

---
 srcpkgs/ansible/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ansible/template b/srcpkgs/ansible/template
index 413e6f8803e..773f890e114 100644
--- a/srcpkgs/ansible/template
+++ b/srcpkgs/ansible/template
@@ -1,7 +1,7 @@
 # Template file for 'ansible'
 pkgname=ansible
 version=2.8.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ansible"

From a97554cec966a402d73b894865fe2d37f1833cec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 599/872] apparmor: rebuild for Python 3.8.

---
 srcpkgs/apparmor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/apparmor/template b/srcpkgs/apparmor/template
index c0ef28bae03..e4f8e3fb3ae 100644
--- a/srcpkgs/apparmor/template
+++ b/srcpkgs/apparmor/template
@@ -1,7 +1,7 @@
 # Template file for 'apparmor'
 pkgname=apparmor
 version=2.13.3
-revision=1
+revision=2
 wrksrc="${pkgname}-v${version}"
 build_wrksrc=libraries/libapparmor
 build_style=gnu-configure

From 57116ea3c564f2a1852b8583df85c35aefe177a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 600/872] arandr: rebuild for Python 3.8.

---
 srcpkgs/arandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/arandr/template b/srcpkgs/arandr/template
index 71c8cbcd6ed..610dbc28bca 100644
--- a/srcpkgs/arandr/template
+++ b/srcpkgs/arandr/template
@@ -1,7 +1,7 @@
 # Template file for 'arandr'
 pkgname=arandr
 version=0.1.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenlayout"

From 4dbfc32dae63dc77f95207dc5aa5a79d26d2c9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 601/872] asciinema: rebuild for Python 3.8.

---
 srcpkgs/asciinema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/asciinema/template b/srcpkgs/asciinema/template
index 961b2756301..38b8871753c 100644
--- a/srcpkgs/asciinema/template
+++ b/srcpkgs/asciinema/template
@@ -1,7 +1,7 @@
 # Template file for 'asciinema'
 pkgname=asciinema
 version=2.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="asciinema"

From 956b672f4c6db0ea67d9ad05a8308ec5ea193930 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 602/872] attic: rebuild for Python 3.8.

---
 srcpkgs/attic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/attic/template b/srcpkgs/attic/template
index 533ef7377bc..ed454302ce4 100644
--- a/srcpkgs/attic/template
+++ b/srcpkgs/attic/template
@@ -1,7 +1,7 @@
 # Template file for 'attic'
 pkgname=attic
 version=0.16
-revision=14
+revision=15
 wrksrc="Attic-$version"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel python3-Sphinx"

From 3a21ab47b75c96c91b8447979356e5d4d4027fd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 603/872] autorandr: rebuild for Python 3.8.

---
 srcpkgs/autorandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/autorandr/template b/srcpkgs/autorandr/template
index bf38b833632..7f9796be18f 100644
--- a/srcpkgs/autorandr/template
+++ b/srcpkgs/autorandr/template
@@ -1,7 +1,7 @@
 # Template file for 'autorandr'
 pkgname=autorandr
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="autorandr.py"

From ca443f3bf2b2ea4c91fa81f47ea823293476950b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 604/872] avideo: rebuild for Python 3.8.

---
 srcpkgs/avideo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/avideo/template b/srcpkgs/avideo/template
index e4d004aafff..6430d391286 100644
--- a/srcpkgs/avideo/template
+++ b/srcpkgs/avideo/template
@@ -1,7 +1,7 @@
 # Template file for 'avideo'
 pkgname=avideo
 version=2017.9.27
-revision=3
+revision=4
 archs=noarch
 wrksrc="avideo"
 build_style=python3-module

From b1abf9d1270b34913e7bd6dbfcd004dba8a8c5ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 605/872] aws-cli: rebuild for Python 3.8.

---
 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 4e5e200e3f9..4328e203c3c 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.16.253
-revision=1
+revision=2
 archs=noarch
 wrksrc="aws-cli-${version}"
 build_style=python3-module

From af6fd86e4f623114e23d8cd19217a8ba196231c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 606/872] bandit: rebuild for Python 3.8.

---
 srcpkgs/bandit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bandit/template b/srcpkgs/bandit/template
index e6c1aa52d7c..d29873ecf61 100644
--- a/srcpkgs/bandit/template
+++ b/srcpkgs/bandit/template
@@ -1,7 +1,7 @@
 # Template file for 'bandit'
 pkgname=bandit
 version=1.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="bandit"

From acb296380ef65f2682ec382f88706be8dc3bf79f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 607/872] beancount: rebuild for Python 3.8.

---
 srcpkgs/beancount/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beancount/template b/srcpkgs/beancount/template
index b1e2a121668..0ba68fc8f4e 100644
--- a/srcpkgs/beancount/template
+++ b/srcpkgs/beancount/template
@@ -1,7 +1,7 @@
 # Template file for 'beancount'
 pkgname=beancount
 version=2.2.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="beancount"
 hostmakedepends="python3-setuptools"

From 4d085c5998e4472b4e7b4fceabecba11440daceb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 608/872] beets: rebuild for Python 3.8.

---
 srcpkgs/beets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beets/template b/srcpkgs/beets/template
index 7dab56ceef8..975e6ec9f86 100644
--- a/srcpkgs/beets/template
+++ b/srcpkgs/beets/template
@@ -1,7 +1,7 @@
 # Template file for 'beets'
 pkgname=beets
 version=1.4.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="beets beetsplug"

From 1640cb62a84da8a46aff2a9c6ee5f75c0ab73224 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 609/872] black: rebuild for Python 3.8.

---
 srcpkgs/black/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/black/template b/srcpkgs/black/template
index f6d433038b9..38498a1db07 100644
--- a/srcpkgs/black/template
+++ b/srcpkgs/black/template
@@ -1,7 +1,7 @@
 # Template file for 'black'
 pkgname=black
 version=19.3b0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="black.py blib2to3"

From 5939f3d169c384cfe92957888f7b53678a69e770 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 610/872] blueman: rebuild for Python 3.8.

---
 srcpkgs/blueman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blueman/template b/srcpkgs/blueman/template
index 83f9b899583..3616aee7da3 100644
--- a/srcpkgs/blueman/template
+++ b/srcpkgs/blueman/template
@@ -1,7 +1,7 @@
 # Template file for 'blueman'
 pkgname=blueman
 version=2.1.1
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="blueman"
 configure_args="--disable-static"

From 325ad86e9fdcfc900e695cdcb3b40bc448b85d06 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 611/872] borg: rebuild for Python 3.8.

---
 srcpkgs/borg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borg/template b/srcpkgs/borg/template
index 520b1b2f65a..b69c7d3418e 100644
--- a/srcpkgs/borg/template
+++ b/srcpkgs/borg/template
@@ -1,7 +1,7 @@
 # Template file for 'borg'
 pkgname=borg
 version=1.1.10
-revision=2
+revision=3
 wrksrc="borgbackup-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel"

From 73a17277e22d3252a93a66237bf81a04393fc244 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 612/872] borgmatic: rebuild for Python 3.8.

---
 srcpkgs/borgmatic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borgmatic/template b/srcpkgs/borgmatic/template
index 8ef7c0568a6..bdc6446243c 100644
--- a/srcpkgs/borgmatic/template
+++ b/srcpkgs/borgmatic/template
@@ -1,7 +1,7 @@
 # Template file for 'borgmatic'
 pkgname=borgmatic
 version=1.3.24
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="borgmatic"

From 482c5d69113ad10842dfe91f0ac4a0631660ac77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 613/872] btrfs-backup: rebuild for Python 3.8.

---
 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 07d08a1b62b..55a3800a857 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=1
+revision=2
 wrksrc="${pkgname/-/_}-${version}"
 archs=noarch
 build_style=python3-module

From 4fce3c4f00a44852e3f9fcab80a10d4acfc04ad6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 614/872] bum: rebuild for Python 3.8.

---
 srcpkgs/bum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bum/template b/srcpkgs/bum/template
index 58d0bb2b7f7..20f200e74d6 100644
--- a/srcpkgs/bum/template
+++ b/srcpkgs/bum/template
@@ -1,7 +1,7 @@
 # Template file for 'bum'
 pkgname=bum
 version=0.1.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="bum"

From a384e5462965e984f1abca2ca12b7f62b1a415d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 615/872] caffeine-ng: rebuild for Python 3.8.

---
 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 36287fbef5b..455b2f225c4 100644
--- a/srcpkgs/caffeine-ng/template
+++ b/srcpkgs/caffeine-ng/template
@@ -1,7 +1,7 @@
 # Template file for 'caffeine-ng'
 pkgname=caffeine-ng
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="caffeine"

From b857565a7a7fddfbffbcf40b9e784593d099a0a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 616/872] cairo-dock-plugins: rebuild for Python 3.8.

---
 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 9e6149c617f..0c23a7f6928 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=11
+revision=12
 build_style=cmake
 hostmakedepends="pkg-config"
 # XXX libetpan, libdbusmenu, etc

From c0c15488d9189a782c2ab6436de598620d4d2435 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 617/872] canto-curses: rebuild for Python 3.8.

---
 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 0905972b480..4270d61c2e0 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=4
+revision=5
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel ncurses-devel readline-devel"

From a821add22450c016c7b851ee1a0309da5b5d83af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 618/872] canto-next: rebuild for Python 3.8.

---
 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 fff7e82e238..fa28bde891b 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.7
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From fa2afe1224ee7d1e031e769bf84bd596e5ac6de2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 619/872] capstone: rebuild for Python 3.8.

---
 srcpkgs/capstone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/capstone/template b/srcpkgs/capstone/template
index e13c7666ed1..fded7c7157e 100644
--- a/srcpkgs/capstone/template
+++ b/srcpkgs/capstone/template
@@ -1,7 +1,7 @@
 # Template file for 'capstone'
 pkgname=capstone
 version=4.0.1
-revision=1
+revision=2
 build_style=gnu-makefile
 make_use_env=1
 hostmakedepends="python-setuptools python3-setuptools"

From 923fca0cf844d03c602bbae81add86e8be495762 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 620/872] catfish: rebuild for Python 3.8.

---
 srcpkgs/catfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/catfish/template b/srcpkgs/catfish/template
index 1b28ffcafff..b53de6b8ea6 100644
--- a/srcpkgs/catfish/template
+++ b/srcpkgs/catfish/template
@@ -1,7 +1,7 @@
 # Template file for 'catfish'
 pkgname=catfish
 version=1.4.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="catfish catfish_lib"

From fb71b3b941c7341384c307ef6e1654b8d0b54a3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 621/872] ccsm: rebuild for Python 3.8.

---
 srcpkgs/ccsm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ccsm/template b/srcpkgs/ccsm/template
index 0421e587b23..3067003017f 100644
--- a/srcpkgs/ccsm/template
+++ b/srcpkgs/ccsm/template
@@ -1,7 +1,7 @@
 # Template file for 'ccsm'
 pkgname=ccsm
 version=0.8.16
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 hostmakedepends="automake intltool libtool pkg-config python3"

From f4212d55b3ec84e188189bc74a572c728a37c66a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 622/872] cheat: rebuild for Python 3.8.

---
 srcpkgs/cheat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cheat/template b/srcpkgs/cheat/template
index b60b4ba53b2..f1e419c3c5a 100644
--- a/srcpkgs/cheat/template
+++ b/srcpkgs/cheat/template
@@ -1,7 +1,7 @@
 # Template file for 'cheat'
 pkgname=cheat
 version=2.5.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="cheat"
 conf_files="/etc/cheat"

From eb72b0be44091e56a3e5b73cdf6d11ff80ecb8ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 623/872] clearine: rebuild for Python 3.8.

---
 srcpkgs/clearine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/clearine/template b/srcpkgs/clearine/template
index 419bb3c4550..539d494b79b 100644
--- a/srcpkgs/clearine/template
+++ b/srcpkgs/clearine/template
@@ -1,7 +1,7 @@
 # Template file for 'clearine'
 pkgname=clearine
 version=0.7
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="Clearine"
 hostmakedepends="python3-setuptools"

From ca7e63827b68cba4586e81da6e622e70addc8b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 624/872] coccigrep: rebuild for Python 3.8.

---
 srcpkgs/coccigrep/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/coccigrep/template b/srcpkgs/coccigrep/template
index 736f16a458e..a02c2f78bb2 100644
--- a/srcpkgs/coccigrep/template
+++ b/srcpkgs/coccigrep/template
@@ -1,7 +1,7 @@
 # Template file for 'coccigrep'
 pkgname=coccigrep
 version=1.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coccigrep"

From 8b0269365914ae7e030b07b30f4a76f2f1726270 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 625/872] compizconfig-python: rebuild for Python 3.8.

---
 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 b9d9ce2892b..77d53c97f46 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.16
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static"
 hostmakedepends="automake intltool libtool pkg-config glib-devel gettext-devel python3-Cython"

From c7955381746f2b68e5bb140afe81526fd62a2d16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 626/872] coursera-dl: rebuild for Python 3.8.

---
 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 0dfdd73083f..2b09e53d836 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.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coursera"

From 1bf8d7143694f636186cfbdcf357f9b86f5a635b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 627/872] cozy: rebuild for Python 3.8.

---
 srcpkgs/cozy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cozy/template b/srcpkgs/cozy/template
index a35aff61f37..2515388da18 100644
--- a/srcpkgs/cozy/template
+++ b/srcpkgs/cozy/template
@@ -1,7 +1,7 @@
 # Template file for 'cozy'
 pkgname=cozy
 version=0.6.8
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 pycompile_module="cozy"

From 7b58e6f69ae54c84b50dfe4d6041cf861a698c60 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 628/872] cpuset: rebuild for Python 3.8.

---
 srcpkgs/cpuset/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cpuset/template b/srcpkgs/cpuset/template
index cf3910d2304..12b54631617 100644
--- a/srcpkgs/cpuset/template
+++ b/srcpkgs/cpuset/template
@@ -1,7 +1,7 @@
 # Template file for 'cpuset'
 pkgname=cpuset
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="cpuset"

From a542aca478f0e84bbc23d3fd91a236635712a9f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 629/872] ctop: rebuild for Python 3.8.

---
 srcpkgs/ctop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ctop/template b/srcpkgs/ctop/template
index b8ea58515b2..5231b4a4cb3 100644
--- a/srcpkgs/ctop/template
+++ b/srcpkgs/ctop/template
@@ -1,7 +1,7 @@
 # Template file for 'ctop'
 pkgname=ctop
 version=1.0.0
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="cgroup_top.py"

From b3065c411c5e0b3e48432c6901e1e7fb20eb00d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 630/872] cura: rebuild for Python 3.8.

---
 srcpkgs/cura/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cura/template b/srcpkgs/cura/template
index 31318e5aecf..ab5cd315f21 100644
--- a/srcpkgs/cura/template
+++ b/srcpkgs/cura/template
@@ -1,7 +1,7 @@
 # Template file for 'cura'
 pkgname=cura
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Cura-${version}"
 build_style=cmake

From 9f4eb67830feb2103a78edc7651e1f73cc606074 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 631/872] curseradio: rebuild for Python 3.8.

---
 srcpkgs/curseradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/curseradio/template b/srcpkgs/curseradio/template
index 4fe2306364a..f5afe3bba34 100644
--- a/srcpkgs/curseradio/template
+++ b/srcpkgs/curseradio/template
@@ -1,7 +1,7 @@
 # Template file for 'curseradio'
 pkgname=curseradio
 version=0.0.20171017
-revision=3
+revision=4
 archs=noarch
 _commit=1bd4bd0faeec675e0647bac9a100b526cba19f8d
 wrksrc="curseradio-${_commit}"

From fa4e6156adf5c317bb85ee1d8271c9e6ce57b3e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 632/872] d-feet: rebuild for Python 3.8.

---
 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 6930eddf582..7f7d593f30a 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.15
-revision=1
+revision=2
 build_style=meson
 maintainer="Enno Boland <gottox@voidlinux.org>"
 hostmakedepends="pkg-config intltool itstool python3-pycodestyle"

From d6145053ac873c90f6383dee8ec4d696463928f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 633/872] deluge: rebuild for Python 3.8.

---
 srcpkgs/deluge/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/deluge/template b/srcpkgs/deluge/template
index 6dc7f26184d..8148c68033c 100644
--- a/srcpkgs/deluge/template
+++ b/srcpkgs/deluge/template
@@ -1,7 +1,7 @@
 # Template file for 'deluge'
 pkgname=deluge
 version=2.0.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="deluge"

From 0b2691a90e5de63e49a3c3f3adfa709d618b0a05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 634/872] devedeng: rebuild for Python 3.8.

---
 srcpkgs/devedeng/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/devedeng/template b/srcpkgs/devedeng/template
index d971b2e207b..2d0516cedd3 100644
--- a/srcpkgs/devedeng/template
+++ b/srcpkgs/devedeng/template
@@ -1,7 +1,7 @@
 # Template file for 'devedeng'
 pkgname=devedeng
 version=4.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="devedeng"

From 8b7c3bcfced7b21089b0a64ac1c375eb973af343 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 635/872] distcc: rebuild for Python 3.8.

---
 srcpkgs/distcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/distcc/template b/srcpkgs/distcc/template
index ded4255becd..4d6a450533f 100644
--- a/srcpkgs/distcc/template
+++ b/srcpkgs/distcc/template
@@ -1,7 +1,7 @@
 # Template file for 'distcc'
 pkgname=distcc
 version=3.3.3
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-Werror --with-gtk"
 conf_files="

From 98151a807bebdc6d5e41e0b6a1bd0d65659fbb7e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 636/872] docker-compose: rebuild for Python 3.8.

---
 srcpkgs/docker-compose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/docker-compose/template b/srcpkgs/docker-compose/template
index c3383fdf1ad..f4a34005c83 100644
--- a/srcpkgs/docker-compose/template
+++ b/srcpkgs/docker-compose/template
@@ -1,7 +1,7 @@
 # Template file for 'docker-compose'
 pkgname=docker-compose
 version=1.24.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="compose-${version}"
 build_style=python3-module

From 9dc2f62edc54b5e314c24fe7bb303496223adb45 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 637/872] edx-dl: rebuild for Python 3.8.

---
 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 209884640c6..a51c917d606 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.10
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="edx_dl"

From 6a769ff00b2fc959627e96d44172f8a656548751 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 638/872] electrum: rebuild for Python 3.8.

---
 srcpkgs/electrum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template
index 3861becdda9..7525e08e9e2 100644
--- a/srcpkgs/electrum/template
+++ b/srcpkgs/electrum/template
@@ -1,7 +1,7 @@
 # Template file for 'electrum'
 pkgname=electrum
 version=3.3.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electrum electrum_gui electrum_plugins"

From be52dccd4b30af3377095664bf239767a0f7be39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 639/872] electrum-ltc: rebuild for Python 3.8.

---
 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 ad6f745e152..cf7265fbec8 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.6.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"

From 45951afeb4bab3066e0459cf1441d9c3570c85dc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 640/872] eolie: rebuild for Python 3.8.

---
 srcpkgs/eolie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eolie/template b/srcpkgs/eolie/template
index b3da3dcd829..94514510c98 100644
--- a/srcpkgs/eolie/template
+++ b/srcpkgs/eolie/template
@@ -1,7 +1,7 @@
 # Template file for 'eolie'
 pkgname=eolie
 version=0.9.62
-revision=1
+revision=2
 _eolie_hash=bb4aad19272cc636bd17f2f6602127fe
 build_style=meson
 pycompile_module="eolie"

From ad02dba2226dbfc6b1fb5e715af8b58821cd8c07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 641/872] eyeD3: rebuild for Python 3.8.

---
 srcpkgs/eyeD3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eyeD3/template b/srcpkgs/eyeD3/template
index 7be047810bd..211553f0adb 100644
--- a/srcpkgs/eyeD3/template
+++ b/srcpkgs/eyeD3/template
@@ -1,7 +1,7 @@
 # Template file for 'eyeD3'
 pkgname=eyeD3
 version=0.8.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="eyed3"

From 5333d561e8831b7103f00f5e4564ce20bc26e9b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 642/872] fail2ban: rebuild for Python 3.8.

---
 srcpkgs/fail2ban/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 829e93385dc..361bcd12edd 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,7 +1,7 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
 version=0.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From 6ed6f50c8422b21b0f8244e983014120a3467562 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 643/872] fava: rebuild for Python 3.8.

---
 srcpkgs/fava/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fava/template b/srcpkgs/fava/template
index 24e66cac45b..890858b095b 100644
--- a/srcpkgs/fava/template
+++ b/srcpkgs/fava/template
@@ -1,7 +1,7 @@
 # Template file for 'fava'
 pkgname=fava
 version=1.11
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fava"

From cfe04c8e627d5d3626d852a05f3a87ecf053557f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 644/872] fierce: rebuild for Python 3.8.

---
 srcpkgs/fierce/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fierce/template b/srcpkgs/fierce/template
index 86dedb39ad2..86692c6457b 100644
--- a/srcpkgs/fierce/template
+++ b/srcpkgs/fierce/template
@@ -1,7 +1,7 @@
 # Template file for 'fierce'
 pkgname=fierce
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fierce"

From c67a6380bd6f21a660d10cde09cb2930536faee5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 645/872] fifengine: rebuild for Python 3.8.

---
 srcpkgs/fifengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fifengine/template b/srcpkgs/fifengine/template
index 1d4bcbb9297..871c94ad7e0 100644
--- a/srcpkgs/fifengine/template
+++ b/srcpkgs/fifengine/template
@@ -1,7 +1,7 @@
 # Template file for 'fifengine'
 pkgname=fifengine
 version=0.4.2
-revision=1
+revision=2
 build_style=cmake
 pycompile_module="fife"
 hostmakedepends="swig python3"

From 407bb3354f4705ac3e7d9c40479ff7272cbf5478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 646/872] flake8: rebuild for Python 3.8.

---
 srcpkgs/flake8/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/flake8/template b/srcpkgs/flake8/template
index d8f2b095644..4d7ebeba176 100644
--- a/srcpkgs/flake8/template
+++ b/srcpkgs/flake8/template
@@ -1,7 +1,7 @@
 # Template file for 'flake8'
 pkgname=flake8
 version=3.7.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="flake8"

From 770a2460b2b1f167fe87687c22ab0ff3d925964d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 647/872] fontforge: fix and rebuild for Python 3.8.

---
 srcpkgs/fontforge/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/fontforge/template b/srcpkgs/fontforge/template
index 7fb02d7e371..2893bc52cfb 100644
--- a/srcpkgs/fontforge/template
+++ b/srcpkgs/fontforge/template
@@ -1,7 +1,7 @@
 # Template file for 'fontforge'
 pkgname=fontforge
 version=20190801
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake ca-certificates git libltdl-devel libtool m4
  pkg-config python3"
@@ -20,6 +20,7 @@ checksum="e4501de5bd8e7f6c68fe7d3abd4667bf44a07b981d342ffa00e8f42e155ce633
  1bf9c7eb8835e6ed94e62cb49f1141bc046c562849e52e6c3c7f1d7cfc95c7b3"
 
 pre_configure() {
+        sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION}/&-embed/g' m4/fontforge_arg_enable.m4
 	./bootstrap
 }
 

From b878e1d66ee439999393e2aa55941b07f8e6c745 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 648/872] gajim: rebuild for Python 3.8.

---
 srcpkgs/gajim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gajim/template b/srcpkgs/gajim/template
index 8c49c0cf6ef..e81015b3906 100644
--- a/srcpkgs/gajim/template
+++ b/srcpkgs/gajim/template
@@ -1,7 +1,7 @@
 # Template file for 'gajim'
 pkgname=gajim
 version=1.1.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gajim"

From e0ad178e264be367206a16d9b96524e6d37e4b22 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 649/872] gajim-omemo: rebuild for Python 3.8.

---
 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 803f94713be..64d47228496 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.6.29
-revision=1
+revision=2
 wrksrc="omemo"
 hostmakedepends="unzip"
 depends="python3 python3-setuptools python3-cryptography python3-axolotl python3-qrcode"

From 4988da06fe14563631406801f6b22795355576a4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 650/872] gallery-dl: rebuild for Python 3.8.

---
 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 a1e8c633fe3..62b338a32e3 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.10.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gallery_dl"

From 7d5c0c0d7a1dcc5f3c504ed769a3730c7d688ed3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 651/872] gandi-cli: rebuild for Python 3.8.

---
 srcpkgs/gandi-cli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gandi-cli/template b/srcpkgs/gandi-cli/template
index c5e805a09fd..4193bfe4638 100644
--- a/srcpkgs/gandi-cli/template
+++ b/srcpkgs/gandi-cli/template
@@ -1,7 +1,7 @@
 # Template file for 'gandi-cli'
 pkgname=gandi-cli
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="gandi.cli-${version}"
 build_style=python3-module

From 7ae81741d5a1d24c19e0950a8631b2afb2f66301 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 652/872] gcovr: rebuild for Python 3.8.

---
 srcpkgs/gcovr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gcovr/template b/srcpkgs/gcovr/template
index 2b9ff94bf2a..0d4addfc8a7 100644
--- a/srcpkgs/gcovr/template
+++ b/srcpkgs/gcovr/template
@@ -1,7 +1,7 @@
 # Template file for 'gcovr'
 pkgname=gcovr
 version=4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gcovr"

From ff745f27bbeb2148c202a6cfde42c27c27ffb081 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 653/872] gedit: rebuild for Python 3.8.

---
 srcpkgs/gedit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gedit/template b/srcpkgs/gedit/template
index 904d3b7c3c4..6666c331c52 100644
--- a/srcpkgs/gedit/template
+++ b/srcpkgs/gedit/template
@@ -1,7 +1,7 @@
 # Template file for 'gedit'
 pkgname=gedit
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gi/overrides"

From 6d37a1560ee94e42e383c5bc4cba87d59366a1bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 654/872] geis: rebuild for Python 3.8.

---
 srcpkgs/geis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/geis/template b/srcpkgs/geis/template
index fe31a3d2aeb..20afe76b0d8 100644
--- a/srcpkgs/geis/template
+++ b/srcpkgs/geis/template
@@ -1,7 +1,7 @@
 # Template file for 'geis'
 pkgname=geis
 version=2.2.17
-revision=4
+revision=5
 hostmakedepends="pkg-config python3-devel"
 makedepends="dbus-devel grail-devel frame-devel libXi-devel python3-devel xorg-server-devel"
 build_style="gnu-configure"

From 83ad8dc7e8dc71c64a9004e04aba36ca30c051fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 655/872] git-cola: rebuild for Python 3.8.

---
 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 7eaba90f3be..fd0bbf971d3 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.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/share/git-cola/lib"

From 69e4bac4c10842ce70ce2a1db26f883af407e79c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 656/872] git-review: rebuild for Python 3.8.

---
 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 d999dc87b16..c180cc60780 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="git_review"

From 7c0a260d7120bd5e0e4e27c6b30b83e9dfe60359 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 657/872] git-revise: rebuild for Python 3.8.

---
 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 4179a52bddc..a1bf51dc447 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.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gitrevise"

From 49a8265f4cd71c84814307928cbbd2eb33c4bbad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 658/872] gitg: rebuild for Python 3.8.

---
 srcpkgs/gitg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gitg/template b/srcpkgs/gitg/template
index e0da8e9490d..a3381fdb3a7 100644
--- a/srcpkgs/gitg/template
+++ b/srcpkgs/gitg/template
@@ -1,7 +1,7 @@
 # Template file for 'gitg'
 pkgname=gitg
 version=3.32.1
-revision=1
+revision=2
 build_style=meson
 hostmakedepends="intltool pkg-config gobject-introspection vala glib-devel"
 makedepends="gtksourceview-devel libgit2-glib-devel libgee08-devel gtkspell3-devel

From 5b5919636d70cb1259ebd7740e9b55936a7c29f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 659/872] glances: rebuild for Python 3.8.

---
 srcpkgs/glances/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glances/template b/srcpkgs/glances/template
index 6d4766493c3..753d9e20c92 100644
--- a/srcpkgs/glances/template
+++ b/srcpkgs/glances/template
@@ -1,7 +1,7 @@
 # Template file for 'glances'
 pkgname=glances
 version=3.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Glances-${version}"
 build_style=python3-module

From 8b16492c679f3eb6c6ae2d4573f9adeb356715be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 660/872] glusterfs: rebuild for Python 3.8.

---
 srcpkgs/glusterfs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glusterfs/template b/srcpkgs/glusterfs/template
index a1304e266fe..90093864286 100644
--- a/srcpkgs/glusterfs/template
+++ b/srcpkgs/glusterfs/template
@@ -1,7 +1,7 @@
 # Template file for 'glusterfs'
 pkgname=glusterfs
 version=6.5
-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 22925c23326876f7422d67e1f21f0e629b9c7ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 661/872] gnome-authenticator: rebuild for Python 3.8.

---
 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 52d161897c7..ab7c505c0fe 100644
--- a/srcpkgs/gnome-authenticator/template
+++ b/srcpkgs/gnome-authenticator/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-authenticator'
 pkgname=gnome-authenticator
 version=0.2.4
-revision=2
+revision=3
 _libgd_hash=7ae254bfc5f641c60566614e08245176f7bc5aa8
 wrksrc="Authenticator-${version}"
 build_style=meson

From 4130139a7454a2050f48c6feac4f9312c50219d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 662/872] gnome-music: rebuild for Python 3.8.

---
 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 bceb7c369c8..e2fbbcbdeca 100644
--- a/srcpkgs/gnome-music/template
+++ b/srcpkgs/gnome-music/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-music'
 pkgname=gnome-music
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gnomemusic"

From 94b0589cc1f42f2505ac86d6596ab748ab75e02f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 663/872] gnome-passbook: rebuild for Python 3.8.

---
 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 54035dc920b..89047338503 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.1
-revision=1
+revision=2
 _release_hash=0a227cfdf706f4bfcc0b782026f1aeb2
 wrksrc="passbook-${version}"
 build_style=meson

From 76dae990f2ec69291f7826391c7a375014867fb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 664/872] gnome-passwordsafe: rebuild for Python 3.8.

---
 srcpkgs/gnome-passwordsafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnome-passwordsafe/template b/srcpkgs/gnome-passwordsafe/template
index f310ce03a08..8f1f19174d2 100644
--- a/srcpkgs/gnome-passwordsafe/template
+++ b/srcpkgs/gnome-passwordsafe/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-passwordsafe'
 pkgname=gnome-passwordsafe
 version=3.32.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="PasswordSafe-${version}"
 build_style=meson

From ebb227d14a2271cc033506f2dd54957eecc5b719 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 665/872] gns3-gui: rebuild for Python 3.8.

---
 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 38751dea59b..f4318dc6afc 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.1.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3"

From b44e9cf882e059036ed7e3834cafdf689c956e32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 666/872] gns3-net-converter: rebuild for Python 3.8.

---
 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 b9b7403e8a6..70b6c90e8c8 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=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3converter"

From eaf37536ad96d1421cc95823589d2cd21779089d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 667/872] gns3-server: rebuild for Python 3.8.

---
 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 6bd9c067b20..739c584cb7c 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.1.21
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="gns3server"
 hostmakedepends="python3-setuptools"

From 3a2540b9e2143af7b07dcaee0ed3930b9016dc1e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 668/872] gnucash: rebuild for Python 3.8.

---
 srcpkgs/gnucash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnucash/template b/srcpkgs/gnucash/template
index 68bb811fc42..d8ff0a8ec86 100644
--- a/srcpkgs/gnucash/template
+++ b/srcpkgs/gnucash/template
@@ -1,7 +1,7 @@
 # Template file for 'gnucash'
 pkgname=gnucash
 version=3.7
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DWITH_SQL=0 -DWITH_PYTHON=1"
 hostmakedepends="pkg-config guile python3 libxslt perl"

From c1420969fc916318d29dfdc3836adf0580095969 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 669/872] gom: rebuild for Python 3.8.

---
 srcpkgs/gom/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gom/template b/srcpkgs/gom/template
index 6ec2a5e338f..0b45e19def4 100644
--- a/srcpkgs/gom/template
+++ b/srcpkgs/gom/template
@@ -1,7 +1,7 @@
 # Template file for 'gom'
 pkgname=gom
 version=0.3.3
-revision=3
+revision=4
 build_style=meson
 build_helper="gir"
 configure_args="-Denable-introspection=$(vopt_if gir true false)

From e55d5d66739df70ca67793cbca3b12aa5f01e751 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 670/872] gpodder: rebuild for Python 3.8.

---
 srcpkgs/gpodder/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gpodder/template b/srcpkgs/gpodder/template
index 7c7414e19cd..5cc63ab4205 100644
--- a/srcpkgs/gpodder/template
+++ b/srcpkgs/gpodder/template
@@ -1,7 +1,7 @@
 # Template file for 'gpodder'
 pkgname=gpodder
 version=3.10.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="gpodder-${version}"
 make_check_target=unittest

From d91d30f5f2b0b5e6323da1f35eaf923fed0a111f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 671/872] gramps: rebuild for Python 3.8.

---
 srcpkgs/gramps/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gramps/template b/srcpkgs/gramps/template
index 9d1d1a4616a..5d40aeefb49 100644
--- a/srcpkgs/gramps/template
+++ b/srcpkgs/gramps/template
@@ -1,7 +1,7 @@
 # Template file for 'gramps'
 pkgname=gramps
 version=5.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gramps"

From bb3e960f11dda36c822c8bd1e8575b2a69ce9a66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 672/872] greg: rebuild for Python 3.8.

---
 srcpkgs/greg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/greg/template b/srcpkgs/greg/template
index 9c15ba82f4b..d898d5fdf61 100644
--- a/srcpkgs/greg/template
+++ b/srcpkgs/greg/template
@@ -1,7 +1,7 @@
 # Template file for 'greg'
 pkgname=greg
 version=0.4.7
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 pycompile_module="greg"

From be202bce8c20fb165e811e32683e96aae42b1452 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 673/872] gst1-python3: rebuild for Python 3.8.

---
 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 6f02f19aca3..bf946f6a8bf 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.16.1
-revision=1
+revision=2
 wrksrc="gst-python-${version}"
 build_style=meson
 pycompile_module="gi/overrides"

From b9ef9fe5fb2d7b03831106592cfae54a25c41a0f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 674/872] guake: rebuild for Python 3.8.

---
 srcpkgs/guake/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/guake/template b/srcpkgs/guake/template
index 86eaba649a7..d92fdf89355 100644
--- a/srcpkgs/guake/template
+++ b/srcpkgs/guake/template
@@ -1,7 +1,7 @@
 # Template file for 'guake'
 pkgname=guake
 version=3.6.3
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 wrksrc="Guake-${version}"

From a53d49cbf26761960b1d159a12df007b627e7650 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 675/872] gufw: rebuild for Python 3.8.

---
 srcpkgs/gufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gufw/template b/srcpkgs/gufw/template
index d2b8a4b025d..a4e7d861d71 100644
--- a/srcpkgs/gufw/template
+++ b/srcpkgs/gufw/template
@@ -1,7 +1,7 @@
 # Template file for 'gufw'
 pkgname=gufw
 version=19.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="gui-ufw-${version}"
 build_style=python3-module

From 165d3546e52431e5cb6d8f7534344eb7da2982a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 676/872] hamlib: rebuild for Python 3.8.

---
 srcpkgs/hamlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hamlib/template b/srcpkgs/hamlib/template
index c28a069cd6f..d52436c0893 100644
--- a/srcpkgs/hamlib/template
+++ b/srcpkgs/hamlib/template
@@ -1,7 +1,7 @@
 # Template file for 'hamlib'
 pkgname=hamlib
 version=3.3
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static --with-perl-binding --with-python-binding
  --with-tcl-binding --with-xml-support"

From fe67c3b8e01dac359eba93dada80286f4b7bd546 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 677/872] hangups: rebuild for Python 3.8.

---
 srcpkgs/hangups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hangups/template b/srcpkgs/hangups/template
index 0a2f2db16b4..0837a2c47c3 100644
--- a/srcpkgs/hangups/template
+++ b/srcpkgs/hangups/template
@@ -1,7 +1,7 @@
 # Template file for 'hangups'
 pkgname=hangups
 version=0.4.9
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="hangups"
 hostmakedepends="python3-setuptools"

From 54c05618d6ea2a636e7649b6dfb4df7e9097df99 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 678/872] hplip: rebuild for Python 3.8.

---
 srcpkgs/hplip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hplip/template b/srcpkgs/hplip/template
index 07a707569f6..3ef76e4591b 100644
--- a/srcpkgs/hplip/template
+++ b/srcpkgs/hplip/template
@@ -1,7 +1,7 @@
 # Template file for 'hplip'
 pkgname=hplip
 version=3.19.8
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="usr/share/hplip"
 configure_args="

From b9133921feebbc073c9d3cecdc138c34dd553caa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 679/872] httpie: rebuild for Python 3.8.

---
 srcpkgs/httpie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/httpie/template b/srcpkgs/httpie/template
index 387af8ebf05..61fc1499d35 100644
--- a/srcpkgs/httpie/template
+++ b/srcpkgs/httpie/template
@@ -1,7 +1,7 @@
 # Template file for 'httpie'
 pkgname=httpie
 version=1.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="httpie"

From 6c6626a47930ae266d4f95bc011f99e15b7237a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 680/872] ibus: rebuild for Python 3.8.

---
 srcpkgs/ibus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ibus/template b/srcpkgs/ibus/template
index 4875c7535d6..d3c35d786a4 100644
--- a/srcpkgs/ibus/template
+++ b/srcpkgs/ibus/template
@@ -1,7 +1,7 @@
 # Template file for 'ibus'
 pkgname=ibus
 version=1.5.20
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 configure_args="--enable-ui --enable-gtk3 --disable-tests

From ad8f78bd52e9d9925d746e1bbca9a926040dc866 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 681/872] iotop: rebuild for Python 3.8.

---
 srcpkgs/iotop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template
index 146a9e97791..522bf32a7c2 100644
--- a/srcpkgs/iotop/template
+++ b/srcpkgs/iotop/template
@@ -1,7 +1,7 @@
 # Template file for 'iotop'
 pkgname=iotop
 version=0.6
-revision=5
+revision=6
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From bf6b1d411e5f8d2459161a4599d66d7148220c48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 682/872] jrnl: rebuild for Python 3.8.

---
 srcpkgs/jrnl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template
index 3d08f129885..b184ef09508 100644
--- a/srcpkgs/jrnl/template
+++ b/srcpkgs/jrnl/template
@@ -1,7 +1,7 @@
 # Template file for 'jrnl'
 pkgname=jrnl
 version=1.9.8
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="jrnl"

From 3262fda476f3282359c09dd2902deac5997a3394 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 683/872] khal: rebuild for Python 3.8.

---
 srcpkgs/khal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khal/template b/srcpkgs/khal/template
index 39d08a66ba8..a73516695bf 100644
--- a/srcpkgs/khal/template
+++ b/srcpkgs/khal/template
@@ -1,7 +1,7 @@
 # Template file for 'khal'
 pkgname=khal
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khal"

From be7f25caca1d74c5f9f58c4cc40c3f3f889971d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 684/872] khard: rebuild for Python 3.8.

---
 srcpkgs/khard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khard/template b/srcpkgs/khard/template
index 6c6f3024be1..3ec9f398d99 100644
--- a/srcpkgs/khard/template
+++ b/srcpkgs/khard/template
@@ -1,7 +1,7 @@
 # Template file for 'khard'
 pkgname=khard
 version=0.14.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khard"

From 0509f15447526a6132348baf9eb600d22a0c20f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 685/872] lfm: rebuild for Python 3.8.

---
 srcpkgs/lfm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lfm/template b/srcpkgs/lfm/template
index 0a0a3b4f563..1e0e7cf29fa 100644
--- a/srcpkgs/lfm/template
+++ b/srcpkgs/lfm/template
@@ -1,7 +1,7 @@
 # Template file for 'lfm'
 pkgname=lfm
 version=3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 9ac423037b0a4806134116f0b6501d27f2bb3047 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 686/872] libArcus: rebuild for Python 3.8.

---
 srcpkgs/libArcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libArcus/template b/srcpkgs/libArcus/template
index 8e6c97ada21..d2ffda576d4 100644
--- a/srcpkgs/libArcus/template
+++ b/srcpkgs/libArcus/template
@@ -1,7 +1,7 @@
 # Template file for 'libArcus'
 pkgname=libArcus
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DBUILD_EXAMPLES=OFF"
 hostmakedepends="protobuf python3-sip-devel"

From 8a5c0bc1b4d750fbb633dcfb68645bdb8e23ac37 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 687/872] libSavitar: rebuild for Python 3.8.

---
 srcpkgs/libSavitar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libSavitar/template b/srcpkgs/libSavitar/template
index a9d3020158f..213f02f4d65 100644
--- a/srcpkgs/libSavitar/template
+++ b/srcpkgs/libSavitar/template
@@ -1,7 +1,7 @@
 # Template file for 'libSavitar'
 pkgname=libSavitar
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 hostmakedepends="python3"
 makedepends="python3-sip-devel python3-devel pugixml-devel"

From 888da49c1bb8061c80359b4015485b151f0d74d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 688/872] libaccounts-glib: rebuild for Python 3.8.

---
 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 717be24f209..239f9307261 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=2
+revision=3
 wrksrc="${pkgname}-VERSION_${version}-8948717702424ce15f4e23e5db2c8ce0799ec120"
 build_style=meson
 hostmakedepends="gtk-doc pkg-config glib-devel gobject-introspection vala"

From bd98c3c06982e10c3f9df1df66d5b04f1a5ef434 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 689/872] libblockdev: rebuild for Python 3.8.

---
 srcpkgs/libblockdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libblockdev/template b/srcpkgs/libblockdev/template
index 1df156e3c5b..ff20fc70618 100644
--- a/srcpkgs/libblockdev/template
+++ b/srcpkgs/libblockdev/template
@@ -1,7 +1,7 @@
 # Template file for 'libblockdev'
 pkgname=libblockdev
 version=2.21
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="cryptsetup-devel device-mapper-devel dmraid-devel libbytesize-devel

From 41b298fd633e7e588071f06e8d421ed9b2c21a8c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 690/872] libbytesize: rebuild for Python 3.8.

---
 srcpkgs/libbytesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libbytesize/template b/srcpkgs/libbytesize/template
index ee1862d889d..e07cdf29a82 100644
--- a/srcpkgs/libbytesize/template
+++ b/srcpkgs/libbytesize/template
@@ -1,7 +1,7 @@
 # Template file for 'libbytesize'
 pkgname=libbytesize
 version=1.4
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python3"
 makedepends="mpfr-devel pcre-devel"

From bdb495aaf63cb8b79a83eda9623e54e67de33d75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 691/872] libcap-ng: rebuild for Python 3.8.

---
 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 f462636c4c1..c6ec4f0a216 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.7.10
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-python --without-python3"
 short_desc="Alternate POSIX capabilities library"

From 64a29440ad0bb81db7db97e461b4b68478993d17 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 692/872] libffado: rebuild for Python 3.8.

---
 srcpkgs/libffado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libffado/template b/srcpkgs/libffado/template
index a9b6a5ec6a8..d566806bd82 100644
--- a/srcpkgs/libffado/template
+++ b/srcpkgs/libffado/template
@@ -1,7 +1,7 @@
 # Template file for 'libffado'
 pkgname=libffado
 version=2.4.1
-revision=1
+revision=2
 build_style=scons
 make_build_args="PREFIX=/usr MANDIR=/usr/share/man
  UDEVDIR=/usr/lib/udev/rules.d CUSTOM_ENV=1 BUILD_TESTS=0

From 3ac32b19e51680d2330b26da6cb8d640904fcb75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 693/872] libgit2-glib: rebuild for Python 3.8.

---
 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 05389a18258..ce68cb35d66 100644
--- a/srcpkgs/libgit2-glib/template
+++ b/srcpkgs/libgit2-glib/template
@@ -1,7 +1,7 @@
 # Template file for 'libgit2-glib'
 pkgname=libgit2-glib
 version=0.28.0.1
-revision=1
+revision=2
 build_style=meson
 build_helper="gir"
 configure_args="-Dintrospection=$(vopt_if gir true false)

From 6950f9e7571c268c087d93d7e94d169a8fb8291b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 694/872] libixion: rebuild for Python 3.8.

---
 srcpkgs/libixion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libixion/template b/srcpkgs/libixion/template
index 5d2c58ee7c0..dbc05d8b9c1 100644
--- a/srcpkgs/libixion/template
+++ b/srcpkgs/libixion/template
@@ -2,7 +2,7 @@
 pkgname=libixion
 reverts="0.15.0_1"
 version=0.14.1
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="boost-devel mdds python3-devel"

From 45a847c34a550d9cc64985d24ef9b306aade5790 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 695/872] liblouis: rebuild for Python 3.8.

---
 srcpkgs/liblouis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liblouis/template b/srcpkgs/liblouis/template
index 77194ad8820..13c29b62b21 100644
--- a/srcpkgs/liblouis/template
+++ b/srcpkgs/liblouis/template
@@ -1,7 +1,7 @@
 # Template file for 'liblouis'
 pkgname=liblouis
 version=3.9.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--enable-ucs4"
 pycompile_module="louis"

From f79d54ca6d5162f4f17a9cae76f0bd941deaf438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 696/872] opencv: rebuild for Python 3.8.

---
 srcpkgs/opencv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/opencv/template b/srcpkgs/opencv/template
index fcc38299f23..474b77be181 100644
--- a/srcpkgs/opencv/template
+++ b/srcpkgs/opencv/template
@@ -1,7 +1,7 @@
 # Template file for 'opencv'
 pkgname=opencv
 version=3.4.5
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_PRECOMPILED_HEADERS=OFF -DWITH_OPENMP=ON
  -DWITH_OPENCL=ON -DENABLE_CXX11=ON -DOPENCV_SKIP_PYTHON_LOADER=ON

From f3399fca6f67a8990fa1adc144bd949c0a5c66c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 697/872] libopenshot: rebuild for Python 3.8.

---
 srcpkgs/libopenshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libopenshot/template b/srcpkgs/libopenshot/template
index e1ac18faf93..dab1f2ae1e3 100644
--- a/srcpkgs/libopenshot/template
+++ b/srcpkgs/libopenshot/template
@@ -1,7 +1,7 @@
 # Template file for 'libopenshot'
 pkgname=libopenshot
 version=0.2.3
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 build_style=cmake
 pycompile_module="openshot.py"

From c7902fc599bfc61c600307df6f75acfadf8e612e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 698/872] liborcus: rebuild for Python 3.8.

---
 srcpkgs/liborcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liborcus/template b/srcpkgs/liborcus/template
index 3523d7830d8..e7704c43974 100644
--- a/srcpkgs/liborcus/template
+++ b/srcpkgs/liborcus/template
@@ -2,7 +2,7 @@
 pkgname=liborcus
 reverts="0.15.0_1"
 version=0.14.1
-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 aec13b74f5953d86ed1dab8574a9bb836924a3da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 699/872] libpwquality: rebuild for Python 3.8.

---
 srcpkgs/libpwquality/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpwquality/template b/srcpkgs/libpwquality/template
index e5a656236d7..6c2209155a3 100644
--- a/srcpkgs/libpwquality/template
+++ b/srcpkgs/libpwquality/template
@@ -1,7 +1,7 @@
 # Template file for 'libpwquality'
 pkgname=libpwquality
 version=1.4.1
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static --enable-pam --with-securedir=/usr/lib/security"
 hostmakedepends="libtool automake gettext-devel"

From a5604d1184badc5a3b5afb2426bc910d703ee0f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 700/872] libsearpc: rebuild for Python 3.8.

---
 srcpkgs/libsearpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsearpc/template b/srcpkgs/libsearpc/template
index 61f68e5e7de..a7e0b9ce05c 100644
--- a/srcpkgs/libsearpc/template
+++ b/srcpkgs/libsearpc/template
@@ -1,7 +1,7 @@
 # Template file for 'libsearpc'
 pkgname=libsearpc
 version=3.1.0
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="pysearpc"
 configure_args="PYTHON=python3 --disable-static --disable-compile-demo"

From 5aaa024e287c3460065dbe861abc25499a281e07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 701/872] libtorrent-rasterbar: fix and rebuild for Python 3.8.

---
 srcpkgs/libtorrent-rasterbar/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libtorrent-rasterbar/template b/srcpkgs/libtorrent-rasterbar/template
index 118108c6184..51b7175fb81 100644
--- a/srcpkgs/libtorrent-rasterbar/template
+++ b/srcpkgs/libtorrent-rasterbar/template
@@ -1,9 +1,9 @@
 # Template file for 'libtorrent-rasterbar'
 pkgname=libtorrent-rasterbar
 version=1.1.13
-revision=3
+revision=4
 build_style=gnu-configure
-configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=boost_python36"
+configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=libboost_python${py3_ver/./}"
 hostmakedepends="automake pkg-config intltool libtool python3-devel"
 makedepends="libressl-devel boost-devel geoip-devel python3-devel"
 short_desc="C++ bittorrent library by Rasterbar Software"
@@ -14,9 +14,9 @@ distfiles="https://github.com/arvidn/libtorrent/releases/download/libtorrent-${v
 checksum=30040719858e3c06634764e0c1778738eb42ecd0b45e814afa746329a948ead7
 
 pre_configure() {
-	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython3.6m"
+	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython${py3_ver}${py3_abiver}"
 	autoreconf -fi
 }
 

From 75ce8cab25904eeb4975663fb77b4f29c10c1dbe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 702/872] libvirt-python: rebuild for Python 3.8.

---
 srcpkgs/libvirt-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvirt-python/template b/srcpkgs/libvirt-python/template
index a2f0e038166..56253c9d3b0 100644
--- a/srcpkgs/libvirt-python/template
+++ b/srcpkgs/libvirt-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libvirt-python'
 pkgname=libvirt-python
 version=5.8.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="libvirt.py libvirt_lxc.py libvirt_qemu.py"
 hostmakedepends="pkg-config python-devel python3-devel libvirt-devel"

From 5e9842585a68fb832637cdd1b5adcd50bc48841b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 703/872] libvoikko: rebuild for Python 3.8.

---
 srcpkgs/libvoikko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvoikko/template b/srcpkgs/libvoikko/template
index 8d21b0f9c71..ba8eef837ee 100644
--- a/srcpkgs/libvoikko/template
+++ b/srcpkgs/libvoikko/template
@@ -1,7 +1,7 @@
 # Template file for 'libvoikko'
 pkgname=libvoikko
 version=4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-hfst=false --with-dictionary-path=/usr/share/voikko"
 pycompile_module="libvoikko.py"

From 8141b26019c7a2414b15fcf8b8672eb24047f49d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 704/872] libxml2-python: rebuild for Python 3.8.

---
 srcpkgs/libxml2-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libxml2-python/template b/srcpkgs/libxml2-python/template
index a80208823c2..5514ed43437 100644
--- a/srcpkgs/libxml2-python/template
+++ b/srcpkgs/libxml2-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libxml2-python'
 pkgname=libxml2-python
 version=2.9.9
-revision=3
+revision=4
 wrksrc="${pkgname%-python}-${version}"
 build_wrksrc=python
 build_style=python-module

From 70f5881f1b341100ddc517ba0f4b54e161303165 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 705/872] lightdm-gtk-greeter-settings: rebuild for Python 3.8.

---
 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 715f41bbef4..76a25b91e4c 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=1
+revision=2
 build_style=python3-module
 pycompile_module="lightdm_gtk_greeter_settings"
 hostmakedepends="python3-distutils-extra intltool"

From 04c380043914f79a0c6cd3199748bb0fb2e37967 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 706/872] llvm9: rebuild for Python 3.8.

---
 srcpkgs/llvm9/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/llvm9/template b/srcpkgs/llvm9/template
index 3c1a1a3451b..890a93855d8 100644
--- a/srcpkgs/llvm9/template
+++ b/srcpkgs/llvm9/template
@@ -1,7 +1,7 @@
 # Template file for 'llvm9'
 pkgname=llvm9
 version=9.0.0
-revision=2
+revision=3
 wrksrc="llvm-${version}.src"
 build_style=cmake
 configure_args="

From 4778e7a0c73ffa2fae833fee20ac790fef99fff9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 707/872] lollypop: rebuild for Python 3.8.

---
 srcpkgs/lollypop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lollypop/template b/srcpkgs/lollypop/template
index 56ace773bf3..3bd13c0d387 100644
--- a/srcpkgs/lollypop/template
+++ b/srcpkgs/lollypop/template
@@ -1,7 +1,7 @@
 # Template file for 'lollypop'
 pkgname=lollypop
 version=1.1.4.16
-revision=1
+revision=2
 # Gitlab upload tag hash
 _uhash=6b4e4e7a2c17f0770c1e2b3354ae5a3a
 archs=noarch

From 6041a22c11224f7e771c92e9f61adf7eaf37450a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 708/872] lutris: rebuild for Python 3.8.

---
 srcpkgs/lutris/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lutris/template b/srcpkgs/lutris/template
index 8f54d693a12..75be521cc7c 100644
--- a/srcpkgs/lutris/template
+++ b/srcpkgs/lutris/template
@@ -1,7 +1,7 @@
 # Template file for 'lutris'
 pkgname=lutris
 version=0.5.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 build_helper="gir"

From 768559bee2d66197ffebf07de70d31e1098fe2a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 709/872] magic-wormhole: rebuild for Python 3.8.

---
 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 c07753ce6ad..d93a1bbe1fc 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.11.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wormhole"

From 2a5b126fdf712642756c4d70a6a679f4479b504c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 710/872] mate-tweak: rebuild for Python 3.8.

---
 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 85b829e85e8..76b79524269 100644
--- a/srcpkgs/mate-tweak/template
+++ b/srcpkgs/mate-tweak/template
@@ -1,7 +1,7 @@
 # Template file for 'mate-tweak'
 pkgname=mate-tweak
 version=19.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-pbr python3-setuptools"

From 2717d85b6903ce0f45484d5f051e477d27e68ff3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 711/872] med: rebuild for Python 3.8.

---
 srcpkgs/med/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/med/template b/srcpkgs/med/template
index 34dd6d006d6..acd79293246 100644
--- a/srcpkgs/med/template
+++ b/srcpkgs/med/template
@@ -1,7 +1,7 @@
 # Template file for 'med'
 pkgname=med
 version=4.0.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--with-swig=yes --includedir=/usr/include/med"
 pycompile_module=med

From e6073b9b26be31845b922008dc6d5083ec2516e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 712/872] meld: rebuild for Python 3.8.

---
 srcpkgs/meld/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meld/template b/srcpkgs/meld/template
index 9ed6114299e..7cbac065ce6 100644
--- a/srcpkgs/meld/template
+++ b/srcpkgs/meld/template
@@ -1,7 +1,7 @@
 # Template file for 'meld'
 pkgname=meld
 version=3.20.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="meld"

From 30bbbb75eda44c4dfeac15c27223fe671d4703ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 713/872] menulibre: rebuild for Python 3.8.

---
 srcpkgs/menulibre/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/menulibre/template b/srcpkgs/menulibre/template
index 64311115bec..f16c5f64337 100644
--- a/srcpkgs/menulibre/template
+++ b/srcpkgs/menulibre/template
@@ -1,7 +1,7 @@
 # Template file for 'menulibre'
 pkgname=menulibre
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="menulibre menulibre_lib"

From 7f5fb6f6a41e18474dce397f36f38f5cce8f9eca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 714/872] meson-cmake-wrapper: rebuild for Python 3.8.

---
 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 ca14e533431..57eea159ca8 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mcw"

From 2c4c7008df31cd5ec9699fe3aba2f53facd423e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 715/872] mimeo: rebuild for Python 3.8.

---
 srcpkgs/mimeo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mimeo/template b/srcpkgs/mimeo/template
index bef8dcde863..991c61d9df8 100644
--- a/srcpkgs/mimeo/template
+++ b/srcpkgs/mimeo/template
@@ -1,7 +1,7 @@
 # Template file for 'mimeo'
 pkgname=mimeo
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="Mimeo.py"

From 533400db8d1d7673cb8a5b187cf4510495a5d6fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 716/872] mozo: rebuild for Python 3.8.

---
 srcpkgs/mozo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template
index 041f2454c3d..7bc18f017c7 100644
--- a/srcpkgs/mozo/template
+++ b/srcpkgs/mozo/template
@@ -1,7 +1,7 @@
 # Template file for 'mozo'
 pkgname=mozo
 version=1.22.2
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="Mozo"

From 79476ba290c89d038ce38a9ed875bed6b5bf69e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 717/872] mpd-sima: rebuild for Python 3.8.

---
 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 fb72f0d2632..831fec709b7 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=1
+revision=2
 archs=noarch
 wrksrc="MPD_sima-${version}"
 build_style=python3-module

From 9d547673ab95e2aeb2d2405f6fff480cbd9afa5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 718/872] mps-youtube: rebuild for Python 3.8.

---
 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 7b104aa706f..2141b3e627d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mps_youtube"

From 8e1db2d48466dc2bdc06e1330eeefaa727da6356 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 719/872] mugshot: rebuild for Python 3.8.

---
 srcpkgs/mugshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mugshot/template b/srcpkgs/mugshot/template
index cf27b30acac..1e695654a86 100644
--- a/srcpkgs/mugshot/template
+++ b/srcpkgs/mugshot/template
@@ -1,7 +1,7 @@
 # Template file for 'mugshot'
 pkgname=mugshot
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra"

From dd0ad3b8c52088d1809fd214b32ed7b0acdd2f66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 720/872] multibootusb: rebuild for Python 3.8.

---
 srcpkgs/multibootusb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/multibootusb/template b/srcpkgs/multibootusb/template
index 049b641c5fd..70cb07a85ac 100644
--- a/srcpkgs/multibootusb/template
+++ b/srcpkgs/multibootusb/template
@@ -1,7 +1,7 @@
 # Template file for 'multibootusb'
 pkgname=multibootusb
 version=9.2.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="scripts"

From 85356b30501f219e78afd8cb95f1a6cb09193ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 721/872] mymcplus: rebuild for Python 3.8.

---
 srcpkgs/mymcplus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mymcplus/template b/srcpkgs/mymcplus/template
index 369ac8048ed..f30c62b09f4 100644
--- a/srcpkgs/mymcplus/template
+++ b/srcpkgs/mymcplus/template
@@ -1,7 +1,7 @@
 # Template file for 'mymcplus'
 pkgname=mymcplus
 version=3.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mymcplus"

From f10ceae15759ab2c42d786a23926a759967abb41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 722/872] nagstamon: fix and rebuild for Python 3.8.

---
 srcpkgs/nagstamon/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/nagstamon/template b/srcpkgs/nagstamon/template
index 3a63bb5f1d9..0eb5bc75d27 100644
--- a/srcpkgs/nagstamon/template
+++ b/srcpkgs/nagstamon/template
@@ -1,7 +1,7 @@
 # Template file for 'nagstamon'
 pkgname=nagstamon
 version=3.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=Nagstamon
 build_style=python3-module
@@ -16,6 +16,10 @@ homepage="https://nagstamon.ifw-dresden.de"
 distfiles="https://nagstamon.ifw-dresden.de/files/stable/Nagstamon-${version}.tar.gz"
 checksum=a834460e78dc01f62171a83c4a11d890702264ed662863dff39edaf14ae98880
 
+post_extract() {
+	# Gone in python 3.8, but these where the python 3.6 values.  ;)
+	vsed -i -e 's/platform.dist()/("","","")/g' setup.py
+}
 post_install() {
 	chmod 644 ${DESTDIR}/usr/share/pixmaps/nagstamon.svg
 	mv -v ${DESTDIR}/usr/bin/nagstamon.py ${DESTDIR}/usr/bin/nagstamon

From 52acf83950d25bcf72b3fc81796436543c409ce8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 723/872] neovim-remote: rebuild for Python 3.8.

---
 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 d8473bf0521..7391f9df2ee 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.2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nvr"

From ae77cba0468f1ab1fe3e89bf758d2d153c6b8725 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 724/872] newt: rebuild for Python 3.8.

---
 srcpkgs/newt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/newt/template b/srcpkgs/newt/template
index 3971bbfdbf7..25ccc946f51 100644
--- a/srcpkgs/newt/template
+++ b/srcpkgs/newt/template
@@ -1,7 +1,7 @@
 # Template file for 'newt'
 pkgname=newt
 version=0.52.21
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python-devel python3-devel"
 makedepends="slang-devel popt-devel python3-devel python-devel"

From 5d77f30f98b4d84c2807418deb840acda4016790 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 725/872] notmuch: rebuild for Python 3.8.

---
 srcpkgs/notmuch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/notmuch/template b/srcpkgs/notmuch/template
index ced670a59d4..a3085fd4c27 100644
--- a/srcpkgs/notmuch/template
+++ b/srcpkgs/notmuch/template
@@ -1,7 +1,7 @@
 # Template file for 'notmuch'
 pkgname=notmuch
 version=0.29.1
-revision=1
+revision=2
 hostmakedepends="perl pkg-config python-devel python3-Sphinx python3-devel"
 makedepends="bash-completion gmime3-devel talloc-devel xapian-core-devel"
 short_desc="Thread-based email index, search, and tagging"

From 2a004663318b9be9e0b13e69c2f89b9682ece8e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 726/872] nyx: rebuild for Python 3.8.

---
 srcpkgs/nyx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/nyx/template b/srcpkgs/nyx/template
index 201ab5856ff..4b265771793 100644
--- a/srcpkgs/nyx/template
+++ b/srcpkgs/nyx/template
@@ -1,7 +1,7 @@
 # Template file for 'nyx'
 pkgname=nyx
 version=2.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nyx"

From 9ff1df8e1d687a5a38d373d51d32e4e428dbe286 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 727/872] olm-python: rebuild for Python 3.8.

---
 srcpkgs/olm-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/olm-python/template b/srcpkgs/olm-python/template
index 57ac1cfa01b..0141611ea3f 100644
--- a/srcpkgs/olm-python/template
+++ b/srcpkgs/olm-python/template
@@ -1,7 +1,7 @@
 # Template file for 'olm-python'
 pkgname=olm-python
 version=3.1.4
-revision=1
+revision=2
 wrksrc="olm-${version}"
 build_wrksrc=python
 build_style=python-module

From b5b9070e7d35511535cee5a401bcdb4ea6359959 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 728/872] onboard: rebuild for Python 3.8.

---
 srcpkgs/onboard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onboard/template b/srcpkgs/onboard/template
index 844744038d8..467ed8f0ea5 100644
--- a/srcpkgs/onboard/template
+++ b/srcpkgs/onboard/template
@@ -1,7 +1,7 @@
 # Template file for 'onboard'
 pkgname=onboard
 version=1.4.1
-revision=4
+revision=5
 build_style=python3-module
 pycompile_module="Onboard"
 patch_args="-Np1"

From c23e1317c4a493f2967ade1da8cf6eb9806b2066 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 729/872] openrazer-meta: rebuild for Python 3.8.

---
 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 112cb9e900b..60dc8212a73 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=2
+revision=3
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 0c8dabe0616d85f801dfefea1b22748ee6055bdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 730/872] openshot: rebuild for Python 3.8.

---
 srcpkgs/openshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/openshot/template b/srcpkgs/openshot/template
index 605ea7305c2..d71b4d09fae 100644
--- a/srcpkgs/openshot/template
+++ b/srcpkgs/openshot/template
@@ -1,7 +1,7 @@
 # Template file for 'openshot'
 pkgname=openshot
 version=2.4.4
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 wrksrc="${pkgname}-qt-${version}"
 build_style=python3-module

From e14cf6e0c5c985078aade34a1f21446e153dbeed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 731/872] orca: rebuild for Python 3.8.

---
 srcpkgs/orca/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/orca/template b/srcpkgs/orca/template
index ac1c0e1dc0e..57d1495c10a 100644
--- a/srcpkgs/orca/template
+++ b/srcpkgs/orca/template
@@ -1,7 +1,7 @@
 # Template file for 'orca'
 pkgname=orca
 version=3.34.0
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="orca"

From ef83881d95547fbaa4f216958aa7f49b0b2c98b3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 732/872] papis: rebuild for Python 3.8.

---
 srcpkgs/papis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/papis/template b/srcpkgs/papis/template
index 95044b2a6a4..d99f358fc0d 100644
--- a/srcpkgs/papis/template
+++ b/srcpkgs/papis/template
@@ -1,7 +1,7 @@
 # Template file for 'papis'
 pkgname=papis
 version=0.8
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-requests python3-yaml python3-chardet python3-BeautifulSoup4

From 19426200e7bc7017a4677c4484f21f3c50753bf3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 733/872] paraview: rebuild for Python 3.8.

---
 srcpkgs/paraview/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/paraview/template b/srcpkgs/paraview/template
index 3b721b1833a..feb1c6ad9d9 100644
--- a/srcpkgs/paraview/template
+++ b/srcpkgs/paraview/template
@@ -1,7 +1,7 @@
 # Template file for 'paraview'
 pkgname=paraview
 version=5.6.1
-revision=1
+revision=2
 wrksrc=ParaView-v${version}
 build_style=cmake
 configure_args="-DPARAVIEW_ENABLE_FFMPEG=ON

From 59418f99dab295be136d845489fb9be0808502ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 734/872] pass-git-helper: rebuild for Python 3.8.

---
 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 dfeed3ba4f0..6d7f25bd8a7 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.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 0e5b3ff5c7325f87724ab65db42f3b6bc206de5d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 735/872] peframe: rebuild for Python 3.8.

---
 srcpkgs/peframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peframe/template b/srcpkgs/peframe/template
index b9d64f7a5a6..5ecede6cf56 100644
--- a/srcpkgs/peframe/template
+++ b/srcpkgs/peframe/template
@@ -1,7 +1,7 @@
 # Template file for 'peframe'
 pkgname=peframe
 version=6.0.3
-revision=1
+revision=2
 archs=noarch
 build_style="python3-module"
 pycompile_module="peframe"

From 75d45b4f04e1fb2840ff323ca8d046618d568ef0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 736/872] peru: rebuild for Python 3.8.

---
 srcpkgs/peru/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peru/template b/srcpkgs/peru/template
index 682440f0b50..10d4689338d 100644
--- a/srcpkgs/peru/template
+++ b/srcpkgs/peru/template
@@ -1,7 +1,7 @@
 # Template file for 'peru'
 pkgname=peru
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="peru"

From 5e93ec69ed5809d9d90e182d4877d50a76d0d1f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 737/872] pgcli: rebuild for Python 3.8.

---
 srcpkgs/pgcli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index b967287e9cb..b187a0a4440 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,7 +1,7 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pgcli"

From 503ab0dc705126de83742fc162807eee6ba6abc5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 738/872] picard: rebuild for Python 3.8.

---
 srcpkgs/picard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/picard/template b/srcpkgs/picard/template
index 1bae142434a..08404a88475 100644
--- a/srcpkgs/picard/template
+++ b/srcpkgs/picard/template
@@ -1,7 +1,7 @@
 # Template file for 'picard'
 pkgname=picard
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname}-release-${version}"
 build_style=python3-module

From 4bc74c52012b010f4a6868916399415cb549ac03 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 739/872] piper: rebuild for Python 3.8.

---
 srcpkgs/piper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/piper/template b/srcpkgs/piper/template
index af8cc854991..91a31131f84 100644
--- a/srcpkgs/piper/template
+++ b/srcpkgs/piper/template
@@ -1,7 +1,7 @@
 # Template file for 'piper'
 pkgname=piper
 version=0.2.904
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 hostmakedepends="libratbag pkg-config glib-devel"

From 42ecbdbd06cecacd65a3bf53f7ab45bd25a336c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 740/872] playitslowly: rebuild for Python 3.8.

---
 srcpkgs/playitslowly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/playitslowly/template b/srcpkgs/playitslowly/template
index d26cea3510a..6d3483ae251 100644
--- a/srcpkgs/playitslowly/template
+++ b/srcpkgs/playitslowly/template
@@ -1,7 +1,7 @@
 # Template file for 'playitslowly'
 pkgname=playitslowly
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From d2e82f0e5981ebb4285cfd2409988c29e913a965 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 741/872] pmbootstrap: rebuild for Python 3.8.

---
 srcpkgs/pmbootstrap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pmbootstrap/template b/srcpkgs/pmbootstrap/template
index 1bfa8183a84..15e606439c2 100644
--- a/srcpkgs/pmbootstrap/template
+++ b/srcpkgs/pmbootstrap/template
@@ -1,7 +1,7 @@
 # Template file for 'pmbootstrap'
 pkgname=pmbootstrap
 version=1.9.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pmb"

From 47600e0ab86689c4a6f0579bf3fa94b0f2accb42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 742/872] pockyt: fix and rebuild for Python 3.8.

---
 srcpkgs/pockyt/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/pockyt/template b/srcpkgs/pockyt/template
index 760573904b1..ff12361d443 100644
--- a/srcpkgs/pockyt/template
+++ b/srcpkgs/pockyt/template
@@ -1,7 +1,7 @@
 # Template file for 'pockyt'
 pkgname=pockyt
 version=1.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -13,3 +13,7 @@ license="GPL-3.0-or-later"
 homepage="https://github.com/arvindch/pockyt"
 distfiles="${homepage}/archive/${version}.tar.gz"
 checksum=cd9561e126a6a01c73762639eb7e38b8c509ed1412f72fcc4729b12565b9962c
+
+post_extract() {
+	sed -i 's/(3, 7)/&, (3, 8)/' setup.py
+}

From 745917b64a29acb44c59c16f84cd1da19242b9da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 743/872] poezio: rebuild for Python 3.8.

---
 srcpkgs/poezio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/poezio/template b/srcpkgs/poezio/template
index 56f8138bb5e..4b318419dab 100644
--- a/srcpkgs/poezio/template
+++ b/srcpkgs/poezio/template
@@ -1,7 +1,7 @@
 # Template file for 'poezio'
 pkgname=poezio
 version=0.12.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="poezio poezio_plugins poezio_themes"
 hostmakedepends="python3-setuptools pkg-config"

From f08563dc5e2ca3a4f512faef50f8d610a44a5417 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 744/872] protontricks: rebuild for Python 3.8.

---
 srcpkgs/protontricks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/protontricks/template b/srcpkgs/protontricks/template
index a32f51c4845..dc003b63690 100644
--- a/srcpkgs/protontricks/template
+++ b/srcpkgs/protontricks/template
@@ -1,7 +1,7 @@
 # Template file for 'protontricks'
 pkgname=protontricks
 version=1.2.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-setuptools"

From 84d15a48851048231bdb7cf8c4b12bac191edc81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 745/872] pulseaudio-equalizer-ladspa: rebuild for Python 3.8.

---
 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 62d7eef2a65..10198de2c08 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=1
+revision=2
 wrksrc="equalizer-${version}"
 build_style=meson
 pycompile_module="pulseeq"

From cbc413860bce0c1bc2bc870cfca1d78b08a3c70d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 746/872] pulseeffects: rebuild for Python 3.8.

---
 srcpkgs/pulseeffects/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pulseeffects/template b/srcpkgs/pulseeffects/template
index 7fc44f938d9..dc9044cad32 100644
--- a/srcpkgs/pulseeffects/template
+++ b/srcpkgs/pulseeffects/template
@@ -2,7 +2,7 @@
 pkgname=pulseeffects
 reverts="4.3.4_1"
 version=3.2.3
-revision=3
+revision=4
 build_style=meson
 pycompile_module="PulseEffects PulseEffectsTest"
 hostmakedepends="pkg-config"

From fa82c60121a5038222e25f989a117e9b66fed5ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 747/872] py3status: rebuild for Python 3.8.

---
 srcpkgs/py3status/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/py3status/template b/srcpkgs/py3status/template
index b7a263270e4..01709cfd14d 100644
--- a/srcpkgs/py3status/template
+++ b/srcpkgs/py3status/template
@@ -1,7 +1,7 @@
 # Template file for 'py3status'
 pkgname=py3status
 version=3.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="py3status"

From 99e46cbedac8347b78860a72942ecf8b994755fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 748/872] pychess: rebuild for Python 3.8.

---
 srcpkgs/pychess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pychess/template b/srcpkgs/pychess/template
index 2c6ecef7bf9..d0594aa77f4 100644
--- a/srcpkgs/pychess/template
+++ b/srcpkgs/pychess/template
@@ -1,7 +1,7 @@
 # Template file for 'pychess'
 pkgname=pychess
 version=0.12.4
-revision=2
+revision=3
 build_style=python3-module
 pycompile_module="pychess"
 archs=noarch

From f5d5094b4231a3151651e50c8c143d0faac48182 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 749/872] pycp: rebuild for Python 3.8.

---
 srcpkgs/pycp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pycp/template b/srcpkgs/pycp/template
index 770eb50d3f4..c9066259862 100644
--- a/srcpkgs/pycp/template
+++ b/srcpkgs/pycp/template
@@ -1,7 +1,7 @@
 # Template file for 'pycp'
 pkgname=pycp
 version=8.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pycp"

From a9316abb40ad6656f8b70d2be897d05e92e2c445 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 750/872] pymol: rebuild for Python 3.8.

---
 srcpkgs/pymol/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pymol/template b/srcpkgs/pymol/template
index 428ba7a6deb..e1031f325c0 100644
--- a/srcpkgs/pymol/template
+++ b/srcpkgs/pymol/template
@@ -1,7 +1,7 @@
 # Template file for 'pymol'
 pkgname=pymol
 version=2.3.0
-revision=1
+revision=2
 wrksrc=${pkgname}-open-source-${version}
 build_style="python3-module"
 makedepends="msgpack-devel python3-numpy freetype-devel libfreeglut-devel glew-devel

From f09d5d387905ce01cc34d50614432404592d57ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 751/872] pyradio: rebuild for Python 3.8.

---
 srcpkgs/pyradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyradio/template b/srcpkgs/pyradio/template
index 10d7d8c6fbb..d2d5feddbdd 100644
--- a/srcpkgs/pyradio/template
+++ b/srcpkgs/pyradio/template
@@ -1,7 +1,7 @@
 # Template file for 'pyradio'
 pkgname=pyradio
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pyradio"

From 5af42ef74126dd9fa795a2c842839cb8887e135e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 752/872] pyside2-tools: rebuild for Python 3.8.

---
 srcpkgs/pyside2-tools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyside2-tools/template b/srcpkgs/pyside2-tools/template
index 4ba0044452d..0a153de8c15 100644
--- a/srcpkgs/pyside2-tools/template
+++ b/srcpkgs/pyside2-tools/template
@@ -1,7 +1,7 @@
 # Template file for 'pyside2-tools'
 pkgname=pyside2-tools
 version=5.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release

From cf86283fda94e4f7a37fec57a2dcaf7df2245af3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 753/872] pysolfc: rebuild for Python 3.8.

---
 srcpkgs/pysolfc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pysolfc/template b/srcpkgs/pysolfc/template
index 62eb90009af..1631e9619d3 100644
--- a/srcpkgs/pysolfc/template
+++ b/srcpkgs/pysolfc/template
@@ -1,7 +1,7 @@
 # Template file for 'pysolfc'
 pkgname=pysolfc
 version=2.6.4
-revision=2
+revision=3
 archs="noarch"
 wrksrc="PySolFC-${pkgname}-${version}"
 build_style=python3-module

From 18f662644a3a4f6bfc49b51d2dc3f1e9a8ceb35f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 754/872] pywal: rebuild for Python 3.8.

---
 srcpkgs/pywal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pywal/template b/srcpkgs/pywal/template
index 214a36698f2..98c4e1581e4 100644
--- a/srcpkgs/pywal/template
+++ b/srcpkgs/pywal/template
@@ -1,7 +1,7 @@
 # Template file for 'pywal'
 pkgname=pywal
 version=3.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pywal"

From 4c664b23fcf828761b2ff29730bc7e3af37661c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 755/872] qomui: rebuild for Python 3.8.

---
 srcpkgs/qomui/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qomui/template b/srcpkgs/qomui/template
index 4e68864252d..8063350ba06 100644
--- a/srcpkgs/qomui/template
+++ b/srcpkgs/qomui/template
@@ -1,7 +1,7 @@
 # Template file for 'qomui'
 pkgname=qomui
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qomui"

From 03e5c0a83dec6db85793336fd91d43a3315b7531 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 756/872] quodlibet: rebuild for Python 3.8.

---
 srcpkgs/quodlibet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/quodlibet/template b/srcpkgs/quodlibet/template
index 53f6e926315..4b0c4ba0de5 100644
--- a/srcpkgs/quodlibet/template
+++ b/srcpkgs/quodlibet/template
@@ -1,7 +1,7 @@
 # Template file for 'quodlibet'
 pkgname=quodlibet
 version=4.2.1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="quodlibet"

From c25e7bf98d74e4f70a1f6e97496153c062556e8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 757/872] qutebrowser: rebuild for Python 3.8.

---
 srcpkgs/qutebrowser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qutebrowser/template b/srcpkgs/qutebrowser/template
index 11b74e4445d..07257c2d84b 100644
--- a/srcpkgs/qutebrowser/template
+++ b/srcpkgs/qutebrowser/template
@@ -1,7 +1,7 @@
 # Template file for 'qutebrowser'
 pkgname=qutebrowser
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qutebrowser"

From 9678b64e70e0cf110e0a1db321fa5dbdce069073 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 758/872] r128gain: rebuild for Python 3.8.

---
 srcpkgs/r128gain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/r128gain/template b/srcpkgs/r128gain/template
index cdea955828e..1cb30c786f8 100644
--- a/srcpkgs/r128gain/template
+++ b/srcpkgs/r128gain/template
@@ -1,7 +1,7 @@
 # Template file for 'r128gain'
 pkgname=r128gain
 version=0.9.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="r128gain"
 hostmakedepends="python3-setuptools"

From 873c796a91a43930919a30f0f31fd6a702c088bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 759/872] radicale2: rebuild for Python 3.8.

---
 srcpkgs/radicale2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/radicale2/template b/srcpkgs/radicale2/template
index 0d8a27d89f3..310bc8cb3cf 100644
--- a/srcpkgs/radicale2/template
+++ b/srcpkgs/radicale2/template
@@ -1,7 +1,7 @@
 # Template file for 'radicale2'
 pkgname=radicale2
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module

From b76ee93222f7fee174ae63614a9a1da3eab43836 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 760/872] ranger: rebuild for Python 3.8.

---
 srcpkgs/ranger/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template
index a387eac4ed7..a49716971a5 100644
--- a/srcpkgs/ranger/template
+++ b/srcpkgs/ranger/template
@@ -1,7 +1,7 @@
 # Template file for 'ranger'
 pkgname=ranger
 version=1.9.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ranger"

From ed185ddba5a93855623b432a9a412429a2bfb7a6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 761/872] rednotebook: rebuild for Python 3.8.

---
 srcpkgs/rednotebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rednotebook/template b/srcpkgs/rednotebook/template
index ac870a7a992..af7dea12fd5 100644
--- a/srcpkgs/rednotebook/template
+++ b/srcpkgs/rednotebook/template
@@ -1,7 +1,7 @@
 # Template file for 'rednotebook'
 pkgname=rednotebook
 version=2.11.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rednotebook"

From 0daed8f8c77c9fee93dd7e9546d5383fb2e71ae2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 762/872] redshift: rebuild for Python 3.8.

---
 srcpkgs/redshift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/redshift/template b/srcpkgs/redshift/template
index bb31e7cec05..c58b8daeb76 100644
--- a/srcpkgs/redshift/template
+++ b/srcpkgs/redshift/template
@@ -1,7 +1,7 @@
 # Template file for 'redshift'
 pkgname=redshift
 version=1.12
-revision=1
+revision=2
 build_style=gnu-configure
 build_options="geoclue2"
 configure_args="--enable-gui --disable-geoclue $(vopt_enable geoclue2)"

From d3b85a8c2fef29f44fa480dc19854bbd4707011d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 763/872] ripe-atlas-tools: rebuild for Python 3.8.

---
 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 c8eef786962..c5e21c4b8dc 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=2.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ripe/atlas/tools"

From 4250c8ac7b20cc84032ce0fbb3bf17c511f5bf80 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 764/872] rmlint: rebuild for Python 3.8.

---
 srcpkgs/rmlint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rmlint/template b/srcpkgs/rmlint/template
index dc8d904d0c2..894a9a1dd01 100644
--- a/srcpkgs/rmlint/template
+++ b/srcpkgs/rmlint/template
@@ -1,7 +1,7 @@
 # Template file for 'rmlint'
 pkgname=rmlint
 version=2.9.0
-revision=1
+revision=2
 build_style=scons
 hostmakedepends="pkg-config python3-Sphinx glib-devel"
 makedepends="libblkid-devel elfutils-devel json-glib-devel"

From 2afa5a195821c3a789d98e4c9d2154f02bf90e43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 765/872] rtv: rebuild for Python 3.8.

---
 srcpkgs/rtv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rtv/template b/srcpkgs/rtv/template
index 1a089e3e88d..1fc137b2e5b 100644
--- a/srcpkgs/rtv/template
+++ b/srcpkgs/rtv/template
@@ -1,7 +1,7 @@
 # Template file for 'rtv'
 pkgname=rtv
 version=1.27.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rtv"

From e55f932cc929409d82f0298d09eeb270ea1ffc8e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 766/872] rubber: rebuild for Python 3.8.

---
 srcpkgs/rubber/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rubber/template b/srcpkgs/rubber/template
index cf668638cef..c7fe4cbbd06 100644
--- a/srcpkgs/rubber/template
+++ b/srcpkgs/rubber/template
@@ -1,7 +1,7 @@
 # Template file for 'rubber'
 pkgname=rubber
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From 3fa1e2b5550ecad5ab2bf113dbbc42f09e9f6a8e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 767/872] safeeyes: rebuild for Python 3.8.

---
 srcpkgs/safeeyes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/safeeyes/template b/srcpkgs/safeeyes/template
index bc35f302011..e7019662316 100644
--- a/srcpkgs/safeeyes/template
+++ b/srcpkgs/safeeyes/template
@@ -1,7 +1,7 @@
 # Template file for 'safeeyes'
 pkgname=safeeyes
 version=2.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="safeeyes"

From b46de00cb6f8b626b115a68ac9f93ffc53f59fdb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 768/872] scapy: rebuild for Python 3.8.

---
 srcpkgs/scapy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scapy/template b/srcpkgs/scapy/template
index 65242f332a8..36972bfd461 100644
--- a/srcpkgs/scapy/template
+++ b/srcpkgs/scapy/template
@@ -1,7 +1,7 @@
 # Template file for 'scapy'
 pkgname=scapy
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="scapy"

From 30a99ae5725d1a482bed5defbe883b897f1d2822 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 769/872] screenplain: rebuild for Python 3.8.

---
 srcpkgs/screenplain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/screenplain/template b/srcpkgs/screenplain/template
index 8410ab45e40..8eb759ae6a6 100644
--- a/srcpkgs/screenplain/template
+++ b/srcpkgs/screenplain/template
@@ -1,7 +1,7 @@
 # Template file for 'screenplain'
 pkgname=screenplain
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenplain"

From 5c98d72e60aaab3cde6775faa81915104c394306 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 770/872] scudcloud: rebuild for Python 3.8.

---
 srcpkgs/scudcloud/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
index 1b9f5f27d8a..1ab2618066e 100644
--- a/srcpkgs/scudcloud/template
+++ b/srcpkgs/scudcloud/template
@@ -1,7 +1,7 @@
 # Template file for 'scudcloud'
 pkgname=scudcloud
 version=1.65
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="scudcloud"
 hostmakedepends="python3-setuptools"

From 6f3ad68b2aa6c33de5221f19c8a8a27f313472fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 771/872] seafile-libclient: rebuild for Python 3.8.

---
 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 47c49d5ceb2..5eda59c1041 100644
--- a/srcpkgs/seafile-libclient/template
+++ b/srcpkgs/seafile-libclient/template
@@ -1,7 +1,7 @@
 # Template file for 'seafile-libclient'
 pkgname=seafile-libclient
 version=7.0.2
-revision=1
+revision=2
 _distname="${pkgname/-libclient/}"
 wrksrc="${_distname}-${version}"
 build_style=gnu-configure

From 2303111b6c6b5ea883a09c17f897a0a16b40fc4e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 772/872] sonata: rebuild for Python 3.8.

---
 srcpkgs/sonata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template
index 3e07610d1e5..fc2d86e6c1a 100644
--- a/srcpkgs/sonata/template
+++ b/srcpkgs/sonata/template
@@ -1,7 +1,7 @@
 # Template file for 'sonata'
 pkgname=sonata
 version=1.7b1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="sonata"

From 6da1a72c9755a57a393427057bbffef56f8ac5fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 773/872] speech-dispatcher: rebuild for Python 3.8.

---
 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 0c27951586a..39cebf1f320 100644
--- a/srcpkgs/speech-dispatcher/template
+++ b/srcpkgs/speech-dispatcher/template
@@ -1,7 +1,7 @@
 # Template build file for 'speech-dispatcher'.
 pkgname=speech-dispatcher
 version=0.8.8
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static"
 short_desc="High-level device independent layer for speech synthesis interface"

From fa28f31d859e28c01dc74c0793a150b2c2b36c10 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 774/872] speedtest-cli: rebuild for Python 3.8.

---
 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 6746ea3a35e..c65d9fd631d 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.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="speedtest.py"

From 7bff7cb445f033116d28442afd0c27064fd0b1ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 775/872] sshuttle: rebuild for Python 3.8.

---
 srcpkgs/sshuttle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sshuttle/template b/srcpkgs/sshuttle/template
index e74d90171f2..04bae9a15c3 100644
--- a/srcpkgs/sshuttle/template
+++ b/srcpkgs/sshuttle/template
@@ -1,7 +1,7 @@
 # Template file for 'sshuttle'
 pkgname=sshuttle
 version=0.78.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="sshuttle"

From 2b75e1514f9248b3fcaa9618d5a4c46859d91a51 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 776/872] sssd: rebuild for Python 3.8.

---
 srcpkgs/sssd/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sssd/template b/srcpkgs/sssd/template
index 2ea28d21bee..13d0da0ba99 100644
--- a/srcpkgs/sssd/template
+++ b/srcpkgs/sssd/template
@@ -1,7 +1,7 @@
 # Template file for 'sssd'
 pkgname=sssd
 version=2.0.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-selinux --without-semanage
  --disable-cifs-idmap-plugin --without-samba --with-os=fedora

From c2df06d9cfb97462622a79c0f7d10a3630523dbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 777/872] stcgal: rebuild for Python 3.8.

---
 srcpkgs/stcgal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stcgal/template b/srcpkgs/stcgal/template
index 3410ccf8678..d75e88837cc 100644
--- a/srcpkgs/stcgal/template
+++ b/srcpkgs/stcgal/template
@@ -1,7 +1,7 @@
 # Template file for 'stcgal'
 pkgname=stcgal
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="stcgal"

From e3d5cff6a1acb5184829736df4a75efd2ddc2939 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 778/872] stig: rebuild for Python 3.8.

---
 srcpkgs/stig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stig/template b/srcpkgs/stig/template
index 0777c5f0cc2..abe5f3b563c 100644
--- a/srcpkgs/stig/template
+++ b/srcpkgs/stig/template
@@ -1,7 +1,7 @@
 # Template file for 'stig'
 pkgname=stig
 version=0.10.1a
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From d9e0ce3c6ca93674e285abd5900ebf51c3d8afff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 779/872] streamlink: rebuild for Python 3.8.

---
 srcpkgs/streamlink/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/streamlink/template b/srcpkgs/streamlink/template
index abcdc12c4ac..59caa85dc8a 100644
--- a/srcpkgs/streamlink/template
+++ b/srcpkgs/streamlink/template
@@ -1,7 +1,7 @@
 # Template file for 'streamlink'
 pkgname=streamlink
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="streamlink streamlink_cli"

From 9545a515c312d91a04d0d2d8e97f12437044fa40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 780/872] subuser: rebuild for Python 3.8.

---
 srcpkgs/subuser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/subuser/template b/srcpkgs/subuser/template
index 50444246b29..0bc3e71db36 100644
--- a/srcpkgs/subuser/template
+++ b/srcpkgs/subuser/template
@@ -1,7 +1,7 @@
 # Template file for 'subuser'
 pkgname=subuser
 version=0.6.2
-revision=2
+revision=3
 archs="x86_64*"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 00c937d56ad1e2aec8b205dba5a9aefa78c49526 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 781/872] synapse: rebuild for Python 3.8.

---
 srcpkgs/synapse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template
index daae80e5792..0c0fd6841fb 100644
--- a/srcpkgs/synapse/template
+++ b/srcpkgs/synapse/template
@@ -1,7 +1,7 @@
 # Template file for 'synapse'
 pkgname=synapse
 version=1.3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From a08980caca6925b14c1b165cc93937700be71dde Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 782/872] tekaim: rebuild for Python 3.8.

---
 srcpkgs/tekaim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tekaim/template b/srcpkgs/tekaim/template
index e3cc5335ecc..bd60dcc57a6 100644
--- a/srcpkgs/tekaim/template
+++ b/srcpkgs/tekaim/template
@@ -1,7 +1,7 @@
 # Template file for 'tekaim'
 pkgname=tekaim
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From d890dd33d09e171c7a7cee354cc021b725451292 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 783/872] telepresence: rebuild for Python 3.8.

---
 srcpkgs/telepresence/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/telepresence/template b/srcpkgs/telepresence/template
index 17300f3b548..fa7f916f66f 100644
--- a/srcpkgs/telepresence/template
+++ b/srcpkgs/telepresence/template
@@ -1,7 +1,7 @@
 # Template file for 'telepresence'
 pkgname=telepresence
 version=0.102
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="telepresence"

From 809ad6584dfe919563065a0d6037d05100240167 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 784/872] termdown: rebuild for Python 3.8.

---
 srcpkgs/termdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/termdown/template b/srcpkgs/termdown/template
index 90a4a894d42..299de920389 100644
--- a/srcpkgs/termdown/template
+++ b/srcpkgs/termdown/template
@@ -1,7 +1,7 @@
 # Template file for 'termdown'
 pkgname=termdown
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="termdown.py"

From 16a5256631ad8647631c4bd0d433e6f5f3c917c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 785/872] terminal_markdown_viewer: rebuild for Python 3.8.

---
 srcpkgs/terminal_markdown_viewer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/terminal_markdown_viewer/template b/srcpkgs/terminal_markdown_viewer/template
index e5d0f38aae2..ba3fcfdc8d6 100644
--- a/srcpkgs/terminal_markdown_viewer/template
+++ b/srcpkgs/terminal_markdown_viewer/template
@@ -1,7 +1,7 @@
 # Template file for 'terminal_markdown_viewer'
 pkgname=terminal_markdown_viewer
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mdv"

From 8fa86b045c3460fc75215ea47cf0b2c589ec5e8b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 786/872] thefuck: rebuild for Python 3.8.

---
 srcpkgs/thefuck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thefuck/template b/srcpkgs/thefuck/template
index 714cd7982c7..a0de1c7b6a3 100644
--- a/srcpkgs/thefuck/template
+++ b/srcpkgs/thefuck/template
@@ -1,7 +1,7 @@
 # Template file for 'thefuck'
 pkgname=thefuck
 version=3.29
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="thefuck"

From cc6d1eec3b77cd13bf5833f6589a86f6aae6f8ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 787/872] thinkpad-scripts: rebuild for Python 3.8.

---
 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 8d26cf23e77..855d42492fb 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tps"

From 3c8de020f1c2c062d6268f1a5336328eeeefbcd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 788/872] thrift: rebuild for Python 3.8.

---
 srcpkgs/thrift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thrift/template b/srcpkgs/thrift/template
index 73b0f59d4f6..e379ac35a09 100644
--- a/srcpkgs/thrift/template
+++ b/srcpkgs/thrift/template
@@ -1,7 +1,7 @@
 # Template file for 'thrift'
 pkgname=thrift
 version=0.12.0
-revision=2
+revision=3
 build_style=gnu-configure
 makedepends="boost-devel libressl-devel"
 short_desc="Apache Thrift compiler"

From 324aa7ceb67702c22e78481ede2e6807738dd827 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 789/872] todoman: rebuild for Python 3.8.

---
 srcpkgs/todoman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/todoman/template b/srcpkgs/todoman/template
index 2e0489ff49e..676412b8d0b 100644
--- a/srcpkgs/todoman/template
+++ b/srcpkgs/todoman/template
@@ -1,7 +1,7 @@
 # Template file for 'todoman'
 pkgname=todoman
 version=3.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="todoman"

From 774a41521523b99b95857d3d27ce1c2fe22714a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 790/872] toot: rebuild for Python 3.8.

---
 srcpkgs/toot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template
index b6dcdc9ede6..7f9fac6ca01 100644
--- a/srcpkgs/toot/template
+++ b/srcpkgs/toot/template
@@ -1,7 +1,7 @@
 # Template file for 'toot'
 pkgname=toot
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="toot"

From 28d64d51bcffc428add93b5377bbf1efbe03d6c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 791/872] torbrowser-launcher: fix and rebuild for Python 3.8.

---
 srcpkgs/torbrowser-launcher/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/torbrowser-launcher/template b/srcpkgs/torbrowser-launcher/template
index a4aa707495c..4986b6b3240 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.2
-revision=1
+revision=2
 archs="i686 x86_64" # limited by Tor Browser itself
 build_style=python3-module
 pycompile_module="torbrowser_launcher"
@@ -15,6 +15,10 @@ changelog="https://raw.githubusercontent.com/micahflee/torbrowser-launcher/maste
 distfiles="https://github.com/micahflee/torbrowser-launcher/archive/v${version}.tar.gz"
 checksum=25ad4b0c70579628bf18f4cdcd18ac303fe4f7f1c590cc48df2a87651c92991c
 
+post_extract() { 
+	# Python 3.8 removed platform.dist()
+	sed -i 's/distro =.*/distro = "Void"/' setup.py
+}
 post_install() {
 	vlicense LICENSE
 	rm ${DESTDIR}/usr/share/locale/torbrowser-launcher.mo # installed twice

From 2c38590e3df050689c7c1447441a20d4cea3f52e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 792/872] tox: rebuild for Python 3.8.

---
 srcpkgs/tox/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tox/template b/srcpkgs/tox/template
index 8c6b63a3cb1..908cb86bb38 100644
--- a/srcpkgs/tox/template
+++ b/srcpkgs/tox/template
@@ -1,7 +1,7 @@
 # Template file for 'tox'
 pkgname=tox
 version=3.14.0
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="tox"
 hostmakedepends="python3-setuptools"

From f2dd191ed0a9f99e59952db0c15d93226a7bf5d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 793/872] trackma: rebuild for Python 3.8.

---
 srcpkgs/trackma/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/trackma/template b/srcpkgs/trackma/template
index 96833382346..4c29bb8a35d 100644
--- a/srcpkgs/trackma/template
+++ b/srcpkgs/trackma/template
@@ -1,7 +1,7 @@
 # Template file for 'trackma'
 pkgname=trackma
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 33027845956879b9967e82f78ec93eb89ccdbb67 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 794/872] trash-cli: rebuild for Python 3.8.

---
 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 2a08548c7c8..4ab724d8cb1 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.17.1.14
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3"

From 4eb7023381ba2f71c7856b572e53f87e66a5c43a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 795/872] tryton: rebuild for Python 3.8.

---
 srcpkgs/tryton/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tryton/template b/srcpkgs/tryton/template
index 196033361f6..61e0f733dc9 100644
--- a/srcpkgs/tryton/template
+++ b/srcpkgs/tryton/template
@@ -1,7 +1,7 @@
 # Template file for 'tryton'
 pkgname=tryton
 version=5.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tryton"

From 61b3464bedc43796966eab9a295630e11b20f510 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 796/872] tuimoji: rebuild for Python 3.8.

---
 srcpkgs/tuimoji/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuimoji/template b/srcpkgs/tuimoji/template
index 71e0bf540c0..73f5cff281f 100644
--- a/srcpkgs/tuimoji/template
+++ b/srcpkgs/tuimoji/template
@@ -1,7 +1,7 @@
 # Template file for 'tuimoji'
 pkgname=tuimoji
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tuimoji"

From 80e3d602a8ffb5e96f6382abd6b6a1a94bccde4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 797/872] tuir: rebuild for Python 3.8.

---
 srcpkgs/tuir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuir/template b/srcpkgs/tuir/template
index dfc0b15c535..a98f4484544 100644
--- a/srcpkgs/tuir/template
+++ b/srcpkgs/tuir/template
@@ -1,7 +1,7 @@
 # Template file for 'tuir'
 pkgname=tuir
 version=1.28.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=python3-module

From a05dee51ef0587f4581bdc503147dbc8d0fda34e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 798/872] tzupdate: rebuild for Python 3.8.

---
 srcpkgs/tzupdate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tzupdate/template b/srcpkgs/tzupdate/template
index 9531f0f7540..de2217476bd 100644
--- a/srcpkgs/tzupdate/template
+++ b/srcpkgs/tzupdate/template
@@ -1,7 +1,7 @@
 # Template file for 'tzupdate'
 pkgname=tzupdate
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tzupdate.py"

From 7036b1289a1ec41c19098983943b287f4a01761c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 799/872] udiskie: rebuild for Python 3.8.

---
 srcpkgs/udiskie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/udiskie/template b/srcpkgs/udiskie/template
index 536f4d5609d..06d58236046 100644
--- a/srcpkgs/udiskie/template
+++ b/srcpkgs/udiskie/template
@@ -1,7 +1,7 @@
 # Template file for 'udiskie'
 pkgname=udiskie
 version=1.7.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="udiskie"

From 9fd0c0e021419cd77de884b219a27876ab90fa72 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 800/872] ueberzug: rebuild for Python 3.8.

---
 srcpkgs/ueberzug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ueberzug/template b/srcpkgs/ueberzug/template
index e0c474ff63e..dfa1ab29d96 100644
--- a/srcpkgs/ueberzug/template
+++ b/srcpkgs/ueberzug/template
@@ -1,7 +1,7 @@
 # Template file for 'ueberzug'
 pkgname=ueberzug
 version=18.1.3
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel libX11-devel libXext-devel"

From c665443fcd0d0f3bcd9b0af8a2fee205a9c84cfa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 801/872] ufw: rebuild for Python 3.8.

---
 srcpkgs/ufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ufw/template b/srcpkgs/ufw/template
index ac7dfa45cdd..0bf2a3a0b76 100644
--- a/srcpkgs/ufw/template
+++ b/srcpkgs/ufw/template
@@ -1,7 +1,7 @@
 # Template file for 'ufw'
 pkgname=ufw
 version=0.36
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="ufw"

From 25de5e750f4874d7593206822c6f3799c9ca16b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 802/872] unicorn: rebuild for Python 3.8.

---
 srcpkgs/unicorn/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/unicorn/template b/srcpkgs/unicorn/template
index 317e261ae88..971d44752ca 100644
--- a/srcpkgs/unicorn/template
+++ b/srcpkgs/unicorn/template
@@ -1,7 +1,7 @@
 # Template file for 'unicorn'
 pkgname=unicorn
 version=1.0.1
-revision=2
+revision=3
 archs="x86_64* i686*"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"
 short_desc="Lightweight multi-platform, multi-architecture CPU emulator framework"

From 9e4dabd0b19bd79e690284ca3d8cbd44ead4aa7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 803/872] unknown-horizons: rebuild for Python 3.8.

---
 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 b5fc593b744..6e81970800d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3 intltool git python3-Pillow"

From 63b9392b25544b409a97e287fb27efb12f3826d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 804/872] urh: rebuild for Python 3.8.

---
 srcpkgs/urh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urh/template b/srcpkgs/urh/template
index 2cec83082fd..31f28bb366b 100644
--- a/srcpkgs/urh/template
+++ b/srcpkgs/urh/template
@@ -1,7 +1,7 @@
 # Template file for 'urh'
 pkgname=urh
 version=2.7.5
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="urh"
 hostmakedepends="python3-setuptools python3-Cython"

From 21d6f757899fc4733345a917b42456df1cf374f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 805/872] urlscan: rebuild for Python 3.8.

---
 srcpkgs/urlscan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlscan/template b/srcpkgs/urlscan/template
index f6f0d1db07b..2bb1688dad7 100644
--- a/srcpkgs/urlscan/template
+++ b/srcpkgs/urlscan/template
@@ -1,7 +1,7 @@
 # Template file for 'urlscan'
 pkgname=urlscan
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlscan"

From b1340a955fbf6f0de37bb82e56d5e5bb6f7fb51d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 806/872] urlwatch: rebuild for Python 3.8.

---
 srcpkgs/urlwatch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlwatch/template b/srcpkgs/urlwatch/template
index e8a5e403c92..1166fe101a7 100644
--- a/srcpkgs/urlwatch/template
+++ b/srcpkgs/urlwatch/template
@@ -1,7 +1,7 @@
 # Template file for 'urlwatch'
 pkgname=urlwatch
 version=2.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlwatch"

From 2da61527e3fb71b6b9edfb41324862bc66cd3f69 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 807/872] vapoursynth: fix and rebuild for Python 3.8.

---
 srcpkgs/vapoursynth/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/vapoursynth/template b/srcpkgs/vapoursynth/template
index dd85e8b39dc..1c417a624c3 100644
--- a/srcpkgs/vapoursynth/template
+++ b/srcpkgs/vapoursynth/template
@@ -1,7 +1,7 @@
 # Template file for 'vapoursynth'
 pkgname=vapoursynth
 version=R47.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake pkg-config libtool nasm python3-Cython"
 makedepends="python3-devel zimg-devel libmagick-devel libass-devel ffmpeg-devel
@@ -21,6 +21,7 @@ case $XBPS_TARGET_MACHINE in
 esac
 
 pre_configure() {
+	sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION/&-embed/g' configure.ac
 	./autogen.sh
 	case $XBPS_TARGET_MACHINE in
 		arm*musl)

From 8cf72938dfcf97f9f1ed39dac376fb800cc0199a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 808/872] variety: rebuild for Python 3.8.

---
 srcpkgs/variety/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/variety/template b/srcpkgs/variety/template
index b4ea756c0c9..4d327a830f8 100644
--- a/srcpkgs/variety/template
+++ b/srcpkgs/variety/template
@@ -1,7 +1,7 @@
 # Template file for 'variety'
 pkgname=variety
 version=0.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="jumble variety variety_lib"

From 626869809e97ac370fadfe8d4c58a138e8e2a09b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 809/872] vdirsyncer: rebuild for Python 3.8.

---
 srcpkgs/vdirsyncer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vdirsyncer/template b/srcpkgs/vdirsyncer/template
index 24080413456..708204afda2 100644
--- a/srcpkgs/vdirsyncer/template
+++ b/srcpkgs/vdirsyncer/template
@@ -1,7 +1,7 @@
 # Template file for 'vdirsyncer'
 pkgname=vdirsyncer
 version=0.16.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="vdirsyncer"

From c224b81d65d4bd99c195e0d3850e0186ee5d1444 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 810/872] vidcutter: rebuild for Python 3.8.

---
 srcpkgs/vidcutter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vidcutter/template b/srcpkgs/vidcutter/template
index 4f30b888805..6ca85d4e766 100644
--- a/srcpkgs/vidcutter/template
+++ b/srcpkgs/vidcutter/template
@@ -1,7 +1,7 @@
 # Template file for 'vidcutter'
 pkgname=vidcutter
 version=6.0.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="vidcutter"

From 2cadf7a6f198c2bd4393d31e0ac457840585369a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 811/872] vimiv: rebuild for Python 3.8.

---
 srcpkgs/vimiv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vimiv/template b/srcpkgs/vimiv/template
index 20fcbe7a03f..a560d4c9d81 100644
--- a/srcpkgs/vimiv/template
+++ b/srcpkgs/vimiv/template
@@ -1,7 +1,7 @@
 # Template file for 'vimiv'
 pkgname="vimiv"
 version=0.9.1
-revision=2
+revision=3
 build_style=gnu-makefile
 pycompile_module=vimiv
 hostmakedepends="python3-setuptools python3-devel"

From f66d7876c7f9fc42185c35a9398e8d9abc91de5d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 812/872] virtme: rebuild for Python 3.8.

---
 srcpkgs/virtme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtme/template b/srcpkgs/virtme/template
index 3905cb24b1d..30035a734f3 100644
--- a/srcpkgs/virtme/template
+++ b/srcpkgs/virtme/template
@@ -1,7 +1,7 @@
 # Template file for 'virtme'
 pkgname=virtme
 version=0.0.3.20180725
-revision=1
+revision=2
 archs=noarch
 _commit=60100bea82183b5d32ed9fca6534cd0fc60d5eb2
 wrksrc="${_commit}"

From 14104be7b72153715770becf8d322e42e63248ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 813/872] virtualenvwrapper: rebuild for Python 3.8.

---
 srcpkgs/virtualenvwrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtualenvwrapper/template b/srcpkgs/virtualenvwrapper/template
index 6007cc5d2ed..1f0c2efee86 100644
--- a/srcpkgs/virtualenvwrapper/template
+++ b/srcpkgs/virtualenvwrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'virtualenvwrapper'
 pkgname=virtualenvwrapper
 version=4.8.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="virtualenvwrapper"

From f9d707b8c54e1a037a9e6b973a6a57d3ab3a06d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 814/872] visidata: rebuild for Python 3.8.

---
 srcpkgs/visidata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/visidata/template b/srcpkgs/visidata/template
index 715896e5f7c..c5c3ae7c82e 100644
--- a/srcpkgs/visidata/template
+++ b/srcpkgs/visidata/template
@@ -1,7 +1,7 @@
 # Template file for 'visidata'
 pkgname=visidata
 version=1.5.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="visidata"

From 950732e157330587a5bc9b3997d5e929e99a7524 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 815/872] volctl: rebuild for Python 3.8.

---
 srcpkgs/volctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template
index 2b01750b9eb..585aabd2495 100644
--- a/srcpkgs/volctl/template
+++ b/srcpkgs/volctl/template
@@ -1,7 +1,7 @@
 # Template file for 'volctl'
 pkgname=volctl
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="volctl"

From 95f58b2e2fef1423e429882b79d2b4aaadb8fffd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 816/872] voltron: rebuild for Python 3.8.

---
 srcpkgs/voltron/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/voltron/template b/srcpkgs/voltron/template
index c258bb9bab9..38f47a824e3 100644
--- a/srcpkgs/voltron/template
+++ b/srcpkgs/voltron/template
@@ -1,7 +1,7 @@
 # Template file for 'voltron'
 pkgname=voltron
 version=0.1.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="voltron"

From 15987c07727f2c18290a8bec6a5d8533265ea131 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 817/872] volume_key: rebuild for Python 3.8.

---
 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 11d7b16bed8..14431cb70e9 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=1
+revision=2
 build_style=gnu-configure
 make_build_args="PYTHON3_CFLAGS=-I${XBPS_CROSS_BASE}/${py3_inc}
  PYTHON_CFLAGS=-I${XBPS_CROSS_BASE}/${py2_inc}"

From d9985830c4851bc918e7480b6da049317fc6cde0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 818/872] weather: rebuild for Python 3.8.

---
 srcpkgs/weather/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weather/template b/srcpkgs/weather/template
index ffa8a828b36..3ac33bfac15 100644
--- a/srcpkgs/weather/template
+++ b/srcpkgs/weather/template
@@ -1,7 +1,7 @@
 # Template file for 'weather'
 pkgname=weather
 version=2.3
-revision=2
+revision=3
 archs=noarch
 hostmakedepends="python3"
 depends="python3"

From 01b1041ae3ae1725dfea5c43f88deb8589fa8a1c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 819/872] wfuzz: rebuild for Python 3.8.

---
 srcpkgs/wfuzz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wfuzz/template b/srcpkgs/wfuzz/template
index b03c1f28add..4a88ab67407 100644
--- a/srcpkgs/wfuzz/template
+++ b/srcpkgs/wfuzz/template
@@ -1,7 +1,7 @@
 # Template file for 'wfuzz'
 pkgname=wfuzz
 version=2.4
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="wfuzz"

From 3b7733b84909412b60910e06f2951fb050473e3f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 820/872] wpgtk: rebuild for Python 3.8.

---
 srcpkgs/wpgtk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpgtk/template b/srcpkgs/wpgtk/template
index 7e9d52b4f81..a722da58f22 100644
--- a/srcpkgs/wpgtk/template
+++ b/srcpkgs/wpgtk/template
@@ -1,7 +1,7 @@
 # Template file for 'wpgtk'
 pkgname=wpgtk
 version=6.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpgtk"

From 822aa4a911d4cc44c9a8bddb49e2ef047590a125 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 821/872] wpull: rebuild for Python 3.8.

---
 srcpkgs/wpull/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpull/template b/srcpkgs/wpull/template
index 5e9b9dcc641..621e1c85428 100644
--- a/srcpkgs/wpull/template
+++ b/srcpkgs/wpull/template
@@ -1,7 +1,7 @@
 # Template file for 'wpull'
 pkgname=wpull
 version=2.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpull"

From 2bf332e5274a0b3c0761dc238405358635da880a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 822/872] wxPython4: rebuild for Python 3.8.

---
 srcpkgs/wxPython4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wxPython4/template b/srcpkgs/wxPython4/template
index 2aa7117d5e0..b65e0b2ffe1 100644
--- a/srcpkgs/wxPython4/template
+++ b/srcpkgs/wxPython4/template
@@ -1,7 +1,7 @@
 # Template file for 'wxPython4'
 pkgname=wxPython4
 version=4.0.6
-revision=2
+revision=3
 wrksrc="wxPython-${version}"
 build_style=python3-module
 pycompile_module="wx"

From 1a9791d34f81ee37e9ad7d0177609d79c5722cf2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 823/872] xcb-proto: rebuild for Python 3.8.

---
 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 1b26ecd73f3..020524bda87 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.13
-revision=2
+revision=3
 archs=noarch
 build_style=gnu-configure
 pycompile_module="xcbgen"

From bcd63ec56fafbc76a0d8f58d8625643e8423fcd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 824/872] xdot: rebuild for Python 3.8.

---
 srcpkgs/xdot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xdot/template b/srcpkgs/xdot/template
index 23f7b1f17e0..f7507ffb8c5 100644
--- a/srcpkgs/xdot/template
+++ b/srcpkgs/xdot/template
@@ -1,7 +1,7 @@
 # Template file for 'xdot'
 pkgname=xdot
 version=1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="xdot.py-${version}"
 build_style=python3-module

From 33173f3413057032d21c88bd743224ca5956a3d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 825/872] xkcdpass: rebuild for Python 3.8.

---
 srcpkgs/xkcdpass/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xkcdpass/template b/srcpkgs/xkcdpass/template
index 46b4a9635f9..37fb6872079 100644
--- a/srcpkgs/xkcdpass/template
+++ b/srcpkgs/xkcdpass/template
@@ -1,7 +1,7 @@
 # Template file for 'xkcdpass'
 pkgname=xkcdpass
 version=1.17.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="XKCD-password-generator-xkcdpass-${version}"
 build_style=python3-module

From c49fb624b4f248639eff2b2d0d46399fa44185b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 826/872] xonsh: rebuild for Python 3.8.

---
 srcpkgs/xonsh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xonsh/template b/srcpkgs/xonsh/template
index 768ebf36022..2dca267d0d1 100644
--- a/srcpkgs/xonsh/template
+++ b/srcpkgs/xonsh/template
@@ -1,7 +1,7 @@
 # Template file for 'xonsh'
 pkgname=xonsh
 version=0.9.12
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="xonsh xontrib"

From f6940a7524d62d31151e639bcfb6a84774a6246c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 827/872] yq: rebuild for Python 3.8.

---
 srcpkgs/yq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yq/template b/srcpkgs/yq/template
index 7c3af7f43c2..dda886c6c40 100644
--- a/srcpkgs/yq/template
+++ b/srcpkgs/yq/template
@@ -1,7 +1,7 @@
 # Template file for 'yq'
 pkgname=yq
 version=2.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From b616e4468c1dbe3e48846ce3129649cfcd0bf847 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 828/872] ytcc: rebuild for Python 3.8.

---
 srcpkgs/ytcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ytcc/template b/srcpkgs/ytcc/template
index feafa404b75..df4195758c7 100644
--- a/srcpkgs/ytcc/template
+++ b/srcpkgs/ytcc/template
@@ -1,7 +1,7 @@
 # Template file for 'ytcc'
 pkgname=ytcc
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ytcc"

From ecd0188a7fa508de7620ebdaff620b1036f63ca1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 829/872] yturl: rebuild for Python 3.8.

---
 srcpkgs/yturl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yturl/template b/srcpkgs/yturl/template
index 6fa3e9872ee..ee14b77b5a0 100644
--- a/srcpkgs/yturl/template
+++ b/srcpkgs/yturl/template
@@ -1,7 +1,7 @@
 # Template file for 'yturl'
 pkgname=yturl
 version=2.0.2
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From b8aa9aaf83391e8517a127450b988ba5158e1143 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 830/872] yubikey-manager: rebuild for Python 3.8.

---
 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 af0330e8e15..fcc7b7cb737 100644
--- a/srcpkgs/yubikey-manager/template
+++ b/srcpkgs/yubikey-manager/template
@@ -1,7 +1,7 @@
 # Template file for 'yubikey-manager'
 pkgname=yubikey-manager
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From f7742bb475472d9be8aa78203a762aa803e66127 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 831/872] z3: rebuild for Python 3.8.

---
 srcpkgs/z3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/z3/template b/srcpkgs/z3/template
index d632a285019..e054915df91 100644
--- a/srcpkgs/z3/template
+++ b/srcpkgs/z3/template
@@ -1,7 +1,7 @@
 # Template file for 'z3'
 pkgname=z3
 version=4.8.6
-revision=2
+revision=3
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=configure
 configure_args="--prefix=/usr -g --python $(vopt_if ocaml --ml)"

From bd88f79891678b05e61ea20c114941c7a464190b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 832/872] zim: rebuild for Python 3.8.

---
 srcpkgs/zim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/zim/template b/srcpkgs/zim/template
index 45b9df5357c..dff4ad22081 100644
--- a/srcpkgs/zim/template
+++ b/srcpkgs/zim/template
@@ -1,7 +1,7 @@
 # Template file for 'zim'
 pkgname=zim
 version=0.71.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="zim"

From c0d6bed534081540b2dca25201a55a79ff23fdd9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 833/872] python3-pafy: rebuild for Python 3.8.

---
 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 ce26f770c69..b59c9a0adff 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.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pafy-${version}"
 build_style=python3-module

From 7204f3a9760080d1b696708578e9814bb7c52c7c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 834/872] python3-perf: rebuild for Python 3.8.

---
 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 a03251f97e8..3d57ddb1c1a 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.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyperf-${version}"
 build_style=python3-module

From 6f2d8d718050c14165b1c0cde55e06a7027ea661 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 835/872] python3-yara: rebuild for Python 3.8.

---
 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 4a6c56dd083..3bdff14a0da 100644
--- a/srcpkgs/python3-yara/template
+++ b/srcpkgs/python3-yara/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-yara'
 pkgname=python3-yara
 version=3.11.0
-revision=1
+revision=2
 wrksrc="yara-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 2734a739227ebfaaeb57ee3d8053936b709150af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:31 +0200
Subject: [PATCH 836/872] azote: rebuild for Python 3.8.

---
 srcpkgs/azote/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/azote/template b/srcpkgs/azote/template
index 0a23c209551..2748cb98733 100644
--- a/srcpkgs/azote/template
+++ b/srcpkgs/azote/template
@@ -1,7 +1,7 @@
 # Template file for 'azote'
 pkgname=azote
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="azote"

From 323748647505898fe307672b215259d25836b457 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 837/872] binwalk: rebuild for Python 3.8.

---
 srcpkgs/binwalk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/binwalk/template b/srcpkgs/binwalk/template
index 461ea4b547a..fccd523d584 100644
--- a/srcpkgs/binwalk/template
+++ b/srcpkgs/binwalk/template
@@ -1,7 +1,7 @@
 # Template file for 'binwalk'
 pkgname=binwalk
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="binwalk"

From ee134598b034585b99960fd3c8747ebfd6163b06 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 838/872] gnome-builder: rebuild for Python 3.8.

---
 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 9ae9ff9d94c..85aeeee9a15 100644
--- a/srcpkgs/gnome-builder/template
+++ b/srcpkgs/gnome-builder/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-builder'
 pkgname=gnome-builder
 version=3.34.1
-revision=1
+revision=2
 build_style=meson
 configure_args="-Dwith_webkit=true -Dwith_sysprof=true -Dhelp=true"
 hostmakedepends="appdata-tools desktop-file-utils flex gobject-introspection

From 6d4dcdd4d0a9e913527f5cd503597fe6f1b1bda3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 839/872] gnome-tweaks: rebuild for Python 3.8.

---
 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 ac1f8bdb873..d0879253ac5 100644
--- a/srcpkgs/gnome-tweaks/template
+++ b/srcpkgs/gnome-tweaks/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-tweaks'
 pkgname=gnome-tweaks
 version=3.34.0
-revision=2
+revision=3
 archs=noarch
 build_style=meson
 pycompile_module="gtweak"

From 5840949e349e954ecec6da04344bedf53faea436 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 840/872] meson: rebuild for Python 3.8.

---
 srcpkgs/meson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meson/template b/srcpkgs/meson/template
index 315a0f27a92..76791451681 100644
--- a/srcpkgs/meson/template
+++ b/srcpkgs/meson/template
@@ -2,7 +2,7 @@
 pkgname=meson
 reverts="0.52.0_1 0.52.0_2"
 version=0.51.2
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mesonbuild"

From bbb82b12f8ee9e5dadd1e00dc0bfbbf4630d104e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 841/872] onionshare: rebuild for Python 3.8.

---
 srcpkgs/onionshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onionshare/template b/srcpkgs/onionshare/template
index c585ae6101e..c37c5962736 100644
--- a/srcpkgs/onionshare/template
+++ b/srcpkgs/onionshare/template
@@ -1,7 +1,7 @@
 # Template file for 'onionshare'
 pkgname=onionshare
 version=2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="onionshare"

From ca39288f48cb14dd5292c1c6741700a891282cfc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 842/872] portage: rebuild for Python 3.8.

---
 srcpkgs/portage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/portage/template b/srcpkgs/portage/template
index b0f34731035..9610428bbf4 100644
--- a/srcpkgs/portage/template
+++ b/srcpkgs/portage/template
@@ -1,7 +1,7 @@
 # Template file for 'portage'
 pkgname=portage
 version=2.3.77
-revision=1
+revision=2
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=python3-module
 pycompile_module="portage _emerge"

From d6740a08049902abd3a56a8f9f5eb614ca470fc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 843/872] rpm: fix and rebuild for Python 3.8.

---
 srcpkgs/rpm/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/rpm/template b/srcpkgs/rpm/template
index 98e35930c4c..695195323fd 100644
--- a/srcpkgs/rpm/template
+++ b/srcpkgs/rpm/template
@@ -1,7 +1,7 @@
 # Template file for 'rpm'
 pkgname=rpm
 version=4.15.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--with-lua --with-cap --with-acl --with-external-db
  --enable-python PYTHON=python3"
@@ -18,7 +18,7 @@ distfiles="http://ftp.rpm.org/releases/rpm-4.15.x/rpm-${version}.tar.bz2"
 checksum=1e06723b13591e57c99ebe2006fb8daddc4cf72efb366a64a34673ba5f61c201
 conflicts="rpmextract>=0" # Both provide rpm2cpio
 
-CFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6"
+CFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nss"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nspr"
 

From 865409d17d11c096751c787dd08244422613085a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 844/872] youtube-dl: rebuild for Python 3.8.

---
 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 d6596b80bd3..f1ae3aa1a74 100644
--- a/srcpkgs/youtube-dl/template
+++ b/srcpkgs/youtube-dl/template
@@ -1,7 +1,7 @@
 # Template file for 'youtube-dl'
 pkgname=youtube-dl
 version=2019.10.16
-revision=1
+revision=2
 archs=noarch
 wrksrc=youtube-dl
 build_style=python3-module

From 0cb5b534b1543f50099e21c9a26de6af1de0c0bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 845/872] blender: rebuild for Python 3.8.

---
 srcpkgs/blender/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template
index 758d1235185..47cb8f8ad13 100644
--- a/srcpkgs/blender/template
+++ b/srcpkgs/blender/template
@@ -1,7 +1,7 @@
 # Template file for 'blender'
 pkgname=blender
 version=2.79b
-revision=9
+revision=10
 build_style="cmake"
 makedepends="
  libgomp-devel libpng-devel tiff-devel python3-devel glu-devel

From 811c1a86667182da9c44b803b93bbc5afcdd8f31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 846/872] freecad: rebuild for Python 3.8.

---
 srcpkgs/freecad/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/freecad/template b/srcpkgs/freecad/template
index 9e9375c4444..26bf34702a2 100644
--- a/srcpkgs/freecad/template
+++ b/srcpkgs/freecad/template
@@ -1,7 +1,7 @@
 # Template file for 'freecad'
 pkgname=freecad
 version=0.18.3
-revision=2
+revision=3
 wrksrc="FreeCAD-${version}"
 build_style=cmake
 

From 30dac185c3b621348bd2ee013d6e1f7391334f1e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 847/872] gdb: rebuild for Python 3.8.

---
 srcpkgs/gdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gdb/template b/srcpkgs/gdb/template
index 9f84e4869e9..39aab79d08a 100644
--- a/srcpkgs/gdb/template
+++ b/srcpkgs/gdb/template
@@ -1,7 +1,7 @@
 # Template file for 'gdb'
 pkgname=gdb
 version=8.3.1
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="/usr/share/gdb"
 configure_args="--disable-werror --disable-nls --with-system-readline

From 0621479e3256e3114d5354e57fbdfedece4a40b9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 848/872] hexchat: rebuild for Python 3.8.

---
 srcpkgs/hexchat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hexchat/template b/srcpkgs/hexchat/template
index fbeaf28ae8a..9f7d7957b76 100644
--- a/srcpkgs/hexchat/template
+++ b/srcpkgs/hexchat/template
@@ -1,7 +1,7 @@
 # Template file for 'hexchat'
 pkgname=hexchat
 version=2.14.2
-revision=6
+revision=7
 build_style=meson
 configure_args="-Dwith-dbus=true -Dwith-ssl=true -Dwith-text=false
  -Dwith-perl=/usr/bin/perl -Dwith-python=python3

From 0508e1efeaa3250557c90a98551db5c6f9eab9af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 849/872] hyperion: rebuild for Python 3.8.

---
 srcpkgs/hyperion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hyperion/template b/srcpkgs/hyperion/template
index 0befdbe7064..7ce415e929e 100644
--- a/srcpkgs/hyperion/template
+++ b/srcpkgs/hyperion/template
@@ -1,7 +1,7 @@
 # Template file for 'hyperion'
 pkgname=hyperion
 version=1.03.2
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DUSE_SYSTEM_PROTO_LIBS=ON -DENABLE_QT5=ON
  -DPROTOBUF_PROTOC_EXECUTABLE=/usr/bin/protoc -DENABLE_AMLOGIC=ON

From f90d060dbb8d1b54707b9ccdc5534a892dc39832 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 850/872] kdevelop-python: rebuild for Python 3.8.

---
 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 0265916a3d0..a306eb8f442 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.4.2
-revision=1
+revision=2
 wrksrc="kdev-python-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/kdevpythonsupport"

From a4f089407a78a26bb4dd55efb1868d48ef370c68 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 851/872] kitty: rebuild for Python 3.8.

---
 srcpkgs/kitty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/kitty/template b/srcpkgs/kitty/template
index d79bcc4acce..54cd08c23ec 100644
--- a/srcpkgs/kitty/template
+++ b/srcpkgs/kitty/template
@@ -1,7 +1,7 @@
 # Template file for 'kitty'
 pkgname=kitty
 version=0.14.6
-revision=1
+revision=2
 pycompile_dirs="usr/lib/kitty"
 hostmakedepends="ncurses pkg-config python3 wayland-devel wayland-protocols"
 makedepends="gettext-devel glfw-devel harfbuzz-devel libxkbcommon-devel

From c50bdc00181acfd54a1164aa5c78fd5420af9c76 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 852/872] krita: rebuild for Python 3.8, fix sha256sum.

Tarball was yanked for trivial fix.
---
 srcpkgs/krita/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/krita/template b/srcpkgs/krita/template
index 7a59fc9ac58..67f128c61ce 100644
--- a/srcpkgs/krita/template
+++ b/srcpkgs/krita/template
@@ -1,7 +1,7 @@
 # Template file for 'krita'
 pkgname=krita
 version=4.2.7.1
-revision=1
+revision=2
 build_style=cmake
 configure_args="-Wno-dev -DBUILD_TESTING=OFF"
 hostmakedepends="extra-cmake-modules pkg-config python3"
@@ -18,6 +18,6 @@ license="GPL-3.0-only"
 homepage="https://krita.org/"
 KDE_SITE="http://ftp5.gwdg.de/pub/linux/kde/stable/"
 distfiles="${KDE_SITE}/krita/${version}/krita-${version}.tar.gz"
-checksum=28218030edca9dfa1c7e255401ca6fc8fe0e5329f7611cfc196e35746d312086
+checksum=3ed29fd9d8e067def55e703fc55312815c21041d274727e228bdbe0478c09c3d
 nocross=yes
 replaces="calligra-krita>=0"

From 6955e98aee7712fc15d4c04645d7403bd08bb10b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:26:38 +0200
Subject: [PATCH 853/872] libpeas: rebuild for Python 3.8.

---
 srcpkgs/libpeas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index a69238bf823..d4dcf8b5941 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,7 +1,7 @@
 # Template file for 'libpeas'
 pkgname=libpeas
 version=1.22.0
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"

From d5bd58c38a14b11dd6f2a3fdaf2c959d498ed2fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 854/872] libreoffice: rebuild for Python 3.8.

---
 srcpkgs/libreoffice/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template
index 6e8685ac0fd..98f04a40304 100644
--- a/srcpkgs/libreoffice/template
+++ b/srcpkgs/libreoffice/template
@@ -1,7 +1,7 @@
 # Template file for 'libreoffice'
 pkgname=libreoffice
 version=6.2.5.2
-revision=2
+revision=3
 build_style=meta
 make_build_args="build-nocheck"
 nocross=yes

From 964a772005f1d048f3df1e669d4c05dd8cd009d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 855/872] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index 1f9c8043b46..34174be7535 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=5
+revision=6
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From dae5562b9ea3004707c77e11062ed4875888ce10 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 856/872] libsigrokdecode: rebuild for Python 3.8.

---
 srcpkgs/libsigrokdecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsigrokdecode/template b/srcpkgs/libsigrokdecode/template
index 59e15dd61b9..cc9d9a10367 100644
--- a/srcpkgs/libsigrokdecode/template
+++ b/srcpkgs/libsigrokdecode/template
@@ -1,7 +1,7 @@
 # Template file for 'libsigrokdecode'
 pkgname=libsigrokdecode
 version=0.5.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="glib-devel python3-devel"

From ed7c70b9f8b490ede33864a933a72c35e58f5793 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 857/872] luxrays: rebuild for Python 3.8.

---
 srcpkgs/luxrays/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/luxrays/template b/srcpkgs/luxrays/template
index c783e9fe3e5..58037fbfc05 100644
--- a/srcpkgs/luxrays/template
+++ b/srcpkgs/luxrays/template
@@ -1,7 +1,7 @@
 # Template file for 'luxrays'
 pkgname=luxrays
 version=3.1
-revision=13
+revision=14
 build_style=cmake
 configure_args="-DLUXRAYS_DISABLE_OPENCL=OFF -DCMAKE_SKIP_RPATH=ON"
 hostmakedepends="flex bison boost-devel"

From f81dc20fbdadf42d30367ddf692b01568cbcf5d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 858/872] navit: rebuild for Python 3.8.

---
 srcpkgs/navit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/navit/template b/srcpkgs/navit/template
index 461689a3c73..24cd151c64b 100644
--- a/srcpkgs/navit/template
+++ b/srcpkgs/navit/template
@@ -1,7 +1,7 @@
 # Template file for 'navit'
 pkgname=navit
 version=0.5.3
-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 2cdf4ada91af7ff1b90ddf1f2fb22403876facb3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 859/872] obs: rebuild for Python 3.8.

---
 srcpkgs/obs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/obs/template b/srcpkgs/obs/template
index 3ed426b1583..45bf81803e4 100644
--- a/srcpkgs/obs/template
+++ b/srcpkgs/obs/template
@@ -1,7 +1,7 @@
 # Template file for 'obs'
 pkgname=obs
 version=24.0.1
-revision=1
+revision=2
 _commit_hash_obs_browser="693498b518cf893876f454ef581e13106e8370ec"
 _commit_hash_obs_vst="fde438f7a8afdf41a7ab386a0aa1a61175fc8427"
 _commit_hash_ftl_sdk="98289f7c2ed754c647d451899b3356850c0c1fa3"

From 4b53e6f247e65e6d02d21723ded3a5b23695da4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 860/872] renderdoc: fix and rebuild for Python 3.8.

---
 srcpkgs/renderdoc/files/swig-py38.patch    | 28 +++++++++++++
 srcpkgs/renderdoc/patches/cmake-py38.patch | 48 ++++++++++++++++++++++
 srcpkgs/renderdoc/template                 |  8 ++--
 3 files changed, 81 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/renderdoc/files/swig-py38.patch
 create mode 100644 srcpkgs/renderdoc/patches/cmake-py38.patch

diff --git a/srcpkgs/renderdoc/files/swig-py38.patch b/srcpkgs/renderdoc/files/swig-py38.patch
new file mode 100644
index 00000000000..0595599c658
--- /dev/null
+++ b/srcpkgs/renderdoc/files/swig-py38.patch
@@ -0,0 +1,28 @@
+From dbe955dd0300d55a32fd73a4eef730b3e30ed5c4 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 20:32:03 +0200
+Subject: [PATCH] swig: avoid use of _PyObject_GC_UNTRACK
+
+It is deprecated[1]. Use PyObject_GC_UnTrack instead.
+
+[1] https://docs.python.org/3/c-api/gcsupport.html#c._PyObject_GC_UNTRACK
+---
+ Lib/python/builtin.swg | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Lib/python/builtin.swg b/Lib/python/builtin.swg
+index 9597653b7..6af45a9d1 100644
+--- a/Lib/python/builtin.swg
++++ b/Lib/python/builtin.swg
+@@ -120,7 +120,7 @@ SwigPyBuiltin_FunpackSetterClosure (PyObject *obj, PyObject *val, void *closure)
+ 
+ SWIGINTERN void
+ SwigPyStaticVar_dealloc(PyDescrObject *descr) {
+-  _PyObject_GC_UNTRACK(descr);
++  PyObject_GC_UnTrack(descr);
+   Py_XDECREF(PyDescr_TYPE(descr));
+   Py_XDECREF(PyDescr_NAME(descr));
+   PyObject_GC_Del(descr);
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/patches/cmake-py38.patch b/srcpkgs/renderdoc/patches/cmake-py38.patch
new file mode 100644
index 00000000000..fc1adb9ddbc
--- /dev/null
+++ b/srcpkgs/renderdoc/patches/cmake-py38.patch
@@ -0,0 +1,48 @@
+From 56769d3e2cc12670b73a1ddd9dfaab959340c2e2 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 21:27:02 +0200
+Subject: [PATCH] CMake: py3.8 support, ability to patch swig
+
+Add 3.8 to list of python versions and ability to patch the custom
+swig, also needed for 3.8
+---
+ CMakeLists.txt            | 2 +-
+ qrenderdoc/CMakeLists.txt | 2 ++
+ 2 files changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 13818e5b8..00feda2ad 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -308,7 +308,7 @@ add_subdirectory(renderdoc)
+ # are handled in common
+ if(ENABLE_QRENDERDOC OR ENABLE_PYRENDERDOC)
+     # Make sure Python 3 is found
+-    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7)
++    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7 3.8)
+     find_package(PythonInterp 3 REQUIRED)
+     find_package(PythonLibs 3 REQUIRED)
+     # we also need python3-config for swig
+diff --git a/qrenderdoc/CMakeLists.txt b/qrenderdoc/CMakeLists.txt
+index 9fd65b2d3..1ef284349 100644
+--- a/qrenderdoc/CMakeLists.txt
++++ b/qrenderdoc/CMakeLists.txt
+@@ -7,6 +7,7 @@ endif()
+ 
+ set(QMAKE_QT5_COMMAND ${QT_QMAKE_EXECUTABLE} CACHE STRING "Command to run to invoke Qt5's qmake. Normally this is qmake, possibly with qtchooser, but might be qmake-qt5")
+ set(RENDERDOC_SWIG_PACKAGE https://github.com/baldurk/swig/archive/renderdoc-modified-6.zip CACHE STRING "The location where RenderDoc's swig fork source can be found. By default points to the URL on github but can be pointed to a local file.")
++set(RENDERDOC_SWIG_PATCH "" CACHE STRING "The location for the patch to apply to swig.")
+ 
+ set(QMAKE_CONFIG "debug")
+ set(QMAKE_LDFLAGS "")
+@@ -99,6 +100,7 @@ ExternalProject_Add(custom_swig
+     # using an URL to a zip directly so we don't clone the history etc
+     URL ${RENDERDOC_SWIG_PACKAGE}
+     BUILD_IN_SOURCE 1
++    PATCH_COMMAND patch -p1 -i ${RENDERDOC_SWIG_PATCH} > /dev/null
+     CONFIGURE_COMMAND ./autogen.sh > /dev/null 2>&1
+     COMMAND CC=${SWIG_CONFIGURE_CC} CXX=${SWIG_CONFIGURE_CXX} CFLAGS=-fPIC CXXFLAGS=-fPIC ./configure --with-pcre=yes --prefix=${CMAKE_BINARY_DIR} > /dev/null
+     BUILD_COMMAND ${GENERATOR_MAKE} > /dev/null 2>&1
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/template b/srcpkgs/renderdoc/template
index 32d051864d3..9972d9435b0 100644
--- a/srcpkgs/renderdoc/template
+++ b/srcpkgs/renderdoc/template
@@ -1,11 +1,13 @@
 # Template file for 'renderdoc'
 pkgname=renderdoc
 version=1.4
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DENABLE_GL=ON -DENABLE_GLES=ON -DENABLE_QRENDERDOC=ON
  -DENABLE_RENDERDOCCMD=ON -DENABLE_VULKAN=ON -DENABLE_XCB=ON -DENABLE_XLIB=ON
- -DENABLE_PYRENDERDOC=ON"
+ -DENABLE_PYRENDERDOC=ON
+ -DRENDERDOC_SWIG_PATCH=${XBPS_SRCPKGDIR}/${pkgname}/files/swig-py38.patch"
+patch_args="-p1"
 hostmakedepends="bison autoconf automake pkg-config python3"
 makedepends="libX11-devel libxcb-devel xcb-util-keysyms-devel libGL qt5-devel
  qt5-svg-devel qt5-x11extras-devel pcre-devel python3-devel"
@@ -17,7 +19,7 @@ distfiles="https://github.com/baldurk/${pkgname}/archive/v${version}.tar.gz"
 checksum=9a78951f386fb7c3ecf7df6919d300db59719d14f0621438963ae30a75d33677
 
 case "$XBPS_TARGET_MACHINE" in
-	*-musl) broken="This package uses execnfo.h which is not available on musl"
+	*-musl) broken="This package uses execinfo.h which is not available on musl"
 esac
 
 if [ "$CROSS_BUILD" ]; then

From 903e4a6b8a4a53b78aca6235a20477f28b55104e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 861/872] sigil: rebuild for Python 3.8.

---
 srcpkgs/sigil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sigil/template b/srcpkgs/sigil/template
index 4a90ef95798..1d577ee3487 100644
--- a/srcpkgs/sigil/template
+++ b/srcpkgs/sigil/template
@@ -1,7 +1,7 @@
 # Template file for 'sigil'
 pkgname=sigil
 version=0.9.13
-revision=1
+revision=2
 wrksrc="Sigil-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/sigil/python3lib"

From b7415d707e7c9e71a8d790e9cfce9617ff22b7a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 862/872] uwsgi: rebuild for Python 3.8.

---
 srcpkgs/uwsgi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/uwsgi/template b/srcpkgs/uwsgi/template
index 2e96cd2e38e..e283d6bc357 100644
--- a/srcpkgs/uwsgi/template
+++ b/srcpkgs/uwsgi/template
@@ -1,7 +1,7 @@
 # Template file for 'uwsgi'
 pkgname=uwsgi
 version=2.0.18
-revision=1
+revision=2
 hostmakedepends="python python3"
 makedepends="python-devel python3-devel"
 short_desc="Fast, self-healing application container server"

From 4f58025455bb49a6fb774a474aba13ad7f5c4412 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 863/872] vim: rebuild for Python 3.8.

---
 srcpkgs/vim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vim/template b/srcpkgs/vim/template
index 8f543069d19..7c7fd4a30f7 100644
--- a/srcpkgs/vim/template
+++ b/srcpkgs/vim/template
@@ -1,7 +1,7 @@
 # Template file for 'vim'
 pkgname=vim
 version=8.1.2021
-revision=3
+revision=4
 hostmakedepends="glib-devel pkg-config"
 makedepends="acl-devel gtk+3-devel libXt-devel lua-devel ncurses-devel
  perl python-devel python3-devel ruby-devel"

From 51a99f19037a5fe04d0e591aec88ddb4ff7cc85e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 864/872] weechat: rebuild for Python 3.8.

---
 srcpkgs/weechat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weechat/template b/srcpkgs/weechat/template
index 19f8af4fd8f..14c3e2360f5 100644
--- a/srcpkgs/weechat/template
+++ b/srcpkgs/weechat/template
@@ -1,7 +1,7 @@
 # Template file for 'weechat'
 pkgname=weechat
 version=2.6
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_MAN=ON -DENABLE_ENCHANT=ON -DENABLE_PERL=ON
  -DENABLE_LUA=ON -DENABLE_RUBY=ON -DENABLE_SPELL=ON

From a45db3d2782675fe1830f4ea9f3780f075973dcb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 865/872] znc: rebuild for Python 3.8.

---
 srcpkgs/znc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/znc/template b/srcpkgs/znc/template
index 8af8f23a145..696b59133c8 100644
--- a/srcpkgs/znc/template
+++ b/srcpkgs/znc/template
@@ -1,7 +1,7 @@
 # Template file for 'znc'
 pkgname=znc
 version=1.7.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="
  --enable-python

From 9c15678ec3e225f98b4d7f3e8d103bf1ec60d7c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:18:51 +0200
Subject: [PATCH 866/872] boost: rebuild for Python 3.8.

---
 srcpkgs/boost/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 40a4fe67730..1fb0e8ed519 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=5
+revision=6
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"

From 4ab56583f1e4c6bbb215f9633179f8571907619d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:10 +0200
Subject: [PATCH 867/872] python-pyside: remove, obsolete.

---
 srcpkgs/python-pyside/INSTALL.msg | 1 -
 srcpkgs/python-pyside/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/python-pyside/INSTALL.msg
 delete mode 100644 srcpkgs/python-pyside/template

diff --git a/srcpkgs/python-pyside/INSTALL.msg b/srcpkgs/python-pyside/INSTALL.msg
deleted file mode 100644
index 6de207b7aa2..00000000000
--- a/srcpkgs/python-pyside/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-python-pyside is no longer provided by Void Linux, and will be fully removed from the repos on 2019-07-17
diff --git a/srcpkgs/python-pyside/template b/srcpkgs/python-pyside/template
deleted file mode 100644
index 7053f0e7fc3..00000000000
--- a/srcpkgs/python-pyside/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'python-pyside'
-pkgname=python-pyside
-version=1.2.2
-revision=7
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="http://www.pyside.org/"

From 5ddfaffd91d6b6a64dafb458d39629362dc46f10 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:52 +0200
Subject: [PATCH 868/872] pyside-tools: remove, obsolete.

---
 srcpkgs/pyside-tools/INSTALL.msg | 1 -
 srcpkgs/pyside-tools/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/pyside-tools/INSTALL.msg
 delete mode 100644 srcpkgs/pyside-tools/template

diff --git a/srcpkgs/pyside-tools/INSTALL.msg b/srcpkgs/pyside-tools/INSTALL.msg
deleted file mode 100644
index fdb45eb0f42..00000000000
--- a/srcpkgs/pyside-tools/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-pyside-tools is no longer provided by Void Linux, and will be fully removed from the repos on 2019-10-30
diff --git a/srcpkgs/pyside-tools/template b/srcpkgs/pyside-tools/template
deleted file mode 100644
index 27cfc18eea4..00000000000
--- a/srcpkgs/pyside-tools/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'pyside-tools'
-pkgname=pyside-tools
-version=0.2.15
-revision=2
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="https://wiki.qt.io/"

From c56e4ccd06c9624898aba66422ca2f832a081d48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:22:03 +0200
Subject: [PATCH 869/872] shiboken: remove, obsolete.

---
 srcpkgs/shiboken/patches/python3.6.patch |  11 ---
 srcpkgs/shiboken/template                | 110 -----------------------
 2 files changed, 121 deletions(-)
 delete mode 100644 srcpkgs/shiboken/patches/python3.6.patch
 delete mode 100644 srcpkgs/shiboken/template

diff --git a/srcpkgs/shiboken/patches/python3.6.patch b/srcpkgs/shiboken/patches/python3.6.patch
deleted file mode 100644
index 7145fb4308b..00000000000
--- a/srcpkgs/shiboken/patches/python3.6.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- cmake/Modules/FindPython3Libs.cmake.orig
-+++ cmake/Modules/FindPython3Libs.cmake
-@@ -27,7 +27,7 @@
- # Search for the python framework on Apple.
- # CMAKE_FIND_FRAMEWORKS(Python)
- 
--FOREACH(_CURRENT_VERSION 3.4 3.3 3.2 3.1 3.0)
-+FOREACH(_CURRENT_VERSION 3.6 3.5 3.4 3.3 3.2 3.1 3.0)
-   IF(_CURRENT_VERSION GREATER 3.1)
-       SET(_32FLAGS "m" "u" "mu" "dm" "du" "dmu" "")
-   ELSE()
diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
deleted file mode 100644
index 34174be7535..00000000000
--- a/srcpkgs/shiboken/template
+++ /dev/null
@@ -1,110 +0,0 @@
-# Template file for 'shiboken'
-pkgname=shiboken
-version=1.2.2
-revision=6
-wrksrc="shiboken-${version}"
-hostmakedepends="cmake"
-makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"
-short_desc="CPython bindings generator for C++ libraries"
-maintainer="Enno Boland <gottox@voidlinux.org>"
-homepage="http://www.pyside.org"
-license="LGPL-2.1"
-distfiles="https://download.qt.io/official_releases/pyside/shiboken-${version}.tar.bz2"
-checksum=7625bbcf1fe313fd910c6b8c9cf49ac5495499f9d00867115a2f1f2a69fce5c4
-
-nocross="https://travis-ci.org/voidlinux/void-packages/jobs/269193001#L906"
-
-pre_build() {
-	# Fix inconsistent naming of libshiboken.so and ShibokenConfig.cmake
-	sed -i "/get_config_var('SOABI')/d" cmake/Modules/FindPython3InterpWithDebug.cmake
-}
-do_build() {
-	local args= configure_args="
-		-DCMAKE_INSTALL_PREFIX=/usr \
-		-DCMAKE_BUILD_TYPE=Release \
-		-DBUILD_TESTS=OFF"
-
-	for pyver in $py2_ver $py3_ver; do
-		args=
-		if [ "$pyver" = "$py2_ver" ]; then
-			args="-DPYTHON_SUFFIX=-python$py2_ver"
-		else
-			args="-DUSE_PYTHON3=yes"
-		fi
-
-		[ ! -d build-${pyver} ] && mkdir build-${pyver}
-		pushd build-${pyver}
-		cmake .. ${configure_args} ${args}
-		make ${makejobs}
-		popd
-	done
-}
-do_install() {
-	for pyver in $py2_ver $py3_ver; do
-		make -C build-${pyver} DESTDIR=${DESTDIR} install
-	done
-}
-post_install() {
-	# Fix conflict between .pc files
-	rm -f ${DESTDIR}/usr/lib/pkgconfig/*
-	for pyver in $py2_ver $py3_ver; do
-		vinstall build-${pyver}/data/shiboken.pc 644 \
-			usr/lib/pkgconfig shiboken-python${pyver}.pc
-	done
-}
-
-libshiboken-common-devel_package() {
-	depends="${sourcepkg}-${version}_${revision}"
-	short_desc+=" - common development files"
-	pkg_install() {
-		vmove usr/include
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig.cmake
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfigVersion.cmake
-	}
-}
-libshiboken-python-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python-${version}_${revision}"
-	short_desc="Python2 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py2_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py2_ver}.pc
-		vmove usr/lib/libshiboken-python${py2_ver}.so
-	}
-}
-libshiboken-python_package() {
-	short_desc="Python2 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version}
-	}
-}
-python-shiboken_package() {
-	short_desc="Python2 shiboken bindings"
-	pkg_install() {
-		vmove ${py2_sitelib}/shiboken.so
-	}
-}
-libshiboken-python3-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python3-${version}_${revision}"
-	short_desc="Python3 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py3_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py3_ver}.pc
-		vmove usr/lib/libshiboken-python${py3_ver}.so
-	}
-}
-libshiboken-python3_package() {
-	short_desc="Python3 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version}
-	}
-}
-python3-shiboken_package() {
-	short_desc="Python3 shiboken bindings"
-	pkg_install() {
-		vmove ${py3_sitelib}/shiboken.so
-	}
-}

From b7ec477c9ff652b3de0e4e69a33e2b94798df398 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:34:00 +0200
Subject: [PATCH 870/872] boost: rebuild for Python 3.8.

Also ensure bjam is called with the same parameters, to avoid
a full rebuild with -j1 in do_install.
---
 common/shlibs          |  2 +-
 srcpkgs/boost/template | 13 +++++++------
 2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/common/shlibs b/common/shlibs
index f5133935773..92dae1c282c 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -683,7 +683,7 @@ libboost_stacktrace_noop.so.1.69.0 libboost_stacktrace_noop1.69-1.69.0_1<1.70.0
 libboost_stacktrace_addr2line.so.1.69.0 libboost_stacktrace_addr2line1.69-1.69.0_1<1.70.0
 libboost_stacktrace_basic.so.1.69.0 libboost_stacktrace_basic1.69-1.69.0_1<1.70.0
 libboost_python27.so.1.69.0 boost-python1.69-1.69.0_1<1.70.0
-libboost_python36.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
+libboost_python38.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
 libexempi.so.8 exempi-2.5.0_1
 libatasmart.so.4 libatasmart-0.17_1
 libsgutils2.so.2 libsgutils-1.42_1
diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 1fb0e8ed519..b516b348b14 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=6
+revision=7
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"
@@ -60,9 +60,9 @@ do_build() {
 	using python : ${py3_ver} : ${XBPS_CROSS_BASE}/usr/bin/python3 : ${XBPS_CROSS_BASE}${py3_inc} : ${XBPS_CROSS_BASE}${py3_lib} ;
 
 	__EOF
-	./bjam ${makejobs} \
+	./bjam ${makejobs} --prefix=${DESTDIR}/usr \
 		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam --debug-building \
+		--user-config=${wrksrc}/user-config.jam \
 		python=2.7,${py3_ver}
 }
 do_install() {
@@ -72,9 +72,10 @@ do_install() {
 	done
 
 	# Install headers/libs
-	./bjam --prefix=${DESTDIR}/usr abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam python=2.7,${py3_ver} install
-
+	./bjam --prefix=${DESTDIR}/usr \
+		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
+		--user-config=${wrksrc}/user-config.jam \
+		python=2.7,${py3_ver} install
 	# Install Boost.Build stuff.
 	vmkdir usr/share/boost-build
 	cd ${wrksrc}/tools/build && cp -a . ${DESTDIR}/usr/share/boost-build

From 4bced237fec782dd812ff03718fc0e2f7eb1d0fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 19:40:03 +0200
Subject: [PATCH 871/872] libpeas: update to 1.24.0.

---
 srcpkgs/libpeas/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index d4dcf8b5941..1ff2598c527 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,8 +1,8 @@
 # Template file for 'libpeas'
 pkgname=libpeas
-version=1.22.0
-revision=6
-build_style=gnu-configure
+version=1.24.0
+revision=1
+build_style=meson
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"
 makedepends="vala-devel gtk+3-devel python3-gobject-devel
@@ -13,7 +13,7 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://wiki.gnome.org/Projects/Libpeas"
 distfiles="${GNOME_SITE}/${pkgname}/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=5b2fc0f53962b25bca131a5ec0139e6fef8e254481b6e777975f7a1d2702a962
+checksum=0b9a00138c129a663de3eef5569b00ace03ce31d345f7af783768e9f35c8e6f9
 
 pre_build() {
 	if [ "$CROSS_BUILD" ]; then
@@ -35,7 +35,6 @@ libpeas-devel_package() {
 		vmove usr/lib/pkgconfig
 		vmove "usr/lib/*.so"
 		vmove usr/share/gir-1.0
-		vmove usr/share/gtk-doc
 		vmove usr/share/glade
 	}
 }

From 7295a70530a949207fdd145518b3e1f27348d385 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 20:33:53 +0200
Subject: [PATCH 872/872] scudcloud: upstream dead.

---
 srcpkgs/scudcloud/template | 21 ---------------------
 1 file changed, 21 deletions(-)
 delete mode 100644 srcpkgs/scudcloud/template

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
deleted file mode 100644
index 1ab2618066e..00000000000
--- a/srcpkgs/scudcloud/template
+++ /dev/null
@@ -1,21 +0,0 @@
-# Template file for 'scudcloud'
-pkgname=scudcloud
-version=1.65
-revision=2
-build_style=python3-module
-pycompile_module="scudcloud"
-hostmakedepends="python3-setuptools"
-makedepends="python3-setuptools python-PyQt5 python-dbus python3-PyQt5-dbus"
-depends="python3-setuptools python-PyQt5 python3-PyQt5-dbus
- python3-PyQt5-webkit xdg-utils"
-short_desc="Non official desktop client app for Slack"
-archs=noarch
-maintainer="Gurpreet Singh <gurpreet@mailfence.com>"
-license="MIT"
-homepage="https://launchpad.net/~rael-gc/+archive/ubuntu/scudcloud"
-distfiles="https://github.com/raelgc/${pkgname}/archive/v${version}.tar.gz"
-checksum=1b5420a868a37e181655e9799a3d1fcbbc0b0112349c44ac3d7936b626334791
-
-post_install() {
-	vlicense LICENSE
-}

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (5 preceding siblings ...)
  2019-10-19 19:02 ` voidlinux-github
@ 2019-10-19 21:03 ` voidlinux-github
  2019-10-19 21:14 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (25 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-10-19 21:03 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 243 bytes --]

New comment by jnbr on void-packages repository

https://github.com/void-linux/void-packages/pull/15623#issuecomment-544197085

Comment:
patch for paraview: https://github.com/jnbr/void-packages/commit/b17c111d8c3ddd277ed442c9bae5978981e0cb50

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PR PATCH] [Updated] [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (7 preceding siblings ...)
  2019-10-19 21:14 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-10-19 21:14 ` voidlinux-github
  2019-10-19 21:15 ` voidlinux-github
                   ` (23 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-10-19 21:14 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1067 bytes --]

There is an updated pull request by leahneukirchen against master on the void-packages repository

https://github.com/leahneukirchen/void-packages python38
https://github.com/void-linux/void-packages/pull/15623

[WIP] Python 3.8
This huge PR tries to bump all packages that either shlib-require
libpython3.6m.so.1.0 or put files into /usr/lib/python3.6/site-packages.

Broken packages (on x86_64):

- [ ] attic -> upstream dead, remove?
- [ ] blender -> update to 2.80
- [ ] eolie -> meson
- [x] fontforge
- [ ] freecad
- [ ] gst1-python -> meson
- [ ] libopenshot -> gcc9 issue, but supposedly fixed? @Spencer-H 
- [x] libpeas
- [x] nagstamon
- [ ] paraview
- [x] pockyt
- [x] ~~scudcloud~~
- [x] torbrowser-launcher
- [x] unknown-horizons
- [x] vapoursynth
- [x] variety
- [ ] kdevelop-python -> upstream: https://bugs.kde.org/show_bug.cgi?id=411956
- [x] krita: SHA256 mismatch
- [x] ~~shiboken~~
- [x] renderdoc

Untested:

- [ ] libreoffice


A patch file from https://github.com/void-linux/void-packages/pull/15623.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python38-15623.patch --]
[-- Type: text/x-diff, Size: 633846 bytes --]

From 9907b26ec9aacb2c9c990c665c32502ef0f7c808 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:06:59 +0200
Subject: [PATCH 001/872] python3: update to 3.8.0.

---
 common/shlibs                                 |  3 ++-
 .../python3/patches/fix-xattrs-glibc.patch    | 13 ----------
 srcpkgs/python3/patches/libressl-2.6.patch    | 26 -------------------
 srcpkgs/python3/template                      | 23 ++++++++--------
 4 files changed, 13 insertions(+), 52 deletions(-)
 delete mode 100644 srcpkgs/python3/patches/fix-xattrs-glibc.patch
 delete mode 100644 srcpkgs/python3/patches/libressl-2.6.patch

diff --git a/common/shlibs b/common/shlibs
index cc3fd8383d8..f5133935773 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1698,8 +1698,9 @@ libefiboot.so.1 libefivar-31_1
 libportaudio.so.2 portaudio-19.20140130_1
 libportaudiocpp.so.0 portaudio-cpp-19.20140130_1
 libdar.so.5000 libdar-2.4.14_1
-libpython3.so python3-3.6.2_1
 libpython3.6m.so.1.0 python3-3.6.2_1
+libpython3.so python3-3.8.0_1
+libpython3.8.so.1.0 python3-3.8.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.25.28_1
diff --git a/srcpkgs/python3/patches/fix-xattrs-glibc.patch b/srcpkgs/python3/patches/fix-xattrs-glibc.patch
deleted file mode 100644
index 909901293d5..00000000000
--- a/srcpkgs/python3/patches/fix-xattrs-glibc.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- Modules/posixmodule.c.orig
-+++ Modules/posixmodule.c
-@@ -103,8 +103,9 @@ corresponding Unix manual entries for more information on calls.");
- #undef HAVE_SCHED_SETAFFINITY
- #endif
- 
--#if defined(HAVE_SYS_XATTR_H) && defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
-+#if defined(HAVE_SYS_XATTR_H) && defined(__linux__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
- #define USE_XATTRS
-+#include <linux/limits.h>
- #endif
- 
- #ifdef USE_XATTRS
diff --git a/srcpkgs/python3/patches/libressl-2.6.patch b/srcpkgs/python3/patches/libressl-2.6.patch
deleted file mode 100644
index 92dcf1ef06e..00000000000
--- a/srcpkgs/python3/patches/libressl-2.6.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-https://github.com/python/cpython/pull/4930
-
---- Lib/test/test_ssl.py.orig
-+++ Lib/test/test_ssl.py
-@@ -29,6 +29,12 @@
- PROTOCOLS = sorted(ssl._PROTOCOL_NAMES)
- HOST = support.HOST
- IS_LIBRESSL = ssl.OPENSSL_VERSION.startswith('LibreSSL')
-+if IS_LIBRESSL:
-+    LIBRESSL_VERSION = tuple(
-+        int(s) for s in ssl.OPENSSL_VERSION.rsplit(' ')[-1].split('.')
-+    )
-+else:
-+    LIBRESSL_VERSION = ()
- IS_OPENSSL_1_1 = not IS_LIBRESSL and ssl.OPENSSL_VERSION_INFO >= (1, 1, 0)
- 
- 
-@@ -3392,6 +3398,8 @@ def test_selected_npn_protocol(self):
-                                        chatty=True, connectionchatty=True)
-             self.assertIs(stats['client_npn_protocol'], None)
- 
-+        @unittest.skipIf(IS_LIBRESSL and LIBRESSL_VERSION >= (2, 6, 1),
-+                         "LibreSSL 2.6.1+ has broken NPN support")
-         @unittest.skipUnless(ssl.HAS_NPN, "NPN support needed for this test")
-         def test_npn_protocols(self):
-             server_protocols = ['http/1.1', 'spdy/2']
diff --git a/srcpkgs/python3/template b/srcpkgs/python3/template
index 60bd4411ba8..b03a59beea8 100644
--- a/srcpkgs/python3/template
+++ b/srcpkgs/python3/template
@@ -3,7 +3,7 @@
 # THIS PKG MUST BE SYNCHRONIZED WITH "srcpkgs/python3-tkinter".
 #
 pkgname=python3
-version=3.6.9
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 short_desc="Interpreted, interactive, object-oriented programming language (${version%.*} series)"
@@ -11,7 +11,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=5e2f5f554e3f8f7f0296f7e73d8600c4e9acbaee6b2555b83206edf5153870da
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pycompile_dirs="usr/lib/python${version%.*}"
 hostmakedepends="pkg-config"
@@ -27,8 +27,7 @@ alternatives="
  python:python.1:/usr/share/man/man1/python${version%.*}.1"
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,13 +71,13 @@ do_install() {
 	rm -rf ${DESTDIR}/usr/lib/python${version%.*}/lib2to3/tests
 	# Remove references to the install(1) wrapper.
 	sed -e "s,${XBPS_WRAPPERDIR},/usr/bin,g" -i \
-		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/Makefile
 	if [ "$CROSS_BUILD" ]; then
 		# Remove references to cross toolchain.
 		sed -i "s/$XBPS_CROSS_TRIPLET-//g" \
-			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}/Makefile
 	fi
 }
 
@@ -89,10 +88,10 @@ python3-devel_package() {
 		vmove usr/bin/python*-config
 		vmove usr/lib/pkgconfig
 		vmove usr/include
-		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/libpython${version%.*}m.a \
+		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/libpython${version%.*}*.a \
 			${PKGDESTDIR}/usr/lib
-		mkdir -p ${DESTDIR}/usr/include/python${version%.*}m
-		mv ${PKGDESTDIR}/usr/include/python${version%.*}m/pyconfig.h \
-			${DESTDIR}/usr/include/python${version%.*}m
+		mkdir -p ${DESTDIR}/usr/include/python${version%.*}
+		mv ${PKGDESTDIR}/usr/include/python${version%.*}/pyconfig.h \
+			${DESTDIR}/usr/include/python${version%.*}
 	}
 }

From 82deb1f06d09e93aabaa46495a066cec2647de81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 17:09:57 +0200
Subject: [PATCH 002/872] python3-tkinter: update to 3.8.0.

---
 srcpkgs/python3-tkinter/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template
index 83906219af8..874be51ebdf 100644
--- a/srcpkgs/python3-tkinter/template
+++ b/srcpkgs/python3-tkinter/template
@@ -7,7 +7,7 @@
 _desc="Interpreted, interactive, object-oriented programming language"
 
 pkgname=python3-tkinter
-version=3.6.8
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 pycompile_dirs="
@@ -22,11 +22,10 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=35446241e995773b1bed7d196f4b624dadcadc8429f26282e756b2fb8a351193
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used.
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used.
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,7 +71,7 @@ do_install() {
 		mv ${wrksrc}/${pkgname}-${version}-install/usr/lib/python${version%.*}/${lib} \
 			${DESTDIR}/usr/lib/python${version%.*}/
 	done
-	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*m*.so \
+	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*.so \
 		${DESTDIR}/usr/lib/python${version%.*}/lib-dynload/
 	ln -sf idle${version%.*} ${DESTDIR}/usr/bin/idle3
 }

From 8bb33f77d591103b56f40685a4b61f57b43219cd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:42:15 +0200
Subject: [PATCH 003/872] common/environment/setup/python.sh: update to Python
 3.8.

---
 common/build-style/python-module.sh | 14 ++++----------
 common/environment/setup/python.sh  |  4 ++--
 2 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/common/build-style/python-module.sh b/common/build-style/python-module.sh
index da6ed586cff..ff8f107745f 100644
--- a/common/build-style/python-module.sh
+++ b/common/build-style/python-module.sh
@@ -4,7 +4,7 @@
 
 do_build() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
+	local pyver= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
@@ -12,10 +12,7 @@ do_build() {
 			LDFLAGS="$tmp_ldflags"
 
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
@@ -49,15 +46,12 @@ do_check() {
 
 do_install() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx=
+	local pyver=
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
diff --git a/common/environment/setup/python.sh b/common/environment/setup/python.sh
index d1f4d49a10a..ba181d45361 100644
--- a/common/environment/setup/python.sh
+++ b/common/environment/setup/python.sh
@@ -10,8 +10,8 @@ py2_lib="/usr/lib/python${py2_ver}"
 py2_sitelib="${py2_lib}/site-packages"
 py2_inc="/usr/include/python${py2_ver}"
 
-py3_ver="3.6"
-py3_abiver="m"
+py3_ver="3.8"
+py3_abiver=""
 py3_lib="/usr/lib/python${py3_ver}"
 py3_sitelib="${py3_lib}/site-packages"
 py3_inc="/usr/include/python${py3_ver}${py3_abiver}"

From 75fdcb94c7c7be7dc2c232d271de721d74dc1a6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 004/872] python3-3to2: rebuild for Python 3.8.

---
 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 b6ab94fe7c9..38558f1fcff 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=1
+revision=2
 archs=noarch
 wrksrc="3to2-${version}"
 build_style=python3-module

From 043957a8bcc69ef2ef270f7acd2753a544054759 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 005/872] python-Arrow: rebuild for Python 3.8.

---
 srcpkgs/python-Arrow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Arrow/template b/srcpkgs/python-Arrow/template
index 456e3776188..a3785d60075 100644
--- a/srcpkgs/python-Arrow/template
+++ b/srcpkgs/python-Arrow/template
@@ -2,7 +2,7 @@
 pkgname=python-Arrow
 reverts=0.13.1_1
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="arrow-${version}"
 build_style=python-module

From 5d1bc07743d348083ebd7dfbd1a4ece4913e6a70 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 006/872] python-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Babel/template b/srcpkgs/python-Babel/template
index 34d7a7728ce..619ae432ba4 100644
--- a/srcpkgs/python-Babel/template
+++ b/srcpkgs/python-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Babel'
 pkgname=python-Babel
 version=2.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38e28e565317345549892f5b8da9e3ab1cc3d513 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 007/872] python-BeautifulSoup4: rebuild for Python 3.8.

---
 srcpkgs/python-BeautifulSoup4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-BeautifulSoup4/template b/srcpkgs/python-BeautifulSoup4/template
index 70e4f8a58da..1f6074230c2 100644
--- a/srcpkgs/python-BeautifulSoup4/template
+++ b/srcpkgs/python-BeautifulSoup4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-BeautifulSoup4'
 pkgname=python-BeautifulSoup4
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="beautifulsoup4-${version}"
 build_style=python-module

From 193dc4fe709e1bccd18b84a58f880fde1e4394e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 008/872] python-Bottleneck: rebuild for Python 3.8.

---
 srcpkgs/python-Bottleneck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Bottleneck/template b/srcpkgs/python-Bottleneck/template
index 0c308d5dbb5..28195e99bca 100644
--- a/srcpkgs/python-Bottleneck/template
+++ b/srcpkgs/python-Bottleneck/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Bottleneck'
 pkgname=python-Bottleneck
 version=1.2.1
-revision=4
+revision=5
 wrksrc="Bottleneck-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ff4c422045070300d874353cc6c9750143422e2b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 009/872] python-Cheroot: rebuild for Python 3.8.

---
 srcpkgs/python-Cheroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Cheroot/template b/srcpkgs/python-Cheroot/template
index fcfdf76e69d..7a5375258f4 100644
--- a/srcpkgs/python-Cheroot/template
+++ b/srcpkgs/python-Cheroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Cheroot'
 pkgname=python-Cheroot
 version=8.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cheroot-${version}"
 build_style=python-module

From 6eb51b02b428d8054b1d3a3aa21e6bdcde31cf9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 010/872] python3-CherryPy: rebuild for Python 3.8.

---
 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 b78c01eba2c..450e5791508 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.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python3-module

From 8522b77c798415c2f59fc3b26adc757f66aa0fa7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 011/872] python-ConfigArgParse: rebuild for Python 3.8.

---
 srcpkgs/python-ConfigArgParse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ConfigArgParse/template b/srcpkgs/python-ConfigArgParse/template
index c9a00a04508..d90ca739aee 100644
--- a/srcpkgs/python-ConfigArgParse/template
+++ b/srcpkgs/python-ConfigArgParse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ConfigArgParse'
 pkgname=python-ConfigArgParse
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ConfigArgParse-${version}"
 build_style=python-module

From 3dcbda27301f3e918539317bc411ff556115ef1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 012/872] python-Cython: rebuild for Python 3.8.

---
 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 dc39d54e9c2..675160b3744 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.13
-revision=1
+revision=2
 wrksrc="Cython-${version}"
 build_style=python-module
 pycompile_module="Cython pyximport cython.py"

From 7c69ef59e0a628c13ece955c9f7322631824adca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 013/872] python-Django: rebuild for Python 3.8.

---
 srcpkgs/python-Django/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Django/template b/srcpkgs/python-Django/template
index 21aa405fba1..65a98e41032 100644
--- a/srcpkgs/python-Django/template
+++ b/srcpkgs/python-Django/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Django'
 pkgname=python-Django
 version=1.11.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="Django-${version}"
 build_style=python-module

From 33b250adb0abf2e46663f0a05749097633fce228 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 014/872] python-Flask: rebuild for Python 3.8.

---
 srcpkgs/python-Flask/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask/template b/srcpkgs/python-Flask/template
index 149a76c077e..b75b306701b 100644
--- a/srcpkgs/python-Flask/template
+++ b/srcpkgs/python-Flask/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask'
 pkgname=python-Flask
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9167e534992bd8d17a79a70e22a3b06c68c9762b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 015/872] python-Flask-Assets: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Assets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Assets/template b/srcpkgs/python-Flask-Assets/template
index 339f629f77a..eb81201396b 100644
--- a/srcpkgs/python-Flask-Assets/template
+++ b/srcpkgs/python-Flask-Assets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Assets'
 pkgname=python-Flask-Assets
 version=0.12
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c65d524eb8ee83f7c8eae3ca16878857a374e06c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 016/872] python-Flask-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Babel/template b/srcpkgs/python-Flask-Babel/template
index 3028d15d7bd..b3cc35f230e 100644
--- a/srcpkgs/python-Flask-Babel/template
+++ b/srcpkgs/python-Flask-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Babel'
 pkgname=python-Flask-Babel
 version=0.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From d52f7742820844af3ec25f4b6d4d6d58b19ad722 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 017/872] python-Flask-Login: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Login/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Login/template b/srcpkgs/python-Flask-Login/template
index 8fecf240963..ccaab92d857 100644
--- a/srcpkgs/python-Flask-Login/template
+++ b/srcpkgs/python-Flask-Login/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Login'
 pkgname=python-Flask-Login
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 112c53663ece086d477e4d4fcbc667ae6a2fb518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 018/872] python-Flask-OAuthlib: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-OAuthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-OAuthlib/template b/srcpkgs/python-Flask-OAuthlib/template
index d53157e37b2..958f05a836c 100644
--- a/srcpkgs/python-Flask-OAuthlib/template
+++ b/srcpkgs/python-Flask-OAuthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-OAuthlib'
 pkgname=python-Flask-OAuthlib
 version=0.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From aca82b53b5330ee4a154f2246569006b2d3a38c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 019/872] python3-Flask-RESTful: rebuild for Python 3.8.

---
 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 d0ed467f666..5a05eed0e93 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.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="flask-restful-${version}"
 build_style=python3-module

From 3121295fb06a2b12c0e42b9a6412c1fa52bb86fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 020/872] python-Flask-Script: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Script/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Script/template b/srcpkgs/python-Flask-Script/template
index 19d13887b8e..41312eae57f 100644
--- a/srcpkgs/python-Flask-Script/template
+++ b/srcpkgs/python-Flask-Script/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Script'
 pkgname=python-Flask-Script
 version=2.0.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From cfadd6a4c47e4e611c9d739113006da88f9cb8e7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 021/872] python-Flask-WTF: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-WTF/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-WTF/template b/srcpkgs/python-Flask-WTF/template
index 8edb1d39e35..b2be1e630fb 100644
--- a/srcpkgs/python-Flask-WTF/template
+++ b/srcpkgs/python-Flask-WTF/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-WTF'
 pkgname=python-Flask-WTF
 version=0.14.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 11896d4bd9e1767f6ad8b10e737f0e6a0f5df44f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 022/872] python-GitPython: rebuild for Python 3.8.

---
 srcpkgs/python-GitPython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-GitPython/template b/srcpkgs/python-GitPython/template
index 0edb43cc811..232429265f1 100644
--- a/srcpkgs/python-GitPython/template
+++ b/srcpkgs/python-GitPython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-GitPython'
 pkgname=python-GitPython
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="GitPython-${version}"
 build_style=python-module

From 7008fe32294cead7ef25084a09f874e87cad05e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 023/872] python-IPy: rebuild for Python 3.8.

---
 srcpkgs/python-IPy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-IPy/template b/srcpkgs/python-IPy/template
index d28276383ce..aaae9fcd002 100644
--- a/srcpkgs/python-IPy/template
+++ b/srcpkgs/python-IPy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-IPy'
 pkgname=python-IPy
 version=1.00
-revision=1
+revision=2
 archs=noarch
 wrksrc="IPy-${version}"
 build_style=python-module

From 4ee5b9129c818c4db475e75f899f1f21eb9c312c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 024/872] python3-Inflector: rebuild for Python 3.8.

---
 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 1bfe9ccef7c..e9ee0ffe8d1 100644
--- a/srcpkgs/python3-Inflector/template
+++ b/srcpkgs/python3-Inflector/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-Inflector'
 pkgname=python3-Inflector
 version=2.0.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="Inflector-${version}"
 build_style=python3-module

From 631236d908cbeed8345c2fb159c73e7c54fe1571 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 025/872] python-Jinja2: rebuild for Python 3.8.

---
 srcpkgs/python-Jinja2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Jinja2/template b/srcpkgs/python-Jinja2/template
index c67e6f47f06..3fcd44dc198 100644
--- a/srcpkgs/python-Jinja2/template
+++ b/srcpkgs/python-Jinja2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Jinja2'
 pkgname=python-Jinja2
 version=2.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Jinja2-${version}"
 build_style=python-module

From 3a7808b9f47226adec7dd1e59bef222cf38d7e9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 026/872] python-Levenshtein: rebuild for Python 3.8.

---
 srcpkgs/python-Levenshtein/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Levenshtein/template b/srcpkgs/python-Levenshtein/template
index 26f57d90e70..7d97147ccc8 100644
--- a/srcpkgs/python-Levenshtein/template
+++ b/srcpkgs/python-Levenshtein/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Levenshtein'
 pkgname=python-Levenshtein
 version=0.12.0
-revision=2
+revision=3
 build_style=python-module
 pycompile_module="Levenshtein"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"

From 6d2a898ccc971553cf9dab7239daf8d626350b19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 027/872] python-M2Crypto: rebuild for Python 3.8.

---
 srcpkgs/python-M2Crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-M2Crypto/template b/srcpkgs/python-M2Crypto/template
index 102dbb7261e..6febd5a9ea1 100644
--- a/srcpkgs/python-M2Crypto/template
+++ b/srcpkgs/python-M2Crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-M2Crypto'
 pkgname=python-M2Crypto
 version=0.35.2
-revision=1
+revision=2
 wrksrc="M2Crypto-${version}"
 build_style=python-module
 pycompile_module="M2Crypto"

From 3597aa866d7cb1ff4d5316a0cfe52c8aa8ab717c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 028/872] python-Mako: rebuild for Python 3.8.

---
 srcpkgs/python-Mako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Mako/template b/srcpkgs/python-Mako/template
index e5c3c76170c..f0184179b83 100644
--- a/srcpkgs/python-Mako/template
+++ b/srcpkgs/python-Mako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Mako'
 pkgname=python-Mako
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Mako-${version}"
 build_style=python-module

From 164d5bbfa645fb7b1ddbfbccebb7b85e407c578f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 029/872] python-Markdown: rebuild for Python 3.8.

---
 srcpkgs/python-Markdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markdown/template b/srcpkgs/python-Markdown/template
index 935dcc12bca..03a0d18e23b 100644
--- a/srcpkgs/python-Markdown/template
+++ b/srcpkgs/python-Markdown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markdown'
 pkgname=python-Markdown
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python-module

From c5fcb10688938a17e3acb9f9c630c300f5fe9672 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 030/872] python-MarkupSafe: rebuild for Python 3.8.

---
 srcpkgs/python-MarkupSafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MarkupSafe/template b/srcpkgs/python-MarkupSafe/template
index c12dbb7e656..ae22857aa7a 100644
--- a/srcpkgs/python-MarkupSafe/template
+++ b/srcpkgs/python-MarkupSafe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MarkupSafe'
 pkgname=python-MarkupSafe
 version=1.1.1
-revision=1
+revision=2
 wrksrc="MarkupSafe-${version}"
 build_style=python-module
 pycompile_module="markupsafe"

From b7a4bc0f45110c5c3bd019a437078724336d1888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 031/872] python-Markups: rebuild for Python 3.8.

---
 srcpkgs/python-Markups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markups/template b/srcpkgs/python-Markups/template
index d4817feb430..02ba25ee05c 100644
--- a/srcpkgs/python-Markups/template
+++ b/srcpkgs/python-Markups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markups'
 pkgname=python-Markups
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markups-${version}"
 build_style=python-module

From af8fe2e4b17c908737f599cc43d860493f7da689 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 032/872] python3-MechanicalSoup: rebuild for Python 3.8.

---
 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 b1bbfa4184c..5a3b0b3eb03 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=1
+revision=2
 archs=noarch
 wrksrc=MechanicalSoup-${version}
 build_style=python3-module

From 4d05157344a63fb3d617b00a4268732231187cb4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 033/872] python-MiniMock: rebuild for Python 3.8.

---
 srcpkgs/python-MiniMock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MiniMock/template b/srcpkgs/python-MiniMock/template
index 38c0723f374..8b8c4f5f1e6 100644
--- a/srcpkgs/python-MiniMock/template
+++ b/srcpkgs/python-MiniMock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MiniMock'
 pkgname=python-MiniMock
 version=1.2.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 25b62a34488966009bf8450b60653f01872e2310 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 034/872] python-Pillow: rebuild for Python 3.8.

---
 srcpkgs/python-Pillow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pillow/template b/srcpkgs/python-Pillow/template
index e43d22b8f62..f1791b46d79 100644
--- a/srcpkgs/python-Pillow/template
+++ b/srcpkgs/python-Pillow/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pillow'
 pkgname=python-Pillow
 version=6.2.0
-revision=1
+revision=2
 wrksrc="Pillow-${version}"
 build_style=python-module
 pycompile_module="PIL"

From f79ffe3fe477b7fff206250125a96da96c80c086 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 035/872] python-PyAudio: rebuild for Python 3.8.

---
 srcpkgs/python-PyAudio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyAudio/template b/srcpkgs/python-PyAudio/template
index 5c3286caae0..2e84cf5cc8f 100644
--- a/srcpkgs/python-PyAudio/template
+++ b/srcpkgs/python-PyAudio/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyAudio'
 pkgname=python-PyAudio
 version=0.2.11
-revision=2
+revision=3
 wrksrc="PyAudio-${version}"
 build_style=python-module
 pycompile_module="pyaudio.py"

From 11c99c939a4791ec394842255e6aac23eaae5920 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 036/872] python3-PyBrowserID: rebuild for Python 3.8.

---
 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 abec9dac54e..eefd0175f1b 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=2
+revision=3
 archs=noarch
 wrksrc="PyBrowserID-${version}"
 build_style=python3-module

From d49beb289c07b8d33e8e2f286e068c0e8b3fe4b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 037/872] python3-PyFxA: rebuild for Python 3.8.

---
 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 31175c92435..6fc6791efdd 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=1
+revision=2
 archs=noarch
 wrksrc="PyFxA-${version}"
 build_style=python3-module

From d0eb109c7435d396e67de8f37a376ca0a2958d93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 038/872] python-PyHamcrest: rebuild for Python 3.8.

---
 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 61078241d8a..48f001595aa 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=1
+revision=2
 archs=noarch
 wrksrc="PyHamcrest-${version}"
 build_style=python-module

From 4afc9e488b53ee7025095fe93072953c256fc630 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 039/872] python-PyICU: rebuild for Python 3.8.

---
 srcpkgs/python-PyICU/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyICU/template b/srcpkgs/python-PyICU/template
index be4aaf88639..aab2934cbbd 100644
--- a/srcpkgs/python-PyICU/template
+++ b/srcpkgs/python-PyICU/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyICU'
 pkgname=python-PyICU
 version=2.3.1
-revision=2
+revision=3
 wrksrc="PyICU-${version}"
 build_style=python-module
 pycompile_module="icu PyICU.py"

From a0c3f96b4df2b1efda070832287f3728314c717a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 040/872] python3-PyJWT: rebuild for Python 3.8.

---
 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 6f0830125c1..bf1dda0753e 100644
--- a/srcpkgs/python3-PyJWT/template
+++ b/srcpkgs/python3-PyJWT/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-PyJWT'
 pkgname=python3-PyJWT
 version=1.7.1
-revision=1
+revision=2
 wrksrc="PyJWT-${version}"
 build_style=python3-module
 pycompile_module="PyJWT.py"

From 0355fd4b78af7fbf4ffad4b12dc8e153b70d703d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 041/872] python-PyOpenGL: rebuild for Python 3.8.

---
 srcpkgs/python-PyOpenGL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyOpenGL/template b/srcpkgs/python-PyOpenGL/template
index ec08e0bd667..eafc3be1210 100644
--- a/srcpkgs/python-PyOpenGL/template
+++ b/srcpkgs/python-PyOpenGL/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL'
 pkgname=python-PyOpenGL
 version=3.1.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="PyOpenGL-${version}"
 build_style=python-module

From 1a8da5c4a7dbf53ec6c03efd5387e02d2b0be720 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 17:15:54 +0200
Subject: [PATCH 042/872] python-PyOpenGL-accelerate: update to 3.1.3b1.

---
 srcpkgs/python-PyOpenGL-accelerate/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python-PyOpenGL-accelerate/template b/srcpkgs/python-PyOpenGL-accelerate/template
index 25d84abffcb..5d16a82b845 100644
--- a/srcpkgs/python-PyOpenGL-accelerate/template
+++ b/srcpkgs/python-PyOpenGL-accelerate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL-accelerate'
 pkgname=python-PyOpenGL-accelerate
-version=3.1.0
-revision=5
+version=3.1.3b1
+revision=1
 wrksrc="PyOpenGL-accelerate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"
@@ -9,10 +9,10 @@ makedepends="python-devel python3-devel python-numpy python3-numpy"
 depends="python-numpy"
 short_desc="Acceleration code for PyOpenGL (Python2)"
 maintainer="Alain Kalker <a.c.kalker@gmail.com>"
-license="3-clause-BSD"
+license="BSD-3-Clause"
 homepage="http://pyopengl.sourceforge.net/"
 distfiles="${PYPI_SITE}/P/PyOpenGL-accelerate/PyOpenGL-accelerate-${version}.tar.gz"
-checksum=927f4670b893d46e2f6273ae938bf0a1db27ffae3336eba94813ccef6260c410
+checksum=e687eea7e006d65f531933b49b3b3d2feaaf51279147a904247f9d189762a36f
 
 post_install() {
 	vlicense license.txt LICENSE

From 2f6b6f2c3880b16991df568d3ac18efca5c970c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 043/872] python-PyQt5: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5/template b/srcpkgs/python-PyQt5/template
index 6534d4e22e6..9eba20dc514 100644
--- a/srcpkgs/python-PyQt5/template
+++ b/srcpkgs/python-PyQt5/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5'
 pkgname=python-PyQt5
 version=5.13.0
-revision=1
+revision=2
 _sipver=4.19.18
 lib32disabled=yes
 wrksrc="PyQt5_gpl-${version}"

From cf20a1f23e0c305d2e9672610364b2fd4f566695 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 044/872] python-PyQt5-webengine: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5-webengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5-webengine/template b/srcpkgs/python-PyQt5-webengine/template
index 996ef6b00e2..af7162d20cb 100644
--- a/srcpkgs/python-PyQt5-webengine/template
+++ b/srcpkgs/python-PyQt5-webengine/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5-webengine'
 pkgname=python-PyQt5-webengine
 version=5.13.0
-revision=1
+revision=2
 wrksrc="PyQtWebEngine_gpl-${version}"
 pycompile_module="PyQt5WebEngine"
 hostmakedepends="pkg-config qt5-qmake

From 84502fbd3a591ad0db01072998b5a2b3fcfcf192 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 045/872] python-Pygments: rebuild for Python 3.8.

---
 srcpkgs/python-Pygments/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pygments/template b/srcpkgs/python-Pygments/template
index f5a72ca6cea..8d2214a6bfc 100644
--- a/srcpkgs/python-Pygments/template
+++ b/srcpkgs/python-Pygments/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pygments'
 pkgname=python-Pygments
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Pygments-${version}"
 build_style=python-module

From ef2467b2248b773e2d940058876cf81a2b935043 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 046/872] python-Pyro4: rebuild for Python 3.8.

---
 srcpkgs/python-Pyro4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pyro4/template b/srcpkgs/python-Pyro4/template
index d8925aa141f..0417e9f6a8a 100644
--- a/srcpkgs/python-Pyro4/template
+++ b/srcpkgs/python-Pyro4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pyro4'
 pkgname=python-Pyro4
 version=4.75
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a80785231122d63ad91b973744bf59b0a1b59506 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 047/872] python3-ReParser: rebuild for Python 3.8.

---
 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 5e7b5de3790..5959de9d0e3 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=1
+revision=2
 archs=noarch
 wrksrc=ReParser-${version}
 build_style=python3-module

From 543272b7ff22e6f0642d879c60f19717643fec8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 048/872] python-SPARQLWrapper: rebuild for Python 3.8.

---
 srcpkgs/python-SPARQLWrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-SPARQLWrapper/template b/srcpkgs/python-SPARQLWrapper/template
index d014eb8aab4..8d2db9a02b3 100644
--- a/srcpkgs/python-SPARQLWrapper/template
+++ b/srcpkgs/python-SPARQLWrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'python-SPARQLWrapper'
 pkgname=python-SPARQLWrapper
 version=1.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a01a9e6bc3bd9fddfdd13341f78e625b063be5c8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 049/872] python-SQLAlchemy: rebuild for Python 3.8.

---
 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 7b529ade621..110430ff9f5 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.8
-revision=1
+revision=2
 wrksrc="SQLAlchemy-${version}"
 build_style=python-module
 pycompile_module="sqlalchemy"

From 46382571cad86b54ca46e129f7c2988772d0a48e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 050/872] python3-SecretStorage: rebuild for Python 3.8.

---
 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 8df813ad247..b19d4865f7e 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.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="SecretStorage-${version}"
 build_style=python3-module

From c79427640956f1961211ce3322c3811958e0f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 051/872] python3-SoCo: rebuild for Python 3.8.

---
 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 f0ac9825f57..01ebbeff15a 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="SoCo-${version}"
 build_style=python3-module

From 20a1ac5477ca4a76e0257e06bf6f353835eac7bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 052/872] python-Sphinx: rebuild for Python 3.8.

---
 srcpkgs/python-Sphinx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Sphinx/template b/srcpkgs/python-Sphinx/template
index e70dc9b238e..42969925f9e 100644
--- a/srcpkgs/python-Sphinx/template
+++ b/srcpkgs/python-Sphinx/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Sphinx'
 pkgname=python-Sphinx
 version=1.8.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="Sphinx-${version}"
 build_style=python-module

From 863c01ff80faa4de651a55ba2a354f8da5e6b025 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 053/872] python3-Telethon: rebuild for Python 3.8.

---
 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 b0786559591..d0fa8e34d3f 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.10.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="Telethon-${version}"
 build_style=python3-module

From efc9766b9866c660a4cb508c49be4df48f1e5809 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 054/872] python-Twisted: rebuild for Python 3.8.

---
 srcpkgs/python-Twisted/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Twisted/template b/srcpkgs/python-Twisted/template
index 519a1e251a9..e94e0edf26e 100644
--- a/srcpkgs/python-Twisted/template
+++ b/srcpkgs/python-Twisted/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Twisted'
 pkgname=python-Twisted
 version=18.9.0
-revision=3
+revision=4
 wrksrc="Twisted-${version}"
 build_style=python-module
 pycompile_module="twisted"

From 5fd974f3940d5ee91fe712fef2e93ce539743b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 055/872] python3-TxSNI: rebuild for Python 3.8.

---
 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 403010da5be..d9d7c2a0c83 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.1.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="TxSNI-${version}"
 build_style=python3-module

From 559184031fe43c0ff648fb7fab55ede08fff2c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 056/872] python-Unidecode: rebuild for Python 3.8.

---
 srcpkgs/python-Unidecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Unidecode/template b/srcpkgs/python-Unidecode/template
index 035c5d846be..444eb1427d6 100644
--- a/srcpkgs/python-Unidecode/template
+++ b/srcpkgs/python-Unidecode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Unidecode'
 pkgname=python-Unidecode
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Unidecode-${version}"
 build_style=python-module

From 07f0904b4cb8f2de0b7bc39c0ca28d225c91257d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 057/872] python-WTForms: rebuild for Python 3.8.

---
 srcpkgs/python-WTForms/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-WTForms/template b/srcpkgs/python-WTForms/template
index 06af2366050..98dff7d092f 100644
--- a/srcpkgs/python-WTForms/template
+++ b/srcpkgs/python-WTForms/template
@@ -1,7 +1,7 @@
 # Template file for 'python-WTForms'
 pkgname=python-WTForms
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="WTForms-${version}"
 build_style=python-module

From ec81beba1921fe189a8dd80810da306514a86c1a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 058/872] python3-WebOb: rebuild for Python 3.8.

---
 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 c360542a1f2..53e63879f2c 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=1
+revision=2
 archs=noarch
 wrksrc="WebOb-${version}"
 build_style=python3-module

From 0b7a4a756b3ead4c188a3819311c4471c1b0a21c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 059/872] python-Werkzeug: rebuild for Python 3.8.

---
 srcpkgs/python-Werkzeug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Werkzeug/template b/srcpkgs/python-Werkzeug/template
index 24fff62f1ae..1ca303822e8 100644
--- a/srcpkgs/python-Werkzeug/template
+++ b/srcpkgs/python-Werkzeug/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Werkzeug'
 pkgname=python-Werkzeug
 version=0.15.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c530a6e11127606a3b29b73da4cb31f010d97b5c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 060/872] python-Whoosh: rebuild for Python 3.8.

---
 srcpkgs/python-Whoosh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Whoosh/template b/srcpkgs/python-Whoosh/template
index f2118ed0af2..66856b206a7 100644
--- a/srcpkgs/python-Whoosh/template
+++ b/srcpkgs/python-Whoosh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-whoosh'
 pkgname=python-Whoosh
 version=2.7.4
-revision=1
+revision=2
 wrksrc="Whoosh-${version}"
 archs=noarch
 build_style=python-module

From 3e3ad6526265ded86e6e1b5539061302a3890381 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 061/872] python3-XlsxWriter: rebuild for Python 3.8.

---
 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 ea68ced9a03..b991457e01e 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.1.8
-revision=1
+revision=2
 archs="noarch"
 wrksrc="XlsxWriter-RELEASE_${version}"
 build_style=python3-module

From ed808be70fb42a5a7e827e43a5d8a9954d85823a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 062/872] python-Yapsy: rebuild for Python 3.8.

---
 srcpkgs/python-Yapsy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Yapsy/template b/srcpkgs/python-Yapsy/template
index 9f79423f91d..5ad8b234f5d 100644
--- a/srcpkgs/python-Yapsy/template
+++ b/srcpkgs/python-Yapsy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Yapsy'
 pkgname=python-Yapsy
 version=1.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Yapsy-${version}"
 build_style=python-module

From ef3f8b60f72752d3ec1c7676df4597cc6cfdfb42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 063/872] python-aalib: rebuild for Python 3.8.

---
 srcpkgs/python-aalib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-aalib/template b/srcpkgs/python-aalib/template
index 349b8407343..f9621a9c8dc 100644
--- a/srcpkgs/python-aalib/template
+++ b/srcpkgs/python-aalib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-aalib'
 pkgname=python-aalib
 version=0.3.2
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="aalib.py"
 hostmakedepends="python-setuptools python3-setuptools"

From 1aee008231a9354b62bbf679e89e620deeba0d34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 064/872] python3-acme: rebuild for Python 3.8.

---
 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 d7ef20f2301..844dde9c814 100644
--- a/srcpkgs/python3-acme/template
+++ b/srcpkgs/python3-acme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-acme'
 pkgname=python3-acme
 version=0.39.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="acme-${version}"
 build_style=python3-module

From 877668118087bb2d0bd4b8ebf34db7c6c4308c31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 065/872] python3-aiodns: rebuild for Python 3.8.

---
 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 cca9f45dbf5..8e06ea6e614 100644
--- a/srcpkgs/python3-aiodns/template
+++ b/srcpkgs/python3-aiodns/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiodns'
 pkgname=python3-aiodns
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiodns-${version}"
 build_style=python3-module

From de87766918ac8688cf8992433b56e9b1ad222108 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 066/872] python3-aiohttp: rebuild for Python 3.8.

---
 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 fbe98e07b2b..67e450e6aab 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.5.4
-revision=3
+revision=4
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 0c2d285f8d7edc438e657ec9bc4a2b16982a4a57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 067/872] python3-aiohttp-cors: rebuild for Python 3.8.

---
 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 8a643ca1797..b621716e3cd 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=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 4643a6f9e03d1657e1ac2f5ca93bf616979b58de Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 068/872] python3-aiohttp-cors2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp-cors2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp-cors2/template b/srcpkgs/python3-aiohttp-cors2/template
index 7ff1206538b..f13b0598456 100644
--- a/srcpkgs/python3-aiohttp-cors2/template
+++ b/srcpkgs/python3-aiohttp-cors2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp-cors2'
 pkgname=python3-aiohttp-cors2
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 9db81023f9f60f7a78d62f9f9b8f1fa8afbb9fa8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 069/872] python3-aiohttp2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp2/template b/srcpkgs/python3-aiohttp2/template
index b570043baba..db3704b5700 100644
--- a/srcpkgs/python3-aiohttp2/template
+++ b/srcpkgs/python3-aiohttp2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp2'
 pkgname=python3-aiohttp2
 version=2.3.10
-revision=2
+revision=3
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 9bf56f834aca73a7ea8141ab0c95b4aed0d1f09a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 070/872] python3-aiohttp_socks: rebuild for Python 3.8.

---
 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 93c45ff24c4..10ab967ef76 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.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp_socks-${version}"
 build_style=python3-module

From acad4e265f43c8bc2098168adb1c0442a0c22445 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 071/872] python3-aiorpcx: rebuild for Python 3.8.

---
 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 42b6dc541bf..07922e15ccd 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.17.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiorpcX-${version}"
 build_style=python3-module

From b4945f68890b617f5b513871e533769a2149f07f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 072/872] python-alabaster: rebuild for Python 3.8.

---
 srcpkgs/python-alabaster/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alabaster/template b/srcpkgs/python-alabaster/template
index e4ece5c2991..b33009d5efb 100644
--- a/srcpkgs/python-alabaster/template
+++ b/srcpkgs/python-alabaster/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alabaster'
 pkgname=python-alabaster
 version=0.7.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="alabaster-${version}"
 build_style=python-module

From 04c416b8fb310277c61713ee1b8dd702a970240b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 073/872] python-alembic: rebuild for Python 3.8.

---
 srcpkgs/python-alembic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alembic/template b/srcpkgs/python-alembic/template
index 4011b33c0fa..aecbe10e7d0 100644
--- a/srcpkgs/python-alembic/template
+++ b/srcpkgs/python-alembic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alembic'
 pkgname=python-alembic
 version=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="alembic-${version}"
 build_style=python-module

From 5c2d4bcc3255cb59561524d151fe84b3a70e8ad4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 074/872] python3-altgraph: rebuild for Python 3.8.

---
 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 eff10f7aef4..2bf433edb6e 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.16.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="altgraph-${version}"
 build_style=python3-module

From 3c6234d42f7adffca219ea7f98f11d5283dce900 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 075/872] python3-aniso8601: rebuild for Python 3.8.

---
 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 26540bc8c3f..0253b89b5a3 100644
--- a/srcpkgs/python3-aniso8601/template
+++ b/srcpkgs/python3-aniso8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aniso8601'
 pkgname=python3-aniso8601
 version=8.0.0
-revision=1
+revision=2
 archs=noarch
 _gitver=0ec13b9d81c9
 wrksrc="nielsenb-aniso8601-${_gitver}"

From b4fecde90241517d0629d46de55f99a1ef7edbaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 076/872] python-ansicolor: rebuild for Python 3.8.

---
 srcpkgs/python-ansicolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ansicolor/template b/srcpkgs/python-ansicolor/template
index af18c5b946d..3663a82f0cc 100644
--- a/srcpkgs/python-ansicolor/template
+++ b/srcpkgs/python-ansicolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ansicolor'
 pkgname=python-ansicolor
 version=0.2.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="ansicolor-${version}"
 build_style=python-module

From 3983fbed547fd194f9eefaaf58d10c7770e27350 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 077/872] python3-anytree: rebuild for Python 3.8.

---
 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 5a37dba6581..7368754c426 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.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="anytree-${version}"
 build_style=python3-module

From 6d797f541c2cb160f9cfebd0a3e71dace50cceb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 078/872] python-appdirs: rebuild for Python 3.8.

---
 srcpkgs/python-appdirs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-appdirs/template b/srcpkgs/python-appdirs/template
index fdae1fe184b..15354ec5768 100644
--- a/srcpkgs/python-appdirs/template
+++ b/srcpkgs/python-appdirs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-appdirs'
 pkgname=python-appdirs
 version=1.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 7a7c86554157d7224efc221e706b9aebfc1ff796 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 079/872] python3-applib: rebuild for Python 3.8.

---
 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 95f589dc65a..0fb5a42e618 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=1
+revision=2
 archs=noarch
 wrksrc="applib-${version}"
 build_style=python3-module

From 642416934e5f74b49e1a38fe6e941287cbccbf83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 080/872] python-apsw: rebuild for Python 3.8.

---
 srcpkgs/python-apsw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-apsw/template b/srcpkgs/python-apsw/template
index ed47b4a7803..6146ea639db 100644
--- a/srcpkgs/python-apsw/template
+++ b/srcpkgs/python-apsw/template
@@ -3,7 +3,7 @@ pkgname=python-apsw
 _distver=3.29.0
 _patchver=r1
 version=${_distver}${_patchver}
-revision=1
+revision=2
 wrksrc="apsw-${_distver}-${_patchver}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 765bd2f2b82c6226b12a5d6bbe156b07c03a1bca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 081/872] python-argh: rebuild for Python 3.8.

---
 srcpkgs/python-argh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argh/template b/srcpkgs/python-argh/template
index 4b7aec3b525..656da441757 100644
--- a/srcpkgs/python-argh/template
+++ b/srcpkgs/python-argh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argh'
 pkgname=python-argh
 version=0.26.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="argh-${version}"
 build_style=python-module

From 1f6f709fcbb4353d419be8d129ce581747dae1ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 082/872] python-argon2: rebuild for Python 3.8.

---
 srcpkgs/python-argon2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argon2/template b/srcpkgs/python-argon2/template
index 0b4b132cddd..1b5216cc9c0 100644
--- a/srcpkgs/python-argon2/template
+++ b/srcpkgs/python-argon2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argon2'
 pkgname=python-argon2
 version=18.3.0
-revision=2
+revision=3
 wrksrc="argon2_cffi-${version}"
 build_style=python-module
 pycompile_module="argon2"

From 26f299203792a3fe43e8944054d8c61c83416097 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 083/872] python-arxiv2bib: rebuild for Python 3.8.

---
 srcpkgs/python-arxiv2bib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-arxiv2bib/template b/srcpkgs/python-arxiv2bib/template
index 8bbc6bcf78e..4f245755dcf 100644
--- a/srcpkgs/python-arxiv2bib/template
+++ b/srcpkgs/python-arxiv2bib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-arxiv2bib'
 pkgname=python-arxiv2bib
 version=1.0.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="arxiv2bib-${version}"
 build_style=python-module

From 5d25b8642b8f8043e54a95f2ff5efc880044395a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 084/872] python-asn1crypto: rebuild for Python 3.8.

---
 srcpkgs/python-asn1crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-asn1crypto/template b/srcpkgs/python-asn1crypto/template
index 369c20af98f..e7ffe7415fc 100644
--- a/srcpkgs/python-asn1crypto/template
+++ b/srcpkgs/python-asn1crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-asn1crypto'
 pkgname=python-asn1crypto
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="asn1crypto-${version}"
 build_style=python-module

From c0625af704339d35d7423cd750ef2620c53c39bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 085/872] python-astral: rebuild for Python 3.8.

---
 srcpkgs/python-astral/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-astral/template b/srcpkgs/python-astral/template
index b8fdaee27ac..07aaeee166b 100644
--- a/srcpkgs/python-astral/template
+++ b/srcpkgs/python-astral/template
@@ -1,7 +1,7 @@
 # Template file for 'python-astral'
 pkgname=python-astral
 version=1.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python-}-${version}"
 build_style=python-module

From 6cdbd1584336605868e949368279bb6c2143b1d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 086/872] python3-astroid: rebuild for Python 3.8.

---
 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 28f01bd4445..d964fd2cdf3 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.2.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="astroid-${version}"
 build_style=python3-module

From c0642f6c760884c3209a89e643de35660419627a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 087/872] python3-async-timeout: rebuild for Python 3.8.

---
 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 d949a4fdf9a..854584fb5b2 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=1
+revision=2
 archs=noarch
 wrksrc="async-timeout-${version}"
 build_style=python3-module

From 17cdd1aac68337b8859ce0d970b309f841b8a456 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 088/872] python3-async_generator: rebuild for Python 3.8.

---
 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 c2053d7bf1f..20d9f7ea0d1 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=1
+revision=2
 archs=noarch
 wrksrc="async_generator-${version}"
 build_style=python3-module

From e57ec7e6820968645a23bcc13867add4c9a62399 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 089/872] python-atomicwrites: rebuild for Python 3.8.

---
 srcpkgs/python-atomicwrites/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atomicwrites/template b/srcpkgs/python-atomicwrites/template
index 849272e53f9..ec411d981d4 100644
--- a/srcpkgs/python-atomicwrites/template
+++ b/srcpkgs/python-atomicwrites/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atomicwrites'
 pkgname=python-atomicwrites
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="atomicwrites-${version}"
 build_style=python-module

From 61df9fa27dc05bc6bb5d5a2c5e806fd041d9adb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 090/872] python-atspi: rebuild for Python 3.8.

---
 srcpkgs/python-atspi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atspi/template b/srcpkgs/python-atspi/template
index 4a2007fa319..cfa1ef35377 100644
--- a/srcpkgs/python-atspi/template
+++ b/srcpkgs/python-atspi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atspi'
 pkgname=python-atspi
 version=2.32.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure

From d24c76e2f70e9a9dd9a6aa66a323bf79f37f9110 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 091/872] python-attrs: rebuild for Python 3.8.

---
 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 aaddb13f5be..6e2297a9553 100644
--- a/srcpkgs/python-attrs/template
+++ b/srcpkgs/python-attrs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-attrs'
 pkgname=python-attrs
 version=19.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="attrs-${version}"
 build_style=python-module

From dba37b5f26f28057cb10e86a08a4d2281ee09b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 092/872] python-audioread: rebuild for Python 3.8.

---
 srcpkgs/python-audioread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-audioread/template b/srcpkgs/python-audioread/template
index fc788a2778c..bc878d4b82d 100644
--- a/srcpkgs/python-audioread/template
+++ b/srcpkgs/python-audioread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-audioread'
 pkgname=python-audioread
 version=2.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="audioread-${version}"
 build_style=python-module

From 789a6f2ae1cd503ad69b6a968651c7745f878718 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 093/872] audit: rebuild for Python 3.8.

---
 srcpkgs/audit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/audit/template b/srcpkgs/audit/template
index c624aae0f6d..3e0d21784c0 100644
--- a/srcpkgs/audit/template
+++ b/srcpkgs/audit/template
@@ -1,7 +1,7 @@
 # Template file for 'audit'
 pkgname=audit
 version=2.8.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--libdir=/usr/lib --enable-shared=audit --enable-gssapi-krb5
  --with-apparmor --with-libcap-ng --with-python3"

From e2efc441ba2dda6eac89d6d19f7960be2fb6cb6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 094/872] python3-autobahn: rebuild for Python 3.8.

---
 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 053e45608e5..524ba4b4566 100644
--- a/srcpkgs/python3-autobahn/template
+++ b/srcpkgs/python3-autobahn/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-autobahn'
 pkgname=python3-autobahn
 version=19.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="autobahn-${version}"
 build_style=python3-module

From 9ad07e924752896ad77bccca2019163eb738ebc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 095/872] python-automat: rebuild for Python 3.8.

---
 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 4d0f89a89f5..984f5e9642a 100644
--- a/srcpkgs/python-automat/template
+++ b/srcpkgs/python-automat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-automat'
 pkgname=python-automat
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Automat-${version}"
 build_style=python-module

From a104c6986268b798f373e1fb36de2b20efb9f618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 096/872] python-axolotl: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl/template b/srcpkgs/python-axolotl/template
index cf24db1b6e7..74480b5a9fe 100644
--- a/srcpkgs/python-axolotl/template
+++ b/srcpkgs/python-axolotl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl'
 pkgname=python-axolotl
 version=0.2.3
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="axolotl"

From c0e16521a2125c2ae2c155dd483904a3dce7bd8c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 097/872] python-axolotl-curve25519: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl-curve25519/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl-curve25519/template b/srcpkgs/python-axolotl-curve25519/template
index f7b273b8385..897de4e7cdf 100644
--- a/srcpkgs/python-axolotl-curve25519/template
+++ b/srcpkgs/python-axolotl-curve25519/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl-curve25519'
 pkgname=python-axolotl-curve25519
 version=0.4.1.post2
-revision=2
+revision=3
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 makedepends="python-devel python3-devel"

From 6c250811341de25ed60e2bdfaae58eb8f5a8c159 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 098/872] python-babelfish: rebuild for Python 3.8.

---
 srcpkgs/python-babelfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-babelfish/template b/srcpkgs/python-babelfish/template
index c156255f418..47d5bb176cc 100644
--- a/srcpkgs/python-babelfish/template
+++ b/srcpkgs/python-babelfish/template
@@ -1,7 +1,7 @@
 # Template file for 'python-babelfish'
 pkgname=python-babelfish
 version=0.5.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="babelfish-${version}"
 build_style=python-module

From 3bbb2fa6599ab0470a4209080a69ad4f8476f1ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 099/872] python-backcall: rebuild for Python 3.8.

---
 srcpkgs/python-backcall/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-backcall/template b/srcpkgs/python-backcall/template
index 01dfab9c25d..a55af727ab6 100644
--- a/srcpkgs/python-backcall/template
+++ b/srcpkgs/python-backcall/template
@@ -1,7 +1,7 @@
 # Template file for 'python-backcall'
 pkgname=python-backcall
 version=0.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="backcall-${version}"
 build_style=python-module

From d263efaab1b83cfdc94e9b33011f3cfefc52dcd2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 100/872] bcc: rebuild for Python 3.8.

---
 srcpkgs/bcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template
index a4d32bce7a4..e872cb6a4a8 100644
--- a/srcpkgs/bcc/template
+++ b/srcpkgs/bcc/template
@@ -1,7 +1,7 @@
 # Template file for 'bcc'
 pkgname=bcc
 version=0.11.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DREVISION=${version}"
 hostmakedepends="flex"

From 95aa25d2f02529207de0d9d62aa57353f202d9a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 101/872] python-bcrypt: rebuild for Python 3.8.

---
 srcpkgs/python-bcrypt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bcrypt/template b/srcpkgs/python-bcrypt/template
index 1ccac21ee94..664b5c9df07 100644
--- a/srcpkgs/python-bcrypt/template
+++ b/srcpkgs/python-bcrypt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bcrypt'
 pkgname=python-bcrypt
 version=3.1.7
-revision=1
+revision=2
 wrksrc="bcrypt-${version}"
 build_style=python-module
 pycompile_module="bcrypt"

From 91e29d8f93186f3c597658d4746f864cc6ed9fb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 102/872] python-bibtexparser: rebuild for Python 3.8.

---
 srcpkgs/python-bibtexparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bibtexparser/template b/srcpkgs/python-bibtexparser/template
index 1eff201e6b8..c40115c9fb8 100644
--- a/srcpkgs/python-bibtexparser/template
+++ b/srcpkgs/python-bibtexparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bibtexparser'
 pkgname=python-bibtexparser
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bibtexparser-${version}"
 build_style=python-module

From 6a95de33763230908ad4e9ae408dedcdd2cc431d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 103/872] python-bitarray: rebuild for Python 3.8.

---
 srcpkgs/python-bitarray/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitarray/template b/srcpkgs/python-bitarray/template
index 4f2b4ee392c..f928718a9df 100644
--- a/srcpkgs/python-bitarray/template
+++ b/srcpkgs/python-bitarray/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitarray'
 pkgname=python-bitarray
 version=1.0.1
-revision=1
+revision=2
 wrksrc="bitarray-${version}"
 build_style=python-module
 pycompile_module="bitarray"

From 1f892b7a3495cc0eddd59d14baf8fa6473521ce4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 104/872] python-bitbucket-api: rebuild for Python 3.8.

---
 srcpkgs/python-bitbucket-api/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitbucket-api/template b/srcpkgs/python-bitbucket-api/template
index 27747866baf..448ea60d53d 100644
--- a/srcpkgs/python-bitbucket-api/template
+++ b/srcpkgs/python-bitbucket-api/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitbucket-api'
 pkgname=python-bitbucket-api
 version=0.5.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="bitbucket-api-${version}"
 build_style=python-module

From 9f464ba19a5d403e830d05b84d5b86c6a9bf0209 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 105/872] python-bleach: rebuild for Python 3.8.

---
 srcpkgs/python-bleach/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bleach/template b/srcpkgs/python-bleach/template
index da389c319a5..6e3d4a3bf4c 100644
--- a/srcpkgs/python-bleach/template
+++ b/srcpkgs/python-bleach/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bleach'
 pkgname=python-bleach
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bleach-${version}"
 build_style=python-module

From a79c0811d86d64b345ee5b056c280a062c8e810a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 106/872] python3-blessed: rebuild for Python 3.8.

---
 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 4d494883f9a..8527379351f 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.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessed-${version}"
 build_style=python3-module

From ec38850242ede1700a4b6234199fba116a530b3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 107/872] python-blessings: rebuild for Python 3.8.

---
 srcpkgs/python-blessings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blessings/template b/srcpkgs/python-blessings/template
index f8e396da5c5..baa4938c328 100644
--- a/srcpkgs/python-blessings/template
+++ b/srcpkgs/python-blessings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blessings'
 pkgname=python-blessings
 version=1.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessings-${version}"
 build_style=python-module

From 19252293b6f311e3a280441f83e7ec1589711b77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 108/872] python-blinker: rebuild for Python 3.8.

---
 srcpkgs/python-blinker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blinker/template b/srcpkgs/python-blinker/template
index e34a4a9721a..b6d1d63d19a 100644
--- a/srcpkgs/python-blinker/template
+++ b/srcpkgs/python-blinker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blinker'
 pkgname=python-blinker
 version=1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="blinker-${version}"
 build_style=python-module

From 7cd7b832b55b68ab081454f2b86c254476bd5132 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 109/872] python-bluez: rebuild for Python 3.8.

---
 srcpkgs/python-bluez/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bluez/template b/srcpkgs/python-bluez/template
index 1112352e8ab..4734e47038d 100644
--- a/srcpkgs/python-bluez/template
+++ b/srcpkgs/python-bluez/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bluez'
 pkgname=python-bluez
 version=0.22
-revision=4
+revision=5
 wrksrc="pybluez-${version}"
 build_style=python-module
 pycompile_module="bluetooth"

From 47f9a18cc42f2afe1e8f31696b6928e35b8105c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 110/872] python3-boltons: rebuild for Python 3.8.

---
 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 84a991feef4..1083eb98c51 100644
--- a/srcpkgs/python3-boltons/template
+++ b/srcpkgs/python3-boltons/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-boltons'
 pkgname=python3-boltons
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boltons-${version}"
 build_style=python3-module

From 05f9cb79aa092e2ddeede56d09676742c60cb788 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 111/872] python-boto: rebuild for Python 3.8.

---
 srcpkgs/python-boto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-boto/template b/srcpkgs/python-boto/template
index 40bd3d888b9..684c00feee0 100644
--- a/srcpkgs/python-boto/template
+++ b/srcpkgs/python-boto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-boto'
 pkgname=python-boto
 version=2.49.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boto-${version}"
 build_style=python-module

From ad258b30e35aadb84fd8cd6395bb3d382b429ce9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 112/872] python-botocore: rebuild for Python 3.8.

---
 srcpkgs/python-botocore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-botocore/template b/srcpkgs/python-botocore/template
index ae1a4c17964..0610007f36e 100644
--- a/srcpkgs/python-botocore/template
+++ b/srcpkgs/python-botocore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-botocore'
 pkgname=python-botocore
 version=1.12.243
-revision=1
+revision=2
 archs=noarch
 wrksrc="botocore-${version}"
 build_style=python-module

From 5bc87295c4d5b8af514da116d9b83154488da331 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 113/872] python-bottle: rebuild for Python 3.8.

---
 srcpkgs/python-bottle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bottle/template b/srcpkgs/python-bottle/template
index 8e3a2ad5ad7..0ffc8adfec7 100644
--- a/srcpkgs/python-bottle/template
+++ b/srcpkgs/python-bottle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bottle'
 pkgname=python-bottle
 version=0.12.17
-revision=1
+revision=2
 archs=noarch
 wrksrc="bottle-${version}"
 build_style=python-module

From 86d7964c563357cfa4aec17ced1fefb9e2c974d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 114/872] brltty: rebuild for Python 3.8.

---
 srcpkgs/brltty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/brltty/template b/srcpkgs/brltty/template
index 33f3354a219..a838cd62d55 100644
--- a/srcpkgs/brltty/template
+++ b/srcpkgs/brltty/template
@@ -1,7 +1,7 @@
 # Template file for 'brltty'
 pkgname=brltty
 version=6.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-gpm --with-screen-driver=lx,sc
  --with-tables-directory=/usr/share/brltty PYTHON=/usr/bin/python3"

From 59305e4244220895606aef8a8016d356cee63dff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 115/872] python-bsddb3: rebuild for Python 3.8.

---
 srcpkgs/python-bsddb3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bsddb3/template b/srcpkgs/python-bsddb3/template
index f719a3f9560..1df37cc0e71 100644
--- a/srcpkgs/python-bsddb3/template
+++ b/srcpkgs/python-bsddb3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bsddb3'
 pkgname=python-bsddb3
 version=6.2.6
-revision=2
+revision=3
 wrksrc="bsddb3-${version}"
 build_style=python-module
 make_build_args="--berkeley-db=${XBPS_CROSS_BASE}/usr"

From 8e91ab0e55145cdc83aae10c6f0277d467cb5057 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 116/872] python-cached-property: rebuild for Python 3.8.

---
 srcpkgs/python-cached-property/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cached-property/template b/srcpkgs/python-cached-property/template
index ca2f8536260..16c89346565 100644
--- a/srcpkgs/python-cached-property/template
+++ b/srcpkgs/python-cached-property/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cached-property'
 pkgname=python-cached-property
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cached-property-${version}"
 build_style=python-module

From 3047633291296a9279b5c2a9c0ff04a0cea875f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 117/872] python-cachetools: rebuild for Python 3.8.

---
 srcpkgs/python-cachetools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cachetools/template b/srcpkgs/python-cachetools/template
index ee3ed3a4c94..0f2fdcaed32 100644
--- a/srcpkgs/python-cachetools/template
+++ b/srcpkgs/python-cachetools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cachetools'
 pkgname=python-cachetools
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cachetools-${version}"
 build_style=python-module

From 52e0110b2dc8419583a18babfa62796ef6410ac7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 118/872] python3-cairo: rebuild for Python 3.8.

---
 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 cdde1b83d20..ac158237dd2 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.18.1
-revision=1
+revision=2
 wrksrc="pycairo-${version}"
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From d8f9c3f93f495874237c23477fb548be8b2c0da2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 119/872] python-cairocffi: rebuild for Python 3.8.

---
 srcpkgs/python-cairocffi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cairocffi/template b/srcpkgs/python-cairocffi/template
index baa61334a2a..c057739b03d 100644
--- a/srcpkgs/python-cairocffi/template
+++ b/srcpkgs/python-cairocffi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cairocffi'
 pkgname=python-cairocffi
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cairocffi-${version}"
 build_style=python-module

From bc01f22fb9a5d16bae1b724b675fc57b1f732baa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 120/872] python3-canonicaljson: rebuild for Python 3.8.

---
 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 abc8e95820d..1cbe15f14ae 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.1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="canonicaljson-${version}"
 build_style=python3-module

From e4cba931e3e55f565bc084f8171dea2a8baa9aaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 121/872] python3-casttube: rebuild for Python 3.8.

---
 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 ccd95f3f31c..9e5544b0101 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=1
+revision=2
 archs=noarch
 wrksrc="casttube-${version}"
 build_style=python3-module

From 255661e350728911e6dc85db4bd8a0a0f059b561 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 122/872] python-cffi: rebuild for Python 3.8.

---
 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 27ae03879ac..8501b202bf2 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.12.3
-revision=1
+revision=2
 wrksrc="cffi-${version}"
 build_style=python-module
 pycompile_module="cffi"

From 1b85c0971a1d2d810331d3392d4ecedf140eeb47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 123/872] python3-changelogs: rebuild for Python 3.8.

---
 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 5c2a4889959..d9a7784cf3b 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.14.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="changelogs-${version}"
 build_style=python3-module

From 38e9561402e4ea4c3c4b27c8c747e6b710aec2fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 124/872] python-chardet: rebuild for Python 3.8.

---
 srcpkgs/python-chardet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chardet/template b/srcpkgs/python-chardet/template
index 685d3ab767f..bd502bbbddf 100644
--- a/srcpkgs/python-chardet/template
+++ b/srcpkgs/python-chardet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chardet'
 pkgname=python-chardet
 version=3.0.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="chardet-${version}"
 build_style=python-module

From de1193127ae80857e0f21f1d0499748b6ccafa40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 125/872] python3-cheetah3: rebuild for Python 3.8.

---
 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 40dfee6e322..b2149b2bc22 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.4
-revision=1
+revision=2
 wrksrc="Cheetah3-${version}"
 build_style=python3-module
 pycompile_module="Cheetah"

From 654378c7da0932e5e48085409868c2639efb5294 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 126/872] python3-chess: rebuild for Python 3.8.

---
 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 54b397517cf..e87dab6ca02 100644
--- a/srcpkgs/python3-chess/template
+++ b/srcpkgs/python3-chess/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chess'
 pkgname=python3-chess
 version=0.27.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-chess-${version}"
 build_style=python3-module

From 10db1a1daa9e65a8a20ebc6e20f512884e23f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 127/872] python3-chromecast: rebuild for Python 3.8.

---
 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 16df7502633..cfa41c5dfb5 100644
--- a/srcpkgs/python3-chromecast/template
+++ b/srcpkgs/python3-chromecast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chromecast'
 pkgname=python3-chromecast
 version=4.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychromecast-${version}"
 build_style=python3-module

From 9ff3e7dae7d0ebe28421538f18f150ecd58104e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 128/872] python-chroot: rebuild for Python 3.8.

---
 srcpkgs/python-chroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chroot/template b/srcpkgs/python-chroot/template
index 36853e9f2c0..7faa0f4cce9 100644
--- a/srcpkgs/python-chroot/template
+++ b/srcpkgs/python-chroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chroot'
 pkgname=python-chroot
 version=0.9.18
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychroot-${version}"
 build_style=python-module

From 8d2b57d7f0075beb9134ebd5f7e517ef8a7f20a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 129/872] python3-cli-ui: rebuild for Python 3.8.

---
 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 8303d44eed2..15a9bd32fce 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.9.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-cli-ui-${version}"
 build_style=python3-module

From ecf175e67cdb7bd1e27d29cc47a7e945a6660996 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 130/872] python3-cli_helpers: rebuild for Python 3.8.

---
 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 74b4abf2200..87b284e3cb5 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=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cli_helpers-${version}"
 build_style=python3-module

From aa87c50665110997328e9b80b9b6ba62c47f18bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 131/872] python-click: rebuild for Python 3.8.

---
 srcpkgs/python-click/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click/template b/srcpkgs/python-click/template
index 217e617e73e..4014cb66a83 100644
--- a/srcpkgs/python-click/template
+++ b/srcpkgs/python-click/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click'
 pkgname=python-click
 version=7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Click-${version}"
 build_style="python-module"

From cac08babb361a709a7b7a93c7a825b4682273115 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 132/872] python-click-log: rebuild for Python 3.8.

---
 srcpkgs/python-click-log/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-log/template b/srcpkgs/python-click-log/template
index 37b53f04af0..b57a7a74b4a 100644
--- a/srcpkgs/python-click-log/template
+++ b/srcpkgs/python-click-log/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-log'
 pkgname=python-click-log
 version=0.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-log-${version}"
 build_style="python-module"

From 5a0f06ded0599ac889d808c93865db1723b2ed95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 133/872] python3-click-plugins: rebuild for Python 3.8.

---
 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 cee484018d1..0ef6ce6b248 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=1
+revision=2
 archs=noarch
 wrksrc="click-plugins-${version}"
 build_style=python3-module

From cf104fe4106995307daeb70eb8d34554c238b5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 134/872] python-click-threading: rebuild for Python 3.8.

---
 srcpkgs/python-click-threading/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-threading/template b/srcpkgs/python-click-threading/template
index 76125224992..49b4a4a9aae 100644
--- a/srcpkgs/python-click-threading/template
+++ b/srcpkgs/python-click-threading/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-threading'
 pkgname=python-click-threading
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-threading-${version}"
 build_style="python-module"

From 4bcf653af73bc8e5a6492eee92e5d2826a779d38 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 135/872] python3-cmdln: rebuild for Python 3.8.

---
 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 f00c9a63908..2b7e21f3980 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=1
+revision=2
 archs=noarch
 wrksrc="cmdln-${version}"
 build_style=python3-module

From 52e9257d3be602d0748918c1440a3eae0b6baa51 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 136/872] python-codespell: rebuild for Python 3.8.

---
 srcpkgs/python-codespell/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-codespell/template b/srcpkgs/python-codespell/template
index 92134285a58..211626f33d7 100644
--- a/srcpkgs/python-codespell/template
+++ b/srcpkgs/python-codespell/template
@@ -1,7 +1,7 @@
 # Template file for 'python-codespell'
 pkgname=python-codespell
 version=1.14.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="codespell-${version}"
 build_style=python-module

From 65299f402e3d3a2991e33defee28d85043e0b40f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 137/872] python-colorama: rebuild for Python 3.8.

---
 srcpkgs/python-colorama/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-colorama/template b/srcpkgs/python-colorama/template
index 98ea0d3be78..09562385243 100644
--- a/srcpkgs/python-colorama/template
+++ b/srcpkgs/python-colorama/template
@@ -1,7 +1,7 @@
 # Template file for 'python-colorama'
 pkgname=python-colorama
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="colorama-${version}"
 build_style=python-module

From ec6a8fb7b9e3330e2d7f3fbe139c7a3742013bd8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 138/872] python3-colorclass: rebuild for Python 3.8.

---
 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 4a80f379206..ed8d2d2ea02 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=1
+revision=2
 archs=noarch
 wrksrc="colorclass-${version}"
 build_style=python3-module

From 4b254d3097fa01cb641af24639c6b9a230345954 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 139/872] python-configobj: rebuild for Python 3.8.

---
 srcpkgs/python-configobj/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-configobj/template b/srcpkgs/python-configobj/template
index 95f30d4631a..a8cb5d5d34e 100644
--- a/srcpkgs/python-configobj/template
+++ b/srcpkgs/python-configobj/template
@@ -1,7 +1,7 @@
 # Template file for 'python-configobj'
 pkgname=python-configobj
 version=5.0.6
-revision=5
+revision=6
 archs=noarch
 wrksrc="configobj-${version}"
 build_style=python-module

From 530a6b84ff81274981ed1aa92a2ff85a78dc9775 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 140/872] python-constantly: rebuild for Python 3.8.

---
 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 b5530908ac4..9160aec9edd 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=2
+revision=3
 archs=noarch
 wrksrc="constantly-${version}"
 build_style=python-module

From d2c0a853f5cd6634cca304f7db191fcb1d9a6afa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 141/872] python-construct: rebuild for Python 3.8.

---
 srcpkgs/python-construct/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-construct/template b/srcpkgs/python-construct/template
index 2afe435652c..d6d0b8010e2 100644
--- a/srcpkgs/python-construct/template
+++ b/srcpkgs/python-construct/template
@@ -1,7 +1,7 @@
 # Template file for 'python-construct'
 pkgname=python-construct
 version=2.9.45
-revision=2
+revision=3
 archs=noarch
 wrksrc="construct-${version}"
 build_style=python-module

From 9ba618aa4a4db0062002fcb1ad540bee9b702ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 142/872] python-coverage: rebuild for Python 3.8.

---
 srcpkgs/python-coverage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-coverage/template b/srcpkgs/python-coverage/template
index df6064b9879..1c44b5e18fb 100644
--- a/srcpkgs/python-coverage/template
+++ b/srcpkgs/python-coverage/template
@@ -1,7 +1,7 @@
 # Template file for 'python-coverage'
 pkgname=python-coverage
 version=4.5.4
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="coverage"

From 9adf4621a4960d8a331e1b723971cb326ad2429f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 143/872] python-cram: rebuild for Python 3.8.

---
 srcpkgs/python-cram/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cram/template b/srcpkgs/python-cram/template
index f1fce32149f..8c5d65fe260 100644
--- a/srcpkgs/python-cram/template
+++ b/srcpkgs/python-cram/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cram'
 pkgname=python-cram
 version=0.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="cram-${version}"
 build_style=python-module

From 47ef41a3931be5da08ee8d6fb0ff35b5e1a95d62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 144/872] python3-crcmod: rebuild for Python 3.8.

---
 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 4cd433d2420..9311dedc8ac 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=1
+revision=2
 wrksrc="crcmod-${version}"
 build_style=python3-module
 pycompile_module="crcmod"

From 8b8750f3919e1f23aa6930671f096a365391611a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 145/872] python-cryptography: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography/template b/srcpkgs/python-cryptography/template
index ce3184715dd..39e63d22f7d 100644
--- a/srcpkgs/python-cryptography/template
+++ b/srcpkgs/python-cryptography/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography'
 pkgname=python-cryptography
 version=2.7
-revision=1
+revision=2
 wrksrc="cryptography-${version}"
 build_style=python-module
 pycompile_module="cryptography"

From 676ecf3ea008b8ccabdd3d2798c449a061abb9dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 146/872] python-cryptography_vectors: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography_vectors/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography_vectors/template b/srcpkgs/python-cryptography_vectors/template
index d52e5f5e47c..8fba3a0ce27 100644
--- a/srcpkgs/python-cryptography_vectors/template
+++ b/srcpkgs/python-cryptography_vectors/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography_vectors'
 pkgname=python-cryptography_vectors
 version=2.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="cryptography_vectors-${version}"
 build_style=python-module

From b78a89dedf3b15094ae7febdff460a2cbf547464 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 147/872] python-css-parser: rebuild for Python 3.8.

---
 srcpkgs/python-css-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-css-parser/template b/srcpkgs/python-css-parser/template
index e90b103e4a0..f6d2d0cbf8b 100644
--- a/srcpkgs/python-css-parser/template
+++ b/srcpkgs/python-css-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-css-parser'
 pkgname=python-css-parser
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="css-parser-${version}"
 build_style=python-module

From 036f8b87a68dcb362c7037f58abcffb763571601 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 148/872] python-cssselect: rebuild for Python 3.8.

---
 srcpkgs/python-cssselect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssselect/template b/srcpkgs/python-cssselect/template
index d7dbcebc0ea..c7f43ebca9f 100644
--- a/srcpkgs/python-cssselect/template
+++ b/srcpkgs/python-cssselect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssselect'
 pkgname=python-cssselect
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d4b52974f5f9e8a86060d3dfccc041298c1d666 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 149/872] python-cssutils: rebuild for Python 3.8.

---
 srcpkgs/python-cssutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssutils/template b/srcpkgs/python-cssutils/template
index 648c4754c22..5f08903b9a0 100644
--- a/srcpkgs/python-cssutils/template
+++ b/srcpkgs/python-cssutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssutils'
 pkgname=python-cssutils
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="cssutils-${version}"
 build_style=python-module

From bfb2835290dfefddc0781e2b463d410bf121efa5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 150/872] python-cups: rebuild for Python 3.8.

---
 srcpkgs/python-cups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cups/template b/srcpkgs/python-cups/template
index 2c26e9ef3d0..62c384c9db8 100644
--- a/srcpkgs/python-cups/template
+++ b/srcpkgs/python-cups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cups'
 pkgname=python-cups
 version=1.9.74
-revision=2
+revision=3
 wrksrc="pycups-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 32daac09af71a30483e9985028381670b4ab6245 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 151/872] system-config-printer: rebuild for Python 3.8.

---
 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 e8f8eca46ae..04fe74ff808 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.11
-revision=5
+revision=6
 build_style=gnu-configure
 configure_args="--with-udev-rules"
 make_build_args="udevhelperdir=/usr/lib/udev"

From 582813b2756ce1d1d397113a752b81189680c001 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 152/872] python-curl: rebuild for Python 3.8.

---
 srcpkgs/python-curl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curl/template b/srcpkgs/python-curl/template
index f1f9051d53a..685c63ce68a 100644
--- a/srcpkgs/python-curl/template
+++ b/srcpkgs/python-curl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curl'
 pkgname=python-curl
 version=7.43.0.3
-revision=4
+revision=5
 wrksrc="pycurl-${version}"
 build_style=python-module
 pycompile_module="curl"

From 0eda981910702bfaac2a8af2041fe2c534c13618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 153/872] python-curtsies: rebuild for Python 3.8.

---
 srcpkgs/python-curtsies/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curtsies/template b/srcpkgs/python-curtsies/template
index 158d1c5ce76..6126a11e9b4 100644
--- a/srcpkgs/python-curtsies/template
+++ b/srcpkgs/python-curtsies/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curtsies'
 pkgname=python-curtsies
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="curtsies-${version}"
 build_style=python-module

From 7db16365daaa931d774701441c01b698be457cb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 154/872] python-cycler: rebuild for Python 3.8.

---
 srcpkgs/python-cycler/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cycler/template b/srcpkgs/python-cycler/template
index ee6c985b288..0b53c195dae 100644
--- a/srcpkgs/python-cycler/template
+++ b/srcpkgs/python-cycler/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cycler'
 pkgname=python-cycler
 version=0.10.0
-revision=4
+revision=5
 archs=noarch
 wrksrc="cycler-${version}"
 build_style=python-module

From 2c59e6772ee31b855fe302a27b9b9544cd865e6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 155/872] python-daemonize: rebuild for Python 3.8.

---
 srcpkgs/python-daemonize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-daemonize/template b/srcpkgs/python-daemonize/template
index 699a156b26b..efaf163e573 100644
--- a/srcpkgs/python-daemonize/template
+++ b/srcpkgs/python-daemonize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-daemonize'
 pkgname=python-daemonize
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="daemonize-${version}"
 build_style=python-module

From 84cc63fece0763c8b6920e56e78508551e0fc727 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 156/872] python-dateutil: rebuild for Python 3.8.

---
 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 d9c0f73c883..7675b8f9447 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.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="dateutil"

From 9a19173186ae564f17114f530ac8077484d43c82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 157/872] python-dbus: rebuild for Python 3.8.

---
 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 869c10b2969..3845f6ce34a 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.12
-revision=1
+revision=2
 wrksrc="dbus-python-${version}"
 build_style=gnu-configure
 pycompile_module="dbus"

From 06a9a5b6965485369e669181d99123d7beabf81f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 158/872] python3-dbusmock: rebuild for Python 3.8.

---
 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 67e0ed68078..4abd47843cc 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.18.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-dbusmock-${version}"
 build_style=python3-module

From 694c57d69d63d9f59bef9d31d20a0b16dc73a2a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 159/872] python-decorator: rebuild for Python 3.8.

---
 srcpkgs/python-decorator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-decorator/template b/srcpkgs/python-decorator/template
index 14090c537c9..7f14fef90a6 100644
--- a/srcpkgs/python-decorator/template
+++ b/srcpkgs/python-decorator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-decorator'
 pkgname=python-decorator
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="decorator-${version}"
 build_style=python-module

From 3bd4b100eb970e16e93bbbed8ce2ac91a36e3df5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 160/872] python-defusedxml: rebuild for Python 3.8.

---
 srcpkgs/python-defusedxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-defusedxml/template b/srcpkgs/python-defusedxml/template
index afd62e94414..96234eb18c7 100644
--- a/srcpkgs/python-defusedxml/template
+++ b/srcpkgs/python-defusedxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-defusedxml'
 pkgname=python-defusedxml
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="defusedxml-${version}"
 build_style=python-module

From 442acbe58cd337c55658908f41ec5b6221ca8fcb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 161/872] python3-discid: rebuild for Python 3.8.

---
 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 be5eae1f07f..cc4bc27a1aa 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=1
+revision=2
 archs=noarch
 wrksrc="discid-${version}"
 build_style=python3-module

From 31db2101853fbced7b2655f48906b9054bce07ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 162/872] python-discogs_client: rebuild for Python 3.8.

---
 srcpkgs/python-discogs_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-discogs_client/template b/srcpkgs/python-discogs_client/template
index a27cc50f93c..5af18eda664 100644
--- a/srcpkgs/python-discogs_client/template
+++ b/srcpkgs/python-discogs_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-discogs_client'
 pkgname=python-discogs_client
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="discogs-client-${version}"
 build_style=python-module

From 0aba2b232148b832c27ebd8703c24f42c5018f15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 163/872] python3-distro: rebuild for Python 3.8.

---
 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 86e94572ed7..f1205ace151 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.4.0
-revision=1
+revision=2
 wrksrc=distro-${version}
 build_style=python3-module
 pycompile_module="distro"

From 990a3bd7cef20bd21b781caccd807a7cadf6a0fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 164/872] python-distutils-extra: rebuild for Python 3.8.

---
 srcpkgs/python-distutils-extra/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-distutils-extra/template b/srcpkgs/python-distutils-extra/template
index 9e5728ba08f..46bb0cccc31 100644
--- a/srcpkgs/python-distutils-extra/template
+++ b/srcpkgs/python-distutils-extra/template
@@ -1,7 +1,7 @@
 # Template file for 'python-distutils-extra'
 pkgname=python-distutils-extra
 version=2.39
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 pycompile_module="DistUtilsExtra"

From cc8c6f7c74e5660152cb87b99e7d7b88b5c3d077 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 165/872] python-dkimpy: rebuild for Python 3.8.

---
 srcpkgs/python-dkimpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dkimpy/template b/srcpkgs/python-dkimpy/template
index 4ca5ad386b0..1da26c5de5d 100644
--- a/srcpkgs/python-dkimpy/template
+++ b/srcpkgs/python-dkimpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dkimpy'
 pkgname=python-dkimpy
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="dkimpy-${version}"
 build_style=python-module

From 8560c730ee4396275d04f5b5649fc0b2a1a8819e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 166/872] python-dnspython: rebuild for Python 3.8.

---
 srcpkgs/python-dnspython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dnspython/template b/srcpkgs/python-dnspython/template
index 15d4d7a8a73..66d237e89ee 100644
--- a/srcpkgs/python-dnspython/template
+++ b/srcpkgs/python-dnspython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dnspython'
 pkgname=python-dnspython
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dnspython-${version}"
 build_style=python-module

From c723160d02d838faad8761fcdaa9cfaed2df756f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 167/872] python-docker: rebuild for Python 3.8.

---
 srcpkgs/python-docker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker/template b/srcpkgs/python-docker/template
index b3f8cb2076b..83265bbb606 100644
--- a/srcpkgs/python-docker/template
+++ b/srcpkgs/python-docker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker'
 pkgname=python-docker
 version=3.7.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-${version}"
 build_style=python-module

From 116d9592b10bcde7a5b2f78ed23e0c2e382394da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 168/872] python-docker-pycreds: rebuild for Python 3.8.

---
 srcpkgs/python-docker-pycreds/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker-pycreds/template b/srcpkgs/python-docker-pycreds/template
index c478ded9de6..2224be0d21d 100644
--- a/srcpkgs/python-docker-pycreds/template
+++ b/srcpkgs/python-docker-pycreds/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker-pycreds'
 pkgname=python-docker-pycreds
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-pycreds-${version}"
 build_style=python-module

From 339d2fc160bc67c015b61704b1ade0e15a729050 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 169/872] python-dockerpty: rebuild for Python 3.8.

---
 srcpkgs/python-dockerpty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dockerpty/template b/srcpkgs/python-dockerpty/template
index 78ba5bc3b09..4a0b3a7a33f 100644
--- a/srcpkgs/python-dockerpty/template
+++ b/srcpkgs/python-dockerpty/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dockerpty'
 pkgname=python-dockerpty
 version=0.4.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="dockerpty-${version}"
 build_style=python-module

From 9925e97e6e19313f6899b14640957a47c12c3c6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 170/872] python-docopt: rebuild for Python 3.8.

---
 srcpkgs/python-docopt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docopt/template b/srcpkgs/python-docopt/template
index 4b8661ed2e1..48e5f86c1e0 100644
--- a/srcpkgs/python-docopt/template
+++ b/srcpkgs/python-docopt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docopt'
 pkgname=python-docopt
 version=0.6.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="docopt-${version}"
 build_style=python-module

From b274270fc5a58198a59400d9c8eb825546cf64ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 171/872] python-docutils: rebuild for Python 3.8.

---
 srcpkgs/python-docutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docutils/template b/srcpkgs/python-docutils/template
index 62f080f416a..8fd21a7450b 100644
--- a/srcpkgs/python-docutils/template
+++ b/srcpkgs/python-docutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docutils'
 pkgname=python-docutils
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docutils-${version}"
 build_style=python-module

From 6db8d0a9fb5d7b1cd339f5102d86a29dda19f348 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 172/872] python-dogpile.cache: rebuild for Python 3.8.

---
 srcpkgs/python-dogpile.cache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index f6e106fb4e8..894c6f695bf 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dogpile.cache'
 pkgname=python-dogpile.cache
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dogpile.cache-${version}"
 build_style=python-module

From e603b2f5de239ac8c6e7b8322f560ed5249fe887 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 173/872] python-dominate: rebuild for Python 3.8.

---
 srcpkgs/python-dominate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dominate/template b/srcpkgs/python-dominate/template
index 14ec659bac8..6d6f2caa323 100644
--- a/srcpkgs/python-dominate/template
+++ b/srcpkgs/python-dominate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dominate'
 pkgname=python-dominate
 version=2.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dominate-${version}"
 build_style=python-module

From 2bd7c3e739559614758b25140591fa8bb623a73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 174/872] python-dulwich: rebuild for Python 3.8.

---
 srcpkgs/python-dulwich/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dulwich/template b/srcpkgs/python-dulwich/template
index 0bddda65069..7b8ac45011e 100644
--- a/srcpkgs/python-dulwich/template
+++ b/srcpkgs/python-dulwich/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dulwich'
 pkgname=python-dulwich
 version=0.19.13
-revision=1
+revision=2
 wrksrc="dulwich-${version}"
 build_style=python-module
 pycompile_module="dulwich"

From 9d0b79dad0746da7669be20a38791a7eff4a42dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 175/872] python3-easygui: rebuild for Python 3.8.

---
 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 c1ec4767ae9..a9a2f66d865 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="easygui-${version}"
 build_style=python3-module

From eaa3ee113511523004b2d78a2119becc627b2dcf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 176/872] python-ecdsa: rebuild for Python 3.8.

---
 srcpkgs/python-ecdsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ecdsa/template b/srcpkgs/python-ecdsa/template
index 5e0b217fa73..e6e7d58cd10 100644
--- a/srcpkgs/python-ecdsa/template
+++ b/srcpkgs/python-ecdsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ecdsa'
 pkgname=python-ecdsa
 version=0.13.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 5d7cb5b032b5814415f5b21646b09bceda211fd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 177/872] python-editor: rebuild for Python 3.8.

---
 srcpkgs/python-editor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-editor/template b/srcpkgs/python-editor/template
index 4b86afa6924..3594e407205 100644
--- a/srcpkgs/python-editor/template
+++ b/srcpkgs/python-editor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-editor'
 pkgname=python-editor
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="editor"

From 19c3e09b30ed3cf9c6ffee8cee652d54c672a599 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 178/872] python-efl: rebuild for Python 3.8.

---
 srcpkgs/python-efl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-efl/template b/srcpkgs/python-efl/template
index a49e7d35847..2096f6916da 100644
--- a/srcpkgs/python-efl/template
+++ b/srcpkgs/python-efl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-efl'
 pkgname=python-efl
 version=1.22.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="efl"
 hostmakedepends="pkg-config python-devel python3-devel"

From 82198e93fcca38bb8b5f4f754bcbd6fd7baf59da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 179/872] python3-eliot: rebuild for Python 3.8.

---
 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 15b05dd7331..8453789b688 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="eliot-${version}"
 build_style=python3-module

From bcfe6b0d9db4104d00cb6a16d6012f2258515d59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 180/872] python-empy: rebuild for Python 3.8.

---
 srcpkgs/python-empy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-empy/template b/srcpkgs/python-empy/template
index 97476250cf2..4668a9cc814 100644
--- a/srcpkgs/python-empy/template
+++ b/srcpkgs/python-empy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-empy'
 pkgname=python-empy
 version=3.3.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="empy-${version}"
 build_style=python-module

From 6a91fa7210bd83ced5963d69be69166cd7ad72e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 181/872] python-enchant: rebuild for Python 3.8.

---
 srcpkgs/python-enchant/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enchant/template b/srcpkgs/python-enchant/template
index a443877d821..e499957b47e 100644
--- a/srcpkgs/python-enchant/template
+++ b/srcpkgs/python-enchant/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enchant'
 pkgname=python-enchant
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python-module

From 6ec52886dc67e49d1440bf8d0d1fe8fab07df30a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 182/872] python-entrypoints: rebuild for Python 3.8.

---
 srcpkgs/python-entrypoints/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-entrypoints/template b/srcpkgs/python-entrypoints/template
index ebefb2d04dc..6070650f35d 100644
--- a/srcpkgs/python-entrypoints/template
+++ b/srcpkgs/python-entrypoints/template
@@ -1,7 +1,7 @@
 # Template file for 'python-entrypoints'
 pkgname=python-entrypoints
 version=0.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="entrypoints-${version}"
 build_style=python-module

From 612a78254c1f46db87994e41646495e245a3facf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 183/872] python-envdir: rebuild for Python 3.8.

---
 srcpkgs/python-envdir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-envdir/template b/srcpkgs/python-envdir/template
index 622fcee6b34..b8cccad60ac 100644
--- a/srcpkgs/python-envdir/template
+++ b/srcpkgs/python-envdir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-envdir'
 pkgname=python-envdir
 version=1.0.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 50f8488d9ea7d659590f7d09f42dd5b94e19152c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 184/872] python-enzyme: rebuild for Python 3.8.

---
 srcpkgs/python-enzyme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enzyme/template b/srcpkgs/python-enzyme/template
index 637c858195b..f28f40b0319 100644
--- a/srcpkgs/python-enzyme/template
+++ b/srcpkgs/python-enzyme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enzyme'
 pkgname=python-enzyme
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="enzyme-${version}"
 build_style=python-module

From 0927e611429f29f17290f1e10cf2c0b872d1feb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 185/872] python3-esprima: rebuild for Python 3.8.

---
 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 c3a564123de..aec8930a6bf 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=1
+revision=2
 wrksrc="esprima-${version}"
 build_style=python3-module
 pycompile_module="esprima"

From d10708d4fcebbbc7dccf424ca1a596b43ae8df59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 186/872] python-evdev: rebuild for Python 3.8.

---
 srcpkgs/python-evdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-evdev/template b/srcpkgs/python-evdev/template
index 3c1a5253513..cff10211628 100644
--- a/srcpkgs/python-evdev/template
+++ b/srcpkgs/python-evdev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-evdev'
 pkgname=python-evdev
 version=1.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="evdev"
 hostmakedepends="python-setuptools python3-setuptools"

From d4f74f5bad705da704a6773a834e3939d7700c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 187/872] python-ewmh: rebuild for Python 3.8.

---
 srcpkgs/python-ewmh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ewmh/template b/srcpkgs/python-ewmh/template
index be6d04316b0..a96490fb56d 100644
--- a/srcpkgs/python-ewmh/template
+++ b/srcpkgs/python-ewmh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ewmh'
 pkgname=python-ewmh
 version=0.1.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From afbcc47e23517b6d56ec485dc40f389c1af31701 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 188/872] python-exifread: rebuild for Python 3.8.

---
 srcpkgs/python-exifread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-exifread/template b/srcpkgs/python-exifread/template
index 853f885fff8..834aa7730ee 100644
--- a/srcpkgs/python-exifread/template
+++ b/srcpkgs/python-exifread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-exifread'
 pkgname=python-exifread
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="exif-py-${version}"
 build_style="python-module"

From d05fad06fa4306ef7f685f49a366fcc27e64a40c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 189/872] python-fasteners: rebuild for Python 3.8.

---
 srcpkgs/python-fasteners/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fasteners/template b/srcpkgs/python-fasteners/template
index 34ca4e0e9db..24d2ec0611f 100644
--- a/srcpkgs/python-fasteners/template
+++ b/srcpkgs/python-fasteners/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fasteners'
 pkgname=python-fasteners
 version=0.15
-revision=1
+revision=2
 archs=noarch
 wrksrc="fasteners-${version}"
 build_style=python-module

From 8c663b7a9f12675a94dea8c33eddeededd3c56bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 190/872] python-feedgenerator: rebuild for Python 3.8.

---
 srcpkgs/python-feedgenerator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedgenerator/template b/srcpkgs/python-feedgenerator/template
index 3e5abc4f433..bcffb6728aa 100644
--- a/srcpkgs/python-feedgenerator/template
+++ b/srcpkgs/python-feedgenerator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedgenerator'
 pkgname=python-feedgenerator
 version=1.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="feedgenerator-${version}"
 build_style=python-module

From ab9e5bccaa31f32d93549c21e47bc12c4e5ac181 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 191/872] python-feedparser: rebuild for Python 3.8.

---
 srcpkgs/python-feedparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedparser/template b/srcpkgs/python-feedparser/template
index c5c5e8783eb..94f0a58ec88 100644
--- a/srcpkgs/python-feedparser/template
+++ b/srcpkgs/python-feedparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedparser'
 pkgname=python-feedparser
 version=5.2.1
-revision=5
+revision=6
 archs=noarch
 wrksrc="feedparser-${version}"
 build_style=python-module

From 157719696415e499518e188417324c7d97359d36 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 192/872] python3-fido2: rebuild for Python 3.8.

---
 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 fafb4d61d56..fb737d68d20 100644
--- a/srcpkgs/python3-fido2/template
+++ b/srcpkgs/python3-fido2/template
@@ -2,7 +2,7 @@
 pkgname=python3-fido2
 _pkgname=fido2
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From cbab3fd166f79dc7d2659a802e1953c697f94a95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 193/872] python3-filelock: rebuild for Python 3.8.

---
 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 8e0bc8f1070..9105ff8689d 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.0.12
-revision=1
+revision=2
 wrksrc="filelock-${version}"
 build_style=python3-module
 pycompile_module="filelock.py"

From df9deb02719807bdcb49f7c41040cd8748efd6fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 194/872] python-filetype: rebuild for Python 3.8.

---
 srcpkgs/python-filetype/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-filetype/template b/srcpkgs/python-filetype/template
index 37896cff9d8..10b974794b5 100644
--- a/srcpkgs/python-filetype/template
+++ b/srcpkgs/python-filetype/template
@@ -1,7 +1,7 @@
 # Template file for 'python-filetype'
 pkgname=python-filetype
 version=1.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="filetype-${version}"
 build_style=python-module

From b71ed5528581f9bba57653ff2acb45edf6dcbd81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 195/872] python3-fishnet: rebuild for Python 3.8.

---
 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 9dde60cbb6c..6280ae8e966 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=1
+revision=2
 archs=noarch
 wrksrc="fishnet-${version}"
 build_style=python3-module

From 25bc415f7d96b99e98c97ab0abad6a531786f9e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 196/872] python-flaky: rebuild for Python 3.8.

---
 srcpkgs/python-flaky/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-flaky/template b/srcpkgs/python-flaky/template
index d5211c9cb60..e8e681421f7 100644
--- a/srcpkgs/python-flaky/template
+++ b/srcpkgs/python-flaky/template
@@ -1,7 +1,7 @@
 # Template file for 'python-flaky'
 pkgname=python-flaky
 version=3.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 6dfa18d602ed8d6414a040466c4e0eef4db1d0d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 197/872] python3-flexmock: rebuild for Python 3.8.

---
 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 0663ed5122d..8a7c9a2894d 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.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="flexmock-${version}"
 build_style=python3-module

From 8c90b86b18b06e68260df59166a7228f7af5e5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 198/872] python3-fonttools: rebuild for Python 3.8.

---
 srcpkgs/python3-fonttools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-fonttools/template b/srcpkgs/python3-fonttools/template
index 15cf36585fb..ccd4b66c5d8 100644
--- a/srcpkgs/python3-fonttools/template
+++ b/srcpkgs/python3-fonttools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-fonttools'
 pkgname=python3-fonttools
 version=4.0.2
-revision=1
+revision=2
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 pycompile_module="fonttools"

From 423903ec28541ea1cd89f97400529121dca5e065 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 199/872] python3-frozendict: rebuild for Python 3.8.

---
 srcpkgs/python3-frozendict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-frozendict/template b/srcpkgs/python3-frozendict/template
index d3b4dc91602..739000a887c 100644
--- a/srcpkgs/python3-frozendict/template
+++ b/srcpkgs/python3-frozendict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-frozendict'
 pkgname=python3-frozendict
 version=1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="frozendict-${version}"
 build_style=python3-module

From 0929953d079922e685a9b46372630d69c2c6776d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 200/872] python-fuse: rebuild for Python 3.8.

---
 srcpkgs/python-fuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fuse/template b/srcpkgs/python-fuse/template
index 6449cc36a02..2e99e9866d3 100644
--- a/srcpkgs/python-fuse/template
+++ b/srcpkgs/python-fuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fuse'
 pkgname=python-fuse
 version=0.3.1
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="fuseparts fuse.py"
 hostmakedepends="pkg-config python-setuptools python3-setuptools"

From 505bca67544c8cca26d3f7675eb746bb98abf44e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 201/872] python-future: rebuild for Python 3.8.

---
 srcpkgs/python-future/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-future/template b/srcpkgs/python-future/template
index 1844be2efbc..6cd53908823 100644
--- a/srcpkgs/python-future/template
+++ b/srcpkgs/python-future/template
@@ -1,7 +1,7 @@
 # Template file for 'python-future'
 pkgname=python-future
 version=0.17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="future-${version}"
 build_style=python-module

From 4b595c01c8dcf28a72cf0a96960609ab9788b6ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 202/872] python3-geojson: rebuild for Python 3.8.

---
 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 6bcd0c3092e..90e7d5a0e60 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=1
+revision=2
 archs=noarch
 wrksrc="geojson-${version}"
 build_style=python3-module

From 5e44d64f54a2983f4d5fefba49ef65a6803bd024 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 203/872] python-gevent: rebuild for Python 3.8.

---
 srcpkgs/python-gevent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gevent/template b/srcpkgs/python-gevent/template
index 2bbabee00fc..35c76146d56 100644
--- a/srcpkgs/python-gevent/template
+++ b/srcpkgs/python-gevent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gevent'
 pkgname=python-gevent
 version=1.4.0
-revision=1
+revision=2
 wrksrc="gevent-${version}"
 build_style=python-module
 pycompile_module="gevent"

From 5fed10c6460512a1f1391f079ed47645f9df532e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 204/872] python3-gitchangelog: rebuild for Python 3.8.

---
 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 ed381e07d78..cc1945f2623 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=1
+revision=2
 archs=noarch
 wrksrc="gitchangelog-${version}"
 build_style=python3-module

From b52557ed164619919a05cdf8fae5e77e5b4f53db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 205/872] python-gitdb: rebuild for Python 3.8.

---
 srcpkgs/python-gitdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitdb/template b/srcpkgs/python-gitdb/template
index d9e624b9f53..253ddaa07bd 100644
--- a/srcpkgs/python-gitdb/template
+++ b/srcpkgs/python-gitdb/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitdb'
 pkgname=python-gitdb
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="gitdb2-${version}"
 build_style=python-module

From 53365dcec4eb25138ea4bb248d57c1b2aa7aa311 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 206/872] python-github3: rebuild for Python 3.8.

---
 srcpkgs/python-github3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-github3/template b/srcpkgs/python-github3/template
index 2cb71368f3d..425fe1b7362 100644
--- a/srcpkgs/python-github3/template
+++ b/srcpkgs/python-github3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-github3'
 pkgname=python-github3
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="github3.py-${version}"
 build_style=python-module

From 2b4c90de9a0cbcbb5902a9407f229864bd81a7f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 207/872] python-gitlab: rebuild for Python 3.8.

---
 srcpkgs/python-gitlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitlab/template b/srcpkgs/python-gitlab/template
index 7db583b54c4..0f71b4c7153 100644
--- a/srcpkgs/python-gitlab/template
+++ b/srcpkgs/python-gitlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitlab'
 pkgname=python-gitlab
 version=1.12.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gitlab"

From 51613301779bb891e87daba6b634dca18654d29f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 208/872] python-gmpy2: rebuild for Python 3.8.

---
 srcpkgs/python-gmpy2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gmpy2/template b/srcpkgs/python-gmpy2/template
index c41a9f4595b..74e9b583288 100644
--- a/srcpkgs/python-gmpy2/template
+++ b/srcpkgs/python-gmpy2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gmpy2'
 pkgname=python-gmpy2
 version=2.0.8
-revision=5
+revision=6
 wrksrc="gmpy2-${version}"
 build_style=python-module
 hostmakedepends="unzip python-setuptools python3-setuptools

From a6f4b9ed74b787b741e6297520186bd60de2b46e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 209/872] python-gntp: rebuild for Python 3.8.

---
 srcpkgs/python-gntp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gntp/template b/srcpkgs/python-gntp/template
index 14bd36518f8..7b3bb5a7bb7 100644
--- a/srcpkgs/python-gntp/template
+++ b/srcpkgs/python-gntp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gntp'
 pkgname=python-gntp
 version=1.0.3
-revision=4
+revision=5
 archs=noarch
 wrksrc="gntp-${version}"
 build_style=python-module

From 0730dc20e341ef5247184f85a47f2d1200750698 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 210/872] python-gnupg: rebuild for Python 3.8.

---
 srcpkgs/python-gnupg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gnupg/template b/srcpkgs/python-gnupg/template
index ae6f49c7e27..24c0943d1e4 100644
--- a/srcpkgs/python-gnupg/template
+++ b/srcpkgs/python-gnupg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gnupg'
 pkgname=python-gnupg
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gnupg.py"

From 2c78f38b921da1d4ac2ddf5c200a378cadd75590 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 211/872] python3-gobject: rebuild for Python 3.8.

---
 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 242d33ed3ac..8713ddf5334 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.32.2
-revision=1
+revision=2
 wrksrc="pygobject-${version}"
 build_style=meson
 build_helper="gir"

From 15ed888e45d37128f9852cfc492a14182186f1a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 212/872] python-gogs-client: rebuild for Python 3.8.

---
 srcpkgs/python-gogs-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gogs-client/template b/srcpkgs/python-gogs-client/template
index e8189bc8805..027135d430c 100644
--- a/srcpkgs/python-gogs-client/template
+++ b/srcpkgs/python-gogs-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gogs-client'
 pkgname=python-gogs-client
 version=1.0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="gogs_client-${version}"
 build_style=python-module

From 1ce661eb8f15d8e6d56a3f1e197897c332fa224e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 213/872] python-google-api-python-client: rebuild for Python
 3.8.

---
 srcpkgs/python-google-api-python-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-api-python-client/template b/srcpkgs/python-google-api-python-client/template
index 273cd0722b8..69c2d4e96eb 100644
--- a/srcpkgs/python-google-api-python-client/template
+++ b/srcpkgs/python-google-api-python-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-api-python-client'
 pkgname=python-google-api-python-client
 version=1.7.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From abc55893b0e34778f73646713ec111220a9cafbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 214/872] python-google-auth: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth/template b/srcpkgs/python-google-auth/template
index 708fe08325a..1de6800e3d2 100644
--- a/srcpkgs/python-google-auth/template
+++ b/srcpkgs/python-google-auth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth'
 pkgname=python-google-auth
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 345385c7c36d4b9e58aad80d36b1cd93575ecd95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 215/872] python-google-auth-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth-httplib2/template b/srcpkgs/python-google-auth-httplib2/template
index 9a7fd093ce5..9e43bc92292 100644
--- a/srcpkgs/python-google-auth-httplib2/template
+++ b/srcpkgs/python-google-auth-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth-httplib2'
 pkgname=python-google-auth-httplib2
 version=0.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 659bb740f4ecc98b01dc400608f6b524416a0b86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 216/872] python-gpg: rebuild for Python 3.8.

---
 srcpkgs/python-gpg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gpg/template b/srcpkgs/python-gpg/template
index 4ef85846b42..a17a0324af8 100644
--- a/srcpkgs/python-gpg/template
+++ b/srcpkgs/python-gpg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gpg'
 pkgname=python-gpg
 version=1.10.0
-revision=3
+revision=4
 wrksrc="gpg-${version}"
 build_style=python-module
 hostmakedepends="swig gpgme-devel python-devel python3-devel"

From 873dc5b9b60d819c83e9d76fd366d7e22b1e3bc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 217/872] python-grako: rebuild for Python 3.8.

---
 srcpkgs/python-grako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-grako/template b/srcpkgs/python-grako/template
index cc02973b31e..2b401732735 100644
--- a/srcpkgs/python-grako/template
+++ b/srcpkgs/python-grako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-grako'
 pkgname=python-grako
 version=3.99.9
-revision=3
+revision=4
 wrksrc="neogeny-${pkgname/python-/}-275d3c4fe4ac"
 build_style=python-module
 pycompile_module="grako"

From d47059d2656db0b58c65856428cabac0432d40b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 218/872] python-graphviz: rebuild for Python 3.8.

---
 srcpkgs/python-graphviz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-graphviz/template b/srcpkgs/python-graphviz/template
index 521f2e81213..e3d487a2db7 100644
--- a/srcpkgs/python-graphviz/template
+++ b/srcpkgs/python-graphviz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-graphviz'
 pkgname=python-graphviz
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 604137947acf2b7cd302f3f32e778c96a0f521f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 219/872] python-greenlet: rebuild for Python 3.8.

---
 srcpkgs/python-greenlet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-greenlet/template b/srcpkgs/python-greenlet/template
index d1e63ac7adb..b540e9a286b 100644
--- a/srcpkgs/python-greenlet/template
+++ b/srcpkgs/python-greenlet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-greenlet'
 pkgname=python-greenlet
 version=0.4.15
-revision=2
+revision=3
 wrksrc="greenlet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From c75b3ed338515fef098deb3e5b0d7a6afb7e4027 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 220/872] python-guessit: rebuild for Python 3.8.

---
 srcpkgs/python-guessit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-guessit/template b/srcpkgs/python-guessit/template
index 5029048a041..a962f14522f 100644
--- a/srcpkgs/python-guessit/template
+++ b/srcpkgs/python-guessit/template
@@ -1,7 +1,7 @@
 # Template file for 'python-guessit'
 pkgname=python-guessit
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="guessit-${version}"
 build_style=python-module

From be7acc08bc4f5ffb222fcebc23a391553273ece1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 221/872] python-h11: rebuild for Python 3.8.

---
 srcpkgs/python-h11/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-h11/template b/srcpkgs/python-h11/template
index 88040dfadec..b2e007533a7 100644
--- a/srcpkgs/python-h11/template
+++ b/srcpkgs/python-h11/template
@@ -1,7 +1,7 @@
 # Template file for 'python-h11'
 pkgname=python-h11
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=h11-${version}
 build_style=python-module

From bdf55bd416f8bc2ed44be6c4c54d162c18a8ea97 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 222/872] python-habanero: rebuild for Python 3.8.

---
 srcpkgs/python-habanero/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-habanero/template b/srcpkgs/python-habanero/template
index 86d66befc3d..a914f21ecb7 100644
--- a/srcpkgs/python-habanero/template
+++ b/srcpkgs/python-habanero/template
@@ -1,7 +1,7 @@
 # Template file for 'python-habanero'
 pkgname=python-habanero
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="habanero-${version}"
 build_style=python-module

From 9c07301e6c8b8cbc8282f2c49eee7ea5572650fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 223/872] python3-hawkauthlib: rebuild for Python 3.8.

---
 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 fd7f1405790..1456fa7d814 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=2
+revision=3
 archs=noarch
 wrksrc="hawkauthlib-${version}"
 build_style=python3-module

From 66941ef99dc3f45dea432a38889d9aedcbc58e8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 224/872] python-hiredis: rebuild for Python 3.8.

---
 srcpkgs/python-hiredis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hiredis/template b/srcpkgs/python-hiredis/template
index 23694ae92d7..82a97d5eaf3 100644
--- a/srcpkgs/python-hiredis/template
+++ b/srcpkgs/python-hiredis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hiredis'
 pkgname=python-hiredis
 version=0.2.0
-revision=4
+revision=5
 wrksrc="hiredis-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 335237d6c8ffbf9d850fddc0047cb4ea28057efd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 225/872] python3-hkdf: rebuild for Python 3.8.

---
 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 fabc91ee974..0faaf05b5fe 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=1
+revision=2
 archs=noarch
 wrksrc="hkdf-${version}"
 build_style=python3-module

From fa28e1e2a5b4f298ee9762f0f595a5b1b16db0c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 226/872] python-hoedown: rebuild for Python 3.8.

---
 srcpkgs/python-hoedown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hoedown/template b/srcpkgs/python-hoedown/template
index a964fbbb709..4b82aba9afc 100644
--- a/srcpkgs/python-hoedown/template
+++ b/srcpkgs/python-hoedown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hoedown'
 pkgname=python-hoedown
 version=0.3.0
-revision=2
+revision=3
 wrksrc="hoedown-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 1b9ab7e23ce8f84563cdaac18cbe35d6b5b377eb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 227/872] python-hpack: rebuild for Python 3.8.

---
 srcpkgs/python-hpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hpack/template b/srcpkgs/python-hpack/template
index c69e91daa0e..ffbac313103 100644
--- a/srcpkgs/python-hpack/template
+++ b/srcpkgs/python-hpack/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hpack'
 pkgname=python-hpack
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hpack-${version}
 build_style=python-module

From b6095882129bc28d1a3eec0f996353011126ed10 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 228/872] python3-html2text: rebuild for Python 3.8.

---
 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 006f2a127ad..c74e236a053 100644
--- a/srcpkgs/python3-html2text/template
+++ b/srcpkgs/python3-html2text/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-html2text'
 pkgname=python3-html2text
 version=2019.9.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module

From 78741dc5f018f23c93acabc2cdd16c97d5e08012 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 229/872] python-html5-parser: rebuild for Python 3.8.

---
 srcpkgs/python-html5-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5-parser/template b/srcpkgs/python-html5-parser/template
index 130c5037e57..41bbd0ea157 100644
--- a/srcpkgs/python-html5-parser/template
+++ b/srcpkgs/python-html5-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5-parser'
 pkgname=python-html5-parser
 version=0.4.8
-revision=1
+revision=2
 wrksrc="html5-parser-${version}"
 build_style=python-module
 pycompile_module="html5_parser"

From f69efbb44a9aa15f6b7468ff70a20786ec1a04d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 230/872] python-html5lib: rebuild for Python 3.8.

---
 srcpkgs/python-html5lib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5lib/template b/srcpkgs/python-html5lib/template
index 81e683f7bcf..2565de64fd2 100644
--- a/srcpkgs/python-html5lib/template
+++ b/srcpkgs/python-html5lib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5lib'
 pkgname=python-html5lib
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="html5lib-${version}"
 build_style=python-module

From 6bd979521876c876eea2022ebe023cdbb30777c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 231/872] python-httmock: rebuild for Python 3.8.

---
 srcpkgs/python-httmock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httmock/template b/srcpkgs/python-httmock/template
index 61a60126936..e798b4fc1b3 100644
--- a/srcpkgs/python-httmock/template
+++ b/srcpkgs/python-httmock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httmock'
 pkgname=python-httmock
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="httmock-${version}"
 build_style=python-module

From 7f5b2e5c5738ca5824c255406195ff59f30f2c80 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 232/872] python-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httplib2/template b/srcpkgs/python-httplib2/template
index edcb6abf0c1..fe76a729328 100644
--- a/srcpkgs/python-httplib2/template
+++ b/srcpkgs/python-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httplib2'
 pkgname=python-httplib2
 version=0.13.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="httplib2-${version}"
 build_style=python-module

From 9bd4d3d3c99054f61ceb650933dcd9c5740d5ff0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 233/872] python3-humanize: rebuild for Python 3.8.

---
 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 c82c20fb0f2..d1011fb92e9 100644
--- a/srcpkgs/python3-humanize/template
+++ b/srcpkgs/python3-humanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-humanize'
 pkgname=python3-humanize
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="humanize-${version}"
 build_style=python3-module

From ead6f9504cd4015bc13944d58d676ef457b0fb34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 234/872] python-hyper-h2: rebuild for Python 3.8.

---
 srcpkgs/python-hyper-h2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyper-h2/template b/srcpkgs/python-hyper-h2/template
index 5dcf7ed1c4d..9e5eee3b69b 100644
--- a/srcpkgs/python-hyper-h2/template
+++ b/srcpkgs/python-hyper-h2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyper-h2'
 pkgname=python-hyper-h2
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyper-h2-${version}"
 build_style=python-module

From 8ac54f95c067c3f715c23a58d7f2b6d0683988cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 235/872] python-hyperframe: rebuild for Python 3.8.

---
 srcpkgs/python-hyperframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyperframe/template b/srcpkgs/python-hyperframe/template
index e4cea346f7e..6b544c2061c 100644
--- a/srcpkgs/python-hyperframe/template
+++ b/srcpkgs/python-hyperframe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperframe'
 pkgname=python-hyperframe
 version=5.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hyperframe-${version}
 build_style=python-module

From cb929edb0d026e58d2d6c7e6f9baeee9fedf523e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 236/872] python-hyperlink: rebuild for Python 3.8.

---
 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 1cc7aa0670a..945bf72ee59 100644
--- a/srcpkgs/python-hyperlink/template
+++ b/srcpkgs/python-hyperlink/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperlink'
 pkgname=python-hyperlink
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyperlink-${version}"
 build_style=python-module

From da7a9015ccf93b07d390988b03b1403702cfa14a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 237/872] python-hypothesis: rebuild for Python 3.8.

---
 srcpkgs/python-hypothesis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hypothesis/template b/srcpkgs/python-hypothesis/template
index f3eb931e410..de55593fc02 100644
--- a/srcpkgs/python-hypothesis/template
+++ b/srcpkgs/python-hypothesis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hypothesis'
 pkgname=python-hypothesis
 version=4.38.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="hypothesis-hypothesis-python-${version}"
 build_wrksrc=hypothesis-python

From f091030376534d6a6f7c625b82a8405350e7cdcd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 238/872] python-icalendar: rebuild for Python 3.8.

---
 srcpkgs/python-icalendar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-icalendar/template b/srcpkgs/python-icalendar/template
index b2129648ea6..be45f2d608d 100644
--- a/srcpkgs/python-icalendar/template
+++ b/srcpkgs/python-icalendar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-icalendar'
 pkgname=python-icalendar
 version=4.0.3
-revision=1
+revision=2
 wrksrc="icalendar-${version}"
 archs=noarch
 build_style=python-module

From 474626af886f96ef30849e5aca015775f7edfb8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 239/872] icdiff: rebuild for Python 3.8.

---
 srcpkgs/icdiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template
index 31cfc3e2354..396448b86f4 100644
--- a/srcpkgs/icdiff/template
+++ b/srcpkgs/icdiff/template
@@ -1,7 +1,7 @@
 # Template file for 'icdiff'
 pkgname=icdiff
 version=1.9.5
-revision=1
+revision=2
 wrksrc="${pkgname}-release-${version}"
 archs=noarch
 build_style=python-module

From 21e5ba4fadd590c9e0dd7afde206429c99c46c56 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 240/872] python-idna: rebuild for Python 3.8.

---
 srcpkgs/python-idna/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-idna/template b/srcpkgs/python-idna/template
index 4c6baefd41b..446a04da7d7 100644
--- a/srcpkgs/python-idna/template
+++ b/srcpkgs/python-idna/template
@@ -1,7 +1,7 @@
 # Template file for 'python-idna'
 pkgname=python-idna
 version=2.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-${version}"
 build_style=python-module

From a012eff0de75e8caab0be24964731b749fe6ad8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 241/872] python3-idna-ssl: rebuild for Python 3.8.

---
 srcpkgs/python3-idna-ssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-idna-ssl/template b/srcpkgs/python3-idna-ssl/template
index df953f4d0d9..0608fb7278c 100644
--- a/srcpkgs/python3-idna-ssl/template
+++ b/srcpkgs/python3-idna-ssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-idna-ssl'
 pkgname=python3-idna-ssl
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-ssl-${version}"
 build_style=python3-module

From ac112b7dfc3aadb93225736a4504f7965af29838 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 242/872] python3-ifaddr: rebuild for Python 3.8.

---
 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 37bc2bbaf73..683d76662a3 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ifaddr-${version}"
 build_style=python3-module

From 32d0218ef7a7a721759e4c421d70255f49b3cfd0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 243/872] python-imagesize: rebuild for Python 3.8.

---
 srcpkgs/python-imagesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-imagesize/template b/srcpkgs/python-imagesize/template
index ee231eb9f24..f64c86812b5 100644
--- a/srcpkgs/python-imagesize/template
+++ b/srcpkgs/python-imagesize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-imagesize'
 pkgname=python-imagesize
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="imagesize-${version}"
 build_style=python-module

From f0bf351c50949a7348409d8c132926c401dabf43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 244/872] python3-importlib_metadata: rebuild for Python 3.8.

---
 srcpkgs/python3-importlib_metadata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-importlib_metadata/template b/srcpkgs/python3-importlib_metadata/template
index 9acbe968e10..f88e9d9b780 100644
--- a/srcpkgs/python3-importlib_metadata/template
+++ b/srcpkgs/python3-importlib_metadata/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-importlib_metadata'
 pkgname=python3-importlib_metadata
 version=0.23
-revision=1
+revision=2
 archs=noarch
 wrksrc="importlib_metadata-${version}"
 build_style=python3-module

From 73cc1c05e8e0ccf9063a33dd203d70df2ab135ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 245/872] python-incremental: rebuild for Python 3.8.

---
 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 a1c07042365..70477e26866 100644
--- a/srcpkgs/python-incremental/template
+++ b/srcpkgs/python-incremental/template
@@ -1,7 +1,7 @@
 # Template file for 'python-incremental'
 pkgname=python-incremental
 version=17.5.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="incremental-${version}"
 build_style=python-module

From 82a10b837fff5c5ce2f37ede93dad161025a109c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 246/872] python-inotify: rebuild for Python 3.8.

---
 srcpkgs/python-inotify/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-inotify/template b/srcpkgs/python-inotify/template
index f8e26bcc415..64e48fd9330 100644
--- a/srcpkgs/python-inotify/template
+++ b/srcpkgs/python-inotify/template
@@ -1,7 +1,7 @@
 # Template file for 'python-inotify'
 pkgname=python-inotify
 version=0.9.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="pyinotify-${version}"
 build_style=python-module

From 70f558982c4846e9de5243694f048c7014c7089a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 247/872] python-iptools: rebuild for Python 3.8.

---
 srcpkgs/python-iptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iptools/template b/srcpkgs/python-iptools/template
index 599a85ccdba..3c53013fb9d 100644
--- a/srcpkgs/python-iptools/template
+++ b/srcpkgs/python-iptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iptools'
 pkgname=python-iptools
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9962727fd608ce59af5a55c73c8b4c3d0c17fe71 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 248/872] python3-ipython: rebuild for Python 3.8.

---
 srcpkgs/python3-ipython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template
index 63242f382db..2c08bad1e41 100644
--- a/srcpkgs/python3-ipython/template
+++ b/srcpkgs/python3-ipython/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-ipython'
 pkgname=python3-ipython
 version=7.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipython-${version}"
 build_style=python3-module

From ecafa2b5530001ac56b03e639dff4ae00027d1ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 249/872] python-ipython_genutils: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_genutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_genutils/template b/srcpkgs/python-ipython_genutils/template
index 9af9604ca00..d46a3b0b716 100644
--- a/srcpkgs/python-ipython_genutils/template
+++ b/srcpkgs/python-ipython_genutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_genutils'
 pkgname=python-ipython_genutils
 version=0.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="ipython_genutils-${version}"
 build_style=python-module

From 1349d0a55b00bc5b30629934ad23ae1ed8839d98 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 250/872] python-ipython_ipykernel: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_ipykernel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_ipykernel/template b/srcpkgs/python-ipython_ipykernel/template
index 5ddc333798a..ca17b58c006 100644
--- a/srcpkgs/python-ipython_ipykernel/template
+++ b/srcpkgs/python-ipython_ipykernel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_ipykernel'
 pkgname=python-ipython_ipykernel
 version=4.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipykernel-${version}"
 build_style=python-module

From 1b146320a422b57ba1db41491ccff040d9ee719d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 251/872] python3-irc: rebuild for Python 3.8.

---
 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 eea3a629128..714c11dc943 100644
--- a/srcpkgs/python3-irc/template
+++ b/srcpkgs/python3-irc/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-irc'
 pkgname=python3-irc
 version=17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="irc-${version}"
 build_style=python3-module

From e04c4f250fda964ab555eb6b636f701d995009e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 252/872] python-isbnlib: rebuild for Python 3.8.

---
 srcpkgs/python-isbnlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isbnlib/template b/srcpkgs/python-isbnlib/template
index 3e2f66c6b66..1cc46a060d6 100644
--- a/srcpkgs/python-isbnlib/template
+++ b/srcpkgs/python-isbnlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isbnlib'
 pkgname=python-isbnlib
 version=3.9.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="isbnlib-${version}"
 build_style=python-module

From 2debe6131c52d94acd065961f9ea9ae22176a34c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 253/872] python-iso-8601: rebuild for Python 3.8.

---
 srcpkgs/python-iso-8601/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iso-8601/template b/srcpkgs/python-iso-8601/template
index a483e55b0bd..a841866d439 100644
--- a/srcpkgs/python-iso-8601/template
+++ b/srcpkgs/python-iso-8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iso-8601'
 pkgname=python-iso-8601
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="iso-8601-${version}"
 build_style=python-module

From 8b4be7b5324ac1347d55cc4f4e9eaa552465beec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 254/872] python-isodate: rebuild for Python 3.8.

---
 srcpkgs/python-isodate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isodate/template b/srcpkgs/python-isodate/template
index b2a7eb46591..74e4e813e64 100644
--- a/srcpkgs/python-isodate/template
+++ b/srcpkgs/python-isodate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isodate'
 pkgname=python-isodate
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="isodate-${version}"
 build_style=python-module

From a9c9e144908d37411616dd357e9fdc7575aaa8c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 255/872] python-isort: rebuild for Python 3.8.

---
 srcpkgs/python-isort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isort/template b/srcpkgs/python-isort/template
index df7fcfbf2d2..cd8e43b69ea 100644
--- a/srcpkgs/python-isort/template
+++ b/srcpkgs/python-isort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isort'
 pkgname=python-isort
 version=4.3.21
-revision=1
+revision=2
 archs=noarch
 wrksrc="isort-${version}"
 build_style=python-module

From a81f38d5db390cc4ae2c6be89747bebd3f1f15dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 256/872] python-itsdangerous: rebuild for Python 3.8.

---
 srcpkgs/python-itsdangerous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-itsdangerous/template b/srcpkgs/python-itsdangerous/template
index d1d9234df88..6e6fe5dcb2b 100644
--- a/srcpkgs/python-itsdangerous/template
+++ b/srcpkgs/python-itsdangerous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-itsdangerous'
 pkgname=python-itsdangerous
 version=0.24
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 2d842da30a2a65a2405487fdd5929ca2a0555251 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 257/872] python-iwlib: rebuild for Python 3.8.

---
 srcpkgs/python-iwlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iwlib/template b/srcpkgs/python-iwlib/template
index 2c58d4c8d29..2f4149b4e92 100644
--- a/srcpkgs/python-iwlib/template
+++ b/srcpkgs/python-iwlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iwlib'
 pkgname=python-iwlib
 version=1.6.2
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="iwlib"

From c09cc84b06cf4332a02b0a826494a74c81409175 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 258/872] python-jedi: rebuild for Python 3.8.

---
 srcpkgs/python-jedi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jedi/template b/srcpkgs/python-jedi/template
index 136e6adbea4..a994f0e2861 100644
--- a/srcpkgs/python-jedi/template
+++ b/srcpkgs/python-jedi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jedi'
 pkgname=python-jedi
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 _parsover=0.5.0
 wrksrc="jedi-${version}"

From 235b9031c126ebf53355a5ef0c337423c0df1d95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 259/872] python3-jeepney: rebuild for Python 3.8.

---
 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 2ae308a6fc6..9c5c007aa17 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.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="jeepney-${version}"
 build_style=python3-module

From 4868c0871bc763937dd6b8573e91ee86064e0595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 260/872] python3-jellyfish: rebuild for Python 3.8.

---
 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 dec74539e3f..5d0a614c397 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.7.2
-revision=1
+revision=2
 wrksrc="jellyfish-${version}"
 build_style=python3-module
 pycompile_module="jellyfish"

From a9c225f19782a27d8e5e28a508ea0acc39991390 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 261/872] python-jmespath: rebuild for Python 3.8.

---
 srcpkgs/python-jmespath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jmespath/template b/srcpkgs/python-jmespath/template
index 47508a3a0c2..220f1a33c07 100644
--- a/srcpkgs/python-jmespath/template
+++ b/srcpkgs/python-jmespath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jmespath'
 pkgname=python-jmespath
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jmespath.py-${version}"
 build_style=python-module

From 30e8e2e1619bdf45652db8c6ecdd0e0a4fc90d8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 262/872] python3-josepy: rebuild for Python 3.8.

---
 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 6d6e4547d38..903bd7028ed 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="josepy-${version}"
 build_style=python3-module

From c06d36cf857257f3cf63a7e677498487d37168d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 263/872] python-jsonpointer: rebuild for Python 3.8.

---
 srcpkgs/python-jsonpointer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonpointer/template b/srcpkgs/python-jsonpointer/template
index ed865fbfcba..fd103d123aa 100644
--- a/srcpkgs/python-jsonpointer/template
+++ b/srcpkgs/python-jsonpointer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonpointer'
 pkgname=python-jsonpointer
 version=2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonpointer-${version}"
 build_style=python-module

From be483d0bbf53a22e23a3c2db3d77dc61bff17915 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 264/872] python-jsonrpclib: rebuild for Python 3.8.

---
 srcpkgs/python-jsonrpclib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonrpclib/template b/srcpkgs/python-jsonrpclib/template
index 7253607fe57..a245168a824 100644
--- a/srcpkgs/python-jsonrpclib/template
+++ b/srcpkgs/python-jsonrpclib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonrpclib'
 pkgname=python-jsonrpclib
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonrpclib-pelix-${version}"
 build_style=python-module

From 15ad75adf989474229acc1fdac0c5d5887528bd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 265/872] python-jsonschema: rebuild for Python 3.8.

---
 srcpkgs/python-jsonschema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonschema/template b/srcpkgs/python-jsonschema/template
index 63c30ce6863..326b5609d36 100644
--- a/srcpkgs/python-jsonschema/template
+++ b/srcpkgs/python-jsonschema/template
@@ -2,7 +2,7 @@
 pkgname=python-jsonschema
 reverts="3.0.2_1"
 version=2.6.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="jsonschema-${version}"
 build_style=python-module

From 8bf3797435c040a1682d5e3e4c6c41f650d82b34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 266/872] python-jupyter_client: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_client/template b/srcpkgs/python-jupyter_client/template
index ab5cd0c5b3c..6365dd9e175 100644
--- a/srcpkgs/python-jupyter_client/template
+++ b/srcpkgs/python-jupyter_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_client'
 pkgname=python-jupyter_client
 version=5.2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_client-${version}"
 build_style=python-module

From e732ed651c399cb8d7e96a618444e815bf86ce4b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 267/872] python3-jupyter_console: rebuild for Python 3.8.

---
 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 25b2eda4c2f..3837e5b3bbf 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_console-${version}"
 build_style=python3-module

From b264bc5200c6942b1507777e0bc169838cb6a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 268/872] python-jupyter_core: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_core/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_core/template b/srcpkgs/python-jupyter_core/template
index fcce4e0fe0b..f1629208e86 100644
--- a/srcpkgs/python-jupyter_core/template
+++ b/srcpkgs/python-jupyter_core/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_core'
 pkgname=python-jupyter_core
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_core-${version}"
 build_style=python-module

From 54845c515258535f8793ff37241d0daad10fcddc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 269/872] python-jupyter_ipywidgets: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_ipywidgets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_ipywidgets/template b/srcpkgs/python-jupyter_ipywidgets/template
index 3d511a25152..44570cf390a 100644
--- a/srcpkgs/python-jupyter_ipywidgets/template
+++ b/srcpkgs/python-jupyter_ipywidgets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_ipywidgets'
 pkgname=python-jupyter_ipywidgets
 version=7.4.2
-revision=1
+revision=2
 archs=noarch
 _widgetsnbextver=3.4.0
 wrksrc="ipywidgets-${version}"

From da9dc8f246174d7b5fed1a61f1b4bb127c2bc9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 270/872] python-jupyter_nbconvert: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbconvert/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbconvert/template b/srcpkgs/python-jupyter_nbconvert/template
index 57ac5cce23f..e6cdad7d21c 100644
--- a/srcpkgs/python-jupyter_nbconvert/template
+++ b/srcpkgs/python-jupyter_nbconvert/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbconvert'
 pkgname=python-jupyter_nbconvert
 version=5.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="nbconvert-${version}"
 build_style=python-module

From 8e126f65404eaa5a5b69bca1aa41b4be58abe4b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 271/872] python-jupyter_nbformat: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbformat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbformat/template b/srcpkgs/python-jupyter_nbformat/template
index 11098fd3f90..e2addc8866f 100644
--- a/srcpkgs/python-jupyter_nbformat/template
+++ b/srcpkgs/python-jupyter_nbformat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbformat'
 pkgname=python-jupyter_nbformat
 version=4.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="nbformat-${version}"
 build_style=python-module

From 3d7a11f09a2f159b9e42c935154654a47117f3a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 272/872] python-jupyter_notebook: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_notebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_notebook/template b/srcpkgs/python-jupyter_notebook/template
index c3f478c1fb4..4f6de0f642d 100644
--- a/srcpkgs/python-jupyter_notebook/template
+++ b/srcpkgs/python-jupyter_notebook/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_notebook'
 pkgname=python-jupyter_notebook
 version=5.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="notebook-${version}"
 build_style=python-module

From eab8a5bd67b168048f40a3d2fe199e073715a1b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 273/872] python-jupyter_qtconsole: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_qtconsole/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_qtconsole/template b/srcpkgs/python-jupyter_qtconsole/template
index f8f85534bbd..ea7f89a62af 100644
--- a/srcpkgs/python-jupyter_qtconsole/template
+++ b/srcpkgs/python-jupyter_qtconsole/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_qtconsole'
 pkgname=python-jupyter_qtconsole
 version=4.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="qtconsole-${version}"
 build_style=python-module

From 96c7c1f6f484f9a33a17b0213142b8a97a7c69e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 274/872] python-jupyter_widgetsnbextension: rebuild for Python
 3.8.

---
 srcpkgs/python-jupyter_widgetsnbextension/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_widgetsnbextension/template b/srcpkgs/python-jupyter_widgetsnbextension/template
index dacd88ccb4f..05e9c0d00a3 100644
--- a/srcpkgs/python-jupyter_widgetsnbextension/template
+++ b/srcpkgs/python-jupyter_widgetsnbextension/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_widgetsnbextension'
 pkgname=python-jupyter_widgetsnbextension
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="widgetsnbextension-${version}"
 build_style=python-module

From 6175c117f039e76b8fff45d549f50360a92742b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 275/872] python-kaptan: rebuild for Python 3.8.

---
 srcpkgs/python-kaptan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kaptan/template b/srcpkgs/python-kaptan/template
index 649eeec8568..6668b240008 100644
--- a/srcpkgs/python-kaptan/template
+++ b/srcpkgs/python-kaptan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kaptan'
 pkgname=python-kaptan
 version=0.5.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="kaptan-${version}"
 build_style=python-module

From 6668dcf37c32ef8390c8f45e6cd206d8478b963b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 276/872] python-keepalive: rebuild for Python 3.8.

---
 srcpkgs/python-keepalive/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keepalive/template b/srcpkgs/python-keepalive/template
index deb95a07236..50e1d7e6e78 100644
--- a/srcpkgs/python-keepalive/template
+++ b/srcpkgs/python-keepalive/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keepalive'
 pkgname=python-keepalive
 version=0.5
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9e9d4a781427bc1296f59529a4d83b4a1271c5e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 277/872] python-keyring: rebuild for Python 3.8.

---
 srcpkgs/python-keyring/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyring/template b/srcpkgs/python-keyring/template
index df1c21ee1be..2a87160b04d 100644
--- a/srcpkgs/python-keyring/template
+++ b/srcpkgs/python-keyring/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyring'
 pkgname=python-keyring
 version=18.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyring-${version}"
 build_style=python-module

From 8fea0f10f3e8aebfe92a9d090368b1cda777a405 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 278/872] python3-keyrings-alt: rebuild for Python 3.8.

---
 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 d5820535e54..ed09cfac4a7 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=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyrings.alt-${version}"
 build_style=python3-module

From 271539dc3ed1e21733c374ff971770403194a1d1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 279/872] python-keyutils: rebuild for Python 3.8.

---
 srcpkgs/python-keyutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyutils/template b/srcpkgs/python-keyutils/template
index d56ada0e30e..a72819e963a 100644
--- a/srcpkgs/python-keyutils/template
+++ b/srcpkgs/python-keyutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyutils'
 pkgname=python-keyutils
 version=0.6
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="keyutils"
 hostmakedepends="python-setuptools python3-setuptools"

From 0556a11defcdebd2c4319e286451ce3f45f87ebd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 280/872] python-kitchen: rebuild for Python 3.8.

---
 srcpkgs/python-kitchen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kitchen/template b/srcpkgs/python-kitchen/template
index 2bbd68c13c9..68a46986de9 100644
--- a/srcpkgs/python-kitchen/template
+++ b/srcpkgs/python-kitchen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kitchen'
 pkgname=python-kitchen
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="kitchen-${version}"
 build_style=python-module

From fe5070b00515733fcafbeebc62a10ba2029b40db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 281/872] python-kiwisolver: rebuild for Python 3.8.

---
 srcpkgs/python-kiwisolver/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kiwisolver/template b/srcpkgs/python-kiwisolver/template
index 072bd5af038..67f0805aa51 100644
--- a/srcpkgs/python-kiwisolver/template
+++ b/srcpkgs/python-kiwisolver/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kiwisolver'
 pkgname=python-kiwisolver
 version=1.0.1
-revision=2
+revision=3
 wrksrc="kiwisolver-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From d1c550f6959162ec91e7bb39c54ecdd1d5b7c0ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 282/872] python-lazy-object-proxy: rebuild for Python 3.8.

---
 srcpkgs/python-lazy-object-proxy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lazy-object-proxy/template b/srcpkgs/python-lazy-object-proxy/template
index 07efb7b4777..ab2c6dce05c 100644
--- a/srcpkgs/python-lazy-object-proxy/template
+++ b/srcpkgs/python-lazy-object-proxy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lazy-object-proxy'
 pkgname=python-lazy-object-proxy
 version=1.3.1
-revision=3
+revision=4
 wrksrc="lazy-object-proxy-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e5c9a0cf8e6e0714fba4433b9deb1aaf40d43ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 283/872] python-ldap: rebuild for Python 3.8.

---
 srcpkgs/python-ldap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap/template b/srcpkgs/python-ldap/template
index 7770baa8774..e3efc2fc6b3 100644
--- a/srcpkgs/python-ldap/template
+++ b/srcpkgs/python-ldap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap'
 pkgname=python-ldap
 version=3.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="ldap ldapurl.py ldif.py slapdtest"
 hostmakedepends="python-setuptools python3-setuptools"

From dca16bc247cccf1bc7020afca5594d857514100a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 284/872] python-ldap3: rebuild for Python 3.8.

---
 srcpkgs/python-ldap3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap3/template b/srcpkgs/python-ldap3/template
index 676251a85ff..e8e4cade72b 100644
--- a/srcpkgs/python-ldap3/template
+++ b/srcpkgs/python-ldap3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap3'
 pkgname=python-ldap3
 version=2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ldap3-${version}"
 build_style=python-module

From 8f3e1b0bf64fb527d029fec15229e079f326c373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 285/872] python3-libevdev: rebuild for Python 3.8.

---
 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 0a79893726c..f0295cdee9b 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.8
-revision=1
+revision=2
 _githash=1827bebcf789adee8492cbfcc7cf8d56059a42a4
 wrksrc="python-libevdev-${version}-${_githash}"
 build_style=python3-module

From a5b674c4366c36182e29f21b8071faff59006106 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 286/872] libsmbios: rebuild for Python 3.8.

---
 srcpkgs/libsmbios/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsmbios/template b/srcpkgs/libsmbios/template
index 31d8ffda65f..161cb79deb9 100644
--- a/srcpkgs/libsmbios/template
+++ b/srcpkgs/libsmbios/template
@@ -1,7 +1,7 @@
 # Template file for 'libsmbios'
 pkgname=libsmbios
 version=2.4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--sbindir=/usr/bin --disable-static"
 hostmakedepends="automake doxygen gettext-devel help2man libtool pkg-config"

From 7762c8392d1a03ae7a320bdec0b5402b7147d0b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 287/872] python-libtmux: rebuild for Python 3.8.

---
 srcpkgs/python-libtmux/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-libtmux/template b/srcpkgs/python-libtmux/template
index 36fa7ca7ffd..20f43af5f7d 100644
--- a/srcpkgs/python-libtmux/template
+++ b/srcpkgs/python-libtmux/template
@@ -1,7 +1,7 @@
 # Template file for 'python-libtmux'
 pkgname=python-libtmux
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="libtmux-${version}"
 build_style=python-module

From 16a2a1b8ba0ad9f9032d52092294e8a39041bba2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 288/872] python-llfuse: rebuild for Python 3.8.

---
 srcpkgs/python-llfuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-llfuse/template b/srcpkgs/python-llfuse/template
index 203c5e2fd84..b453c67e91d 100644
--- a/srcpkgs/python-llfuse/template
+++ b/srcpkgs/python-llfuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-llfuse'
 pkgname=python-llfuse
 version=1.3.6
-revision=1
+revision=2
 wrksrc="llfuse-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pkg-config"

From ae7f34ffc994fc4606c9209683fae6625f3e781e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 289/872] python-lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lockfile/template b/srcpkgs/python-lockfile/template
index 4c4612ed144..778cecba7e9 100644
--- a/srcpkgs/python-lockfile/template
+++ b/srcpkgs/python-lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lockfile'
 pkgname=python-lockfile
 version=0.12.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="lockfile-${version}"
 build_style=python-module

From 5fd2f78e26b399ed936b12f51886dae3a8d35cb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 290/872] python-logfury: rebuild for Python 3.8.

---
 srcpkgs/python-logfury/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-logfury/template b/srcpkgs/python-logfury/template
index 4b1c435e34a..1b52d2d7fdf 100644
--- a/srcpkgs/python-logfury/template
+++ b/srcpkgs/python-logfury/template
@@ -1,7 +1,7 @@
 # Template file for 'python-logfury'
 pkgname=python-logfury
 version=0.1.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="logfury-${version}"
 build_style=python-module

From 747dc28bedc27e7b5c8738113573012f545333a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 291/872] python-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lxml/template b/srcpkgs/python-lxml/template
index c3aeabfbf1b..1a6a3ac9113 100644
--- a/srcpkgs/python-lxml/template
+++ b/srcpkgs/python-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lxml'
 pkgname=python-lxml
 version=4.4.1
-revision=1
+revision=2
 wrksrc="lxml-lxml-${version}"
 build_style=python-module
 pycompile_module="lxml"

From ebc274c0463316f63fe99e5df0c704e3d324c885 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 292/872] python-lz4: rebuild for Python 3.8.

---
 srcpkgs/python-lz4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lz4/template b/srcpkgs/python-lz4/template
index dab8e8ed542..76a2e800e38 100644
--- a/srcpkgs/python-lz4/template
+++ b/srcpkgs/python-lz4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lz4'
 pkgname=python-lz4
 version=2.1.6
-revision=2
+revision=3
 wrksrc="lz4-${version}"
 build_style=python-module
 pycompile_module="lz4"

From 8eb3f4d6193b25ae716fa2fdfae1f929deb65a91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 293/872] python3-macaroons: rebuild for Python 3.8.

---
 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 d44100c20f2..420f5aff043 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=1
+revision=2
 archs=noarch
 wrksrc="pymacaroons-${version}"
 build_style=python3-module

From 437e300b76670db404728daad9f6224630daaa3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 294/872] python3-macholib: rebuild for Python 3.8.

---
 srcpkgs/python3-macholib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-macholib/template b/srcpkgs/python3-macholib/template
index a2738f57eb0..525b5f7106b 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.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="macholib-${version}"
 build_style=python3-module

From b08f229d26f5b2c915caabe213234afc1e4002e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 295/872] python-magic: rebuild for Python 3.8.

---
 srcpkgs/python-magic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-magic/template b/srcpkgs/python-magic/template
index 98e3c0802ab..5a59efa4808 100644
--- a/srcpkgs/python-magic/template
+++ b/srcpkgs/python-magic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-magic'
 pkgname=python-magic
 version=0.4.15
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="magic.py"

From c597fee1945d8f994f591622074acf3670a81484 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 296/872] python-marisa-trie: rebuild for Python 3.8.

---
 srcpkgs/python-marisa-trie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-marisa-trie/template b/srcpkgs/python-marisa-trie/template
index bb09c933335..5e46b686ace 100644
--- a/srcpkgs/python-marisa-trie/template
+++ b/srcpkgs/python-marisa-trie/template
@@ -1,7 +1,7 @@
 # Template file for 'python-marisa-trie'
 pkgname=python-marisa-trie
 version=0.7.5
-revision=2
+revision=3
 wrksrc="marisa-trie-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 5366314fc7ba3b340ccf5b4658edff33f5ec148a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 297/872] python-markdown2: rebuild for Python 3.8.

---
 srcpkgs/python-markdown2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-markdown2/template b/srcpkgs/python-markdown2/template
index 2d352ba029d..e9068f64202 100644
--- a/srcpkgs/python-markdown2/template
+++ b/srcpkgs/python-markdown2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-markdown2'
 pkgname=python-markdown2
 version=2.3.8
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="markdown2"

From b56d284bcbb50ddece287bde845145e6481e4d39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 298/872] python3-matplotlib: rebuild for Python 3.8.

---
 srcpkgs/python3-matplotlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template
index 857ba17cacf..be02817a4d3 100644
--- a/srcpkgs/python3-matplotlib/template
+++ b/srcpkgs/python3-matplotlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-matplotlib'
 pkgname=python3-matplotlib
 version=3.1.1
-revision=1
+revision=2
 wrksrc="matplotlib-${version}"
 build_style=python3-module
 pycompile_module="matplotlib mpl_toolkits pylab.py"

From 8b3780e8f6f50712735239defc569952763e8894 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 299/872] python-mccabe: rebuild for Python 3.8.

---
 srcpkgs/python-mccabe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mccabe/template b/srcpkgs/python-mccabe/template
index b6a01929540..1e2ed6328b8 100644
--- a/srcpkgs/python-mccabe/template
+++ b/srcpkgs/python-mccabe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mccabe'
 pkgname=python-mccabe
 version=0.6.1
-revision=2
+revision=3
 archs=noarch
 replaces="mccabe>=0"
 wrksrc="mccabe-${version}"

From 954d38992e9a83e3214b79375b895ee1072db4e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 300/872] python-mechanize: rebuild for Python 3.8.

---
 srcpkgs/python-mechanize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mechanize/template b/srcpkgs/python-mechanize/template
index c5b2b5789a7..ca29bbd0d23 100644
--- a/srcpkgs/python-mechanize/template
+++ b/srcpkgs/python-mechanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mechanize'
 pkgname=python-mechanize
 version=0.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="mechanize-${version}"
 build_style=python-module

From e8762f4af80ad5b1cb6a41af3183141ec903485f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 301/872] python3-minidb: rebuild for Python 3.8.

---
 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 50490794600..140964b7a8a 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.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="minidb-${version}"
 build_style=python3-module

From 93febdb59f89cf4939f3684acd832f879fc774d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 302/872] python-miniupnpc: rebuild for Python 3.8.

---
 srcpkgs/python-miniupnpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-miniupnpc/template b/srcpkgs/python-miniupnpc/template
index 500c217c78e..f7892bab073 100644
--- a/srcpkgs/python-miniupnpc/template
+++ b/srcpkgs/python-miniupnpc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-miniupnpc'
 pkgname=python-miniupnpc
 version=2.0.2
-revision=2
+revision=3
 wrksrc="${pkgname#python-}-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ab280bf26207a66e5e3f418768bf3358cc2c76ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 303/872] python-mistune: rebuild for Python 3.8.

---
 srcpkgs/python-mistune/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mistune/template b/srcpkgs/python-mistune/template
index 0ee8dfde5b1..ef5c054ba75 100644
--- a/srcpkgs/python-mistune/template
+++ b/srcpkgs/python-mistune/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mistune'
 pkgname=python-mistune
 version=0.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="mistune-${version}"
 build_style=python-module

From 05abf67487f6ac161862195dfb2069fade248fbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 304/872] python3-more-itertools: rebuild for Python 3.8.

---
 srcpkgs/python3-more-itertools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-more-itertools/template b/srcpkgs/python3-more-itertools/template
index b089992f84e..a765da98495 100644
--- a/srcpkgs/python3-more-itertools/template
+++ b/srcpkgs/python3-more-itertools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-more-itertools'
 pkgname=python3-more-itertools
 version=7.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python3-module

From efcbd7f439e04ca5dc43be057047c93f1051b5cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 305/872] python-mpd2: rebuild for Python 3.8.

---
 srcpkgs/python-mpd2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template
index 682d9a85f5e..0389f8c2a28 100644
--- a/srcpkgs/python-mpd2/template
+++ b/srcpkgs/python-mpd2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpd2'
 pkgname=python-mpd2
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mpd"

From 507a89e7a29ba5dd81f66830577542bb3a098780 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 306/872] python3-mpi4py: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-mpi4py/template | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/python3-mpi4py/template b/srcpkgs/python3-mpi4py/template
index 94a83b688f2..8f9e76867cc 100644
--- a/srcpkgs/python3-mpi4py/template
+++ b/srcpkgs/python3-mpi4py/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpi4py'
 pkgname=python3-mpi4py
 version=3.0.2
-revision=1
+revision=2
 wrksrc="mpi4py-${version}"
 build_style=python3-module
 pycompile_module="mpi4py"
@@ -15,6 +15,12 @@ homepage="https://bitbucket.org/mpi4py/mpi4py"
 distfiles="$PYPI_SITE/m/mpi4py/mpi4py-${version}.tar.gz"
 checksum=f8d629d1e3e3b7b89cb99d0e3bc5505e76cc42089829807950d5c56606ed48e0
 
+post_extract() {
+	# recythonize
+	rm src/mpi4py/include/mpi4py/mpi4py.MPI.h \
+		src/mpi4py/include/mpi4py/mpi4py.MPI_api.h \
+		src/mpi4py.MPI.c
+}
 post_install() {
 	vlicense LICENSE.rst
 }

From d71d04b6dbfad4ce9460041fe001aab7c4cab301 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 307/872] python-mpmath: rebuild for Python 3.8.

---
 srcpkgs/python-mpmath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpmath/template b/srcpkgs/python-mpmath/template
index b0a38c01514..8fd4873dd62 100644
--- a/srcpkgs/python-mpmath/template
+++ b/srcpkgs/python-mpmath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpmath'
 pkgname=python-mpmath
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="mpmath-${version}"
 build_style=python-module

From f050643cc3d8a1927b2b43a4d6bc3a47fce265d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 308/872] python3-mpv: rebuild for Python 3.8.

---
 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 2780c02610b..1910a4d231d 100644
--- a/srcpkgs/python3-mpv/template
+++ b/srcpkgs/python3-mpv/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpv'
 pkgname=python3-mpv
 version=0.3.9
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-mpv-${version}"
 build_style=python3-module

From 076ab982ba68fae19b6a637c3190d501b6f11afb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 309/872] python-msgpack: rebuild for Python 3.8.

---
 srcpkgs/python-msgpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-msgpack/template b/srcpkgs/python-msgpack/template
index 395d854d638..59571d6a208 100644
--- a/srcpkgs/python-msgpack/template
+++ b/srcpkgs/python-msgpack/template
@@ -2,7 +2,7 @@
 pkgname=python-msgpack
 reverts="0.6.0_1"
 version=0.5.6
-revision=3
+revision=4
 wrksrc="msgpack-${version}"
 build_style=python-module
 pycompile_module="msgpack"

From c0b498d4aabae1c0cc1564a796b43c28045b08f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 310/872] python3-msoffcrypto-tool: rebuild for Python 3.8.

---
 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 5996d3bf355..d1b369fc773 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=4.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="msoffcrypto-tool-${version}"
 build_style=python3-module

From a02ae9dc7e657d6823c09d222a46aaaad0b52e6e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 311/872] python-mtranslate: rebuild for Python 3.8.

---
 srcpkgs/python-mtranslate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mtranslate/template b/srcpkgs/python-mtranslate/template
index d56fa18f0f0..992c7b76fe9 100644
--- a/srcpkgs/python-mtranslate/template
+++ b/srcpkgs/python-mtranslate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mtranslate'
 pkgname=python-mtranslate
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="mtranslate-${version}"
 build_style=python-module

From 1db5126bddf0129431159c083c0e8c7feeda0e24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 312/872] python3-multidict: rebuild for Python 3.8.

---
 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 82888db842f..62054db71f1 100644
--- a/srcpkgs/python3-multidict/template
+++ b/srcpkgs/python3-multidict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-multidict'
 pkgname=python3-multidict
 version=4.5.2
-revision=2
+revision=3
 wrksrc="multidict-${version}"
 build_style=python3-module
 pycompile_module="multidict"

From db397601599182d62444486443fe7887f1bf0869 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 313/872] python3-munkres: rebuild for Python 3.8.

---
 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 15767afe3fe..d0d0a013e80 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python3-module

From f6bec8102ac4a1433f716928258d680f0546e9f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 314/872] python-musicbrainzngs: rebuild for Python 3.8.

---
 srcpkgs/python-musicbrainzngs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-musicbrainzngs/template b/srcpkgs/python-musicbrainzngs/template
index 588c25f7cd8..3d738f0c3c0 100644
--- a/srcpkgs/python-musicbrainzngs/template
+++ b/srcpkgs/python-musicbrainzngs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-musicbrainzngs'
 pkgname=python-musicbrainzngs
 version=0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="musicbrainzngs-${version}"
 build_style="python-module"

From 59d602d19ea627b5ddd3ac33170326df511f1b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 315/872] python3-musicpd: rebuild for Python 3.8.

---
 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 3328b2f4bbf..8c6ba2fb451 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=1
+revision=2
 archs=noarch
 wrksrc="python-musicpd-${version}"
 build_style=python3-module

From e4271deae6b4b0258165475e34a0174f837576d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 316/872] mutagen: rebuild for Python 3.8.

---
 srcpkgs/mutagen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mutagen/template b/srcpkgs/mutagen/template
index cbf05ea8583..8b24cc82dc8 100644
--- a/srcpkgs/mutagen/template
+++ b/srcpkgs/mutagen/template
@@ -1,7 +1,7 @@
 # Template file for 'mutagen'
 pkgname=mutagen
 version=1.42.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mutagen"

From c726c7e86676ccc5612045570a6821438d6541cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 317/872] python-mygpoclient: rebuild for Python 3.8.

---
 srcpkgs/python-mygpoclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mygpoclient/template b/srcpkgs/python-mygpoclient/template
index 3f85c72cc0c..ffad63a70a1 100644
--- a/srcpkgs/python-mygpoclient/template
+++ b/srcpkgs/python-mygpoclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mygpoclient'
 pkgname=python-mygpoclient
 version=1.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="mygpoclient-${version}"
 build_style=python-module

From 1d17c7a2672083ac8c194b767f1be1d8778d6f42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 318/872] python3-mypy: rebuild for Python 3.8.

---
 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 37ecd732c06..564c0a4d47c 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.730
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy-${version}"
 build_style=python3-module

From d44ba12caf9958f6f6d708b0e5061d3ca01990e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 319/872] python3-mypy_extensions: rebuild for Python 3.8.

---
 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 2761924248e..25de48ea141 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy_extensions-${version}"
 build_style=python3-module

From 8c03f1eb83b224187a7b0fb11b5c780c96875438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 320/872] python-mysqlclient: rebuild for Python 3.8.

---
 srcpkgs/python-mysqlclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mysqlclient/template b/srcpkgs/python-mysqlclient/template
index 43fed28d4f0..079666a6dab 100644
--- a/srcpkgs/python-mysqlclient/template
+++ b/srcpkgs/python-mysqlclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mysqlclient'
 pkgname=python-mysqlclient
 version=1.3.14
-revision=2
+revision=3
 wrksrc="mysqlclient-${version}"
 build_style=python-module
 pycompile_module="MySQLdb _mysql_exceptions.py"

From 8b80cedc0b4331f2c1827c959c67be32d904a6b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 321/872] python3-nacl: rebuild for Python 3.8.

---
 srcpkgs/python3-nacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-nacl/template b/srcpkgs/python3-nacl/template
index 5dd6a71ad6a..b59ea0196ac 100644
--- a/srcpkgs/python3-nacl/template
+++ b/srcpkgs/python3-nacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-nacl'
 pkgname=python3-nacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python3-module
 pycompile_module="nacl"

From 4b93d8f922559d3f9f9693969307cdb0dedd22c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 322/872] python-namedlist: rebuild for Python 3.8.

---
 srcpkgs/python-namedlist/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-namedlist/template b/srcpkgs/python-namedlist/template
index 4c6e6f1f3d5..75626b9f6d5 100644
--- a/srcpkgs/python-namedlist/template
+++ b/srcpkgs/python-namedlist/template
@@ -1,7 +1,7 @@
 # Template file for 'python-namedlist'
 pkgname=python-namedlist
 version=1.7
-revision=5
+revision=6
 archs=noarch
 wrksrc="namedlist-${version}"
 build_style=python-module

From 643225c4205051b03e6b58dd88dd0fe79a960880 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 323/872] python-natsort: rebuild for Python 3.8.

---
 srcpkgs/python-natsort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-natsort/template b/srcpkgs/python-natsort/template
index 754ac50c419..7101e297aad 100644
--- a/srcpkgs/python-natsort/template
+++ b/srcpkgs/python-natsort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-natsort'
 pkgname=python-natsort
 version=6.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="natsort-${version}"
 build_style=python-module

From 1b4401089b676f8d76d5cbdf86f7cff95a90063f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 324/872] python-nbxmpp: rebuild for Python 3.8.

---
 srcpkgs/python-nbxmpp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nbxmpp/template b/srcpkgs/python-nbxmpp/template
index 4952ee1e102..8c39a93bca7 100644
--- a/srcpkgs/python-nbxmpp/template
+++ b/srcpkgs/python-nbxmpp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nbxmpp'
 pkgname=python-nbxmpp
 version=0.6.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 1ee192bdc19afbca9bbbc456945aaed8e882dc3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 325/872] python-ndg_httpsclient: rebuild for Python 3.8.

---
 srcpkgs/python-ndg_httpsclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ndg_httpsclient/template b/srcpkgs/python-ndg_httpsclient/template
index 908d7137391..54b653f68a9 100644
--- a/srcpkgs/python-ndg_httpsclient/template
+++ b/srcpkgs/python-ndg_httpsclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ndg_httpsclient'
 pkgname=python-ndg_httpsclient
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ndg_httpsclient-${version}"
 build_style=python-module

From 37b5c7920c617c4f55d5abe58df690c621598a93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 326/872] python3-neovim: rebuild for Python 3.8.

---
 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 44068f17b66..2730cd1b92b 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.3.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="pynvim-${version}"
 build_style="python3-module"

From 8136ec791e98badf101712f4f44830a6721d4849 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 327/872] python-netaddr: rebuild for Python 3.8.

---
 srcpkgs/python-netaddr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netaddr/template b/srcpkgs/python-netaddr/template
index 851095a3c7c..20cc1c93134 100644
--- a/srcpkgs/python-netaddr/template
+++ b/srcpkgs/python-netaddr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netaddr'
 pkgname=python-netaddr
 version=0.7.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="netaddr-${version}"
 build_style=python-module

From ebe247f557b410a62febae438785f8f011964023 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 328/872] python-netifaces: rebuild for Python 3.8.

---
 srcpkgs/python-netifaces/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netifaces/template b/srcpkgs/python-netifaces/template
index b8d6e505879..760f657aaba 100644
--- a/srcpkgs/python-netifaces/template
+++ b/srcpkgs/python-netifaces/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netifaces'
 pkgname=python-netifaces
 version=0.10.9
-revision=1
+revision=2
 wrksrc="netifaces-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 07d0e05094764c4ef127de2a4d489537d8ab5708 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 329/872] python3-networkx: rebuild for Python 3.8.

---
 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 eae29038d94..84acd3e929c 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.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="networkx-${version}"
 build_style=python3-module

From 8a3aeb59a75fbf1b7f0394b94c325ef8827b6b5d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 330/872] python-nose: rebuild for Python 3.8.

---
 srcpkgs/python-nose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose/template b/srcpkgs/python-nose/template
index c9fbe9d28d3..f2cd7fe5c3f 100644
--- a/srcpkgs/python-nose/template
+++ b/srcpkgs/python-nose/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose'
 pkgname=python-nose
 version=1.3.7
-revision=3
+revision=4
 archs=noarch
 wrksrc="nose-${version}"
 build_style=python-module

From f86abdbaaaa9e7e8236c4d39cd7e46a733425805 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 331/872] python-nose2: rebuild for Python 3.8.

---
 srcpkgs/python-nose2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose2/template b/srcpkgs/python-nose2/template
index a9ddf5969a1..058abbd4253 100644
--- a/srcpkgs/python-nose2/template
+++ b/srcpkgs/python-nose2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose2'
 pkgname=python-nose2
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 18b92c10ef3291636c1e7e28d721c5e994bf6302 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 332/872] python-npyscreen: rebuild for Python 3.8.

---
 srcpkgs/python-npyscreen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-npyscreen/template b/srcpkgs/python-npyscreen/template
index 0457fa1aaed..2223850f22e 100644
--- a/srcpkgs/python-npyscreen/template
+++ b/srcpkgs/python-npyscreen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-npyscreen'
 pkgname=python-npyscreen
 version=4.10.5.1
-revision=1
+revision=2
 wrksrc="npyscreen-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 9ea98fac2c37960db9a7b76cea2be115e8a2bed7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 333/872] python-ntplib: rebuild for Python 3.8.

---
 srcpkgs/python-ntplib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ntplib/template b/srcpkgs/python-ntplib/template
index 81bac24971e..0582fb326c1 100644
--- a/srcpkgs/python-ntplib/template
+++ b/srcpkgs/python-ntplib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ntplib'
 pkgname=python-ntplib
 version=0.3.3
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 wrksrc="ntplib-${version}"

From 42e7c3606ad17794721afef48ff01de438abbfde Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 334/872] python-numexpr: rebuild for Python 3.8.

---
 srcpkgs/python-numexpr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numexpr/template b/srcpkgs/python-numexpr/template
index 1db40092411..baf91175a33 100644
--- a/srcpkgs/python-numexpr/template
+++ b/srcpkgs/python-numexpr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numexpr'
 pkgname=python-numexpr
 version=2.7.0
-revision=1
+revision=2
 wrksrc="numexpr-${version}"
 build_style=python-module
 pycompile_module="numexpr"

From 30d9e4a8b4a096dfdf5ebfa58ffcadefb1dc1208 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 335/872] python3-numpy: rebuild for Python 3.8.

---
 srcpkgs/python3-numpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-numpy/template b/srcpkgs/python3-numpy/template
index c4c1936cc0d..f5e8ce2cc32 100644
--- a/srcpkgs/python3-numpy/template
+++ b/srcpkgs/python3-numpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-numpy'
 pkgname=python3-numpy
 version=1.17.2
-revision=1
+revision=2
 wrksrc="numpy-${version}"
 build_style=python3-module
 pycompile_module="numpy"

From 0172497dfdbc4c61b890a5cb33fdf7a4c4f8d99a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 336/872] python-numpy-stl: rebuild for Python 3.8.

---
 srcpkgs/python-numpy-stl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numpy-stl/template b/srcpkgs/python-numpy-stl/template
index 3eed838e4f6..cce1a8ead1f 100644
--- a/srcpkgs/python-numpy-stl/template
+++ b/srcpkgs/python-numpy-stl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numpy-stl'
 pkgname=python-numpy-stl
 version=2.10.1
-revision=1
+revision=2
 wrksrc="numpy-stl-v${version}"
 build_style=python-module
 pycompile_module="stl"

From f24b29a48d74aeaddb7b697a5daffdddbd861096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 337/872] python-oauth2client: rebuild for Python 3.8.

---
 srcpkgs/python-oauth2client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauth2client/template b/srcpkgs/python-oauth2client/template
index fd135e4e98f..2398adba276 100644
--- a/srcpkgs/python-oauth2client/template
+++ b/srcpkgs/python-oauth2client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauth2client'
 pkgname=python-oauth2client
 version=4.1.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 4c0ff2a063a36adf86c97b9d4c835ca20b5edfc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 338/872] python-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauthlib/template b/srcpkgs/python-oauthlib/template
index 5bbaa7df29b..036f1b31c92 100644
--- a/srcpkgs/python-oauthlib/template
+++ b/srcpkgs/python-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauthlib'
 pkgname=python-oauthlib
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 661bc27cfe08965221daa2747362d72e4fc27178 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 339/872] python-olefile: rebuild for Python 3.8.

---
 srcpkgs/python-olefile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-olefile/template b/srcpkgs/python-olefile/template
index 4346cfcf667..803d7b67cd8 100644
--- a/srcpkgs/python-olefile/template
+++ b/srcpkgs/python-olefile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-olefile'
 pkgname=python-olefile
 version=0.46
-revision=1
+revision=2
 archs=noarch
 wrksrc="olefile-${version}"
 build_style=python-module

From 81ad48cc99baa98fff2bb93d2c9ddbfe5bd36422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 340/872] python3-oletools: rebuild for Python 3.8.

---
 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 af9a91ff273..a4fda46427b 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.54.2b
-revision=1
+revision=2
 archs=noarch
 wrksrc="oletools-${version}"
 build_style=python3-module

From 0ae1454dacdb40d36d6c46872241d8b7f943ac15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 341/872] openrazer-meta: rebuild for Python 3.8.

---
 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 d4bd24878b2..112cb9e900b 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=1
+revision=2
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 827b1a86d790e29df3f5448f95b7d7583439ebc7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 342/872] python-openssl: rebuild for Python 3.8.

---
 srcpkgs/python-openssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-openssl/template b/srcpkgs/python-openssl/template
index 94bccaa166f..8aabda074fa 100644
--- a/srcpkgs/python-openssl/template
+++ b/srcpkgs/python-openssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-openssl'
 pkgname=python-openssl
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyOpenSSL-${version}"
 build_style=python-module

From 0b35d1d0b8e9ec0f17cb71edb12538b78cf15fa9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 343/872] python3-orocos-kdl: rebuild for Python 3.8.

---
 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 df3e27d5e7b..85b573b2fa4 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=1
+revision=2
 wrksrc=orocos_kinematics_dynamics-${version}
 build_wrksrc=python_orocos_kdl
 build_style=cmake

From 1f599cbc677804bd62252474063a3f44bab1963f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 344/872] python3-owm: rebuild for Python 3.8.

---
 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 d51e01831e6..acdb960ab45 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=1
+revision=2
 wrksrc="pyowm-${version}"
 build_style=python3-module
 pycompile_module="pyowm"

From 04d5ca1141107a7e08a15eccec26eae0cef6ddfc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 345/872] python-packaging: rebuild for Python 3.8.

---
 srcpkgs/python-packaging/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-packaging/template b/srcpkgs/python-packaging/template
index 505631bb29c..06042d12b90 100644
--- a/srcpkgs/python-packaging/template
+++ b/srcpkgs/python-packaging/template
@@ -1,7 +1,7 @@
 # Template file for 'python-packaging'
 pkgname=python-packaging
 version=19.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="packaging-${version}"
 build_style=python-module

From 3d4f635d1909bcc10be550a6ba92c93bab657d24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 346/872] python-pam: rebuild for Python 3.8.

---
 srcpkgs/python-pam/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pam/template b/srcpkgs/python-pam/template
index e696a05ae7f..28c22cfd6ea 100644
--- a/srcpkgs/python-pam/template
+++ b/srcpkgs/python-pam/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pam'
 pkgname=python-pam
 version=1.8.4
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="pam.py"

From 7906adb846a053b93372b360401c778862703de5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 347/872] python3-pandas: rebuild for Python 3.8.

---
 srcpkgs/python3-pandas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pandas/template b/srcpkgs/python3-pandas/template
index ad282b4d5d4..10f9d5a77d9 100644
--- a/srcpkgs/python3-pandas/template
+++ b/srcpkgs/python3-pandas/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pandas'
 pkgname=python3-pandas
 version=0.25.1
-revision=1
+revision=2
 wrksrc="pandas-${version}"
 build_style=python3-module
 pycompile_module="pandas"

From 5f63764964faf4b0d244098f5f64ba1225e14c5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 348/872] python-pandocfilters: rebuild for Python 3.8.

---
 srcpkgs/python-pandocfilters/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pandocfilters/template b/srcpkgs/python-pandocfilters/template
index a7a3d442052..8650d20256f 100644
--- a/srcpkgs/python-pandocfilters/template
+++ b/srcpkgs/python-pandocfilters/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pandocfilters'
 pkgname=python-pandocfilters
 version=1.4.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="pandocfilters-${version}"
 build_style=python-module

From cedefda1104de9c58b20c6b7e1d8a0f4d5385b24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 349/872] python-paramiko: rebuild for Python 3.8.

---
 srcpkgs/python-paramiko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-paramiko/template b/srcpkgs/python-paramiko/template
index c512ceb951f..d6f75508a03 100644
--- a/srcpkgs/python-paramiko/template
+++ b/srcpkgs/python-paramiko/template
@@ -1,7 +1,7 @@
 # Template file for 'python-paramiko'
 pkgname=python-paramiko
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 6c5cdbb0603a5742137ad2399e1f282d7135ecbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 350/872] python-parse: rebuild for Python 3.8.

---
 srcpkgs/python-parse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parse/template b/srcpkgs/python-parse/template
index 298d0b65e78..ded581b4420 100644
--- a/srcpkgs/python-parse/template
+++ b/srcpkgs/python-parse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parse'
 pkgname=python-parse
 version=1.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="parse-${version}"
 build_style=python-module

From 06c32d13c6ecc8f5c59fd3d28c856cddb7e55b69 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 351/872] python3-parsedatetime: rebuild for Python 3.8.

---
 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 d3ac21d7d34..34e9ba0f416 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="parsedatetime-${version}"
 build_style=python3-module

From 149092afd6b238ec9977aa2ba8d8f244d5357e67 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 352/872] python-parsing: rebuild for Python 3.8.

---
 srcpkgs/python-parsing/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parsing/template b/srcpkgs/python-parsing/template
index 0cc744eaf79..bd6cf2c2238 100644
--- a/srcpkgs/python-parsing/template
+++ b/srcpkgs/python-parsing/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parsing'
 pkgname=python-parsing
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyparsing-pyparsing_${version}"
 build_style=python-module

From c302574bea31ba81d3f2e4d6c1b8b8212592985d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 353/872] python-parso: rebuild for Python 3.8.

---
 srcpkgs/python-parso/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parso/template b/srcpkgs/python-parso/template
index 20e5fe306c0..1959b42622a 100644
--- a/srcpkgs/python-parso/template
+++ b/srcpkgs/python-parso/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parso'
 pkgname=python-parso
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="parso-${version}"
 build_style=python-module

From 6b9c95f942435b16d67021b0ce8f182c24bb943f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 354/872] python-passlib: rebuild for Python 3.8.

---
 srcpkgs/python-passlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-passlib/template b/srcpkgs/python-passlib/template
index 3af12ce7b1b..f46a3e92642 100644
--- a/srcpkgs/python-passlib/template
+++ b/srcpkgs/python-passlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-passlib'
 pkgname=python-passlib
 version=1.7.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="passlib-${version}"
 build_style=python-module

From 49600da0619f7152e3ea828c366d9a4680ebac40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 355/872] python-pathlib2: rebuild for Python 3.8.

---
 srcpkgs/python-pathlib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathlib2/template b/srcpkgs/python-pathlib2/template
index bb7bec778f5..fa600b78fbe 100644
--- a/srcpkgs/python-pathlib2/template
+++ b/srcpkgs/python-pathlib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathlib2'
 pkgname=python-pathlib2
 version=2.3.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pathlib2-${version}"
 build_style=python-module

From a0a108aec87134d5b6d2e03e731f48739e1226c0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 356/872] python-pathspec: rebuild for Python 3.8.

---
 srcpkgs/python-pathspec/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathspec/template b/srcpkgs/python-pathspec/template
index 7c5fe04097a..2fa8fa1a811 100644
--- a/srcpkgs/python-pathspec/template
+++ b/srcpkgs/python-pathspec/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathspec'
 pkgname=python-pathspec
 version=0.5.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathspec-${version}"
 build_style=python-module

From c66de315dc6f359ddb581056e8ef350e92acb135 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 357/872] python-pathtools: rebuild for Python 3.8.

---
 srcpkgs/python-pathtools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathtools/template b/srcpkgs/python-pathtools/template
index 218e6ed2f57..47dc6ef6a71 100644
--- a/srcpkgs/python-pathtools/template
+++ b/srcpkgs/python-pathtools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathtools'
 pkgname=python-pathtools
 version=0.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathtools-${version}"
 build_style=python-module

From d3d8ba877ce3e383a472c68a51b4eb6138da7d25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 358/872] python-pbkdf2: rebuild for Python 3.8.

---
 srcpkgs/python-pbkdf2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pbkdf2/template b/srcpkgs/python-pbkdf2/template
index edc50f824c2..956d0b4cad9 100644
--- a/srcpkgs/python-pbkdf2/template
+++ b/srcpkgs/python-pbkdf2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pbkdf2'
 pkgname=python-pbkdf2
 version=1.3
-revision=3
+revision=4
 archs=noarch
 wrksrc="pbkdf2-${version}"
 build_style=python-module

From 92b150f4aee95d71074c2bc7e253e089372033b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 359/872] python-pbr: rebuild for Python 3.8.

---
 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 7ab0b39539f..9c7216056fe 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.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pbr-${version}"
 build_style=python-module

From a5f7f198ba9557855d1662cf7b3d806286d735b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 360/872] python3-pcodedmp: rebuild for Python 3.8.

---
 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 efe8cc83ee7..eb52c809fae 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=1
+revision=2
 archs=noarch
 wrksrc="pcodedmp-${version}"
 build_style=python3-module

From c6f7d3cab5a62a3302eedc82e3ce1b5af007e967 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 361/872] python-pdfrw: rebuild for Python 3.8.

---
 srcpkgs/python-pdfrw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pdfrw/template b/srcpkgs/python-pdfrw/template
index ddb43b928fc..ef7db98e491 100644
--- a/srcpkgs/python-pdfrw/template
+++ b/srcpkgs/python-pdfrw/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pdfrw'
 pkgname=python-pdfrw
 version=0.4
-revision=2
+revision=3
 archs=noarch
 replaces="python-pdfrw-example<${version}_${revision}"
 wrksrc="${pkgname/python-//}-${version}"

From 8f02a9d6b13212de51e3921f641914d153244a1d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 362/872] python-peewee: rebuild for Python 3.8.

---
 srcpkgs/python-peewee/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-peewee/template b/srcpkgs/python-peewee/template
index 9b07ed413b9..de0068a330e 100644
--- a/srcpkgs/python-peewee/template
+++ b/srcpkgs/python-peewee/template
@@ -1,7 +1,7 @@
 # Template file for 'python-peewee'
 pkgname=python-peewee
 version=3.11.2
-revision=1
+revision=2
 wrksrc="peewee-${version}"
 build_style=python-module
 pycompile_module="playhouse peewee.py pwiz.py"

From 8c541b3666a838b55909e5f7ca46b7318c1e315e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 363/872] python3-pefile: rebuild for Python 3.8.

---
 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 305d64e0758..8791f06640b 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=1
+revision=2
 archs=noarch
 wrksrc="pefile-${version}"
 build_style=python3-module

From edc8e4f2bb803865815c3d0bd64a2e50bfdf5da8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 364/872] python3-pem: rebuild for Python 3.8.

---
 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 3517c80b66a..15417666597 100644
--- a/srcpkgs/python3-pem/template
+++ b/srcpkgs/python3-pem/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pem'
 pkgname=python3-pem
 version=19.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pem-${version}"
 build_style=python3-module

From 164760eb3d8d28400ea4be2967d7678696839866 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 365/872] python-pex: rebuild for Python 3.8.

---
 srcpkgs/python-pex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pex/template b/srcpkgs/python-pex/template
index 4beafcf7b4b..e36ccda8180 100644
--- a/srcpkgs/python-pex/template
+++ b/srcpkgs/python-pex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pex'
 pkgname=python-pex
 version=1.6.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="pex-${version}"
 build_style=python-module

From b4043ec822756e0711d025e31db342f81853fc0b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 366/872] python-pexpect: rebuild for Python 3.8.

---
 srcpkgs/python-pexpect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pexpect/template b/srcpkgs/python-pexpect/template
index 8d03a1945f3..03102c3d294 100644
--- a/srcpkgs/python-pexpect/template
+++ b/srcpkgs/python-pexpect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pexpect'
 pkgname=python-pexpect
 version=4.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pexpect-${version}"
 build_style=python-module

From 50f6291ca752dc88af34a7df4987b99f11369c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 367/872] python-pgmigrate: rebuild for Python 3.8.

---
 srcpkgs/python-pgmigrate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgmigrate/template b/srcpkgs/python-pgmigrate/template
index b441ba2a89f..767b6cf8921 100644
--- a/srcpkgs/python-pgmigrate/template
+++ b/srcpkgs/python-pgmigrate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgmigrate'
 pkgname=python-pgmigrate
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgmigrate-${version}"
 build_style=python-module

From 19bc6f8c731b45f52c358d34830221558e54f36f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 368/872] python-pgpdump: rebuild for Python 3.8.

---
 srcpkgs/python-pgpdump/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgpdump/template b/srcpkgs/python-pgpdump/template
index 58be9116feb..a28b6e209e7 100644
--- a/srcpkgs/python-pgpdump/template
+++ b/srcpkgs/python-pgpdump/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgpdump'
 pkgname=python-pgpdump
 version=1.5
-revision=5
+revision=6
 archs=noarch
 build_style=python-module
 pycompile_module="pgpdump"

From d3bc17a7484bd198f2f0e5d449b183920ca6ef9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 369/872] python3-pgspecial: rebuild for Python 3.8.

---
 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 dc52d12c214..c4f67a707f1 100644
--- a/srcpkgs/python3-pgspecial/template
+++ b/srcpkgs/python3-pgspecial/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pgspecial'
 pkgname=python3-pgspecial
 version=1.11.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgspecial-${version}"
 build_style=python3-module

From 630e0f8ca443d21d7a84c4cb44ab119db356b6fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 370/872] python3-pgzero: rebuild for Python 3.8.

---
 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 9653505acda..8b8f477112d 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgzero-${version}"
 build_style=python3-module

From b39841f2f8458d2865aac460282b318538b727c4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 371/872] python3-phonenumbers: rebuild for Python 3.8.

---
 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 ebf33f226e4..7b4e889fd8d 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.10.20
-revision=1
+revision=2
 archs=noarch
 wrksrc="phonenumbers-${version}"
 build_style=python3-module

From c4dbacfe25a16b0526190c66a838b7e407125426 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 372/872] python-picamera: rebuild for Python 3.8.

---
 srcpkgs/python-picamera/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-picamera/template b/srcpkgs/python-picamera/template
index 92bc2a57a6d..e3c9a17bfdc 100644
--- a/srcpkgs/python-picamera/template
+++ b/srcpkgs/python-picamera/template
@@ -1,7 +1,7 @@
 # Template file for 'python-picamera'
 pkgname=python-picamera
 version=1.13
-revision=1
+revision=2
 archs=noarch
 wrksrc="picamera-${version}"
 build_style=python-module

From 29473c016c6cd2d720c417714e89e9eaba3b321e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 373/872] python-pickleshare: rebuild for Python 3.8.

---
 srcpkgs/python-pickleshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pickleshare/template b/srcpkgs/python-pickleshare/template
index 2485c95230a..c1d86826c15 100644
--- a/srcpkgs/python-pickleshare/template
+++ b/srcpkgs/python-pickleshare/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pickleshare'
 pkgname=python-pickleshare
 version=0.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pickleshare-${version}"
 build_style=python-module

From 7c358da397b1273369bbeb98240a250157d4fe9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 374/872] python3-pillow-simd: rebuild for Python 3.8.

---
 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 7bab9fb20c3..4c756b07c79 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=5.3.0.post1
-revision=1
+revision=2
 archs="x86_64*"
 wrksrc="pillow-simd-${version}"
 build_style=python3-module

From 06b38c4e7a2c4a5ec22c8a9c530dbe56d846260f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 375/872] python-pip: rebuild for Python 3.8.

---
 srcpkgs/python-pip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pip/template b/srcpkgs/python-pip/template
index 75f11561816..9d4607095c7 100644
--- a/srcpkgs/python-pip/template
+++ b/srcpkgs/python-pip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pip'
 pkgname=python-pip
 version=19.2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pip-${version}"
 build_style=python-module

From 16067b9358434ea80b4b86a4dcd5a60f6b9e575b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 376/872] python-pipenv: rebuild for Python 3.8.

---
 srcpkgs/python-pipenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pipenv/template b/srcpkgs/python-pipenv/template
index e7ce3922875..210a0813673 100644
--- a/srcpkgs/python-pipenv/template
+++ b/srcpkgs/python-pipenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pipenv'
 pkgname=python-pipenv
 version=2018.11.26
-revision=3
+revision=4
 archs=noarch
 wrksrc="pipenv-${version}"
 build_style=python-module

From cb995aed1307a20f4ffe7746dbe54e4099ce9670 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 377/872] python-pkgconfig: rebuild for Python 3.8.

---
 srcpkgs/python-pkgconfig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pkgconfig/template b/srcpkgs/python-pkgconfig/template
index 13e1dcd3bf7..e9e5480907d 100644
--- a/srcpkgs/python-pkgconfig/template
+++ b/srcpkgs/python-pkgconfig/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pkgconfig'
 pkgname=python-pkgconfig
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pkgconfig-${version}"
 build_style=python-module

From f284340f35211b5c0879b7a5338c325e6cfe62da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 378/872] python-plotly: rebuild for Python 3.8.

---
 srcpkgs/python-plotly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-plotly/template b/srcpkgs/python-plotly/template
index fbbb3a3a520..1593b108f7a 100644
--- a/srcpkgs/python-plotly/template
+++ b/srcpkgs/python-plotly/template
@@ -1,7 +1,7 @@
 # Template file for 'python-plotly'
 pkgname=python-plotly
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 #wrksrc="${pkgname#*-}-${version}"
 wrksrc="plotly.py-${version}"

From ee0d515dc265db17d6c90029fc5ffad4fbfb17ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 379/872] python3-pluggy: rebuild for Python 3.8.

---
 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 37ebc2dae40..6f97cb25f21 100644
--- a/srcpkgs/python3-pluggy/template
+++ b/srcpkgs/python3-pluggy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pluggy'
 pkgname=python3-pluggy
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python3-module

From 60f109b4924812d3cbb6107b8d070a2fdb642962 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 380/872] python-ply: rebuild for Python 3.8.

---
 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 034fbcfa531..04a3defa6aa 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=1
+revision=2
 archs=noarch
 wrksrc="ply-${version}"
 build_style=python-module

From 95b0bc668a60a91dbbd68944bdc712d271e93723 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 381/872] python3-pmw: rebuild for Python 3.8.

---
 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 646e7129443..289b5ef1d0d 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=1
+revision=2
 archs=noarch
 short_desc="Python 3 Tkinter widget toolkit"
 homepage="http://pmw.sourceforge.net/"

From 760b2aa66f385f882c6da4545bc93c906a387d73 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 382/872] python-podcastparser: rebuild for Python 3.8.

---
 srcpkgs/python-podcastparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-podcastparser/template b/srcpkgs/python-podcastparser/template
index e4847d3ed65..61702f0d28b 100644
--- a/srcpkgs/python-podcastparser/template
+++ b/srcpkgs/python-podcastparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-podcastparser'
 pkgname=python-podcastparser
 version=0.6.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="podcastparser-${version}"
 build_style=python-module

From e0ad0641945e1dea937fb2ca555a61603e4560b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 383/872] python-polib: rebuild for Python 3.8.

---
 srcpkgs/python-polib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-polib/template b/srcpkgs/python-polib/template
index b0ade05d90d..8b8d4b66c68 100644
--- a/srcpkgs/python-polib/template
+++ b/srcpkgs/python-polib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-polib'
 pkgname=python-polib
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="polib-${version}"
 build_style=python-module

From 0030be5c9ea47539a72b9d5b5131abeac8412e47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 384/872] python-portend: rebuild for Python 3.8.

---
 srcpkgs/python-portend/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python-portend/template b/srcpkgs/python-portend/template
index 216ae413d09..0538f68083f 100644
--- a/srcpkgs/python-portend/template
+++ b/srcpkgs/python-portend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-portend'
 pkgname=python-portend
 version=2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="portend-${version}"
 build_style=python-module
@@ -14,7 +14,7 @@ license="MIT"
 homepage="https://github.com/jaraco/portend"
 changelog="https://github.com/jaraco/portend/blob/master/CHANGES.rst"
 distfiles="https://github.com/jaraco/portend/archive/${version}.tar.gz"
-checksum=61aa1a8fd76d64bd6093e4151a2bfeda177d5083bf2e2bcc92a053bd2104fde3
+checksum=c0740375a19168e117d291e7ed307e985d2c0e2dc732ca97444bc58a28076dfa
 
 pre_build() {
 	sed -i setup.py \

From 86c2211e1837e156275077b9efe1e25572514867 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 385/872] python-prctl: rebuild for Python 3.8.

---
 srcpkgs/python-prctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prctl/template b/srcpkgs/python-prctl/template
index 2b420d655cf..e8bf54b98fd 100644
--- a/srcpkgs/python-prctl/template
+++ b/srcpkgs/python-prctl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prctl'
 pkgname=python-prctl
 version=1.7
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="prctl.py"
 hostmakedepends="python-setuptools python3-setuptools libcap-devel"

From e7c53afc196d066076f9117158bd6a0b7b28bf52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 386/872] python3-precis-i18n: rebuild for Python 3.8.

---
 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 19612bc818b..be7bb0b0b56 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=1
+revision=2
 archs=noarch
 wrksrc="precis_i18n-${version}"
 build_style=python3-module

From fc6a6a6ae9e2454bc6e5aa117ab2f5f747f1c3d2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 387/872] python-pretend: rebuild for Python 3.8.

---
 srcpkgs/python-pretend/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pretend/template b/srcpkgs/python-pretend/template
index 9a647271b57..6d8063fc43a 100644
--- a/srcpkgs/python-pretend/template
+++ b/srcpkgs/python-pretend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pretend'
 pkgname=python-pretend
 version=1.0.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pretend-${version}"
 build_style=python-module

From 990266b8ce207f64d2a8e2f2f2c11473236e4a2d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 388/872] python-progress: rebuild for Python 3.8.

---
 srcpkgs/python-progress/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-progress/template b/srcpkgs/python-progress/template
index 7d3924e3618..0d6bd1db69d 100644
--- a/srcpkgs/python-progress/template
+++ b/srcpkgs/python-progress/template
@@ -1,7 +1,7 @@
 # Template file for 'python-progress'
 pkgname=python-progress
 version=1.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="progress-${version}"
 build_style=python-module

From 1259abece823637c18eaca058493cebdf15842ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 389/872] python-prometheus_client: rebuild for Python 3.8.

---
 srcpkgs/python-prometheus_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prometheus_client/template b/srcpkgs/python-prometheus_client/template
index 46df561f7d4..7b71fbeffc2 100644
--- a/srcpkgs/python-prometheus_client/template
+++ b/srcpkgs/python-prometheus_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prometheus_client'
 pkgname=python-prometheus_client
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="prometheus_client-${version}"
 build_style=python-module

From 67527aa7cf723b45f2c49017717337d56884bf4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 390/872] python-prompt_toolkit1: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit1/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit1/template b/srcpkgs/python-prompt_toolkit1/template
index d117d620ba5..7afe6179f33 100644
--- a/srcpkgs/python-prompt_toolkit1/template
+++ b/srcpkgs/python-prompt_toolkit1/template
@@ -2,7 +2,7 @@
 pkgname=python-prompt_toolkit1
 reverts="2.0.9_1"
 version=1.0.15
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From ad672131c8ab27e3e4dfa04ab7264c23d46f206e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 391/872] python-prompt_toolkit2: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit2/template b/srcpkgs/python-prompt_toolkit2/template
index 0fa71fa06dc..d7f2fd11e14 100644
--- a/srcpkgs/python-prompt_toolkit2/template
+++ b/srcpkgs/python-prompt_toolkit2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prompt_toolkit2'
 pkgname=python-prompt_toolkit2
 version=2.0.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From 2d3dfe28989a26dbea6bd90097a7a4046839373e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 392/872] python-proselint: rebuild for Python 3.8.

---
 srcpkgs/python-proselint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-proselint/template b/srcpkgs/python-proselint/template
index c017c497386..b1da90de474 100644
--- a/srcpkgs/python-proselint/template
+++ b/srcpkgs/python-proselint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-proselint'
 pkgname=python-proselint
 version=0.10.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="proselint-${version}"
 build_style=python-module

From 3dceefa27e529cfd28f51c8b96cec007bd4464e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 393/872] python-protobuf: rebuild for Python 3.8.

---
 srcpkgs/python-protobuf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-protobuf/template b/srcpkgs/python-protobuf/template
index 4b736f1e7af..7dbed97fb76 100644
--- a/srcpkgs/python-protobuf/template
+++ b/srcpkgs/python-protobuf/template
@@ -1,7 +1,7 @@
 # Template file for 'python-protobuf'
 pkgname=python-protobuf
 version=3.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="protobuf-${version}"
 build_style=python-module

From abc13cfff04878580efaf4333ca9548112b11049 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 394/872] python-psutil: rebuild for Python 3.8.

---
 srcpkgs/python-psutil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psutil/template b/srcpkgs/python-psutil/template
index 96cbb3c399f..11353ed2179 100644
--- a/srcpkgs/python-psutil/template
+++ b/srcpkgs/python-psutil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psutil'
 pkgname=python-psutil
 version=5.6.3
-revision=1
+revision=2
 wrksrc="psutil-${version}"
 build_style=python-module
 pycompile_module="psutil"

From 970bcf29dafb825894593f644c2fb7b4f1b86aff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 395/872] python-psycopg2: rebuild for Python 3.8.

---
 srcpkgs/python-psycopg2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psycopg2/template b/srcpkgs/python-psycopg2/template
index f41de2880e6..14b28b8aed1 100644
--- a/srcpkgs/python-psycopg2/template
+++ b/srcpkgs/python-psycopg2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psycopg2'
 pkgname=python-psycopg2
 version=2.8.3
-revision=1
+revision=2
 wrksrc="psycopg2-${version}"
 build_style=python-module
 pycompile_module="psycopg2"

From f987fad321d899f07d159588838ad3f3bfd1eb12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 396/872] python-ptyprocess: rebuild for Python 3.8.

---
 srcpkgs/python-ptyprocess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ptyprocess/template b/srcpkgs/python-ptyprocess/template
index 04c4cf89391..fd2e51fa3ac 100644
--- a/srcpkgs/python-ptyprocess/template
+++ b/srcpkgs/python-ptyprocess/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ptyprocess'
 pkgname=python-ptyprocess
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ptyprocess-${version}"
 build_style=python-module

From 6854ff4b103875e8ed393d695b71afd7a2589626 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 397/872] python3-pulsectl: rebuild for Python 3.8.

---
 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 429dd1abe45..045afdb411b 100644
--- a/srcpkgs/python3-pulsectl/template
+++ b/srcpkgs/python3-pulsectl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pulsectl'
 pkgname=python3-pulsectl
 version=19.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pulsectl-${version}"
 build_style=python3-module

From e8331ef1c889bc2b1756c6ed55a1cc93186445af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 398/872] python-py: rebuild for Python 3.8.

---
 srcpkgs/python-py/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-py/template b/srcpkgs/python-py/template
index 99644bc228a..07a1ae2a21b 100644
--- a/srcpkgs/python-py/template
+++ b/srcpkgs/python-py/template
@@ -1,7 +1,7 @@
 # Template file for 'python-py'
 pkgname=python-py
 version=1.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="py-${version}"
 build_style=python-module

From 1f71c5025d9cb40d86e4245b6a90731b3f25c6fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 399/872] python-pyPEG2: rebuild for Python 3.8.

---
 srcpkgs/python-pyPEG2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyPEG2/template b/srcpkgs/python-pyPEG2/template
index 113948af730..6ba175687f1 100644
--- a/srcpkgs/python-pyPEG2/template
+++ b/srcpkgs/python-pyPEG2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyPEG2'
 pkgname=python-pyPEG2
 version=2.15.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 3f82483327ba7958b0a6f8b67e63abf009c360ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 400/872] python-pyacoustid: rebuild for Python 3.8.

---
 srcpkgs/python-pyacoustid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyacoustid/template b/srcpkgs/python-pyacoustid/template
index 068d3d52649..d5b2d967f4e 100644
--- a/srcpkgs/python-pyacoustid/template
+++ b/srcpkgs/python-pyacoustid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyacoustid'
 pkgname=python-pyacoustid
 version=1.1.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyacoustid-${version}"
 build_style=python-module

From da477a37411d7cf0d00da2dea60d734072705be7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 401/872] python-pyaes: rebuild for Python 3.8.

---
 srcpkgs/python-pyaes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyaes/template b/srcpkgs/python-pyaes/template
index a8c812a9e01..d31766d0481 100644
--- a/srcpkgs/python-pyaes/template
+++ b/srcpkgs/python-pyaes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyaes'
 pkgname=python-pyaes
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyaes-${version}"
 build_style=python-module

From 9e2b6fe7e7b67777d70eb25705c27d4ed6462a3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 402/872] python-pyasn1: rebuild for Python 3.8.

---
 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 510dfa09816..fcddad43633 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyasn1-${version}"
 build_style=python-module

From 712c6a81632d8741a302138a46ffd3b1c8fb079f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 403/872] python-pyasn1-modules: rebuild for Python 3.8.

---
 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 bc19e4940ed..b142819a272 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 989e8e1bc0a51f2fa1a88ec8f99eae20dd3e21ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 404/872] python3-pycares: rebuild for Python 3.8.

---
 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 c52702904b4..ed82808bada 100644
--- a/srcpkgs/python3-pycares/template
+++ b/srcpkgs/python3-pycares/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pycares'
 pkgname=python3-pycares
 version=2.3.0
-revision=2
+revision=3
 wrksrc="pycares-${version}"
 build_style=python3-module
 pycompile_module="pycares"

From 0885c6a30ff0765b465e0e4c84803b48b9090dc5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 405/872] python-pycodestyle: rebuild for Python 3.8.

---
 srcpkgs/python-pycodestyle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycodestyle/template b/srcpkgs/python-pycodestyle/template
index ca20d8e0c97..08bc8c8bec7 100644
--- a/srcpkgs/python-pycodestyle/template
+++ b/srcpkgs/python-pycodestyle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycodestyle'
 pkgname=python-pycodestyle
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycodestyle-${version}"
 build_style=python-module

From 61d0268320bb8306c2b2823a663588c885a01df6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 406/872] python-pycountry: rebuild for Python 3.8.

---
 srcpkgs/python-pycountry/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycountry/template b/srcpkgs/python-pycountry/template
index 88a0025f258..205db6240b7 100644
--- a/srcpkgs/python-pycountry/template
+++ b/srcpkgs/python-pycountry/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycountry'
 pkgname=python-pycountry
 version=18.12.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycountry-${version}"
 build_style=python-module

From e3a689e939cf482e09d50cf25b8f244cbec3dc12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 407/872] python-pycparser: rebuild for Python 3.8.

---
 srcpkgs/python-pycparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycparser/template b/srcpkgs/python-pycparser/template
index a521b3494ab..d2e83aa79b2 100644
--- a/srcpkgs/python-pycparser/template
+++ b/srcpkgs/python-pycparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycparser'
 pkgname=python-pycparser
 version=2.19
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycparser-${version}"
 build_style=python-module

From a86a5e2a75c91a868bf9b10f7ad9d86ca4df85d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 408/872] python-pycryptodome: rebuild for Python 3.8.

---
 srcpkgs/python-pycryptodome/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycryptodome/template b/srcpkgs/python-pycryptodome/template
index f01b5731c45..a4368d61b39 100644
--- a/srcpkgs/python-pycryptodome/template
+++ b/srcpkgs/python-pycryptodome/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycryptodome'
 pkgname=python-pycryptodome
 version=3.9.0
-revision=1
+revision=2
 wrksrc="pycryptodome-${version}"
 build_style=python-module
 pycompile_module="Crypto"

From 0cd2d63524942e2cfe5220436720dab24ef75308 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 409/872] python-pyelftools: rebuild for Python 3.8.

---
 srcpkgs/python-pyelftools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyelftools/template b/srcpkgs/python-pyelftools/template
index a6e9e9b644e..193650442fc 100644
--- a/srcpkgs/python-pyelftools/template
+++ b/srcpkgs/python-pyelftools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyelftools'
 pkgname=python-pyelftools
 version=0.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyelftools-${version}"
 build_style=python-module

From 61ae993767f544e608a601e6727e58b8c73400fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 410/872] python3-pyfiglet: rebuild for Python 3.8.

---
 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 d00b4fda62a..a4a67b12d42 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=1
+revision=2
 archs=noarch
 wrksrc="pyfiglet-${version}"
 build_style="python3-module"

From 7f5bd3a27f56badc9d95d3b2b7a684604262af1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 411/872] python-pyflakes: rebuild for Python 3.8.

---
 srcpkgs/python-pyflakes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyflakes/template b/srcpkgs/python-pyflakes/template
index 86d477c47f2..19229ebb3a4 100644
--- a/srcpkgs/python-pyflakes/template
+++ b/srcpkgs/python-pyflakes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyflakes'
 pkgname=python-pyflakes
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyflakes-${version}"
 build_style=python-module

From a811c56d34b1f53ac8aeca03f5247410137fe8d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 412/872] python-pygame: rebuild for Python 3.8.

---
 srcpkgs/python-pygame/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pygame/template b/srcpkgs/python-pygame/template
index a510333df6e..a900d62dbe3 100644
--- a/srcpkgs/python-pygame/template
+++ b/srcpkgs/python-pygame/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pygame'
 pkgname=python-pygame
 version=1.9.4
-revision=2
+revision=3
 wrksrc="pygame-${version}"
 build_style=python-module
 pycompile_module="pygame"

From e62822b2e5fa56868e80f10a019c7a0d66abbcbd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 413/872] python-pyglet: rebuild for Python 3.8.

---
 srcpkgs/python-pyglet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyglet/template b/srcpkgs/python-pyglet/template
index f8315bdf616..ee6ed16064c 100644
--- a/srcpkgs/python-pyglet/template
+++ b/srcpkgs/python-pyglet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyglet'
 pkgname=python-pyglet
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyglet-${version}"
 build_style=python-module

From 1f0bf2cea3a10c9982132fbe81c5ebd884defa35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 414/872] python3-pykeepass: rebuild for Python 3.8.

---
 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 c0e0fd4db41..135da6fea65 100644
--- a/srcpkgs/python3-pykeepass/template
+++ b/srcpkgs/python3-pykeepass/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pykeepass'
 pkgname=python3-pykeepass
 version=3.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="pykeepass-${version}"
 build_style=python3-module

From f2d7f9a6199d6780975ad9efb639642e96acc8c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 415/872] python3-pykwalify: rebuild for Python 3.8.

---
 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 27bc0c37355..b3727aba651 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pykwalify-${version}"
 build_style=python3-module

From cb348b8cc013bee10cb1adcdd5b9dac8e8f37a83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 416/872] python3-pylast: rebuild for Python 3.8.

---
 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 187b51943a8..60184348d80 100644
--- a/srcpkgs/python3-pylast/template
+++ b/srcpkgs/python3-pylast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylast'
 pkgname=python3-pylast
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylast-${version}"
 build_style=python3-module

From 6629ec0088134c22cfb115f29fd4a90a9b38e7a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 417/872] python3-pylibgen: rebuild for Python 3.8.

---
 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 641bf649c17..540ccb32790 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylibgen-${version}"
 build_style=python3-module

From 953751fa6deeafefea78df4f5ec27ee5c5c9902d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 418/872] python3-pylint: rebuild for Python 3.8.

---
 srcpkgs/python3-pylint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pylint/template b/srcpkgs/python3-pylint/template
index 6c8800069f0..315dbffb3fc 100644
--- a/srcpkgs/python3-pylint/template
+++ b/srcpkgs/python3-pylint/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylint'
 pkgname=python3-pylint
 version=2.3.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="pylint-${version}"
 build_style=python3-module

From 96bc4e17e1f144c3528e0ec3b455d501c2c3efdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 419/872] python-pynacl: rebuild for Python 3.8.

---
 srcpkgs/python-pynacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pynacl/template b/srcpkgs/python-pynacl/template
index 6ead91820b1..7a7fe246821 100644
--- a/srcpkgs/python-pynacl/template
+++ b/srcpkgs/python-pynacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pynacl'
 pkgname=python-pynacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python-module
 pycompile_module="nacl"

From ec1da9dfd353e059b23780a676ef1561f56f9b2e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 420/872] python-pyotp: rebuild for Python 3.8.

---
 srcpkgs/python-pyotp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyotp/template b/srcpkgs/python-pyotp/template
index 54714ee2ebb..b70bd73d4aa 100644
--- a/srcpkgs/python-pyotp/template
+++ b/srcpkgs/python-pyotp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyotp'
 pkgname=python-pyotp
 version=2.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyotp-${version}"
 build_style=python-module

From 3c83515599af94f7483a3e165f03547f9daa2835 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 421/872] python-pyperclip: rebuild for Python 3.8.

---
 srcpkgs/python-pyperclip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyperclip/template b/srcpkgs/python-pyperclip/template
index 512dc8d3dfb..b173f1479a5 100644
--- a/srcpkgs/python-pyperclip/template
+++ b/srcpkgs/python-pyperclip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyperclip'
 pkgname=python-pyperclip
 version=1.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=pyperclip-${version}
 build_style=python-module

From 6d17f7510d6ce4ec430e8bf72567fecdbd521681 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 422/872] python-pyqtgraph: rebuild for Python 3.8.

---
 srcpkgs/python-pyqtgraph/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyqtgraph/template b/srcpkgs/python-pyqtgraph/template
index f90e2b15319..1bea9c2ffdf 100644
--- a/srcpkgs/python-pyqtgraph/template
+++ b/srcpkgs/python-pyqtgraph/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyqtgraph'
 pkgname=python-pyqtgraph
 version=0.10.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${pkgname#*-}-${version}"
 build_style=python-module

From fff21c3dd38242e2992b276e00f6970f96a34293 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 423/872] python-pyrfc3339: rebuild for Python 3.8.

---
 srcpkgs/python-pyrfc3339/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyrfc3339/template b/srcpkgs/python-pyrfc3339/template
index 618e46d1c4b..cd81c4d0624 100644
--- a/srcpkgs/python-pyrfc3339/template
+++ b/srcpkgs/python-pyrfc3339/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyrfc3339'
 pkgname=python-pyrfc3339
 version=1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="pyrfc3339"

From bdfc6ef4d47bd373ff649510c96f640b48da738a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 424/872] python-pyscss: rebuild for Python 3.8.

---
 srcpkgs/python-pyscss/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyscss/template b/srcpkgs/python-pyscss/template
index 1f7d8b7d8cd..1a8e9c44d7d 100644
--- a/srcpkgs/python-pyscss/template
+++ b/srcpkgs/python-pyscss/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyscss'
 pkgname=python-pyscss
 version=1.3.5
-revision=6
+revision=7
 wrksrc="pyScss-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pcre-devel"

From 6bdfad32f6894df0a7f3eb185662fa32228408ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 425/872] python3-pysdl2: rebuild for Python 3.8.

---
 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 d59ea7d7fa2..3efdca5b667 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=1
+revision=2
 archs=noarch
 wrksrc="py-sdl2-rel_${version//./_}"
 build_style=python3-module

From 67dab081767478a600fbc44d5333dc2746a683ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 426/872] python-pyserial: rebuild for Python 3.8.

---
 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 8808e76d206..354be493b16 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=2
+revision=3
 archs=noarch
 wrksrc="pyserial-${version}"
 build_style=python-module

From a6914f6aa35af001fd954260658bed6e1e5df2bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 427/872] python3-pyside2: rebuild for Python 3.8.

---
 srcpkgs/python3-pyside2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pyside2/template b/srcpkgs/python3-pyside2/template
index a5d60b17568..1da3400f239 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.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From deee942f64ef5e0e70f6a45a7f9e3a2593d53add Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 428/872] python3-pysigset: rebuild for Python 3.8.

---
 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 8de87145a09..50d9162ea70 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.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysigset-${version}"
 build_style=python3-module

From 913752d5b84f0054c829fc060939c366bf5b28cb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 429/872] python-pysocks: rebuild for Python 3.8.

---
 srcpkgs/python-pysocks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysocks/template b/srcpkgs/python-pysocks/template
index 68a27819e3d..d9b216aeab8 100644
--- a/srcpkgs/python-pysocks/template
+++ b/srcpkgs/python-pysocks/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysocks'
 pkgname=python-pysocks
 version=1.6.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="PySocks-${version}"
 build_style=python-module

From e256b35c573b66ccaaffbf92ee92ecad250db3c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 430/872] python3-pysol_cards: rebuild for Python 3.8.

---
 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 e03d92fe077..a37429754a2 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.8.6
-revision=1
+revision=2
 wrksrc="pysol_cards-${version}"
 build_style=python3-module
 pycompile_module="pysol_cards"

From d29dab0ddee296649a1f4ace5c33678cc349d6ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 431/872] python-pysrt: rebuild for Python 3.8.

---
 srcpkgs/python-pysrt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysrt/template b/srcpkgs/python-pysrt/template
index 061435a52c7..7e154825bef 100644
--- a/srcpkgs/python-pysrt/template
+++ b/srcpkgs/python-pysrt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysrt'
 pkgname=python-pysrt
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysrt-${version}"
 build_style=python-module

From 4ba7eb802460f8e4e15f1389bebd64237c6f1aec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 432/872] python-pystache: rebuild for Python 3.8.

---
 srcpkgs/python-pystache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pystache/template b/srcpkgs/python-pystache/template
index 13f8b04aa88..c1a5bcd57d9 100644
--- a/srcpkgs/python-pystache/template
+++ b/srcpkgs/python-pystache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pystache'
 pkgname=python-pystache
 version=0.5.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pystache-${version}"
 build_style=python-module

From a6a1d8010f3909cc551f70485efc660b22168f46 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 433/872] python-pyte: rebuild for Python 3.8.

---
 srcpkgs/python-pyte/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyte/template b/srcpkgs/python-pyte/template
index 43b708adc66..76efbec91d1 100644
--- a/srcpkgs/python-pyte/template
+++ b/srcpkgs/python-pyte/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyte'
 pkgname=python-pyte
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyte-${version}"
 build_style=python-module

From 03679e357b0bdbd90ddbb6deba5693594ef9d592 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 434/872] python-pytest: rebuild for Python 3.8.

---
 srcpkgs/python-pytest/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest/template b/srcpkgs/python-pytest/template
index 6481f21e677..d5c246599c6 100644
--- a/srcpkgs/python-pytest/template
+++ b/srcpkgs/python-pytest/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest'
 pkgname=python-pytest
 version=3.7.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From d8ff8818fa4f90c63cf468feb2bba5d8b9dca026 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 435/872] python3-pytest-asyncio: rebuild for Python 3.8.

---
 srcpkgs/python3-pytest-asyncio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template
index bd104f99e2c..0c90d33a9e5 100644
--- a/srcpkgs/python3-pytest-asyncio/template
+++ b/srcpkgs/python3-pytest-asyncio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pytest-asyncio'
 pkgname=python3-pytest-asyncio
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytest-asyncio-${version}"
 build_style=python3-module

From 8bdff4905b1d2e832656b8dde532b566e516752c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 436/872] python-pytest-fixture-config: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-fixture-config/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-fixture-config/template b/srcpkgs/python-pytest-fixture-config/template
index cd3e38a592a..14255af8a35 100644
--- a/srcpkgs/python-pytest-fixture-config/template
+++ b/srcpkgs/python-pytest-fixture-config/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-fixture-config'
 pkgname=python-pytest-fixture-config
 version=1.3.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 89c93c6cebe4d9e57d61a6e1c0d1782514496073 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 437/872] python-pytest-mock: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-mock/template b/srcpkgs/python-pytest-mock/template
index f3dc85810b6..240e8773aaa 100644
--- a/srcpkgs/python-pytest-mock/template
+++ b/srcpkgs/python-pytest-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-mock'
 pkgname=python-pytest-mock
 version=1.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From e10ffc843814c368a7fd76e24e6afa8512ce198c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 438/872] python-pytz: rebuild for Python 3.8.

---
 srcpkgs/python-pytz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytz/template b/srcpkgs/python-pytz/template
index d6becf829a7..40f582962c8 100644
--- a/srcpkgs/python-pytz/template
+++ b/srcpkgs/python-pytz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytz'
 pkgname=python-pytz
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytz-${version}"
 build_style=python-module

From 562767d788b8e163bcde2dbd45de9eca2899bd90 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 439/872] python-pyudev: rebuild for Python 3.8.

---
 srcpkgs/python-pyudev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyudev/template b/srcpkgs/python-pyudev/template
index d059b7882a2..2ec53088636 100644
--- a/srcpkgs/python-pyudev/template
+++ b/srcpkgs/python-pyudev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyudev'
 pkgname=python-pyudev
 version=0.21.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyudev-${version}"
 build_style=python-module

From bb91a3d4616a0e9dbf1a34b271d62527a455f4ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 440/872] python3-pyx: rebuild for Python 3.8.

---
 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 87608c43428..89963bed89f 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.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="PyX-${version}"
 build_style=python3-module

From caa3ad83cde6d2b66687ae0ac2bb87dfd8eb100f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 441/872] python-pyzbar: rebuild for Python 3.8.

---
 srcpkgs/python-pyzbar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzbar/template b/srcpkgs/python-pyzbar/template
index 06ae37a5708..35b568eb4e6 100644
--- a/srcpkgs/python-pyzbar/template
+++ b/srcpkgs/python-pyzbar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzbar'
 pkgname=python-pyzbar
 version=0.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyzbar-${version}"
 build_style=python-module

From 83e0ba8fd12c3f07b4f3c2f8109ff0cd9a69353b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 442/872] python-pyzmq: rebuild for Python 3.8.

---
 srcpkgs/python-pyzmq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzmq/template b/srcpkgs/python-pyzmq/template
index 859aab5983d..27dbe29e516 100644
--- a/srcpkgs/python-pyzmq/template
+++ b/srcpkgs/python-pyzmq/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzmq'
 pkgname=python-pyzmq
 version=18.0.1
-revision=1
+revision=2
 wrksrc="pyzmq-${version}"
 build_style=python-module
 make_build_args="--zmq=${XBPS_CROSS_BASE}/usr"

From 2d71150f372801e322d8ee5f31b2bc67795fc3a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 443/872] python-qrcode: rebuild for Python 3.8.

---
 srcpkgs/python-qrcode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-qrcode/template b/srcpkgs/python-qrcode/template
index 9deb485855f..bf35c82757e 100644
--- a/srcpkgs/python-qrcode/template
+++ b/srcpkgs/python-qrcode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-qrcode'
 pkgname=python-qrcode
 version=6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="qrcode-${version}"
 build_style=python-module

From 55eeefa7bb378b38024ce5c57d228c5d2c24875f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 444/872] python-random2: rebuild for Python 3.8.

---
 srcpkgs/python-random2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-random2/template b/srcpkgs/python-random2/template
index 92f36fee139..2603cae3584 100644
--- a/srcpkgs/python-random2/template
+++ b/srcpkgs/python-random2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-random2'
 pkgname=python-random2
 version=1.0.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="random2-${version}"
 build_style=python-module

From 4aa520f994404a836b859a95bf53280ec662d779 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 445/872] python-rarfile: rebuild for Python 3.8.

---
 srcpkgs/python-rarfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rarfile/template b/srcpkgs/python-rarfile/template
index e0c597c1fb1..e3b6f3e2887 100644
--- a/srcpkgs/python-rarfile/template
+++ b/srcpkgs/python-rarfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rarfile'
 pkgname=python-rarfile
 version=3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="rarfile-${version}"
 build_style=python-module

From 77edc413dd0a2b7d7423d47946137d1db7452b91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 446/872] python-raven: rebuild for Python 3.8.

---
 srcpkgs/python-raven/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-raven/template b/srcpkgs/python-raven/template
index eec4e5f49b6..87382c21602 100644
--- a/srcpkgs/python-raven/template
+++ b/srcpkgs/python-raven/template
@@ -1,7 +1,7 @@
 # Template file for 'python-raven'
 pkgname=python-raven
 version=6.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="raven-${version}"
 build_style=python-module

From 0fd244bc29d49109b475295b68c11c496626bd43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 447/872] python-rdflib: rebuild for Python 3.8.

---
 srcpkgs/python-rdflib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rdflib/template b/srcpkgs/python-rdflib/template
index 0512abb0e5a..f676dedfb2f 100644
--- a/srcpkgs/python-rdflib/template
+++ b/srcpkgs/python-rdflib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rdflib'
 pkgname=python-rdflib
 version=4.2.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="rdflib-${version}"
 build_style=python-module

From 52682c54b0a7808306dcb6c0c9af5436d056d6a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 448/872] python-readability-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-readability-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-readability-lxml/template b/srcpkgs/python-readability-lxml/template
index ddf0602b730..19dadaa336f 100644
--- a/srcpkgs/python-readability-lxml/template
+++ b/srcpkgs/python-readability-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-readability-lxml'
 pkgname=python-readability-lxml
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="readability-lxml-${version}"
 build_style=python-module

From 5b239aeb5613465b0d414e14b8b37a83f65232fc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 449/872] python3-readlike: rebuild for Python 3.8.

---
 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 cbba969b076..43159962442 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=1
+revision=2
 archs=noarch
 wrksrc=readlike-${version}
 build_style=python3-module

From 10ff7da432e0f1563ed8c4feb921648f20e75246 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 450/872] python-rebulk: rebuild for Python 3.8.

---
 srcpkgs/python-rebulk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rebulk/template b/srcpkgs/python-rebulk/template
index 1cf6cf623c8..8f9c2621304 100644
--- a/srcpkgs/python-rebulk/template
+++ b/srcpkgs/python-rebulk/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rebulk'
 pkgname=python-rebulk
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rebulk-${version}"
 build_style=python-module

From b720f89f9fb6ecb79aa43ff92f151239049cb9c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 451/872] python-redis: rebuild for Python 3.8.

---
 srcpkgs/python-redis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-redis/template b/srcpkgs/python-redis/template
index f57c0d841b3..b7e773fde54 100644
--- a/srcpkgs/python-redis/template
+++ b/srcpkgs/python-redis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-redis'
 pkgname=python-redis
 version=2.10.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="redis-${version}"
 build_style=python-module

From 90d47f03a3f7a55f623c0b5019b0b58b6169aae5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 452/872] python-regex: rebuild for Python 3.8.

---
 srcpkgs/python-regex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-regex/template b/srcpkgs/python-regex/template
index 33e99b0127b..7a624db9477 100644
--- a/srcpkgs/python-regex/template
+++ b/srcpkgs/python-regex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-regex'
 pkgname=python-regex
 version=2019.08.19
-revision=1
+revision=2
 wrksrc="regex-${version}"
 build_style=python-module
 pycompile_module="_regex_core.py regex.py test_regex.py"

From e132fc559392a2f2a5268100218ef2061759c476 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 453/872] python-rencode: rebuild for Python 3.8.

---
 srcpkgs/python-rencode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rencode/template b/srcpkgs/python-rencode/template
index 7176038a60a..021e1d414b8 100644
--- a/srcpkgs/python-rencode/template
+++ b/srcpkgs/python-rencode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rencode'
 pkgname=python-rencode
 version=1.0.6
-revision=2
+revision=3
 wrksrc="rencode-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"

From 635743944483bd5fdbf4a909ef4874532f1035b9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 454/872] python-reportlab: rebuild for Python 3.8.

---
 srcpkgs/python-reportlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-reportlab/template b/srcpkgs/python-reportlab/template
index 7f153d65a2a..3915767b6d3 100644
--- a/srcpkgs/python-reportlab/template
+++ b/srcpkgs/python-reportlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-reportlab'
 pkgname=python-reportlab
 version=3.5.23
-revision=1
+revision=2
 wrksrc="reportlab-${version}"
 build_style=python-module
 pycompile_module="reportlab"

From 4a6d7b1e5e0d64a6834cc210da11806cbe217453 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 455/872] python-requests: rebuild for Python 3.8.

---
 srcpkgs/python-requests/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests/template b/srcpkgs/python-requests/template
index fc806b611e9..73d2d5945ef 100644
--- a/srcpkgs/python-requests/template
+++ b/srcpkgs/python-requests/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests'
 pkgname=python-requests
 version=2.22.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-${version}"
 build_style=python-module

From 61f6560b710773eab8296ef28bd943f5dc0d290d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 456/872] python-requests-mock: rebuild for Python 3.8.

---
 srcpkgs/python-requests-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-mock/template b/srcpkgs/python-requests-mock/template
index 5b89b5ed3b8..2d1410fcd1b 100644
--- a/srcpkgs/python-requests-mock/template
+++ b/srcpkgs/python-requests-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-mock'
 pkgname=python-requests-mock
 version=1.5.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="requests-mock-${version}"
 build_style=python-module

From f4f04d85ce7abb39fbbf306bc3c1dcfc467cdf14 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 457/872] python-requests-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-requests-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-oauthlib/template b/srcpkgs/python-requests-oauthlib/template
index b011ea17a36..8cd838090a7 100644
--- a/srcpkgs/python-requests-oauthlib/template
+++ b/srcpkgs/python-requests-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-oauthlib'
 pkgname=python-requests-oauthlib
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5853f21b57bde4c4e66293b132fba4fc03804518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 458/872] python-requests-toolbelt: rebuild for Python 3.8.

---
 srcpkgs/python-requests-toolbelt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-toolbelt/template b/srcpkgs/python-requests-toolbelt/template
index 3ba66a0a007..13a81586221 100644
--- a/srcpkgs/python-requests-toolbelt/template
+++ b/srcpkgs/python-requests-toolbelt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-toolbelt'
 pkgname=python-requests-toolbelt
 version=0.9.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 14171483829854051f0c8030562c1052094d78c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 459/872] python3-requests-unixsocket: rebuild for Python 3.8.

---
 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 ec9e1074566..fd389ec2d13 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-unixsocket-${version}"
 build_style=python3-module

From 9b589212b423bd7e2dfbb7ab7ef63c65b9dd07cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 460/872] python-rfc6555: rebuild for Python 3.8.

---
 srcpkgs/python-rfc6555/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rfc6555/template b/srcpkgs/python-rfc6555/template
index c3babc25b93..2522872cc32 100644
--- a/srcpkgs/python-rfc6555/template
+++ b/srcpkgs/python-rfc6555/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rfc6555'
 pkgname=python-rfc6555
 version=0.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rfc6555-${version}"
 build_style=python-module

From a399a96d8293a9387f5648001a03178d2550059b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 461/872] python-ripe-atlas-cousteau: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-cousteau/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-cousteau/template b/srcpkgs/python-ripe-atlas-cousteau/template
index ac16300fe3d..72f32a9da0d 100644
--- a/srcpkgs/python-ripe-atlas-cousteau/template
+++ b/srcpkgs/python-ripe-atlas-cousteau/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-cousteau'
 pkgname=python-ripe-atlas-cousteau
 version=1.4.2
-revision=1
+revision=2
 build_style=python-module
 archs=noarch
 pycompile_module="ripe/atlas/cousteau"

From 4c2ddc085f45f52b438013ad3d494f8f59859504 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 462/872] python-ripe-atlas-sagan: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-sagan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-sagan/template b/srcpkgs/python-ripe-atlas-sagan/template
index 60a9b883b93..22abb48af46 100644
--- a/srcpkgs/python-ripe-atlas-sagan/template
+++ b/srcpkgs/python-ripe-atlas-sagan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-sagan'
 pkgname=python-ripe-atlas-sagan
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ripe.atlas.sagan-${version}"
 build_style=python-module

From 10e7db3d51d8370e317d667edc372d0fcfd5bad9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 463/872] python-rsa: rebuild for Python 3.8.

---
 srcpkgs/python-rsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rsa/template b/srcpkgs/python-rsa/template
index a4ae59846ff..11e9bf2c60d 100644
--- a/srcpkgs/python-rsa/template
+++ b/srcpkgs/python-rsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rsa'
 pkgname=python-rsa
 version=4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a3bbda3918c5b4bb668860ba5bbd81f83f1a4925 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 464/872] python3-rsistent: rebuild for Python 3.8.

---
 srcpkgs/python3-rsistent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-rsistent/template b/srcpkgs/python3-rsistent/template
index 13019f472cd..7897e107b2b 100644
--- a/srcpkgs/python3-rsistent/template
+++ b/srcpkgs/python3-rsistent/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-rsistent'
 pkgname=python3-rsistent
 version=0.15.4
-revision=1
+revision=2
 wrksrc="pyrsistent-${version}"
 build_style=python3-module
 pycompile_module="pyrsistent"

From 7d4c9082b7051c6ce978ca21f34f138189c7f2d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 465/872] python3-rss2email: rebuild for Python 3.8.

---
 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 d07984d33d8..34e7d4e65a6 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.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="rss2email-${version}"
 build_style=python3-module

From a0a5e6df8a02d98f37c3c22c043adb325c8a8a62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 466/872] python-ruamel.yaml: rebuild for Python 3.8.

---
 srcpkgs/python-ruamel.yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ruamel.yaml/template b/srcpkgs/python-ruamel.yaml/template
index d86ddfc67c9..789f8a7acd2 100644
--- a/srcpkgs/python-ruamel.yaml/template
+++ b/srcpkgs/python-ruamel.yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ruamel.yaml'
 pkgname=python-ruamel.yaml
 version=0.15.92
-revision=1
+revision=2
 wrksrc="ruamel.yaml-${version}"
 build_style=python-module
 pycompile_module="ruamel/yaml"

From 6b579f083949bbd67a78d66ae983de1f36f03a82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 467/872] python3-s-tui: rebuild for Python 3.8.

---
 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 4c7db6ff3c9..85a945b1b09 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=0.8.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="s-tui-${version}"
 build_style=python3-module

From 5cc92799a690ba40dd26192e3f0182e07089683a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 468/872] python-s3transfer: rebuild for Python 3.8.

---
 srcpkgs/python-s3transfer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-s3transfer/template b/srcpkgs/python-s3transfer/template
index e306c3c3b1a..dd92eeff657 100644
--- a/srcpkgs/python-s3transfer/template
+++ b/srcpkgs/python-s3transfer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-s3transfer'
 pkgname=python-s3transfer
 version=0.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="s3transfer-${version}"
 build_style=python-module

From 2ec5386706a289e510b5b03e33cf74e0a23596a6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 469/872] python3-saml2: rebuild for Python 3.8.

---
 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 e94602a82ea..c0dabb5e9d0 100644
--- a/srcpkgs/python3-saml2/template
+++ b/srcpkgs/python3-saml2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-saml2'
 pkgname=python3-saml2
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysaml2-${version}"
 build_style=python3-module

From e856d28eb580f0af5442d11d24ffacdd7fade12b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 470/872] python-scandir: rebuild for Python 3.8.

---
 srcpkgs/python-scandir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scandir/template b/srcpkgs/python-scandir/template
index 774fac91b8f..b02fe6d0281 100644
--- a/srcpkgs/python-scandir/template
+++ b/srcpkgs/python-scandir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scandir'
 pkgname=python-scandir
 version=1.10.0
-revision=2
+revision=3
 wrksrc="scandir-${version}"
 build_style=python-module
 pycompile_module="scandir.py"

From 3b5e1eeb2ce0519b51592cebffc1bd89dce0f96c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 471/872] python3-scard: rebuild for Python 3.8.

---
 srcpkgs/python3-scard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scard/template b/srcpkgs/python3-scard/template
index 793f144a74b..279419ac3e3 100644
--- a/srcpkgs/python3-scard/template
+++ b/srcpkgs/python3-scard/template
@@ -2,7 +2,7 @@
 pkgname=python3-scard
 _pkgname=pyscard
 version=1.9.8
-revision=1
+revision=2
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module
 pycompile_module=smartcard

From f62ba61eaebce26c267e2d453d8e0ea6e005a285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 472/872] python3-scikit-learn: rebuild for Python 3.8.

---
 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 73799b9f420..8ac82167832 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.20.4
-revision=1
+revision=2
 wrksrc="scikit-learn-${version}"
 build_style=python3-module
 pycompile_module="sklearn"

From ccf4f6aa1bd0ba8aaf9499dcacb1320a77221004 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 473/872] python3-scipy: rebuild for Python 3.8.

---
 srcpkgs/python3-scipy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scipy/template b/srcpkgs/python3-scipy/template
index 291ac3734f1..2cef9ac33e1 100644
--- a/srcpkgs/python3-scipy/template
+++ b/srcpkgs/python3-scipy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-scipy'
 pkgname=python3-scipy
 version=1.3.1
-revision=1
+revision=2
 wrksrc="scipy-${version}"
 build_style=python3-module
 pycompile_module="scipy"

From 04cbe0c6403a4ecd9cda36e10bba5d06e472823d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 474/872] python-scour: rebuild for Python 3.8.

---
 srcpkgs/python-scour/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scour/template b/srcpkgs/python-scour/template
index b78cf37f057..0db5b157ce1 100644
--- a/srcpkgs/python-scour/template
+++ b/srcpkgs/python-scour/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scour'
 pkgname=python-scour
 version=0.37
-revision=1
+revision=2
 archs=noarch
 wrksrc="scour-${version}"
 build_style=python-module

From 0fd08871993ece59d562feb8472d05249ae1d76a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 475/872] python3-scruffy: rebuild for Python 3.8.

---
 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 e797b110f42..62a21a74eca 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="scruffy-${version}"
 build_style=python3-module

From 65cb259cf8f67f78fe484e4423fe0006aae17045 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 476/872] python-send2trash: rebuild for Python 3.8.

---
 srcpkgs/python-send2trash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-send2trash/template b/srcpkgs/python-send2trash/template
index 49c3a2b3d77..94f56545695 100644
--- a/srcpkgs/python-send2trash/template
+++ b/srcpkgs/python-send2trash/template
@@ -1,7 +1,7 @@
 # Template file for 'python-send2trash'
 pkgname=python-send2trash
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="send2trash-${version}"
 build_style=python-module

From 04a4413d706d49df8a415b9714091b0e4bb0fdfa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 477/872] python-serpent: rebuild for Python 3.8.

---
 srcpkgs/python-serpent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-serpent/template b/srcpkgs/python-serpent/template
index b60d390c1ab..a40f0d44515 100644
--- a/srcpkgs/python-serpent/template
+++ b/srcpkgs/python-serpent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-serpent'
 pkgname=python-serpent
 version=1.28
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38131f811a874463c71c55408ef6e629166a5b8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 478/872] python-service_identity: rebuild for Python 3.8.

---
 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 eae084c858f..e21a1520a75 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=1
+revision=2
 archs=noarch
 wrksrc="service_identity-${version}"
 build_style=python-module

From 9a538d41d8b848da9da43cd5d6f80428b7208be8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 479/872] setconf: rebuild for Python 3.8.

---
 srcpkgs/setconf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/setconf/template b/srcpkgs/setconf/template
index a3d22376a5b..1911c558c77 100644
--- a/srcpkgs/setconf/template
+++ b/srcpkgs/setconf/template
@@ -1,7 +1,7 @@
 # Template file for 'setconf'
 pkgname=setconf
 version=0.7.6
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="setconf.py"

From aacff3894cc42a49ab1becc06f64f23197302443 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 480/872] python-setproctitle: rebuild for Python 3.8.

---
 srcpkgs/python-setproctitle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setproctitle/template b/srcpkgs/python-setproctitle/template
index d0d41ae888d..c47e3a9db53 100644
--- a/srcpkgs/python-setproctitle/template
+++ b/srcpkgs/python-setproctitle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setproctitle'
 pkgname=python-setproctitle
 version=1.1.10
-revision=5
+revision=6
 wrksrc="setproctitle-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e2b8c2ac8d355cdb0f221b80ab39e2ef92beb3e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 481/872] python-setuptools: rebuild for Python 3.8.

---
 srcpkgs/python-setuptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setuptools/template b/srcpkgs/python-setuptools/template
index 382a9b45bcd..a172f8e8e09 100644
--- a/srcpkgs/python-setuptools/template
+++ b/srcpkgs/python-setuptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setuptools'
 pkgname=python-setuptools
 version=41.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python-module

From 5feb793ba33633318f41644f84b5ffd5428e2d4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 482/872] python-sh: rebuild for Python 3.8.

---
 srcpkgs/python-sh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sh/template b/srcpkgs/python-sh/template
index 1826986b25c..76985dc1f01 100644
--- a/srcpkgs/python-sh/template
+++ b/srcpkgs/python-sh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sh'
 pkgname=python-sh
 version=1.12.14
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From f0cfe151eea6fcf86d1196385a1ac0057a65ab48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 483/872] python-shapely: rebuild for Python 3.8.

---
 srcpkgs/python-shapely/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-shapely/template b/srcpkgs/python-shapely/template
index 25cc875a02c..114726838f9 100644
--- a/srcpkgs/python-shapely/template
+++ b/srcpkgs/python-shapely/template
@@ -1,7 +1,7 @@
 # Template file for 'python-shapely'
 pkgname=python-shapely
 version=1.7a1
-revision=2
+revision=3
 wrksrc="Shapely-${version}"
 build_style=python-module
 pycompile_module="shapely"

From 0908618383925caf43243de8097dbf6491149f8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 484/872] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index d552ce8432d..1f9c8043b46 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=4
+revision=5
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From 14af86f199e28c6eae170b10c1c662bd0184b73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 485/872] shiboken2: rebuild for Python 3.8.

---
 srcpkgs/shiboken2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken2/template b/srcpkgs/shiboken2/template
index 394d9ba4f94..a08edf3f2a0 100644
--- a/srcpkgs/shiboken2/template
+++ b/srcpkgs/shiboken2/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken2'
 pkgname=shiboken2
 version=5.11.2
-revision=2
+revision=3
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From 9ea535c3baf70c69a2bbe07d057742af1877d648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 486/872] python3-shodan: rebuild for Python 3.8.

---
 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 858a0b921f8..033b5a269ff 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.19.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="shodan-python-${version}"
 build_style=python3-module

From 76805ea236fc7f4ecd5948a492413602efff91e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 487/872] python3-signedjson: rebuild for Python 3.8.

---
 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 6f6fb339fd2..d8f9b06b22f 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-signedjson-${version}"
 build_style=python3-module

From 12e9d209470a13cdd9063e5544ffd00c5952138e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 488/872] python-simplebayes: rebuild for Python 3.8.

---
 srcpkgs/python-simplebayes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplebayes/template b/srcpkgs/python-simplebayes/template
index e76b94ad549..6c95222fa7e 100644
--- a/srcpkgs/python-simplebayes/template
+++ b/srcpkgs/python-simplebayes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplebayes'
 pkgname=python-simplebayes
 version=1.5.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="simplebayes-${version}"
 build_style=python-module

From d1ad830144a3e370bbac6e82affb1d06805dfdbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 489/872] python-simplegeneric: rebuild for Python 3.8.

---
 srcpkgs/python-simplegeneric/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplegeneric/template b/srcpkgs/python-simplegeneric/template
index 3dc4e1dda94..f352387fa1f 100644
--- a/srcpkgs/python-simplegeneric/template
+++ b/srcpkgs/python-simplegeneric/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplegeneric'
 pkgname=python-simplegeneric
 version=0.8.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="simplegeneric-${version}"
 build_style=python-module

From f6d990c1a1436b305f8b5af6f58c1f6430d96dc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 490/872] python-simplejson: rebuild for Python 3.8.

---
 srcpkgs/python-simplejson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplejson/template b/srcpkgs/python-simplejson/template
index b453ae952ba..1b8523d0d46 100644
--- a/srcpkgs/python-simplejson/template
+++ b/srcpkgs/python-simplejson/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplejson'
 pkgname=python-simplejson
 version=3.16.1
-revision=2
+revision=3
 wrksrc="simplejson-${version}"
 build_style=python-module
 pycompile_module="simplejson"

From b6f0878a2894ffdd731251a64a26cb1ddf40038a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 491/872] sip: rebuild for Python 3.8.

---
 srcpkgs/sip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sip/template b/srcpkgs/sip/template
index 9d09b823bb6..0e8a81000b1 100644
--- a/srcpkgs/sip/template
+++ b/srcpkgs/sip/template
@@ -1,7 +1,7 @@
 # Template file for 'sip'
 pkgname=sip
 version=4.19.18
-revision=1
+revision=2
 wrksrc="sip-${version}"
 hostmakedepends="python-devel python3-devel"
 makedepends="${hostmakedepends}"

From 5f24e47fb2b044495bbf0ee108d18220ad3b3bd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 492/872] python-six: rebuild for Python 3.8.

---
 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 c6d91f5ece9..a25323caa2a 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.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="six-${version}"
 build_style=python-module

From 09784cf129c5a66b731964fcda119a53dd9dbb7b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 493/872] python3-slixmpp: rebuild for Python 3.8.

---
 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 db367c3d0ab..cbbde6f394b 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.4.2
-revision=1
+revision=2
 wrksrc="slixmpp-${version}"
 build_style=python3-module
 pycompile_module="slixmpp"

From 5e4eb88ccd16957dc33f6923ae3a72151385e9ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 494/872] python3-slugify: rebuild for Python 3.8.

---
 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 44d37f2aed7..012bb98f063 100644
--- a/srcpkgs/python3-slugify/template
+++ b/srcpkgs/python3-slugify/template
@@ -3,7 +3,7 @@ pkgname=python3-slugify
 # Please don't update. Only required by Transifx-client,
 # doesn't work with newer versions
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-slugify-${version}"
 build_style=python3-module

From 3673d2d0b57421bb69e3ed7407630c26169fab96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 495/872] python-smbc: rebuild for Python 3.8.

---
 srcpkgs/python-smbc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smbc/template b/srcpkgs/python-smbc/template
index abc745f8982..6a280139a25 100644
--- a/srcpkgs/python-smbc/template
+++ b/srcpkgs/python-smbc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smbc'
 pkgname=python-smbc
 version=1.0.16
-revision=1
+revision=2
 wrksrc="pysmbc-${version}"
 build_style=python-module
 pycompile_module="smbc"

From 2e7eca88dff9a562419fb01bfafbdaf55a6c2bd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 496/872] python-smmap: rebuild for Python 3.8.

---
 srcpkgs/python-smmap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smmap/template b/srcpkgs/python-smmap/template
index 4aa0c37ff40..8c8ea952285 100644
--- a/srcpkgs/python-smmap/template
+++ b/srcpkgs/python-smmap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smmap'
 pkgname=python-smmap
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="smmap-${version}"
 build_style=python-module

From fd787d6092a892885c1a37ff836d919c3268746b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 497/872] python-snakeoil: rebuild for Python 3.8.

---
 srcpkgs/python-snakeoil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snakeoil/template b/srcpkgs/python-snakeoil/template
index 9c98461c555..79e964d9254 100644
--- a/srcpkgs/python-snakeoil/template
+++ b/srcpkgs/python-snakeoil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snakeoil'
 pkgname=python-snakeoil
 version=0.7.5
-revision=2
+revision=3
 wrksrc="snakeoil-${version}"
 build_style=python-module
 pycompile_module="snakeoil"

From c023c48bda41f4e9b16718923037b0abc4c9cc57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 498/872] python-snappy: rebuild for Python 3.8.

---
 srcpkgs/python-snappy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snappy/template b/srcpkgs/python-snappy/template
index ac386f64fae..b1870cbe681 100644
--- a/srcpkgs/python-snappy/template
+++ b/srcpkgs/python-snappy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snappy'
 pkgname=python-snappy
 version=0.5.4
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="snappy"
 hostmakedepends="python-setuptools python3-setuptools"

From cf3b5c203b490e3aa45e74d0cef8b0d0c4d9cbd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 499/872] python-snowballstemmer: rebuild for Python 3.8.

---
 srcpkgs/python-snowballstemmer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snowballstemmer/template b/srcpkgs/python-snowballstemmer/template
index 6c21632cffa..221478860e5 100644
--- a/srcpkgs/python-snowballstemmer/template
+++ b/srcpkgs/python-snowballstemmer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snowballstemmer'
 pkgname=python-snowballstemmer
 version=1.2.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="snowballstemmer-${version}"
 build_style=python-module

From ebbd083848ced4227417bedacb81db1e46b3b0d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 500/872] python-socketIO-client: rebuild for Python 3.8.

---
 srcpkgs/python-socketIO-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-socketIO-client/template b/srcpkgs/python-socketIO-client/template
index 32fdac4117d..9495d7cf40b 100644
--- a/srcpkgs/python-socketIO-client/template
+++ b/srcpkgs/python-socketIO-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-socketIO-client'
 pkgname=python-socketIO-client
 version=0.7.2
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="socketIO_client"

From bf4912c1b4d342f253c99ee2ff30408cc72ef150 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 501/872] python3-sortedcontainers: rebuild for Python 3.8.

---
 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 2b531ded9b6..41d87d4ebd0 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.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="sortedcontainers-${version}"
 build_style=python3-module

From d111b9221a51cf160ffadb598d8ab186bac3562f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 502/872] python-soupsieve: rebuild for Python 3.8.

---
 srcpkgs/python-soupsieve/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-soupsieve/template b/srcpkgs/python-soupsieve/template
index 586553ca759..63b65c5910f 100644
--- a/srcpkgs/python-soupsieve/template
+++ b/srcpkgs/python-soupsieve/template
@@ -1,7 +1,7 @@
 # Template file for 'python-soupsieve'
 pkgname=python-soupsieve
 version=1.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="soupsieve-${version}"
 build_style=python-module

From 505955408532e39107891c66bb40c986d8a5da3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 503/872] python3-spake2: rebuild for Python 3.8.

---
 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 ff83afed1d6..dc0cdced747 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=1
+revision=2
 archs=noarch
 wrksrc="python-spake2-${version}"
 build_style=python3-module

From ed28cd6c33b5a607891182e27d4edc4b33e42c75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 504/872] python-sphinx_rtd_theme: rebuild for Python 3.8.

---
 srcpkgs/python-sphinx_rtd_theme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinx_rtd_theme/template b/srcpkgs/python-sphinx_rtd_theme/template
index 90def1c9d1d..ebd4f13da8f 100644
--- a/srcpkgs/python-sphinx_rtd_theme/template
+++ b/srcpkgs/python-sphinx_rtd_theme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinx_rtd_theme'
 pkgname=python-sphinx_rtd_theme
 version=0.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinx_rtd_theme-${version}"
 build_style=python-module

From dc5c184f3eb8653ed7620ead5c8c28a67daed07d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 505/872] python-sphinxcontrib: rebuild for Python 3.8.

---
 srcpkgs/python-sphinxcontrib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib/template b/srcpkgs/python-sphinxcontrib/template
index ce3befc56d7..c6789cc77f5 100644
--- a/srcpkgs/python-sphinxcontrib/template
+++ b/srcpkgs/python-sphinxcontrib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib'
 pkgname=python-sphinxcontrib
 version=1.0
-revision=2
+revision=3
 archs=noarch
 create_wrksrc=yes
 pycompile_module="sphinxcontrib"

From 044129ada15eeb9695b554976702e8af049dcfd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 506/872] python-sphinxcontrib-websupport: rebuild for Python
 3.8.

---
 srcpkgs/python-sphinxcontrib-websupport/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib-websupport/template b/srcpkgs/python-sphinxcontrib-websupport/template
index 2236e50b25b..5387dec6519 100644
--- a/srcpkgs/python-sphinxcontrib-websupport/template
+++ b/srcpkgs/python-sphinxcontrib-websupport/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib-websupport'
 pkgname=python-sphinxcontrib-websupport
 version=1.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinxcontrib-websupport-${version}"
 build_style=python-module

From d4fb3b78447ca7349e0a94033b436c3e0caa5dc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 507/872] python-sqlalchemy-migrate: rebuild for Python 3.8.

---
 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 cfdf6166695..bb002660c0f 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=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 863a48d9543b2461c699350ad32bb2ae925e30c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 508/872] python-sqlparse: rebuild for Python 3.8.

---
 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 29a477db392..0f8c6f8ea2e 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=1
+revision=2
 archs=noarch
 wrksrc="sqlparse-${version}"
 build_style=python-module

From b477355bf26b723b8ab7cab61902be1e4aaee7bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 509/872] python-stem: rebuild for Python 3.8.

---
 srcpkgs/python-stem/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index e04ae0a848c..e16e79d84bb 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stem'
 pkgname=python-stem
 version=1.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stem-${version/b/}"
 build_style=python-module

From 82d435bdfc12ea7b4a3dabd17da5113470bffe26 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 510/872] python-stevedore: rebuild for Python 3.8.

---
 srcpkgs/python-stevedore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stevedore/template b/srcpkgs/python-stevedore/template
index 281538211af..4f781304d3f 100644
--- a/srcpkgs/python-stevedore/template
+++ b/srcpkgs/python-stevedore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stevedore'
 pkgname=python-stevedore
 version=1.30.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stevedore-${version}"
 build_style=python-module

From 2afe8f7a4ce71437484d9258f44ead34ae2f6647 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 511/872] python-stormssh: rebuild for Python 3.8.

---
 srcpkgs/python-stormssh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stormssh/template b/srcpkgs/python-stormssh/template
index 250e838e582..11f63f67bba 100644
--- a/srcpkgs/python-stormssh/template
+++ b/srcpkgs/python-stormssh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stormssh'
 pkgname=python-stormssh
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=storm-${version}
 build_style=python-module

From 754addaa6845cd505b5d744fa4e54a66dba9c4ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 512/872] python-subliminal: rebuild for Python 3.8.

---
 srcpkgs/python-subliminal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-subliminal/template b/srcpkgs/python-subliminal/template
index 035ca844880..216c11bb4c0 100644
--- a/srcpkgs/python-subliminal/template
+++ b/srcpkgs/python-subliminal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-subliminal'
 pkgname=python-subliminal
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="subliminal-${version}"
 build_style=python-module

From da488d7b04fb3b00046be4293c33ae0809dad8e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 513/872] python-sympy: rebuild for Python 3.8.

---
 srcpkgs/python-sympy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sympy/template b/srcpkgs/python-sympy/template
index 21d8cf69840..d41c8a392b0 100644
--- a/srcpkgs/python-sympy/template
+++ b/srcpkgs/python-sympy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sympy'
 pkgname=python-sympy
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="sympy-${version}"
 build_style=python-module

From 78857098e3058d7f0df7ece8be24b84196d16921 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 514/872] python-tables: rebuild for Python 3.8.

---
 srcpkgs/python-tables/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tables/template b/srcpkgs/python-tables/template
index 644ae3d1a35..5f61fe8fb88 100644
--- a/srcpkgs/python-tables/template
+++ b/srcpkgs/python-tables/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tables'
 pkgname=python-tables
 version=3.5.2
-revision=1
+revision=2
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="tables"

From 45955cd565bccabbc642dce6684af05ad7651ba5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 515/872] python3-tabulate: rebuild for Python 3.8.

---
 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 19b61edd88c..6f142077300 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="tabulate-${version}"
 build_style=python3-module

From 285f369cadcf0d14f66db8045bb3fb979e69937f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 516/872] python-tempita: rebuild for Python 3.8.

---
 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 9e7123fbd9d..c1c75ee1cac 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=3
+revision=4
 archs=noarch
 wrksrc="Tempita-${version}"
 build_style=python-module

From efa04f85df83993e48813e00587c05cd6c722387 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 517/872] python-tempora: rebuild for Python 3.8.

---
 srcpkgs/python-tempora/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tempora/template b/srcpkgs/python-tempora/template
index fa1cbd4fbd1..866d163f367 100644
--- a/srcpkgs/python-tempora/template
+++ b/srcpkgs/python-tempora/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tempora'
 pkgname=python-tempora
 version=1.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tempora-${version}"
 build_style=python-module

From 783b09196fc04d62a7e7a220ffffc941acedfeeb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 518/872] python-termcolor: rebuild for Python 3.8.

---
 srcpkgs/python-termcolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-termcolor/template b/srcpkgs/python-termcolor/template
index 877e5e59d9b..73c18fc79eb 100644
--- a/srcpkgs/python-termcolor/template
+++ b/srcpkgs/python-termcolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-termcolor'
 pkgname=python-termcolor
 version=1.1.0
-revision=5
+revision=6
 archs=noarch
 wrksrc="termcolor-${version}"
 build_style=python-module

From 469ef1b462bbb9fb2d5d97b38e357b662f5009d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 519/872] python-terminado: rebuild for Python 3.8.

---
 srcpkgs/python-terminado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-terminado/template b/srcpkgs/python-terminado/template
index cdfe6163991..d649364d88d 100644
--- a/srcpkgs/python-terminado/template
+++ b/srcpkgs/python-terminado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-terminado'
 pkgname=python-terminado
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="terminado-${version}"
 build_style=python-module

From ced3b80cce126ab9d23dd2a4bc9505e23b5a4888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 520/872] python3-terminaltables: rebuild for Python 3.8.

---
 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 60ada7ffcb6..4f781eab76d 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=1
+revision=2
 archs=noarch
 wrksrc="terminaltables-${version}"
 build_style=python3-module

From 7a90fec1dbe0347ede0762e747d8edf378bd497c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 521/872] python-testpath: rebuild for Python 3.8.

---
 srcpkgs/python-testpath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-testpath/template b/srcpkgs/python-testpath/template
index bac7270fd40..abfc59900c0 100644
--- a/srcpkgs/python-testpath/template
+++ b/srcpkgs/python-testpath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-testpath'
 pkgname=python-testpath
 version=0.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="testpath-${version}"
 build_style=python-module

From f8761f2f7116f9b2691807d35d9836a34fbbbf32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 522/872] python3-text-unidecode: rebuild for Python 3.8.

---
 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 77163d9e0b6..b3b5aa95575 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="text-unidecode-${version}"
 build_style=python3-module

From 2d2f99664b0644e22e4876b9d54048008a392289 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 523/872] python-texttable: rebuild for Python 3.8.

---
 srcpkgs/python-texttable/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-texttable/template b/srcpkgs/python-texttable/template
index a9c5ec66db1..24bac87af6a 100644
--- a/srcpkgs/python-texttable/template
+++ b/srcpkgs/python-texttable/template
@@ -1,7 +1,7 @@
 # Template file for 'python-texttable'
 pkgname=python-texttable
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="texttable-${version}"
 build_style=python-module

From c671c144e8fe81895f6995347d19725f72165b25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 524/872] python3-tinycss: rebuild for Python 3.8.

---
 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 91fda6f808d..3b4717c234e 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=1
+revision=2
 archs=noarch
 wrksrc=tinycss-${version}
 build_style=python3-module

From 9aa3e8105128dc5e3b86a83bd0ae76e7d9c9cf86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 525/872] python-tmuxp: rebuild for Python 3.8.

---
 srcpkgs/python-tmuxp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tmuxp/template b/srcpkgs/python-tmuxp/template
index 00c86730cbe..45b4a9772b2 100644
--- a/srcpkgs/python-tmuxp/template
+++ b/srcpkgs/python-tmuxp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tmuxp'
 pkgname=python-tmuxp
 version=1.5.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="tmuxp-${version}"
 build_style=python-module

From 995158f34c29d704b44eae2b32df801023781096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 526/872] python-toml: rebuild for Python 3.8.

---
 srcpkgs/python-toml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-toml/template b/srcpkgs/python-toml/template
index 0eee1b0b2c3..2fd6eaa0cea 100644
--- a/srcpkgs/python-toml/template
+++ b/srcpkgs/python-toml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-toml'
 pkgname=python-toml
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="toml-${version}"
 build_style=python-module

From 6270afd962719dd0e9b876b40ab7bf9be9936cf5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 527/872] python-tornado: rebuild for Python 3.8.

---
 srcpkgs/python-tornado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tornado/template b/srcpkgs/python-tornado/template
index 7e5700177f5..bd558d251f5 100644
--- a/srcpkgs/python-tornado/template
+++ b/srcpkgs/python-tornado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tornado'
 pkgname=python-tornado
 version=5.1.1
-revision=1
+revision=2
 wrksrc="tornado-${version}"
 build_style=python-module
 pycompile_module="tornado"

From cd9e416288ae101465f91c75453326fdead7d148 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 528/872] python-tqdm: rebuild for Python 3.8.

---
 srcpkgs/python-tqdm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tqdm/template b/srcpkgs/python-tqdm/template
index 69369bfd6b9..ef1f07127ad 100644
--- a/srcpkgs/python-tqdm/template
+++ b/srcpkgs/python-tqdm/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tqdm'
 pkgname=python-tqdm
 version=4.36.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tqdm-${version}"
 build_style=python-module

From 4ef8d34c3ab05cf43591d92220fc001007644a6d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 529/872] python-traitlets: rebuild for Python 3.8.

---
 srcpkgs/python-traitlets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-traitlets/template b/srcpkgs/python-traitlets/template
index d2d1b85edb6..797dd0268da 100644
--- a/srcpkgs/python-traitlets/template
+++ b/srcpkgs/python-traitlets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-traitlets'
 pkgname=python-traitlets
 version=4.3.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="traitlets-${version}"
 build_style=python-module

From f41edcb16535bb92b415439644ee01a61da14478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 530/872] python3-transifex-client: rebuild for Python 3.8.

---
 srcpkgs/python3-transifex-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-transifex-client/template b/srcpkgs/python3-transifex-client/template
index 77ca15313e0..5ea767b5a7d 100644
--- a/srcpkgs/python3-transifex-client/template
+++ b/srcpkgs/python3-transifex-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-transifex-client'
 pkgname=python3-transifex-client
 version=0.13.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="transifex-client-${version}"
 build_style=python3-module

From d2c27a7fe61e206ccbf655146feec32e4b13cfc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 531/872] python3-treq: rebuild for Python 3.8.

---
 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 8f210d13489..e46e1e7e7a5 100644
--- a/srcpkgs/python3-treq/template
+++ b/srcpkgs/python3-treq/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-treq'
 pkgname=python3-treq
 version=18.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="treq-${version}"
 build_style=python3-module

From 26b5427ba0e26d8712ebe081a774396e3ea39d76 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 532/872] python-ttystatus: rebuild for Python 3.8.

---
 srcpkgs/python-ttystatus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ttystatus/template b/srcpkgs/python-ttystatus/template
index 9fbefad3461..43e87ddcdf0 100644
--- a/srcpkgs/python-ttystatus/template
+++ b/srcpkgs/python-ttystatus/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ttystatus'
 pkgname=python-ttystatus
 version=0.38
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="ttystatus"

From dbf349fac2110dc33ad6d676748e46240dec1fbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 533/872] python-twitter: rebuild for Python 3.8.

---
 srcpkgs/python-twitter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-twitter/template b/srcpkgs/python-twitter/template
index c299b28dedf..e5e7194078a 100644
--- a/srcpkgs/python-twitter/template
+++ b/srcpkgs/python-twitter/template
@@ -1,7 +1,7 @@
 # Template file for 'python-twitter'
 pkgname=python-twitter
 version=3.5
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="twitter"

From 58eab12e88f689c694ef474e09d2266b77b5bcc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 534/872] python3-txacme: rebuild for Python 3.8.

---
 srcpkgs/python3-txacme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-txacme/template b/srcpkgs/python3-txacme/template
index e6becf593e7..c678addda4d 100644
--- a/srcpkgs/python3-txacme/template
+++ b/srcpkgs/python3-txacme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txacme'
 pkgname=python3-txacme
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="txacme-${version}"
 build_style=python3-module

From a1a3464258c255e0b73cbdb47e0337d3b8af473e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 535/872] python3-txaio: rebuild for Python 3.8.

---
 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 fa13338cd30..8163f5c90fd 100644
--- a/srcpkgs/python3-txaio/template
+++ b/srcpkgs/python3-txaio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txaio'
 pkgname=python3-txaio
 version=18.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="txaio-${version}"
 build_style=python3-module

From 66d08c9f4945499ccd01b127d7ec1f8cfd468dd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 536/872] python3-txtorcon: rebuild for Python 3.8.

---
 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 3018a65e457..a10ab59c582 100644
--- a/srcpkgs/python3-txtorcon/template
+++ b/srcpkgs/python3-txtorcon/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txtorcon'
 pkgname=python3-txtorcon
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="txtorcon-${version}"
 build_style=python3-module

From f3bf9db3f8b699c67eebc7fa0278fca9de892d75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 537/872] python3-typed-ast: update to 1.4.0.

---
 srcpkgs/python3-typed-ast/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-typed-ast/template b/srcpkgs/python3-typed-ast/template
index ec5b5b9df11..b38f0fe065c 100644
--- a/srcpkgs/python3-typed-ast/template
+++ b/srcpkgs/python3-typed-ast/template
@@ -1,8 +1,8 @@
 # Template file for 'python3-typed-ast'
 pkgname=python3-typed-ast
-version=1.3.4
+version=1.4.0
 revision=1
-wrksrc="typed-ast-${version}"
+wrksrc="typed_ast-${version}"
 build_style=python3-module
 pycompile_module="typed_ast"
 hostmakedepends="python3-devel python3-setuptools"
@@ -11,6 +11,6 @@ short_desc="Ast module with type comment support"
 maintainer="whoami <whoami@systemli.org>"
 license="Apache-2.0"
 homepage="https://github.com/python/typed_ast"
-distfiles="${PYPI_SITE}/t/typed-ast/typed-ast-${version}.tar.gz"
-checksum=68c362848d9fb71d3c3e5f43c09974a0ae319144634e7a47db62f0f2a54a7fa7
+distfiles="${PYPI_SITE}/t/typed-ast/typed_ast-${version}.tar.gz"
+checksum=66480f95b8167c9c5c5c87f32cf437d585937970f3fc24386f313a4c97b44e34
 nocross="https://travis-ci.org/void-linux/void-packages/jobs/509366923#L1009"

From d977434aa35e2c6bc03c5db7514f5409eb21a2a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 538/872] python3-typing_extensions: rebuild for Python 3.8.

---
 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 ab96df4eb2d..605af46216d 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=3.6.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module

From d1368b489e196a385edf9b15df4da773505f8a5e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 539/872] python-tzlocal: rebuild for Python 3.8.

---
 srcpkgs/python-tzlocal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tzlocal/template b/srcpkgs/python-tzlocal/template
index 396eada3982..684d2a21b40 100644
--- a/srcpkgs/python-tzlocal/template
+++ b/srcpkgs/python-tzlocal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tzlocal'
 pkgname=python-tzlocal
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tzlocal-${version}"
 build_style=python-module

From 0ec72579de99edead05daf85e7cac5e0e2ab641b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 540/872] python-unittest-mixins: rebuild for Python 3.8.

---
 srcpkgs/python-unittest-mixins/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-unittest-mixins/template b/srcpkgs/python-unittest-mixins/template
index 6f7c7204112..2ff5c497523 100644
--- a/srcpkgs/python-unittest-mixins/template
+++ b/srcpkgs/python-unittest-mixins/template
@@ -1,7 +1,7 @@
 # Template file for 'python-unittest-mixins'
 pkgname=python-unittest-mixins
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From a5e3289470d7f0e25e09237aa9463d28817818c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 541/872] python3-unpaddedbase64: rebuild for Python 3.8.

---
 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 37df2c1d642..06a47db3b64 100644
--- a/srcpkgs/python3-unpaddedbase64/template
+++ b/srcpkgs/python3-unpaddedbase64/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-unpaddedbase64'
 pkgname=python3-unpaddedbase64
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-unpaddedbase64-${version}"
 build_style=python3-module

From 13043751d10b741546f419a7e9089a5b252fd5c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 542/872] python-urbandict: rebuild for Python 3.8.

---
 srcpkgs/python-urbandict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urbandict/template b/srcpkgs/python-urbandict/template
index ff09e963fa7..ed359c744be 100644
--- a/srcpkgs/python-urbandict/template
+++ b/srcpkgs/python-urbandict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urbandict'
 pkgname=python-urbandict
 version=0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="urbandict-${version}"
 build_style=python-module

From a15bf0893e7a65a070751099b3ddca9172b49912 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 543/872] python-uritemplate: rebuild for Python 3.8.

---
 srcpkgs/python-uritemplate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-uritemplate/template b/srcpkgs/python-uritemplate/template
index 7a530fee03b..cdcda419efe 100644
--- a/srcpkgs/python-uritemplate/template
+++ b/srcpkgs/python-uritemplate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-uritemplate'
 pkgname=python-uritemplate
 version=3.0.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 43c97a015ea83b2b0934ea864a84b324ec83f31a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 544/872] python3-urlgrabber: rebuild for Python 3.8.

---
 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 087087d5ed1..eef67c8e13c 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=1
+revision=2
 archs=noarch
 wrksrc="urlgrabber-${version}"
 build_style=python3-module

From 016dbcff2bb0c1709814f4da4fe214d551e3d4cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 545/872] python-urllib3: rebuild for Python 3.8.

---
 srcpkgs/python-urllib3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urllib3/template b/srcpkgs/python-urllib3/template
index 8056518c9c1..1ff21f7555d 100644
--- a/srcpkgs/python-urllib3/template
+++ b/srcpkgs/python-urllib3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urllib3'
 pkgname=python-urllib3
 version=1.25.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="urllib3-${version}"
 build_style=python-module

From 9629da352be38a0f14bcb680c7fc05dd1d1167f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 546/872] python-urwid: rebuild for Python 3.8.

---
 srcpkgs/python-urwid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwid/template b/srcpkgs/python-urwid/template
index ae6722b1135..7adf8b76b96 100644
--- a/srcpkgs/python-urwid/template
+++ b/srcpkgs/python-urwid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwid'
 pkgname=python-urwid
 version=2.0.1
-revision=2
+revision=3
 wrksrc="urwid-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"

From 4be978b1173afce93e7ff39f6e577059f4c7dd4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 547/872] python-urwidtrees: rebuild for Python 3.8.

---
 srcpkgs/python-urwidtrees/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwidtrees/template b/srcpkgs/python-urwidtrees/template
index be0e906addf..62d214489e2 100644
--- a/srcpkgs/python-urwidtrees/template
+++ b/srcpkgs/python-urwidtrees/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwidtrees'
 pkgname=python-urwidtrees
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="urwidtrees-${version}"
 build_style=python-module

From c9f3ad0ed793593060952aa365e888244dfd07e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 548/872] python3-usb: rebuild for Python 3.8.

---
 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 a081ee5ba76..d26c24df669 100644
--- a/srcpkgs/python3-usb/template
+++ b/srcpkgs/python3-usb/template
@@ -2,7 +2,7 @@
 pkgname=python3-usb
 _pkgname=pyusb
 version=1.0.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From 454ef49754696a81de599e7fa6cf9cab31ccbc31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 549/872] python-utils: rebuild for Python 3.8.

---
 srcpkgs/python-utils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-utils/template b/srcpkgs/python-utils/template
index e881e70c0f0..6745df121a6 100644
--- a/srcpkgs/python-utils/template
+++ b/srcpkgs/python-utils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-utils'
 pkgname=python-utils
 version=2.3.0
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 wrksrc="python-utils-${version}"

From eef5c75b93453defdcb8def5b34c20f20cda0fc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 550/872] python3-validators: rebuild for Python 3.8.

---
 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 29b9fc74c30..6d9da94c4bb 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.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="validators-${version}"
 build_style=python3-module

From 53ce0ff21de84f26405d0314002bb11e85903128 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 551/872] python3-vdf: rebuild for Python 3.8.

---
 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 44c635ecdd6..88bd521beaa 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.2
-revision=1
+revision=2
 wrksrc=vdf-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From f720d6ed8267fa4b27a7ce83dd3a265a18cd13b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 552/872] python-vint: rebuild for Python 3.8.

---
 srcpkgs/python-vint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vint/template b/srcpkgs/python-vint/template
index 4ca693f7eb2..62c663bf18e 100644
--- a/srcpkgs/python-vint/template
+++ b/srcpkgs/python-vint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vint'
 pkgname=python-vint
 version=0.3.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="vim-vint-${version}"
 build_style=python-module

From 573eadbcb861065b712050cf6e7fd200c33a73b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 553/872] python-virtualenv: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv/template b/srcpkgs/python-virtualenv/template
index 1f9166e79a2..cdeda28c53e 100644
--- a/srcpkgs/python-virtualenv/template
+++ b/srcpkgs/python-virtualenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv'
 pkgname=python-virtualenv
 version=16.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="virtualenv-${version}"
 build_style=python-module

From 25eda2949787b488dfc7cfc6512d02a4971d4f96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 554/872] python-virtualenv-clone: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv-clone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv-clone/template b/srcpkgs/python-virtualenv-clone/template
index 3c9f601bc6e..273b9ddf6d3 100644
--- a/srcpkgs/python-virtualenv-clone/template
+++ b/srcpkgs/python-virtualenv-clone/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv-clone'
 pkgname=python-virtualenv-clone
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5a922ea064a496fb01ff970e45a43ef51561b373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 555/872] python3-virustotal-api: rebuild for Python 3.8.

---
 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 2bc6592c91f..fc362c03b39 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=1
+revision=2
 archs=noarch
 wrksrc="virustotal-api-${version}"
 build_style=python3-module

From 65deaff01a3a9a5d82641fe121fdb2964b75346f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 556/872] python-vispy: rebuild for Python 3.8.

---
 srcpkgs/python-vispy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vispy/template b/srcpkgs/python-vispy/template
index b757e5a271f..624ade6f12b 100644
--- a/srcpkgs/python-vispy/template
+++ b/srcpkgs/python-vispy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vispy'
 pkgname=python-vispy
 version=0.6.1
-revision=1
+revision=2
 wrksrc="vispy-${version}"
 build_style=python-module
 pycompile_module="vispy"

From 5e47d846dedfdbef61bd10a33928ce13b600c648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 557/872] python-vobject: rebuild for Python 3.8.

---
 srcpkgs/python-vobject/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vobject/template b/srcpkgs/python-vobject/template
index 54f575aa1a1..2c1c215527c 100644
--- a/srcpkgs/python-vobject/template
+++ b/srcpkgs/python-vobject/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vobject'
 pkgname=python-vobject
 version=0.9.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="vobject-${version}"
 build_style=python-module

From 8125ffd3d4822ca6bf81508ed8b859e079cd9437 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 558/872] python-voluptuous: rebuild for Python 3.8.

---
 srcpkgs/python-voluptuous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-voluptuous/template b/srcpkgs/python-voluptuous/template
index fd44ae2e324..1dd5de27491 100644
--- a/srcpkgs/python-voluptuous/template
+++ b/srcpkgs/python-voluptuous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-voluptuous'
 pkgname=python-voluptuous
 version=0.11.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="voluptuous-${version}"
 build_style=python-module

From 608126ee8043f8d45a8e56608f99e0df6cc2ee9e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 559/872] python-watchdog: rebuild for Python 3.8.

---
 srcpkgs/python-watchdog/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchdog/template b/srcpkgs/python-watchdog/template
index f6027c3b5ca..2eea6397f00 100644
--- a/srcpkgs/python-watchdog/template
+++ b/srcpkgs/python-watchdog/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchdog'
 pkgname=python-watchdog
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="watchdog-${version}"
 build_style=python-module

From a54fc09b58f905a0ed5cd5892db67b7c4ea6ae9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 560/872] python-watchman: rebuild for Python 3.8.

---
 srcpkgs/python-watchman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchman/template b/srcpkgs/python-watchman/template
index 4c41c275ca2..97400668d64 100644
--- a/srcpkgs/python-watchman/template
+++ b/srcpkgs/python-watchman/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchman'
 pkgname=python-watchman
 version=1.4.1
-revision=2
+revision=3
 wrksrc="pywatchman-${version}"
 build_style=python-module
 pycompile_module="pywatchman"

From 4dd6084e6c30a25fb4ff3c44bf2c751eaab07715 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 561/872] python-wcwidth: rebuild for Python 3.8.

---
 srcpkgs/python-wcwidth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wcwidth/template b/srcpkgs/python-wcwidth/template
index 34bc22cbcb6..8ec6d17450c 100644
--- a/srcpkgs/python-wcwidth/template
+++ b/srcpkgs/python-wcwidth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wcwidth'
 pkgname=python-wcwidth
 version=0.1.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="wcwidth-${version}"
 build_style=python-module

From cafaf5868e58cb26c2cdd29d0d1b52f9cf1e31ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 562/872] python-webassets: rebuild for Python 3.8.

---
 srcpkgs/python-webassets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webassets/template b/srcpkgs/python-webassets/template
index 3ad5475bd17..789be9684f7 100644
--- a/srcpkgs/python-webassets/template
+++ b/srcpkgs/python-webassets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webassets'
 pkgname=python-webassets
 version=0.12.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 88d8fa4eb1ca72857d5a1cab8a4f7495a9af1595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 563/872] python-webencodings: rebuild for Python 3.8.

---
 srcpkgs/python-webencodings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webencodings/template b/srcpkgs/python-webencodings/template
index 5a05af10835..f047a9e3c52 100644
--- a/srcpkgs/python-webencodings/template
+++ b/srcpkgs/python-webencodings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webencodings'
 pkgname=python-webencodings
 version=0.5.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="webencodings-${version}"
 build_style=python-module

From 81c9d07c0e756cc87a6cd2c444c0b2f0987463da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 564/872] python-websocket-client: rebuild for Python 3.8.

---
 srcpkgs/python-websocket-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-websocket-client/template b/srcpkgs/python-websocket-client/template
index 8aa276655cb..3df8ab42b36 100644
--- a/srcpkgs/python-websocket-client/template
+++ b/srcpkgs/python-websocket-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-websocket-client'
 pkgname=python-websocket-client
 version=0.56.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="websocket_client-${version}"
 build_style=python-module

From 97fc927913b3f2682b7ddf73982008e9fdc1e42d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 565/872] python-wheel: rebuild for Python 3.8.

---
 srcpkgs/python-wheel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wheel/template b/srcpkgs/python-wheel/template
index 11c50bd65e6..11aeaf42316 100644
--- a/srcpkgs/python-wheel/template
+++ b/srcpkgs/python-wheel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wheel'
 pkgname=python-wheel
 version=0.32.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="wheel-${version}"
 build_style=python-module

From 861d20f2f112cd829f2f06f746680e2c034a812f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 566/872] python-wikipedia: rebuild for Python 3.8.

---
 srcpkgs/python-wikipedia/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wikipedia/template b/srcpkgs/python-wikipedia/template
index e6ebf65f7c2..f8a69755b74 100644
--- a/srcpkgs/python-wikipedia/template
+++ b/srcpkgs/python-wikipedia/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wikipedia'
 pkgname=python-wikipedia
 version=1.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="wikipedia-${version}"
 build_style=python-module

From c58e9b08de69bd19aa3bcf91ec42d1b626a2a6bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 567/872] python-wrapt: rebuild for Python 3.8.

---
 srcpkgs/python-wrapt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wrapt/template b/srcpkgs/python-wrapt/template
index a3a237aa08d..c2d2850bf5a 100644
--- a/srcpkgs/python-wrapt/template
+++ b/srcpkgs/python-wrapt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wrapt'
 pkgname=python-wrapt
 version=1.10.11
-revision=3
+revision=4
 wrksrc="wrapt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From f65cbaf6b92acb78d54d3b498924285bce64fb66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 568/872] python-wsproto: rebuild for Python 3.8.

---
 srcpkgs/python-wsproto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wsproto/template b/srcpkgs/python-wsproto/template
index 88b08f796d4..a93a799be0a 100644
--- a/srcpkgs/python-wsproto/template
+++ b/srcpkgs/python-wsproto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wsproto'
 pkgname=python-wsproto
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="wsproto-${version}"
 build_style=python-module

From 1b60fb796f8ac377a2e31dc0503df215c27fc59e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 569/872] python-xapp: rebuild for Python 3.8.

---
 srcpkgs/python-xapp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xapp/template b/srcpkgs/python-xapp/template
index 9b6938113f2..798041eb946 100644
--- a/srcpkgs/python-xapp/template
+++ b/srcpkgs/python-xapp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xapp'
 pkgname=python-xapp
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="xapp"

From 415bec8de0abe2772c407df9db650bd06ba122ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 570/872] python-xdg: rebuild for Python 3.8.

---
 srcpkgs/python-xdg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xdg/template b/srcpkgs/python-xdg/template
index afa6c180043..4e819c8bec7 100644
--- a/srcpkgs/python-xdg/template
+++ b/srcpkgs/python-xdg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xdg'
 pkgname=python-xdg
 version=0.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyxdg-${version}"
 build_style=python-module

From 4518feeb499caa6631ef29ead0439c5bcc67a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 571/872] python-xlib: rebuild for Python 3.8.

---
 srcpkgs/python-xlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xlib/template b/srcpkgs/python-xlib/template
index 1f97c4117d4..e67d1d82e73 100644
--- a/srcpkgs/python-xlib/template
+++ b/srcpkgs/python-xlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xlib'
 pkgname=python-xlib
 version=0.25
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="Xlib"

From 1cef928049b5216468e701acce714fc14d79694f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 572/872] python-xmldiff: rebuild for Python 3.8.

---
 srcpkgs/python-xmldiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmldiff/template b/srcpkgs/python-xmldiff/template
index a0a8004ea7b..4f3cc2d27b7 100644
--- a/srcpkgs/python-xmldiff/template
+++ b/srcpkgs/python-xmldiff/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmldiff'
 pkgname=python-xmldiff
 version=2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmldiff-${version}"
 build_style=python-module

From cefcbea2ec7904b0c1ad16ec32963bf430b27c4a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 573/872] python-xmltodict: rebuild for Python 3.8.

---
 srcpkgs/python-xmltodict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmltodict/template b/srcpkgs/python-xmltodict/template
index a48e6d46aa6..b3d7ef042e8 100644
--- a/srcpkgs/python-xmltodict/template
+++ b/srcpkgs/python-xmltodict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmltodict'
 pkgname=python-xmltodict
 version=0.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmltodict-${version}"
 build_style=python-module

From 889d5fe9fe9f1830bec336ac52bd8bd32f47f0a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 574/872] python-yaml: rebuild for Python 3.8.

---
 srcpkgs/python-yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yaml/template b/srcpkgs/python-yaml/template
index 8a7caf1d99e..e3bad0ae59b 100644
--- a/srcpkgs/python-yaml/template
+++ b/srcpkgs/python-yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yaml'
 pkgname=python-yaml
 version=5.1.2
-revision=1
+revision=2
 wrksrc="PyYAML-${version}"
 build_style=python-module
 pycompile_module="yaml"

From 1b3e89ca272ae28a62064bf83eaff84332307682 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 575/872] python-yamllint: rebuild for Python 3.8.

---
 srcpkgs/python-yamllint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yamllint/template b/srcpkgs/python-yamllint/template
index 1a05e1043bb..d0b51ba637a 100644
--- a/srcpkgs/python-yamllint/template
+++ b/srcpkgs/python-yamllint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yamllint'
 pkgname=python-yamllint
 version=1.15.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="yamllint-${version}"
 build_style=python-module

From b233bcb50542e39ba02899ef3d1b833e385204e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 576/872] python3-yarl: rebuild for Python 3.8.

---
 srcpkgs/python3-yarl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-yarl/template b/srcpkgs/python3-yarl/template
index 222f176cfcf..ecb79a3cc9c 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.3.0
-revision=2
+revision=3
 wrksrc="yarl-${version}"
 build_style=python3-module
 pycompile_module="yarl"

From 484c2559f18644c63342db467c703e2e998e89b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 577/872] python-zc.lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-zc.lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zc.lockfile/template b/srcpkgs/python-zc.lockfile/template
index cb0bee99506..b77071af04f 100644
--- a/srcpkgs/python-zc.lockfile/template
+++ b/srcpkgs/python-zc.lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zc.lockfile'
 pkgname=python-zc.lockfile
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 364e398c8dd7e3dd141ceb1c22626ecf2a5b9b32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 578/872] python3-zeroconf: rebuild for Python 3.8.

---
 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 497a8bc6b69..dda37bd3dc4 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.23.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-zeroconf-${version}"
 build_style=python3-module

From 22b5d6236d8f0ff0050135b2e77eca608519b1ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 579/872] python3-zipp: rebuild for Python 3.8.

---
 srcpkgs/python3-zipp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-zipp/template b/srcpkgs/python3-zipp/template
index 8445c10825c..ba682915beb 100644
--- a/srcpkgs/python3-zipp/template
+++ b/srcpkgs/python3-zipp/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-zipp'
 pkgname=python3-zipp
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="zipp-${version}"
 build_style=python3-module

From c5c37d6e890a553e458333e610ab56b1a5c9b516 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 580/872] python-zipstream: rebuild for Python 3.8.

---
 srcpkgs/python-zipstream/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zipstream/template b/srcpkgs/python-zipstream/template
index 89079e21b22..2c7390127ac 100644
--- a/srcpkgs/python-zipstream/template
+++ b/srcpkgs/python-zipstream/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zipstream'
 pkgname=python-zipstream
 version=1.1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="python-zipstream-${version}"
 build_style=python-module

From bc31e25a00839c9d3cc5ac70edf0485ee4b21d4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 581/872] python3-zope.cachedescriptors: rebuild for Python
 3.8.

---
 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 bdd5ef41e21..1f1fae5b27b 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.3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="zope.cachedescriptors-${version}"
 build_style=python3-module

From 40a63988f3c2db41391f0a7ab6cde24a9b79ed05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 582/872] python-zope.component: rebuild for Python 3.8.

---
 srcpkgs/python-zope.component/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.component/template b/srcpkgs/python-zope.component/template
index 7cea5b9d71d..66ef109a4aa 100644
--- a/srcpkgs/python-zope.component/template
+++ b/srcpkgs/python-zope.component/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.component'
 pkgname=python-zope.component
 version=4.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 799496c35db93c88e6d00e4b41eeca8b4af5b188 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 583/872] python-zope.event: rebuild for Python 3.8.

---
 srcpkgs/python-zope.event/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.event/template b/srcpkgs/python-zope.event/template
index 3c7fb8dfd6e..6518cb4529b 100644
--- a/srcpkgs/python-zope.event/template
+++ b/srcpkgs/python-zope.event/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.event'
 pkgname=python-zope.event
 version=4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d77b16ecad39877131af8a9c01ea925b33737b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 584/872] python-zope.interface: rebuild for Python 3.8.

---
 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 d3c57be85f7..1dbcbecd377 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=4.6.0
-revision=2
+revision=3
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="zope"

From e5cb80612a71c54facf607c52c7a385badeba668 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 585/872] python3-pivy: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-pivy/patches/73cd928f.patch | 36 +++++++++++++++++++++
 srcpkgs/python3-pivy/template               |  2 +-
 2 files changed, 37 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/python3-pivy/patches/73cd928f.patch

diff --git a/srcpkgs/python3-pivy/patches/73cd928f.patch b/srcpkgs/python3-pivy/patches/73cd928f.patch
new file mode 100644
index 00000000000..edff803822a
--- /dev/null
+++ b/srcpkgs/python3-pivy/patches/73cd928f.patch
@@ -0,0 +1,36 @@
+From 73cd928fe1a9c2abbe6f28844a7fc695ad11d7cf Mon Sep 17 00:00:00 2001
+From: Peter Lama <peterldev94@gmail.com>
+Date: Fri, 24 Aug 2018 17:25:47 -0700
+Subject: [PATCH] Fix issue #39: PyUnicode_AsUTF8 returns const char*
+
+Even with python 2, it doesn't seem like char* is needed
+
+--- Inventor/nodes/SoMarkerSet.i
++++ Inventor/nodes/SoMarkerSet.i
+@@ -5,7 +5,7 @@
+         short WIDTH, HEIGHT;
+         size.getValue(WIDTH, HEIGHT);
+         short BYTEWIDTH = (WIDTH + 7) / 2;
+-        char* coin_marker;
++        const char* coin_marker;
+ #ifdef PY_2
+         if (PyString_Check(string))
+         {
+@@ -49,4 +49,4 @@
+         delete[] bitmapbytes;
+         bitmapbytes = NULL;
+     }
+-}
+\ No newline at end of file
++}
+--- Inventor/sensors/SoSensor.i
++++ Inventor/sensors/SoSensor.i
+@@ -4,7 +4,7 @@ SoSensorPythonCB(void * data, SoSensor * sensor)
+ {
+   PyGILState_STATE gil = PyGILState_Ensure();
+   swig_type_info * swig_type = 0;
+-  char * sensor_cast_name = NULL;
++  const char * sensor_cast_name = NULL;
+   PyObject * func, * arglist;
+   PyObject * result, * pysensor;
+ 
diff --git a/srcpkgs/python3-pivy/template b/srcpkgs/python3-pivy/template
index 4a733e805e3..9caa13837e2 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.4
-revision=1
+revision=2
 wrksrc="Coin3D-${pkgname#python3-}-a84100beff22"
 build_style=python3-module
 pycompile_module="pivy"

From 7d8cfe1721327d4b8695c6abc56d012b27989c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 586/872] python-tweepy: update to 3.8.0.

---
 srcpkgs/python-tweepy/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python-tweepy/template b/srcpkgs/python-tweepy/template
index ef61039dac5..4605bbf83ea 100644
--- a/srcpkgs/python-tweepy/template
+++ b/srcpkgs/python-tweepy/template
@@ -1,6 +1,6 @@
 # Template file for 'python-tweepy'
 pkgname=python-tweepy
-version=3.7.0
+version=3.8.0
 revision=1
 archs=noarch
 wrksrc="tweepy-${version}"
@@ -14,8 +14,8 @@ license="MIT"
 homepage="https://github.com/tweepy/tweepy"
 distfiles="${PYPI_SITE}/t/tweepy/tweepy-${version}.tar.gz
  https://raw.githubusercontent.com/tweepy/tweepy/master/LICENSE>LICENSE.txt"
-checksum="fe85a79f58a01dd335968523b91c5fce760e7fe78bf25a6e71c72204fe499d0b
- deeeae0dcc22dbf108a801b8dc4e484bcc1bfb541b1a4f4615ab3e61def44fb5"
+checksum="8abd828ba51a85a2b5bb7373715d6d3bb32d18ac624e3a4db02e4ef8ab48316b
+ bf9bc5b9dcb8421bb3c342bb7fd29194688e1262b50766bd71b21a07461e74b7"
 
 post_install() {
 	vlicense ../LICENSE.txt

From 5f654f2f6a7eca9a50adb53af9037466723dd82c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 587/872] Electron-Cash: rebuild for Python 3.8.

---
 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 2db05c94832..08670c5f08d 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.0.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electroncash electroncash_gui electroncash_plugins"

From 931f125f8699e33cb16c8ed43a5e910d0056db6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 588/872] OpenLP: rebuild for Python 3.8.

---
 srcpkgs/OpenLP/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/OpenLP/template b/srcpkgs/OpenLP/template
index fb417f8d05e..ccae6d0282e 100644
--- a/srcpkgs/OpenLP/template
+++ b/srcpkgs/OpenLP/template
@@ -1,7 +1,7 @@
 # Template file for 'OpenLP'
 pkgname=OpenLP
 version=2.4.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="openlp"

From 21b02367e81c8635c88830fd008c0ba44ffcccff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 589/872] PhotoCollage: rebuild for Python 3.8.

---
 srcpkgs/PhotoCollage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/PhotoCollage/template b/srcpkgs/PhotoCollage/template
index 2c55ca87ce0..9997d1e7d98 100644
--- a/srcpkgs/PhotoCollage/template
+++ b/srcpkgs/PhotoCollage/template
@@ -1,7 +1,7 @@
 # Template file for 'PhotoCollage'
 pkgname=PhotoCollage
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="photocollage"

From 49dffe4070ca7dff3c38379b8df9d9b0d04395ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 590/872] ReText: rebuild for Python 3.8.

---
 srcpkgs/ReText/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ReText/template b/srcpkgs/ReText/template
index cc092ee6a36..a6551fbdf7c 100644
--- a/srcpkgs/ReText/template
+++ b/srcpkgs/ReText/template
@@ -1,7 +1,7 @@
 # Template file for 'ReText'
 pkgname=ReText
 version=7.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ReText"

From 225e30aaea5daebb0d4fc36c6d73424ad6fb1ec5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 591/872] SoapySDR: rebuild for Python 3.8.

---
 srcpkgs/SoapySDR/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/SoapySDR/template b/srcpkgs/SoapySDR/template
index 1bb66ce0689..bcfe45dc78a 100644
--- a/srcpkgs/SoapySDR/template
+++ b/srcpkgs/SoapySDR/template
@@ -1,7 +1,7 @@
 # Template file for 'SoapySDR'
 pkgname=SoapySDR
 version=0.7.1
-revision=1
+revision=2
 wrksrc="${pkgname}-soapy-sdr-${version}"
 build_style=cmake
 pycompile_module="SoapySDR.py"

From 2e64750e75e61296567ebb0053c46081cbab8e13 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 592/872] Solaar: rebuild for Python 3.8.

---
 srcpkgs/Solaar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Solaar/template b/srcpkgs/Solaar/template
index 2e8f4112e0e..86cab83d497 100644
--- a/srcpkgs/Solaar/template
+++ b/srcpkgs/Solaar/template
@@ -1,7 +1,7 @@
 # Template file for 'Solaar'
 pkgname=Solaar
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="hidapi logitech_receiver solaar"

From 21eb59c332d0765268a9b3a5442e4e265144a4ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 593/872] Trimage: rebuild for Python 3.8.

---
 srcpkgs/Trimage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Trimage/template b/srcpkgs/Trimage/template
index 14fc1d1bd1c..c9f4b047ccd 100644
--- a/srcpkgs/Trimage/template
+++ b/srcpkgs/Trimage/template
@@ -1,7 +1,7 @@
 # Template file for 'Trimage'
 pkgname=Trimage
 version=1.0.6
-revision=1
+revision=2
 wrksrc="Trimage-${version}"
 build_style=python3-module
 hostmakedepends="python3"

From 51428dec66979d2e47361fb2af5e7ad35acbe530 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 594/872] TwitchNotifier: rebuild for Python 3.8.

---
 srcpkgs/TwitchNotifier/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/TwitchNotifier/template b/srcpkgs/TwitchNotifier/template
index 01153bcc710..3bbba11db49 100644
--- a/srcpkgs/TwitchNotifier/template
+++ b/srcpkgs/TwitchNotifier/template
@@ -1,7 +1,7 @@
 # Template file for 'TwitchNotifier'
 pkgname=TwitchNotifier
 version=0.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-devel"
 makedepends="python3-devel"

From 18ad02f16088cf17e66f60da882ead88b4872617 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 595/872] Uranium: rebuild for Python 3.8.

---
 srcpkgs/Uranium/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Uranium/template b/srcpkgs/Uranium/template
index 193d5e211df..7a9509c2079 100644
--- a/srcpkgs/Uranium/template
+++ b/srcpkgs/Uranium/template
@@ -1,7 +1,7 @@
 # Template file for 'Uranium'
 pkgname=Uranium
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=cmake
 pycompile_module="UM"

From 1bfabd6cc63a8b03b99500dc59e362061f7549e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 596/872] afew: rebuild for Python 3.8.

---
 srcpkgs/afew/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/afew/template b/srcpkgs/afew/template
index a9156bbc902..f4b10098e66 100644
--- a/srcpkgs/afew/template
+++ b/srcpkgs/afew/template
@@ -1,7 +1,7 @@
 # Template file for 'afew'
 pkgname=afew
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="afew"

From f0695c0a0e527ead9d61cbbd52e872f5a6e7f422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 597/872] alot: rebuild for Python 3.8.

---
 srcpkgs/alot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/alot/template b/srcpkgs/alot/template
index 4ff75637282..c8e29e36297 100644
--- a/srcpkgs/alot/template
+++ b/srcpkgs/alot/template
@@ -1,7 +1,7 @@
 # Template file for 'alot'
 pkgname=alot
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="alot"

From ec032cb507b4dca0034eab7e0281dedd3b7dc418 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 598/872] ansible: rebuild for Python 3.8.

---
 srcpkgs/ansible/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ansible/template b/srcpkgs/ansible/template
index 413e6f8803e..773f890e114 100644
--- a/srcpkgs/ansible/template
+++ b/srcpkgs/ansible/template
@@ -1,7 +1,7 @@
 # Template file for 'ansible'
 pkgname=ansible
 version=2.8.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ansible"

From a97554cec966a402d73b894865fe2d37f1833cec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 599/872] apparmor: rebuild for Python 3.8.

---
 srcpkgs/apparmor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/apparmor/template b/srcpkgs/apparmor/template
index c0ef28bae03..e4f8e3fb3ae 100644
--- a/srcpkgs/apparmor/template
+++ b/srcpkgs/apparmor/template
@@ -1,7 +1,7 @@
 # Template file for 'apparmor'
 pkgname=apparmor
 version=2.13.3
-revision=1
+revision=2
 wrksrc="${pkgname}-v${version}"
 build_wrksrc=libraries/libapparmor
 build_style=gnu-configure

From 57116ea3c564f2a1852b8583df85c35aefe177a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 600/872] arandr: rebuild for Python 3.8.

---
 srcpkgs/arandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/arandr/template b/srcpkgs/arandr/template
index 71c8cbcd6ed..610dbc28bca 100644
--- a/srcpkgs/arandr/template
+++ b/srcpkgs/arandr/template
@@ -1,7 +1,7 @@
 # Template file for 'arandr'
 pkgname=arandr
 version=0.1.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenlayout"

From 4dbfc32dae63dc77f95207dc5aa5a79d26d2c9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 601/872] asciinema: rebuild for Python 3.8.

---
 srcpkgs/asciinema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/asciinema/template b/srcpkgs/asciinema/template
index 961b2756301..38b8871753c 100644
--- a/srcpkgs/asciinema/template
+++ b/srcpkgs/asciinema/template
@@ -1,7 +1,7 @@
 # Template file for 'asciinema'
 pkgname=asciinema
 version=2.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="asciinema"

From 956b672f4c6db0ea67d9ad05a8308ec5ea193930 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 602/872] attic: rebuild for Python 3.8.

---
 srcpkgs/attic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/attic/template b/srcpkgs/attic/template
index 533ef7377bc..ed454302ce4 100644
--- a/srcpkgs/attic/template
+++ b/srcpkgs/attic/template
@@ -1,7 +1,7 @@
 # Template file for 'attic'
 pkgname=attic
 version=0.16
-revision=14
+revision=15
 wrksrc="Attic-$version"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel python3-Sphinx"

From 3a21ab47b75c96c91b8447979356e5d4d4027fd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 603/872] autorandr: rebuild for Python 3.8.

---
 srcpkgs/autorandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/autorandr/template b/srcpkgs/autorandr/template
index bf38b833632..7f9796be18f 100644
--- a/srcpkgs/autorandr/template
+++ b/srcpkgs/autorandr/template
@@ -1,7 +1,7 @@
 # Template file for 'autorandr'
 pkgname=autorandr
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="autorandr.py"

From ca443f3bf2b2ea4c91fa81f47ea823293476950b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 604/872] avideo: rebuild for Python 3.8.

---
 srcpkgs/avideo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/avideo/template b/srcpkgs/avideo/template
index e4d004aafff..6430d391286 100644
--- a/srcpkgs/avideo/template
+++ b/srcpkgs/avideo/template
@@ -1,7 +1,7 @@
 # Template file for 'avideo'
 pkgname=avideo
 version=2017.9.27
-revision=3
+revision=4
 archs=noarch
 wrksrc="avideo"
 build_style=python3-module

From b1abf9d1270b34913e7bd6dbfcd004dba8a8c5ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 605/872] aws-cli: rebuild for Python 3.8.

---
 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 4e5e200e3f9..4328e203c3c 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.16.253
-revision=1
+revision=2
 archs=noarch
 wrksrc="aws-cli-${version}"
 build_style=python3-module

From af6fd86e4f623114e23d8cd19217a8ba196231c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 606/872] bandit: rebuild for Python 3.8.

---
 srcpkgs/bandit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bandit/template b/srcpkgs/bandit/template
index e6c1aa52d7c..d29873ecf61 100644
--- a/srcpkgs/bandit/template
+++ b/srcpkgs/bandit/template
@@ -1,7 +1,7 @@
 # Template file for 'bandit'
 pkgname=bandit
 version=1.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="bandit"

From acb296380ef65f2682ec382f88706be8dc3bf79f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 607/872] beancount: rebuild for Python 3.8.

---
 srcpkgs/beancount/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beancount/template b/srcpkgs/beancount/template
index b1e2a121668..0ba68fc8f4e 100644
--- a/srcpkgs/beancount/template
+++ b/srcpkgs/beancount/template
@@ -1,7 +1,7 @@
 # Template file for 'beancount'
 pkgname=beancount
 version=2.2.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="beancount"
 hostmakedepends="python3-setuptools"

From 4d085c5998e4472b4e7b4fceabecba11440daceb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 608/872] beets: rebuild for Python 3.8.

---
 srcpkgs/beets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beets/template b/srcpkgs/beets/template
index 7dab56ceef8..975e6ec9f86 100644
--- a/srcpkgs/beets/template
+++ b/srcpkgs/beets/template
@@ -1,7 +1,7 @@
 # Template file for 'beets'
 pkgname=beets
 version=1.4.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="beets beetsplug"

From 1640cb62a84da8a46aff2a9c6ee5f75c0ab73224 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 609/872] black: rebuild for Python 3.8.

---
 srcpkgs/black/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/black/template b/srcpkgs/black/template
index f6d433038b9..38498a1db07 100644
--- a/srcpkgs/black/template
+++ b/srcpkgs/black/template
@@ -1,7 +1,7 @@
 # Template file for 'black'
 pkgname=black
 version=19.3b0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="black.py blib2to3"

From 5939f3d169c384cfe92957888f7b53678a69e770 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 610/872] blueman: rebuild for Python 3.8.

---
 srcpkgs/blueman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blueman/template b/srcpkgs/blueman/template
index 83f9b899583..3616aee7da3 100644
--- a/srcpkgs/blueman/template
+++ b/srcpkgs/blueman/template
@@ -1,7 +1,7 @@
 # Template file for 'blueman'
 pkgname=blueman
 version=2.1.1
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="blueman"
 configure_args="--disable-static"

From 325ad86e9fdcfc900e695cdcb3b40bc448b85d06 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 611/872] borg: rebuild for Python 3.8.

---
 srcpkgs/borg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borg/template b/srcpkgs/borg/template
index 520b1b2f65a..b69c7d3418e 100644
--- a/srcpkgs/borg/template
+++ b/srcpkgs/borg/template
@@ -1,7 +1,7 @@
 # Template file for 'borg'
 pkgname=borg
 version=1.1.10
-revision=2
+revision=3
 wrksrc="borgbackup-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel"

From 73a17277e22d3252a93a66237bf81a04393fc244 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 612/872] borgmatic: rebuild for Python 3.8.

---
 srcpkgs/borgmatic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borgmatic/template b/srcpkgs/borgmatic/template
index 8ef7c0568a6..bdc6446243c 100644
--- a/srcpkgs/borgmatic/template
+++ b/srcpkgs/borgmatic/template
@@ -1,7 +1,7 @@
 # Template file for 'borgmatic'
 pkgname=borgmatic
 version=1.3.24
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="borgmatic"

From 482c5d69113ad10842dfe91f0ac4a0631660ac77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 613/872] btrfs-backup: rebuild for Python 3.8.

---
 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 07d08a1b62b..55a3800a857 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=1
+revision=2
 wrksrc="${pkgname/-/_}-${version}"
 archs=noarch
 build_style=python3-module

From 4fce3c4f00a44852e3f9fcab80a10d4acfc04ad6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 614/872] bum: rebuild for Python 3.8.

---
 srcpkgs/bum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bum/template b/srcpkgs/bum/template
index 58d0bb2b7f7..20f200e74d6 100644
--- a/srcpkgs/bum/template
+++ b/srcpkgs/bum/template
@@ -1,7 +1,7 @@
 # Template file for 'bum'
 pkgname=bum
 version=0.1.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="bum"

From a384e5462965e984f1abca2ca12b7f62b1a415d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 615/872] caffeine-ng: rebuild for Python 3.8.

---
 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 36287fbef5b..455b2f225c4 100644
--- a/srcpkgs/caffeine-ng/template
+++ b/srcpkgs/caffeine-ng/template
@@ -1,7 +1,7 @@
 # Template file for 'caffeine-ng'
 pkgname=caffeine-ng
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="caffeine"

From b857565a7a7fddfbffbcf40b9e784593d099a0a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 616/872] cairo-dock-plugins: rebuild for Python 3.8.

---
 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 9e6149c617f..0c23a7f6928 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=11
+revision=12
 build_style=cmake
 hostmakedepends="pkg-config"
 # XXX libetpan, libdbusmenu, etc

From c0c15488d9189a782c2ab6436de598620d4d2435 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 617/872] canto-curses: rebuild for Python 3.8.

---
 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 0905972b480..4270d61c2e0 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=4
+revision=5
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel ncurses-devel readline-devel"

From a821add22450c016c7b851ee1a0309da5b5d83af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 618/872] canto-next: rebuild for Python 3.8.

---
 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 fff7e82e238..fa28bde891b 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.7
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From fa2afe1224ee7d1e031e769bf84bd596e5ac6de2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 619/872] capstone: rebuild for Python 3.8.

---
 srcpkgs/capstone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/capstone/template b/srcpkgs/capstone/template
index e13c7666ed1..fded7c7157e 100644
--- a/srcpkgs/capstone/template
+++ b/srcpkgs/capstone/template
@@ -1,7 +1,7 @@
 # Template file for 'capstone'
 pkgname=capstone
 version=4.0.1
-revision=1
+revision=2
 build_style=gnu-makefile
 make_use_env=1
 hostmakedepends="python-setuptools python3-setuptools"

From 923fca0cf844d03c602bbae81add86e8be495762 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 620/872] catfish: rebuild for Python 3.8.

---
 srcpkgs/catfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/catfish/template b/srcpkgs/catfish/template
index 1b28ffcafff..b53de6b8ea6 100644
--- a/srcpkgs/catfish/template
+++ b/srcpkgs/catfish/template
@@ -1,7 +1,7 @@
 # Template file for 'catfish'
 pkgname=catfish
 version=1.4.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="catfish catfish_lib"

From fb71b3b941c7341384c307ef6e1654b8d0b54a3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 621/872] ccsm: rebuild for Python 3.8.

---
 srcpkgs/ccsm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ccsm/template b/srcpkgs/ccsm/template
index 0421e587b23..3067003017f 100644
--- a/srcpkgs/ccsm/template
+++ b/srcpkgs/ccsm/template
@@ -1,7 +1,7 @@
 # Template file for 'ccsm'
 pkgname=ccsm
 version=0.8.16
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 hostmakedepends="automake intltool libtool pkg-config python3"

From f4212d55b3ec84e188189bc74a572c728a37c66a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 622/872] cheat: rebuild for Python 3.8.

---
 srcpkgs/cheat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cheat/template b/srcpkgs/cheat/template
index b60b4ba53b2..f1e419c3c5a 100644
--- a/srcpkgs/cheat/template
+++ b/srcpkgs/cheat/template
@@ -1,7 +1,7 @@
 # Template file for 'cheat'
 pkgname=cheat
 version=2.5.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="cheat"
 conf_files="/etc/cheat"

From eb72b0be44091e56a3e5b73cdf6d11ff80ecb8ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 623/872] clearine: rebuild for Python 3.8.

---
 srcpkgs/clearine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/clearine/template b/srcpkgs/clearine/template
index 419bb3c4550..539d494b79b 100644
--- a/srcpkgs/clearine/template
+++ b/srcpkgs/clearine/template
@@ -1,7 +1,7 @@
 # Template file for 'clearine'
 pkgname=clearine
 version=0.7
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="Clearine"
 hostmakedepends="python3-setuptools"

From ca7e63827b68cba4586e81da6e622e70addc8b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 624/872] coccigrep: rebuild for Python 3.8.

---
 srcpkgs/coccigrep/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/coccigrep/template b/srcpkgs/coccigrep/template
index 736f16a458e..a02c2f78bb2 100644
--- a/srcpkgs/coccigrep/template
+++ b/srcpkgs/coccigrep/template
@@ -1,7 +1,7 @@
 # Template file for 'coccigrep'
 pkgname=coccigrep
 version=1.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coccigrep"

From 8b0269365914ae7e030b07b30f4a76f2f1726270 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 625/872] compizconfig-python: rebuild for Python 3.8.

---
 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 b9d9ce2892b..77d53c97f46 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.16
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static"
 hostmakedepends="automake intltool libtool pkg-config glib-devel gettext-devel python3-Cython"

From c7955381746f2b68e5bb140afe81526fd62a2d16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 626/872] coursera-dl: rebuild for Python 3.8.

---
 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 0dfdd73083f..2b09e53d836 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.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coursera"

From 1bf8d7143694f636186cfbdcf357f9b86f5a635b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 627/872] cozy: rebuild for Python 3.8.

---
 srcpkgs/cozy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cozy/template b/srcpkgs/cozy/template
index a35aff61f37..2515388da18 100644
--- a/srcpkgs/cozy/template
+++ b/srcpkgs/cozy/template
@@ -1,7 +1,7 @@
 # Template file for 'cozy'
 pkgname=cozy
 version=0.6.8
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 pycompile_module="cozy"

From 7b58e6f69ae54c84b50dfe4d6041cf861a698c60 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 628/872] cpuset: rebuild for Python 3.8.

---
 srcpkgs/cpuset/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cpuset/template b/srcpkgs/cpuset/template
index cf3910d2304..12b54631617 100644
--- a/srcpkgs/cpuset/template
+++ b/srcpkgs/cpuset/template
@@ -1,7 +1,7 @@
 # Template file for 'cpuset'
 pkgname=cpuset
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="cpuset"

From a542aca478f0e84bbc23d3fd91a236635712a9f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 629/872] ctop: rebuild for Python 3.8.

---
 srcpkgs/ctop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ctop/template b/srcpkgs/ctop/template
index b8ea58515b2..5231b4a4cb3 100644
--- a/srcpkgs/ctop/template
+++ b/srcpkgs/ctop/template
@@ -1,7 +1,7 @@
 # Template file for 'ctop'
 pkgname=ctop
 version=1.0.0
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="cgroup_top.py"

From b3065c411c5e0b3e48432c6901e1e7fb20eb00d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 630/872] cura: rebuild for Python 3.8.

---
 srcpkgs/cura/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cura/template b/srcpkgs/cura/template
index 31318e5aecf..ab5cd315f21 100644
--- a/srcpkgs/cura/template
+++ b/srcpkgs/cura/template
@@ -1,7 +1,7 @@
 # Template file for 'cura'
 pkgname=cura
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Cura-${version}"
 build_style=cmake

From 9f4eb67830feb2103a78edc7651e1f73cc606074 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 631/872] curseradio: rebuild for Python 3.8.

---
 srcpkgs/curseradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/curseradio/template b/srcpkgs/curseradio/template
index 4fe2306364a..f5afe3bba34 100644
--- a/srcpkgs/curseradio/template
+++ b/srcpkgs/curseradio/template
@@ -1,7 +1,7 @@
 # Template file for 'curseradio'
 pkgname=curseradio
 version=0.0.20171017
-revision=3
+revision=4
 archs=noarch
 _commit=1bd4bd0faeec675e0647bac9a100b526cba19f8d
 wrksrc="curseradio-${_commit}"

From fa4e6156adf5c317bb85ee1d8271c9e6ce57b3e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 632/872] d-feet: rebuild for Python 3.8.

---
 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 6930eddf582..7f7d593f30a 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.15
-revision=1
+revision=2
 build_style=meson
 maintainer="Enno Boland <gottox@voidlinux.org>"
 hostmakedepends="pkg-config intltool itstool python3-pycodestyle"

From d6145053ac873c90f6383dee8ec4d696463928f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 633/872] deluge: rebuild for Python 3.8.

---
 srcpkgs/deluge/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/deluge/template b/srcpkgs/deluge/template
index 6dc7f26184d..8148c68033c 100644
--- a/srcpkgs/deluge/template
+++ b/srcpkgs/deluge/template
@@ -1,7 +1,7 @@
 # Template file for 'deluge'
 pkgname=deluge
 version=2.0.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="deluge"

From 0b2691a90e5de63e49a3c3f3adfa709d618b0a05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 634/872] devedeng: rebuild for Python 3.8.

---
 srcpkgs/devedeng/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/devedeng/template b/srcpkgs/devedeng/template
index d971b2e207b..2d0516cedd3 100644
--- a/srcpkgs/devedeng/template
+++ b/srcpkgs/devedeng/template
@@ -1,7 +1,7 @@
 # Template file for 'devedeng'
 pkgname=devedeng
 version=4.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="devedeng"

From 8b7c3bcfced7b21089b0a64ac1c375eb973af343 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 635/872] distcc: rebuild for Python 3.8.

---
 srcpkgs/distcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/distcc/template b/srcpkgs/distcc/template
index ded4255becd..4d6a450533f 100644
--- a/srcpkgs/distcc/template
+++ b/srcpkgs/distcc/template
@@ -1,7 +1,7 @@
 # Template file for 'distcc'
 pkgname=distcc
 version=3.3.3
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-Werror --with-gtk"
 conf_files="

From 98151a807bebdc6d5e41e0b6a1bd0d65659fbb7e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 636/872] docker-compose: rebuild for Python 3.8.

---
 srcpkgs/docker-compose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/docker-compose/template b/srcpkgs/docker-compose/template
index c3383fdf1ad..f4a34005c83 100644
--- a/srcpkgs/docker-compose/template
+++ b/srcpkgs/docker-compose/template
@@ -1,7 +1,7 @@
 # Template file for 'docker-compose'
 pkgname=docker-compose
 version=1.24.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="compose-${version}"
 build_style=python3-module

From 9dc2f62edc54b5e314c24fe7bb303496223adb45 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 637/872] edx-dl: rebuild for Python 3.8.

---
 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 209884640c6..a51c917d606 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.10
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="edx_dl"

From 6a769ff00b2fc959627e96d44172f8a656548751 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 638/872] electrum: rebuild for Python 3.8.

---
 srcpkgs/electrum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template
index 3861becdda9..7525e08e9e2 100644
--- a/srcpkgs/electrum/template
+++ b/srcpkgs/electrum/template
@@ -1,7 +1,7 @@
 # Template file for 'electrum'
 pkgname=electrum
 version=3.3.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electrum electrum_gui electrum_plugins"

From be52dccd4b30af3377095664bf239767a0f7be39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 639/872] electrum-ltc: rebuild for Python 3.8.

---
 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 ad6f745e152..cf7265fbec8 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.6.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"

From 45951afeb4bab3066e0459cf1441d9c3570c85dc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 640/872] eolie: rebuild for Python 3.8.

---
 srcpkgs/eolie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eolie/template b/srcpkgs/eolie/template
index b3da3dcd829..94514510c98 100644
--- a/srcpkgs/eolie/template
+++ b/srcpkgs/eolie/template
@@ -1,7 +1,7 @@
 # Template file for 'eolie'
 pkgname=eolie
 version=0.9.62
-revision=1
+revision=2
 _eolie_hash=bb4aad19272cc636bd17f2f6602127fe
 build_style=meson
 pycompile_module="eolie"

From ad02dba2226dbfc6b1fb5e715af8b58821cd8c07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 641/872] eyeD3: rebuild for Python 3.8.

---
 srcpkgs/eyeD3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eyeD3/template b/srcpkgs/eyeD3/template
index 7be047810bd..211553f0adb 100644
--- a/srcpkgs/eyeD3/template
+++ b/srcpkgs/eyeD3/template
@@ -1,7 +1,7 @@
 # Template file for 'eyeD3'
 pkgname=eyeD3
 version=0.8.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="eyed3"

From 5333d561e8831b7103f00f5e4564ce20bc26e9b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 642/872] fail2ban: rebuild for Python 3.8.

---
 srcpkgs/fail2ban/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 829e93385dc..361bcd12edd 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,7 +1,7 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
 version=0.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From 6ed6f50c8422b21b0f8244e983014120a3467562 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 643/872] fava: rebuild for Python 3.8.

---
 srcpkgs/fava/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fava/template b/srcpkgs/fava/template
index 24e66cac45b..890858b095b 100644
--- a/srcpkgs/fava/template
+++ b/srcpkgs/fava/template
@@ -1,7 +1,7 @@
 # Template file for 'fava'
 pkgname=fava
 version=1.11
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fava"

From cfe04c8e627d5d3626d852a05f3a87ecf053557f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 644/872] fierce: rebuild for Python 3.8.

---
 srcpkgs/fierce/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fierce/template b/srcpkgs/fierce/template
index 86dedb39ad2..86692c6457b 100644
--- a/srcpkgs/fierce/template
+++ b/srcpkgs/fierce/template
@@ -1,7 +1,7 @@
 # Template file for 'fierce'
 pkgname=fierce
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fierce"

From c67a6380bd6f21a660d10cde09cb2930536faee5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 645/872] fifengine: rebuild for Python 3.8.

---
 srcpkgs/fifengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fifengine/template b/srcpkgs/fifengine/template
index 1d4bcbb9297..871c94ad7e0 100644
--- a/srcpkgs/fifengine/template
+++ b/srcpkgs/fifengine/template
@@ -1,7 +1,7 @@
 # Template file for 'fifengine'
 pkgname=fifengine
 version=0.4.2
-revision=1
+revision=2
 build_style=cmake
 pycompile_module="fife"
 hostmakedepends="swig python3"

From 407bb3354f4705ac3e7d9c40479ff7272cbf5478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 646/872] flake8: rebuild for Python 3.8.

---
 srcpkgs/flake8/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/flake8/template b/srcpkgs/flake8/template
index d8f2b095644..4d7ebeba176 100644
--- a/srcpkgs/flake8/template
+++ b/srcpkgs/flake8/template
@@ -1,7 +1,7 @@
 # Template file for 'flake8'
 pkgname=flake8
 version=3.7.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="flake8"

From 770a2460b2b1f167fe87687c22ab0ff3d925964d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 647/872] fontforge: fix and rebuild for Python 3.8.

---
 srcpkgs/fontforge/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/fontforge/template b/srcpkgs/fontforge/template
index 7fb02d7e371..2893bc52cfb 100644
--- a/srcpkgs/fontforge/template
+++ b/srcpkgs/fontforge/template
@@ -1,7 +1,7 @@
 # Template file for 'fontforge'
 pkgname=fontforge
 version=20190801
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake ca-certificates git libltdl-devel libtool m4
  pkg-config python3"
@@ -20,6 +20,7 @@ checksum="e4501de5bd8e7f6c68fe7d3abd4667bf44a07b981d342ffa00e8f42e155ce633
  1bf9c7eb8835e6ed94e62cb49f1141bc046c562849e52e6c3c7f1d7cfc95c7b3"
 
 pre_configure() {
+        sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION}/&-embed/g' m4/fontforge_arg_enable.m4
 	./bootstrap
 }
 

From b878e1d66ee439999393e2aa55941b07f8e6c745 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 648/872] gajim: rebuild for Python 3.8.

---
 srcpkgs/gajim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gajim/template b/srcpkgs/gajim/template
index 8c49c0cf6ef..e81015b3906 100644
--- a/srcpkgs/gajim/template
+++ b/srcpkgs/gajim/template
@@ -1,7 +1,7 @@
 # Template file for 'gajim'
 pkgname=gajim
 version=1.1.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gajim"

From e0ad178e264be367206a16d9b96524e6d37e4b22 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 649/872] gajim-omemo: rebuild for Python 3.8.

---
 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 803f94713be..64d47228496 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.6.29
-revision=1
+revision=2
 wrksrc="omemo"
 hostmakedepends="unzip"
 depends="python3 python3-setuptools python3-cryptography python3-axolotl python3-qrcode"

From 4988da06fe14563631406801f6b22795355576a4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 650/872] gallery-dl: rebuild for Python 3.8.

---
 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 a1e8c633fe3..62b338a32e3 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.10.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gallery_dl"

From 7d5c0c0d7a1dcc5f3c504ed769a3730c7d688ed3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 651/872] gandi-cli: rebuild for Python 3.8.

---
 srcpkgs/gandi-cli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gandi-cli/template b/srcpkgs/gandi-cli/template
index c5e805a09fd..4193bfe4638 100644
--- a/srcpkgs/gandi-cli/template
+++ b/srcpkgs/gandi-cli/template
@@ -1,7 +1,7 @@
 # Template file for 'gandi-cli'
 pkgname=gandi-cli
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="gandi.cli-${version}"
 build_style=python3-module

From 7ae81741d5a1d24c19e0950a8631b2afb2f66301 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 652/872] gcovr: rebuild for Python 3.8.

---
 srcpkgs/gcovr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gcovr/template b/srcpkgs/gcovr/template
index 2b9ff94bf2a..0d4addfc8a7 100644
--- a/srcpkgs/gcovr/template
+++ b/srcpkgs/gcovr/template
@@ -1,7 +1,7 @@
 # Template file for 'gcovr'
 pkgname=gcovr
 version=4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gcovr"

From ff745f27bbeb2148c202a6cfde42c27c27ffb081 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 653/872] gedit: rebuild for Python 3.8.

---
 srcpkgs/gedit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gedit/template b/srcpkgs/gedit/template
index 904d3b7c3c4..6666c331c52 100644
--- a/srcpkgs/gedit/template
+++ b/srcpkgs/gedit/template
@@ -1,7 +1,7 @@
 # Template file for 'gedit'
 pkgname=gedit
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gi/overrides"

From 6d37a1560ee94e42e383c5bc4cba87d59366a1bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 654/872] geis: rebuild for Python 3.8.

---
 srcpkgs/geis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/geis/template b/srcpkgs/geis/template
index fe31a3d2aeb..20afe76b0d8 100644
--- a/srcpkgs/geis/template
+++ b/srcpkgs/geis/template
@@ -1,7 +1,7 @@
 # Template file for 'geis'
 pkgname=geis
 version=2.2.17
-revision=4
+revision=5
 hostmakedepends="pkg-config python3-devel"
 makedepends="dbus-devel grail-devel frame-devel libXi-devel python3-devel xorg-server-devel"
 build_style="gnu-configure"

From 83ad8dc7e8dc71c64a9004e04aba36ca30c051fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 655/872] git-cola: rebuild for Python 3.8.

---
 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 7eaba90f3be..fd0bbf971d3 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.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/share/git-cola/lib"

From 69e4bac4c10842ce70ce2a1db26f883af407e79c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 656/872] git-review: rebuild for Python 3.8.

---
 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 d999dc87b16..c180cc60780 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="git_review"

From 7c0a260d7120bd5e0e4e27c6b30b83e9dfe60359 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 657/872] git-revise: rebuild for Python 3.8.

---
 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 4179a52bddc..a1bf51dc447 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.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gitrevise"

From 49a8265f4cd71c84814307928cbbd2eb33c4bbad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 658/872] gitg: rebuild for Python 3.8.

---
 srcpkgs/gitg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gitg/template b/srcpkgs/gitg/template
index e0da8e9490d..a3381fdb3a7 100644
--- a/srcpkgs/gitg/template
+++ b/srcpkgs/gitg/template
@@ -1,7 +1,7 @@
 # Template file for 'gitg'
 pkgname=gitg
 version=3.32.1
-revision=1
+revision=2
 build_style=meson
 hostmakedepends="intltool pkg-config gobject-introspection vala glib-devel"
 makedepends="gtksourceview-devel libgit2-glib-devel libgee08-devel gtkspell3-devel

From 5b5919636d70cb1259ebd7740e9b55936a7c29f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 659/872] glances: rebuild for Python 3.8.

---
 srcpkgs/glances/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glances/template b/srcpkgs/glances/template
index 6d4766493c3..753d9e20c92 100644
--- a/srcpkgs/glances/template
+++ b/srcpkgs/glances/template
@@ -1,7 +1,7 @@
 # Template file for 'glances'
 pkgname=glances
 version=3.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Glances-${version}"
 build_style=python3-module

From 8b16492c679f3eb6c6ae2d4573f9adeb356715be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 660/872] glusterfs: rebuild for Python 3.8.

---
 srcpkgs/glusterfs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glusterfs/template b/srcpkgs/glusterfs/template
index a1304e266fe..90093864286 100644
--- a/srcpkgs/glusterfs/template
+++ b/srcpkgs/glusterfs/template
@@ -1,7 +1,7 @@
 # Template file for 'glusterfs'
 pkgname=glusterfs
 version=6.5
-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 22925c23326876f7422d67e1f21f0e629b9c7ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 661/872] gnome-authenticator: rebuild for Python 3.8.

---
 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 52d161897c7..ab7c505c0fe 100644
--- a/srcpkgs/gnome-authenticator/template
+++ b/srcpkgs/gnome-authenticator/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-authenticator'
 pkgname=gnome-authenticator
 version=0.2.4
-revision=2
+revision=3
 _libgd_hash=7ae254bfc5f641c60566614e08245176f7bc5aa8
 wrksrc="Authenticator-${version}"
 build_style=meson

From 4130139a7454a2050f48c6feac4f9312c50219d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 662/872] gnome-music: rebuild for Python 3.8.

---
 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 bceb7c369c8..e2fbbcbdeca 100644
--- a/srcpkgs/gnome-music/template
+++ b/srcpkgs/gnome-music/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-music'
 pkgname=gnome-music
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gnomemusic"

From 94b0589cc1f42f2505ac86d6596ab748ab75e02f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 663/872] gnome-passbook: rebuild for Python 3.8.

---
 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 54035dc920b..89047338503 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.1
-revision=1
+revision=2
 _release_hash=0a227cfdf706f4bfcc0b782026f1aeb2
 wrksrc="passbook-${version}"
 build_style=meson

From 76dae990f2ec69291f7826391c7a375014867fb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 664/872] gnome-passwordsafe: rebuild for Python 3.8.

---
 srcpkgs/gnome-passwordsafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnome-passwordsafe/template b/srcpkgs/gnome-passwordsafe/template
index f310ce03a08..8f1f19174d2 100644
--- a/srcpkgs/gnome-passwordsafe/template
+++ b/srcpkgs/gnome-passwordsafe/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-passwordsafe'
 pkgname=gnome-passwordsafe
 version=3.32.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="PasswordSafe-${version}"
 build_style=meson

From ebb227d14a2271cc033506f2dd54957eecc5b719 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 665/872] gns3-gui: rebuild for Python 3.8.

---
 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 38751dea59b..f4318dc6afc 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.1.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3"

From b44e9cf882e059036ed7e3834cafdf689c956e32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 666/872] gns3-net-converter: rebuild for Python 3.8.

---
 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 b9b7403e8a6..70b6c90e8c8 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=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3converter"

From eaf37536ad96d1421cc95823589d2cd21779089d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 667/872] gns3-server: rebuild for Python 3.8.

---
 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 6bd9c067b20..739c584cb7c 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.1.21
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="gns3server"
 hostmakedepends="python3-setuptools"

From 3a2540b9e2143af7b07dcaee0ed3930b9016dc1e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 668/872] gnucash: rebuild for Python 3.8.

---
 srcpkgs/gnucash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnucash/template b/srcpkgs/gnucash/template
index 68bb811fc42..d8ff0a8ec86 100644
--- a/srcpkgs/gnucash/template
+++ b/srcpkgs/gnucash/template
@@ -1,7 +1,7 @@
 # Template file for 'gnucash'
 pkgname=gnucash
 version=3.7
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DWITH_SQL=0 -DWITH_PYTHON=1"
 hostmakedepends="pkg-config guile python3 libxslt perl"

From c1420969fc916318d29dfdc3836adf0580095969 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 669/872] gom: rebuild for Python 3.8.

---
 srcpkgs/gom/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gom/template b/srcpkgs/gom/template
index 6ec2a5e338f..0b45e19def4 100644
--- a/srcpkgs/gom/template
+++ b/srcpkgs/gom/template
@@ -1,7 +1,7 @@
 # Template file for 'gom'
 pkgname=gom
 version=0.3.3
-revision=3
+revision=4
 build_style=meson
 build_helper="gir"
 configure_args="-Denable-introspection=$(vopt_if gir true false)

From e55d5d66739df70ca67793cbca3b12aa5f01e751 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 670/872] gpodder: rebuild for Python 3.8.

---
 srcpkgs/gpodder/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gpodder/template b/srcpkgs/gpodder/template
index 7c7414e19cd..5cc63ab4205 100644
--- a/srcpkgs/gpodder/template
+++ b/srcpkgs/gpodder/template
@@ -1,7 +1,7 @@
 # Template file for 'gpodder'
 pkgname=gpodder
 version=3.10.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="gpodder-${version}"
 make_check_target=unittest

From d91d30f5f2b0b5e6323da1f35eaf923fed0a111f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 671/872] gramps: rebuild for Python 3.8.

---
 srcpkgs/gramps/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gramps/template b/srcpkgs/gramps/template
index 9d1d1a4616a..5d40aeefb49 100644
--- a/srcpkgs/gramps/template
+++ b/srcpkgs/gramps/template
@@ -1,7 +1,7 @@
 # Template file for 'gramps'
 pkgname=gramps
 version=5.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gramps"

From bb3e960f11dda36c822c8bd1e8575b2a69ce9a66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 672/872] greg: rebuild for Python 3.8.

---
 srcpkgs/greg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/greg/template b/srcpkgs/greg/template
index 9c15ba82f4b..d898d5fdf61 100644
--- a/srcpkgs/greg/template
+++ b/srcpkgs/greg/template
@@ -1,7 +1,7 @@
 # Template file for 'greg'
 pkgname=greg
 version=0.4.7
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 pycompile_module="greg"

From be202bce8c20fb165e811e32683e96aae42b1452 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 673/872] gst1-python3: rebuild for Python 3.8.

---
 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 6f02f19aca3..bf946f6a8bf 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.16.1
-revision=1
+revision=2
 wrksrc="gst-python-${version}"
 build_style=meson
 pycompile_module="gi/overrides"

From b9ef9fe5fb2d7b03831106592cfae54a25c41a0f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 674/872] guake: rebuild for Python 3.8.

---
 srcpkgs/guake/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/guake/template b/srcpkgs/guake/template
index 86eaba649a7..d92fdf89355 100644
--- a/srcpkgs/guake/template
+++ b/srcpkgs/guake/template
@@ -1,7 +1,7 @@
 # Template file for 'guake'
 pkgname=guake
 version=3.6.3
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 wrksrc="Guake-${version}"

From a53d49cbf26761960b1d159a12df007b627e7650 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 675/872] gufw: rebuild for Python 3.8.

---
 srcpkgs/gufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gufw/template b/srcpkgs/gufw/template
index d2b8a4b025d..a4e7d861d71 100644
--- a/srcpkgs/gufw/template
+++ b/srcpkgs/gufw/template
@@ -1,7 +1,7 @@
 # Template file for 'gufw'
 pkgname=gufw
 version=19.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="gui-ufw-${version}"
 build_style=python3-module

From 165d3546e52431e5cb6d8f7534344eb7da2982a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 676/872] hamlib: rebuild for Python 3.8.

---
 srcpkgs/hamlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hamlib/template b/srcpkgs/hamlib/template
index c28a069cd6f..d52436c0893 100644
--- a/srcpkgs/hamlib/template
+++ b/srcpkgs/hamlib/template
@@ -1,7 +1,7 @@
 # Template file for 'hamlib'
 pkgname=hamlib
 version=3.3
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static --with-perl-binding --with-python-binding
  --with-tcl-binding --with-xml-support"

From fe67c3b8e01dac359eba93dada80286f4b7bd546 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 677/872] hangups: rebuild for Python 3.8.

---
 srcpkgs/hangups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hangups/template b/srcpkgs/hangups/template
index 0a2f2db16b4..0837a2c47c3 100644
--- a/srcpkgs/hangups/template
+++ b/srcpkgs/hangups/template
@@ -1,7 +1,7 @@
 # Template file for 'hangups'
 pkgname=hangups
 version=0.4.9
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="hangups"
 hostmakedepends="python3-setuptools"

From 54c05618d6ea2a636e7649b6dfb4df7e9097df99 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 678/872] hplip: rebuild for Python 3.8.

---
 srcpkgs/hplip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hplip/template b/srcpkgs/hplip/template
index 07a707569f6..3ef76e4591b 100644
--- a/srcpkgs/hplip/template
+++ b/srcpkgs/hplip/template
@@ -1,7 +1,7 @@
 # Template file for 'hplip'
 pkgname=hplip
 version=3.19.8
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="usr/share/hplip"
 configure_args="

From b9133921feebbc073c9d3cecdc138c34dd553caa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 679/872] httpie: rebuild for Python 3.8.

---
 srcpkgs/httpie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/httpie/template b/srcpkgs/httpie/template
index 387af8ebf05..61fc1499d35 100644
--- a/srcpkgs/httpie/template
+++ b/srcpkgs/httpie/template
@@ -1,7 +1,7 @@
 # Template file for 'httpie'
 pkgname=httpie
 version=1.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="httpie"

From 6c6626a47930ae266d4f95bc011f99e15b7237a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 680/872] ibus: rebuild for Python 3.8.

---
 srcpkgs/ibus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ibus/template b/srcpkgs/ibus/template
index 4875c7535d6..d3c35d786a4 100644
--- a/srcpkgs/ibus/template
+++ b/srcpkgs/ibus/template
@@ -1,7 +1,7 @@
 # Template file for 'ibus'
 pkgname=ibus
 version=1.5.20
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 configure_args="--enable-ui --enable-gtk3 --disable-tests

From ad8f78bd52e9d9925d746e1bbca9a926040dc866 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 681/872] iotop: rebuild for Python 3.8.

---
 srcpkgs/iotop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template
index 146a9e97791..522bf32a7c2 100644
--- a/srcpkgs/iotop/template
+++ b/srcpkgs/iotop/template
@@ -1,7 +1,7 @@
 # Template file for 'iotop'
 pkgname=iotop
 version=0.6
-revision=5
+revision=6
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From bf6b1d411e5f8d2459161a4599d66d7148220c48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 682/872] jrnl: rebuild for Python 3.8.

---
 srcpkgs/jrnl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template
index 3d08f129885..b184ef09508 100644
--- a/srcpkgs/jrnl/template
+++ b/srcpkgs/jrnl/template
@@ -1,7 +1,7 @@
 # Template file for 'jrnl'
 pkgname=jrnl
 version=1.9.8
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="jrnl"

From 3262fda476f3282359c09dd2902deac5997a3394 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 683/872] khal: rebuild for Python 3.8.

---
 srcpkgs/khal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khal/template b/srcpkgs/khal/template
index 39d08a66ba8..a73516695bf 100644
--- a/srcpkgs/khal/template
+++ b/srcpkgs/khal/template
@@ -1,7 +1,7 @@
 # Template file for 'khal'
 pkgname=khal
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khal"

From be7f25caca1d74c5f9f58c4cc40c3f3f889971d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 684/872] khard: rebuild for Python 3.8.

---
 srcpkgs/khard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khard/template b/srcpkgs/khard/template
index 6c6f3024be1..3ec9f398d99 100644
--- a/srcpkgs/khard/template
+++ b/srcpkgs/khard/template
@@ -1,7 +1,7 @@
 # Template file for 'khard'
 pkgname=khard
 version=0.14.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khard"

From 0509f15447526a6132348baf9eb600d22a0c20f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 685/872] lfm: rebuild for Python 3.8.

---
 srcpkgs/lfm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lfm/template b/srcpkgs/lfm/template
index 0a0a3b4f563..1e0e7cf29fa 100644
--- a/srcpkgs/lfm/template
+++ b/srcpkgs/lfm/template
@@ -1,7 +1,7 @@
 # Template file for 'lfm'
 pkgname=lfm
 version=3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 9ac423037b0a4806134116f0b6501d27f2bb3047 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 686/872] libArcus: rebuild for Python 3.8.

---
 srcpkgs/libArcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libArcus/template b/srcpkgs/libArcus/template
index 8e6c97ada21..d2ffda576d4 100644
--- a/srcpkgs/libArcus/template
+++ b/srcpkgs/libArcus/template
@@ -1,7 +1,7 @@
 # Template file for 'libArcus'
 pkgname=libArcus
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DBUILD_EXAMPLES=OFF"
 hostmakedepends="protobuf python3-sip-devel"

From 8a5c0bc1b4d750fbb633dcfb68645bdb8e23ac37 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 687/872] libSavitar: rebuild for Python 3.8.

---
 srcpkgs/libSavitar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libSavitar/template b/srcpkgs/libSavitar/template
index a9d3020158f..213f02f4d65 100644
--- a/srcpkgs/libSavitar/template
+++ b/srcpkgs/libSavitar/template
@@ -1,7 +1,7 @@
 # Template file for 'libSavitar'
 pkgname=libSavitar
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 hostmakedepends="python3"
 makedepends="python3-sip-devel python3-devel pugixml-devel"

From 888da49c1bb8061c80359b4015485b151f0d74d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 688/872] libaccounts-glib: rebuild for Python 3.8.

---
 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 717be24f209..239f9307261 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=2
+revision=3
 wrksrc="${pkgname}-VERSION_${version}-8948717702424ce15f4e23e5db2c8ce0799ec120"
 build_style=meson
 hostmakedepends="gtk-doc pkg-config glib-devel gobject-introspection vala"

From bd98c3c06982e10c3f9df1df66d5b04f1a5ef434 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 689/872] libblockdev: rebuild for Python 3.8.

---
 srcpkgs/libblockdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libblockdev/template b/srcpkgs/libblockdev/template
index 1df156e3c5b..ff20fc70618 100644
--- a/srcpkgs/libblockdev/template
+++ b/srcpkgs/libblockdev/template
@@ -1,7 +1,7 @@
 # Template file for 'libblockdev'
 pkgname=libblockdev
 version=2.21
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="cryptsetup-devel device-mapper-devel dmraid-devel libbytesize-devel

From 41b298fd633e7e588071f06e8d421ed9b2c21a8c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 690/872] libbytesize: rebuild for Python 3.8.

---
 srcpkgs/libbytesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libbytesize/template b/srcpkgs/libbytesize/template
index ee1862d889d..e07cdf29a82 100644
--- a/srcpkgs/libbytesize/template
+++ b/srcpkgs/libbytesize/template
@@ -1,7 +1,7 @@
 # Template file for 'libbytesize'
 pkgname=libbytesize
 version=1.4
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python3"
 makedepends="mpfr-devel pcre-devel"

From bdb495aaf63cb8b79a83eda9623e54e67de33d75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 691/872] libcap-ng: rebuild for Python 3.8.

---
 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 f462636c4c1..c6ec4f0a216 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.7.10
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-python --without-python3"
 short_desc="Alternate POSIX capabilities library"

From 64a29440ad0bb81db7db97e461b4b68478993d17 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 692/872] libffado: rebuild for Python 3.8.

---
 srcpkgs/libffado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libffado/template b/srcpkgs/libffado/template
index a9b6a5ec6a8..d566806bd82 100644
--- a/srcpkgs/libffado/template
+++ b/srcpkgs/libffado/template
@@ -1,7 +1,7 @@
 # Template file for 'libffado'
 pkgname=libffado
 version=2.4.1
-revision=1
+revision=2
 build_style=scons
 make_build_args="PREFIX=/usr MANDIR=/usr/share/man
  UDEVDIR=/usr/lib/udev/rules.d CUSTOM_ENV=1 BUILD_TESTS=0

From 3ac32b19e51680d2330b26da6cb8d640904fcb75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 693/872] libgit2-glib: rebuild for Python 3.8.

---
 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 05389a18258..ce68cb35d66 100644
--- a/srcpkgs/libgit2-glib/template
+++ b/srcpkgs/libgit2-glib/template
@@ -1,7 +1,7 @@
 # Template file for 'libgit2-glib'
 pkgname=libgit2-glib
 version=0.28.0.1
-revision=1
+revision=2
 build_style=meson
 build_helper="gir"
 configure_args="-Dintrospection=$(vopt_if gir true false)

From 6950f9e7571c268c087d93d7e94d169a8fb8291b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 694/872] libixion: rebuild for Python 3.8.

---
 srcpkgs/libixion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libixion/template b/srcpkgs/libixion/template
index 5d2c58ee7c0..dbc05d8b9c1 100644
--- a/srcpkgs/libixion/template
+++ b/srcpkgs/libixion/template
@@ -2,7 +2,7 @@
 pkgname=libixion
 reverts="0.15.0_1"
 version=0.14.1
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="boost-devel mdds python3-devel"

From 45a847c34a550d9cc64985d24ef9b306aade5790 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 695/872] liblouis: rebuild for Python 3.8.

---
 srcpkgs/liblouis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liblouis/template b/srcpkgs/liblouis/template
index 77194ad8820..13c29b62b21 100644
--- a/srcpkgs/liblouis/template
+++ b/srcpkgs/liblouis/template
@@ -1,7 +1,7 @@
 # Template file for 'liblouis'
 pkgname=liblouis
 version=3.9.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--enable-ucs4"
 pycompile_module="louis"

From f79d54ca6d5162f4f17a9cae76f0bd941deaf438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 696/872] opencv: rebuild for Python 3.8.

---
 srcpkgs/opencv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/opencv/template b/srcpkgs/opencv/template
index fcc38299f23..474b77be181 100644
--- a/srcpkgs/opencv/template
+++ b/srcpkgs/opencv/template
@@ -1,7 +1,7 @@
 # Template file for 'opencv'
 pkgname=opencv
 version=3.4.5
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_PRECOMPILED_HEADERS=OFF -DWITH_OPENMP=ON
  -DWITH_OPENCL=ON -DENABLE_CXX11=ON -DOPENCV_SKIP_PYTHON_LOADER=ON

From f3399fca6f67a8990fa1adc144bd949c0a5c66c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 697/872] libopenshot: rebuild for Python 3.8.

---
 srcpkgs/libopenshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libopenshot/template b/srcpkgs/libopenshot/template
index e1ac18faf93..dab1f2ae1e3 100644
--- a/srcpkgs/libopenshot/template
+++ b/srcpkgs/libopenshot/template
@@ -1,7 +1,7 @@
 # Template file for 'libopenshot'
 pkgname=libopenshot
 version=0.2.3
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 build_style=cmake
 pycompile_module="openshot.py"

From c7902fc599bfc61c600307df6f75acfadf8e612e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 698/872] liborcus: rebuild for Python 3.8.

---
 srcpkgs/liborcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liborcus/template b/srcpkgs/liborcus/template
index 3523d7830d8..e7704c43974 100644
--- a/srcpkgs/liborcus/template
+++ b/srcpkgs/liborcus/template
@@ -2,7 +2,7 @@
 pkgname=liborcus
 reverts="0.15.0_1"
 version=0.14.1
-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 aec13b74f5953d86ed1dab8574a9bb836924a3da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 699/872] libpwquality: rebuild for Python 3.8.

---
 srcpkgs/libpwquality/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpwquality/template b/srcpkgs/libpwquality/template
index e5a656236d7..6c2209155a3 100644
--- a/srcpkgs/libpwquality/template
+++ b/srcpkgs/libpwquality/template
@@ -1,7 +1,7 @@
 # Template file for 'libpwquality'
 pkgname=libpwquality
 version=1.4.1
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static --enable-pam --with-securedir=/usr/lib/security"
 hostmakedepends="libtool automake gettext-devel"

From a5604d1184badc5a3b5afb2426bc910d703ee0f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 700/872] libsearpc: rebuild for Python 3.8.

---
 srcpkgs/libsearpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsearpc/template b/srcpkgs/libsearpc/template
index 61f68e5e7de..a7e0b9ce05c 100644
--- a/srcpkgs/libsearpc/template
+++ b/srcpkgs/libsearpc/template
@@ -1,7 +1,7 @@
 # Template file for 'libsearpc'
 pkgname=libsearpc
 version=3.1.0
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="pysearpc"
 configure_args="PYTHON=python3 --disable-static --disable-compile-demo"

From 5aaa024e287c3460065dbe861abc25499a281e07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 701/872] libtorrent-rasterbar: fix and rebuild for Python 3.8.

---
 srcpkgs/libtorrent-rasterbar/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libtorrent-rasterbar/template b/srcpkgs/libtorrent-rasterbar/template
index 118108c6184..51b7175fb81 100644
--- a/srcpkgs/libtorrent-rasterbar/template
+++ b/srcpkgs/libtorrent-rasterbar/template
@@ -1,9 +1,9 @@
 # Template file for 'libtorrent-rasterbar'
 pkgname=libtorrent-rasterbar
 version=1.1.13
-revision=3
+revision=4
 build_style=gnu-configure
-configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=boost_python36"
+configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=libboost_python${py3_ver/./}"
 hostmakedepends="automake pkg-config intltool libtool python3-devel"
 makedepends="libressl-devel boost-devel geoip-devel python3-devel"
 short_desc="C++ bittorrent library by Rasterbar Software"
@@ -14,9 +14,9 @@ distfiles="https://github.com/arvidn/libtorrent/releases/download/libtorrent-${v
 checksum=30040719858e3c06634764e0c1778738eb42ecd0b45e814afa746329a948ead7
 
 pre_configure() {
-	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython3.6m"
+	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython${py3_ver}${py3_abiver}"
 	autoreconf -fi
 }
 

From 75ce8cab25904eeb4975663fb77b4f29c10c1dbe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 702/872] libvirt-python: rebuild for Python 3.8.

---
 srcpkgs/libvirt-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvirt-python/template b/srcpkgs/libvirt-python/template
index a2f0e038166..56253c9d3b0 100644
--- a/srcpkgs/libvirt-python/template
+++ b/srcpkgs/libvirt-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libvirt-python'
 pkgname=libvirt-python
 version=5.8.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="libvirt.py libvirt_lxc.py libvirt_qemu.py"
 hostmakedepends="pkg-config python-devel python3-devel libvirt-devel"

From 5e9842585a68fb832637cdd1b5adcd50bc48841b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 703/872] libvoikko: rebuild for Python 3.8.

---
 srcpkgs/libvoikko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvoikko/template b/srcpkgs/libvoikko/template
index 8d21b0f9c71..ba8eef837ee 100644
--- a/srcpkgs/libvoikko/template
+++ b/srcpkgs/libvoikko/template
@@ -1,7 +1,7 @@
 # Template file for 'libvoikko'
 pkgname=libvoikko
 version=4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-hfst=false --with-dictionary-path=/usr/share/voikko"
 pycompile_module="libvoikko.py"

From 8141b26019c7a2414b15fcf8b8672eb24047f49d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 704/872] libxml2-python: rebuild for Python 3.8.

---
 srcpkgs/libxml2-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libxml2-python/template b/srcpkgs/libxml2-python/template
index a80208823c2..5514ed43437 100644
--- a/srcpkgs/libxml2-python/template
+++ b/srcpkgs/libxml2-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libxml2-python'
 pkgname=libxml2-python
 version=2.9.9
-revision=3
+revision=4
 wrksrc="${pkgname%-python}-${version}"
 build_wrksrc=python
 build_style=python-module

From 70f5881f1b341100ddc517ba0f4b54e161303165 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 705/872] lightdm-gtk-greeter-settings: rebuild for Python 3.8.

---
 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 715f41bbef4..76a25b91e4c 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=1
+revision=2
 build_style=python3-module
 pycompile_module="lightdm_gtk_greeter_settings"
 hostmakedepends="python3-distutils-extra intltool"

From 04c380043914f79a0c6cd3199748bb0fb2e37967 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 706/872] llvm9: rebuild for Python 3.8.

---
 srcpkgs/llvm9/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/llvm9/template b/srcpkgs/llvm9/template
index 3c1a1a3451b..890a93855d8 100644
--- a/srcpkgs/llvm9/template
+++ b/srcpkgs/llvm9/template
@@ -1,7 +1,7 @@
 # Template file for 'llvm9'
 pkgname=llvm9
 version=9.0.0
-revision=2
+revision=3
 wrksrc="llvm-${version}.src"
 build_style=cmake
 configure_args="

From 4778e7a0c73ffa2fae833fee20ac790fef99fff9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 707/872] lollypop: rebuild for Python 3.8.

---
 srcpkgs/lollypop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lollypop/template b/srcpkgs/lollypop/template
index 56ace773bf3..3bd13c0d387 100644
--- a/srcpkgs/lollypop/template
+++ b/srcpkgs/lollypop/template
@@ -1,7 +1,7 @@
 # Template file for 'lollypop'
 pkgname=lollypop
 version=1.1.4.16
-revision=1
+revision=2
 # Gitlab upload tag hash
 _uhash=6b4e4e7a2c17f0770c1e2b3354ae5a3a
 archs=noarch

From 6041a22c11224f7e771c92e9f61adf7eaf37450a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 708/872] lutris: rebuild for Python 3.8.

---
 srcpkgs/lutris/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lutris/template b/srcpkgs/lutris/template
index 8f54d693a12..75be521cc7c 100644
--- a/srcpkgs/lutris/template
+++ b/srcpkgs/lutris/template
@@ -1,7 +1,7 @@
 # Template file for 'lutris'
 pkgname=lutris
 version=0.5.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 build_helper="gir"

From 768559bee2d66197ffebf07de70d31e1098fe2a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 709/872] magic-wormhole: rebuild for Python 3.8.

---
 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 c07753ce6ad..d93a1bbe1fc 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.11.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wormhole"

From 2a5b126fdf712642756c4d70a6a679f4479b504c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 710/872] mate-tweak: rebuild for Python 3.8.

---
 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 85b829e85e8..76b79524269 100644
--- a/srcpkgs/mate-tweak/template
+++ b/srcpkgs/mate-tweak/template
@@ -1,7 +1,7 @@
 # Template file for 'mate-tweak'
 pkgname=mate-tweak
 version=19.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-pbr python3-setuptools"

From 2717d85b6903ce0f45484d5f051e477d27e68ff3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 711/872] med: rebuild for Python 3.8.

---
 srcpkgs/med/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/med/template b/srcpkgs/med/template
index 34dd6d006d6..acd79293246 100644
--- a/srcpkgs/med/template
+++ b/srcpkgs/med/template
@@ -1,7 +1,7 @@
 # Template file for 'med'
 pkgname=med
 version=4.0.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--with-swig=yes --includedir=/usr/include/med"
 pycompile_module=med

From e6073b9b26be31845b922008dc6d5083ec2516e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 712/872] meld: rebuild for Python 3.8.

---
 srcpkgs/meld/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meld/template b/srcpkgs/meld/template
index 9ed6114299e..7cbac065ce6 100644
--- a/srcpkgs/meld/template
+++ b/srcpkgs/meld/template
@@ -1,7 +1,7 @@
 # Template file for 'meld'
 pkgname=meld
 version=3.20.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="meld"

From 30bbbb75eda44c4dfeac15c27223fe671d4703ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 713/872] menulibre: rebuild for Python 3.8.

---
 srcpkgs/menulibre/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/menulibre/template b/srcpkgs/menulibre/template
index 64311115bec..f16c5f64337 100644
--- a/srcpkgs/menulibre/template
+++ b/srcpkgs/menulibre/template
@@ -1,7 +1,7 @@
 # Template file for 'menulibre'
 pkgname=menulibre
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="menulibre menulibre_lib"

From 7f5fb6f6a41e18474dce397f36f38f5cce8f9eca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 714/872] meson-cmake-wrapper: rebuild for Python 3.8.

---
 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 ca14e533431..57eea159ca8 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mcw"

From 2c4c7008df31cd5ec9699fe3aba2f53facd423e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 715/872] mimeo: rebuild for Python 3.8.

---
 srcpkgs/mimeo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mimeo/template b/srcpkgs/mimeo/template
index bef8dcde863..991c61d9df8 100644
--- a/srcpkgs/mimeo/template
+++ b/srcpkgs/mimeo/template
@@ -1,7 +1,7 @@
 # Template file for 'mimeo'
 pkgname=mimeo
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="Mimeo.py"

From 533400db8d1d7673cb8a5b187cf4510495a5d6fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 716/872] mozo: rebuild for Python 3.8.

---
 srcpkgs/mozo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template
index 041f2454c3d..7bc18f017c7 100644
--- a/srcpkgs/mozo/template
+++ b/srcpkgs/mozo/template
@@ -1,7 +1,7 @@
 # Template file for 'mozo'
 pkgname=mozo
 version=1.22.2
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="Mozo"

From 79476ba290c89d038ce38a9ed875bed6b5bf69e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 717/872] mpd-sima: rebuild for Python 3.8.

---
 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 fb72f0d2632..831fec709b7 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=1
+revision=2
 archs=noarch
 wrksrc="MPD_sima-${version}"
 build_style=python3-module

From 9d547673ab95e2aeb2d2405f6fff480cbd9afa5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 718/872] mps-youtube: rebuild for Python 3.8.

---
 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 7b104aa706f..2141b3e627d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mps_youtube"

From 8e1db2d48466dc2bdc06e1330eeefaa727da6356 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 719/872] mugshot: rebuild for Python 3.8.

---
 srcpkgs/mugshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mugshot/template b/srcpkgs/mugshot/template
index cf27b30acac..1e695654a86 100644
--- a/srcpkgs/mugshot/template
+++ b/srcpkgs/mugshot/template
@@ -1,7 +1,7 @@
 # Template file for 'mugshot'
 pkgname=mugshot
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra"

From dd0ad3b8c52088d1809fd214b32ed7b0acdd2f66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 720/872] multibootusb: rebuild for Python 3.8.

---
 srcpkgs/multibootusb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/multibootusb/template b/srcpkgs/multibootusb/template
index 049b641c5fd..70cb07a85ac 100644
--- a/srcpkgs/multibootusb/template
+++ b/srcpkgs/multibootusb/template
@@ -1,7 +1,7 @@
 # Template file for 'multibootusb'
 pkgname=multibootusb
 version=9.2.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="scripts"

From 85356b30501f219e78afd8cb95f1a6cb09193ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 721/872] mymcplus: rebuild for Python 3.8.

---
 srcpkgs/mymcplus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mymcplus/template b/srcpkgs/mymcplus/template
index 369ac8048ed..f30c62b09f4 100644
--- a/srcpkgs/mymcplus/template
+++ b/srcpkgs/mymcplus/template
@@ -1,7 +1,7 @@
 # Template file for 'mymcplus'
 pkgname=mymcplus
 version=3.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mymcplus"

From f10ceae15759ab2c42d786a23926a759967abb41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 722/872] nagstamon: fix and rebuild for Python 3.8.

---
 srcpkgs/nagstamon/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/nagstamon/template b/srcpkgs/nagstamon/template
index 3a63bb5f1d9..0eb5bc75d27 100644
--- a/srcpkgs/nagstamon/template
+++ b/srcpkgs/nagstamon/template
@@ -1,7 +1,7 @@
 # Template file for 'nagstamon'
 pkgname=nagstamon
 version=3.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=Nagstamon
 build_style=python3-module
@@ -16,6 +16,10 @@ homepage="https://nagstamon.ifw-dresden.de"
 distfiles="https://nagstamon.ifw-dresden.de/files/stable/Nagstamon-${version}.tar.gz"
 checksum=a834460e78dc01f62171a83c4a11d890702264ed662863dff39edaf14ae98880
 
+post_extract() {
+	# Gone in python 3.8, but these where the python 3.6 values.  ;)
+	vsed -i -e 's/platform.dist()/("","","")/g' setup.py
+}
 post_install() {
 	chmod 644 ${DESTDIR}/usr/share/pixmaps/nagstamon.svg
 	mv -v ${DESTDIR}/usr/bin/nagstamon.py ${DESTDIR}/usr/bin/nagstamon

From 52acf83950d25bcf72b3fc81796436543c409ce8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 723/872] neovim-remote: rebuild for Python 3.8.

---
 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 d8473bf0521..7391f9df2ee 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.2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nvr"

From ae77cba0468f1ab1fe3e89bf758d2d153c6b8725 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 724/872] newt: rebuild for Python 3.8.

---
 srcpkgs/newt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/newt/template b/srcpkgs/newt/template
index 3971bbfdbf7..25ccc946f51 100644
--- a/srcpkgs/newt/template
+++ b/srcpkgs/newt/template
@@ -1,7 +1,7 @@
 # Template file for 'newt'
 pkgname=newt
 version=0.52.21
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python-devel python3-devel"
 makedepends="slang-devel popt-devel python3-devel python-devel"

From 5d77f30f98b4d84c2807418deb840acda4016790 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 725/872] notmuch: rebuild for Python 3.8.

---
 srcpkgs/notmuch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/notmuch/template b/srcpkgs/notmuch/template
index ced670a59d4..a3085fd4c27 100644
--- a/srcpkgs/notmuch/template
+++ b/srcpkgs/notmuch/template
@@ -1,7 +1,7 @@
 # Template file for 'notmuch'
 pkgname=notmuch
 version=0.29.1
-revision=1
+revision=2
 hostmakedepends="perl pkg-config python-devel python3-Sphinx python3-devel"
 makedepends="bash-completion gmime3-devel talloc-devel xapian-core-devel"
 short_desc="Thread-based email index, search, and tagging"

From 2a004663318b9be9e0b13e69c2f89b9682ece8e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 726/872] nyx: rebuild for Python 3.8.

---
 srcpkgs/nyx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/nyx/template b/srcpkgs/nyx/template
index 201ab5856ff..4b265771793 100644
--- a/srcpkgs/nyx/template
+++ b/srcpkgs/nyx/template
@@ -1,7 +1,7 @@
 # Template file for 'nyx'
 pkgname=nyx
 version=2.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nyx"

From 9ff1df8e1d687a5a38d373d51d32e4e428dbe286 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 727/872] olm-python: rebuild for Python 3.8.

---
 srcpkgs/olm-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/olm-python/template b/srcpkgs/olm-python/template
index 57ac1cfa01b..0141611ea3f 100644
--- a/srcpkgs/olm-python/template
+++ b/srcpkgs/olm-python/template
@@ -1,7 +1,7 @@
 # Template file for 'olm-python'
 pkgname=olm-python
 version=3.1.4
-revision=1
+revision=2
 wrksrc="olm-${version}"
 build_wrksrc=python
 build_style=python-module

From b5b9070e7d35511535cee5a401bcdb4ea6359959 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 728/872] onboard: rebuild for Python 3.8.

---
 srcpkgs/onboard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onboard/template b/srcpkgs/onboard/template
index 844744038d8..467ed8f0ea5 100644
--- a/srcpkgs/onboard/template
+++ b/srcpkgs/onboard/template
@@ -1,7 +1,7 @@
 # Template file for 'onboard'
 pkgname=onboard
 version=1.4.1
-revision=4
+revision=5
 build_style=python3-module
 pycompile_module="Onboard"
 patch_args="-Np1"

From c23e1317c4a493f2967ade1da8cf6eb9806b2066 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 729/872] openrazer-meta: rebuild for Python 3.8.

---
 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 112cb9e900b..60dc8212a73 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=2
+revision=3
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 0c8dabe0616d85f801dfefea1b22748ee6055bdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 730/872] openshot: rebuild for Python 3.8.

---
 srcpkgs/openshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/openshot/template b/srcpkgs/openshot/template
index 605ea7305c2..d71b4d09fae 100644
--- a/srcpkgs/openshot/template
+++ b/srcpkgs/openshot/template
@@ -1,7 +1,7 @@
 # Template file for 'openshot'
 pkgname=openshot
 version=2.4.4
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 wrksrc="${pkgname}-qt-${version}"
 build_style=python3-module

From e14cf6e0c5c985078aade34a1f21446e153dbeed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 731/872] orca: rebuild for Python 3.8.

---
 srcpkgs/orca/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/orca/template b/srcpkgs/orca/template
index ac1c0e1dc0e..57d1495c10a 100644
--- a/srcpkgs/orca/template
+++ b/srcpkgs/orca/template
@@ -1,7 +1,7 @@
 # Template file for 'orca'
 pkgname=orca
 version=3.34.0
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="orca"

From ef83881d95547fbaa4f216958aa7f49b0b2c98b3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 732/872] papis: rebuild for Python 3.8.

---
 srcpkgs/papis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/papis/template b/srcpkgs/papis/template
index 95044b2a6a4..d99f358fc0d 100644
--- a/srcpkgs/papis/template
+++ b/srcpkgs/papis/template
@@ -1,7 +1,7 @@
 # Template file for 'papis'
 pkgname=papis
 version=0.8
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-requests python3-yaml python3-chardet python3-BeautifulSoup4

From f4cf98a67a63c679f47a66c6b67ab7309b5769f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 733/872] paraview: rebuild for Python 3.8.

---
 srcpkgs/paraview/template | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/paraview/template b/srcpkgs/paraview/template
index 3b721b1833a..d928a5ea095 100644
--- a/srcpkgs/paraview/template
+++ b/srcpkgs/paraview/template
@@ -1,7 +1,7 @@
 # Template file for 'paraview'
 pkgname=paraview
 version=5.6.1
-revision=1
+revision=2
 wrksrc=ParaView-v${version}
 build_style=cmake
 configure_args="-DPARAVIEW_ENABLE_FFMPEG=ON
@@ -58,6 +58,11 @@ checksum=50ef01f54db6358b402e50d1460ef47c04d675bf26f250c6937737169f1e6612
 CFLAGS="-D_GNU_SOURCE"
 CXXFLAGS="-D_GNU_SOURCE"
 
+post_extract() {
+	# Python 3.8 API change: https://docs.python.org/3/c-api/typeobj.html
+	sed -i '/\/\/ tp_print/s/nullptr/0/' \
+		VTK/Wrapping/Tools/*.c VTK/Wrapping/PythonCore/*.cxx
+}
 post_install() {
 	vlicense Copyright.txt
 }

From 726b01acdb0c9e145291f4e36011c0aaa709684d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 734/872] pass-git-helper: rebuild for Python 3.8.

---
 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 dfeed3ba4f0..6d7f25bd8a7 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.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 78ecdb2c1a4374ceaca2d5093af3a91996be3350 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 735/872] peframe: rebuild for Python 3.8.

---
 srcpkgs/peframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peframe/template b/srcpkgs/peframe/template
index b9d64f7a5a6..5ecede6cf56 100644
--- a/srcpkgs/peframe/template
+++ b/srcpkgs/peframe/template
@@ -1,7 +1,7 @@
 # Template file for 'peframe'
 pkgname=peframe
 version=6.0.3
-revision=1
+revision=2
 archs=noarch
 build_style="python3-module"
 pycompile_module="peframe"

From 78841509335c273af19896de5b79ea31c3168e1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 736/872] peru: rebuild for Python 3.8.

---
 srcpkgs/peru/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peru/template b/srcpkgs/peru/template
index 682440f0b50..10d4689338d 100644
--- a/srcpkgs/peru/template
+++ b/srcpkgs/peru/template
@@ -1,7 +1,7 @@
 # Template file for 'peru'
 pkgname=peru
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="peru"

From 9513806ce9175a7e7f042c9a8aa445525747c64b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 737/872] pgcli: rebuild for Python 3.8.

---
 srcpkgs/pgcli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index b967287e9cb..b187a0a4440 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,7 +1,7 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pgcli"

From 9b06f6f2643e97359ce83918b636d83617530e9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 738/872] picard: rebuild for Python 3.8.

---
 srcpkgs/picard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/picard/template b/srcpkgs/picard/template
index 1bae142434a..08404a88475 100644
--- a/srcpkgs/picard/template
+++ b/srcpkgs/picard/template
@@ -1,7 +1,7 @@
 # Template file for 'picard'
 pkgname=picard
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname}-release-${version}"
 build_style=python3-module

From f046b5d0d02d0350b9b4b0d012941d73a64d7674 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 739/872] piper: rebuild for Python 3.8.

---
 srcpkgs/piper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/piper/template b/srcpkgs/piper/template
index af8cc854991..91a31131f84 100644
--- a/srcpkgs/piper/template
+++ b/srcpkgs/piper/template
@@ -1,7 +1,7 @@
 # Template file for 'piper'
 pkgname=piper
 version=0.2.904
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 hostmakedepends="libratbag pkg-config glib-devel"

From 35264de163d55cc30160d954c08f635a5fa12285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 740/872] playitslowly: rebuild for Python 3.8.

---
 srcpkgs/playitslowly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/playitslowly/template b/srcpkgs/playitslowly/template
index d26cea3510a..6d3483ae251 100644
--- a/srcpkgs/playitslowly/template
+++ b/srcpkgs/playitslowly/template
@@ -1,7 +1,7 @@
 # Template file for 'playitslowly'
 pkgname=playitslowly
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From e81422f6d1d5c7623368d70897172c813b3de9b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 741/872] pmbootstrap: rebuild for Python 3.8.

---
 srcpkgs/pmbootstrap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pmbootstrap/template b/srcpkgs/pmbootstrap/template
index 1bfa8183a84..15e606439c2 100644
--- a/srcpkgs/pmbootstrap/template
+++ b/srcpkgs/pmbootstrap/template
@@ -1,7 +1,7 @@
 # Template file for 'pmbootstrap'
 pkgname=pmbootstrap
 version=1.9.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pmb"

From 527e6a4630f16baca7fc343a5a1d9a05342d82ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 742/872] pockyt: fix and rebuild for Python 3.8.

---
 srcpkgs/pockyt/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/pockyt/template b/srcpkgs/pockyt/template
index 760573904b1..ff12361d443 100644
--- a/srcpkgs/pockyt/template
+++ b/srcpkgs/pockyt/template
@@ -1,7 +1,7 @@
 # Template file for 'pockyt'
 pkgname=pockyt
 version=1.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -13,3 +13,7 @@ license="GPL-3.0-or-later"
 homepage="https://github.com/arvindch/pockyt"
 distfiles="${homepage}/archive/${version}.tar.gz"
 checksum=cd9561e126a6a01c73762639eb7e38b8c509ed1412f72fcc4729b12565b9962c
+
+post_extract() {
+	sed -i 's/(3, 7)/&, (3, 8)/' setup.py
+}

From b17ef4dbbbef2220a50989dc81f76cba0decd84a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 743/872] poezio: rebuild for Python 3.8.

---
 srcpkgs/poezio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/poezio/template b/srcpkgs/poezio/template
index 56f8138bb5e..4b318419dab 100644
--- a/srcpkgs/poezio/template
+++ b/srcpkgs/poezio/template
@@ -1,7 +1,7 @@
 # Template file for 'poezio'
 pkgname=poezio
 version=0.12.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="poezio poezio_plugins poezio_themes"
 hostmakedepends="python3-setuptools pkg-config"

From 3b5be45e96733313ad2473bc51a7d8eee1702577 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 744/872] protontricks: rebuild for Python 3.8.

---
 srcpkgs/protontricks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/protontricks/template b/srcpkgs/protontricks/template
index a32f51c4845..dc003b63690 100644
--- a/srcpkgs/protontricks/template
+++ b/srcpkgs/protontricks/template
@@ -1,7 +1,7 @@
 # Template file for 'protontricks'
 pkgname=protontricks
 version=1.2.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-setuptools"

From 6b17e630c97868c3510f8e786c4c0a4d3b250ecf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 745/872] pulseaudio-equalizer-ladspa: rebuild for Python 3.8.

---
 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 62d7eef2a65..10198de2c08 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=1
+revision=2
 wrksrc="equalizer-${version}"
 build_style=meson
 pycompile_module="pulseeq"

From 70dbb53c2ba650d2fc146e7837f700dec9df6062 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 746/872] pulseeffects: rebuild for Python 3.8.

---
 srcpkgs/pulseeffects/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pulseeffects/template b/srcpkgs/pulseeffects/template
index 7fc44f938d9..dc9044cad32 100644
--- a/srcpkgs/pulseeffects/template
+++ b/srcpkgs/pulseeffects/template
@@ -2,7 +2,7 @@
 pkgname=pulseeffects
 reverts="4.3.4_1"
 version=3.2.3
-revision=3
+revision=4
 build_style=meson
 pycompile_module="PulseEffects PulseEffectsTest"
 hostmakedepends="pkg-config"

From b1dc43e0f84322bbc809630267fe0e51c5e1b41e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 747/872] py3status: rebuild for Python 3.8.

---
 srcpkgs/py3status/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/py3status/template b/srcpkgs/py3status/template
index b7a263270e4..01709cfd14d 100644
--- a/srcpkgs/py3status/template
+++ b/srcpkgs/py3status/template
@@ -1,7 +1,7 @@
 # Template file for 'py3status'
 pkgname=py3status
 version=3.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="py3status"

From 0644b2ee33752b76bc1875c86123ab77a073fc53 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 748/872] pychess: rebuild for Python 3.8.

---
 srcpkgs/pychess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pychess/template b/srcpkgs/pychess/template
index 2c6ecef7bf9..d0594aa77f4 100644
--- a/srcpkgs/pychess/template
+++ b/srcpkgs/pychess/template
@@ -1,7 +1,7 @@
 # Template file for 'pychess'
 pkgname=pychess
 version=0.12.4
-revision=2
+revision=3
 build_style=python3-module
 pycompile_module="pychess"
 archs=noarch

From 5cf19da1be32229c7b04dffba15cd724042a2e9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 749/872] pycp: rebuild for Python 3.8.

---
 srcpkgs/pycp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pycp/template b/srcpkgs/pycp/template
index 770eb50d3f4..c9066259862 100644
--- a/srcpkgs/pycp/template
+++ b/srcpkgs/pycp/template
@@ -1,7 +1,7 @@
 # Template file for 'pycp'
 pkgname=pycp
 version=8.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pycp"

From d88382e9fb382116d88e9ccd60e69a7320462f5c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 750/872] pymol: rebuild for Python 3.8.

---
 srcpkgs/pymol/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pymol/template b/srcpkgs/pymol/template
index 428ba7a6deb..e1031f325c0 100644
--- a/srcpkgs/pymol/template
+++ b/srcpkgs/pymol/template
@@ -1,7 +1,7 @@
 # Template file for 'pymol'
 pkgname=pymol
 version=2.3.0
-revision=1
+revision=2
 wrksrc=${pkgname}-open-source-${version}
 build_style="python3-module"
 makedepends="msgpack-devel python3-numpy freetype-devel libfreeglut-devel glew-devel

From 1245dfb2ab23badf279042adca4caff2deba10a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 751/872] pyradio: rebuild for Python 3.8.

---
 srcpkgs/pyradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyradio/template b/srcpkgs/pyradio/template
index 10d7d8c6fbb..d2d5feddbdd 100644
--- a/srcpkgs/pyradio/template
+++ b/srcpkgs/pyradio/template
@@ -1,7 +1,7 @@
 # Template file for 'pyradio'
 pkgname=pyradio
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pyradio"

From f677cdf12f3d405d1bcb43aab8dd1fc258ee91d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 752/872] pyside2-tools: rebuild for Python 3.8.

---
 srcpkgs/pyside2-tools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyside2-tools/template b/srcpkgs/pyside2-tools/template
index 4ba0044452d..0a153de8c15 100644
--- a/srcpkgs/pyside2-tools/template
+++ b/srcpkgs/pyside2-tools/template
@@ -1,7 +1,7 @@
 # Template file for 'pyside2-tools'
 pkgname=pyside2-tools
 version=5.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release

From 727e69b5ed47b99d25354a6a6d6f42b907a7b696 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 753/872] pysolfc: rebuild for Python 3.8.

---
 srcpkgs/pysolfc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pysolfc/template b/srcpkgs/pysolfc/template
index 62eb90009af..1631e9619d3 100644
--- a/srcpkgs/pysolfc/template
+++ b/srcpkgs/pysolfc/template
@@ -1,7 +1,7 @@
 # Template file for 'pysolfc'
 pkgname=pysolfc
 version=2.6.4
-revision=2
+revision=3
 archs="noarch"
 wrksrc="PySolFC-${pkgname}-${version}"
 build_style=python3-module

From 837440a9d7d89a3bcfe00ffd798f18212ea374e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 754/872] pywal: rebuild for Python 3.8.

---
 srcpkgs/pywal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pywal/template b/srcpkgs/pywal/template
index 214a36698f2..98c4e1581e4 100644
--- a/srcpkgs/pywal/template
+++ b/srcpkgs/pywal/template
@@ -1,7 +1,7 @@
 # Template file for 'pywal'
 pkgname=pywal
 version=3.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pywal"

From 168ac3cd6bd43efb1d6d4192cd9b426cffb66930 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 755/872] qomui: rebuild for Python 3.8.

---
 srcpkgs/qomui/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qomui/template b/srcpkgs/qomui/template
index 4e68864252d..8063350ba06 100644
--- a/srcpkgs/qomui/template
+++ b/srcpkgs/qomui/template
@@ -1,7 +1,7 @@
 # Template file for 'qomui'
 pkgname=qomui
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qomui"

From 26a0119ac8b90d7cd7d6f2c49b3d1c927325b552 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 756/872] quodlibet: rebuild for Python 3.8.

---
 srcpkgs/quodlibet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/quodlibet/template b/srcpkgs/quodlibet/template
index 53f6e926315..4b0c4ba0de5 100644
--- a/srcpkgs/quodlibet/template
+++ b/srcpkgs/quodlibet/template
@@ -1,7 +1,7 @@
 # Template file for 'quodlibet'
 pkgname=quodlibet
 version=4.2.1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="quodlibet"

From c8788e4bb387cdc48040e3af5663a0a23e068ed2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 757/872] qutebrowser: rebuild for Python 3.8.

---
 srcpkgs/qutebrowser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qutebrowser/template b/srcpkgs/qutebrowser/template
index 11b74e4445d..07257c2d84b 100644
--- a/srcpkgs/qutebrowser/template
+++ b/srcpkgs/qutebrowser/template
@@ -1,7 +1,7 @@
 # Template file for 'qutebrowser'
 pkgname=qutebrowser
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qutebrowser"

From 2a2f8aeebe7cb2c4d3783dcdf5725f4c8e717d03 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 758/872] r128gain: rebuild for Python 3.8.

---
 srcpkgs/r128gain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/r128gain/template b/srcpkgs/r128gain/template
index cdea955828e..1cb30c786f8 100644
--- a/srcpkgs/r128gain/template
+++ b/srcpkgs/r128gain/template
@@ -1,7 +1,7 @@
 # Template file for 'r128gain'
 pkgname=r128gain
 version=0.9.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="r128gain"
 hostmakedepends="python3-setuptools"

From b923fdcd9bc9204affa69740d34e582e6712ed4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 759/872] radicale2: rebuild for Python 3.8.

---
 srcpkgs/radicale2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/radicale2/template b/srcpkgs/radicale2/template
index 0d8a27d89f3..310bc8cb3cf 100644
--- a/srcpkgs/radicale2/template
+++ b/srcpkgs/radicale2/template
@@ -1,7 +1,7 @@
 # Template file for 'radicale2'
 pkgname=radicale2
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module

From befc14e8b9ff96c37104bf2441216707df5bcc8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 760/872] ranger: rebuild for Python 3.8.

---
 srcpkgs/ranger/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template
index a387eac4ed7..a49716971a5 100644
--- a/srcpkgs/ranger/template
+++ b/srcpkgs/ranger/template
@@ -1,7 +1,7 @@
 # Template file for 'ranger'
 pkgname=ranger
 version=1.9.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ranger"

From d490364b5c373b46163f36731a39754e04556e98 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 761/872] rednotebook: rebuild for Python 3.8.

---
 srcpkgs/rednotebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rednotebook/template b/srcpkgs/rednotebook/template
index ac870a7a992..af7dea12fd5 100644
--- a/srcpkgs/rednotebook/template
+++ b/srcpkgs/rednotebook/template
@@ -1,7 +1,7 @@
 # Template file for 'rednotebook'
 pkgname=rednotebook
 version=2.11.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rednotebook"

From 44a5a4b73859a74fb915e7613fce5caeabd8acf1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 762/872] redshift: rebuild for Python 3.8.

---
 srcpkgs/redshift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/redshift/template b/srcpkgs/redshift/template
index bb31e7cec05..c58b8daeb76 100644
--- a/srcpkgs/redshift/template
+++ b/srcpkgs/redshift/template
@@ -1,7 +1,7 @@
 # Template file for 'redshift'
 pkgname=redshift
 version=1.12
-revision=1
+revision=2
 build_style=gnu-configure
 build_options="geoclue2"
 configure_args="--enable-gui --disable-geoclue $(vopt_enable geoclue2)"

From c0649b58de59e8a68aff332807f3240430e3ee7c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 763/872] ripe-atlas-tools: rebuild for Python 3.8.

---
 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 c8eef786962..c5e21c4b8dc 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=2.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ripe/atlas/tools"

From 8af034434b8588027b9c7e0f1b0abc587ad462bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 764/872] rmlint: rebuild for Python 3.8.

---
 srcpkgs/rmlint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rmlint/template b/srcpkgs/rmlint/template
index dc8d904d0c2..894a9a1dd01 100644
--- a/srcpkgs/rmlint/template
+++ b/srcpkgs/rmlint/template
@@ -1,7 +1,7 @@
 # Template file for 'rmlint'
 pkgname=rmlint
 version=2.9.0
-revision=1
+revision=2
 build_style=scons
 hostmakedepends="pkg-config python3-Sphinx glib-devel"
 makedepends="libblkid-devel elfutils-devel json-glib-devel"

From 04462f15c08bdd92062a53e420054fdfd65da92b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 765/872] rtv: rebuild for Python 3.8.

---
 srcpkgs/rtv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rtv/template b/srcpkgs/rtv/template
index 1a089e3e88d..1fc137b2e5b 100644
--- a/srcpkgs/rtv/template
+++ b/srcpkgs/rtv/template
@@ -1,7 +1,7 @@
 # Template file for 'rtv'
 pkgname=rtv
 version=1.27.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rtv"

From deb18b1928007c6e0a1042dab8adfe94a801bc28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 766/872] rubber: rebuild for Python 3.8.

---
 srcpkgs/rubber/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rubber/template b/srcpkgs/rubber/template
index cf668638cef..c7fe4cbbd06 100644
--- a/srcpkgs/rubber/template
+++ b/srcpkgs/rubber/template
@@ -1,7 +1,7 @@
 # Template file for 'rubber'
 pkgname=rubber
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From d19b0a94a22decc29f95aa94f2398a30133f2211 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 767/872] safeeyes: rebuild for Python 3.8.

---
 srcpkgs/safeeyes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/safeeyes/template b/srcpkgs/safeeyes/template
index bc35f302011..e7019662316 100644
--- a/srcpkgs/safeeyes/template
+++ b/srcpkgs/safeeyes/template
@@ -1,7 +1,7 @@
 # Template file for 'safeeyes'
 pkgname=safeeyes
 version=2.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="safeeyes"

From c2dacb3fb6e6380df395bffb3460d67524ddf348 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 768/872] scapy: rebuild for Python 3.8.

---
 srcpkgs/scapy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scapy/template b/srcpkgs/scapy/template
index 65242f332a8..36972bfd461 100644
--- a/srcpkgs/scapy/template
+++ b/srcpkgs/scapy/template
@@ -1,7 +1,7 @@
 # Template file for 'scapy'
 pkgname=scapy
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="scapy"

From 6b1ebeaf3648f62790dbf2c394c4060d12cb23d0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 769/872] screenplain: rebuild for Python 3.8.

---
 srcpkgs/screenplain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/screenplain/template b/srcpkgs/screenplain/template
index 8410ab45e40..8eb759ae6a6 100644
--- a/srcpkgs/screenplain/template
+++ b/srcpkgs/screenplain/template
@@ -1,7 +1,7 @@
 # Template file for 'screenplain'
 pkgname=screenplain
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenplain"

From 483229f73350818a1571180552a37954f26fe29d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 770/872] scudcloud: rebuild for Python 3.8.

---
 srcpkgs/scudcloud/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
index 1b9f5f27d8a..1ab2618066e 100644
--- a/srcpkgs/scudcloud/template
+++ b/srcpkgs/scudcloud/template
@@ -1,7 +1,7 @@
 # Template file for 'scudcloud'
 pkgname=scudcloud
 version=1.65
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="scudcloud"
 hostmakedepends="python3-setuptools"

From 123ca799b85c1e8c6cb93162214eead9f92e0baa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 771/872] seafile-libclient: rebuild for Python 3.8.

---
 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 47c49d5ceb2..5eda59c1041 100644
--- a/srcpkgs/seafile-libclient/template
+++ b/srcpkgs/seafile-libclient/template
@@ -1,7 +1,7 @@
 # Template file for 'seafile-libclient'
 pkgname=seafile-libclient
 version=7.0.2
-revision=1
+revision=2
 _distname="${pkgname/-libclient/}"
 wrksrc="${_distname}-${version}"
 build_style=gnu-configure

From dadf6fedad6d6851a5b944f873d4d86cd36ed505 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 772/872] sonata: rebuild for Python 3.8.

---
 srcpkgs/sonata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template
index 3e07610d1e5..fc2d86e6c1a 100644
--- a/srcpkgs/sonata/template
+++ b/srcpkgs/sonata/template
@@ -1,7 +1,7 @@
 # Template file for 'sonata'
 pkgname=sonata
 version=1.7b1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="sonata"

From 430726310d4a2c6f4487784216744a0ba8d42a97 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 773/872] speech-dispatcher: rebuild for Python 3.8.

---
 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 0c27951586a..39cebf1f320 100644
--- a/srcpkgs/speech-dispatcher/template
+++ b/srcpkgs/speech-dispatcher/template
@@ -1,7 +1,7 @@
 # Template build file for 'speech-dispatcher'.
 pkgname=speech-dispatcher
 version=0.8.8
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static"
 short_desc="High-level device independent layer for speech synthesis interface"

From 4bea1bb7754629dcc5164d4be09697dacdc27f52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 774/872] speedtest-cli: rebuild for Python 3.8.

---
 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 6746ea3a35e..c65d9fd631d 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.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="speedtest.py"

From b24b9d876eb69c9d222b4115f375b535b41d8e34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 775/872] sshuttle: rebuild for Python 3.8.

---
 srcpkgs/sshuttle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sshuttle/template b/srcpkgs/sshuttle/template
index e74d90171f2..04bae9a15c3 100644
--- a/srcpkgs/sshuttle/template
+++ b/srcpkgs/sshuttle/template
@@ -1,7 +1,7 @@
 # Template file for 'sshuttle'
 pkgname=sshuttle
 version=0.78.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="sshuttle"

From a94cf196bb0163b8ceac1e90b0c8aacf242262a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 776/872] sssd: rebuild for Python 3.8.

---
 srcpkgs/sssd/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sssd/template b/srcpkgs/sssd/template
index 2ea28d21bee..13d0da0ba99 100644
--- a/srcpkgs/sssd/template
+++ b/srcpkgs/sssd/template
@@ -1,7 +1,7 @@
 # Template file for 'sssd'
 pkgname=sssd
 version=2.0.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-selinux --without-semanage
  --disable-cifs-idmap-plugin --without-samba --with-os=fedora

From 70d497d5a57f21eb299193883523ee44fa71ea5a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 777/872] stcgal: rebuild for Python 3.8.

---
 srcpkgs/stcgal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stcgal/template b/srcpkgs/stcgal/template
index 3410ccf8678..d75e88837cc 100644
--- a/srcpkgs/stcgal/template
+++ b/srcpkgs/stcgal/template
@@ -1,7 +1,7 @@
 # Template file for 'stcgal'
 pkgname=stcgal
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="stcgal"

From cdf4a89e4e281111a817c4c7113ad77d40c5c6be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 778/872] stig: rebuild for Python 3.8.

---
 srcpkgs/stig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stig/template b/srcpkgs/stig/template
index 0777c5f0cc2..abe5f3b563c 100644
--- a/srcpkgs/stig/template
+++ b/srcpkgs/stig/template
@@ -1,7 +1,7 @@
 # Template file for 'stig'
 pkgname=stig
 version=0.10.1a
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 930f6e549836c3d39fd851a831e39a14e72633bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 779/872] streamlink: rebuild for Python 3.8.

---
 srcpkgs/streamlink/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/streamlink/template b/srcpkgs/streamlink/template
index abcdc12c4ac..59caa85dc8a 100644
--- a/srcpkgs/streamlink/template
+++ b/srcpkgs/streamlink/template
@@ -1,7 +1,7 @@
 # Template file for 'streamlink'
 pkgname=streamlink
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="streamlink streamlink_cli"

From ba9febf35412930fc49b70b49d56a17aa23ec4db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 780/872] subuser: rebuild for Python 3.8.

---
 srcpkgs/subuser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/subuser/template b/srcpkgs/subuser/template
index 50444246b29..0bc3e71db36 100644
--- a/srcpkgs/subuser/template
+++ b/srcpkgs/subuser/template
@@ -1,7 +1,7 @@
 # Template file for 'subuser'
 pkgname=subuser
 version=0.6.2
-revision=2
+revision=3
 archs="x86_64*"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From e15b7d83da234e08cd82b0718dee84173dfe4966 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 781/872] synapse: rebuild for Python 3.8.

---
 srcpkgs/synapse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template
index daae80e5792..0c0fd6841fb 100644
--- a/srcpkgs/synapse/template
+++ b/srcpkgs/synapse/template
@@ -1,7 +1,7 @@
 # Template file for 'synapse'
 pkgname=synapse
 version=1.3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From b4a3fa9e78a0b408df1d5ebbe41cd3ac56907dc4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 782/872] tekaim: rebuild for Python 3.8.

---
 srcpkgs/tekaim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tekaim/template b/srcpkgs/tekaim/template
index e3cc5335ecc..bd60dcc57a6 100644
--- a/srcpkgs/tekaim/template
+++ b/srcpkgs/tekaim/template
@@ -1,7 +1,7 @@
 # Template file for 'tekaim'
 pkgname=tekaim
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From 7224199b765cb4f2b66887ffe6244532da34b988 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 783/872] telepresence: rebuild for Python 3.8.

---
 srcpkgs/telepresence/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/telepresence/template b/srcpkgs/telepresence/template
index 17300f3b548..fa7f916f66f 100644
--- a/srcpkgs/telepresence/template
+++ b/srcpkgs/telepresence/template
@@ -1,7 +1,7 @@
 # Template file for 'telepresence'
 pkgname=telepresence
 version=0.102
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="telepresence"

From f585c9fe61cb8e3a7275817bb40e60bd92406046 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 784/872] termdown: rebuild for Python 3.8.

---
 srcpkgs/termdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/termdown/template b/srcpkgs/termdown/template
index 90a4a894d42..299de920389 100644
--- a/srcpkgs/termdown/template
+++ b/srcpkgs/termdown/template
@@ -1,7 +1,7 @@
 # Template file for 'termdown'
 pkgname=termdown
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="termdown.py"

From 52c4dcee8ca0ed8b268907b88b218d7b8e6f9593 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 785/872] terminal_markdown_viewer: rebuild for Python 3.8.

---
 srcpkgs/terminal_markdown_viewer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/terminal_markdown_viewer/template b/srcpkgs/terminal_markdown_viewer/template
index e5d0f38aae2..ba3fcfdc8d6 100644
--- a/srcpkgs/terminal_markdown_viewer/template
+++ b/srcpkgs/terminal_markdown_viewer/template
@@ -1,7 +1,7 @@
 # Template file for 'terminal_markdown_viewer'
 pkgname=terminal_markdown_viewer
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mdv"

From c4298b68d0f7694e8a23e689420f2a3d1f085606 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 786/872] thefuck: rebuild for Python 3.8.

---
 srcpkgs/thefuck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thefuck/template b/srcpkgs/thefuck/template
index 714cd7982c7..a0de1c7b6a3 100644
--- a/srcpkgs/thefuck/template
+++ b/srcpkgs/thefuck/template
@@ -1,7 +1,7 @@
 # Template file for 'thefuck'
 pkgname=thefuck
 version=3.29
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="thefuck"

From b18d19065aa9bd9b335b3ee939bb0bd64efade58 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 787/872] thinkpad-scripts: rebuild for Python 3.8.

---
 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 8d26cf23e77..855d42492fb 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tps"

From 1770ed9b1c9c751304b91a6f6e53da7de1648214 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 788/872] thrift: rebuild for Python 3.8.

---
 srcpkgs/thrift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thrift/template b/srcpkgs/thrift/template
index 73b0f59d4f6..e379ac35a09 100644
--- a/srcpkgs/thrift/template
+++ b/srcpkgs/thrift/template
@@ -1,7 +1,7 @@
 # Template file for 'thrift'
 pkgname=thrift
 version=0.12.0
-revision=2
+revision=3
 build_style=gnu-configure
 makedepends="boost-devel libressl-devel"
 short_desc="Apache Thrift compiler"

From 524283aef8b8fdd32035330913bfd16958f21979 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 789/872] todoman: rebuild for Python 3.8.

---
 srcpkgs/todoman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/todoman/template b/srcpkgs/todoman/template
index 2e0489ff49e..676412b8d0b 100644
--- a/srcpkgs/todoman/template
+++ b/srcpkgs/todoman/template
@@ -1,7 +1,7 @@
 # Template file for 'todoman'
 pkgname=todoman
 version=3.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="todoman"

From 7180afa5a1715531304f6a36a9eac431039f64f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 790/872] toot: rebuild for Python 3.8.

---
 srcpkgs/toot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template
index b6dcdc9ede6..7f9fac6ca01 100644
--- a/srcpkgs/toot/template
+++ b/srcpkgs/toot/template
@@ -1,7 +1,7 @@
 # Template file for 'toot'
 pkgname=toot
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="toot"

From d56207a1678134019b4f169934f0c50a78cf7588 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 791/872] torbrowser-launcher: fix and rebuild for Python 3.8.

---
 srcpkgs/torbrowser-launcher/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/torbrowser-launcher/template b/srcpkgs/torbrowser-launcher/template
index a4aa707495c..4986b6b3240 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.2
-revision=1
+revision=2
 archs="i686 x86_64" # limited by Tor Browser itself
 build_style=python3-module
 pycompile_module="torbrowser_launcher"
@@ -15,6 +15,10 @@ changelog="https://raw.githubusercontent.com/micahflee/torbrowser-launcher/maste
 distfiles="https://github.com/micahflee/torbrowser-launcher/archive/v${version}.tar.gz"
 checksum=25ad4b0c70579628bf18f4cdcd18ac303fe4f7f1c590cc48df2a87651c92991c
 
+post_extract() { 
+	# Python 3.8 removed platform.dist()
+	sed -i 's/distro =.*/distro = "Void"/' setup.py
+}
 post_install() {
 	vlicense LICENSE
 	rm ${DESTDIR}/usr/share/locale/torbrowser-launcher.mo # installed twice

From c66dda5131119abe071425664238ca389de34d8f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 792/872] tox: rebuild for Python 3.8.

---
 srcpkgs/tox/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tox/template b/srcpkgs/tox/template
index 8c6b63a3cb1..908cb86bb38 100644
--- a/srcpkgs/tox/template
+++ b/srcpkgs/tox/template
@@ -1,7 +1,7 @@
 # Template file for 'tox'
 pkgname=tox
 version=3.14.0
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="tox"
 hostmakedepends="python3-setuptools"

From c37ef482e10fb14da3d6cb396c8904257dc2c7c0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 793/872] trackma: rebuild for Python 3.8.

---
 srcpkgs/trackma/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/trackma/template b/srcpkgs/trackma/template
index 96833382346..4c29bb8a35d 100644
--- a/srcpkgs/trackma/template
+++ b/srcpkgs/trackma/template
@@ -1,7 +1,7 @@
 # Template file for 'trackma'
 pkgname=trackma
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 0a1f54dd6467927b77f9371a41381a01608228e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 794/872] trash-cli: rebuild for Python 3.8.

---
 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 2a08548c7c8..4ab724d8cb1 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.17.1.14
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3"

From 58a2a91ed22dcbe5fab5c49b6cb5b04cacb0bec6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 795/872] tryton: rebuild for Python 3.8.

---
 srcpkgs/tryton/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tryton/template b/srcpkgs/tryton/template
index 196033361f6..61e0f733dc9 100644
--- a/srcpkgs/tryton/template
+++ b/srcpkgs/tryton/template
@@ -1,7 +1,7 @@
 # Template file for 'tryton'
 pkgname=tryton
 version=5.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tryton"

From 0334c761ba939e24db0b4c619858a9e37a119b2d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 796/872] tuimoji: rebuild for Python 3.8.

---
 srcpkgs/tuimoji/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuimoji/template b/srcpkgs/tuimoji/template
index 71e0bf540c0..73f5cff281f 100644
--- a/srcpkgs/tuimoji/template
+++ b/srcpkgs/tuimoji/template
@@ -1,7 +1,7 @@
 # Template file for 'tuimoji'
 pkgname=tuimoji
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tuimoji"

From 7c8600b2683e37b9ae3b8d28fdf26fda4c4f5c41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 797/872] tuir: rebuild for Python 3.8.

---
 srcpkgs/tuir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuir/template b/srcpkgs/tuir/template
index dfc0b15c535..a98f4484544 100644
--- a/srcpkgs/tuir/template
+++ b/srcpkgs/tuir/template
@@ -1,7 +1,7 @@
 # Template file for 'tuir'
 pkgname=tuir
 version=1.28.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=python3-module

From fa94d7c83f3c15bf441526ff78dcfaa2e1a0e4fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 798/872] tzupdate: rebuild for Python 3.8.

---
 srcpkgs/tzupdate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tzupdate/template b/srcpkgs/tzupdate/template
index 9531f0f7540..de2217476bd 100644
--- a/srcpkgs/tzupdate/template
+++ b/srcpkgs/tzupdate/template
@@ -1,7 +1,7 @@
 # Template file for 'tzupdate'
 pkgname=tzupdate
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tzupdate.py"

From 8246b4d5c37f08891fb4b91655ad97e368d4b404 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 799/872] udiskie: rebuild for Python 3.8.

---
 srcpkgs/udiskie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/udiskie/template b/srcpkgs/udiskie/template
index 536f4d5609d..06d58236046 100644
--- a/srcpkgs/udiskie/template
+++ b/srcpkgs/udiskie/template
@@ -1,7 +1,7 @@
 # Template file for 'udiskie'
 pkgname=udiskie
 version=1.7.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="udiskie"

From c58f7d10a7748b8cf418991f3d804ce8631a137e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 800/872] ueberzug: rebuild for Python 3.8.

---
 srcpkgs/ueberzug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ueberzug/template b/srcpkgs/ueberzug/template
index e0c474ff63e..dfa1ab29d96 100644
--- a/srcpkgs/ueberzug/template
+++ b/srcpkgs/ueberzug/template
@@ -1,7 +1,7 @@
 # Template file for 'ueberzug'
 pkgname=ueberzug
 version=18.1.3
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel libX11-devel libXext-devel"

From e6ca68fa761e2b3df26f06a7b44e30331de08220 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 801/872] ufw: rebuild for Python 3.8.

---
 srcpkgs/ufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ufw/template b/srcpkgs/ufw/template
index ac7dfa45cdd..0bf2a3a0b76 100644
--- a/srcpkgs/ufw/template
+++ b/srcpkgs/ufw/template
@@ -1,7 +1,7 @@
 # Template file for 'ufw'
 pkgname=ufw
 version=0.36
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="ufw"

From 14dcd23aa719947cc774b71ef0820127a4865ef0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 802/872] unicorn: rebuild for Python 3.8.

---
 srcpkgs/unicorn/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/unicorn/template b/srcpkgs/unicorn/template
index 317e261ae88..971d44752ca 100644
--- a/srcpkgs/unicorn/template
+++ b/srcpkgs/unicorn/template
@@ -1,7 +1,7 @@
 # Template file for 'unicorn'
 pkgname=unicorn
 version=1.0.1
-revision=2
+revision=3
 archs="x86_64* i686*"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"
 short_desc="Lightweight multi-platform, multi-architecture CPU emulator framework"

From 1ae8d35f7645adeab1e7f8afafd996c92f0c08b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 803/872] unknown-horizons: rebuild for Python 3.8.

---
 srcpkgs/unknown-horizons/patches/py38.patch | 14 ++++++++++++++
 srcpkgs/unknown-horizons/template           |  2 +-
 2 files changed, 15 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/unknown-horizons/patches/py38.patch

diff --git a/srcpkgs/unknown-horizons/patches/py38.patch b/srcpkgs/unknown-horizons/patches/py38.patch
new file mode 100644
index 00000000000..59194750cd1
--- /dev/null
+++ b/srcpkgs/unknown-horizons/patches/py38.patch
@@ -0,0 +1,14 @@
+--- setup.py.orig
++++ setup.py
+@@ -39,10 +39,7 @@
+ # Ensure we are in the correct directory
+ os.chdir(os.path.realpath(os.path.dirname(__file__)))
+ 
+-if platform.dist()[0].lower() in ('debian', 'ubuntu'):
+-	executable_path = 'games'
+-else:
+-	executable_path = 'bin'
++executable_path = 'bin'
+ 
+ 
+ # this trick is for setting RELEASE_VERSION if the code is cloned from git repository
diff --git a/srcpkgs/unknown-horizons/template b/srcpkgs/unknown-horizons/template
index b5fc593b744..6e81970800d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3 intltool git python3-Pillow"

From 615d1baa489feab3864039bee37dad2e1ba9977d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 804/872] urh: rebuild for Python 3.8.

---
 srcpkgs/urh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urh/template b/srcpkgs/urh/template
index 2cec83082fd..31f28bb366b 100644
--- a/srcpkgs/urh/template
+++ b/srcpkgs/urh/template
@@ -1,7 +1,7 @@
 # Template file for 'urh'
 pkgname=urh
 version=2.7.5
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="urh"
 hostmakedepends="python3-setuptools python3-Cython"

From da0ab011d8839f3a6ddc2367fc8e1c879825ec29 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 805/872] urlscan: rebuild for Python 3.8.

---
 srcpkgs/urlscan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlscan/template b/srcpkgs/urlscan/template
index f6f0d1db07b..2bb1688dad7 100644
--- a/srcpkgs/urlscan/template
+++ b/srcpkgs/urlscan/template
@@ -1,7 +1,7 @@
 # Template file for 'urlscan'
 pkgname=urlscan
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlscan"

From d23be20fa55a06ffcdf1acd3d7018f833d4337c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 806/872] urlwatch: rebuild for Python 3.8.

---
 srcpkgs/urlwatch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlwatch/template b/srcpkgs/urlwatch/template
index e8a5e403c92..1166fe101a7 100644
--- a/srcpkgs/urlwatch/template
+++ b/srcpkgs/urlwatch/template
@@ -1,7 +1,7 @@
 # Template file for 'urlwatch'
 pkgname=urlwatch
 version=2.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlwatch"

From 758ae9723decfd1886b28f363eb103c16dbaa04b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 807/872] vapoursynth: fix and rebuild for Python 3.8.

---
 srcpkgs/vapoursynth/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/vapoursynth/template b/srcpkgs/vapoursynth/template
index dd85e8b39dc..1c417a624c3 100644
--- a/srcpkgs/vapoursynth/template
+++ b/srcpkgs/vapoursynth/template
@@ -1,7 +1,7 @@
 # Template file for 'vapoursynth'
 pkgname=vapoursynth
 version=R47.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake pkg-config libtool nasm python3-Cython"
 makedepends="python3-devel zimg-devel libmagick-devel libass-devel ffmpeg-devel
@@ -21,6 +21,7 @@ case $XBPS_TARGET_MACHINE in
 esac
 
 pre_configure() {
+	sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION/&-embed/g' configure.ac
 	./autogen.sh
 	case $XBPS_TARGET_MACHINE in
 		arm*musl)

From 2765c9f1b1e0d4395e629f6ff66e1003221cbb27 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 808/872] variety: rebuild for Python 3.8.

---
 srcpkgs/variety/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/variety/template b/srcpkgs/variety/template
index b4ea756c0c9..4d327a830f8 100644
--- a/srcpkgs/variety/template
+++ b/srcpkgs/variety/template
@@ -1,7 +1,7 @@
 # Template file for 'variety'
 pkgname=variety
 version=0.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="jumble variety variety_lib"

From 090c4bfcfc2db73eba64fcab8dec459707ad2676 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 809/872] vdirsyncer: rebuild for Python 3.8.

---
 srcpkgs/vdirsyncer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vdirsyncer/template b/srcpkgs/vdirsyncer/template
index 24080413456..708204afda2 100644
--- a/srcpkgs/vdirsyncer/template
+++ b/srcpkgs/vdirsyncer/template
@@ -1,7 +1,7 @@
 # Template file for 'vdirsyncer'
 pkgname=vdirsyncer
 version=0.16.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="vdirsyncer"

From fb3a977a1a5a3fd2be779201a4dd819512a4351a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 810/872] vidcutter: rebuild for Python 3.8.

---
 srcpkgs/vidcutter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vidcutter/template b/srcpkgs/vidcutter/template
index 4f30b888805..6ca85d4e766 100644
--- a/srcpkgs/vidcutter/template
+++ b/srcpkgs/vidcutter/template
@@ -1,7 +1,7 @@
 # Template file for 'vidcutter'
 pkgname=vidcutter
 version=6.0.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="vidcutter"

From 0addee01c86811593babb5238c415197cb01b03e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 811/872] vimiv: rebuild for Python 3.8.

---
 srcpkgs/vimiv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vimiv/template b/srcpkgs/vimiv/template
index 20fcbe7a03f..a560d4c9d81 100644
--- a/srcpkgs/vimiv/template
+++ b/srcpkgs/vimiv/template
@@ -1,7 +1,7 @@
 # Template file for 'vimiv'
 pkgname="vimiv"
 version=0.9.1
-revision=2
+revision=3
 build_style=gnu-makefile
 pycompile_module=vimiv
 hostmakedepends="python3-setuptools python3-devel"

From 0e236f27837583bf861e3984a19f4cf7827cbac1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 812/872] virtme: rebuild for Python 3.8.

---
 srcpkgs/virtme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtme/template b/srcpkgs/virtme/template
index 3905cb24b1d..30035a734f3 100644
--- a/srcpkgs/virtme/template
+++ b/srcpkgs/virtme/template
@@ -1,7 +1,7 @@
 # Template file for 'virtme'
 pkgname=virtme
 version=0.0.3.20180725
-revision=1
+revision=2
 archs=noarch
 _commit=60100bea82183b5d32ed9fca6534cd0fc60d5eb2
 wrksrc="${_commit}"

From 977bedee2b9cf218b33b79b6a30d782088e693be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 813/872] virtualenvwrapper: rebuild for Python 3.8.

---
 srcpkgs/virtualenvwrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtualenvwrapper/template b/srcpkgs/virtualenvwrapper/template
index 6007cc5d2ed..1f0c2efee86 100644
--- a/srcpkgs/virtualenvwrapper/template
+++ b/srcpkgs/virtualenvwrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'virtualenvwrapper'
 pkgname=virtualenvwrapper
 version=4.8.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="virtualenvwrapper"

From 13d514ee50452908bb52a5f4c379b8543e8aae2e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 814/872] visidata: rebuild for Python 3.8.

---
 srcpkgs/visidata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/visidata/template b/srcpkgs/visidata/template
index 715896e5f7c..c5c3ae7c82e 100644
--- a/srcpkgs/visidata/template
+++ b/srcpkgs/visidata/template
@@ -1,7 +1,7 @@
 # Template file for 'visidata'
 pkgname=visidata
 version=1.5.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="visidata"

From 9ed4ec9bfee68875daad74ea3f07f0378d1b0009 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 815/872] volctl: rebuild for Python 3.8.

---
 srcpkgs/volctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template
index 2b01750b9eb..585aabd2495 100644
--- a/srcpkgs/volctl/template
+++ b/srcpkgs/volctl/template
@@ -1,7 +1,7 @@
 # Template file for 'volctl'
 pkgname=volctl
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="volctl"

From 0db272695e88b29ee9216db4cc2572e0020b4df0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 816/872] voltron: rebuild for Python 3.8.

---
 srcpkgs/voltron/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/voltron/template b/srcpkgs/voltron/template
index c258bb9bab9..38f47a824e3 100644
--- a/srcpkgs/voltron/template
+++ b/srcpkgs/voltron/template
@@ -1,7 +1,7 @@
 # Template file for 'voltron'
 pkgname=voltron
 version=0.1.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="voltron"

From 12dedac32ff8a0f576ad19fc3147b4b386831c3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 817/872] volume_key: rebuild for Python 3.8.

---
 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 11d7b16bed8..14431cb70e9 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=1
+revision=2
 build_style=gnu-configure
 make_build_args="PYTHON3_CFLAGS=-I${XBPS_CROSS_BASE}/${py3_inc}
  PYTHON_CFLAGS=-I${XBPS_CROSS_BASE}/${py2_inc}"

From 3ce63c210ee385583504492fdf75f2ae859f05a4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 818/872] weather: rebuild for Python 3.8.

---
 srcpkgs/weather/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weather/template b/srcpkgs/weather/template
index ffa8a828b36..3ac33bfac15 100644
--- a/srcpkgs/weather/template
+++ b/srcpkgs/weather/template
@@ -1,7 +1,7 @@
 # Template file for 'weather'
 pkgname=weather
 version=2.3
-revision=2
+revision=3
 archs=noarch
 hostmakedepends="python3"
 depends="python3"

From 6b24b9871b5a34bb13b50f506793021986de04d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 819/872] wfuzz: rebuild for Python 3.8.

---
 srcpkgs/wfuzz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wfuzz/template b/srcpkgs/wfuzz/template
index b03c1f28add..4a88ab67407 100644
--- a/srcpkgs/wfuzz/template
+++ b/srcpkgs/wfuzz/template
@@ -1,7 +1,7 @@
 # Template file for 'wfuzz'
 pkgname=wfuzz
 version=2.4
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="wfuzz"

From ffffd630d47635e9948e7264798154dcf5cf4862 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 820/872] wpgtk: rebuild for Python 3.8.

---
 srcpkgs/wpgtk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpgtk/template b/srcpkgs/wpgtk/template
index 7e9d52b4f81..a722da58f22 100644
--- a/srcpkgs/wpgtk/template
+++ b/srcpkgs/wpgtk/template
@@ -1,7 +1,7 @@
 # Template file for 'wpgtk'
 pkgname=wpgtk
 version=6.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpgtk"

From ad6d5b938b34863f749429277206983bd33a9592 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 821/872] wpull: rebuild for Python 3.8.

---
 srcpkgs/wpull/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpull/template b/srcpkgs/wpull/template
index 5e9b9dcc641..621e1c85428 100644
--- a/srcpkgs/wpull/template
+++ b/srcpkgs/wpull/template
@@ -1,7 +1,7 @@
 # Template file for 'wpull'
 pkgname=wpull
 version=2.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpull"

From c0ba430699f94546d60abaeba6f248ef6d36ef84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 822/872] wxPython4: rebuild for Python 3.8.

---
 srcpkgs/wxPython4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wxPython4/template b/srcpkgs/wxPython4/template
index 2aa7117d5e0..b65e0b2ffe1 100644
--- a/srcpkgs/wxPython4/template
+++ b/srcpkgs/wxPython4/template
@@ -1,7 +1,7 @@
 # Template file for 'wxPython4'
 pkgname=wxPython4
 version=4.0.6
-revision=2
+revision=3
 wrksrc="wxPython-${version}"
 build_style=python3-module
 pycompile_module="wx"

From eae81cc7d657c1f863b8ae9a32aa075cc25328f4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 823/872] xcb-proto: rebuild for Python 3.8.

---
 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 1b26ecd73f3..020524bda87 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.13
-revision=2
+revision=3
 archs=noarch
 build_style=gnu-configure
 pycompile_module="xcbgen"

From c879f24aa56efd90bcd1b2031c3a7e194ee93abb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 824/872] xdot: rebuild for Python 3.8.

---
 srcpkgs/xdot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xdot/template b/srcpkgs/xdot/template
index 23f7b1f17e0..f7507ffb8c5 100644
--- a/srcpkgs/xdot/template
+++ b/srcpkgs/xdot/template
@@ -1,7 +1,7 @@
 # Template file for 'xdot'
 pkgname=xdot
 version=1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="xdot.py-${version}"
 build_style=python3-module

From ba48e65ee5332c30c40c9015ffd4f97f902bdcc1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 825/872] xkcdpass: rebuild for Python 3.8.

---
 srcpkgs/xkcdpass/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xkcdpass/template b/srcpkgs/xkcdpass/template
index 46b4a9635f9..37fb6872079 100644
--- a/srcpkgs/xkcdpass/template
+++ b/srcpkgs/xkcdpass/template
@@ -1,7 +1,7 @@
 # Template file for 'xkcdpass'
 pkgname=xkcdpass
 version=1.17.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="XKCD-password-generator-xkcdpass-${version}"
 build_style=python3-module

From f604c57acf10fb9091080955e88a704447aab0cb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 826/872] xonsh: rebuild for Python 3.8.

---
 srcpkgs/xonsh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xonsh/template b/srcpkgs/xonsh/template
index 768ebf36022..2dca267d0d1 100644
--- a/srcpkgs/xonsh/template
+++ b/srcpkgs/xonsh/template
@@ -1,7 +1,7 @@
 # Template file for 'xonsh'
 pkgname=xonsh
 version=0.9.12
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="xonsh xontrib"

From 8cdb99abdc99eefcc53ff3ab7418d4d830558c63 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 827/872] yq: rebuild for Python 3.8.

---
 srcpkgs/yq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yq/template b/srcpkgs/yq/template
index 7c3af7f43c2..dda886c6c40 100644
--- a/srcpkgs/yq/template
+++ b/srcpkgs/yq/template
@@ -1,7 +1,7 @@
 # Template file for 'yq'
 pkgname=yq
 version=2.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 6e757a227ac3953cc8567422ce6b473e6df30cc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 828/872] ytcc: rebuild for Python 3.8.

---
 srcpkgs/ytcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ytcc/template b/srcpkgs/ytcc/template
index feafa404b75..df4195758c7 100644
--- a/srcpkgs/ytcc/template
+++ b/srcpkgs/ytcc/template
@@ -1,7 +1,7 @@
 # Template file for 'ytcc'
 pkgname=ytcc
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ytcc"

From 1742b15ff06a60216eae8f7a016b441d18572e03 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 829/872] yturl: rebuild for Python 3.8.

---
 srcpkgs/yturl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yturl/template b/srcpkgs/yturl/template
index 6fa3e9872ee..ee14b77b5a0 100644
--- a/srcpkgs/yturl/template
+++ b/srcpkgs/yturl/template
@@ -1,7 +1,7 @@
 # Template file for 'yturl'
 pkgname=yturl
 version=2.0.2
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From b6302f7cf81ad28b08db1f9b8e986b9a6c3d59c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 830/872] yubikey-manager: rebuild for Python 3.8.

---
 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 af0330e8e15..fcc7b7cb737 100644
--- a/srcpkgs/yubikey-manager/template
+++ b/srcpkgs/yubikey-manager/template
@@ -1,7 +1,7 @@
 # Template file for 'yubikey-manager'
 pkgname=yubikey-manager
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 87bab1c9de0d25f72a5520b2adcd72c53599a433 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 831/872] z3: rebuild for Python 3.8.

---
 srcpkgs/z3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/z3/template b/srcpkgs/z3/template
index d632a285019..e054915df91 100644
--- a/srcpkgs/z3/template
+++ b/srcpkgs/z3/template
@@ -1,7 +1,7 @@
 # Template file for 'z3'
 pkgname=z3
 version=4.8.6
-revision=2
+revision=3
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=configure
 configure_args="--prefix=/usr -g --python $(vopt_if ocaml --ml)"

From 08edebe2ef2c613536937e6ee2d3fc6e9f067b72 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 832/872] zim: rebuild for Python 3.8.

---
 srcpkgs/zim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/zim/template b/srcpkgs/zim/template
index 45b9df5357c..dff4ad22081 100644
--- a/srcpkgs/zim/template
+++ b/srcpkgs/zim/template
@@ -1,7 +1,7 @@
 # Template file for 'zim'
 pkgname=zim
 version=0.71.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="zim"

From b4ef921e58656c77eb688ee4e2af7b20b3c8bfd2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 833/872] python3-pafy: rebuild for Python 3.8.

---
 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 ce26f770c69..b59c9a0adff 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.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pafy-${version}"
 build_style=python3-module

From bf4e7780fb8dcc15680cd79ddef83f8183bb3375 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 834/872] python3-perf: rebuild for Python 3.8.

---
 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 a03251f97e8..3d57ddb1c1a 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.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyperf-${version}"
 build_style=python3-module

From 80bbe375d025a8f2df0fa0878b5089c83f181e95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 835/872] python3-yara: rebuild for Python 3.8.

---
 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 4a6c56dd083..3bdff14a0da 100644
--- a/srcpkgs/python3-yara/template
+++ b/srcpkgs/python3-yara/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-yara'
 pkgname=python3-yara
 version=3.11.0
-revision=1
+revision=2
 wrksrc="yara-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From dfbf656d20e2c60d70d38432d72796e45a07530a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:31 +0200
Subject: [PATCH 836/872] azote: rebuild for Python 3.8.

---
 srcpkgs/azote/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/azote/template b/srcpkgs/azote/template
index 0a23c209551..2748cb98733 100644
--- a/srcpkgs/azote/template
+++ b/srcpkgs/azote/template
@@ -1,7 +1,7 @@
 # Template file for 'azote'
 pkgname=azote
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="azote"

From 6f9b552c053623ad5214d1b8401f41cb4e56734c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 837/872] binwalk: rebuild for Python 3.8.

---
 srcpkgs/binwalk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/binwalk/template b/srcpkgs/binwalk/template
index 461ea4b547a..fccd523d584 100644
--- a/srcpkgs/binwalk/template
+++ b/srcpkgs/binwalk/template
@@ -1,7 +1,7 @@
 # Template file for 'binwalk'
 pkgname=binwalk
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="binwalk"

From cdf9d0c94b7363a5bab761faa1a5119852db14c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 838/872] gnome-builder: rebuild for Python 3.8.

---
 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 9ae9ff9d94c..85aeeee9a15 100644
--- a/srcpkgs/gnome-builder/template
+++ b/srcpkgs/gnome-builder/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-builder'
 pkgname=gnome-builder
 version=3.34.1
-revision=1
+revision=2
 build_style=meson
 configure_args="-Dwith_webkit=true -Dwith_sysprof=true -Dhelp=true"
 hostmakedepends="appdata-tools desktop-file-utils flex gobject-introspection

From c0bccc27652b15e34572ed02503df5ae7b1dbebb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 839/872] gnome-tweaks: rebuild for Python 3.8.

---
 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 ac1f8bdb873..d0879253ac5 100644
--- a/srcpkgs/gnome-tweaks/template
+++ b/srcpkgs/gnome-tweaks/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-tweaks'
 pkgname=gnome-tweaks
 version=3.34.0
-revision=2
+revision=3
 archs=noarch
 build_style=meson
 pycompile_module="gtweak"

From c86e2d08bfa3e52c769e2b8c76e993af14c698bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 840/872] meson: rebuild for Python 3.8.

---
 srcpkgs/meson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meson/template b/srcpkgs/meson/template
index 315a0f27a92..76791451681 100644
--- a/srcpkgs/meson/template
+++ b/srcpkgs/meson/template
@@ -2,7 +2,7 @@
 pkgname=meson
 reverts="0.52.0_1 0.52.0_2"
 version=0.51.2
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mesonbuild"

From 1259e701609ac87f299b515b612f6b5589a6a5e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 841/872] onionshare: rebuild for Python 3.8.

---
 srcpkgs/onionshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onionshare/template b/srcpkgs/onionshare/template
index c585ae6101e..c37c5962736 100644
--- a/srcpkgs/onionshare/template
+++ b/srcpkgs/onionshare/template
@@ -1,7 +1,7 @@
 # Template file for 'onionshare'
 pkgname=onionshare
 version=2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="onionshare"

From e24fbb347a50db8d9adc3c2e21abfa2926516285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 842/872] portage: rebuild for Python 3.8.

---
 srcpkgs/portage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/portage/template b/srcpkgs/portage/template
index b0f34731035..9610428bbf4 100644
--- a/srcpkgs/portage/template
+++ b/srcpkgs/portage/template
@@ -1,7 +1,7 @@
 # Template file for 'portage'
 pkgname=portage
 version=2.3.77
-revision=1
+revision=2
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=python3-module
 pycompile_module="portage _emerge"

From 3d8944805a3fcbe269c633fd504f8156014b9743 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 843/872] rpm: fix and rebuild for Python 3.8.

---
 srcpkgs/rpm/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/rpm/template b/srcpkgs/rpm/template
index 98e35930c4c..695195323fd 100644
--- a/srcpkgs/rpm/template
+++ b/srcpkgs/rpm/template
@@ -1,7 +1,7 @@
 # Template file for 'rpm'
 pkgname=rpm
 version=4.15.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--with-lua --with-cap --with-acl --with-external-db
  --enable-python PYTHON=python3"
@@ -18,7 +18,7 @@ distfiles="http://ftp.rpm.org/releases/rpm-4.15.x/rpm-${version}.tar.bz2"
 checksum=1e06723b13591e57c99ebe2006fb8daddc4cf72efb366a64a34673ba5f61c201
 conflicts="rpmextract>=0" # Both provide rpm2cpio
 
-CFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6"
+CFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nss"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nspr"
 

From 72f86e0f7af627c04b12bdf23f9811e4ae8da247 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 844/872] youtube-dl: rebuild for Python 3.8.

---
 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 d6596b80bd3..f1ae3aa1a74 100644
--- a/srcpkgs/youtube-dl/template
+++ b/srcpkgs/youtube-dl/template
@@ -1,7 +1,7 @@
 # Template file for 'youtube-dl'
 pkgname=youtube-dl
 version=2019.10.16
-revision=1
+revision=2
 archs=noarch
 wrksrc=youtube-dl
 build_style=python3-module

From fb04151cb309fc8ff7a84dfe9204c113fb159d19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 845/872] blender: rebuild for Python 3.8.

---
 srcpkgs/blender/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template
index 758d1235185..47cb8f8ad13 100644
--- a/srcpkgs/blender/template
+++ b/srcpkgs/blender/template
@@ -1,7 +1,7 @@
 # Template file for 'blender'
 pkgname=blender
 version=2.79b
-revision=9
+revision=10
 build_style="cmake"
 makedepends="
  libgomp-devel libpng-devel tiff-devel python3-devel glu-devel

From 5a910b2ac8223753ca218101f9f59fd78dc5cfa3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 846/872] freecad: rebuild for Python 3.8.

---
 srcpkgs/freecad/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/freecad/template b/srcpkgs/freecad/template
index 9e9375c4444..26bf34702a2 100644
--- a/srcpkgs/freecad/template
+++ b/srcpkgs/freecad/template
@@ -1,7 +1,7 @@
 # Template file for 'freecad'
 pkgname=freecad
 version=0.18.3
-revision=2
+revision=3
 wrksrc="FreeCAD-${version}"
 build_style=cmake
 

From 32446cd95c2441db9d38c4ac07f025038c3c9510 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 847/872] gdb: rebuild for Python 3.8.

---
 srcpkgs/gdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gdb/template b/srcpkgs/gdb/template
index 9f84e4869e9..39aab79d08a 100644
--- a/srcpkgs/gdb/template
+++ b/srcpkgs/gdb/template
@@ -1,7 +1,7 @@
 # Template file for 'gdb'
 pkgname=gdb
 version=8.3.1
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="/usr/share/gdb"
 configure_args="--disable-werror --disable-nls --with-system-readline

From c374fa445ef4734555a51ba65667443628c437a5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 848/872] hexchat: rebuild for Python 3.8.

---
 srcpkgs/hexchat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hexchat/template b/srcpkgs/hexchat/template
index fbeaf28ae8a..9f7d7957b76 100644
--- a/srcpkgs/hexchat/template
+++ b/srcpkgs/hexchat/template
@@ -1,7 +1,7 @@
 # Template file for 'hexchat'
 pkgname=hexchat
 version=2.14.2
-revision=6
+revision=7
 build_style=meson
 configure_args="-Dwith-dbus=true -Dwith-ssl=true -Dwith-text=false
  -Dwith-perl=/usr/bin/perl -Dwith-python=python3

From 1a28d6208213efffc8e0175d8a22fe0c28dd72db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 849/872] hyperion: rebuild for Python 3.8.

---
 srcpkgs/hyperion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hyperion/template b/srcpkgs/hyperion/template
index 0befdbe7064..7ce415e929e 100644
--- a/srcpkgs/hyperion/template
+++ b/srcpkgs/hyperion/template
@@ -1,7 +1,7 @@
 # Template file for 'hyperion'
 pkgname=hyperion
 version=1.03.2
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DUSE_SYSTEM_PROTO_LIBS=ON -DENABLE_QT5=ON
  -DPROTOBUF_PROTOC_EXECUTABLE=/usr/bin/protoc -DENABLE_AMLOGIC=ON

From 521739c54edab764e22a7d821945f0a99dbab531 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 850/872] kdevelop-python: rebuild for Python 3.8.

---
 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 0265916a3d0..a306eb8f442 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.4.2
-revision=1
+revision=2
 wrksrc="kdev-python-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/kdevpythonsupport"

From 204b42f33357cfcbe50eaa9571de6ffcd17987f1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 851/872] kitty: rebuild for Python 3.8.

---
 srcpkgs/kitty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/kitty/template b/srcpkgs/kitty/template
index d79bcc4acce..54cd08c23ec 100644
--- a/srcpkgs/kitty/template
+++ b/srcpkgs/kitty/template
@@ -1,7 +1,7 @@
 # Template file for 'kitty'
 pkgname=kitty
 version=0.14.6
-revision=1
+revision=2
 pycompile_dirs="usr/lib/kitty"
 hostmakedepends="ncurses pkg-config python3 wayland-devel wayland-protocols"
 makedepends="gettext-devel glfw-devel harfbuzz-devel libxkbcommon-devel

From ff46af09ec9d031fa7b9f837936d6ce0ca6ab188 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 852/872] krita: rebuild for Python 3.8, fix sha256sum.

Tarball was yanked for trivial fix.
---
 srcpkgs/krita/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/krita/template b/srcpkgs/krita/template
index 7a59fc9ac58..67f128c61ce 100644
--- a/srcpkgs/krita/template
+++ b/srcpkgs/krita/template
@@ -1,7 +1,7 @@
 # Template file for 'krita'
 pkgname=krita
 version=4.2.7.1
-revision=1
+revision=2
 build_style=cmake
 configure_args="-Wno-dev -DBUILD_TESTING=OFF"
 hostmakedepends="extra-cmake-modules pkg-config python3"
@@ -18,6 +18,6 @@ license="GPL-3.0-only"
 homepage="https://krita.org/"
 KDE_SITE="http://ftp5.gwdg.de/pub/linux/kde/stable/"
 distfiles="${KDE_SITE}/krita/${version}/krita-${version}.tar.gz"
-checksum=28218030edca9dfa1c7e255401ca6fc8fe0e5329f7611cfc196e35746d312086
+checksum=3ed29fd9d8e067def55e703fc55312815c21041d274727e228bdbe0478c09c3d
 nocross=yes
 replaces="calligra-krita>=0"

From f9a159a4920b87026620cb80cb44e300bb5629df Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:26:38 +0200
Subject: [PATCH 853/872] libpeas: rebuild for Python 3.8.

---
 srcpkgs/libpeas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index a69238bf823..d4dcf8b5941 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,7 +1,7 @@
 # Template file for 'libpeas'
 pkgname=libpeas
 version=1.22.0
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"

From 3198d8c8c69cb92e374d2ee5506452d39e4d0112 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 854/872] libreoffice: rebuild for Python 3.8.

---
 srcpkgs/libreoffice/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template
index 6e8685ac0fd..98f04a40304 100644
--- a/srcpkgs/libreoffice/template
+++ b/srcpkgs/libreoffice/template
@@ -1,7 +1,7 @@
 # Template file for 'libreoffice'
 pkgname=libreoffice
 version=6.2.5.2
-revision=2
+revision=3
 build_style=meta
 make_build_args="build-nocheck"
 nocross=yes

From 6e364e35e9da7fad067673e7e0affd191b036cda Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 855/872] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index 1f9c8043b46..34174be7535 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=5
+revision=6
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From 8d6a6c56ca97a0c27761f1eb34b9ac5a412d5e76 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 856/872] libsigrokdecode: rebuild for Python 3.8.

---
 srcpkgs/libsigrokdecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsigrokdecode/template b/srcpkgs/libsigrokdecode/template
index 59e15dd61b9..cc9d9a10367 100644
--- a/srcpkgs/libsigrokdecode/template
+++ b/srcpkgs/libsigrokdecode/template
@@ -1,7 +1,7 @@
 # Template file for 'libsigrokdecode'
 pkgname=libsigrokdecode
 version=0.5.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="glib-devel python3-devel"

From eab6a99f64b40ea196f141af705a100a46c098a5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 857/872] luxrays: rebuild for Python 3.8.

---
 srcpkgs/luxrays/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/luxrays/template b/srcpkgs/luxrays/template
index c783e9fe3e5..58037fbfc05 100644
--- a/srcpkgs/luxrays/template
+++ b/srcpkgs/luxrays/template
@@ -1,7 +1,7 @@
 # Template file for 'luxrays'
 pkgname=luxrays
 version=3.1
-revision=13
+revision=14
 build_style=cmake
 configure_args="-DLUXRAYS_DISABLE_OPENCL=OFF -DCMAKE_SKIP_RPATH=ON"
 hostmakedepends="flex bison boost-devel"

From 4b5511ff6ff0a819f189e962b93232eef2057a0a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 858/872] navit: rebuild for Python 3.8.

---
 srcpkgs/navit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/navit/template b/srcpkgs/navit/template
index 461689a3c73..24cd151c64b 100644
--- a/srcpkgs/navit/template
+++ b/srcpkgs/navit/template
@@ -1,7 +1,7 @@
 # Template file for 'navit'
 pkgname=navit
 version=0.5.3
-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 2ab8aa0cdbe851d3d5f35721e48b280edc597164 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 859/872] obs: rebuild for Python 3.8.

---
 srcpkgs/obs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/obs/template b/srcpkgs/obs/template
index 3ed426b1583..45bf81803e4 100644
--- a/srcpkgs/obs/template
+++ b/srcpkgs/obs/template
@@ -1,7 +1,7 @@
 # Template file for 'obs'
 pkgname=obs
 version=24.0.1
-revision=1
+revision=2
 _commit_hash_obs_browser="693498b518cf893876f454ef581e13106e8370ec"
 _commit_hash_obs_vst="fde438f7a8afdf41a7ab386a0aa1a61175fc8427"
 _commit_hash_ftl_sdk="98289f7c2ed754c647d451899b3356850c0c1fa3"

From 87e37db9f0bdf52067c7be8fa4fda45b4f9a9734 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 860/872] renderdoc: fix and rebuild for Python 3.8.

---
 srcpkgs/renderdoc/files/swig-py38.patch    | 28 +++++++++++++
 srcpkgs/renderdoc/patches/cmake-py38.patch | 48 ++++++++++++++++++++++
 srcpkgs/renderdoc/template                 |  8 ++--
 3 files changed, 81 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/renderdoc/files/swig-py38.patch
 create mode 100644 srcpkgs/renderdoc/patches/cmake-py38.patch

diff --git a/srcpkgs/renderdoc/files/swig-py38.patch b/srcpkgs/renderdoc/files/swig-py38.patch
new file mode 100644
index 00000000000..0595599c658
--- /dev/null
+++ b/srcpkgs/renderdoc/files/swig-py38.patch
@@ -0,0 +1,28 @@
+From dbe955dd0300d55a32fd73a4eef730b3e30ed5c4 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 20:32:03 +0200
+Subject: [PATCH] swig: avoid use of _PyObject_GC_UNTRACK
+
+It is deprecated[1]. Use PyObject_GC_UnTrack instead.
+
+[1] https://docs.python.org/3/c-api/gcsupport.html#c._PyObject_GC_UNTRACK
+---
+ Lib/python/builtin.swg | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Lib/python/builtin.swg b/Lib/python/builtin.swg
+index 9597653b7..6af45a9d1 100644
+--- a/Lib/python/builtin.swg
++++ b/Lib/python/builtin.swg
+@@ -120,7 +120,7 @@ SwigPyBuiltin_FunpackSetterClosure (PyObject *obj, PyObject *val, void *closure)
+ 
+ SWIGINTERN void
+ SwigPyStaticVar_dealloc(PyDescrObject *descr) {
+-  _PyObject_GC_UNTRACK(descr);
++  PyObject_GC_UnTrack(descr);
+   Py_XDECREF(PyDescr_TYPE(descr));
+   Py_XDECREF(PyDescr_NAME(descr));
+   PyObject_GC_Del(descr);
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/patches/cmake-py38.patch b/srcpkgs/renderdoc/patches/cmake-py38.patch
new file mode 100644
index 00000000000..fc1adb9ddbc
--- /dev/null
+++ b/srcpkgs/renderdoc/patches/cmake-py38.patch
@@ -0,0 +1,48 @@
+From 56769d3e2cc12670b73a1ddd9dfaab959340c2e2 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 21:27:02 +0200
+Subject: [PATCH] CMake: py3.8 support, ability to patch swig
+
+Add 3.8 to list of python versions and ability to patch the custom
+swig, also needed for 3.8
+---
+ CMakeLists.txt            | 2 +-
+ qrenderdoc/CMakeLists.txt | 2 ++
+ 2 files changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 13818e5b8..00feda2ad 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -308,7 +308,7 @@ add_subdirectory(renderdoc)
+ # are handled in common
+ if(ENABLE_QRENDERDOC OR ENABLE_PYRENDERDOC)
+     # Make sure Python 3 is found
+-    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7)
++    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7 3.8)
+     find_package(PythonInterp 3 REQUIRED)
+     find_package(PythonLibs 3 REQUIRED)
+     # we also need python3-config for swig
+diff --git a/qrenderdoc/CMakeLists.txt b/qrenderdoc/CMakeLists.txt
+index 9fd65b2d3..1ef284349 100644
+--- a/qrenderdoc/CMakeLists.txt
++++ b/qrenderdoc/CMakeLists.txt
+@@ -7,6 +7,7 @@ endif()
+ 
+ set(QMAKE_QT5_COMMAND ${QT_QMAKE_EXECUTABLE} CACHE STRING "Command to run to invoke Qt5's qmake. Normally this is qmake, possibly with qtchooser, but might be qmake-qt5")
+ set(RENDERDOC_SWIG_PACKAGE https://github.com/baldurk/swig/archive/renderdoc-modified-6.zip CACHE STRING "The location where RenderDoc's swig fork source can be found. By default points to the URL on github but can be pointed to a local file.")
++set(RENDERDOC_SWIG_PATCH "" CACHE STRING "The location for the patch to apply to swig.")
+ 
+ set(QMAKE_CONFIG "debug")
+ set(QMAKE_LDFLAGS "")
+@@ -99,6 +100,7 @@ ExternalProject_Add(custom_swig
+     # using an URL to a zip directly so we don't clone the history etc
+     URL ${RENDERDOC_SWIG_PACKAGE}
+     BUILD_IN_SOURCE 1
++    PATCH_COMMAND patch -p1 -i ${RENDERDOC_SWIG_PATCH} > /dev/null
+     CONFIGURE_COMMAND ./autogen.sh > /dev/null 2>&1
+     COMMAND CC=${SWIG_CONFIGURE_CC} CXX=${SWIG_CONFIGURE_CXX} CFLAGS=-fPIC CXXFLAGS=-fPIC ./configure --with-pcre=yes --prefix=${CMAKE_BINARY_DIR} > /dev/null
+     BUILD_COMMAND ${GENERATOR_MAKE} > /dev/null 2>&1
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/template b/srcpkgs/renderdoc/template
index 32d051864d3..9972d9435b0 100644
--- a/srcpkgs/renderdoc/template
+++ b/srcpkgs/renderdoc/template
@@ -1,11 +1,13 @@
 # Template file for 'renderdoc'
 pkgname=renderdoc
 version=1.4
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DENABLE_GL=ON -DENABLE_GLES=ON -DENABLE_QRENDERDOC=ON
  -DENABLE_RENDERDOCCMD=ON -DENABLE_VULKAN=ON -DENABLE_XCB=ON -DENABLE_XLIB=ON
- -DENABLE_PYRENDERDOC=ON"
+ -DENABLE_PYRENDERDOC=ON
+ -DRENDERDOC_SWIG_PATCH=${XBPS_SRCPKGDIR}/${pkgname}/files/swig-py38.patch"
+patch_args="-p1"
 hostmakedepends="bison autoconf automake pkg-config python3"
 makedepends="libX11-devel libxcb-devel xcb-util-keysyms-devel libGL qt5-devel
  qt5-svg-devel qt5-x11extras-devel pcre-devel python3-devel"
@@ -17,7 +19,7 @@ distfiles="https://github.com/baldurk/${pkgname}/archive/v${version}.tar.gz"
 checksum=9a78951f386fb7c3ecf7df6919d300db59719d14f0621438963ae30a75d33677
 
 case "$XBPS_TARGET_MACHINE" in
-	*-musl) broken="This package uses execnfo.h which is not available on musl"
+	*-musl) broken="This package uses execinfo.h which is not available on musl"
 esac
 
 if [ "$CROSS_BUILD" ]; then

From 87d809bba385a13e86e119ed6ef6bf53f4db4e41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 861/872] sigil: rebuild for Python 3.8.

---
 srcpkgs/sigil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sigil/template b/srcpkgs/sigil/template
index 4a90ef95798..1d577ee3487 100644
--- a/srcpkgs/sigil/template
+++ b/srcpkgs/sigil/template
@@ -1,7 +1,7 @@
 # Template file for 'sigil'
 pkgname=sigil
 version=0.9.13
-revision=1
+revision=2
 wrksrc="Sigil-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/sigil/python3lib"

From caf18dc4cbb881128777ebd2ac53b3f3cb9b7836 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 862/872] uwsgi: rebuild for Python 3.8.

---
 srcpkgs/uwsgi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/uwsgi/template b/srcpkgs/uwsgi/template
index 2e96cd2e38e..e283d6bc357 100644
--- a/srcpkgs/uwsgi/template
+++ b/srcpkgs/uwsgi/template
@@ -1,7 +1,7 @@
 # Template file for 'uwsgi'
 pkgname=uwsgi
 version=2.0.18
-revision=1
+revision=2
 hostmakedepends="python python3"
 makedepends="python-devel python3-devel"
 short_desc="Fast, self-healing application container server"

From aec3e00468ac790651b8f08e7d7c9877c21ae958 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 863/872] vim: rebuild for Python 3.8.

---
 srcpkgs/vim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vim/template b/srcpkgs/vim/template
index 8f543069d19..7c7fd4a30f7 100644
--- a/srcpkgs/vim/template
+++ b/srcpkgs/vim/template
@@ -1,7 +1,7 @@
 # Template file for 'vim'
 pkgname=vim
 version=8.1.2021
-revision=3
+revision=4
 hostmakedepends="glib-devel pkg-config"
 makedepends="acl-devel gtk+3-devel libXt-devel lua-devel ncurses-devel
  perl python-devel python3-devel ruby-devel"

From d88bb0bcdce3dbdf8f861c336db423c1a875185a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 864/872] weechat: rebuild for Python 3.8.

---
 srcpkgs/weechat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weechat/template b/srcpkgs/weechat/template
index 19f8af4fd8f..14c3e2360f5 100644
--- a/srcpkgs/weechat/template
+++ b/srcpkgs/weechat/template
@@ -1,7 +1,7 @@
 # Template file for 'weechat'
 pkgname=weechat
 version=2.6
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_MAN=ON -DENABLE_ENCHANT=ON -DENABLE_PERL=ON
  -DENABLE_LUA=ON -DENABLE_RUBY=ON -DENABLE_SPELL=ON

From b8430a8c4d7404bab6a81d9eb7537efb829880df Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 865/872] znc: rebuild for Python 3.8.

---
 srcpkgs/znc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/znc/template b/srcpkgs/znc/template
index 8af8f23a145..696b59133c8 100644
--- a/srcpkgs/znc/template
+++ b/srcpkgs/znc/template
@@ -1,7 +1,7 @@
 # Template file for 'znc'
 pkgname=znc
 version=1.7.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="
  --enable-python

From 8c3c0fcf9bb79b0772fc9c398175562abce8ea16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:18:51 +0200
Subject: [PATCH 866/872] boost: rebuild for Python 3.8.

---
 srcpkgs/boost/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 40a4fe67730..1fb0e8ed519 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=5
+revision=6
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"

From 511e8b28d7de492b751f5d3154f9974195bfad2b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:10 +0200
Subject: [PATCH 867/872] python-pyside: remove, obsolete.

---
 srcpkgs/python-pyside/INSTALL.msg | 1 -
 srcpkgs/python-pyside/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/python-pyside/INSTALL.msg
 delete mode 100644 srcpkgs/python-pyside/template

diff --git a/srcpkgs/python-pyside/INSTALL.msg b/srcpkgs/python-pyside/INSTALL.msg
deleted file mode 100644
index 6de207b7aa2..00000000000
--- a/srcpkgs/python-pyside/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-python-pyside is no longer provided by Void Linux, and will be fully removed from the repos on 2019-07-17
diff --git a/srcpkgs/python-pyside/template b/srcpkgs/python-pyside/template
deleted file mode 100644
index 7053f0e7fc3..00000000000
--- a/srcpkgs/python-pyside/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'python-pyside'
-pkgname=python-pyside
-version=1.2.2
-revision=7
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="http://www.pyside.org/"

From 9cc0e009166f9e8283ea138d7a730ff048c889ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:52 +0200
Subject: [PATCH 868/872] pyside-tools: remove, obsolete.

---
 srcpkgs/pyside-tools/INSTALL.msg | 1 -
 srcpkgs/pyside-tools/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/pyside-tools/INSTALL.msg
 delete mode 100644 srcpkgs/pyside-tools/template

diff --git a/srcpkgs/pyside-tools/INSTALL.msg b/srcpkgs/pyside-tools/INSTALL.msg
deleted file mode 100644
index fdb45eb0f42..00000000000
--- a/srcpkgs/pyside-tools/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-pyside-tools is no longer provided by Void Linux, and will be fully removed from the repos on 2019-10-30
diff --git a/srcpkgs/pyside-tools/template b/srcpkgs/pyside-tools/template
deleted file mode 100644
index 27cfc18eea4..00000000000
--- a/srcpkgs/pyside-tools/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'pyside-tools'
-pkgname=pyside-tools
-version=0.2.15
-revision=2
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="https://wiki.qt.io/"

From 9fbb782146a8f13994e8a826217ba66139ebe7d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:22:03 +0200
Subject: [PATCH 869/872] shiboken: remove, obsolete.

---
 srcpkgs/shiboken/patches/python3.6.patch |  11 ---
 srcpkgs/shiboken/template                | 110 -----------------------
 2 files changed, 121 deletions(-)
 delete mode 100644 srcpkgs/shiboken/patches/python3.6.patch
 delete mode 100644 srcpkgs/shiboken/template

diff --git a/srcpkgs/shiboken/patches/python3.6.patch b/srcpkgs/shiboken/patches/python3.6.patch
deleted file mode 100644
index 7145fb4308b..00000000000
--- a/srcpkgs/shiboken/patches/python3.6.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- cmake/Modules/FindPython3Libs.cmake.orig
-+++ cmake/Modules/FindPython3Libs.cmake
-@@ -27,7 +27,7 @@
- # Search for the python framework on Apple.
- # CMAKE_FIND_FRAMEWORKS(Python)
- 
--FOREACH(_CURRENT_VERSION 3.4 3.3 3.2 3.1 3.0)
-+FOREACH(_CURRENT_VERSION 3.6 3.5 3.4 3.3 3.2 3.1 3.0)
-   IF(_CURRENT_VERSION GREATER 3.1)
-       SET(_32FLAGS "m" "u" "mu" "dm" "du" "dmu" "")
-   ELSE()
diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
deleted file mode 100644
index 34174be7535..00000000000
--- a/srcpkgs/shiboken/template
+++ /dev/null
@@ -1,110 +0,0 @@
-# Template file for 'shiboken'
-pkgname=shiboken
-version=1.2.2
-revision=6
-wrksrc="shiboken-${version}"
-hostmakedepends="cmake"
-makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"
-short_desc="CPython bindings generator for C++ libraries"
-maintainer="Enno Boland <gottox@voidlinux.org>"
-homepage="http://www.pyside.org"
-license="LGPL-2.1"
-distfiles="https://download.qt.io/official_releases/pyside/shiboken-${version}.tar.bz2"
-checksum=7625bbcf1fe313fd910c6b8c9cf49ac5495499f9d00867115a2f1f2a69fce5c4
-
-nocross="https://travis-ci.org/voidlinux/void-packages/jobs/269193001#L906"
-
-pre_build() {
-	# Fix inconsistent naming of libshiboken.so and ShibokenConfig.cmake
-	sed -i "/get_config_var('SOABI')/d" cmake/Modules/FindPython3InterpWithDebug.cmake
-}
-do_build() {
-	local args= configure_args="
-		-DCMAKE_INSTALL_PREFIX=/usr \
-		-DCMAKE_BUILD_TYPE=Release \
-		-DBUILD_TESTS=OFF"
-
-	for pyver in $py2_ver $py3_ver; do
-		args=
-		if [ "$pyver" = "$py2_ver" ]; then
-			args="-DPYTHON_SUFFIX=-python$py2_ver"
-		else
-			args="-DUSE_PYTHON3=yes"
-		fi
-
-		[ ! -d build-${pyver} ] && mkdir build-${pyver}
-		pushd build-${pyver}
-		cmake .. ${configure_args} ${args}
-		make ${makejobs}
-		popd
-	done
-}
-do_install() {
-	for pyver in $py2_ver $py3_ver; do
-		make -C build-${pyver} DESTDIR=${DESTDIR} install
-	done
-}
-post_install() {
-	# Fix conflict between .pc files
-	rm -f ${DESTDIR}/usr/lib/pkgconfig/*
-	for pyver in $py2_ver $py3_ver; do
-		vinstall build-${pyver}/data/shiboken.pc 644 \
-			usr/lib/pkgconfig shiboken-python${pyver}.pc
-	done
-}
-
-libshiboken-common-devel_package() {
-	depends="${sourcepkg}-${version}_${revision}"
-	short_desc+=" - common development files"
-	pkg_install() {
-		vmove usr/include
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig.cmake
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfigVersion.cmake
-	}
-}
-libshiboken-python-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python-${version}_${revision}"
-	short_desc="Python2 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py2_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py2_ver}.pc
-		vmove usr/lib/libshiboken-python${py2_ver}.so
-	}
-}
-libshiboken-python_package() {
-	short_desc="Python2 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version}
-	}
-}
-python-shiboken_package() {
-	short_desc="Python2 shiboken bindings"
-	pkg_install() {
-		vmove ${py2_sitelib}/shiboken.so
-	}
-}
-libshiboken-python3-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python3-${version}_${revision}"
-	short_desc="Python3 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py3_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py3_ver}.pc
-		vmove usr/lib/libshiboken-python${py3_ver}.so
-	}
-}
-libshiboken-python3_package() {
-	short_desc="Python3 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version}
-	}
-}
-python3-shiboken_package() {
-	short_desc="Python3 shiboken bindings"
-	pkg_install() {
-		vmove ${py3_sitelib}/shiboken.so
-	}
-}

From 05dbc60d867e0fc2d4c61b73863b8d5b8e12e551 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:34:00 +0200
Subject: [PATCH 870/872] boost: rebuild for Python 3.8.

Also ensure bjam is called with the same parameters, to avoid
a full rebuild with -j1 in do_install.
---
 common/shlibs          |  2 +-
 srcpkgs/boost/template | 13 +++++++------
 2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/common/shlibs b/common/shlibs
index f5133935773..92dae1c282c 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -683,7 +683,7 @@ libboost_stacktrace_noop.so.1.69.0 libboost_stacktrace_noop1.69-1.69.0_1<1.70.0
 libboost_stacktrace_addr2line.so.1.69.0 libboost_stacktrace_addr2line1.69-1.69.0_1<1.70.0
 libboost_stacktrace_basic.so.1.69.0 libboost_stacktrace_basic1.69-1.69.0_1<1.70.0
 libboost_python27.so.1.69.0 boost-python1.69-1.69.0_1<1.70.0
-libboost_python36.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
+libboost_python38.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
 libexempi.so.8 exempi-2.5.0_1
 libatasmart.so.4 libatasmart-0.17_1
 libsgutils2.so.2 libsgutils-1.42_1
diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 1fb0e8ed519..b516b348b14 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=6
+revision=7
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"
@@ -60,9 +60,9 @@ do_build() {
 	using python : ${py3_ver} : ${XBPS_CROSS_BASE}/usr/bin/python3 : ${XBPS_CROSS_BASE}${py3_inc} : ${XBPS_CROSS_BASE}${py3_lib} ;
 
 	__EOF
-	./bjam ${makejobs} \
+	./bjam ${makejobs} --prefix=${DESTDIR}/usr \
 		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam --debug-building \
+		--user-config=${wrksrc}/user-config.jam \
 		python=2.7,${py3_ver}
 }
 do_install() {
@@ -72,9 +72,10 @@ do_install() {
 	done
 
 	# Install headers/libs
-	./bjam --prefix=${DESTDIR}/usr abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam python=2.7,${py3_ver} install
-
+	./bjam --prefix=${DESTDIR}/usr \
+		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
+		--user-config=${wrksrc}/user-config.jam \
+		python=2.7,${py3_ver} install
 	# Install Boost.Build stuff.
 	vmkdir usr/share/boost-build
 	cd ${wrksrc}/tools/build && cp -a . ${DESTDIR}/usr/share/boost-build

From f52f1ab7e81ec87131f500e38a76b634f23e1fb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 19:40:03 +0200
Subject: [PATCH 871/872] libpeas: update to 1.24.0.

---
 srcpkgs/libpeas/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index d4dcf8b5941..1ff2598c527 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,8 +1,8 @@
 # Template file for 'libpeas'
 pkgname=libpeas
-version=1.22.0
-revision=6
-build_style=gnu-configure
+version=1.24.0
+revision=1
+build_style=meson
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"
 makedepends="vala-devel gtk+3-devel python3-gobject-devel
@@ -13,7 +13,7 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://wiki.gnome.org/Projects/Libpeas"
 distfiles="${GNOME_SITE}/${pkgname}/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=5b2fc0f53962b25bca131a5ec0139e6fef8e254481b6e777975f7a1d2702a962
+checksum=0b9a00138c129a663de3eef5569b00ace03ce31d345f7af783768e9f35c8e6f9
 
 pre_build() {
 	if [ "$CROSS_BUILD" ]; then
@@ -35,7 +35,6 @@ libpeas-devel_package() {
 		vmove usr/lib/pkgconfig
 		vmove "usr/lib/*.so"
 		vmove usr/share/gir-1.0
-		vmove usr/share/gtk-doc
 		vmove usr/share/glade
 	}
 }

From 42d81083546c2778a1dce1339b197b26c880d9b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 20:33:53 +0200
Subject: [PATCH 872/872] scudcloud: upstream dead.

---
 srcpkgs/scudcloud/template | 21 ---------------------
 1 file changed, 21 deletions(-)
 delete mode 100644 srcpkgs/scudcloud/template

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
deleted file mode 100644
index 1ab2618066e..00000000000
--- a/srcpkgs/scudcloud/template
+++ /dev/null
@@ -1,21 +0,0 @@
-# Template file for 'scudcloud'
-pkgname=scudcloud
-version=1.65
-revision=2
-build_style=python3-module
-pycompile_module="scudcloud"
-hostmakedepends="python3-setuptools"
-makedepends="python3-setuptools python-PyQt5 python-dbus python3-PyQt5-dbus"
-depends="python3-setuptools python-PyQt5 python3-PyQt5-dbus
- python3-PyQt5-webkit xdg-utils"
-short_desc="Non official desktop client app for Slack"
-archs=noarch
-maintainer="Gurpreet Singh <gurpreet@mailfence.com>"
-license="MIT"
-homepage="https://launchpad.net/~rael-gc/+archive/ubuntu/scudcloud"
-distfiles="https://github.com/raelgc/${pkgname}/archive/v${version}.tar.gz"
-checksum=1b5420a868a37e181655e9799a3d1fcbbc0b0112349c44ac3d7936b626334791
-
-post_install() {
-	vlicense LICENSE
-}

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PR PATCH] [Updated] [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (6 preceding siblings ...)
  2019-10-19 21:03 ` voidlinux-github
@ 2019-10-19 21:14 ` voidlinux-github
  2019-10-19 21:14 ` voidlinux-github
                   ` (24 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-10-19 21:14 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1067 bytes --]

There is an updated pull request by leahneukirchen against master on the void-packages repository

https://github.com/leahneukirchen/void-packages python38
https://github.com/void-linux/void-packages/pull/15623

[WIP] Python 3.8
This huge PR tries to bump all packages that either shlib-require
libpython3.6m.so.1.0 or put files into /usr/lib/python3.6/site-packages.

Broken packages (on x86_64):

- [ ] attic -> upstream dead, remove?
- [ ] blender -> update to 2.80
- [ ] eolie -> meson
- [x] fontforge
- [ ] freecad
- [ ] gst1-python -> meson
- [ ] libopenshot -> gcc9 issue, but supposedly fixed? @Spencer-H 
- [x] libpeas
- [x] nagstamon
- [ ] paraview
- [x] pockyt
- [x] ~~scudcloud~~
- [x] torbrowser-launcher
- [x] unknown-horizons
- [x] vapoursynth
- [x] variety
- [ ] kdevelop-python -> upstream: https://bugs.kde.org/show_bug.cgi?id=411956
- [x] krita: SHA256 mismatch
- [x] ~~shiboken~~
- [x] renderdoc

Untested:

- [ ] libreoffice


A patch file from https://github.com/void-linux/void-packages/pull/15623.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python38-15623.patch --]
[-- Type: text/x-diff, Size: 633846 bytes --]

From 9907b26ec9aacb2c9c990c665c32502ef0f7c808 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:06:59 +0200
Subject: [PATCH 001/872] python3: update to 3.8.0.

---
 common/shlibs                                 |  3 ++-
 .../python3/patches/fix-xattrs-glibc.patch    | 13 ----------
 srcpkgs/python3/patches/libressl-2.6.patch    | 26 -------------------
 srcpkgs/python3/template                      | 23 ++++++++--------
 4 files changed, 13 insertions(+), 52 deletions(-)
 delete mode 100644 srcpkgs/python3/patches/fix-xattrs-glibc.patch
 delete mode 100644 srcpkgs/python3/patches/libressl-2.6.patch

diff --git a/common/shlibs b/common/shlibs
index cc3fd8383d8..f5133935773 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1698,8 +1698,9 @@ libefiboot.so.1 libefivar-31_1
 libportaudio.so.2 portaudio-19.20140130_1
 libportaudiocpp.so.0 portaudio-cpp-19.20140130_1
 libdar.so.5000 libdar-2.4.14_1
-libpython3.so python3-3.6.2_1
 libpython3.6m.so.1.0 python3-3.6.2_1
+libpython3.so python3-3.8.0_1
+libpython3.8.so.1.0 python3-3.8.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.25.28_1
diff --git a/srcpkgs/python3/patches/fix-xattrs-glibc.patch b/srcpkgs/python3/patches/fix-xattrs-glibc.patch
deleted file mode 100644
index 909901293d5..00000000000
--- a/srcpkgs/python3/patches/fix-xattrs-glibc.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- Modules/posixmodule.c.orig
-+++ Modules/posixmodule.c
-@@ -103,8 +103,9 @@ corresponding Unix manual entries for more information on calls.");
- #undef HAVE_SCHED_SETAFFINITY
- #endif
- 
--#if defined(HAVE_SYS_XATTR_H) && defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
-+#if defined(HAVE_SYS_XATTR_H) && defined(__linux__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
- #define USE_XATTRS
-+#include <linux/limits.h>
- #endif
- 
- #ifdef USE_XATTRS
diff --git a/srcpkgs/python3/patches/libressl-2.6.patch b/srcpkgs/python3/patches/libressl-2.6.patch
deleted file mode 100644
index 92dcf1ef06e..00000000000
--- a/srcpkgs/python3/patches/libressl-2.6.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-https://github.com/python/cpython/pull/4930
-
---- Lib/test/test_ssl.py.orig
-+++ Lib/test/test_ssl.py
-@@ -29,6 +29,12 @@
- PROTOCOLS = sorted(ssl._PROTOCOL_NAMES)
- HOST = support.HOST
- IS_LIBRESSL = ssl.OPENSSL_VERSION.startswith('LibreSSL')
-+if IS_LIBRESSL:
-+    LIBRESSL_VERSION = tuple(
-+        int(s) for s in ssl.OPENSSL_VERSION.rsplit(' ')[-1].split('.')
-+    )
-+else:
-+    LIBRESSL_VERSION = ()
- IS_OPENSSL_1_1 = not IS_LIBRESSL and ssl.OPENSSL_VERSION_INFO >= (1, 1, 0)
- 
- 
-@@ -3392,6 +3398,8 @@ def test_selected_npn_protocol(self):
-                                        chatty=True, connectionchatty=True)
-             self.assertIs(stats['client_npn_protocol'], None)
- 
-+        @unittest.skipIf(IS_LIBRESSL and LIBRESSL_VERSION >= (2, 6, 1),
-+                         "LibreSSL 2.6.1+ has broken NPN support")
-         @unittest.skipUnless(ssl.HAS_NPN, "NPN support needed for this test")
-         def test_npn_protocols(self):
-             server_protocols = ['http/1.1', 'spdy/2']
diff --git a/srcpkgs/python3/template b/srcpkgs/python3/template
index 60bd4411ba8..b03a59beea8 100644
--- a/srcpkgs/python3/template
+++ b/srcpkgs/python3/template
@@ -3,7 +3,7 @@
 # THIS PKG MUST BE SYNCHRONIZED WITH "srcpkgs/python3-tkinter".
 #
 pkgname=python3
-version=3.6.9
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 short_desc="Interpreted, interactive, object-oriented programming language (${version%.*} series)"
@@ -11,7 +11,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=5e2f5f554e3f8f7f0296f7e73d8600c4e9acbaee6b2555b83206edf5153870da
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pycompile_dirs="usr/lib/python${version%.*}"
 hostmakedepends="pkg-config"
@@ -27,8 +27,7 @@ alternatives="
  python:python.1:/usr/share/man/man1/python${version%.*}.1"
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,13 +71,13 @@ do_install() {
 	rm -rf ${DESTDIR}/usr/lib/python${version%.*}/lib2to3/tests
 	# Remove references to the install(1) wrapper.
 	sed -e "s,${XBPS_WRAPPERDIR},/usr/bin,g" -i \
-		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/Makefile
 	if [ "$CROSS_BUILD" ]; then
 		# Remove references to cross toolchain.
 		sed -i "s/$XBPS_CROSS_TRIPLET-//g" \
-			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}/Makefile
 	fi
 }
 
@@ -89,10 +88,10 @@ python3-devel_package() {
 		vmove usr/bin/python*-config
 		vmove usr/lib/pkgconfig
 		vmove usr/include
-		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/libpython${version%.*}m.a \
+		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/libpython${version%.*}*.a \
 			${PKGDESTDIR}/usr/lib
-		mkdir -p ${DESTDIR}/usr/include/python${version%.*}m
-		mv ${PKGDESTDIR}/usr/include/python${version%.*}m/pyconfig.h \
-			${DESTDIR}/usr/include/python${version%.*}m
+		mkdir -p ${DESTDIR}/usr/include/python${version%.*}
+		mv ${PKGDESTDIR}/usr/include/python${version%.*}/pyconfig.h \
+			${DESTDIR}/usr/include/python${version%.*}
 	}
 }

From 82deb1f06d09e93aabaa46495a066cec2647de81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 17:09:57 +0200
Subject: [PATCH 002/872] python3-tkinter: update to 3.8.0.

---
 srcpkgs/python3-tkinter/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template
index 83906219af8..874be51ebdf 100644
--- a/srcpkgs/python3-tkinter/template
+++ b/srcpkgs/python3-tkinter/template
@@ -7,7 +7,7 @@
 _desc="Interpreted, interactive, object-oriented programming language"
 
 pkgname=python3-tkinter
-version=3.6.8
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 pycompile_dirs="
@@ -22,11 +22,10 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=35446241e995773b1bed7d196f4b624dadcadc8429f26282e756b2fb8a351193
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used.
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used.
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,7 +71,7 @@ do_install() {
 		mv ${wrksrc}/${pkgname}-${version}-install/usr/lib/python${version%.*}/${lib} \
 			${DESTDIR}/usr/lib/python${version%.*}/
 	done
-	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*m*.so \
+	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*.so \
 		${DESTDIR}/usr/lib/python${version%.*}/lib-dynload/
 	ln -sf idle${version%.*} ${DESTDIR}/usr/bin/idle3
 }

From 8bb33f77d591103b56f40685a4b61f57b43219cd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:42:15 +0200
Subject: [PATCH 003/872] common/environment/setup/python.sh: update to Python
 3.8.

---
 common/build-style/python-module.sh | 14 ++++----------
 common/environment/setup/python.sh  |  4 ++--
 2 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/common/build-style/python-module.sh b/common/build-style/python-module.sh
index da6ed586cff..ff8f107745f 100644
--- a/common/build-style/python-module.sh
+++ b/common/build-style/python-module.sh
@@ -4,7 +4,7 @@
 
 do_build() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
+	local pyver= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
@@ -12,10 +12,7 @@ do_build() {
 			LDFLAGS="$tmp_ldflags"
 
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
@@ -49,15 +46,12 @@ do_check() {
 
 do_install() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx=
+	local pyver=
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
diff --git a/common/environment/setup/python.sh b/common/environment/setup/python.sh
index d1f4d49a10a..ba181d45361 100644
--- a/common/environment/setup/python.sh
+++ b/common/environment/setup/python.sh
@@ -10,8 +10,8 @@ py2_lib="/usr/lib/python${py2_ver}"
 py2_sitelib="${py2_lib}/site-packages"
 py2_inc="/usr/include/python${py2_ver}"
 
-py3_ver="3.6"
-py3_abiver="m"
+py3_ver="3.8"
+py3_abiver=""
 py3_lib="/usr/lib/python${py3_ver}"
 py3_sitelib="${py3_lib}/site-packages"
 py3_inc="/usr/include/python${py3_ver}${py3_abiver}"

From 75fdcb94c7c7be7dc2c232d271de721d74dc1a6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 004/872] python3-3to2: rebuild for Python 3.8.

---
 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 b6ab94fe7c9..38558f1fcff 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=1
+revision=2
 archs=noarch
 wrksrc="3to2-${version}"
 build_style=python3-module

From 043957a8bcc69ef2ef270f7acd2753a544054759 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 005/872] python-Arrow: rebuild for Python 3.8.

---
 srcpkgs/python-Arrow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Arrow/template b/srcpkgs/python-Arrow/template
index 456e3776188..a3785d60075 100644
--- a/srcpkgs/python-Arrow/template
+++ b/srcpkgs/python-Arrow/template
@@ -2,7 +2,7 @@
 pkgname=python-Arrow
 reverts=0.13.1_1
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="arrow-${version}"
 build_style=python-module

From 5d1bc07743d348083ebd7dfbd1a4ece4913e6a70 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 006/872] python-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Babel/template b/srcpkgs/python-Babel/template
index 34d7a7728ce..619ae432ba4 100644
--- a/srcpkgs/python-Babel/template
+++ b/srcpkgs/python-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Babel'
 pkgname=python-Babel
 version=2.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38e28e565317345549892f5b8da9e3ab1cc3d513 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 007/872] python-BeautifulSoup4: rebuild for Python 3.8.

---
 srcpkgs/python-BeautifulSoup4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-BeautifulSoup4/template b/srcpkgs/python-BeautifulSoup4/template
index 70e4f8a58da..1f6074230c2 100644
--- a/srcpkgs/python-BeautifulSoup4/template
+++ b/srcpkgs/python-BeautifulSoup4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-BeautifulSoup4'
 pkgname=python-BeautifulSoup4
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="beautifulsoup4-${version}"
 build_style=python-module

From 193dc4fe709e1bccd18b84a58f880fde1e4394e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 008/872] python-Bottleneck: rebuild for Python 3.8.

---
 srcpkgs/python-Bottleneck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Bottleneck/template b/srcpkgs/python-Bottleneck/template
index 0c308d5dbb5..28195e99bca 100644
--- a/srcpkgs/python-Bottleneck/template
+++ b/srcpkgs/python-Bottleneck/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Bottleneck'
 pkgname=python-Bottleneck
 version=1.2.1
-revision=4
+revision=5
 wrksrc="Bottleneck-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ff4c422045070300d874353cc6c9750143422e2b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 009/872] python-Cheroot: rebuild for Python 3.8.

---
 srcpkgs/python-Cheroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Cheroot/template b/srcpkgs/python-Cheroot/template
index fcfdf76e69d..7a5375258f4 100644
--- a/srcpkgs/python-Cheroot/template
+++ b/srcpkgs/python-Cheroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Cheroot'
 pkgname=python-Cheroot
 version=8.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cheroot-${version}"
 build_style=python-module

From 6eb51b02b428d8054b1d3a3aa21e6bdcde31cf9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 010/872] python3-CherryPy: rebuild for Python 3.8.

---
 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 b78c01eba2c..450e5791508 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.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python3-module

From 8522b77c798415c2f59fc3b26adc757f66aa0fa7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 011/872] python-ConfigArgParse: rebuild for Python 3.8.

---
 srcpkgs/python-ConfigArgParse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ConfigArgParse/template b/srcpkgs/python-ConfigArgParse/template
index c9a00a04508..d90ca739aee 100644
--- a/srcpkgs/python-ConfigArgParse/template
+++ b/srcpkgs/python-ConfigArgParse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ConfigArgParse'
 pkgname=python-ConfigArgParse
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ConfigArgParse-${version}"
 build_style=python-module

From 3dcbda27301f3e918539317bc411ff556115ef1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 012/872] python-Cython: rebuild for Python 3.8.

---
 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 dc39d54e9c2..675160b3744 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.13
-revision=1
+revision=2
 wrksrc="Cython-${version}"
 build_style=python-module
 pycompile_module="Cython pyximport cython.py"

From 7c69ef59e0a628c13ece955c9f7322631824adca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 013/872] python-Django: rebuild for Python 3.8.

---
 srcpkgs/python-Django/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Django/template b/srcpkgs/python-Django/template
index 21aa405fba1..65a98e41032 100644
--- a/srcpkgs/python-Django/template
+++ b/srcpkgs/python-Django/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Django'
 pkgname=python-Django
 version=1.11.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="Django-${version}"
 build_style=python-module

From 33b250adb0abf2e46663f0a05749097633fce228 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 014/872] python-Flask: rebuild for Python 3.8.

---
 srcpkgs/python-Flask/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask/template b/srcpkgs/python-Flask/template
index 149a76c077e..b75b306701b 100644
--- a/srcpkgs/python-Flask/template
+++ b/srcpkgs/python-Flask/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask'
 pkgname=python-Flask
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9167e534992bd8d17a79a70e22a3b06c68c9762b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 015/872] python-Flask-Assets: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Assets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Assets/template b/srcpkgs/python-Flask-Assets/template
index 339f629f77a..eb81201396b 100644
--- a/srcpkgs/python-Flask-Assets/template
+++ b/srcpkgs/python-Flask-Assets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Assets'
 pkgname=python-Flask-Assets
 version=0.12
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c65d524eb8ee83f7c8eae3ca16878857a374e06c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 016/872] python-Flask-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Babel/template b/srcpkgs/python-Flask-Babel/template
index 3028d15d7bd..b3cc35f230e 100644
--- a/srcpkgs/python-Flask-Babel/template
+++ b/srcpkgs/python-Flask-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Babel'
 pkgname=python-Flask-Babel
 version=0.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From d52f7742820844af3ec25f4b6d4d6d58b19ad722 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 017/872] python-Flask-Login: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Login/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Login/template b/srcpkgs/python-Flask-Login/template
index 8fecf240963..ccaab92d857 100644
--- a/srcpkgs/python-Flask-Login/template
+++ b/srcpkgs/python-Flask-Login/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Login'
 pkgname=python-Flask-Login
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 112c53663ece086d477e4d4fcbc667ae6a2fb518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 018/872] python-Flask-OAuthlib: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-OAuthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-OAuthlib/template b/srcpkgs/python-Flask-OAuthlib/template
index d53157e37b2..958f05a836c 100644
--- a/srcpkgs/python-Flask-OAuthlib/template
+++ b/srcpkgs/python-Flask-OAuthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-OAuthlib'
 pkgname=python-Flask-OAuthlib
 version=0.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From aca82b53b5330ee4a154f2246569006b2d3a38c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 019/872] python3-Flask-RESTful: rebuild for Python 3.8.

---
 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 d0ed467f666..5a05eed0e93 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.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="flask-restful-${version}"
 build_style=python3-module

From 3121295fb06a2b12c0e42b9a6412c1fa52bb86fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 020/872] python-Flask-Script: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Script/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Script/template b/srcpkgs/python-Flask-Script/template
index 19d13887b8e..41312eae57f 100644
--- a/srcpkgs/python-Flask-Script/template
+++ b/srcpkgs/python-Flask-Script/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Script'
 pkgname=python-Flask-Script
 version=2.0.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From cfadd6a4c47e4e611c9d739113006da88f9cb8e7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 021/872] python-Flask-WTF: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-WTF/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-WTF/template b/srcpkgs/python-Flask-WTF/template
index 8edb1d39e35..b2be1e630fb 100644
--- a/srcpkgs/python-Flask-WTF/template
+++ b/srcpkgs/python-Flask-WTF/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-WTF'
 pkgname=python-Flask-WTF
 version=0.14.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 11896d4bd9e1767f6ad8b10e737f0e6a0f5df44f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 022/872] python-GitPython: rebuild for Python 3.8.

---
 srcpkgs/python-GitPython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-GitPython/template b/srcpkgs/python-GitPython/template
index 0edb43cc811..232429265f1 100644
--- a/srcpkgs/python-GitPython/template
+++ b/srcpkgs/python-GitPython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-GitPython'
 pkgname=python-GitPython
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="GitPython-${version}"
 build_style=python-module

From 7008fe32294cead7ef25084a09f874e87cad05e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 023/872] python-IPy: rebuild for Python 3.8.

---
 srcpkgs/python-IPy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-IPy/template b/srcpkgs/python-IPy/template
index d28276383ce..aaae9fcd002 100644
--- a/srcpkgs/python-IPy/template
+++ b/srcpkgs/python-IPy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-IPy'
 pkgname=python-IPy
 version=1.00
-revision=1
+revision=2
 archs=noarch
 wrksrc="IPy-${version}"
 build_style=python-module

From 4ee5b9129c818c4db475e75f899f1f21eb9c312c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 024/872] python3-Inflector: rebuild for Python 3.8.

---
 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 1bfe9ccef7c..e9ee0ffe8d1 100644
--- a/srcpkgs/python3-Inflector/template
+++ b/srcpkgs/python3-Inflector/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-Inflector'
 pkgname=python3-Inflector
 version=2.0.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="Inflector-${version}"
 build_style=python3-module

From 631236d908cbeed8345c2fb159c73e7c54fe1571 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 025/872] python-Jinja2: rebuild for Python 3.8.

---
 srcpkgs/python-Jinja2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Jinja2/template b/srcpkgs/python-Jinja2/template
index c67e6f47f06..3fcd44dc198 100644
--- a/srcpkgs/python-Jinja2/template
+++ b/srcpkgs/python-Jinja2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Jinja2'
 pkgname=python-Jinja2
 version=2.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Jinja2-${version}"
 build_style=python-module

From 3a7808b9f47226adec7dd1e59bef222cf38d7e9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 026/872] python-Levenshtein: rebuild for Python 3.8.

---
 srcpkgs/python-Levenshtein/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Levenshtein/template b/srcpkgs/python-Levenshtein/template
index 26f57d90e70..7d97147ccc8 100644
--- a/srcpkgs/python-Levenshtein/template
+++ b/srcpkgs/python-Levenshtein/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Levenshtein'
 pkgname=python-Levenshtein
 version=0.12.0
-revision=2
+revision=3
 build_style=python-module
 pycompile_module="Levenshtein"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"

From 6d2a898ccc971553cf9dab7239daf8d626350b19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 027/872] python-M2Crypto: rebuild for Python 3.8.

---
 srcpkgs/python-M2Crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-M2Crypto/template b/srcpkgs/python-M2Crypto/template
index 102dbb7261e..6febd5a9ea1 100644
--- a/srcpkgs/python-M2Crypto/template
+++ b/srcpkgs/python-M2Crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-M2Crypto'
 pkgname=python-M2Crypto
 version=0.35.2
-revision=1
+revision=2
 wrksrc="M2Crypto-${version}"
 build_style=python-module
 pycompile_module="M2Crypto"

From 3597aa866d7cb1ff4d5316a0cfe52c8aa8ab717c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 028/872] python-Mako: rebuild for Python 3.8.

---
 srcpkgs/python-Mako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Mako/template b/srcpkgs/python-Mako/template
index e5c3c76170c..f0184179b83 100644
--- a/srcpkgs/python-Mako/template
+++ b/srcpkgs/python-Mako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Mako'
 pkgname=python-Mako
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Mako-${version}"
 build_style=python-module

From 164d5bbfa645fb7b1ddbfbccebb7b85e407c578f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 029/872] python-Markdown: rebuild for Python 3.8.

---
 srcpkgs/python-Markdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markdown/template b/srcpkgs/python-Markdown/template
index 935dcc12bca..03a0d18e23b 100644
--- a/srcpkgs/python-Markdown/template
+++ b/srcpkgs/python-Markdown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markdown'
 pkgname=python-Markdown
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python-module

From c5fcb10688938a17e3acb9f9c630c300f5fe9672 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 030/872] python-MarkupSafe: rebuild for Python 3.8.

---
 srcpkgs/python-MarkupSafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MarkupSafe/template b/srcpkgs/python-MarkupSafe/template
index c12dbb7e656..ae22857aa7a 100644
--- a/srcpkgs/python-MarkupSafe/template
+++ b/srcpkgs/python-MarkupSafe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MarkupSafe'
 pkgname=python-MarkupSafe
 version=1.1.1
-revision=1
+revision=2
 wrksrc="MarkupSafe-${version}"
 build_style=python-module
 pycompile_module="markupsafe"

From b7a4bc0f45110c5c3bd019a437078724336d1888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 031/872] python-Markups: rebuild for Python 3.8.

---
 srcpkgs/python-Markups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markups/template b/srcpkgs/python-Markups/template
index d4817feb430..02ba25ee05c 100644
--- a/srcpkgs/python-Markups/template
+++ b/srcpkgs/python-Markups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markups'
 pkgname=python-Markups
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markups-${version}"
 build_style=python-module

From af8fe2e4b17c908737f599cc43d860493f7da689 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 032/872] python3-MechanicalSoup: rebuild for Python 3.8.

---
 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 b1bbfa4184c..5a3b0b3eb03 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=1
+revision=2
 archs=noarch
 wrksrc=MechanicalSoup-${version}
 build_style=python3-module

From 4d05157344a63fb3d617b00a4268732231187cb4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 033/872] python-MiniMock: rebuild for Python 3.8.

---
 srcpkgs/python-MiniMock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MiniMock/template b/srcpkgs/python-MiniMock/template
index 38c0723f374..8b8c4f5f1e6 100644
--- a/srcpkgs/python-MiniMock/template
+++ b/srcpkgs/python-MiniMock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MiniMock'
 pkgname=python-MiniMock
 version=1.2.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 25b62a34488966009bf8450b60653f01872e2310 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 034/872] python-Pillow: rebuild for Python 3.8.

---
 srcpkgs/python-Pillow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pillow/template b/srcpkgs/python-Pillow/template
index e43d22b8f62..f1791b46d79 100644
--- a/srcpkgs/python-Pillow/template
+++ b/srcpkgs/python-Pillow/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pillow'
 pkgname=python-Pillow
 version=6.2.0
-revision=1
+revision=2
 wrksrc="Pillow-${version}"
 build_style=python-module
 pycompile_module="PIL"

From f79ffe3fe477b7fff206250125a96da96c80c086 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 035/872] python-PyAudio: rebuild for Python 3.8.

---
 srcpkgs/python-PyAudio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyAudio/template b/srcpkgs/python-PyAudio/template
index 5c3286caae0..2e84cf5cc8f 100644
--- a/srcpkgs/python-PyAudio/template
+++ b/srcpkgs/python-PyAudio/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyAudio'
 pkgname=python-PyAudio
 version=0.2.11
-revision=2
+revision=3
 wrksrc="PyAudio-${version}"
 build_style=python-module
 pycompile_module="pyaudio.py"

From 11c99c939a4791ec394842255e6aac23eaae5920 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 036/872] python3-PyBrowserID: rebuild for Python 3.8.

---
 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 abec9dac54e..eefd0175f1b 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=2
+revision=3
 archs=noarch
 wrksrc="PyBrowserID-${version}"
 build_style=python3-module

From d49beb289c07b8d33e8e2f286e068c0e8b3fe4b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 037/872] python3-PyFxA: rebuild for Python 3.8.

---
 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 31175c92435..6fc6791efdd 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=1
+revision=2
 archs=noarch
 wrksrc="PyFxA-${version}"
 build_style=python3-module

From d0eb109c7435d396e67de8f37a376ca0a2958d93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 038/872] python-PyHamcrest: rebuild for Python 3.8.

---
 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 61078241d8a..48f001595aa 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=1
+revision=2
 archs=noarch
 wrksrc="PyHamcrest-${version}"
 build_style=python-module

From 4afc9e488b53ee7025095fe93072953c256fc630 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 039/872] python-PyICU: rebuild for Python 3.8.

---
 srcpkgs/python-PyICU/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyICU/template b/srcpkgs/python-PyICU/template
index be4aaf88639..aab2934cbbd 100644
--- a/srcpkgs/python-PyICU/template
+++ b/srcpkgs/python-PyICU/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyICU'
 pkgname=python-PyICU
 version=2.3.1
-revision=2
+revision=3
 wrksrc="PyICU-${version}"
 build_style=python-module
 pycompile_module="icu PyICU.py"

From a0c3f96b4df2b1efda070832287f3728314c717a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 040/872] python3-PyJWT: rebuild for Python 3.8.

---
 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 6f0830125c1..bf1dda0753e 100644
--- a/srcpkgs/python3-PyJWT/template
+++ b/srcpkgs/python3-PyJWT/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-PyJWT'
 pkgname=python3-PyJWT
 version=1.7.1
-revision=1
+revision=2
 wrksrc="PyJWT-${version}"
 build_style=python3-module
 pycompile_module="PyJWT.py"

From 0355fd4b78af7fbf4ffad4b12dc8e153b70d703d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 041/872] python-PyOpenGL: rebuild for Python 3.8.

---
 srcpkgs/python-PyOpenGL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyOpenGL/template b/srcpkgs/python-PyOpenGL/template
index ec08e0bd667..eafc3be1210 100644
--- a/srcpkgs/python-PyOpenGL/template
+++ b/srcpkgs/python-PyOpenGL/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL'
 pkgname=python-PyOpenGL
 version=3.1.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="PyOpenGL-${version}"
 build_style=python-module

From 1a8da5c4a7dbf53ec6c03efd5387e02d2b0be720 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 17:15:54 +0200
Subject: [PATCH 042/872] python-PyOpenGL-accelerate: update to 3.1.3b1.

---
 srcpkgs/python-PyOpenGL-accelerate/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python-PyOpenGL-accelerate/template b/srcpkgs/python-PyOpenGL-accelerate/template
index 25d84abffcb..5d16a82b845 100644
--- a/srcpkgs/python-PyOpenGL-accelerate/template
+++ b/srcpkgs/python-PyOpenGL-accelerate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL-accelerate'
 pkgname=python-PyOpenGL-accelerate
-version=3.1.0
-revision=5
+version=3.1.3b1
+revision=1
 wrksrc="PyOpenGL-accelerate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"
@@ -9,10 +9,10 @@ makedepends="python-devel python3-devel python-numpy python3-numpy"
 depends="python-numpy"
 short_desc="Acceleration code for PyOpenGL (Python2)"
 maintainer="Alain Kalker <a.c.kalker@gmail.com>"
-license="3-clause-BSD"
+license="BSD-3-Clause"
 homepage="http://pyopengl.sourceforge.net/"
 distfiles="${PYPI_SITE}/P/PyOpenGL-accelerate/PyOpenGL-accelerate-${version}.tar.gz"
-checksum=927f4670b893d46e2f6273ae938bf0a1db27ffae3336eba94813ccef6260c410
+checksum=e687eea7e006d65f531933b49b3b3d2feaaf51279147a904247f9d189762a36f
 
 post_install() {
 	vlicense license.txt LICENSE

From 2f6b6f2c3880b16991df568d3ac18efca5c970c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 043/872] python-PyQt5: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5/template b/srcpkgs/python-PyQt5/template
index 6534d4e22e6..9eba20dc514 100644
--- a/srcpkgs/python-PyQt5/template
+++ b/srcpkgs/python-PyQt5/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5'
 pkgname=python-PyQt5
 version=5.13.0
-revision=1
+revision=2
 _sipver=4.19.18
 lib32disabled=yes
 wrksrc="PyQt5_gpl-${version}"

From cf20a1f23e0c305d2e9672610364b2fd4f566695 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 044/872] python-PyQt5-webengine: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5-webengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5-webengine/template b/srcpkgs/python-PyQt5-webengine/template
index 996ef6b00e2..af7162d20cb 100644
--- a/srcpkgs/python-PyQt5-webengine/template
+++ b/srcpkgs/python-PyQt5-webengine/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5-webengine'
 pkgname=python-PyQt5-webengine
 version=5.13.0
-revision=1
+revision=2
 wrksrc="PyQtWebEngine_gpl-${version}"
 pycompile_module="PyQt5WebEngine"
 hostmakedepends="pkg-config qt5-qmake

From 84502fbd3a591ad0db01072998b5a2b3fcfcf192 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 045/872] python-Pygments: rebuild for Python 3.8.

---
 srcpkgs/python-Pygments/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pygments/template b/srcpkgs/python-Pygments/template
index f5a72ca6cea..8d2214a6bfc 100644
--- a/srcpkgs/python-Pygments/template
+++ b/srcpkgs/python-Pygments/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pygments'
 pkgname=python-Pygments
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Pygments-${version}"
 build_style=python-module

From ef2467b2248b773e2d940058876cf81a2b935043 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 046/872] python-Pyro4: rebuild for Python 3.8.

---
 srcpkgs/python-Pyro4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pyro4/template b/srcpkgs/python-Pyro4/template
index d8925aa141f..0417e9f6a8a 100644
--- a/srcpkgs/python-Pyro4/template
+++ b/srcpkgs/python-Pyro4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pyro4'
 pkgname=python-Pyro4
 version=4.75
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a80785231122d63ad91b973744bf59b0a1b59506 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 047/872] python3-ReParser: rebuild for Python 3.8.

---
 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 5e7b5de3790..5959de9d0e3 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=1
+revision=2
 archs=noarch
 wrksrc=ReParser-${version}
 build_style=python3-module

From 543272b7ff22e6f0642d879c60f19717643fec8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 048/872] python-SPARQLWrapper: rebuild for Python 3.8.

---
 srcpkgs/python-SPARQLWrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-SPARQLWrapper/template b/srcpkgs/python-SPARQLWrapper/template
index d014eb8aab4..8d2db9a02b3 100644
--- a/srcpkgs/python-SPARQLWrapper/template
+++ b/srcpkgs/python-SPARQLWrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'python-SPARQLWrapper'
 pkgname=python-SPARQLWrapper
 version=1.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a01a9e6bc3bd9fddfdd13341f78e625b063be5c8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 049/872] python-SQLAlchemy: rebuild for Python 3.8.

---
 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 7b529ade621..110430ff9f5 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.8
-revision=1
+revision=2
 wrksrc="SQLAlchemy-${version}"
 build_style=python-module
 pycompile_module="sqlalchemy"

From 46382571cad86b54ca46e129f7c2988772d0a48e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 050/872] python3-SecretStorage: rebuild for Python 3.8.

---
 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 8df813ad247..b19d4865f7e 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.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="SecretStorage-${version}"
 build_style=python3-module

From c79427640956f1961211ce3322c3811958e0f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 051/872] python3-SoCo: rebuild for Python 3.8.

---
 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 f0ac9825f57..01ebbeff15a 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="SoCo-${version}"
 build_style=python3-module

From 20a1ac5477ca4a76e0257e06bf6f353835eac7bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 052/872] python-Sphinx: rebuild for Python 3.8.

---
 srcpkgs/python-Sphinx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Sphinx/template b/srcpkgs/python-Sphinx/template
index e70dc9b238e..42969925f9e 100644
--- a/srcpkgs/python-Sphinx/template
+++ b/srcpkgs/python-Sphinx/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Sphinx'
 pkgname=python-Sphinx
 version=1.8.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="Sphinx-${version}"
 build_style=python-module

From 863c01ff80faa4de651a55ba2a354f8da5e6b025 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 053/872] python3-Telethon: rebuild for Python 3.8.

---
 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 b0786559591..d0fa8e34d3f 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.10.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="Telethon-${version}"
 build_style=python3-module

From efc9766b9866c660a4cb508c49be4df48f1e5809 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 054/872] python-Twisted: rebuild for Python 3.8.

---
 srcpkgs/python-Twisted/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Twisted/template b/srcpkgs/python-Twisted/template
index 519a1e251a9..e94e0edf26e 100644
--- a/srcpkgs/python-Twisted/template
+++ b/srcpkgs/python-Twisted/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Twisted'
 pkgname=python-Twisted
 version=18.9.0
-revision=3
+revision=4
 wrksrc="Twisted-${version}"
 build_style=python-module
 pycompile_module="twisted"

From 5fd974f3940d5ee91fe712fef2e93ce539743b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 055/872] python3-TxSNI: rebuild for Python 3.8.

---
 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 403010da5be..d9d7c2a0c83 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.1.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="TxSNI-${version}"
 build_style=python3-module

From 559184031fe43c0ff648fb7fab55ede08fff2c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 056/872] python-Unidecode: rebuild for Python 3.8.

---
 srcpkgs/python-Unidecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Unidecode/template b/srcpkgs/python-Unidecode/template
index 035c5d846be..444eb1427d6 100644
--- a/srcpkgs/python-Unidecode/template
+++ b/srcpkgs/python-Unidecode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Unidecode'
 pkgname=python-Unidecode
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Unidecode-${version}"
 build_style=python-module

From 07f0904b4cb8f2de0b7bc39c0ca28d225c91257d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 057/872] python-WTForms: rebuild for Python 3.8.

---
 srcpkgs/python-WTForms/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-WTForms/template b/srcpkgs/python-WTForms/template
index 06af2366050..98dff7d092f 100644
--- a/srcpkgs/python-WTForms/template
+++ b/srcpkgs/python-WTForms/template
@@ -1,7 +1,7 @@
 # Template file for 'python-WTForms'
 pkgname=python-WTForms
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="WTForms-${version}"
 build_style=python-module

From ec81beba1921fe189a8dd80810da306514a86c1a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 058/872] python3-WebOb: rebuild for Python 3.8.

---
 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 c360542a1f2..53e63879f2c 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=1
+revision=2
 archs=noarch
 wrksrc="WebOb-${version}"
 build_style=python3-module

From 0b7a4a756b3ead4c188a3819311c4471c1b0a21c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 059/872] python-Werkzeug: rebuild for Python 3.8.

---
 srcpkgs/python-Werkzeug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Werkzeug/template b/srcpkgs/python-Werkzeug/template
index 24fff62f1ae..1ca303822e8 100644
--- a/srcpkgs/python-Werkzeug/template
+++ b/srcpkgs/python-Werkzeug/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Werkzeug'
 pkgname=python-Werkzeug
 version=0.15.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c530a6e11127606a3b29b73da4cb31f010d97b5c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 060/872] python-Whoosh: rebuild for Python 3.8.

---
 srcpkgs/python-Whoosh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Whoosh/template b/srcpkgs/python-Whoosh/template
index f2118ed0af2..66856b206a7 100644
--- a/srcpkgs/python-Whoosh/template
+++ b/srcpkgs/python-Whoosh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-whoosh'
 pkgname=python-Whoosh
 version=2.7.4
-revision=1
+revision=2
 wrksrc="Whoosh-${version}"
 archs=noarch
 build_style=python-module

From 3e3ad6526265ded86e6e1b5539061302a3890381 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 061/872] python3-XlsxWriter: rebuild for Python 3.8.

---
 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 ea68ced9a03..b991457e01e 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.1.8
-revision=1
+revision=2
 archs="noarch"
 wrksrc="XlsxWriter-RELEASE_${version}"
 build_style=python3-module

From ed808be70fb42a5a7e827e43a5d8a9954d85823a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 062/872] python-Yapsy: rebuild for Python 3.8.

---
 srcpkgs/python-Yapsy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Yapsy/template b/srcpkgs/python-Yapsy/template
index 9f79423f91d..5ad8b234f5d 100644
--- a/srcpkgs/python-Yapsy/template
+++ b/srcpkgs/python-Yapsy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Yapsy'
 pkgname=python-Yapsy
 version=1.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Yapsy-${version}"
 build_style=python-module

From ef3f8b60f72752d3ec1c7676df4597cc6cfdfb42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 063/872] python-aalib: rebuild for Python 3.8.

---
 srcpkgs/python-aalib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-aalib/template b/srcpkgs/python-aalib/template
index 349b8407343..f9621a9c8dc 100644
--- a/srcpkgs/python-aalib/template
+++ b/srcpkgs/python-aalib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-aalib'
 pkgname=python-aalib
 version=0.3.2
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="aalib.py"
 hostmakedepends="python-setuptools python3-setuptools"

From 1aee008231a9354b62bbf679e89e620deeba0d34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 064/872] python3-acme: rebuild for Python 3.8.

---
 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 d7ef20f2301..844dde9c814 100644
--- a/srcpkgs/python3-acme/template
+++ b/srcpkgs/python3-acme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-acme'
 pkgname=python3-acme
 version=0.39.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="acme-${version}"
 build_style=python3-module

From 877668118087bb2d0bd4b8ebf34db7c6c4308c31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 065/872] python3-aiodns: rebuild for Python 3.8.

---
 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 cca9f45dbf5..8e06ea6e614 100644
--- a/srcpkgs/python3-aiodns/template
+++ b/srcpkgs/python3-aiodns/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiodns'
 pkgname=python3-aiodns
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiodns-${version}"
 build_style=python3-module

From de87766918ac8688cf8992433b56e9b1ad222108 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 066/872] python3-aiohttp: rebuild for Python 3.8.

---
 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 fbe98e07b2b..67e450e6aab 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.5.4
-revision=3
+revision=4
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 0c2d285f8d7edc438e657ec9bc4a2b16982a4a57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 067/872] python3-aiohttp-cors: rebuild for Python 3.8.

---
 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 8a643ca1797..b621716e3cd 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=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 4643a6f9e03d1657e1ac2f5ca93bf616979b58de Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 068/872] python3-aiohttp-cors2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp-cors2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp-cors2/template b/srcpkgs/python3-aiohttp-cors2/template
index 7ff1206538b..f13b0598456 100644
--- a/srcpkgs/python3-aiohttp-cors2/template
+++ b/srcpkgs/python3-aiohttp-cors2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp-cors2'
 pkgname=python3-aiohttp-cors2
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 9db81023f9f60f7a78d62f9f9b8f1fa8afbb9fa8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 069/872] python3-aiohttp2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp2/template b/srcpkgs/python3-aiohttp2/template
index b570043baba..db3704b5700 100644
--- a/srcpkgs/python3-aiohttp2/template
+++ b/srcpkgs/python3-aiohttp2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp2'
 pkgname=python3-aiohttp2
 version=2.3.10
-revision=2
+revision=3
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 9bf56f834aca73a7ea8141ab0c95b4aed0d1f09a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 070/872] python3-aiohttp_socks: rebuild for Python 3.8.

---
 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 93c45ff24c4..10ab967ef76 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.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp_socks-${version}"
 build_style=python3-module

From acad4e265f43c8bc2098168adb1c0442a0c22445 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 071/872] python3-aiorpcx: rebuild for Python 3.8.

---
 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 42b6dc541bf..07922e15ccd 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.17.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiorpcX-${version}"
 build_style=python3-module

From b4945f68890b617f5b513871e533769a2149f07f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 072/872] python-alabaster: rebuild for Python 3.8.

---
 srcpkgs/python-alabaster/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alabaster/template b/srcpkgs/python-alabaster/template
index e4ece5c2991..b33009d5efb 100644
--- a/srcpkgs/python-alabaster/template
+++ b/srcpkgs/python-alabaster/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alabaster'
 pkgname=python-alabaster
 version=0.7.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="alabaster-${version}"
 build_style=python-module

From 04c416b8fb310277c61713ee1b8dd702a970240b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 073/872] python-alembic: rebuild for Python 3.8.

---
 srcpkgs/python-alembic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alembic/template b/srcpkgs/python-alembic/template
index 4011b33c0fa..aecbe10e7d0 100644
--- a/srcpkgs/python-alembic/template
+++ b/srcpkgs/python-alembic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alembic'
 pkgname=python-alembic
 version=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="alembic-${version}"
 build_style=python-module

From 5c2d4bcc3255cb59561524d151fe84b3a70e8ad4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 074/872] python3-altgraph: rebuild for Python 3.8.

---
 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 eff10f7aef4..2bf433edb6e 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.16.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="altgraph-${version}"
 build_style=python3-module

From 3c6234d42f7adffca219ea7f98f11d5283dce900 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 075/872] python3-aniso8601: rebuild for Python 3.8.

---
 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 26540bc8c3f..0253b89b5a3 100644
--- a/srcpkgs/python3-aniso8601/template
+++ b/srcpkgs/python3-aniso8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aniso8601'
 pkgname=python3-aniso8601
 version=8.0.0
-revision=1
+revision=2
 archs=noarch
 _gitver=0ec13b9d81c9
 wrksrc="nielsenb-aniso8601-${_gitver}"

From b4fecde90241517d0629d46de55f99a1ef7edbaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 076/872] python-ansicolor: rebuild for Python 3.8.

---
 srcpkgs/python-ansicolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ansicolor/template b/srcpkgs/python-ansicolor/template
index af18c5b946d..3663a82f0cc 100644
--- a/srcpkgs/python-ansicolor/template
+++ b/srcpkgs/python-ansicolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ansicolor'
 pkgname=python-ansicolor
 version=0.2.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="ansicolor-${version}"
 build_style=python-module

From 3983fbed547fd194f9eefaaf58d10c7770e27350 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 077/872] python3-anytree: rebuild for Python 3.8.

---
 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 5a37dba6581..7368754c426 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.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="anytree-${version}"
 build_style=python3-module

From 6d797f541c2cb160f9cfebd0a3e71dace50cceb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 078/872] python-appdirs: rebuild for Python 3.8.

---
 srcpkgs/python-appdirs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-appdirs/template b/srcpkgs/python-appdirs/template
index fdae1fe184b..15354ec5768 100644
--- a/srcpkgs/python-appdirs/template
+++ b/srcpkgs/python-appdirs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-appdirs'
 pkgname=python-appdirs
 version=1.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 7a7c86554157d7224efc221e706b9aebfc1ff796 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 079/872] python3-applib: rebuild for Python 3.8.

---
 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 95f589dc65a..0fb5a42e618 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=1
+revision=2
 archs=noarch
 wrksrc="applib-${version}"
 build_style=python3-module

From 642416934e5f74b49e1a38fe6e941287cbccbf83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 080/872] python-apsw: rebuild for Python 3.8.

---
 srcpkgs/python-apsw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-apsw/template b/srcpkgs/python-apsw/template
index ed47b4a7803..6146ea639db 100644
--- a/srcpkgs/python-apsw/template
+++ b/srcpkgs/python-apsw/template
@@ -3,7 +3,7 @@ pkgname=python-apsw
 _distver=3.29.0
 _patchver=r1
 version=${_distver}${_patchver}
-revision=1
+revision=2
 wrksrc="apsw-${_distver}-${_patchver}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 765bd2f2b82c6226b12a5d6bbe156b07c03a1bca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 081/872] python-argh: rebuild for Python 3.8.

---
 srcpkgs/python-argh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argh/template b/srcpkgs/python-argh/template
index 4b7aec3b525..656da441757 100644
--- a/srcpkgs/python-argh/template
+++ b/srcpkgs/python-argh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argh'
 pkgname=python-argh
 version=0.26.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="argh-${version}"
 build_style=python-module

From 1f6f709fcbb4353d419be8d129ce581747dae1ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 082/872] python-argon2: rebuild for Python 3.8.

---
 srcpkgs/python-argon2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argon2/template b/srcpkgs/python-argon2/template
index 0b4b132cddd..1b5216cc9c0 100644
--- a/srcpkgs/python-argon2/template
+++ b/srcpkgs/python-argon2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argon2'
 pkgname=python-argon2
 version=18.3.0
-revision=2
+revision=3
 wrksrc="argon2_cffi-${version}"
 build_style=python-module
 pycompile_module="argon2"

From 26f299203792a3fe43e8944054d8c61c83416097 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 083/872] python-arxiv2bib: rebuild for Python 3.8.

---
 srcpkgs/python-arxiv2bib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-arxiv2bib/template b/srcpkgs/python-arxiv2bib/template
index 8bbc6bcf78e..4f245755dcf 100644
--- a/srcpkgs/python-arxiv2bib/template
+++ b/srcpkgs/python-arxiv2bib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-arxiv2bib'
 pkgname=python-arxiv2bib
 version=1.0.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="arxiv2bib-${version}"
 build_style=python-module

From 5d25b8642b8f8043e54a95f2ff5efc880044395a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 084/872] python-asn1crypto: rebuild for Python 3.8.

---
 srcpkgs/python-asn1crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-asn1crypto/template b/srcpkgs/python-asn1crypto/template
index 369c20af98f..e7ffe7415fc 100644
--- a/srcpkgs/python-asn1crypto/template
+++ b/srcpkgs/python-asn1crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-asn1crypto'
 pkgname=python-asn1crypto
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="asn1crypto-${version}"
 build_style=python-module

From c0625af704339d35d7423cd750ef2620c53c39bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 085/872] python-astral: rebuild for Python 3.8.

---
 srcpkgs/python-astral/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-astral/template b/srcpkgs/python-astral/template
index b8fdaee27ac..07aaeee166b 100644
--- a/srcpkgs/python-astral/template
+++ b/srcpkgs/python-astral/template
@@ -1,7 +1,7 @@
 # Template file for 'python-astral'
 pkgname=python-astral
 version=1.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python-}-${version}"
 build_style=python-module

From 6cdbd1584336605868e949368279bb6c2143b1d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 086/872] python3-astroid: rebuild for Python 3.8.

---
 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 28f01bd4445..d964fd2cdf3 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.2.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="astroid-${version}"
 build_style=python3-module

From c0642f6c760884c3209a89e643de35660419627a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 087/872] python3-async-timeout: rebuild for Python 3.8.

---
 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 d949a4fdf9a..854584fb5b2 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=1
+revision=2
 archs=noarch
 wrksrc="async-timeout-${version}"
 build_style=python3-module

From 17cdd1aac68337b8859ce0d970b309f841b8a456 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 088/872] python3-async_generator: rebuild for Python 3.8.

---
 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 c2053d7bf1f..20d9f7ea0d1 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=1
+revision=2
 archs=noarch
 wrksrc="async_generator-${version}"
 build_style=python3-module

From e57ec7e6820968645a23bcc13867add4c9a62399 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 089/872] python-atomicwrites: rebuild for Python 3.8.

---
 srcpkgs/python-atomicwrites/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atomicwrites/template b/srcpkgs/python-atomicwrites/template
index 849272e53f9..ec411d981d4 100644
--- a/srcpkgs/python-atomicwrites/template
+++ b/srcpkgs/python-atomicwrites/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atomicwrites'
 pkgname=python-atomicwrites
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="atomicwrites-${version}"
 build_style=python-module

From 61df9fa27dc05bc6bb5d5a2c5e806fd041d9adb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 090/872] python-atspi: rebuild for Python 3.8.

---
 srcpkgs/python-atspi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atspi/template b/srcpkgs/python-atspi/template
index 4a2007fa319..cfa1ef35377 100644
--- a/srcpkgs/python-atspi/template
+++ b/srcpkgs/python-atspi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atspi'
 pkgname=python-atspi
 version=2.32.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure

From d24c76e2f70e9a9dd9a6aa66a323bf79f37f9110 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 091/872] python-attrs: rebuild for Python 3.8.

---
 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 aaddb13f5be..6e2297a9553 100644
--- a/srcpkgs/python-attrs/template
+++ b/srcpkgs/python-attrs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-attrs'
 pkgname=python-attrs
 version=19.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="attrs-${version}"
 build_style=python-module

From dba37b5f26f28057cb10e86a08a4d2281ee09b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 092/872] python-audioread: rebuild for Python 3.8.

---
 srcpkgs/python-audioread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-audioread/template b/srcpkgs/python-audioread/template
index fc788a2778c..bc878d4b82d 100644
--- a/srcpkgs/python-audioread/template
+++ b/srcpkgs/python-audioread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-audioread'
 pkgname=python-audioread
 version=2.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="audioread-${version}"
 build_style=python-module

From 789a6f2ae1cd503ad69b6a968651c7745f878718 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 093/872] audit: rebuild for Python 3.8.

---
 srcpkgs/audit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/audit/template b/srcpkgs/audit/template
index c624aae0f6d..3e0d21784c0 100644
--- a/srcpkgs/audit/template
+++ b/srcpkgs/audit/template
@@ -1,7 +1,7 @@
 # Template file for 'audit'
 pkgname=audit
 version=2.8.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--libdir=/usr/lib --enable-shared=audit --enable-gssapi-krb5
  --with-apparmor --with-libcap-ng --with-python3"

From e2efc441ba2dda6eac89d6d19f7960be2fb6cb6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 094/872] python3-autobahn: rebuild for Python 3.8.

---
 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 053e45608e5..524ba4b4566 100644
--- a/srcpkgs/python3-autobahn/template
+++ b/srcpkgs/python3-autobahn/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-autobahn'
 pkgname=python3-autobahn
 version=19.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="autobahn-${version}"
 build_style=python3-module

From 9ad07e924752896ad77bccca2019163eb738ebc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 095/872] python-automat: rebuild for Python 3.8.

---
 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 4d0f89a89f5..984f5e9642a 100644
--- a/srcpkgs/python-automat/template
+++ b/srcpkgs/python-automat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-automat'
 pkgname=python-automat
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Automat-${version}"
 build_style=python-module

From a104c6986268b798f373e1fb36de2b20efb9f618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 096/872] python-axolotl: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl/template b/srcpkgs/python-axolotl/template
index cf24db1b6e7..74480b5a9fe 100644
--- a/srcpkgs/python-axolotl/template
+++ b/srcpkgs/python-axolotl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl'
 pkgname=python-axolotl
 version=0.2.3
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="axolotl"

From c0e16521a2125c2ae2c155dd483904a3dce7bd8c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 097/872] python-axolotl-curve25519: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl-curve25519/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl-curve25519/template b/srcpkgs/python-axolotl-curve25519/template
index f7b273b8385..897de4e7cdf 100644
--- a/srcpkgs/python-axolotl-curve25519/template
+++ b/srcpkgs/python-axolotl-curve25519/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl-curve25519'
 pkgname=python-axolotl-curve25519
 version=0.4.1.post2
-revision=2
+revision=3
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 makedepends="python-devel python3-devel"

From 6c250811341de25ed60e2bdfaae58eb8f5a8c159 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 098/872] python-babelfish: rebuild for Python 3.8.

---
 srcpkgs/python-babelfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-babelfish/template b/srcpkgs/python-babelfish/template
index c156255f418..47d5bb176cc 100644
--- a/srcpkgs/python-babelfish/template
+++ b/srcpkgs/python-babelfish/template
@@ -1,7 +1,7 @@
 # Template file for 'python-babelfish'
 pkgname=python-babelfish
 version=0.5.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="babelfish-${version}"
 build_style=python-module

From 3bbb2fa6599ab0470a4209080a69ad4f8476f1ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 099/872] python-backcall: rebuild for Python 3.8.

---
 srcpkgs/python-backcall/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-backcall/template b/srcpkgs/python-backcall/template
index 01dfab9c25d..a55af727ab6 100644
--- a/srcpkgs/python-backcall/template
+++ b/srcpkgs/python-backcall/template
@@ -1,7 +1,7 @@
 # Template file for 'python-backcall'
 pkgname=python-backcall
 version=0.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="backcall-${version}"
 build_style=python-module

From d263efaab1b83cfdc94e9b33011f3cfefc52dcd2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 100/872] bcc: rebuild for Python 3.8.

---
 srcpkgs/bcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template
index a4d32bce7a4..e872cb6a4a8 100644
--- a/srcpkgs/bcc/template
+++ b/srcpkgs/bcc/template
@@ -1,7 +1,7 @@
 # Template file for 'bcc'
 pkgname=bcc
 version=0.11.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DREVISION=${version}"
 hostmakedepends="flex"

From 95aa25d2f02529207de0d9d62aa57353f202d9a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 101/872] python-bcrypt: rebuild for Python 3.8.

---
 srcpkgs/python-bcrypt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bcrypt/template b/srcpkgs/python-bcrypt/template
index 1ccac21ee94..664b5c9df07 100644
--- a/srcpkgs/python-bcrypt/template
+++ b/srcpkgs/python-bcrypt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bcrypt'
 pkgname=python-bcrypt
 version=3.1.7
-revision=1
+revision=2
 wrksrc="bcrypt-${version}"
 build_style=python-module
 pycompile_module="bcrypt"

From 91e29d8f93186f3c597658d4746f864cc6ed9fb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 102/872] python-bibtexparser: rebuild for Python 3.8.

---
 srcpkgs/python-bibtexparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bibtexparser/template b/srcpkgs/python-bibtexparser/template
index 1eff201e6b8..c40115c9fb8 100644
--- a/srcpkgs/python-bibtexparser/template
+++ b/srcpkgs/python-bibtexparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bibtexparser'
 pkgname=python-bibtexparser
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bibtexparser-${version}"
 build_style=python-module

From 6a95de33763230908ad4e9ae408dedcdd2cc431d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 103/872] python-bitarray: rebuild for Python 3.8.

---
 srcpkgs/python-bitarray/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitarray/template b/srcpkgs/python-bitarray/template
index 4f2b4ee392c..f928718a9df 100644
--- a/srcpkgs/python-bitarray/template
+++ b/srcpkgs/python-bitarray/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitarray'
 pkgname=python-bitarray
 version=1.0.1
-revision=1
+revision=2
 wrksrc="bitarray-${version}"
 build_style=python-module
 pycompile_module="bitarray"

From 1f892b7a3495cc0eddd59d14baf8fa6473521ce4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 104/872] python-bitbucket-api: rebuild for Python 3.8.

---
 srcpkgs/python-bitbucket-api/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitbucket-api/template b/srcpkgs/python-bitbucket-api/template
index 27747866baf..448ea60d53d 100644
--- a/srcpkgs/python-bitbucket-api/template
+++ b/srcpkgs/python-bitbucket-api/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitbucket-api'
 pkgname=python-bitbucket-api
 version=0.5.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="bitbucket-api-${version}"
 build_style=python-module

From 9f464ba19a5d403e830d05b84d5b86c6a9bf0209 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 105/872] python-bleach: rebuild for Python 3.8.

---
 srcpkgs/python-bleach/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bleach/template b/srcpkgs/python-bleach/template
index da389c319a5..6e3d4a3bf4c 100644
--- a/srcpkgs/python-bleach/template
+++ b/srcpkgs/python-bleach/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bleach'
 pkgname=python-bleach
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bleach-${version}"
 build_style=python-module

From a79c0811d86d64b345ee5b056c280a062c8e810a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 106/872] python3-blessed: rebuild for Python 3.8.

---
 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 4d494883f9a..8527379351f 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.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessed-${version}"
 build_style=python3-module

From ec38850242ede1700a4b6234199fba116a530b3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 107/872] python-blessings: rebuild for Python 3.8.

---
 srcpkgs/python-blessings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blessings/template b/srcpkgs/python-blessings/template
index f8e396da5c5..baa4938c328 100644
--- a/srcpkgs/python-blessings/template
+++ b/srcpkgs/python-blessings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blessings'
 pkgname=python-blessings
 version=1.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessings-${version}"
 build_style=python-module

From 19252293b6f311e3a280441f83e7ec1589711b77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 108/872] python-blinker: rebuild for Python 3.8.

---
 srcpkgs/python-blinker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blinker/template b/srcpkgs/python-blinker/template
index e34a4a9721a..b6d1d63d19a 100644
--- a/srcpkgs/python-blinker/template
+++ b/srcpkgs/python-blinker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blinker'
 pkgname=python-blinker
 version=1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="blinker-${version}"
 build_style=python-module

From 7cd7b832b55b68ab081454f2b86c254476bd5132 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 109/872] python-bluez: rebuild for Python 3.8.

---
 srcpkgs/python-bluez/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bluez/template b/srcpkgs/python-bluez/template
index 1112352e8ab..4734e47038d 100644
--- a/srcpkgs/python-bluez/template
+++ b/srcpkgs/python-bluez/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bluez'
 pkgname=python-bluez
 version=0.22
-revision=4
+revision=5
 wrksrc="pybluez-${version}"
 build_style=python-module
 pycompile_module="bluetooth"

From 47f9a18cc42f2afe1e8f31696b6928e35b8105c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 110/872] python3-boltons: rebuild for Python 3.8.

---
 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 84a991feef4..1083eb98c51 100644
--- a/srcpkgs/python3-boltons/template
+++ b/srcpkgs/python3-boltons/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-boltons'
 pkgname=python3-boltons
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boltons-${version}"
 build_style=python3-module

From 05f9cb79aa092e2ddeede56d09676742c60cb788 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 111/872] python-boto: rebuild for Python 3.8.

---
 srcpkgs/python-boto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-boto/template b/srcpkgs/python-boto/template
index 40bd3d888b9..684c00feee0 100644
--- a/srcpkgs/python-boto/template
+++ b/srcpkgs/python-boto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-boto'
 pkgname=python-boto
 version=2.49.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boto-${version}"
 build_style=python-module

From ad258b30e35aadb84fd8cd6395bb3d382b429ce9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 112/872] python-botocore: rebuild for Python 3.8.

---
 srcpkgs/python-botocore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-botocore/template b/srcpkgs/python-botocore/template
index ae1a4c17964..0610007f36e 100644
--- a/srcpkgs/python-botocore/template
+++ b/srcpkgs/python-botocore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-botocore'
 pkgname=python-botocore
 version=1.12.243
-revision=1
+revision=2
 archs=noarch
 wrksrc="botocore-${version}"
 build_style=python-module

From 5bc87295c4d5b8af514da116d9b83154488da331 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 113/872] python-bottle: rebuild for Python 3.8.

---
 srcpkgs/python-bottle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bottle/template b/srcpkgs/python-bottle/template
index 8e3a2ad5ad7..0ffc8adfec7 100644
--- a/srcpkgs/python-bottle/template
+++ b/srcpkgs/python-bottle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bottle'
 pkgname=python-bottle
 version=0.12.17
-revision=1
+revision=2
 archs=noarch
 wrksrc="bottle-${version}"
 build_style=python-module

From 86d7964c563357cfa4aec17ced1fefb9e2c974d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 114/872] brltty: rebuild for Python 3.8.

---
 srcpkgs/brltty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/brltty/template b/srcpkgs/brltty/template
index 33f3354a219..a838cd62d55 100644
--- a/srcpkgs/brltty/template
+++ b/srcpkgs/brltty/template
@@ -1,7 +1,7 @@
 # Template file for 'brltty'
 pkgname=brltty
 version=6.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-gpm --with-screen-driver=lx,sc
  --with-tables-directory=/usr/share/brltty PYTHON=/usr/bin/python3"

From 59305e4244220895606aef8a8016d356cee63dff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 115/872] python-bsddb3: rebuild for Python 3.8.

---
 srcpkgs/python-bsddb3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bsddb3/template b/srcpkgs/python-bsddb3/template
index f719a3f9560..1df37cc0e71 100644
--- a/srcpkgs/python-bsddb3/template
+++ b/srcpkgs/python-bsddb3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bsddb3'
 pkgname=python-bsddb3
 version=6.2.6
-revision=2
+revision=3
 wrksrc="bsddb3-${version}"
 build_style=python-module
 make_build_args="--berkeley-db=${XBPS_CROSS_BASE}/usr"

From 8e91ab0e55145cdc83aae10c6f0277d467cb5057 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 116/872] python-cached-property: rebuild for Python 3.8.

---
 srcpkgs/python-cached-property/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cached-property/template b/srcpkgs/python-cached-property/template
index ca2f8536260..16c89346565 100644
--- a/srcpkgs/python-cached-property/template
+++ b/srcpkgs/python-cached-property/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cached-property'
 pkgname=python-cached-property
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cached-property-${version}"
 build_style=python-module

From 3047633291296a9279b5c2a9c0ff04a0cea875f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 117/872] python-cachetools: rebuild for Python 3.8.

---
 srcpkgs/python-cachetools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cachetools/template b/srcpkgs/python-cachetools/template
index ee3ed3a4c94..0f2fdcaed32 100644
--- a/srcpkgs/python-cachetools/template
+++ b/srcpkgs/python-cachetools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cachetools'
 pkgname=python-cachetools
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cachetools-${version}"
 build_style=python-module

From 52e0110b2dc8419583a18babfa62796ef6410ac7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 118/872] python3-cairo: rebuild for Python 3.8.

---
 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 cdde1b83d20..ac158237dd2 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.18.1
-revision=1
+revision=2
 wrksrc="pycairo-${version}"
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From d8f9c3f93f495874237c23477fb548be8b2c0da2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 119/872] python-cairocffi: rebuild for Python 3.8.

---
 srcpkgs/python-cairocffi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cairocffi/template b/srcpkgs/python-cairocffi/template
index baa61334a2a..c057739b03d 100644
--- a/srcpkgs/python-cairocffi/template
+++ b/srcpkgs/python-cairocffi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cairocffi'
 pkgname=python-cairocffi
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cairocffi-${version}"
 build_style=python-module

From bc01f22fb9a5d16bae1b724b675fc57b1f732baa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 120/872] python3-canonicaljson: rebuild for Python 3.8.

---
 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 abc8e95820d..1cbe15f14ae 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.1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="canonicaljson-${version}"
 build_style=python3-module

From e4cba931e3e55f565bc084f8171dea2a8baa9aaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 121/872] python3-casttube: rebuild for Python 3.8.

---
 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 ccd95f3f31c..9e5544b0101 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=1
+revision=2
 archs=noarch
 wrksrc="casttube-${version}"
 build_style=python3-module

From 255661e350728911e6dc85db4bd8a0a0f059b561 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 122/872] python-cffi: rebuild for Python 3.8.

---
 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 27ae03879ac..8501b202bf2 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.12.3
-revision=1
+revision=2
 wrksrc="cffi-${version}"
 build_style=python-module
 pycompile_module="cffi"

From 1b85c0971a1d2d810331d3392d4ecedf140eeb47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 123/872] python3-changelogs: rebuild for Python 3.8.

---
 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 5c2a4889959..d9a7784cf3b 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.14.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="changelogs-${version}"
 build_style=python3-module

From 38e9561402e4ea4c3c4b27c8c747e6b710aec2fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 124/872] python-chardet: rebuild for Python 3.8.

---
 srcpkgs/python-chardet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chardet/template b/srcpkgs/python-chardet/template
index 685d3ab767f..bd502bbbddf 100644
--- a/srcpkgs/python-chardet/template
+++ b/srcpkgs/python-chardet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chardet'
 pkgname=python-chardet
 version=3.0.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="chardet-${version}"
 build_style=python-module

From de1193127ae80857e0f21f1d0499748b6ccafa40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 125/872] python3-cheetah3: rebuild for Python 3.8.

---
 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 40dfee6e322..b2149b2bc22 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.4
-revision=1
+revision=2
 wrksrc="Cheetah3-${version}"
 build_style=python3-module
 pycompile_module="Cheetah"

From 654378c7da0932e5e48085409868c2639efb5294 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 126/872] python3-chess: rebuild for Python 3.8.

---
 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 54b397517cf..e87dab6ca02 100644
--- a/srcpkgs/python3-chess/template
+++ b/srcpkgs/python3-chess/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chess'
 pkgname=python3-chess
 version=0.27.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-chess-${version}"
 build_style=python3-module

From 10db1a1daa9e65a8a20ebc6e20f512884e23f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 127/872] python3-chromecast: rebuild for Python 3.8.

---
 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 16df7502633..cfa41c5dfb5 100644
--- a/srcpkgs/python3-chromecast/template
+++ b/srcpkgs/python3-chromecast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chromecast'
 pkgname=python3-chromecast
 version=4.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychromecast-${version}"
 build_style=python3-module

From 9ff3e7dae7d0ebe28421538f18f150ecd58104e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 128/872] python-chroot: rebuild for Python 3.8.

---
 srcpkgs/python-chroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chroot/template b/srcpkgs/python-chroot/template
index 36853e9f2c0..7faa0f4cce9 100644
--- a/srcpkgs/python-chroot/template
+++ b/srcpkgs/python-chroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chroot'
 pkgname=python-chroot
 version=0.9.18
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychroot-${version}"
 build_style=python-module

From 8d2b57d7f0075beb9134ebd5f7e517ef8a7f20a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 129/872] python3-cli-ui: rebuild for Python 3.8.

---
 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 8303d44eed2..15a9bd32fce 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.9.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-cli-ui-${version}"
 build_style=python3-module

From ecf175e67cdb7bd1e27d29cc47a7e945a6660996 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 130/872] python3-cli_helpers: rebuild for Python 3.8.

---
 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 74b4abf2200..87b284e3cb5 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=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cli_helpers-${version}"
 build_style=python3-module

From aa87c50665110997328e9b80b9b6ba62c47f18bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 131/872] python-click: rebuild for Python 3.8.

---
 srcpkgs/python-click/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click/template b/srcpkgs/python-click/template
index 217e617e73e..4014cb66a83 100644
--- a/srcpkgs/python-click/template
+++ b/srcpkgs/python-click/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click'
 pkgname=python-click
 version=7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Click-${version}"
 build_style="python-module"

From cac08babb361a709a7b7a93c7a825b4682273115 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 132/872] python-click-log: rebuild for Python 3.8.

---
 srcpkgs/python-click-log/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-log/template b/srcpkgs/python-click-log/template
index 37b53f04af0..b57a7a74b4a 100644
--- a/srcpkgs/python-click-log/template
+++ b/srcpkgs/python-click-log/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-log'
 pkgname=python-click-log
 version=0.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-log-${version}"
 build_style="python-module"

From 5a0f06ded0599ac889d808c93865db1723b2ed95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 133/872] python3-click-plugins: rebuild for Python 3.8.

---
 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 cee484018d1..0ef6ce6b248 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=1
+revision=2
 archs=noarch
 wrksrc="click-plugins-${version}"
 build_style=python3-module

From cf104fe4106995307daeb70eb8d34554c238b5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 134/872] python-click-threading: rebuild for Python 3.8.

---
 srcpkgs/python-click-threading/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-threading/template b/srcpkgs/python-click-threading/template
index 76125224992..49b4a4a9aae 100644
--- a/srcpkgs/python-click-threading/template
+++ b/srcpkgs/python-click-threading/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-threading'
 pkgname=python-click-threading
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-threading-${version}"
 build_style="python-module"

From 4bcf653af73bc8e5a6492eee92e5d2826a779d38 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 135/872] python3-cmdln: rebuild for Python 3.8.

---
 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 f00c9a63908..2b7e21f3980 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=1
+revision=2
 archs=noarch
 wrksrc="cmdln-${version}"
 build_style=python3-module

From 52e9257d3be602d0748918c1440a3eae0b6baa51 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 136/872] python-codespell: rebuild for Python 3.8.

---
 srcpkgs/python-codespell/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-codespell/template b/srcpkgs/python-codespell/template
index 92134285a58..211626f33d7 100644
--- a/srcpkgs/python-codespell/template
+++ b/srcpkgs/python-codespell/template
@@ -1,7 +1,7 @@
 # Template file for 'python-codespell'
 pkgname=python-codespell
 version=1.14.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="codespell-${version}"
 build_style=python-module

From 65299f402e3d3a2991e33defee28d85043e0b40f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 137/872] python-colorama: rebuild for Python 3.8.

---
 srcpkgs/python-colorama/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-colorama/template b/srcpkgs/python-colorama/template
index 98ea0d3be78..09562385243 100644
--- a/srcpkgs/python-colorama/template
+++ b/srcpkgs/python-colorama/template
@@ -1,7 +1,7 @@
 # Template file for 'python-colorama'
 pkgname=python-colorama
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="colorama-${version}"
 build_style=python-module

From ec6a8fb7b9e3330e2d7f3fbe139c7a3742013bd8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 138/872] python3-colorclass: rebuild for Python 3.8.

---
 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 4a80f379206..ed8d2d2ea02 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=1
+revision=2
 archs=noarch
 wrksrc="colorclass-${version}"
 build_style=python3-module

From 4b254d3097fa01cb641af24639c6b9a230345954 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 139/872] python-configobj: rebuild for Python 3.8.

---
 srcpkgs/python-configobj/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-configobj/template b/srcpkgs/python-configobj/template
index 95f30d4631a..a8cb5d5d34e 100644
--- a/srcpkgs/python-configobj/template
+++ b/srcpkgs/python-configobj/template
@@ -1,7 +1,7 @@
 # Template file for 'python-configobj'
 pkgname=python-configobj
 version=5.0.6
-revision=5
+revision=6
 archs=noarch
 wrksrc="configobj-${version}"
 build_style=python-module

From 530a6b84ff81274981ed1aa92a2ff85a78dc9775 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 140/872] python-constantly: rebuild for Python 3.8.

---
 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 b5530908ac4..9160aec9edd 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=2
+revision=3
 archs=noarch
 wrksrc="constantly-${version}"
 build_style=python-module

From d2c0a853f5cd6634cca304f7db191fcb1d9a6afa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 141/872] python-construct: rebuild for Python 3.8.

---
 srcpkgs/python-construct/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-construct/template b/srcpkgs/python-construct/template
index 2afe435652c..d6d0b8010e2 100644
--- a/srcpkgs/python-construct/template
+++ b/srcpkgs/python-construct/template
@@ -1,7 +1,7 @@
 # Template file for 'python-construct'
 pkgname=python-construct
 version=2.9.45
-revision=2
+revision=3
 archs=noarch
 wrksrc="construct-${version}"
 build_style=python-module

From 9ba618aa4a4db0062002fcb1ad540bee9b702ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 142/872] python-coverage: rebuild for Python 3.8.

---
 srcpkgs/python-coverage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-coverage/template b/srcpkgs/python-coverage/template
index df6064b9879..1c44b5e18fb 100644
--- a/srcpkgs/python-coverage/template
+++ b/srcpkgs/python-coverage/template
@@ -1,7 +1,7 @@
 # Template file for 'python-coverage'
 pkgname=python-coverage
 version=4.5.4
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="coverage"

From 9adf4621a4960d8a331e1b723971cb326ad2429f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 143/872] python-cram: rebuild for Python 3.8.

---
 srcpkgs/python-cram/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cram/template b/srcpkgs/python-cram/template
index f1fce32149f..8c5d65fe260 100644
--- a/srcpkgs/python-cram/template
+++ b/srcpkgs/python-cram/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cram'
 pkgname=python-cram
 version=0.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="cram-${version}"
 build_style=python-module

From 47ef41a3931be5da08ee8d6fb0ff35b5e1a95d62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 144/872] python3-crcmod: rebuild for Python 3.8.

---
 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 4cd433d2420..9311dedc8ac 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=1
+revision=2
 wrksrc="crcmod-${version}"
 build_style=python3-module
 pycompile_module="crcmod"

From 8b8750f3919e1f23aa6930671f096a365391611a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 145/872] python-cryptography: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography/template b/srcpkgs/python-cryptography/template
index ce3184715dd..39e63d22f7d 100644
--- a/srcpkgs/python-cryptography/template
+++ b/srcpkgs/python-cryptography/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography'
 pkgname=python-cryptography
 version=2.7
-revision=1
+revision=2
 wrksrc="cryptography-${version}"
 build_style=python-module
 pycompile_module="cryptography"

From 676ecf3ea008b8ccabdd3d2798c449a061abb9dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 146/872] python-cryptography_vectors: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography_vectors/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography_vectors/template b/srcpkgs/python-cryptography_vectors/template
index d52e5f5e47c..8fba3a0ce27 100644
--- a/srcpkgs/python-cryptography_vectors/template
+++ b/srcpkgs/python-cryptography_vectors/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography_vectors'
 pkgname=python-cryptography_vectors
 version=2.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="cryptography_vectors-${version}"
 build_style=python-module

From b78a89dedf3b15094ae7febdff460a2cbf547464 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 147/872] python-css-parser: rebuild for Python 3.8.

---
 srcpkgs/python-css-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-css-parser/template b/srcpkgs/python-css-parser/template
index e90b103e4a0..f6d2d0cbf8b 100644
--- a/srcpkgs/python-css-parser/template
+++ b/srcpkgs/python-css-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-css-parser'
 pkgname=python-css-parser
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="css-parser-${version}"
 build_style=python-module

From 036f8b87a68dcb362c7037f58abcffb763571601 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 148/872] python-cssselect: rebuild for Python 3.8.

---
 srcpkgs/python-cssselect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssselect/template b/srcpkgs/python-cssselect/template
index d7dbcebc0ea..c7f43ebca9f 100644
--- a/srcpkgs/python-cssselect/template
+++ b/srcpkgs/python-cssselect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssselect'
 pkgname=python-cssselect
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d4b52974f5f9e8a86060d3dfccc041298c1d666 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 149/872] python-cssutils: rebuild for Python 3.8.

---
 srcpkgs/python-cssutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssutils/template b/srcpkgs/python-cssutils/template
index 648c4754c22..5f08903b9a0 100644
--- a/srcpkgs/python-cssutils/template
+++ b/srcpkgs/python-cssutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssutils'
 pkgname=python-cssutils
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="cssutils-${version}"
 build_style=python-module

From bfb2835290dfefddc0781e2b463d410bf121efa5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 150/872] python-cups: rebuild for Python 3.8.

---
 srcpkgs/python-cups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cups/template b/srcpkgs/python-cups/template
index 2c26e9ef3d0..62c384c9db8 100644
--- a/srcpkgs/python-cups/template
+++ b/srcpkgs/python-cups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cups'
 pkgname=python-cups
 version=1.9.74
-revision=2
+revision=3
 wrksrc="pycups-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 32daac09af71a30483e9985028381670b4ab6245 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 151/872] system-config-printer: rebuild for Python 3.8.

---
 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 e8f8eca46ae..04fe74ff808 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.11
-revision=5
+revision=6
 build_style=gnu-configure
 configure_args="--with-udev-rules"
 make_build_args="udevhelperdir=/usr/lib/udev"

From 582813b2756ce1d1d397113a752b81189680c001 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 152/872] python-curl: rebuild for Python 3.8.

---
 srcpkgs/python-curl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curl/template b/srcpkgs/python-curl/template
index f1f9051d53a..685c63ce68a 100644
--- a/srcpkgs/python-curl/template
+++ b/srcpkgs/python-curl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curl'
 pkgname=python-curl
 version=7.43.0.3
-revision=4
+revision=5
 wrksrc="pycurl-${version}"
 build_style=python-module
 pycompile_module="curl"

From 0eda981910702bfaac2a8af2041fe2c534c13618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 153/872] python-curtsies: rebuild for Python 3.8.

---
 srcpkgs/python-curtsies/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curtsies/template b/srcpkgs/python-curtsies/template
index 158d1c5ce76..6126a11e9b4 100644
--- a/srcpkgs/python-curtsies/template
+++ b/srcpkgs/python-curtsies/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curtsies'
 pkgname=python-curtsies
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="curtsies-${version}"
 build_style=python-module

From 7db16365daaa931d774701441c01b698be457cb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 154/872] python-cycler: rebuild for Python 3.8.

---
 srcpkgs/python-cycler/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cycler/template b/srcpkgs/python-cycler/template
index ee6c985b288..0b53c195dae 100644
--- a/srcpkgs/python-cycler/template
+++ b/srcpkgs/python-cycler/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cycler'
 pkgname=python-cycler
 version=0.10.0
-revision=4
+revision=5
 archs=noarch
 wrksrc="cycler-${version}"
 build_style=python-module

From 2c59e6772ee31b855fe302a27b9b9544cd865e6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 155/872] python-daemonize: rebuild for Python 3.8.

---
 srcpkgs/python-daemonize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-daemonize/template b/srcpkgs/python-daemonize/template
index 699a156b26b..efaf163e573 100644
--- a/srcpkgs/python-daemonize/template
+++ b/srcpkgs/python-daemonize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-daemonize'
 pkgname=python-daemonize
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="daemonize-${version}"
 build_style=python-module

From 84cc63fece0763c8b6920e56e78508551e0fc727 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 156/872] python-dateutil: rebuild for Python 3.8.

---
 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 d9c0f73c883..7675b8f9447 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.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="dateutil"

From 9a19173186ae564f17114f530ac8077484d43c82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 157/872] python-dbus: rebuild for Python 3.8.

---
 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 869c10b2969..3845f6ce34a 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.12
-revision=1
+revision=2
 wrksrc="dbus-python-${version}"
 build_style=gnu-configure
 pycompile_module="dbus"

From 06a9a5b6965485369e669181d99123d7beabf81f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 158/872] python3-dbusmock: rebuild for Python 3.8.

---
 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 67e0ed68078..4abd47843cc 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.18.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-dbusmock-${version}"
 build_style=python3-module

From 694c57d69d63d9f59bef9d31d20a0b16dc73a2a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 159/872] python-decorator: rebuild for Python 3.8.

---
 srcpkgs/python-decorator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-decorator/template b/srcpkgs/python-decorator/template
index 14090c537c9..7f14fef90a6 100644
--- a/srcpkgs/python-decorator/template
+++ b/srcpkgs/python-decorator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-decorator'
 pkgname=python-decorator
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="decorator-${version}"
 build_style=python-module

From 3bd4b100eb970e16e93bbbed8ce2ac91a36e3df5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 160/872] python-defusedxml: rebuild for Python 3.8.

---
 srcpkgs/python-defusedxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-defusedxml/template b/srcpkgs/python-defusedxml/template
index afd62e94414..96234eb18c7 100644
--- a/srcpkgs/python-defusedxml/template
+++ b/srcpkgs/python-defusedxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-defusedxml'
 pkgname=python-defusedxml
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="defusedxml-${version}"
 build_style=python-module

From 442acbe58cd337c55658908f41ec5b6221ca8fcb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 161/872] python3-discid: rebuild for Python 3.8.

---
 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 be5eae1f07f..cc4bc27a1aa 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=1
+revision=2
 archs=noarch
 wrksrc="discid-${version}"
 build_style=python3-module

From 31db2101853fbced7b2655f48906b9054bce07ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 162/872] python-discogs_client: rebuild for Python 3.8.

---
 srcpkgs/python-discogs_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-discogs_client/template b/srcpkgs/python-discogs_client/template
index a27cc50f93c..5af18eda664 100644
--- a/srcpkgs/python-discogs_client/template
+++ b/srcpkgs/python-discogs_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-discogs_client'
 pkgname=python-discogs_client
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="discogs-client-${version}"
 build_style=python-module

From 0aba2b232148b832c27ebd8703c24f42c5018f15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 163/872] python3-distro: rebuild for Python 3.8.

---
 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 86e94572ed7..f1205ace151 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.4.0
-revision=1
+revision=2
 wrksrc=distro-${version}
 build_style=python3-module
 pycompile_module="distro"

From 990a3bd7cef20bd21b781caccd807a7cadf6a0fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 164/872] python-distutils-extra: rebuild for Python 3.8.

---
 srcpkgs/python-distutils-extra/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-distutils-extra/template b/srcpkgs/python-distutils-extra/template
index 9e5728ba08f..46bb0cccc31 100644
--- a/srcpkgs/python-distutils-extra/template
+++ b/srcpkgs/python-distutils-extra/template
@@ -1,7 +1,7 @@
 # Template file for 'python-distutils-extra'
 pkgname=python-distutils-extra
 version=2.39
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 pycompile_module="DistUtilsExtra"

From cc8c6f7c74e5660152cb87b99e7d7b88b5c3d077 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 165/872] python-dkimpy: rebuild for Python 3.8.

---
 srcpkgs/python-dkimpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dkimpy/template b/srcpkgs/python-dkimpy/template
index 4ca5ad386b0..1da26c5de5d 100644
--- a/srcpkgs/python-dkimpy/template
+++ b/srcpkgs/python-dkimpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dkimpy'
 pkgname=python-dkimpy
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="dkimpy-${version}"
 build_style=python-module

From 8560c730ee4396275d04f5b5649fc0b2a1a8819e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 166/872] python-dnspython: rebuild for Python 3.8.

---
 srcpkgs/python-dnspython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dnspython/template b/srcpkgs/python-dnspython/template
index 15d4d7a8a73..66d237e89ee 100644
--- a/srcpkgs/python-dnspython/template
+++ b/srcpkgs/python-dnspython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dnspython'
 pkgname=python-dnspython
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dnspython-${version}"
 build_style=python-module

From c723160d02d838faad8761fcdaa9cfaed2df756f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 167/872] python-docker: rebuild for Python 3.8.

---
 srcpkgs/python-docker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker/template b/srcpkgs/python-docker/template
index b3f8cb2076b..83265bbb606 100644
--- a/srcpkgs/python-docker/template
+++ b/srcpkgs/python-docker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker'
 pkgname=python-docker
 version=3.7.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-${version}"
 build_style=python-module

From 116d9592b10bcde7a5b2f78ed23e0c2e382394da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 168/872] python-docker-pycreds: rebuild for Python 3.8.

---
 srcpkgs/python-docker-pycreds/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker-pycreds/template b/srcpkgs/python-docker-pycreds/template
index c478ded9de6..2224be0d21d 100644
--- a/srcpkgs/python-docker-pycreds/template
+++ b/srcpkgs/python-docker-pycreds/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker-pycreds'
 pkgname=python-docker-pycreds
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-pycreds-${version}"
 build_style=python-module

From 339d2fc160bc67c015b61704b1ade0e15a729050 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 169/872] python-dockerpty: rebuild for Python 3.8.

---
 srcpkgs/python-dockerpty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dockerpty/template b/srcpkgs/python-dockerpty/template
index 78ba5bc3b09..4a0b3a7a33f 100644
--- a/srcpkgs/python-dockerpty/template
+++ b/srcpkgs/python-dockerpty/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dockerpty'
 pkgname=python-dockerpty
 version=0.4.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="dockerpty-${version}"
 build_style=python-module

From 9925e97e6e19313f6899b14640957a47c12c3c6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 170/872] python-docopt: rebuild for Python 3.8.

---
 srcpkgs/python-docopt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docopt/template b/srcpkgs/python-docopt/template
index 4b8661ed2e1..48e5f86c1e0 100644
--- a/srcpkgs/python-docopt/template
+++ b/srcpkgs/python-docopt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docopt'
 pkgname=python-docopt
 version=0.6.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="docopt-${version}"
 build_style=python-module

From b274270fc5a58198a59400d9c8eb825546cf64ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 171/872] python-docutils: rebuild for Python 3.8.

---
 srcpkgs/python-docutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docutils/template b/srcpkgs/python-docutils/template
index 62f080f416a..8fd21a7450b 100644
--- a/srcpkgs/python-docutils/template
+++ b/srcpkgs/python-docutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docutils'
 pkgname=python-docutils
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docutils-${version}"
 build_style=python-module

From 6db8d0a9fb5d7b1cd339f5102d86a29dda19f348 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 172/872] python-dogpile.cache: rebuild for Python 3.8.

---
 srcpkgs/python-dogpile.cache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index f6e106fb4e8..894c6f695bf 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dogpile.cache'
 pkgname=python-dogpile.cache
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dogpile.cache-${version}"
 build_style=python-module

From e603b2f5de239ac8c6e7b8322f560ed5249fe887 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 173/872] python-dominate: rebuild for Python 3.8.

---
 srcpkgs/python-dominate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dominate/template b/srcpkgs/python-dominate/template
index 14ec659bac8..6d6f2caa323 100644
--- a/srcpkgs/python-dominate/template
+++ b/srcpkgs/python-dominate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dominate'
 pkgname=python-dominate
 version=2.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dominate-${version}"
 build_style=python-module

From 2bd7c3e739559614758b25140591fa8bb623a73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 174/872] python-dulwich: rebuild for Python 3.8.

---
 srcpkgs/python-dulwich/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dulwich/template b/srcpkgs/python-dulwich/template
index 0bddda65069..7b8ac45011e 100644
--- a/srcpkgs/python-dulwich/template
+++ b/srcpkgs/python-dulwich/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dulwich'
 pkgname=python-dulwich
 version=0.19.13
-revision=1
+revision=2
 wrksrc="dulwich-${version}"
 build_style=python-module
 pycompile_module="dulwich"

From 9d0b79dad0746da7669be20a38791a7eff4a42dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 175/872] python3-easygui: rebuild for Python 3.8.

---
 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 c1ec4767ae9..a9a2f66d865 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="easygui-${version}"
 build_style=python3-module

From eaa3ee113511523004b2d78a2119becc627b2dcf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 176/872] python-ecdsa: rebuild for Python 3.8.

---
 srcpkgs/python-ecdsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ecdsa/template b/srcpkgs/python-ecdsa/template
index 5e0b217fa73..e6e7d58cd10 100644
--- a/srcpkgs/python-ecdsa/template
+++ b/srcpkgs/python-ecdsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ecdsa'
 pkgname=python-ecdsa
 version=0.13.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 5d7cb5b032b5814415f5b21646b09bceda211fd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 177/872] python-editor: rebuild for Python 3.8.

---
 srcpkgs/python-editor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-editor/template b/srcpkgs/python-editor/template
index 4b86afa6924..3594e407205 100644
--- a/srcpkgs/python-editor/template
+++ b/srcpkgs/python-editor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-editor'
 pkgname=python-editor
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="editor"

From 19c3e09b30ed3cf9c6ffee8cee652d54c672a599 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 178/872] python-efl: rebuild for Python 3.8.

---
 srcpkgs/python-efl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-efl/template b/srcpkgs/python-efl/template
index a49e7d35847..2096f6916da 100644
--- a/srcpkgs/python-efl/template
+++ b/srcpkgs/python-efl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-efl'
 pkgname=python-efl
 version=1.22.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="efl"
 hostmakedepends="pkg-config python-devel python3-devel"

From 82198e93fcca38bb8b5f4f754bcbd6fd7baf59da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 179/872] python3-eliot: rebuild for Python 3.8.

---
 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 15b05dd7331..8453789b688 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="eliot-${version}"
 build_style=python3-module

From bcfe6b0d9db4104d00cb6a16d6012f2258515d59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 180/872] python-empy: rebuild for Python 3.8.

---
 srcpkgs/python-empy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-empy/template b/srcpkgs/python-empy/template
index 97476250cf2..4668a9cc814 100644
--- a/srcpkgs/python-empy/template
+++ b/srcpkgs/python-empy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-empy'
 pkgname=python-empy
 version=3.3.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="empy-${version}"
 build_style=python-module

From 6a91fa7210bd83ced5963d69be69166cd7ad72e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 181/872] python-enchant: rebuild for Python 3.8.

---
 srcpkgs/python-enchant/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enchant/template b/srcpkgs/python-enchant/template
index a443877d821..e499957b47e 100644
--- a/srcpkgs/python-enchant/template
+++ b/srcpkgs/python-enchant/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enchant'
 pkgname=python-enchant
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python-module

From 6ec52886dc67e49d1440bf8d0d1fe8fab07df30a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 182/872] python-entrypoints: rebuild for Python 3.8.

---
 srcpkgs/python-entrypoints/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-entrypoints/template b/srcpkgs/python-entrypoints/template
index ebefb2d04dc..6070650f35d 100644
--- a/srcpkgs/python-entrypoints/template
+++ b/srcpkgs/python-entrypoints/template
@@ -1,7 +1,7 @@
 # Template file for 'python-entrypoints'
 pkgname=python-entrypoints
 version=0.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="entrypoints-${version}"
 build_style=python-module

From 612a78254c1f46db87994e41646495e245a3facf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 183/872] python-envdir: rebuild for Python 3.8.

---
 srcpkgs/python-envdir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-envdir/template b/srcpkgs/python-envdir/template
index 622fcee6b34..b8cccad60ac 100644
--- a/srcpkgs/python-envdir/template
+++ b/srcpkgs/python-envdir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-envdir'
 pkgname=python-envdir
 version=1.0.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 50f8488d9ea7d659590f7d09f42dd5b94e19152c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 184/872] python-enzyme: rebuild for Python 3.8.

---
 srcpkgs/python-enzyme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enzyme/template b/srcpkgs/python-enzyme/template
index 637c858195b..f28f40b0319 100644
--- a/srcpkgs/python-enzyme/template
+++ b/srcpkgs/python-enzyme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enzyme'
 pkgname=python-enzyme
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="enzyme-${version}"
 build_style=python-module

From 0927e611429f29f17290f1e10cf2c0b872d1feb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 185/872] python3-esprima: rebuild for Python 3.8.

---
 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 c3a564123de..aec8930a6bf 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=1
+revision=2
 wrksrc="esprima-${version}"
 build_style=python3-module
 pycompile_module="esprima"

From d10708d4fcebbbc7dccf424ca1a596b43ae8df59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 186/872] python-evdev: rebuild for Python 3.8.

---
 srcpkgs/python-evdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-evdev/template b/srcpkgs/python-evdev/template
index 3c1a5253513..cff10211628 100644
--- a/srcpkgs/python-evdev/template
+++ b/srcpkgs/python-evdev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-evdev'
 pkgname=python-evdev
 version=1.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="evdev"
 hostmakedepends="python-setuptools python3-setuptools"

From d4f74f5bad705da704a6773a834e3939d7700c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 187/872] python-ewmh: rebuild for Python 3.8.

---
 srcpkgs/python-ewmh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ewmh/template b/srcpkgs/python-ewmh/template
index be6d04316b0..a96490fb56d 100644
--- a/srcpkgs/python-ewmh/template
+++ b/srcpkgs/python-ewmh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ewmh'
 pkgname=python-ewmh
 version=0.1.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From afbcc47e23517b6d56ec485dc40f389c1af31701 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 188/872] python-exifread: rebuild for Python 3.8.

---
 srcpkgs/python-exifread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-exifread/template b/srcpkgs/python-exifread/template
index 853f885fff8..834aa7730ee 100644
--- a/srcpkgs/python-exifread/template
+++ b/srcpkgs/python-exifread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-exifread'
 pkgname=python-exifread
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="exif-py-${version}"
 build_style="python-module"

From d05fad06fa4306ef7f685f49a366fcc27e64a40c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 189/872] python-fasteners: rebuild for Python 3.8.

---
 srcpkgs/python-fasteners/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fasteners/template b/srcpkgs/python-fasteners/template
index 34ca4e0e9db..24d2ec0611f 100644
--- a/srcpkgs/python-fasteners/template
+++ b/srcpkgs/python-fasteners/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fasteners'
 pkgname=python-fasteners
 version=0.15
-revision=1
+revision=2
 archs=noarch
 wrksrc="fasteners-${version}"
 build_style=python-module

From 8c663b7a9f12675a94dea8c33eddeededd3c56bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 190/872] python-feedgenerator: rebuild for Python 3.8.

---
 srcpkgs/python-feedgenerator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedgenerator/template b/srcpkgs/python-feedgenerator/template
index 3e5abc4f433..bcffb6728aa 100644
--- a/srcpkgs/python-feedgenerator/template
+++ b/srcpkgs/python-feedgenerator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedgenerator'
 pkgname=python-feedgenerator
 version=1.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="feedgenerator-${version}"
 build_style=python-module

From ab9e5bccaa31f32d93549c21e47bc12c4e5ac181 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 191/872] python-feedparser: rebuild for Python 3.8.

---
 srcpkgs/python-feedparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedparser/template b/srcpkgs/python-feedparser/template
index c5c5e8783eb..94f0a58ec88 100644
--- a/srcpkgs/python-feedparser/template
+++ b/srcpkgs/python-feedparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedparser'
 pkgname=python-feedparser
 version=5.2.1
-revision=5
+revision=6
 archs=noarch
 wrksrc="feedparser-${version}"
 build_style=python-module

From 157719696415e499518e188417324c7d97359d36 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 192/872] python3-fido2: rebuild for Python 3.8.

---
 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 fafb4d61d56..fb737d68d20 100644
--- a/srcpkgs/python3-fido2/template
+++ b/srcpkgs/python3-fido2/template
@@ -2,7 +2,7 @@
 pkgname=python3-fido2
 _pkgname=fido2
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From cbab3fd166f79dc7d2659a802e1953c697f94a95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 193/872] python3-filelock: rebuild for Python 3.8.

---
 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 8e0bc8f1070..9105ff8689d 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.0.12
-revision=1
+revision=2
 wrksrc="filelock-${version}"
 build_style=python3-module
 pycompile_module="filelock.py"

From df9deb02719807bdcb49f7c41040cd8748efd6fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 194/872] python-filetype: rebuild for Python 3.8.

---
 srcpkgs/python-filetype/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-filetype/template b/srcpkgs/python-filetype/template
index 37896cff9d8..10b974794b5 100644
--- a/srcpkgs/python-filetype/template
+++ b/srcpkgs/python-filetype/template
@@ -1,7 +1,7 @@
 # Template file for 'python-filetype'
 pkgname=python-filetype
 version=1.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="filetype-${version}"
 build_style=python-module

From b71ed5528581f9bba57653ff2acb45edf6dcbd81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 195/872] python3-fishnet: rebuild for Python 3.8.

---
 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 9dde60cbb6c..6280ae8e966 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=1
+revision=2
 archs=noarch
 wrksrc="fishnet-${version}"
 build_style=python3-module

From 25bc415f7d96b99e98c97ab0abad6a531786f9e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 196/872] python-flaky: rebuild for Python 3.8.

---
 srcpkgs/python-flaky/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-flaky/template b/srcpkgs/python-flaky/template
index d5211c9cb60..e8e681421f7 100644
--- a/srcpkgs/python-flaky/template
+++ b/srcpkgs/python-flaky/template
@@ -1,7 +1,7 @@
 # Template file for 'python-flaky'
 pkgname=python-flaky
 version=3.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 6dfa18d602ed8d6414a040466c4e0eef4db1d0d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 197/872] python3-flexmock: rebuild for Python 3.8.

---
 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 0663ed5122d..8a7c9a2894d 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.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="flexmock-${version}"
 build_style=python3-module

From 8c90b86b18b06e68260df59166a7228f7af5e5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 198/872] python3-fonttools: rebuild for Python 3.8.

---
 srcpkgs/python3-fonttools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-fonttools/template b/srcpkgs/python3-fonttools/template
index 15cf36585fb..ccd4b66c5d8 100644
--- a/srcpkgs/python3-fonttools/template
+++ b/srcpkgs/python3-fonttools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-fonttools'
 pkgname=python3-fonttools
 version=4.0.2
-revision=1
+revision=2
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 pycompile_module="fonttools"

From 423903ec28541ea1cd89f97400529121dca5e065 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 199/872] python3-frozendict: rebuild for Python 3.8.

---
 srcpkgs/python3-frozendict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-frozendict/template b/srcpkgs/python3-frozendict/template
index d3b4dc91602..739000a887c 100644
--- a/srcpkgs/python3-frozendict/template
+++ b/srcpkgs/python3-frozendict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-frozendict'
 pkgname=python3-frozendict
 version=1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="frozendict-${version}"
 build_style=python3-module

From 0929953d079922e685a9b46372630d69c2c6776d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 200/872] python-fuse: rebuild for Python 3.8.

---
 srcpkgs/python-fuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fuse/template b/srcpkgs/python-fuse/template
index 6449cc36a02..2e99e9866d3 100644
--- a/srcpkgs/python-fuse/template
+++ b/srcpkgs/python-fuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fuse'
 pkgname=python-fuse
 version=0.3.1
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="fuseparts fuse.py"
 hostmakedepends="pkg-config python-setuptools python3-setuptools"

From 505bca67544c8cca26d3f7675eb746bb98abf44e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 201/872] python-future: rebuild for Python 3.8.

---
 srcpkgs/python-future/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-future/template b/srcpkgs/python-future/template
index 1844be2efbc..6cd53908823 100644
--- a/srcpkgs/python-future/template
+++ b/srcpkgs/python-future/template
@@ -1,7 +1,7 @@
 # Template file for 'python-future'
 pkgname=python-future
 version=0.17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="future-${version}"
 build_style=python-module

From 4b595c01c8dcf28a72cf0a96960609ab9788b6ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 202/872] python3-geojson: rebuild for Python 3.8.

---
 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 6bcd0c3092e..90e7d5a0e60 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=1
+revision=2
 archs=noarch
 wrksrc="geojson-${version}"
 build_style=python3-module

From 5e44d64f54a2983f4d5fefba49ef65a6803bd024 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 203/872] python-gevent: rebuild for Python 3.8.

---
 srcpkgs/python-gevent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gevent/template b/srcpkgs/python-gevent/template
index 2bbabee00fc..35c76146d56 100644
--- a/srcpkgs/python-gevent/template
+++ b/srcpkgs/python-gevent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gevent'
 pkgname=python-gevent
 version=1.4.0
-revision=1
+revision=2
 wrksrc="gevent-${version}"
 build_style=python-module
 pycompile_module="gevent"

From 5fed10c6460512a1f1391f079ed47645f9df532e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 204/872] python3-gitchangelog: rebuild for Python 3.8.

---
 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 ed381e07d78..cc1945f2623 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=1
+revision=2
 archs=noarch
 wrksrc="gitchangelog-${version}"
 build_style=python3-module

From b52557ed164619919a05cdf8fae5e77e5b4f53db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 205/872] python-gitdb: rebuild for Python 3.8.

---
 srcpkgs/python-gitdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitdb/template b/srcpkgs/python-gitdb/template
index d9e624b9f53..253ddaa07bd 100644
--- a/srcpkgs/python-gitdb/template
+++ b/srcpkgs/python-gitdb/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitdb'
 pkgname=python-gitdb
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="gitdb2-${version}"
 build_style=python-module

From 53365dcec4eb25138ea4bb248d57c1b2aa7aa311 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 206/872] python-github3: rebuild for Python 3.8.

---
 srcpkgs/python-github3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-github3/template b/srcpkgs/python-github3/template
index 2cb71368f3d..425fe1b7362 100644
--- a/srcpkgs/python-github3/template
+++ b/srcpkgs/python-github3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-github3'
 pkgname=python-github3
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="github3.py-${version}"
 build_style=python-module

From 2b4c90de9a0cbcbb5902a9407f229864bd81a7f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 207/872] python-gitlab: rebuild for Python 3.8.

---
 srcpkgs/python-gitlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitlab/template b/srcpkgs/python-gitlab/template
index 7db583b54c4..0f71b4c7153 100644
--- a/srcpkgs/python-gitlab/template
+++ b/srcpkgs/python-gitlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitlab'
 pkgname=python-gitlab
 version=1.12.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gitlab"

From 51613301779bb891e87daba6b634dca18654d29f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 208/872] python-gmpy2: rebuild for Python 3.8.

---
 srcpkgs/python-gmpy2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gmpy2/template b/srcpkgs/python-gmpy2/template
index c41a9f4595b..74e9b583288 100644
--- a/srcpkgs/python-gmpy2/template
+++ b/srcpkgs/python-gmpy2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gmpy2'
 pkgname=python-gmpy2
 version=2.0.8
-revision=5
+revision=6
 wrksrc="gmpy2-${version}"
 build_style=python-module
 hostmakedepends="unzip python-setuptools python3-setuptools

From a6f4b9ed74b787b741e6297520186bd60de2b46e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 209/872] python-gntp: rebuild for Python 3.8.

---
 srcpkgs/python-gntp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gntp/template b/srcpkgs/python-gntp/template
index 14bd36518f8..7b3bb5a7bb7 100644
--- a/srcpkgs/python-gntp/template
+++ b/srcpkgs/python-gntp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gntp'
 pkgname=python-gntp
 version=1.0.3
-revision=4
+revision=5
 archs=noarch
 wrksrc="gntp-${version}"
 build_style=python-module

From 0730dc20e341ef5247184f85a47f2d1200750698 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 210/872] python-gnupg: rebuild for Python 3.8.

---
 srcpkgs/python-gnupg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gnupg/template b/srcpkgs/python-gnupg/template
index ae6f49c7e27..24c0943d1e4 100644
--- a/srcpkgs/python-gnupg/template
+++ b/srcpkgs/python-gnupg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gnupg'
 pkgname=python-gnupg
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gnupg.py"

From 2c78f38b921da1d4ac2ddf5c200a378cadd75590 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 211/872] python3-gobject: rebuild for Python 3.8.

---
 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 242d33ed3ac..8713ddf5334 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.32.2
-revision=1
+revision=2
 wrksrc="pygobject-${version}"
 build_style=meson
 build_helper="gir"

From 15ed888e45d37128f9852cfc492a14182186f1a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 212/872] python-gogs-client: rebuild for Python 3.8.

---
 srcpkgs/python-gogs-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gogs-client/template b/srcpkgs/python-gogs-client/template
index e8189bc8805..027135d430c 100644
--- a/srcpkgs/python-gogs-client/template
+++ b/srcpkgs/python-gogs-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gogs-client'
 pkgname=python-gogs-client
 version=1.0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="gogs_client-${version}"
 build_style=python-module

From 1ce661eb8f15d8e6d56a3f1e197897c332fa224e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 213/872] python-google-api-python-client: rebuild for Python
 3.8.

---
 srcpkgs/python-google-api-python-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-api-python-client/template b/srcpkgs/python-google-api-python-client/template
index 273cd0722b8..69c2d4e96eb 100644
--- a/srcpkgs/python-google-api-python-client/template
+++ b/srcpkgs/python-google-api-python-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-api-python-client'
 pkgname=python-google-api-python-client
 version=1.7.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From abc55893b0e34778f73646713ec111220a9cafbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 214/872] python-google-auth: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth/template b/srcpkgs/python-google-auth/template
index 708fe08325a..1de6800e3d2 100644
--- a/srcpkgs/python-google-auth/template
+++ b/srcpkgs/python-google-auth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth'
 pkgname=python-google-auth
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 345385c7c36d4b9e58aad80d36b1cd93575ecd95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 215/872] python-google-auth-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth-httplib2/template b/srcpkgs/python-google-auth-httplib2/template
index 9a7fd093ce5..9e43bc92292 100644
--- a/srcpkgs/python-google-auth-httplib2/template
+++ b/srcpkgs/python-google-auth-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth-httplib2'
 pkgname=python-google-auth-httplib2
 version=0.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 659bb740f4ecc98b01dc400608f6b524416a0b86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 216/872] python-gpg: rebuild for Python 3.8.

---
 srcpkgs/python-gpg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gpg/template b/srcpkgs/python-gpg/template
index 4ef85846b42..a17a0324af8 100644
--- a/srcpkgs/python-gpg/template
+++ b/srcpkgs/python-gpg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gpg'
 pkgname=python-gpg
 version=1.10.0
-revision=3
+revision=4
 wrksrc="gpg-${version}"
 build_style=python-module
 hostmakedepends="swig gpgme-devel python-devel python3-devel"

From 873dc5b9b60d819c83e9d76fd366d7e22b1e3bc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 217/872] python-grako: rebuild for Python 3.8.

---
 srcpkgs/python-grako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-grako/template b/srcpkgs/python-grako/template
index cc02973b31e..2b401732735 100644
--- a/srcpkgs/python-grako/template
+++ b/srcpkgs/python-grako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-grako'
 pkgname=python-grako
 version=3.99.9
-revision=3
+revision=4
 wrksrc="neogeny-${pkgname/python-/}-275d3c4fe4ac"
 build_style=python-module
 pycompile_module="grako"

From d47059d2656db0b58c65856428cabac0432d40b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 218/872] python-graphviz: rebuild for Python 3.8.

---
 srcpkgs/python-graphviz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-graphviz/template b/srcpkgs/python-graphviz/template
index 521f2e81213..e3d487a2db7 100644
--- a/srcpkgs/python-graphviz/template
+++ b/srcpkgs/python-graphviz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-graphviz'
 pkgname=python-graphviz
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 604137947acf2b7cd302f3f32e778c96a0f521f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 219/872] python-greenlet: rebuild for Python 3.8.

---
 srcpkgs/python-greenlet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-greenlet/template b/srcpkgs/python-greenlet/template
index d1e63ac7adb..b540e9a286b 100644
--- a/srcpkgs/python-greenlet/template
+++ b/srcpkgs/python-greenlet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-greenlet'
 pkgname=python-greenlet
 version=0.4.15
-revision=2
+revision=3
 wrksrc="greenlet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From c75b3ed338515fef098deb3e5b0d7a6afb7e4027 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 220/872] python-guessit: rebuild for Python 3.8.

---
 srcpkgs/python-guessit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-guessit/template b/srcpkgs/python-guessit/template
index 5029048a041..a962f14522f 100644
--- a/srcpkgs/python-guessit/template
+++ b/srcpkgs/python-guessit/template
@@ -1,7 +1,7 @@
 # Template file for 'python-guessit'
 pkgname=python-guessit
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="guessit-${version}"
 build_style=python-module

From be7acc08bc4f5ffb222fcebc23a391553273ece1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 221/872] python-h11: rebuild for Python 3.8.

---
 srcpkgs/python-h11/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-h11/template b/srcpkgs/python-h11/template
index 88040dfadec..b2e007533a7 100644
--- a/srcpkgs/python-h11/template
+++ b/srcpkgs/python-h11/template
@@ -1,7 +1,7 @@
 # Template file for 'python-h11'
 pkgname=python-h11
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=h11-${version}
 build_style=python-module

From bdf55bd416f8bc2ed44be6c4c54d162c18a8ea97 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 222/872] python-habanero: rebuild for Python 3.8.

---
 srcpkgs/python-habanero/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-habanero/template b/srcpkgs/python-habanero/template
index 86d66befc3d..a914f21ecb7 100644
--- a/srcpkgs/python-habanero/template
+++ b/srcpkgs/python-habanero/template
@@ -1,7 +1,7 @@
 # Template file for 'python-habanero'
 pkgname=python-habanero
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="habanero-${version}"
 build_style=python-module

From 9c07301e6c8b8cbc8282f2c49eee7ea5572650fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 223/872] python3-hawkauthlib: rebuild for Python 3.8.

---
 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 fd7f1405790..1456fa7d814 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=2
+revision=3
 archs=noarch
 wrksrc="hawkauthlib-${version}"
 build_style=python3-module

From 66941ef99dc3f45dea432a38889d9aedcbc58e8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 224/872] python-hiredis: rebuild for Python 3.8.

---
 srcpkgs/python-hiredis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hiredis/template b/srcpkgs/python-hiredis/template
index 23694ae92d7..82a97d5eaf3 100644
--- a/srcpkgs/python-hiredis/template
+++ b/srcpkgs/python-hiredis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hiredis'
 pkgname=python-hiredis
 version=0.2.0
-revision=4
+revision=5
 wrksrc="hiredis-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 335237d6c8ffbf9d850fddc0047cb4ea28057efd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 225/872] python3-hkdf: rebuild for Python 3.8.

---
 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 fabc91ee974..0faaf05b5fe 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=1
+revision=2
 archs=noarch
 wrksrc="hkdf-${version}"
 build_style=python3-module

From fa28e1e2a5b4f298ee9762f0f595a5b1b16db0c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 226/872] python-hoedown: rebuild for Python 3.8.

---
 srcpkgs/python-hoedown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hoedown/template b/srcpkgs/python-hoedown/template
index a964fbbb709..4b82aba9afc 100644
--- a/srcpkgs/python-hoedown/template
+++ b/srcpkgs/python-hoedown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hoedown'
 pkgname=python-hoedown
 version=0.3.0
-revision=2
+revision=3
 wrksrc="hoedown-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 1b9ab7e23ce8f84563cdaac18cbe35d6b5b377eb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 227/872] python-hpack: rebuild for Python 3.8.

---
 srcpkgs/python-hpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hpack/template b/srcpkgs/python-hpack/template
index c69e91daa0e..ffbac313103 100644
--- a/srcpkgs/python-hpack/template
+++ b/srcpkgs/python-hpack/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hpack'
 pkgname=python-hpack
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hpack-${version}
 build_style=python-module

From b6095882129bc28d1a3eec0f996353011126ed10 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 228/872] python3-html2text: rebuild for Python 3.8.

---
 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 006f2a127ad..c74e236a053 100644
--- a/srcpkgs/python3-html2text/template
+++ b/srcpkgs/python3-html2text/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-html2text'
 pkgname=python3-html2text
 version=2019.9.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module

From 78741dc5f018f23c93acabc2cdd16c97d5e08012 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 229/872] python-html5-parser: rebuild for Python 3.8.

---
 srcpkgs/python-html5-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5-parser/template b/srcpkgs/python-html5-parser/template
index 130c5037e57..41bbd0ea157 100644
--- a/srcpkgs/python-html5-parser/template
+++ b/srcpkgs/python-html5-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5-parser'
 pkgname=python-html5-parser
 version=0.4.8
-revision=1
+revision=2
 wrksrc="html5-parser-${version}"
 build_style=python-module
 pycompile_module="html5_parser"

From f69efbb44a9aa15f6b7468ff70a20786ec1a04d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 230/872] python-html5lib: rebuild for Python 3.8.

---
 srcpkgs/python-html5lib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5lib/template b/srcpkgs/python-html5lib/template
index 81e683f7bcf..2565de64fd2 100644
--- a/srcpkgs/python-html5lib/template
+++ b/srcpkgs/python-html5lib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5lib'
 pkgname=python-html5lib
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="html5lib-${version}"
 build_style=python-module

From 6bd979521876c876eea2022ebe023cdbb30777c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 231/872] python-httmock: rebuild for Python 3.8.

---
 srcpkgs/python-httmock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httmock/template b/srcpkgs/python-httmock/template
index 61a60126936..e798b4fc1b3 100644
--- a/srcpkgs/python-httmock/template
+++ b/srcpkgs/python-httmock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httmock'
 pkgname=python-httmock
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="httmock-${version}"
 build_style=python-module

From 7f5b2e5c5738ca5824c255406195ff59f30f2c80 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 232/872] python-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httplib2/template b/srcpkgs/python-httplib2/template
index edcb6abf0c1..fe76a729328 100644
--- a/srcpkgs/python-httplib2/template
+++ b/srcpkgs/python-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httplib2'
 pkgname=python-httplib2
 version=0.13.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="httplib2-${version}"
 build_style=python-module

From 9bd4d3d3c99054f61ceb650933dcd9c5740d5ff0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 233/872] python3-humanize: rebuild for Python 3.8.

---
 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 c82c20fb0f2..d1011fb92e9 100644
--- a/srcpkgs/python3-humanize/template
+++ b/srcpkgs/python3-humanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-humanize'
 pkgname=python3-humanize
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="humanize-${version}"
 build_style=python3-module

From ead6f9504cd4015bc13944d58d676ef457b0fb34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 234/872] python-hyper-h2: rebuild for Python 3.8.

---
 srcpkgs/python-hyper-h2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyper-h2/template b/srcpkgs/python-hyper-h2/template
index 5dcf7ed1c4d..9e5eee3b69b 100644
--- a/srcpkgs/python-hyper-h2/template
+++ b/srcpkgs/python-hyper-h2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyper-h2'
 pkgname=python-hyper-h2
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyper-h2-${version}"
 build_style=python-module

From 8ac54f95c067c3f715c23a58d7f2b6d0683988cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 235/872] python-hyperframe: rebuild for Python 3.8.

---
 srcpkgs/python-hyperframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyperframe/template b/srcpkgs/python-hyperframe/template
index e4cea346f7e..6b544c2061c 100644
--- a/srcpkgs/python-hyperframe/template
+++ b/srcpkgs/python-hyperframe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperframe'
 pkgname=python-hyperframe
 version=5.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hyperframe-${version}
 build_style=python-module

From cb929edb0d026e58d2d6c7e6f9baeee9fedf523e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 236/872] python-hyperlink: rebuild for Python 3.8.

---
 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 1cc7aa0670a..945bf72ee59 100644
--- a/srcpkgs/python-hyperlink/template
+++ b/srcpkgs/python-hyperlink/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperlink'
 pkgname=python-hyperlink
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyperlink-${version}"
 build_style=python-module

From da7a9015ccf93b07d390988b03b1403702cfa14a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 237/872] python-hypothesis: rebuild for Python 3.8.

---
 srcpkgs/python-hypothesis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hypothesis/template b/srcpkgs/python-hypothesis/template
index f3eb931e410..de55593fc02 100644
--- a/srcpkgs/python-hypothesis/template
+++ b/srcpkgs/python-hypothesis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hypothesis'
 pkgname=python-hypothesis
 version=4.38.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="hypothesis-hypothesis-python-${version}"
 build_wrksrc=hypothesis-python

From f091030376534d6a6f7c625b82a8405350e7cdcd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 238/872] python-icalendar: rebuild for Python 3.8.

---
 srcpkgs/python-icalendar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-icalendar/template b/srcpkgs/python-icalendar/template
index b2129648ea6..be45f2d608d 100644
--- a/srcpkgs/python-icalendar/template
+++ b/srcpkgs/python-icalendar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-icalendar'
 pkgname=python-icalendar
 version=4.0.3
-revision=1
+revision=2
 wrksrc="icalendar-${version}"
 archs=noarch
 build_style=python-module

From 474626af886f96ef30849e5aca015775f7edfb8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 239/872] icdiff: rebuild for Python 3.8.

---
 srcpkgs/icdiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template
index 31cfc3e2354..396448b86f4 100644
--- a/srcpkgs/icdiff/template
+++ b/srcpkgs/icdiff/template
@@ -1,7 +1,7 @@
 # Template file for 'icdiff'
 pkgname=icdiff
 version=1.9.5
-revision=1
+revision=2
 wrksrc="${pkgname}-release-${version}"
 archs=noarch
 build_style=python-module

From 21e5ba4fadd590c9e0dd7afde206429c99c46c56 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 240/872] python-idna: rebuild for Python 3.8.

---
 srcpkgs/python-idna/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-idna/template b/srcpkgs/python-idna/template
index 4c6baefd41b..446a04da7d7 100644
--- a/srcpkgs/python-idna/template
+++ b/srcpkgs/python-idna/template
@@ -1,7 +1,7 @@
 # Template file for 'python-idna'
 pkgname=python-idna
 version=2.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-${version}"
 build_style=python-module

From a012eff0de75e8caab0be24964731b749fe6ad8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 241/872] python3-idna-ssl: rebuild for Python 3.8.

---
 srcpkgs/python3-idna-ssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-idna-ssl/template b/srcpkgs/python3-idna-ssl/template
index df953f4d0d9..0608fb7278c 100644
--- a/srcpkgs/python3-idna-ssl/template
+++ b/srcpkgs/python3-idna-ssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-idna-ssl'
 pkgname=python3-idna-ssl
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-ssl-${version}"
 build_style=python3-module

From ac112b7dfc3aadb93225736a4504f7965af29838 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 242/872] python3-ifaddr: rebuild for Python 3.8.

---
 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 37bc2bbaf73..683d76662a3 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ifaddr-${version}"
 build_style=python3-module

From 32d0218ef7a7a721759e4c421d70255f49b3cfd0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 243/872] python-imagesize: rebuild for Python 3.8.

---
 srcpkgs/python-imagesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-imagesize/template b/srcpkgs/python-imagesize/template
index ee231eb9f24..f64c86812b5 100644
--- a/srcpkgs/python-imagesize/template
+++ b/srcpkgs/python-imagesize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-imagesize'
 pkgname=python-imagesize
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="imagesize-${version}"
 build_style=python-module

From f0bf351c50949a7348409d8c132926c401dabf43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 244/872] python3-importlib_metadata: rebuild for Python 3.8.

---
 srcpkgs/python3-importlib_metadata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-importlib_metadata/template b/srcpkgs/python3-importlib_metadata/template
index 9acbe968e10..f88e9d9b780 100644
--- a/srcpkgs/python3-importlib_metadata/template
+++ b/srcpkgs/python3-importlib_metadata/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-importlib_metadata'
 pkgname=python3-importlib_metadata
 version=0.23
-revision=1
+revision=2
 archs=noarch
 wrksrc="importlib_metadata-${version}"
 build_style=python3-module

From 73cc1c05e8e0ccf9063a33dd203d70df2ab135ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 245/872] python-incremental: rebuild for Python 3.8.

---
 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 a1c07042365..70477e26866 100644
--- a/srcpkgs/python-incremental/template
+++ b/srcpkgs/python-incremental/template
@@ -1,7 +1,7 @@
 # Template file for 'python-incremental'
 pkgname=python-incremental
 version=17.5.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="incremental-${version}"
 build_style=python-module

From 82a10b837fff5c5ce2f37ede93dad161025a109c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 246/872] python-inotify: rebuild for Python 3.8.

---
 srcpkgs/python-inotify/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-inotify/template b/srcpkgs/python-inotify/template
index f8e26bcc415..64e48fd9330 100644
--- a/srcpkgs/python-inotify/template
+++ b/srcpkgs/python-inotify/template
@@ -1,7 +1,7 @@
 # Template file for 'python-inotify'
 pkgname=python-inotify
 version=0.9.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="pyinotify-${version}"
 build_style=python-module

From 70f558982c4846e9de5243694f048c7014c7089a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 247/872] python-iptools: rebuild for Python 3.8.

---
 srcpkgs/python-iptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iptools/template b/srcpkgs/python-iptools/template
index 599a85ccdba..3c53013fb9d 100644
--- a/srcpkgs/python-iptools/template
+++ b/srcpkgs/python-iptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iptools'
 pkgname=python-iptools
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9962727fd608ce59af5a55c73c8b4c3d0c17fe71 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 248/872] python3-ipython: rebuild for Python 3.8.

---
 srcpkgs/python3-ipython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template
index 63242f382db..2c08bad1e41 100644
--- a/srcpkgs/python3-ipython/template
+++ b/srcpkgs/python3-ipython/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-ipython'
 pkgname=python3-ipython
 version=7.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipython-${version}"
 build_style=python3-module

From ecafa2b5530001ac56b03e639dff4ae00027d1ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 249/872] python-ipython_genutils: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_genutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_genutils/template b/srcpkgs/python-ipython_genutils/template
index 9af9604ca00..d46a3b0b716 100644
--- a/srcpkgs/python-ipython_genutils/template
+++ b/srcpkgs/python-ipython_genutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_genutils'
 pkgname=python-ipython_genutils
 version=0.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="ipython_genutils-${version}"
 build_style=python-module

From 1349d0a55b00bc5b30629934ad23ae1ed8839d98 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 250/872] python-ipython_ipykernel: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_ipykernel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_ipykernel/template b/srcpkgs/python-ipython_ipykernel/template
index 5ddc333798a..ca17b58c006 100644
--- a/srcpkgs/python-ipython_ipykernel/template
+++ b/srcpkgs/python-ipython_ipykernel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_ipykernel'
 pkgname=python-ipython_ipykernel
 version=4.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipykernel-${version}"
 build_style=python-module

From 1b146320a422b57ba1db41491ccff040d9ee719d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 251/872] python3-irc: rebuild for Python 3.8.

---
 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 eea3a629128..714c11dc943 100644
--- a/srcpkgs/python3-irc/template
+++ b/srcpkgs/python3-irc/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-irc'
 pkgname=python3-irc
 version=17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="irc-${version}"
 build_style=python3-module

From e04c4f250fda964ab555eb6b636f701d995009e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 252/872] python-isbnlib: rebuild for Python 3.8.

---
 srcpkgs/python-isbnlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isbnlib/template b/srcpkgs/python-isbnlib/template
index 3e2f66c6b66..1cc46a060d6 100644
--- a/srcpkgs/python-isbnlib/template
+++ b/srcpkgs/python-isbnlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isbnlib'
 pkgname=python-isbnlib
 version=3.9.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="isbnlib-${version}"
 build_style=python-module

From 2debe6131c52d94acd065961f9ea9ae22176a34c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 253/872] python-iso-8601: rebuild for Python 3.8.

---
 srcpkgs/python-iso-8601/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iso-8601/template b/srcpkgs/python-iso-8601/template
index a483e55b0bd..a841866d439 100644
--- a/srcpkgs/python-iso-8601/template
+++ b/srcpkgs/python-iso-8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iso-8601'
 pkgname=python-iso-8601
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="iso-8601-${version}"
 build_style=python-module

From 8b4be7b5324ac1347d55cc4f4e9eaa552465beec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 254/872] python-isodate: rebuild for Python 3.8.

---
 srcpkgs/python-isodate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isodate/template b/srcpkgs/python-isodate/template
index b2a7eb46591..74e4e813e64 100644
--- a/srcpkgs/python-isodate/template
+++ b/srcpkgs/python-isodate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isodate'
 pkgname=python-isodate
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="isodate-${version}"
 build_style=python-module

From a9c9e144908d37411616dd357e9fdc7575aaa8c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 255/872] python-isort: rebuild for Python 3.8.

---
 srcpkgs/python-isort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isort/template b/srcpkgs/python-isort/template
index df7fcfbf2d2..cd8e43b69ea 100644
--- a/srcpkgs/python-isort/template
+++ b/srcpkgs/python-isort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isort'
 pkgname=python-isort
 version=4.3.21
-revision=1
+revision=2
 archs=noarch
 wrksrc="isort-${version}"
 build_style=python-module

From a81f38d5db390cc4ae2c6be89747bebd3f1f15dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 256/872] python-itsdangerous: rebuild for Python 3.8.

---
 srcpkgs/python-itsdangerous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-itsdangerous/template b/srcpkgs/python-itsdangerous/template
index d1d9234df88..6e6fe5dcb2b 100644
--- a/srcpkgs/python-itsdangerous/template
+++ b/srcpkgs/python-itsdangerous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-itsdangerous'
 pkgname=python-itsdangerous
 version=0.24
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 2d842da30a2a65a2405487fdd5929ca2a0555251 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 257/872] python-iwlib: rebuild for Python 3.8.

---
 srcpkgs/python-iwlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iwlib/template b/srcpkgs/python-iwlib/template
index 2c58d4c8d29..2f4149b4e92 100644
--- a/srcpkgs/python-iwlib/template
+++ b/srcpkgs/python-iwlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iwlib'
 pkgname=python-iwlib
 version=1.6.2
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="iwlib"

From c09cc84b06cf4332a02b0a826494a74c81409175 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 258/872] python-jedi: rebuild for Python 3.8.

---
 srcpkgs/python-jedi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jedi/template b/srcpkgs/python-jedi/template
index 136e6adbea4..a994f0e2861 100644
--- a/srcpkgs/python-jedi/template
+++ b/srcpkgs/python-jedi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jedi'
 pkgname=python-jedi
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 _parsover=0.5.0
 wrksrc="jedi-${version}"

From 235b9031c126ebf53355a5ef0c337423c0df1d95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 259/872] python3-jeepney: rebuild for Python 3.8.

---
 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 2ae308a6fc6..9c5c007aa17 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.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="jeepney-${version}"
 build_style=python3-module

From 4868c0871bc763937dd6b8573e91ee86064e0595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 260/872] python3-jellyfish: rebuild for Python 3.8.

---
 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 dec74539e3f..5d0a614c397 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.7.2
-revision=1
+revision=2
 wrksrc="jellyfish-${version}"
 build_style=python3-module
 pycompile_module="jellyfish"

From a9c225f19782a27d8e5e28a508ea0acc39991390 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 261/872] python-jmespath: rebuild for Python 3.8.

---
 srcpkgs/python-jmespath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jmespath/template b/srcpkgs/python-jmespath/template
index 47508a3a0c2..220f1a33c07 100644
--- a/srcpkgs/python-jmespath/template
+++ b/srcpkgs/python-jmespath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jmespath'
 pkgname=python-jmespath
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jmespath.py-${version}"
 build_style=python-module

From 30e8e2e1619bdf45652db8c6ecdd0e0a4fc90d8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 262/872] python3-josepy: rebuild for Python 3.8.

---
 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 6d6e4547d38..903bd7028ed 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="josepy-${version}"
 build_style=python3-module

From c06d36cf857257f3cf63a7e677498487d37168d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 263/872] python-jsonpointer: rebuild for Python 3.8.

---
 srcpkgs/python-jsonpointer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonpointer/template b/srcpkgs/python-jsonpointer/template
index ed865fbfcba..fd103d123aa 100644
--- a/srcpkgs/python-jsonpointer/template
+++ b/srcpkgs/python-jsonpointer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonpointer'
 pkgname=python-jsonpointer
 version=2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonpointer-${version}"
 build_style=python-module

From be483d0bbf53a22e23a3c2db3d77dc61bff17915 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 264/872] python-jsonrpclib: rebuild for Python 3.8.

---
 srcpkgs/python-jsonrpclib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonrpclib/template b/srcpkgs/python-jsonrpclib/template
index 7253607fe57..a245168a824 100644
--- a/srcpkgs/python-jsonrpclib/template
+++ b/srcpkgs/python-jsonrpclib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonrpclib'
 pkgname=python-jsonrpclib
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonrpclib-pelix-${version}"
 build_style=python-module

From 15ad75adf989474229acc1fdac0c5d5887528bd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 265/872] python-jsonschema: rebuild for Python 3.8.

---
 srcpkgs/python-jsonschema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonschema/template b/srcpkgs/python-jsonschema/template
index 63c30ce6863..326b5609d36 100644
--- a/srcpkgs/python-jsonschema/template
+++ b/srcpkgs/python-jsonschema/template
@@ -2,7 +2,7 @@
 pkgname=python-jsonschema
 reverts="3.0.2_1"
 version=2.6.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="jsonschema-${version}"
 build_style=python-module

From 8bf3797435c040a1682d5e3e4c6c41f650d82b34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 266/872] python-jupyter_client: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_client/template b/srcpkgs/python-jupyter_client/template
index ab5cd0c5b3c..6365dd9e175 100644
--- a/srcpkgs/python-jupyter_client/template
+++ b/srcpkgs/python-jupyter_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_client'
 pkgname=python-jupyter_client
 version=5.2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_client-${version}"
 build_style=python-module

From e732ed651c399cb8d7e96a618444e815bf86ce4b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 267/872] python3-jupyter_console: rebuild for Python 3.8.

---
 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 25b2eda4c2f..3837e5b3bbf 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_console-${version}"
 build_style=python3-module

From b264bc5200c6942b1507777e0bc169838cb6a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 268/872] python-jupyter_core: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_core/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_core/template b/srcpkgs/python-jupyter_core/template
index fcce4e0fe0b..f1629208e86 100644
--- a/srcpkgs/python-jupyter_core/template
+++ b/srcpkgs/python-jupyter_core/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_core'
 pkgname=python-jupyter_core
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_core-${version}"
 build_style=python-module

From 54845c515258535f8793ff37241d0daad10fcddc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 269/872] python-jupyter_ipywidgets: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_ipywidgets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_ipywidgets/template b/srcpkgs/python-jupyter_ipywidgets/template
index 3d511a25152..44570cf390a 100644
--- a/srcpkgs/python-jupyter_ipywidgets/template
+++ b/srcpkgs/python-jupyter_ipywidgets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_ipywidgets'
 pkgname=python-jupyter_ipywidgets
 version=7.4.2
-revision=1
+revision=2
 archs=noarch
 _widgetsnbextver=3.4.0
 wrksrc="ipywidgets-${version}"

From da9dc8f246174d7b5fed1a61f1b4bb127c2bc9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 270/872] python-jupyter_nbconvert: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbconvert/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbconvert/template b/srcpkgs/python-jupyter_nbconvert/template
index 57ac5cce23f..e6cdad7d21c 100644
--- a/srcpkgs/python-jupyter_nbconvert/template
+++ b/srcpkgs/python-jupyter_nbconvert/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbconvert'
 pkgname=python-jupyter_nbconvert
 version=5.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="nbconvert-${version}"
 build_style=python-module

From 8e126f65404eaa5a5b69bca1aa41b4be58abe4b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 271/872] python-jupyter_nbformat: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbformat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbformat/template b/srcpkgs/python-jupyter_nbformat/template
index 11098fd3f90..e2addc8866f 100644
--- a/srcpkgs/python-jupyter_nbformat/template
+++ b/srcpkgs/python-jupyter_nbformat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbformat'
 pkgname=python-jupyter_nbformat
 version=4.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="nbformat-${version}"
 build_style=python-module

From 3d7a11f09a2f159b9e42c935154654a47117f3a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 272/872] python-jupyter_notebook: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_notebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_notebook/template b/srcpkgs/python-jupyter_notebook/template
index c3f478c1fb4..4f6de0f642d 100644
--- a/srcpkgs/python-jupyter_notebook/template
+++ b/srcpkgs/python-jupyter_notebook/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_notebook'
 pkgname=python-jupyter_notebook
 version=5.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="notebook-${version}"
 build_style=python-module

From eab8a5bd67b168048f40a3d2fe199e073715a1b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 273/872] python-jupyter_qtconsole: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_qtconsole/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_qtconsole/template b/srcpkgs/python-jupyter_qtconsole/template
index f8f85534bbd..ea7f89a62af 100644
--- a/srcpkgs/python-jupyter_qtconsole/template
+++ b/srcpkgs/python-jupyter_qtconsole/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_qtconsole'
 pkgname=python-jupyter_qtconsole
 version=4.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="qtconsole-${version}"
 build_style=python-module

From 96c7c1f6f484f9a33a17b0213142b8a97a7c69e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 274/872] python-jupyter_widgetsnbextension: rebuild for Python
 3.8.

---
 srcpkgs/python-jupyter_widgetsnbextension/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_widgetsnbextension/template b/srcpkgs/python-jupyter_widgetsnbextension/template
index dacd88ccb4f..05e9c0d00a3 100644
--- a/srcpkgs/python-jupyter_widgetsnbextension/template
+++ b/srcpkgs/python-jupyter_widgetsnbextension/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_widgetsnbextension'
 pkgname=python-jupyter_widgetsnbextension
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="widgetsnbextension-${version}"
 build_style=python-module

From 6175c117f039e76b8fff45d549f50360a92742b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 275/872] python-kaptan: rebuild for Python 3.8.

---
 srcpkgs/python-kaptan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kaptan/template b/srcpkgs/python-kaptan/template
index 649eeec8568..6668b240008 100644
--- a/srcpkgs/python-kaptan/template
+++ b/srcpkgs/python-kaptan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kaptan'
 pkgname=python-kaptan
 version=0.5.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="kaptan-${version}"
 build_style=python-module

From 6668dcf37c32ef8390c8f45e6cd206d8478b963b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 276/872] python-keepalive: rebuild for Python 3.8.

---
 srcpkgs/python-keepalive/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keepalive/template b/srcpkgs/python-keepalive/template
index deb95a07236..50e1d7e6e78 100644
--- a/srcpkgs/python-keepalive/template
+++ b/srcpkgs/python-keepalive/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keepalive'
 pkgname=python-keepalive
 version=0.5
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9e9d4a781427bc1296f59529a4d83b4a1271c5e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 277/872] python-keyring: rebuild for Python 3.8.

---
 srcpkgs/python-keyring/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyring/template b/srcpkgs/python-keyring/template
index df1c21ee1be..2a87160b04d 100644
--- a/srcpkgs/python-keyring/template
+++ b/srcpkgs/python-keyring/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyring'
 pkgname=python-keyring
 version=18.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyring-${version}"
 build_style=python-module

From 8fea0f10f3e8aebfe92a9d090368b1cda777a405 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 278/872] python3-keyrings-alt: rebuild for Python 3.8.

---
 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 d5820535e54..ed09cfac4a7 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=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyrings.alt-${version}"
 build_style=python3-module

From 271539dc3ed1e21733c374ff971770403194a1d1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 279/872] python-keyutils: rebuild for Python 3.8.

---
 srcpkgs/python-keyutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyutils/template b/srcpkgs/python-keyutils/template
index d56ada0e30e..a72819e963a 100644
--- a/srcpkgs/python-keyutils/template
+++ b/srcpkgs/python-keyutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyutils'
 pkgname=python-keyutils
 version=0.6
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="keyutils"
 hostmakedepends="python-setuptools python3-setuptools"

From 0556a11defcdebd2c4319e286451ce3f45f87ebd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 280/872] python-kitchen: rebuild for Python 3.8.

---
 srcpkgs/python-kitchen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kitchen/template b/srcpkgs/python-kitchen/template
index 2bbd68c13c9..68a46986de9 100644
--- a/srcpkgs/python-kitchen/template
+++ b/srcpkgs/python-kitchen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kitchen'
 pkgname=python-kitchen
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="kitchen-${version}"
 build_style=python-module

From fe5070b00515733fcafbeebc62a10ba2029b40db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 281/872] python-kiwisolver: rebuild for Python 3.8.

---
 srcpkgs/python-kiwisolver/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kiwisolver/template b/srcpkgs/python-kiwisolver/template
index 072bd5af038..67f0805aa51 100644
--- a/srcpkgs/python-kiwisolver/template
+++ b/srcpkgs/python-kiwisolver/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kiwisolver'
 pkgname=python-kiwisolver
 version=1.0.1
-revision=2
+revision=3
 wrksrc="kiwisolver-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From d1c550f6959162ec91e7bb39c54ecdd1d5b7c0ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 282/872] python-lazy-object-proxy: rebuild for Python 3.8.

---
 srcpkgs/python-lazy-object-proxy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lazy-object-proxy/template b/srcpkgs/python-lazy-object-proxy/template
index 07efb7b4777..ab2c6dce05c 100644
--- a/srcpkgs/python-lazy-object-proxy/template
+++ b/srcpkgs/python-lazy-object-proxy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lazy-object-proxy'
 pkgname=python-lazy-object-proxy
 version=1.3.1
-revision=3
+revision=4
 wrksrc="lazy-object-proxy-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e5c9a0cf8e6e0714fba4433b9deb1aaf40d43ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 283/872] python-ldap: rebuild for Python 3.8.

---
 srcpkgs/python-ldap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap/template b/srcpkgs/python-ldap/template
index 7770baa8774..e3efc2fc6b3 100644
--- a/srcpkgs/python-ldap/template
+++ b/srcpkgs/python-ldap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap'
 pkgname=python-ldap
 version=3.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="ldap ldapurl.py ldif.py slapdtest"
 hostmakedepends="python-setuptools python3-setuptools"

From dca16bc247cccf1bc7020afca5594d857514100a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 284/872] python-ldap3: rebuild for Python 3.8.

---
 srcpkgs/python-ldap3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap3/template b/srcpkgs/python-ldap3/template
index 676251a85ff..e8e4cade72b 100644
--- a/srcpkgs/python-ldap3/template
+++ b/srcpkgs/python-ldap3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap3'
 pkgname=python-ldap3
 version=2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ldap3-${version}"
 build_style=python-module

From 8f3e1b0bf64fb527d029fec15229e079f326c373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 285/872] python3-libevdev: rebuild for Python 3.8.

---
 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 0a79893726c..f0295cdee9b 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.8
-revision=1
+revision=2
 _githash=1827bebcf789adee8492cbfcc7cf8d56059a42a4
 wrksrc="python-libevdev-${version}-${_githash}"
 build_style=python3-module

From a5b674c4366c36182e29f21b8071faff59006106 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 286/872] libsmbios: rebuild for Python 3.8.

---
 srcpkgs/libsmbios/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsmbios/template b/srcpkgs/libsmbios/template
index 31d8ffda65f..161cb79deb9 100644
--- a/srcpkgs/libsmbios/template
+++ b/srcpkgs/libsmbios/template
@@ -1,7 +1,7 @@
 # Template file for 'libsmbios'
 pkgname=libsmbios
 version=2.4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--sbindir=/usr/bin --disable-static"
 hostmakedepends="automake doxygen gettext-devel help2man libtool pkg-config"

From 7762c8392d1a03ae7a320bdec0b5402b7147d0b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 287/872] python-libtmux: rebuild for Python 3.8.

---
 srcpkgs/python-libtmux/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-libtmux/template b/srcpkgs/python-libtmux/template
index 36fa7ca7ffd..20f43af5f7d 100644
--- a/srcpkgs/python-libtmux/template
+++ b/srcpkgs/python-libtmux/template
@@ -1,7 +1,7 @@
 # Template file for 'python-libtmux'
 pkgname=python-libtmux
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="libtmux-${version}"
 build_style=python-module

From 16a2a1b8ba0ad9f9032d52092294e8a39041bba2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 288/872] python-llfuse: rebuild for Python 3.8.

---
 srcpkgs/python-llfuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-llfuse/template b/srcpkgs/python-llfuse/template
index 203c5e2fd84..b453c67e91d 100644
--- a/srcpkgs/python-llfuse/template
+++ b/srcpkgs/python-llfuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-llfuse'
 pkgname=python-llfuse
 version=1.3.6
-revision=1
+revision=2
 wrksrc="llfuse-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pkg-config"

From ae7f34ffc994fc4606c9209683fae6625f3e781e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 289/872] python-lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lockfile/template b/srcpkgs/python-lockfile/template
index 4c4612ed144..778cecba7e9 100644
--- a/srcpkgs/python-lockfile/template
+++ b/srcpkgs/python-lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lockfile'
 pkgname=python-lockfile
 version=0.12.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="lockfile-${version}"
 build_style=python-module

From 5fd2f78e26b399ed936b12f51886dae3a8d35cb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 290/872] python-logfury: rebuild for Python 3.8.

---
 srcpkgs/python-logfury/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-logfury/template b/srcpkgs/python-logfury/template
index 4b1c435e34a..1b52d2d7fdf 100644
--- a/srcpkgs/python-logfury/template
+++ b/srcpkgs/python-logfury/template
@@ -1,7 +1,7 @@
 # Template file for 'python-logfury'
 pkgname=python-logfury
 version=0.1.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="logfury-${version}"
 build_style=python-module

From 747dc28bedc27e7b5c8738113573012f545333a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 291/872] python-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lxml/template b/srcpkgs/python-lxml/template
index c3aeabfbf1b..1a6a3ac9113 100644
--- a/srcpkgs/python-lxml/template
+++ b/srcpkgs/python-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lxml'
 pkgname=python-lxml
 version=4.4.1
-revision=1
+revision=2
 wrksrc="lxml-lxml-${version}"
 build_style=python-module
 pycompile_module="lxml"

From ebc274c0463316f63fe99e5df0c704e3d324c885 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 292/872] python-lz4: rebuild for Python 3.8.

---
 srcpkgs/python-lz4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lz4/template b/srcpkgs/python-lz4/template
index dab8e8ed542..76a2e800e38 100644
--- a/srcpkgs/python-lz4/template
+++ b/srcpkgs/python-lz4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lz4'
 pkgname=python-lz4
 version=2.1.6
-revision=2
+revision=3
 wrksrc="lz4-${version}"
 build_style=python-module
 pycompile_module="lz4"

From 8eb3f4d6193b25ae716fa2fdfae1f929deb65a91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 293/872] python3-macaroons: rebuild for Python 3.8.

---
 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 d44100c20f2..420f5aff043 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=1
+revision=2
 archs=noarch
 wrksrc="pymacaroons-${version}"
 build_style=python3-module

From 437e300b76670db404728daad9f6224630daaa3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 294/872] python3-macholib: rebuild for Python 3.8.

---
 srcpkgs/python3-macholib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-macholib/template b/srcpkgs/python3-macholib/template
index a2738f57eb0..525b5f7106b 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.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="macholib-${version}"
 build_style=python3-module

From b08f229d26f5b2c915caabe213234afc1e4002e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 295/872] python-magic: rebuild for Python 3.8.

---
 srcpkgs/python-magic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-magic/template b/srcpkgs/python-magic/template
index 98e3c0802ab..5a59efa4808 100644
--- a/srcpkgs/python-magic/template
+++ b/srcpkgs/python-magic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-magic'
 pkgname=python-magic
 version=0.4.15
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="magic.py"

From c597fee1945d8f994f591622074acf3670a81484 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 296/872] python-marisa-trie: rebuild for Python 3.8.

---
 srcpkgs/python-marisa-trie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-marisa-trie/template b/srcpkgs/python-marisa-trie/template
index bb09c933335..5e46b686ace 100644
--- a/srcpkgs/python-marisa-trie/template
+++ b/srcpkgs/python-marisa-trie/template
@@ -1,7 +1,7 @@
 # Template file for 'python-marisa-trie'
 pkgname=python-marisa-trie
 version=0.7.5
-revision=2
+revision=3
 wrksrc="marisa-trie-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 5366314fc7ba3b340ccf5b4658edff33f5ec148a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 297/872] python-markdown2: rebuild for Python 3.8.

---
 srcpkgs/python-markdown2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-markdown2/template b/srcpkgs/python-markdown2/template
index 2d352ba029d..e9068f64202 100644
--- a/srcpkgs/python-markdown2/template
+++ b/srcpkgs/python-markdown2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-markdown2'
 pkgname=python-markdown2
 version=2.3.8
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="markdown2"

From b56d284bcbb50ddece287bde845145e6481e4d39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 298/872] python3-matplotlib: rebuild for Python 3.8.

---
 srcpkgs/python3-matplotlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template
index 857ba17cacf..be02817a4d3 100644
--- a/srcpkgs/python3-matplotlib/template
+++ b/srcpkgs/python3-matplotlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-matplotlib'
 pkgname=python3-matplotlib
 version=3.1.1
-revision=1
+revision=2
 wrksrc="matplotlib-${version}"
 build_style=python3-module
 pycompile_module="matplotlib mpl_toolkits pylab.py"

From 8b3780e8f6f50712735239defc569952763e8894 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 299/872] python-mccabe: rebuild for Python 3.8.

---
 srcpkgs/python-mccabe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mccabe/template b/srcpkgs/python-mccabe/template
index b6a01929540..1e2ed6328b8 100644
--- a/srcpkgs/python-mccabe/template
+++ b/srcpkgs/python-mccabe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mccabe'
 pkgname=python-mccabe
 version=0.6.1
-revision=2
+revision=3
 archs=noarch
 replaces="mccabe>=0"
 wrksrc="mccabe-${version}"

From 954d38992e9a83e3214b79375b895ee1072db4e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 300/872] python-mechanize: rebuild for Python 3.8.

---
 srcpkgs/python-mechanize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mechanize/template b/srcpkgs/python-mechanize/template
index c5b2b5789a7..ca29bbd0d23 100644
--- a/srcpkgs/python-mechanize/template
+++ b/srcpkgs/python-mechanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mechanize'
 pkgname=python-mechanize
 version=0.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="mechanize-${version}"
 build_style=python-module

From e8762f4af80ad5b1cb6a41af3183141ec903485f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 301/872] python3-minidb: rebuild for Python 3.8.

---
 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 50490794600..140964b7a8a 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.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="minidb-${version}"
 build_style=python3-module

From 93febdb59f89cf4939f3684acd832f879fc774d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 302/872] python-miniupnpc: rebuild for Python 3.8.

---
 srcpkgs/python-miniupnpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-miniupnpc/template b/srcpkgs/python-miniupnpc/template
index 500c217c78e..f7892bab073 100644
--- a/srcpkgs/python-miniupnpc/template
+++ b/srcpkgs/python-miniupnpc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-miniupnpc'
 pkgname=python-miniupnpc
 version=2.0.2
-revision=2
+revision=3
 wrksrc="${pkgname#python-}-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ab280bf26207a66e5e3f418768bf3358cc2c76ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 303/872] python-mistune: rebuild for Python 3.8.

---
 srcpkgs/python-mistune/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mistune/template b/srcpkgs/python-mistune/template
index 0ee8dfde5b1..ef5c054ba75 100644
--- a/srcpkgs/python-mistune/template
+++ b/srcpkgs/python-mistune/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mistune'
 pkgname=python-mistune
 version=0.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="mistune-${version}"
 build_style=python-module

From 05abf67487f6ac161862195dfb2069fade248fbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 304/872] python3-more-itertools: rebuild for Python 3.8.

---
 srcpkgs/python3-more-itertools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-more-itertools/template b/srcpkgs/python3-more-itertools/template
index b089992f84e..a765da98495 100644
--- a/srcpkgs/python3-more-itertools/template
+++ b/srcpkgs/python3-more-itertools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-more-itertools'
 pkgname=python3-more-itertools
 version=7.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python3-module

From efcbd7f439e04ca5dc43be057047c93f1051b5cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 305/872] python-mpd2: rebuild for Python 3.8.

---
 srcpkgs/python-mpd2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template
index 682d9a85f5e..0389f8c2a28 100644
--- a/srcpkgs/python-mpd2/template
+++ b/srcpkgs/python-mpd2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpd2'
 pkgname=python-mpd2
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mpd"

From 507a89e7a29ba5dd81f66830577542bb3a098780 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 306/872] python3-mpi4py: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-mpi4py/template | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/python3-mpi4py/template b/srcpkgs/python3-mpi4py/template
index 94a83b688f2..8f9e76867cc 100644
--- a/srcpkgs/python3-mpi4py/template
+++ b/srcpkgs/python3-mpi4py/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpi4py'
 pkgname=python3-mpi4py
 version=3.0.2
-revision=1
+revision=2
 wrksrc="mpi4py-${version}"
 build_style=python3-module
 pycompile_module="mpi4py"
@@ -15,6 +15,12 @@ homepage="https://bitbucket.org/mpi4py/mpi4py"
 distfiles="$PYPI_SITE/m/mpi4py/mpi4py-${version}.tar.gz"
 checksum=f8d629d1e3e3b7b89cb99d0e3bc5505e76cc42089829807950d5c56606ed48e0
 
+post_extract() {
+	# recythonize
+	rm src/mpi4py/include/mpi4py/mpi4py.MPI.h \
+		src/mpi4py/include/mpi4py/mpi4py.MPI_api.h \
+		src/mpi4py.MPI.c
+}
 post_install() {
 	vlicense LICENSE.rst
 }

From d71d04b6dbfad4ce9460041fe001aab7c4cab301 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 307/872] python-mpmath: rebuild for Python 3.8.

---
 srcpkgs/python-mpmath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpmath/template b/srcpkgs/python-mpmath/template
index b0a38c01514..8fd4873dd62 100644
--- a/srcpkgs/python-mpmath/template
+++ b/srcpkgs/python-mpmath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpmath'
 pkgname=python-mpmath
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="mpmath-${version}"
 build_style=python-module

From f050643cc3d8a1927b2b43a4d6bc3a47fce265d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 308/872] python3-mpv: rebuild for Python 3.8.

---
 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 2780c02610b..1910a4d231d 100644
--- a/srcpkgs/python3-mpv/template
+++ b/srcpkgs/python3-mpv/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpv'
 pkgname=python3-mpv
 version=0.3.9
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-mpv-${version}"
 build_style=python3-module

From 076ab982ba68fae19b6a637c3190d501b6f11afb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 309/872] python-msgpack: rebuild for Python 3.8.

---
 srcpkgs/python-msgpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-msgpack/template b/srcpkgs/python-msgpack/template
index 395d854d638..59571d6a208 100644
--- a/srcpkgs/python-msgpack/template
+++ b/srcpkgs/python-msgpack/template
@@ -2,7 +2,7 @@
 pkgname=python-msgpack
 reverts="0.6.0_1"
 version=0.5.6
-revision=3
+revision=4
 wrksrc="msgpack-${version}"
 build_style=python-module
 pycompile_module="msgpack"

From c0b498d4aabae1c0cc1564a796b43c28045b08f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 310/872] python3-msoffcrypto-tool: rebuild for Python 3.8.

---
 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 5996d3bf355..d1b369fc773 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=4.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="msoffcrypto-tool-${version}"
 build_style=python3-module

From a02ae9dc7e657d6823c09d222a46aaaad0b52e6e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 311/872] python-mtranslate: rebuild for Python 3.8.

---
 srcpkgs/python-mtranslate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mtranslate/template b/srcpkgs/python-mtranslate/template
index d56fa18f0f0..992c7b76fe9 100644
--- a/srcpkgs/python-mtranslate/template
+++ b/srcpkgs/python-mtranslate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mtranslate'
 pkgname=python-mtranslate
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="mtranslate-${version}"
 build_style=python-module

From 1db5126bddf0129431159c083c0e8c7feeda0e24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 312/872] python3-multidict: rebuild for Python 3.8.

---
 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 82888db842f..62054db71f1 100644
--- a/srcpkgs/python3-multidict/template
+++ b/srcpkgs/python3-multidict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-multidict'
 pkgname=python3-multidict
 version=4.5.2
-revision=2
+revision=3
 wrksrc="multidict-${version}"
 build_style=python3-module
 pycompile_module="multidict"

From db397601599182d62444486443fe7887f1bf0869 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 313/872] python3-munkres: rebuild for Python 3.8.

---
 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 15767afe3fe..d0d0a013e80 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python3-module

From f6bec8102ac4a1433f716928258d680f0546e9f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 314/872] python-musicbrainzngs: rebuild for Python 3.8.

---
 srcpkgs/python-musicbrainzngs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-musicbrainzngs/template b/srcpkgs/python-musicbrainzngs/template
index 588c25f7cd8..3d738f0c3c0 100644
--- a/srcpkgs/python-musicbrainzngs/template
+++ b/srcpkgs/python-musicbrainzngs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-musicbrainzngs'
 pkgname=python-musicbrainzngs
 version=0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="musicbrainzngs-${version}"
 build_style="python-module"

From 59d602d19ea627b5ddd3ac33170326df511f1b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 315/872] python3-musicpd: rebuild for Python 3.8.

---
 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 3328b2f4bbf..8c6ba2fb451 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=1
+revision=2
 archs=noarch
 wrksrc="python-musicpd-${version}"
 build_style=python3-module

From e4271deae6b4b0258165475e34a0174f837576d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 316/872] mutagen: rebuild for Python 3.8.

---
 srcpkgs/mutagen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mutagen/template b/srcpkgs/mutagen/template
index cbf05ea8583..8b24cc82dc8 100644
--- a/srcpkgs/mutagen/template
+++ b/srcpkgs/mutagen/template
@@ -1,7 +1,7 @@
 # Template file for 'mutagen'
 pkgname=mutagen
 version=1.42.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mutagen"

From c726c7e86676ccc5612045570a6821438d6541cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 317/872] python-mygpoclient: rebuild for Python 3.8.

---
 srcpkgs/python-mygpoclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mygpoclient/template b/srcpkgs/python-mygpoclient/template
index 3f85c72cc0c..ffad63a70a1 100644
--- a/srcpkgs/python-mygpoclient/template
+++ b/srcpkgs/python-mygpoclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mygpoclient'
 pkgname=python-mygpoclient
 version=1.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="mygpoclient-${version}"
 build_style=python-module

From 1d17c7a2672083ac8c194b767f1be1d8778d6f42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 318/872] python3-mypy: rebuild for Python 3.8.

---
 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 37ecd732c06..564c0a4d47c 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.730
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy-${version}"
 build_style=python3-module

From d44ba12caf9958f6f6d708b0e5061d3ca01990e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 319/872] python3-mypy_extensions: rebuild for Python 3.8.

---
 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 2761924248e..25de48ea141 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy_extensions-${version}"
 build_style=python3-module

From 8c03f1eb83b224187a7b0fb11b5c780c96875438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 320/872] python-mysqlclient: rebuild for Python 3.8.

---
 srcpkgs/python-mysqlclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mysqlclient/template b/srcpkgs/python-mysqlclient/template
index 43fed28d4f0..079666a6dab 100644
--- a/srcpkgs/python-mysqlclient/template
+++ b/srcpkgs/python-mysqlclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mysqlclient'
 pkgname=python-mysqlclient
 version=1.3.14
-revision=2
+revision=3
 wrksrc="mysqlclient-${version}"
 build_style=python-module
 pycompile_module="MySQLdb _mysql_exceptions.py"

From 8b80cedc0b4331f2c1827c959c67be32d904a6b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 321/872] python3-nacl: rebuild for Python 3.8.

---
 srcpkgs/python3-nacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-nacl/template b/srcpkgs/python3-nacl/template
index 5dd6a71ad6a..b59ea0196ac 100644
--- a/srcpkgs/python3-nacl/template
+++ b/srcpkgs/python3-nacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-nacl'
 pkgname=python3-nacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python3-module
 pycompile_module="nacl"

From 4b93d8f922559d3f9f9693969307cdb0dedd22c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 322/872] python-namedlist: rebuild for Python 3.8.

---
 srcpkgs/python-namedlist/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-namedlist/template b/srcpkgs/python-namedlist/template
index 4c6e6f1f3d5..75626b9f6d5 100644
--- a/srcpkgs/python-namedlist/template
+++ b/srcpkgs/python-namedlist/template
@@ -1,7 +1,7 @@
 # Template file for 'python-namedlist'
 pkgname=python-namedlist
 version=1.7
-revision=5
+revision=6
 archs=noarch
 wrksrc="namedlist-${version}"
 build_style=python-module

From 643225c4205051b03e6b58dd88dd0fe79a960880 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 323/872] python-natsort: rebuild for Python 3.8.

---
 srcpkgs/python-natsort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-natsort/template b/srcpkgs/python-natsort/template
index 754ac50c419..7101e297aad 100644
--- a/srcpkgs/python-natsort/template
+++ b/srcpkgs/python-natsort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-natsort'
 pkgname=python-natsort
 version=6.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="natsort-${version}"
 build_style=python-module

From 1b4401089b676f8d76d5cbdf86f7cff95a90063f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 324/872] python-nbxmpp: rebuild for Python 3.8.

---
 srcpkgs/python-nbxmpp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nbxmpp/template b/srcpkgs/python-nbxmpp/template
index 4952ee1e102..8c39a93bca7 100644
--- a/srcpkgs/python-nbxmpp/template
+++ b/srcpkgs/python-nbxmpp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nbxmpp'
 pkgname=python-nbxmpp
 version=0.6.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 1ee192bdc19afbca9bbbc456945aaed8e882dc3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 325/872] python-ndg_httpsclient: rebuild for Python 3.8.

---
 srcpkgs/python-ndg_httpsclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ndg_httpsclient/template b/srcpkgs/python-ndg_httpsclient/template
index 908d7137391..54b653f68a9 100644
--- a/srcpkgs/python-ndg_httpsclient/template
+++ b/srcpkgs/python-ndg_httpsclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ndg_httpsclient'
 pkgname=python-ndg_httpsclient
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ndg_httpsclient-${version}"
 build_style=python-module

From 37b5c7920c617c4f55d5abe58df690c621598a93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 326/872] python3-neovim: rebuild for Python 3.8.

---
 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 44068f17b66..2730cd1b92b 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.3.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="pynvim-${version}"
 build_style="python3-module"

From 8136ec791e98badf101712f4f44830a6721d4849 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 327/872] python-netaddr: rebuild for Python 3.8.

---
 srcpkgs/python-netaddr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netaddr/template b/srcpkgs/python-netaddr/template
index 851095a3c7c..20cc1c93134 100644
--- a/srcpkgs/python-netaddr/template
+++ b/srcpkgs/python-netaddr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netaddr'
 pkgname=python-netaddr
 version=0.7.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="netaddr-${version}"
 build_style=python-module

From ebe247f557b410a62febae438785f8f011964023 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 328/872] python-netifaces: rebuild for Python 3.8.

---
 srcpkgs/python-netifaces/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netifaces/template b/srcpkgs/python-netifaces/template
index b8d6e505879..760f657aaba 100644
--- a/srcpkgs/python-netifaces/template
+++ b/srcpkgs/python-netifaces/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netifaces'
 pkgname=python-netifaces
 version=0.10.9
-revision=1
+revision=2
 wrksrc="netifaces-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 07d0e05094764c4ef127de2a4d489537d8ab5708 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 329/872] python3-networkx: rebuild for Python 3.8.

---
 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 eae29038d94..84acd3e929c 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.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="networkx-${version}"
 build_style=python3-module

From 8a3aeb59a75fbf1b7f0394b94c325ef8827b6b5d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 330/872] python-nose: rebuild for Python 3.8.

---
 srcpkgs/python-nose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose/template b/srcpkgs/python-nose/template
index c9fbe9d28d3..f2cd7fe5c3f 100644
--- a/srcpkgs/python-nose/template
+++ b/srcpkgs/python-nose/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose'
 pkgname=python-nose
 version=1.3.7
-revision=3
+revision=4
 archs=noarch
 wrksrc="nose-${version}"
 build_style=python-module

From f86abdbaaaa9e7e8236c4d39cd7e46a733425805 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 331/872] python-nose2: rebuild for Python 3.8.

---
 srcpkgs/python-nose2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose2/template b/srcpkgs/python-nose2/template
index a9ddf5969a1..058abbd4253 100644
--- a/srcpkgs/python-nose2/template
+++ b/srcpkgs/python-nose2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose2'
 pkgname=python-nose2
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 18b92c10ef3291636c1e7e28d721c5e994bf6302 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 332/872] python-npyscreen: rebuild for Python 3.8.

---
 srcpkgs/python-npyscreen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-npyscreen/template b/srcpkgs/python-npyscreen/template
index 0457fa1aaed..2223850f22e 100644
--- a/srcpkgs/python-npyscreen/template
+++ b/srcpkgs/python-npyscreen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-npyscreen'
 pkgname=python-npyscreen
 version=4.10.5.1
-revision=1
+revision=2
 wrksrc="npyscreen-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 9ea98fac2c37960db9a7b76cea2be115e8a2bed7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 333/872] python-ntplib: rebuild for Python 3.8.

---
 srcpkgs/python-ntplib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ntplib/template b/srcpkgs/python-ntplib/template
index 81bac24971e..0582fb326c1 100644
--- a/srcpkgs/python-ntplib/template
+++ b/srcpkgs/python-ntplib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ntplib'
 pkgname=python-ntplib
 version=0.3.3
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 wrksrc="ntplib-${version}"

From 42e7c3606ad17794721afef48ff01de438abbfde Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 334/872] python-numexpr: rebuild for Python 3.8.

---
 srcpkgs/python-numexpr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numexpr/template b/srcpkgs/python-numexpr/template
index 1db40092411..baf91175a33 100644
--- a/srcpkgs/python-numexpr/template
+++ b/srcpkgs/python-numexpr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numexpr'
 pkgname=python-numexpr
 version=2.7.0
-revision=1
+revision=2
 wrksrc="numexpr-${version}"
 build_style=python-module
 pycompile_module="numexpr"

From 30d9e4a8b4a096dfdf5ebfa58ffcadefb1dc1208 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 335/872] python3-numpy: rebuild for Python 3.8.

---
 srcpkgs/python3-numpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-numpy/template b/srcpkgs/python3-numpy/template
index c4c1936cc0d..f5e8ce2cc32 100644
--- a/srcpkgs/python3-numpy/template
+++ b/srcpkgs/python3-numpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-numpy'
 pkgname=python3-numpy
 version=1.17.2
-revision=1
+revision=2
 wrksrc="numpy-${version}"
 build_style=python3-module
 pycompile_module="numpy"

From 0172497dfdbc4c61b890a5cb33fdf7a4c4f8d99a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 336/872] python-numpy-stl: rebuild for Python 3.8.

---
 srcpkgs/python-numpy-stl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numpy-stl/template b/srcpkgs/python-numpy-stl/template
index 3eed838e4f6..cce1a8ead1f 100644
--- a/srcpkgs/python-numpy-stl/template
+++ b/srcpkgs/python-numpy-stl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numpy-stl'
 pkgname=python-numpy-stl
 version=2.10.1
-revision=1
+revision=2
 wrksrc="numpy-stl-v${version}"
 build_style=python-module
 pycompile_module="stl"

From f24b29a48d74aeaddb7b697a5daffdddbd861096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 337/872] python-oauth2client: rebuild for Python 3.8.

---
 srcpkgs/python-oauth2client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauth2client/template b/srcpkgs/python-oauth2client/template
index fd135e4e98f..2398adba276 100644
--- a/srcpkgs/python-oauth2client/template
+++ b/srcpkgs/python-oauth2client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauth2client'
 pkgname=python-oauth2client
 version=4.1.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 4c0ff2a063a36adf86c97b9d4c835ca20b5edfc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 338/872] python-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauthlib/template b/srcpkgs/python-oauthlib/template
index 5bbaa7df29b..036f1b31c92 100644
--- a/srcpkgs/python-oauthlib/template
+++ b/srcpkgs/python-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauthlib'
 pkgname=python-oauthlib
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 661bc27cfe08965221daa2747362d72e4fc27178 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 339/872] python-olefile: rebuild for Python 3.8.

---
 srcpkgs/python-olefile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-olefile/template b/srcpkgs/python-olefile/template
index 4346cfcf667..803d7b67cd8 100644
--- a/srcpkgs/python-olefile/template
+++ b/srcpkgs/python-olefile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-olefile'
 pkgname=python-olefile
 version=0.46
-revision=1
+revision=2
 archs=noarch
 wrksrc="olefile-${version}"
 build_style=python-module

From 81ad48cc99baa98fff2bb93d2c9ddbfe5bd36422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 340/872] python3-oletools: rebuild for Python 3.8.

---
 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 af9a91ff273..a4fda46427b 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.54.2b
-revision=1
+revision=2
 archs=noarch
 wrksrc="oletools-${version}"
 build_style=python3-module

From 0ae1454dacdb40d36d6c46872241d8b7f943ac15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 341/872] openrazer-meta: rebuild for Python 3.8.

---
 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 d4bd24878b2..112cb9e900b 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=1
+revision=2
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 827b1a86d790e29df3f5448f95b7d7583439ebc7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 342/872] python-openssl: rebuild for Python 3.8.

---
 srcpkgs/python-openssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-openssl/template b/srcpkgs/python-openssl/template
index 94bccaa166f..8aabda074fa 100644
--- a/srcpkgs/python-openssl/template
+++ b/srcpkgs/python-openssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-openssl'
 pkgname=python-openssl
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyOpenSSL-${version}"
 build_style=python-module

From 0b35d1d0b8e9ec0f17cb71edb12538b78cf15fa9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 343/872] python3-orocos-kdl: rebuild for Python 3.8.

---
 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 df3e27d5e7b..85b573b2fa4 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=1
+revision=2
 wrksrc=orocos_kinematics_dynamics-${version}
 build_wrksrc=python_orocos_kdl
 build_style=cmake

From 1f599cbc677804bd62252474063a3f44bab1963f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 344/872] python3-owm: rebuild for Python 3.8.

---
 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 d51e01831e6..acdb960ab45 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=1
+revision=2
 wrksrc="pyowm-${version}"
 build_style=python3-module
 pycompile_module="pyowm"

From 04d5ca1141107a7e08a15eccec26eae0cef6ddfc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 345/872] python-packaging: rebuild for Python 3.8.

---
 srcpkgs/python-packaging/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-packaging/template b/srcpkgs/python-packaging/template
index 505631bb29c..06042d12b90 100644
--- a/srcpkgs/python-packaging/template
+++ b/srcpkgs/python-packaging/template
@@ -1,7 +1,7 @@
 # Template file for 'python-packaging'
 pkgname=python-packaging
 version=19.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="packaging-${version}"
 build_style=python-module

From 3d4f635d1909bcc10be550a6ba92c93bab657d24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 346/872] python-pam: rebuild for Python 3.8.

---
 srcpkgs/python-pam/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pam/template b/srcpkgs/python-pam/template
index e696a05ae7f..28c22cfd6ea 100644
--- a/srcpkgs/python-pam/template
+++ b/srcpkgs/python-pam/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pam'
 pkgname=python-pam
 version=1.8.4
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="pam.py"

From 7906adb846a053b93372b360401c778862703de5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 347/872] python3-pandas: rebuild for Python 3.8.

---
 srcpkgs/python3-pandas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pandas/template b/srcpkgs/python3-pandas/template
index ad282b4d5d4..10f9d5a77d9 100644
--- a/srcpkgs/python3-pandas/template
+++ b/srcpkgs/python3-pandas/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pandas'
 pkgname=python3-pandas
 version=0.25.1
-revision=1
+revision=2
 wrksrc="pandas-${version}"
 build_style=python3-module
 pycompile_module="pandas"

From 5f63764964faf4b0d244098f5f64ba1225e14c5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 348/872] python-pandocfilters: rebuild for Python 3.8.

---
 srcpkgs/python-pandocfilters/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pandocfilters/template b/srcpkgs/python-pandocfilters/template
index a7a3d442052..8650d20256f 100644
--- a/srcpkgs/python-pandocfilters/template
+++ b/srcpkgs/python-pandocfilters/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pandocfilters'
 pkgname=python-pandocfilters
 version=1.4.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="pandocfilters-${version}"
 build_style=python-module

From cedefda1104de9c58b20c6b7e1d8a0f4d5385b24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 349/872] python-paramiko: rebuild for Python 3.8.

---
 srcpkgs/python-paramiko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-paramiko/template b/srcpkgs/python-paramiko/template
index c512ceb951f..d6f75508a03 100644
--- a/srcpkgs/python-paramiko/template
+++ b/srcpkgs/python-paramiko/template
@@ -1,7 +1,7 @@
 # Template file for 'python-paramiko'
 pkgname=python-paramiko
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 6c5cdbb0603a5742137ad2399e1f282d7135ecbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 350/872] python-parse: rebuild for Python 3.8.

---
 srcpkgs/python-parse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parse/template b/srcpkgs/python-parse/template
index 298d0b65e78..ded581b4420 100644
--- a/srcpkgs/python-parse/template
+++ b/srcpkgs/python-parse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parse'
 pkgname=python-parse
 version=1.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="parse-${version}"
 build_style=python-module

From 06c32d13c6ecc8f5c59fd3d28c856cddb7e55b69 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 351/872] python3-parsedatetime: rebuild for Python 3.8.

---
 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 d3ac21d7d34..34e9ba0f416 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="parsedatetime-${version}"
 build_style=python3-module

From 149092afd6b238ec9977aa2ba8d8f244d5357e67 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 352/872] python-parsing: rebuild for Python 3.8.

---
 srcpkgs/python-parsing/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parsing/template b/srcpkgs/python-parsing/template
index 0cc744eaf79..bd6cf2c2238 100644
--- a/srcpkgs/python-parsing/template
+++ b/srcpkgs/python-parsing/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parsing'
 pkgname=python-parsing
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyparsing-pyparsing_${version}"
 build_style=python-module

From c302574bea31ba81d3f2e4d6c1b8b8212592985d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 353/872] python-parso: rebuild for Python 3.8.

---
 srcpkgs/python-parso/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parso/template b/srcpkgs/python-parso/template
index 20e5fe306c0..1959b42622a 100644
--- a/srcpkgs/python-parso/template
+++ b/srcpkgs/python-parso/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parso'
 pkgname=python-parso
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="parso-${version}"
 build_style=python-module

From 6b9c95f942435b16d67021b0ce8f182c24bb943f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 354/872] python-passlib: rebuild for Python 3.8.

---
 srcpkgs/python-passlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-passlib/template b/srcpkgs/python-passlib/template
index 3af12ce7b1b..f46a3e92642 100644
--- a/srcpkgs/python-passlib/template
+++ b/srcpkgs/python-passlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-passlib'
 pkgname=python-passlib
 version=1.7.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="passlib-${version}"
 build_style=python-module

From 49600da0619f7152e3ea828c366d9a4680ebac40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 355/872] python-pathlib2: rebuild for Python 3.8.

---
 srcpkgs/python-pathlib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathlib2/template b/srcpkgs/python-pathlib2/template
index bb7bec778f5..fa600b78fbe 100644
--- a/srcpkgs/python-pathlib2/template
+++ b/srcpkgs/python-pathlib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathlib2'
 pkgname=python-pathlib2
 version=2.3.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pathlib2-${version}"
 build_style=python-module

From a0a108aec87134d5b6d2e03e731f48739e1226c0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 356/872] python-pathspec: rebuild for Python 3.8.

---
 srcpkgs/python-pathspec/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathspec/template b/srcpkgs/python-pathspec/template
index 7c5fe04097a..2fa8fa1a811 100644
--- a/srcpkgs/python-pathspec/template
+++ b/srcpkgs/python-pathspec/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathspec'
 pkgname=python-pathspec
 version=0.5.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathspec-${version}"
 build_style=python-module

From c66de315dc6f359ddb581056e8ef350e92acb135 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 357/872] python-pathtools: rebuild for Python 3.8.

---
 srcpkgs/python-pathtools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathtools/template b/srcpkgs/python-pathtools/template
index 218e6ed2f57..47dc6ef6a71 100644
--- a/srcpkgs/python-pathtools/template
+++ b/srcpkgs/python-pathtools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathtools'
 pkgname=python-pathtools
 version=0.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathtools-${version}"
 build_style=python-module

From d3d8ba877ce3e383a472c68a51b4eb6138da7d25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 358/872] python-pbkdf2: rebuild for Python 3.8.

---
 srcpkgs/python-pbkdf2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pbkdf2/template b/srcpkgs/python-pbkdf2/template
index edc50f824c2..956d0b4cad9 100644
--- a/srcpkgs/python-pbkdf2/template
+++ b/srcpkgs/python-pbkdf2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pbkdf2'
 pkgname=python-pbkdf2
 version=1.3
-revision=3
+revision=4
 archs=noarch
 wrksrc="pbkdf2-${version}"
 build_style=python-module

From 92b150f4aee95d71074c2bc7e253e089372033b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 359/872] python-pbr: rebuild for Python 3.8.

---
 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 7ab0b39539f..9c7216056fe 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.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pbr-${version}"
 build_style=python-module

From a5f7f198ba9557855d1662cf7b3d806286d735b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 360/872] python3-pcodedmp: rebuild for Python 3.8.

---
 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 efe8cc83ee7..eb52c809fae 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=1
+revision=2
 archs=noarch
 wrksrc="pcodedmp-${version}"
 build_style=python3-module

From c6f7d3cab5a62a3302eedc82e3ce1b5af007e967 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 361/872] python-pdfrw: rebuild for Python 3.8.

---
 srcpkgs/python-pdfrw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pdfrw/template b/srcpkgs/python-pdfrw/template
index ddb43b928fc..ef7db98e491 100644
--- a/srcpkgs/python-pdfrw/template
+++ b/srcpkgs/python-pdfrw/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pdfrw'
 pkgname=python-pdfrw
 version=0.4
-revision=2
+revision=3
 archs=noarch
 replaces="python-pdfrw-example<${version}_${revision}"
 wrksrc="${pkgname/python-//}-${version}"

From 8f02a9d6b13212de51e3921f641914d153244a1d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 362/872] python-peewee: rebuild for Python 3.8.

---
 srcpkgs/python-peewee/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-peewee/template b/srcpkgs/python-peewee/template
index 9b07ed413b9..de0068a330e 100644
--- a/srcpkgs/python-peewee/template
+++ b/srcpkgs/python-peewee/template
@@ -1,7 +1,7 @@
 # Template file for 'python-peewee'
 pkgname=python-peewee
 version=3.11.2
-revision=1
+revision=2
 wrksrc="peewee-${version}"
 build_style=python-module
 pycompile_module="playhouse peewee.py pwiz.py"

From 8c541b3666a838b55909e5f7ca46b7318c1e315e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 363/872] python3-pefile: rebuild for Python 3.8.

---
 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 305d64e0758..8791f06640b 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=1
+revision=2
 archs=noarch
 wrksrc="pefile-${version}"
 build_style=python3-module

From edc8e4f2bb803865815c3d0bd64a2e50bfdf5da8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 364/872] python3-pem: rebuild for Python 3.8.

---
 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 3517c80b66a..15417666597 100644
--- a/srcpkgs/python3-pem/template
+++ b/srcpkgs/python3-pem/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pem'
 pkgname=python3-pem
 version=19.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pem-${version}"
 build_style=python3-module

From 164760eb3d8d28400ea4be2967d7678696839866 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 365/872] python-pex: rebuild for Python 3.8.

---
 srcpkgs/python-pex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pex/template b/srcpkgs/python-pex/template
index 4beafcf7b4b..e36ccda8180 100644
--- a/srcpkgs/python-pex/template
+++ b/srcpkgs/python-pex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pex'
 pkgname=python-pex
 version=1.6.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="pex-${version}"
 build_style=python-module

From b4043ec822756e0711d025e31db342f81853fc0b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 366/872] python-pexpect: rebuild for Python 3.8.

---
 srcpkgs/python-pexpect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pexpect/template b/srcpkgs/python-pexpect/template
index 8d03a1945f3..03102c3d294 100644
--- a/srcpkgs/python-pexpect/template
+++ b/srcpkgs/python-pexpect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pexpect'
 pkgname=python-pexpect
 version=4.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pexpect-${version}"
 build_style=python-module

From 50f6291ca752dc88af34a7df4987b99f11369c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 367/872] python-pgmigrate: rebuild for Python 3.8.

---
 srcpkgs/python-pgmigrate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgmigrate/template b/srcpkgs/python-pgmigrate/template
index b441ba2a89f..767b6cf8921 100644
--- a/srcpkgs/python-pgmigrate/template
+++ b/srcpkgs/python-pgmigrate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgmigrate'
 pkgname=python-pgmigrate
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgmigrate-${version}"
 build_style=python-module

From 19bc6f8c731b45f52c358d34830221558e54f36f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 368/872] python-pgpdump: rebuild for Python 3.8.

---
 srcpkgs/python-pgpdump/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgpdump/template b/srcpkgs/python-pgpdump/template
index 58be9116feb..a28b6e209e7 100644
--- a/srcpkgs/python-pgpdump/template
+++ b/srcpkgs/python-pgpdump/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgpdump'
 pkgname=python-pgpdump
 version=1.5
-revision=5
+revision=6
 archs=noarch
 build_style=python-module
 pycompile_module="pgpdump"

From d3bc17a7484bd198f2f0e5d449b183920ca6ef9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 369/872] python3-pgspecial: rebuild for Python 3.8.

---
 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 dc52d12c214..c4f67a707f1 100644
--- a/srcpkgs/python3-pgspecial/template
+++ b/srcpkgs/python3-pgspecial/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pgspecial'
 pkgname=python3-pgspecial
 version=1.11.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgspecial-${version}"
 build_style=python3-module

From 630e0f8ca443d21d7a84c4cb44ab119db356b6fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 370/872] python3-pgzero: rebuild for Python 3.8.

---
 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 9653505acda..8b8f477112d 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgzero-${version}"
 build_style=python3-module

From b39841f2f8458d2865aac460282b318538b727c4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 371/872] python3-phonenumbers: rebuild for Python 3.8.

---
 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 ebf33f226e4..7b4e889fd8d 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.10.20
-revision=1
+revision=2
 archs=noarch
 wrksrc="phonenumbers-${version}"
 build_style=python3-module

From c4dbacfe25a16b0526190c66a838b7e407125426 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 372/872] python-picamera: rebuild for Python 3.8.

---
 srcpkgs/python-picamera/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-picamera/template b/srcpkgs/python-picamera/template
index 92bc2a57a6d..e3c9a17bfdc 100644
--- a/srcpkgs/python-picamera/template
+++ b/srcpkgs/python-picamera/template
@@ -1,7 +1,7 @@
 # Template file for 'python-picamera'
 pkgname=python-picamera
 version=1.13
-revision=1
+revision=2
 archs=noarch
 wrksrc="picamera-${version}"
 build_style=python-module

From 29473c016c6cd2d720c417714e89e9eaba3b321e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 373/872] python-pickleshare: rebuild for Python 3.8.

---
 srcpkgs/python-pickleshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pickleshare/template b/srcpkgs/python-pickleshare/template
index 2485c95230a..c1d86826c15 100644
--- a/srcpkgs/python-pickleshare/template
+++ b/srcpkgs/python-pickleshare/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pickleshare'
 pkgname=python-pickleshare
 version=0.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pickleshare-${version}"
 build_style=python-module

From 7c358da397b1273369bbeb98240a250157d4fe9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 374/872] python3-pillow-simd: rebuild for Python 3.8.

---
 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 7bab9fb20c3..4c756b07c79 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=5.3.0.post1
-revision=1
+revision=2
 archs="x86_64*"
 wrksrc="pillow-simd-${version}"
 build_style=python3-module

From 06b38c4e7a2c4a5ec22c8a9c530dbe56d846260f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 375/872] python-pip: rebuild for Python 3.8.

---
 srcpkgs/python-pip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pip/template b/srcpkgs/python-pip/template
index 75f11561816..9d4607095c7 100644
--- a/srcpkgs/python-pip/template
+++ b/srcpkgs/python-pip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pip'
 pkgname=python-pip
 version=19.2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pip-${version}"
 build_style=python-module

From 16067b9358434ea80b4b86a4dcd5a60f6b9e575b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 376/872] python-pipenv: rebuild for Python 3.8.

---
 srcpkgs/python-pipenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pipenv/template b/srcpkgs/python-pipenv/template
index e7ce3922875..210a0813673 100644
--- a/srcpkgs/python-pipenv/template
+++ b/srcpkgs/python-pipenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pipenv'
 pkgname=python-pipenv
 version=2018.11.26
-revision=3
+revision=4
 archs=noarch
 wrksrc="pipenv-${version}"
 build_style=python-module

From cb995aed1307a20f4ffe7746dbe54e4099ce9670 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 377/872] python-pkgconfig: rebuild for Python 3.8.

---
 srcpkgs/python-pkgconfig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pkgconfig/template b/srcpkgs/python-pkgconfig/template
index 13e1dcd3bf7..e9e5480907d 100644
--- a/srcpkgs/python-pkgconfig/template
+++ b/srcpkgs/python-pkgconfig/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pkgconfig'
 pkgname=python-pkgconfig
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pkgconfig-${version}"
 build_style=python-module

From f284340f35211b5c0879b7a5338c325e6cfe62da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 378/872] python-plotly: rebuild for Python 3.8.

---
 srcpkgs/python-plotly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-plotly/template b/srcpkgs/python-plotly/template
index fbbb3a3a520..1593b108f7a 100644
--- a/srcpkgs/python-plotly/template
+++ b/srcpkgs/python-plotly/template
@@ -1,7 +1,7 @@
 # Template file for 'python-plotly'
 pkgname=python-plotly
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 #wrksrc="${pkgname#*-}-${version}"
 wrksrc="plotly.py-${version}"

From ee0d515dc265db17d6c90029fc5ffad4fbfb17ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 379/872] python3-pluggy: rebuild for Python 3.8.

---
 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 37ebc2dae40..6f97cb25f21 100644
--- a/srcpkgs/python3-pluggy/template
+++ b/srcpkgs/python3-pluggy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pluggy'
 pkgname=python3-pluggy
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python3-module

From 60f109b4924812d3cbb6107b8d070a2fdb642962 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 380/872] python-ply: rebuild for Python 3.8.

---
 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 034fbcfa531..04a3defa6aa 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=1
+revision=2
 archs=noarch
 wrksrc="ply-${version}"
 build_style=python-module

From 95b0bc668a60a91dbbd68944bdc712d271e93723 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 381/872] python3-pmw: rebuild for Python 3.8.

---
 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 646e7129443..289b5ef1d0d 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=1
+revision=2
 archs=noarch
 short_desc="Python 3 Tkinter widget toolkit"
 homepage="http://pmw.sourceforge.net/"

From 760b2aa66f385f882c6da4545bc93c906a387d73 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 382/872] python-podcastparser: rebuild for Python 3.8.

---
 srcpkgs/python-podcastparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-podcastparser/template b/srcpkgs/python-podcastparser/template
index e4847d3ed65..61702f0d28b 100644
--- a/srcpkgs/python-podcastparser/template
+++ b/srcpkgs/python-podcastparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-podcastparser'
 pkgname=python-podcastparser
 version=0.6.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="podcastparser-${version}"
 build_style=python-module

From e0ad0641945e1dea937fb2ca555a61603e4560b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 383/872] python-polib: rebuild for Python 3.8.

---
 srcpkgs/python-polib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-polib/template b/srcpkgs/python-polib/template
index b0ade05d90d..8b8d4b66c68 100644
--- a/srcpkgs/python-polib/template
+++ b/srcpkgs/python-polib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-polib'
 pkgname=python-polib
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="polib-${version}"
 build_style=python-module

From 0030be5c9ea47539a72b9d5b5131abeac8412e47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 384/872] python-portend: rebuild for Python 3.8.

---
 srcpkgs/python-portend/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python-portend/template b/srcpkgs/python-portend/template
index 216ae413d09..0538f68083f 100644
--- a/srcpkgs/python-portend/template
+++ b/srcpkgs/python-portend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-portend'
 pkgname=python-portend
 version=2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="portend-${version}"
 build_style=python-module
@@ -14,7 +14,7 @@ license="MIT"
 homepage="https://github.com/jaraco/portend"
 changelog="https://github.com/jaraco/portend/blob/master/CHANGES.rst"
 distfiles="https://github.com/jaraco/portend/archive/${version}.tar.gz"
-checksum=61aa1a8fd76d64bd6093e4151a2bfeda177d5083bf2e2bcc92a053bd2104fde3
+checksum=c0740375a19168e117d291e7ed307e985d2c0e2dc732ca97444bc58a28076dfa
 
 pre_build() {
 	sed -i setup.py \

From 86c2211e1837e156275077b9efe1e25572514867 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 385/872] python-prctl: rebuild for Python 3.8.

---
 srcpkgs/python-prctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prctl/template b/srcpkgs/python-prctl/template
index 2b420d655cf..e8bf54b98fd 100644
--- a/srcpkgs/python-prctl/template
+++ b/srcpkgs/python-prctl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prctl'
 pkgname=python-prctl
 version=1.7
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="prctl.py"
 hostmakedepends="python-setuptools python3-setuptools libcap-devel"

From e7c53afc196d066076f9117158bd6a0b7b28bf52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 386/872] python3-precis-i18n: rebuild for Python 3.8.

---
 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 19612bc818b..be7bb0b0b56 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=1
+revision=2
 archs=noarch
 wrksrc="precis_i18n-${version}"
 build_style=python3-module

From fc6a6a6ae9e2454bc6e5aa117ab2f5f747f1c3d2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 387/872] python-pretend: rebuild for Python 3.8.

---
 srcpkgs/python-pretend/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pretend/template b/srcpkgs/python-pretend/template
index 9a647271b57..6d8063fc43a 100644
--- a/srcpkgs/python-pretend/template
+++ b/srcpkgs/python-pretend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pretend'
 pkgname=python-pretend
 version=1.0.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pretend-${version}"
 build_style=python-module

From 990266b8ce207f64d2a8e2f2f2c11473236e4a2d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 388/872] python-progress: rebuild for Python 3.8.

---
 srcpkgs/python-progress/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-progress/template b/srcpkgs/python-progress/template
index 7d3924e3618..0d6bd1db69d 100644
--- a/srcpkgs/python-progress/template
+++ b/srcpkgs/python-progress/template
@@ -1,7 +1,7 @@
 # Template file for 'python-progress'
 pkgname=python-progress
 version=1.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="progress-${version}"
 build_style=python-module

From 1259abece823637c18eaca058493cebdf15842ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 389/872] python-prometheus_client: rebuild for Python 3.8.

---
 srcpkgs/python-prometheus_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prometheus_client/template b/srcpkgs/python-prometheus_client/template
index 46df561f7d4..7b71fbeffc2 100644
--- a/srcpkgs/python-prometheus_client/template
+++ b/srcpkgs/python-prometheus_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prometheus_client'
 pkgname=python-prometheus_client
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="prometheus_client-${version}"
 build_style=python-module

From 67527aa7cf723b45f2c49017717337d56884bf4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 390/872] python-prompt_toolkit1: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit1/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit1/template b/srcpkgs/python-prompt_toolkit1/template
index d117d620ba5..7afe6179f33 100644
--- a/srcpkgs/python-prompt_toolkit1/template
+++ b/srcpkgs/python-prompt_toolkit1/template
@@ -2,7 +2,7 @@
 pkgname=python-prompt_toolkit1
 reverts="2.0.9_1"
 version=1.0.15
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From ad672131c8ab27e3e4dfa04ab7264c23d46f206e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 391/872] python-prompt_toolkit2: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit2/template b/srcpkgs/python-prompt_toolkit2/template
index 0fa71fa06dc..d7f2fd11e14 100644
--- a/srcpkgs/python-prompt_toolkit2/template
+++ b/srcpkgs/python-prompt_toolkit2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prompt_toolkit2'
 pkgname=python-prompt_toolkit2
 version=2.0.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From 2d3dfe28989a26dbea6bd90097a7a4046839373e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 392/872] python-proselint: rebuild for Python 3.8.

---
 srcpkgs/python-proselint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-proselint/template b/srcpkgs/python-proselint/template
index c017c497386..b1da90de474 100644
--- a/srcpkgs/python-proselint/template
+++ b/srcpkgs/python-proselint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-proselint'
 pkgname=python-proselint
 version=0.10.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="proselint-${version}"
 build_style=python-module

From 3dceefa27e529cfd28f51c8b96cec007bd4464e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 393/872] python-protobuf: rebuild for Python 3.8.

---
 srcpkgs/python-protobuf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-protobuf/template b/srcpkgs/python-protobuf/template
index 4b736f1e7af..7dbed97fb76 100644
--- a/srcpkgs/python-protobuf/template
+++ b/srcpkgs/python-protobuf/template
@@ -1,7 +1,7 @@
 # Template file for 'python-protobuf'
 pkgname=python-protobuf
 version=3.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="protobuf-${version}"
 build_style=python-module

From abc13cfff04878580efaf4333ca9548112b11049 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 394/872] python-psutil: rebuild for Python 3.8.

---
 srcpkgs/python-psutil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psutil/template b/srcpkgs/python-psutil/template
index 96cbb3c399f..11353ed2179 100644
--- a/srcpkgs/python-psutil/template
+++ b/srcpkgs/python-psutil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psutil'
 pkgname=python-psutil
 version=5.6.3
-revision=1
+revision=2
 wrksrc="psutil-${version}"
 build_style=python-module
 pycompile_module="psutil"

From 970bcf29dafb825894593f644c2fb7b4f1b86aff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 395/872] python-psycopg2: rebuild for Python 3.8.

---
 srcpkgs/python-psycopg2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psycopg2/template b/srcpkgs/python-psycopg2/template
index f41de2880e6..14b28b8aed1 100644
--- a/srcpkgs/python-psycopg2/template
+++ b/srcpkgs/python-psycopg2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psycopg2'
 pkgname=python-psycopg2
 version=2.8.3
-revision=1
+revision=2
 wrksrc="psycopg2-${version}"
 build_style=python-module
 pycompile_module="psycopg2"

From f987fad321d899f07d159588838ad3f3bfd1eb12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 396/872] python-ptyprocess: rebuild for Python 3.8.

---
 srcpkgs/python-ptyprocess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ptyprocess/template b/srcpkgs/python-ptyprocess/template
index 04c4cf89391..fd2e51fa3ac 100644
--- a/srcpkgs/python-ptyprocess/template
+++ b/srcpkgs/python-ptyprocess/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ptyprocess'
 pkgname=python-ptyprocess
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ptyprocess-${version}"
 build_style=python-module

From 6854ff4b103875e8ed393d695b71afd7a2589626 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 397/872] python3-pulsectl: rebuild for Python 3.8.

---
 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 429dd1abe45..045afdb411b 100644
--- a/srcpkgs/python3-pulsectl/template
+++ b/srcpkgs/python3-pulsectl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pulsectl'
 pkgname=python3-pulsectl
 version=19.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pulsectl-${version}"
 build_style=python3-module

From e8331ef1c889bc2b1756c6ed55a1cc93186445af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 398/872] python-py: rebuild for Python 3.8.

---
 srcpkgs/python-py/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-py/template b/srcpkgs/python-py/template
index 99644bc228a..07a1ae2a21b 100644
--- a/srcpkgs/python-py/template
+++ b/srcpkgs/python-py/template
@@ -1,7 +1,7 @@
 # Template file for 'python-py'
 pkgname=python-py
 version=1.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="py-${version}"
 build_style=python-module

From 1f71c5025d9cb40d86e4245b6a90731b3f25c6fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 399/872] python-pyPEG2: rebuild for Python 3.8.

---
 srcpkgs/python-pyPEG2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyPEG2/template b/srcpkgs/python-pyPEG2/template
index 113948af730..6ba175687f1 100644
--- a/srcpkgs/python-pyPEG2/template
+++ b/srcpkgs/python-pyPEG2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyPEG2'
 pkgname=python-pyPEG2
 version=2.15.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 3f82483327ba7958b0a6f8b67e63abf009c360ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 400/872] python-pyacoustid: rebuild for Python 3.8.

---
 srcpkgs/python-pyacoustid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyacoustid/template b/srcpkgs/python-pyacoustid/template
index 068d3d52649..d5b2d967f4e 100644
--- a/srcpkgs/python-pyacoustid/template
+++ b/srcpkgs/python-pyacoustid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyacoustid'
 pkgname=python-pyacoustid
 version=1.1.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyacoustid-${version}"
 build_style=python-module

From da477a37411d7cf0d00da2dea60d734072705be7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 401/872] python-pyaes: rebuild for Python 3.8.

---
 srcpkgs/python-pyaes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyaes/template b/srcpkgs/python-pyaes/template
index a8c812a9e01..d31766d0481 100644
--- a/srcpkgs/python-pyaes/template
+++ b/srcpkgs/python-pyaes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyaes'
 pkgname=python-pyaes
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyaes-${version}"
 build_style=python-module

From 9e2b6fe7e7b67777d70eb25705c27d4ed6462a3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 402/872] python-pyasn1: rebuild for Python 3.8.

---
 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 510dfa09816..fcddad43633 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyasn1-${version}"
 build_style=python-module

From 712c6a81632d8741a302138a46ffd3b1c8fb079f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 403/872] python-pyasn1-modules: rebuild for Python 3.8.

---
 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 bc19e4940ed..b142819a272 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 989e8e1bc0a51f2fa1a88ec8f99eae20dd3e21ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 404/872] python3-pycares: rebuild for Python 3.8.

---
 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 c52702904b4..ed82808bada 100644
--- a/srcpkgs/python3-pycares/template
+++ b/srcpkgs/python3-pycares/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pycares'
 pkgname=python3-pycares
 version=2.3.0
-revision=2
+revision=3
 wrksrc="pycares-${version}"
 build_style=python3-module
 pycompile_module="pycares"

From 0885c6a30ff0765b465e0e4c84803b48b9090dc5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 405/872] python-pycodestyle: rebuild for Python 3.8.

---
 srcpkgs/python-pycodestyle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycodestyle/template b/srcpkgs/python-pycodestyle/template
index ca20d8e0c97..08bc8c8bec7 100644
--- a/srcpkgs/python-pycodestyle/template
+++ b/srcpkgs/python-pycodestyle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycodestyle'
 pkgname=python-pycodestyle
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycodestyle-${version}"
 build_style=python-module

From 61d0268320bb8306c2b2823a663588c885a01df6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 406/872] python-pycountry: rebuild for Python 3.8.

---
 srcpkgs/python-pycountry/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycountry/template b/srcpkgs/python-pycountry/template
index 88a0025f258..205db6240b7 100644
--- a/srcpkgs/python-pycountry/template
+++ b/srcpkgs/python-pycountry/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycountry'
 pkgname=python-pycountry
 version=18.12.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycountry-${version}"
 build_style=python-module

From e3a689e939cf482e09d50cf25b8f244cbec3dc12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 407/872] python-pycparser: rebuild for Python 3.8.

---
 srcpkgs/python-pycparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycparser/template b/srcpkgs/python-pycparser/template
index a521b3494ab..d2e83aa79b2 100644
--- a/srcpkgs/python-pycparser/template
+++ b/srcpkgs/python-pycparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycparser'
 pkgname=python-pycparser
 version=2.19
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycparser-${version}"
 build_style=python-module

From a86a5e2a75c91a868bf9b10f7ad9d86ca4df85d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 408/872] python-pycryptodome: rebuild for Python 3.8.

---
 srcpkgs/python-pycryptodome/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycryptodome/template b/srcpkgs/python-pycryptodome/template
index f01b5731c45..a4368d61b39 100644
--- a/srcpkgs/python-pycryptodome/template
+++ b/srcpkgs/python-pycryptodome/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycryptodome'
 pkgname=python-pycryptodome
 version=3.9.0
-revision=1
+revision=2
 wrksrc="pycryptodome-${version}"
 build_style=python-module
 pycompile_module="Crypto"

From 0cd2d63524942e2cfe5220436720dab24ef75308 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 409/872] python-pyelftools: rebuild for Python 3.8.

---
 srcpkgs/python-pyelftools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyelftools/template b/srcpkgs/python-pyelftools/template
index a6e9e9b644e..193650442fc 100644
--- a/srcpkgs/python-pyelftools/template
+++ b/srcpkgs/python-pyelftools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyelftools'
 pkgname=python-pyelftools
 version=0.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyelftools-${version}"
 build_style=python-module

From 61ae993767f544e608a601e6727e58b8c73400fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 410/872] python3-pyfiglet: rebuild for Python 3.8.

---
 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 d00b4fda62a..a4a67b12d42 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=1
+revision=2
 archs=noarch
 wrksrc="pyfiglet-${version}"
 build_style="python3-module"

From 7f5bd3a27f56badc9d95d3b2b7a684604262af1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 411/872] python-pyflakes: rebuild for Python 3.8.

---
 srcpkgs/python-pyflakes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyflakes/template b/srcpkgs/python-pyflakes/template
index 86d477c47f2..19229ebb3a4 100644
--- a/srcpkgs/python-pyflakes/template
+++ b/srcpkgs/python-pyflakes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyflakes'
 pkgname=python-pyflakes
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyflakes-${version}"
 build_style=python-module

From a811c56d34b1f53ac8aeca03f5247410137fe8d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 412/872] python-pygame: rebuild for Python 3.8.

---
 srcpkgs/python-pygame/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pygame/template b/srcpkgs/python-pygame/template
index a510333df6e..a900d62dbe3 100644
--- a/srcpkgs/python-pygame/template
+++ b/srcpkgs/python-pygame/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pygame'
 pkgname=python-pygame
 version=1.9.4
-revision=2
+revision=3
 wrksrc="pygame-${version}"
 build_style=python-module
 pycompile_module="pygame"

From e62822b2e5fa56868e80f10a019c7a0d66abbcbd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 413/872] python-pyglet: rebuild for Python 3.8.

---
 srcpkgs/python-pyglet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyglet/template b/srcpkgs/python-pyglet/template
index f8315bdf616..ee6ed16064c 100644
--- a/srcpkgs/python-pyglet/template
+++ b/srcpkgs/python-pyglet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyglet'
 pkgname=python-pyglet
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyglet-${version}"
 build_style=python-module

From 1f0bf2cea3a10c9982132fbe81c5ebd884defa35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 414/872] python3-pykeepass: rebuild for Python 3.8.

---
 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 c0e0fd4db41..135da6fea65 100644
--- a/srcpkgs/python3-pykeepass/template
+++ b/srcpkgs/python3-pykeepass/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pykeepass'
 pkgname=python3-pykeepass
 version=3.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="pykeepass-${version}"
 build_style=python3-module

From f2d7f9a6199d6780975ad9efb639642e96acc8c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 415/872] python3-pykwalify: rebuild for Python 3.8.

---
 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 27bc0c37355..b3727aba651 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pykwalify-${version}"
 build_style=python3-module

From cb348b8cc013bee10cb1adcdd5b9dac8e8f37a83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 416/872] python3-pylast: rebuild for Python 3.8.

---
 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 187b51943a8..60184348d80 100644
--- a/srcpkgs/python3-pylast/template
+++ b/srcpkgs/python3-pylast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylast'
 pkgname=python3-pylast
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylast-${version}"
 build_style=python3-module

From 6629ec0088134c22cfb115f29fd4a90a9b38e7a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 417/872] python3-pylibgen: rebuild for Python 3.8.

---
 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 641bf649c17..540ccb32790 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylibgen-${version}"
 build_style=python3-module

From 953751fa6deeafefea78df4f5ec27ee5c5c9902d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 418/872] python3-pylint: rebuild for Python 3.8.

---
 srcpkgs/python3-pylint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pylint/template b/srcpkgs/python3-pylint/template
index 6c8800069f0..315dbffb3fc 100644
--- a/srcpkgs/python3-pylint/template
+++ b/srcpkgs/python3-pylint/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylint'
 pkgname=python3-pylint
 version=2.3.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="pylint-${version}"
 build_style=python3-module

From 96bc4e17e1f144c3528e0ec3b455d501c2c3efdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 419/872] python-pynacl: rebuild for Python 3.8.

---
 srcpkgs/python-pynacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pynacl/template b/srcpkgs/python-pynacl/template
index 6ead91820b1..7a7fe246821 100644
--- a/srcpkgs/python-pynacl/template
+++ b/srcpkgs/python-pynacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pynacl'
 pkgname=python-pynacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python-module
 pycompile_module="nacl"

From ec1da9dfd353e059b23780a676ef1561f56f9b2e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 420/872] python-pyotp: rebuild for Python 3.8.

---
 srcpkgs/python-pyotp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyotp/template b/srcpkgs/python-pyotp/template
index 54714ee2ebb..b70bd73d4aa 100644
--- a/srcpkgs/python-pyotp/template
+++ b/srcpkgs/python-pyotp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyotp'
 pkgname=python-pyotp
 version=2.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyotp-${version}"
 build_style=python-module

From 3c83515599af94f7483a3e165f03547f9daa2835 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 421/872] python-pyperclip: rebuild for Python 3.8.

---
 srcpkgs/python-pyperclip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyperclip/template b/srcpkgs/python-pyperclip/template
index 512dc8d3dfb..b173f1479a5 100644
--- a/srcpkgs/python-pyperclip/template
+++ b/srcpkgs/python-pyperclip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyperclip'
 pkgname=python-pyperclip
 version=1.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=pyperclip-${version}
 build_style=python-module

From 6d17f7510d6ce4ec430e8bf72567fecdbd521681 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 422/872] python-pyqtgraph: rebuild for Python 3.8.

---
 srcpkgs/python-pyqtgraph/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyqtgraph/template b/srcpkgs/python-pyqtgraph/template
index f90e2b15319..1bea9c2ffdf 100644
--- a/srcpkgs/python-pyqtgraph/template
+++ b/srcpkgs/python-pyqtgraph/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyqtgraph'
 pkgname=python-pyqtgraph
 version=0.10.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${pkgname#*-}-${version}"
 build_style=python-module

From fff21c3dd38242e2992b276e00f6970f96a34293 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 423/872] python-pyrfc3339: rebuild for Python 3.8.

---
 srcpkgs/python-pyrfc3339/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyrfc3339/template b/srcpkgs/python-pyrfc3339/template
index 618e46d1c4b..cd81c4d0624 100644
--- a/srcpkgs/python-pyrfc3339/template
+++ b/srcpkgs/python-pyrfc3339/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyrfc3339'
 pkgname=python-pyrfc3339
 version=1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="pyrfc3339"

From bdfc6ef4d47bd373ff649510c96f640b48da738a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 424/872] python-pyscss: rebuild for Python 3.8.

---
 srcpkgs/python-pyscss/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyscss/template b/srcpkgs/python-pyscss/template
index 1f7d8b7d8cd..1a8e9c44d7d 100644
--- a/srcpkgs/python-pyscss/template
+++ b/srcpkgs/python-pyscss/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyscss'
 pkgname=python-pyscss
 version=1.3.5
-revision=6
+revision=7
 wrksrc="pyScss-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pcre-devel"

From 6bdfad32f6894df0a7f3eb185662fa32228408ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 425/872] python3-pysdl2: rebuild for Python 3.8.

---
 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 d59ea7d7fa2..3efdca5b667 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=1
+revision=2
 archs=noarch
 wrksrc="py-sdl2-rel_${version//./_}"
 build_style=python3-module

From 67dab081767478a600fbc44d5333dc2746a683ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 426/872] python-pyserial: rebuild for Python 3.8.

---
 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 8808e76d206..354be493b16 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=2
+revision=3
 archs=noarch
 wrksrc="pyserial-${version}"
 build_style=python-module

From a6914f6aa35af001fd954260658bed6e1e5df2bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 427/872] python3-pyside2: rebuild for Python 3.8.

---
 srcpkgs/python3-pyside2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pyside2/template b/srcpkgs/python3-pyside2/template
index a5d60b17568..1da3400f239 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.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From deee942f64ef5e0e70f6a45a7f9e3a2593d53add Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 428/872] python3-pysigset: rebuild for Python 3.8.

---
 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 8de87145a09..50d9162ea70 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.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysigset-${version}"
 build_style=python3-module

From 913752d5b84f0054c829fc060939c366bf5b28cb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 429/872] python-pysocks: rebuild for Python 3.8.

---
 srcpkgs/python-pysocks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysocks/template b/srcpkgs/python-pysocks/template
index 68a27819e3d..d9b216aeab8 100644
--- a/srcpkgs/python-pysocks/template
+++ b/srcpkgs/python-pysocks/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysocks'
 pkgname=python-pysocks
 version=1.6.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="PySocks-${version}"
 build_style=python-module

From e256b35c573b66ccaaffbf92ee92ecad250db3c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 430/872] python3-pysol_cards: rebuild for Python 3.8.

---
 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 e03d92fe077..a37429754a2 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.8.6
-revision=1
+revision=2
 wrksrc="pysol_cards-${version}"
 build_style=python3-module
 pycompile_module="pysol_cards"

From d29dab0ddee296649a1f4ace5c33678cc349d6ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 431/872] python-pysrt: rebuild for Python 3.8.

---
 srcpkgs/python-pysrt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysrt/template b/srcpkgs/python-pysrt/template
index 061435a52c7..7e154825bef 100644
--- a/srcpkgs/python-pysrt/template
+++ b/srcpkgs/python-pysrt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysrt'
 pkgname=python-pysrt
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysrt-${version}"
 build_style=python-module

From 4ba7eb802460f8e4e15f1389bebd64237c6f1aec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 432/872] python-pystache: rebuild for Python 3.8.

---
 srcpkgs/python-pystache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pystache/template b/srcpkgs/python-pystache/template
index 13f8b04aa88..c1a5bcd57d9 100644
--- a/srcpkgs/python-pystache/template
+++ b/srcpkgs/python-pystache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pystache'
 pkgname=python-pystache
 version=0.5.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pystache-${version}"
 build_style=python-module

From a6a1d8010f3909cc551f70485efc660b22168f46 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 433/872] python-pyte: rebuild for Python 3.8.

---
 srcpkgs/python-pyte/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyte/template b/srcpkgs/python-pyte/template
index 43b708adc66..76efbec91d1 100644
--- a/srcpkgs/python-pyte/template
+++ b/srcpkgs/python-pyte/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyte'
 pkgname=python-pyte
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyte-${version}"
 build_style=python-module

From 03679e357b0bdbd90ddbb6deba5693594ef9d592 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 434/872] python-pytest: rebuild for Python 3.8.

---
 srcpkgs/python-pytest/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest/template b/srcpkgs/python-pytest/template
index 6481f21e677..d5c246599c6 100644
--- a/srcpkgs/python-pytest/template
+++ b/srcpkgs/python-pytest/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest'
 pkgname=python-pytest
 version=3.7.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From d8ff8818fa4f90c63cf468feb2bba5d8b9dca026 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 435/872] python3-pytest-asyncio: rebuild for Python 3.8.

---
 srcpkgs/python3-pytest-asyncio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template
index bd104f99e2c..0c90d33a9e5 100644
--- a/srcpkgs/python3-pytest-asyncio/template
+++ b/srcpkgs/python3-pytest-asyncio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pytest-asyncio'
 pkgname=python3-pytest-asyncio
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytest-asyncio-${version}"
 build_style=python3-module

From 8bdff4905b1d2e832656b8dde532b566e516752c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 436/872] python-pytest-fixture-config: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-fixture-config/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-fixture-config/template b/srcpkgs/python-pytest-fixture-config/template
index cd3e38a592a..14255af8a35 100644
--- a/srcpkgs/python-pytest-fixture-config/template
+++ b/srcpkgs/python-pytest-fixture-config/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-fixture-config'
 pkgname=python-pytest-fixture-config
 version=1.3.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 89c93c6cebe4d9e57d61a6e1c0d1782514496073 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 437/872] python-pytest-mock: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-mock/template b/srcpkgs/python-pytest-mock/template
index f3dc85810b6..240e8773aaa 100644
--- a/srcpkgs/python-pytest-mock/template
+++ b/srcpkgs/python-pytest-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-mock'
 pkgname=python-pytest-mock
 version=1.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From e10ffc843814c368a7fd76e24e6afa8512ce198c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 438/872] python-pytz: rebuild for Python 3.8.

---
 srcpkgs/python-pytz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytz/template b/srcpkgs/python-pytz/template
index d6becf829a7..40f582962c8 100644
--- a/srcpkgs/python-pytz/template
+++ b/srcpkgs/python-pytz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytz'
 pkgname=python-pytz
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytz-${version}"
 build_style=python-module

From 562767d788b8e163bcde2dbd45de9eca2899bd90 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 439/872] python-pyudev: rebuild for Python 3.8.

---
 srcpkgs/python-pyudev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyudev/template b/srcpkgs/python-pyudev/template
index d059b7882a2..2ec53088636 100644
--- a/srcpkgs/python-pyudev/template
+++ b/srcpkgs/python-pyudev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyudev'
 pkgname=python-pyudev
 version=0.21.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyudev-${version}"
 build_style=python-module

From bb91a3d4616a0e9dbf1a34b271d62527a455f4ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 440/872] python3-pyx: rebuild for Python 3.8.

---
 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 87608c43428..89963bed89f 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.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="PyX-${version}"
 build_style=python3-module

From caa3ad83cde6d2b66687ae0ac2bb87dfd8eb100f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 441/872] python-pyzbar: rebuild for Python 3.8.

---
 srcpkgs/python-pyzbar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzbar/template b/srcpkgs/python-pyzbar/template
index 06ae37a5708..35b568eb4e6 100644
--- a/srcpkgs/python-pyzbar/template
+++ b/srcpkgs/python-pyzbar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzbar'
 pkgname=python-pyzbar
 version=0.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyzbar-${version}"
 build_style=python-module

From 83e0ba8fd12c3f07b4f3c2f8109ff0cd9a69353b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 442/872] python-pyzmq: rebuild for Python 3.8.

---
 srcpkgs/python-pyzmq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzmq/template b/srcpkgs/python-pyzmq/template
index 859aab5983d..27dbe29e516 100644
--- a/srcpkgs/python-pyzmq/template
+++ b/srcpkgs/python-pyzmq/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzmq'
 pkgname=python-pyzmq
 version=18.0.1
-revision=1
+revision=2
 wrksrc="pyzmq-${version}"
 build_style=python-module
 make_build_args="--zmq=${XBPS_CROSS_BASE}/usr"

From 2d71150f372801e322d8ee5f31b2bc67795fc3a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 443/872] python-qrcode: rebuild for Python 3.8.

---
 srcpkgs/python-qrcode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-qrcode/template b/srcpkgs/python-qrcode/template
index 9deb485855f..bf35c82757e 100644
--- a/srcpkgs/python-qrcode/template
+++ b/srcpkgs/python-qrcode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-qrcode'
 pkgname=python-qrcode
 version=6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="qrcode-${version}"
 build_style=python-module

From 55eeefa7bb378b38024ce5c57d228c5d2c24875f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 444/872] python-random2: rebuild for Python 3.8.

---
 srcpkgs/python-random2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-random2/template b/srcpkgs/python-random2/template
index 92f36fee139..2603cae3584 100644
--- a/srcpkgs/python-random2/template
+++ b/srcpkgs/python-random2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-random2'
 pkgname=python-random2
 version=1.0.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="random2-${version}"
 build_style=python-module

From 4aa520f994404a836b859a95bf53280ec662d779 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 445/872] python-rarfile: rebuild for Python 3.8.

---
 srcpkgs/python-rarfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rarfile/template b/srcpkgs/python-rarfile/template
index e0c597c1fb1..e3b6f3e2887 100644
--- a/srcpkgs/python-rarfile/template
+++ b/srcpkgs/python-rarfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rarfile'
 pkgname=python-rarfile
 version=3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="rarfile-${version}"
 build_style=python-module

From 77edc413dd0a2b7d7423d47946137d1db7452b91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 446/872] python-raven: rebuild for Python 3.8.

---
 srcpkgs/python-raven/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-raven/template b/srcpkgs/python-raven/template
index eec4e5f49b6..87382c21602 100644
--- a/srcpkgs/python-raven/template
+++ b/srcpkgs/python-raven/template
@@ -1,7 +1,7 @@
 # Template file for 'python-raven'
 pkgname=python-raven
 version=6.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="raven-${version}"
 build_style=python-module

From 0fd244bc29d49109b475295b68c11c496626bd43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 447/872] python-rdflib: rebuild for Python 3.8.

---
 srcpkgs/python-rdflib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rdflib/template b/srcpkgs/python-rdflib/template
index 0512abb0e5a..f676dedfb2f 100644
--- a/srcpkgs/python-rdflib/template
+++ b/srcpkgs/python-rdflib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rdflib'
 pkgname=python-rdflib
 version=4.2.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="rdflib-${version}"
 build_style=python-module

From 52682c54b0a7808306dcb6c0c9af5436d056d6a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 448/872] python-readability-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-readability-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-readability-lxml/template b/srcpkgs/python-readability-lxml/template
index ddf0602b730..19dadaa336f 100644
--- a/srcpkgs/python-readability-lxml/template
+++ b/srcpkgs/python-readability-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-readability-lxml'
 pkgname=python-readability-lxml
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="readability-lxml-${version}"
 build_style=python-module

From 5b239aeb5613465b0d414e14b8b37a83f65232fc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 449/872] python3-readlike: rebuild for Python 3.8.

---
 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 cbba969b076..43159962442 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=1
+revision=2
 archs=noarch
 wrksrc=readlike-${version}
 build_style=python3-module

From 10ff7da432e0f1563ed8c4feb921648f20e75246 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 450/872] python-rebulk: rebuild for Python 3.8.

---
 srcpkgs/python-rebulk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rebulk/template b/srcpkgs/python-rebulk/template
index 1cf6cf623c8..8f9c2621304 100644
--- a/srcpkgs/python-rebulk/template
+++ b/srcpkgs/python-rebulk/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rebulk'
 pkgname=python-rebulk
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rebulk-${version}"
 build_style=python-module

From b720f89f9fb6ecb79aa43ff92f151239049cb9c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 451/872] python-redis: rebuild for Python 3.8.

---
 srcpkgs/python-redis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-redis/template b/srcpkgs/python-redis/template
index f57c0d841b3..b7e773fde54 100644
--- a/srcpkgs/python-redis/template
+++ b/srcpkgs/python-redis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-redis'
 pkgname=python-redis
 version=2.10.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="redis-${version}"
 build_style=python-module

From 90d47f03a3f7a55f623c0b5019b0b58b6169aae5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 452/872] python-regex: rebuild for Python 3.8.

---
 srcpkgs/python-regex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-regex/template b/srcpkgs/python-regex/template
index 33e99b0127b..7a624db9477 100644
--- a/srcpkgs/python-regex/template
+++ b/srcpkgs/python-regex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-regex'
 pkgname=python-regex
 version=2019.08.19
-revision=1
+revision=2
 wrksrc="regex-${version}"
 build_style=python-module
 pycompile_module="_regex_core.py regex.py test_regex.py"

From e132fc559392a2f2a5268100218ef2061759c476 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 453/872] python-rencode: rebuild for Python 3.8.

---
 srcpkgs/python-rencode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rencode/template b/srcpkgs/python-rencode/template
index 7176038a60a..021e1d414b8 100644
--- a/srcpkgs/python-rencode/template
+++ b/srcpkgs/python-rencode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rencode'
 pkgname=python-rencode
 version=1.0.6
-revision=2
+revision=3
 wrksrc="rencode-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"

From 635743944483bd5fdbf4a909ef4874532f1035b9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 454/872] python-reportlab: rebuild for Python 3.8.

---
 srcpkgs/python-reportlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-reportlab/template b/srcpkgs/python-reportlab/template
index 7f153d65a2a..3915767b6d3 100644
--- a/srcpkgs/python-reportlab/template
+++ b/srcpkgs/python-reportlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-reportlab'
 pkgname=python-reportlab
 version=3.5.23
-revision=1
+revision=2
 wrksrc="reportlab-${version}"
 build_style=python-module
 pycompile_module="reportlab"

From 4a6d7b1e5e0d64a6834cc210da11806cbe217453 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 455/872] python-requests: rebuild for Python 3.8.

---
 srcpkgs/python-requests/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests/template b/srcpkgs/python-requests/template
index fc806b611e9..73d2d5945ef 100644
--- a/srcpkgs/python-requests/template
+++ b/srcpkgs/python-requests/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests'
 pkgname=python-requests
 version=2.22.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-${version}"
 build_style=python-module

From 61f6560b710773eab8296ef28bd943f5dc0d290d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 456/872] python-requests-mock: rebuild for Python 3.8.

---
 srcpkgs/python-requests-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-mock/template b/srcpkgs/python-requests-mock/template
index 5b89b5ed3b8..2d1410fcd1b 100644
--- a/srcpkgs/python-requests-mock/template
+++ b/srcpkgs/python-requests-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-mock'
 pkgname=python-requests-mock
 version=1.5.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="requests-mock-${version}"
 build_style=python-module

From f4f04d85ce7abb39fbbf306bc3c1dcfc467cdf14 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 457/872] python-requests-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-requests-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-oauthlib/template b/srcpkgs/python-requests-oauthlib/template
index b011ea17a36..8cd838090a7 100644
--- a/srcpkgs/python-requests-oauthlib/template
+++ b/srcpkgs/python-requests-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-oauthlib'
 pkgname=python-requests-oauthlib
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5853f21b57bde4c4e66293b132fba4fc03804518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 458/872] python-requests-toolbelt: rebuild for Python 3.8.

---
 srcpkgs/python-requests-toolbelt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-toolbelt/template b/srcpkgs/python-requests-toolbelt/template
index 3ba66a0a007..13a81586221 100644
--- a/srcpkgs/python-requests-toolbelt/template
+++ b/srcpkgs/python-requests-toolbelt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-toolbelt'
 pkgname=python-requests-toolbelt
 version=0.9.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 14171483829854051f0c8030562c1052094d78c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 459/872] python3-requests-unixsocket: rebuild for Python 3.8.

---
 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 ec9e1074566..fd389ec2d13 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-unixsocket-${version}"
 build_style=python3-module

From 9b589212b423bd7e2dfbb7ab7ef63c65b9dd07cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 460/872] python-rfc6555: rebuild for Python 3.8.

---
 srcpkgs/python-rfc6555/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rfc6555/template b/srcpkgs/python-rfc6555/template
index c3babc25b93..2522872cc32 100644
--- a/srcpkgs/python-rfc6555/template
+++ b/srcpkgs/python-rfc6555/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rfc6555'
 pkgname=python-rfc6555
 version=0.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rfc6555-${version}"
 build_style=python-module

From a399a96d8293a9387f5648001a03178d2550059b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 461/872] python-ripe-atlas-cousteau: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-cousteau/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-cousteau/template b/srcpkgs/python-ripe-atlas-cousteau/template
index ac16300fe3d..72f32a9da0d 100644
--- a/srcpkgs/python-ripe-atlas-cousteau/template
+++ b/srcpkgs/python-ripe-atlas-cousteau/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-cousteau'
 pkgname=python-ripe-atlas-cousteau
 version=1.4.2
-revision=1
+revision=2
 build_style=python-module
 archs=noarch
 pycompile_module="ripe/atlas/cousteau"

From 4c2ddc085f45f52b438013ad3d494f8f59859504 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 462/872] python-ripe-atlas-sagan: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-sagan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-sagan/template b/srcpkgs/python-ripe-atlas-sagan/template
index 60a9b883b93..22abb48af46 100644
--- a/srcpkgs/python-ripe-atlas-sagan/template
+++ b/srcpkgs/python-ripe-atlas-sagan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-sagan'
 pkgname=python-ripe-atlas-sagan
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ripe.atlas.sagan-${version}"
 build_style=python-module

From 10e7db3d51d8370e317d667edc372d0fcfd5bad9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 463/872] python-rsa: rebuild for Python 3.8.

---
 srcpkgs/python-rsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rsa/template b/srcpkgs/python-rsa/template
index a4ae59846ff..11e9bf2c60d 100644
--- a/srcpkgs/python-rsa/template
+++ b/srcpkgs/python-rsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rsa'
 pkgname=python-rsa
 version=4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a3bbda3918c5b4bb668860ba5bbd81f83f1a4925 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 464/872] python3-rsistent: rebuild for Python 3.8.

---
 srcpkgs/python3-rsistent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-rsistent/template b/srcpkgs/python3-rsistent/template
index 13019f472cd..7897e107b2b 100644
--- a/srcpkgs/python3-rsistent/template
+++ b/srcpkgs/python3-rsistent/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-rsistent'
 pkgname=python3-rsistent
 version=0.15.4
-revision=1
+revision=2
 wrksrc="pyrsistent-${version}"
 build_style=python3-module
 pycompile_module="pyrsistent"

From 7d4c9082b7051c6ce978ca21f34f138189c7f2d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 465/872] python3-rss2email: rebuild for Python 3.8.

---
 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 d07984d33d8..34e7d4e65a6 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.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="rss2email-${version}"
 build_style=python3-module

From a0a5e6df8a02d98f37c3c22c043adb325c8a8a62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 466/872] python-ruamel.yaml: rebuild for Python 3.8.

---
 srcpkgs/python-ruamel.yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ruamel.yaml/template b/srcpkgs/python-ruamel.yaml/template
index d86ddfc67c9..789f8a7acd2 100644
--- a/srcpkgs/python-ruamel.yaml/template
+++ b/srcpkgs/python-ruamel.yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ruamel.yaml'
 pkgname=python-ruamel.yaml
 version=0.15.92
-revision=1
+revision=2
 wrksrc="ruamel.yaml-${version}"
 build_style=python-module
 pycompile_module="ruamel/yaml"

From 6b579f083949bbd67a78d66ae983de1f36f03a82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 467/872] python3-s-tui: rebuild for Python 3.8.

---
 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 4c7db6ff3c9..85a945b1b09 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=0.8.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="s-tui-${version}"
 build_style=python3-module

From 5cc92799a690ba40dd26192e3f0182e07089683a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 468/872] python-s3transfer: rebuild for Python 3.8.

---
 srcpkgs/python-s3transfer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-s3transfer/template b/srcpkgs/python-s3transfer/template
index e306c3c3b1a..dd92eeff657 100644
--- a/srcpkgs/python-s3transfer/template
+++ b/srcpkgs/python-s3transfer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-s3transfer'
 pkgname=python-s3transfer
 version=0.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="s3transfer-${version}"
 build_style=python-module

From 2ec5386706a289e510b5b03e33cf74e0a23596a6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 469/872] python3-saml2: rebuild for Python 3.8.

---
 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 e94602a82ea..c0dabb5e9d0 100644
--- a/srcpkgs/python3-saml2/template
+++ b/srcpkgs/python3-saml2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-saml2'
 pkgname=python3-saml2
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysaml2-${version}"
 build_style=python3-module

From e856d28eb580f0af5442d11d24ffacdd7fade12b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 470/872] python-scandir: rebuild for Python 3.8.

---
 srcpkgs/python-scandir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scandir/template b/srcpkgs/python-scandir/template
index 774fac91b8f..b02fe6d0281 100644
--- a/srcpkgs/python-scandir/template
+++ b/srcpkgs/python-scandir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scandir'
 pkgname=python-scandir
 version=1.10.0
-revision=2
+revision=3
 wrksrc="scandir-${version}"
 build_style=python-module
 pycompile_module="scandir.py"

From 3b5e1eeb2ce0519b51592cebffc1bd89dce0f96c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 471/872] python3-scard: rebuild for Python 3.8.

---
 srcpkgs/python3-scard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scard/template b/srcpkgs/python3-scard/template
index 793f144a74b..279419ac3e3 100644
--- a/srcpkgs/python3-scard/template
+++ b/srcpkgs/python3-scard/template
@@ -2,7 +2,7 @@
 pkgname=python3-scard
 _pkgname=pyscard
 version=1.9.8
-revision=1
+revision=2
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module
 pycompile_module=smartcard

From f62ba61eaebce26c267e2d453d8e0ea6e005a285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 472/872] python3-scikit-learn: rebuild for Python 3.8.

---
 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 73799b9f420..8ac82167832 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.20.4
-revision=1
+revision=2
 wrksrc="scikit-learn-${version}"
 build_style=python3-module
 pycompile_module="sklearn"

From ccf4f6aa1bd0ba8aaf9499dcacb1320a77221004 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 473/872] python3-scipy: rebuild for Python 3.8.

---
 srcpkgs/python3-scipy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scipy/template b/srcpkgs/python3-scipy/template
index 291ac3734f1..2cef9ac33e1 100644
--- a/srcpkgs/python3-scipy/template
+++ b/srcpkgs/python3-scipy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-scipy'
 pkgname=python3-scipy
 version=1.3.1
-revision=1
+revision=2
 wrksrc="scipy-${version}"
 build_style=python3-module
 pycompile_module="scipy"

From 04cbe0c6403a4ecd9cda36e10bba5d06e472823d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 474/872] python-scour: rebuild for Python 3.8.

---
 srcpkgs/python-scour/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scour/template b/srcpkgs/python-scour/template
index b78cf37f057..0db5b157ce1 100644
--- a/srcpkgs/python-scour/template
+++ b/srcpkgs/python-scour/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scour'
 pkgname=python-scour
 version=0.37
-revision=1
+revision=2
 archs=noarch
 wrksrc="scour-${version}"
 build_style=python-module

From 0fd08871993ece59d562feb8472d05249ae1d76a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 475/872] python3-scruffy: rebuild for Python 3.8.

---
 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 e797b110f42..62a21a74eca 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="scruffy-${version}"
 build_style=python3-module

From 65cb259cf8f67f78fe484e4423fe0006aae17045 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 476/872] python-send2trash: rebuild for Python 3.8.

---
 srcpkgs/python-send2trash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-send2trash/template b/srcpkgs/python-send2trash/template
index 49c3a2b3d77..94f56545695 100644
--- a/srcpkgs/python-send2trash/template
+++ b/srcpkgs/python-send2trash/template
@@ -1,7 +1,7 @@
 # Template file for 'python-send2trash'
 pkgname=python-send2trash
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="send2trash-${version}"
 build_style=python-module

From 04a4413d706d49df8a415b9714091b0e4bb0fdfa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 477/872] python-serpent: rebuild for Python 3.8.

---
 srcpkgs/python-serpent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-serpent/template b/srcpkgs/python-serpent/template
index b60d390c1ab..a40f0d44515 100644
--- a/srcpkgs/python-serpent/template
+++ b/srcpkgs/python-serpent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-serpent'
 pkgname=python-serpent
 version=1.28
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38131f811a874463c71c55408ef6e629166a5b8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 478/872] python-service_identity: rebuild for Python 3.8.

---
 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 eae084c858f..e21a1520a75 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=1
+revision=2
 archs=noarch
 wrksrc="service_identity-${version}"
 build_style=python-module

From 9a538d41d8b848da9da43cd5d6f80428b7208be8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 479/872] setconf: rebuild for Python 3.8.

---
 srcpkgs/setconf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/setconf/template b/srcpkgs/setconf/template
index a3d22376a5b..1911c558c77 100644
--- a/srcpkgs/setconf/template
+++ b/srcpkgs/setconf/template
@@ -1,7 +1,7 @@
 # Template file for 'setconf'
 pkgname=setconf
 version=0.7.6
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="setconf.py"

From aacff3894cc42a49ab1becc06f64f23197302443 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 480/872] python-setproctitle: rebuild for Python 3.8.

---
 srcpkgs/python-setproctitle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setproctitle/template b/srcpkgs/python-setproctitle/template
index d0d41ae888d..c47e3a9db53 100644
--- a/srcpkgs/python-setproctitle/template
+++ b/srcpkgs/python-setproctitle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setproctitle'
 pkgname=python-setproctitle
 version=1.1.10
-revision=5
+revision=6
 wrksrc="setproctitle-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e2b8c2ac8d355cdb0f221b80ab39e2ef92beb3e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 481/872] python-setuptools: rebuild for Python 3.8.

---
 srcpkgs/python-setuptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setuptools/template b/srcpkgs/python-setuptools/template
index 382a9b45bcd..a172f8e8e09 100644
--- a/srcpkgs/python-setuptools/template
+++ b/srcpkgs/python-setuptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setuptools'
 pkgname=python-setuptools
 version=41.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python-module

From 5feb793ba33633318f41644f84b5ffd5428e2d4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 482/872] python-sh: rebuild for Python 3.8.

---
 srcpkgs/python-sh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sh/template b/srcpkgs/python-sh/template
index 1826986b25c..76985dc1f01 100644
--- a/srcpkgs/python-sh/template
+++ b/srcpkgs/python-sh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sh'
 pkgname=python-sh
 version=1.12.14
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From f0cfe151eea6fcf86d1196385a1ac0057a65ab48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 483/872] python-shapely: rebuild for Python 3.8.

---
 srcpkgs/python-shapely/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-shapely/template b/srcpkgs/python-shapely/template
index 25cc875a02c..114726838f9 100644
--- a/srcpkgs/python-shapely/template
+++ b/srcpkgs/python-shapely/template
@@ -1,7 +1,7 @@
 # Template file for 'python-shapely'
 pkgname=python-shapely
 version=1.7a1
-revision=2
+revision=3
 wrksrc="Shapely-${version}"
 build_style=python-module
 pycompile_module="shapely"

From 0908618383925caf43243de8097dbf6491149f8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 484/872] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index d552ce8432d..1f9c8043b46 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=4
+revision=5
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From 14af86f199e28c6eae170b10c1c662bd0184b73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 485/872] shiboken2: rebuild for Python 3.8.

---
 srcpkgs/shiboken2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken2/template b/srcpkgs/shiboken2/template
index 394d9ba4f94..a08edf3f2a0 100644
--- a/srcpkgs/shiboken2/template
+++ b/srcpkgs/shiboken2/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken2'
 pkgname=shiboken2
 version=5.11.2
-revision=2
+revision=3
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From 9ea535c3baf70c69a2bbe07d057742af1877d648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 486/872] python3-shodan: rebuild for Python 3.8.

---
 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 858a0b921f8..033b5a269ff 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.19.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="shodan-python-${version}"
 build_style=python3-module

From 76805ea236fc7f4ecd5948a492413602efff91e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 487/872] python3-signedjson: rebuild for Python 3.8.

---
 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 6f6fb339fd2..d8f9b06b22f 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-signedjson-${version}"
 build_style=python3-module

From 12e9d209470a13cdd9063e5544ffd00c5952138e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 488/872] python-simplebayes: rebuild for Python 3.8.

---
 srcpkgs/python-simplebayes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplebayes/template b/srcpkgs/python-simplebayes/template
index e76b94ad549..6c95222fa7e 100644
--- a/srcpkgs/python-simplebayes/template
+++ b/srcpkgs/python-simplebayes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplebayes'
 pkgname=python-simplebayes
 version=1.5.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="simplebayes-${version}"
 build_style=python-module

From d1ad830144a3e370bbac6e82affb1d06805dfdbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 489/872] python-simplegeneric: rebuild for Python 3.8.

---
 srcpkgs/python-simplegeneric/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplegeneric/template b/srcpkgs/python-simplegeneric/template
index 3dc4e1dda94..f352387fa1f 100644
--- a/srcpkgs/python-simplegeneric/template
+++ b/srcpkgs/python-simplegeneric/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplegeneric'
 pkgname=python-simplegeneric
 version=0.8.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="simplegeneric-${version}"
 build_style=python-module

From f6d990c1a1436b305f8b5af6f58c1f6430d96dc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 490/872] python-simplejson: rebuild for Python 3.8.

---
 srcpkgs/python-simplejson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplejson/template b/srcpkgs/python-simplejson/template
index b453ae952ba..1b8523d0d46 100644
--- a/srcpkgs/python-simplejson/template
+++ b/srcpkgs/python-simplejson/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplejson'
 pkgname=python-simplejson
 version=3.16.1
-revision=2
+revision=3
 wrksrc="simplejson-${version}"
 build_style=python-module
 pycompile_module="simplejson"

From b6f0878a2894ffdd731251a64a26cb1ddf40038a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 491/872] sip: rebuild for Python 3.8.

---
 srcpkgs/sip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sip/template b/srcpkgs/sip/template
index 9d09b823bb6..0e8a81000b1 100644
--- a/srcpkgs/sip/template
+++ b/srcpkgs/sip/template
@@ -1,7 +1,7 @@
 # Template file for 'sip'
 pkgname=sip
 version=4.19.18
-revision=1
+revision=2
 wrksrc="sip-${version}"
 hostmakedepends="python-devel python3-devel"
 makedepends="${hostmakedepends}"

From 5f24e47fb2b044495bbf0ee108d18220ad3b3bd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 492/872] python-six: rebuild for Python 3.8.

---
 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 c6d91f5ece9..a25323caa2a 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.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="six-${version}"
 build_style=python-module

From 09784cf129c5a66b731964fcda119a53dd9dbb7b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 493/872] python3-slixmpp: rebuild for Python 3.8.

---
 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 db367c3d0ab..cbbde6f394b 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.4.2
-revision=1
+revision=2
 wrksrc="slixmpp-${version}"
 build_style=python3-module
 pycompile_module="slixmpp"

From 5e4eb88ccd16957dc33f6923ae3a72151385e9ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 494/872] python3-slugify: rebuild for Python 3.8.

---
 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 44d37f2aed7..012bb98f063 100644
--- a/srcpkgs/python3-slugify/template
+++ b/srcpkgs/python3-slugify/template
@@ -3,7 +3,7 @@ pkgname=python3-slugify
 # Please don't update. Only required by Transifx-client,
 # doesn't work with newer versions
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-slugify-${version}"
 build_style=python3-module

From 3673d2d0b57421bb69e3ed7407630c26169fab96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 495/872] python-smbc: rebuild for Python 3.8.

---
 srcpkgs/python-smbc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smbc/template b/srcpkgs/python-smbc/template
index abc745f8982..6a280139a25 100644
--- a/srcpkgs/python-smbc/template
+++ b/srcpkgs/python-smbc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smbc'
 pkgname=python-smbc
 version=1.0.16
-revision=1
+revision=2
 wrksrc="pysmbc-${version}"
 build_style=python-module
 pycompile_module="smbc"

From 2e7eca88dff9a562419fb01bfafbdaf55a6c2bd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 496/872] python-smmap: rebuild for Python 3.8.

---
 srcpkgs/python-smmap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smmap/template b/srcpkgs/python-smmap/template
index 4aa0c37ff40..8c8ea952285 100644
--- a/srcpkgs/python-smmap/template
+++ b/srcpkgs/python-smmap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smmap'
 pkgname=python-smmap
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="smmap-${version}"
 build_style=python-module

From fd787d6092a892885c1a37ff836d919c3268746b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 497/872] python-snakeoil: rebuild for Python 3.8.

---
 srcpkgs/python-snakeoil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snakeoil/template b/srcpkgs/python-snakeoil/template
index 9c98461c555..79e964d9254 100644
--- a/srcpkgs/python-snakeoil/template
+++ b/srcpkgs/python-snakeoil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snakeoil'
 pkgname=python-snakeoil
 version=0.7.5
-revision=2
+revision=3
 wrksrc="snakeoil-${version}"
 build_style=python-module
 pycompile_module="snakeoil"

From c023c48bda41f4e9b16718923037b0abc4c9cc57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 498/872] python-snappy: rebuild for Python 3.8.

---
 srcpkgs/python-snappy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snappy/template b/srcpkgs/python-snappy/template
index ac386f64fae..b1870cbe681 100644
--- a/srcpkgs/python-snappy/template
+++ b/srcpkgs/python-snappy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snappy'
 pkgname=python-snappy
 version=0.5.4
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="snappy"
 hostmakedepends="python-setuptools python3-setuptools"

From cf3b5c203b490e3aa45e74d0cef8b0d0c4d9cbd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 499/872] python-snowballstemmer: rebuild for Python 3.8.

---
 srcpkgs/python-snowballstemmer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snowballstemmer/template b/srcpkgs/python-snowballstemmer/template
index 6c21632cffa..221478860e5 100644
--- a/srcpkgs/python-snowballstemmer/template
+++ b/srcpkgs/python-snowballstemmer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snowballstemmer'
 pkgname=python-snowballstemmer
 version=1.2.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="snowballstemmer-${version}"
 build_style=python-module

From ebbd083848ced4227417bedacb81db1e46b3b0d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 500/872] python-socketIO-client: rebuild for Python 3.8.

---
 srcpkgs/python-socketIO-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-socketIO-client/template b/srcpkgs/python-socketIO-client/template
index 32fdac4117d..9495d7cf40b 100644
--- a/srcpkgs/python-socketIO-client/template
+++ b/srcpkgs/python-socketIO-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-socketIO-client'
 pkgname=python-socketIO-client
 version=0.7.2
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="socketIO_client"

From bf4912c1b4d342f253c99ee2ff30408cc72ef150 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 501/872] python3-sortedcontainers: rebuild for Python 3.8.

---
 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 2b531ded9b6..41d87d4ebd0 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.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="sortedcontainers-${version}"
 build_style=python3-module

From d111b9221a51cf160ffadb598d8ab186bac3562f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 502/872] python-soupsieve: rebuild for Python 3.8.

---
 srcpkgs/python-soupsieve/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-soupsieve/template b/srcpkgs/python-soupsieve/template
index 586553ca759..63b65c5910f 100644
--- a/srcpkgs/python-soupsieve/template
+++ b/srcpkgs/python-soupsieve/template
@@ -1,7 +1,7 @@
 # Template file for 'python-soupsieve'
 pkgname=python-soupsieve
 version=1.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="soupsieve-${version}"
 build_style=python-module

From 505955408532e39107891c66bb40c986d8a5da3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 503/872] python3-spake2: rebuild for Python 3.8.

---
 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 ff83afed1d6..dc0cdced747 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=1
+revision=2
 archs=noarch
 wrksrc="python-spake2-${version}"
 build_style=python3-module

From ed28cd6c33b5a607891182e27d4edc4b33e42c75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 504/872] python-sphinx_rtd_theme: rebuild for Python 3.8.

---
 srcpkgs/python-sphinx_rtd_theme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinx_rtd_theme/template b/srcpkgs/python-sphinx_rtd_theme/template
index 90def1c9d1d..ebd4f13da8f 100644
--- a/srcpkgs/python-sphinx_rtd_theme/template
+++ b/srcpkgs/python-sphinx_rtd_theme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinx_rtd_theme'
 pkgname=python-sphinx_rtd_theme
 version=0.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinx_rtd_theme-${version}"
 build_style=python-module

From dc5c184f3eb8653ed7620ead5c8c28a67daed07d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 505/872] python-sphinxcontrib: rebuild for Python 3.8.

---
 srcpkgs/python-sphinxcontrib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib/template b/srcpkgs/python-sphinxcontrib/template
index ce3befc56d7..c6789cc77f5 100644
--- a/srcpkgs/python-sphinxcontrib/template
+++ b/srcpkgs/python-sphinxcontrib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib'
 pkgname=python-sphinxcontrib
 version=1.0
-revision=2
+revision=3
 archs=noarch
 create_wrksrc=yes
 pycompile_module="sphinxcontrib"

From 044129ada15eeb9695b554976702e8af049dcfd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 506/872] python-sphinxcontrib-websupport: rebuild for Python
 3.8.

---
 srcpkgs/python-sphinxcontrib-websupport/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib-websupport/template b/srcpkgs/python-sphinxcontrib-websupport/template
index 2236e50b25b..5387dec6519 100644
--- a/srcpkgs/python-sphinxcontrib-websupport/template
+++ b/srcpkgs/python-sphinxcontrib-websupport/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib-websupport'
 pkgname=python-sphinxcontrib-websupport
 version=1.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinxcontrib-websupport-${version}"
 build_style=python-module

From d4fb3b78447ca7349e0a94033b436c3e0caa5dc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 507/872] python-sqlalchemy-migrate: rebuild for Python 3.8.

---
 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 cfdf6166695..bb002660c0f 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=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 863a48d9543b2461c699350ad32bb2ae925e30c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 508/872] python-sqlparse: rebuild for Python 3.8.

---
 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 29a477db392..0f8c6f8ea2e 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=1
+revision=2
 archs=noarch
 wrksrc="sqlparse-${version}"
 build_style=python-module

From b477355bf26b723b8ab7cab61902be1e4aaee7bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 509/872] python-stem: rebuild for Python 3.8.

---
 srcpkgs/python-stem/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index e04ae0a848c..e16e79d84bb 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stem'
 pkgname=python-stem
 version=1.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stem-${version/b/}"
 build_style=python-module

From 82d435bdfc12ea7b4a3dabd17da5113470bffe26 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 510/872] python-stevedore: rebuild for Python 3.8.

---
 srcpkgs/python-stevedore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stevedore/template b/srcpkgs/python-stevedore/template
index 281538211af..4f781304d3f 100644
--- a/srcpkgs/python-stevedore/template
+++ b/srcpkgs/python-stevedore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stevedore'
 pkgname=python-stevedore
 version=1.30.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stevedore-${version}"
 build_style=python-module

From 2afe8f7a4ce71437484d9258f44ead34ae2f6647 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 511/872] python-stormssh: rebuild for Python 3.8.

---
 srcpkgs/python-stormssh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stormssh/template b/srcpkgs/python-stormssh/template
index 250e838e582..11f63f67bba 100644
--- a/srcpkgs/python-stormssh/template
+++ b/srcpkgs/python-stormssh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stormssh'
 pkgname=python-stormssh
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=storm-${version}
 build_style=python-module

From 754addaa6845cd505b5d744fa4e54a66dba9c4ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 512/872] python-subliminal: rebuild for Python 3.8.

---
 srcpkgs/python-subliminal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-subliminal/template b/srcpkgs/python-subliminal/template
index 035ca844880..216c11bb4c0 100644
--- a/srcpkgs/python-subliminal/template
+++ b/srcpkgs/python-subliminal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-subliminal'
 pkgname=python-subliminal
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="subliminal-${version}"
 build_style=python-module

From da488d7b04fb3b00046be4293c33ae0809dad8e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 513/872] python-sympy: rebuild for Python 3.8.

---
 srcpkgs/python-sympy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sympy/template b/srcpkgs/python-sympy/template
index 21d8cf69840..d41c8a392b0 100644
--- a/srcpkgs/python-sympy/template
+++ b/srcpkgs/python-sympy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sympy'
 pkgname=python-sympy
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="sympy-${version}"
 build_style=python-module

From 78857098e3058d7f0df7ece8be24b84196d16921 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 514/872] python-tables: rebuild for Python 3.8.

---
 srcpkgs/python-tables/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tables/template b/srcpkgs/python-tables/template
index 644ae3d1a35..5f61fe8fb88 100644
--- a/srcpkgs/python-tables/template
+++ b/srcpkgs/python-tables/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tables'
 pkgname=python-tables
 version=3.5.2
-revision=1
+revision=2
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="tables"

From 45955cd565bccabbc642dce6684af05ad7651ba5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 515/872] python3-tabulate: rebuild for Python 3.8.

---
 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 19b61edd88c..6f142077300 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="tabulate-${version}"
 build_style=python3-module

From 285f369cadcf0d14f66db8045bb3fb979e69937f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 516/872] python-tempita: rebuild for Python 3.8.

---
 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 9e7123fbd9d..c1c75ee1cac 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=3
+revision=4
 archs=noarch
 wrksrc="Tempita-${version}"
 build_style=python-module

From efa04f85df83993e48813e00587c05cd6c722387 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 517/872] python-tempora: rebuild for Python 3.8.

---
 srcpkgs/python-tempora/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tempora/template b/srcpkgs/python-tempora/template
index fa1cbd4fbd1..866d163f367 100644
--- a/srcpkgs/python-tempora/template
+++ b/srcpkgs/python-tempora/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tempora'
 pkgname=python-tempora
 version=1.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tempora-${version}"
 build_style=python-module

From 783b09196fc04d62a7e7a220ffffc941acedfeeb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 518/872] python-termcolor: rebuild for Python 3.8.

---
 srcpkgs/python-termcolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-termcolor/template b/srcpkgs/python-termcolor/template
index 877e5e59d9b..73c18fc79eb 100644
--- a/srcpkgs/python-termcolor/template
+++ b/srcpkgs/python-termcolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-termcolor'
 pkgname=python-termcolor
 version=1.1.0
-revision=5
+revision=6
 archs=noarch
 wrksrc="termcolor-${version}"
 build_style=python-module

From 469ef1b462bbb9fb2d5d97b38e357b662f5009d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 519/872] python-terminado: rebuild for Python 3.8.

---
 srcpkgs/python-terminado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-terminado/template b/srcpkgs/python-terminado/template
index cdfe6163991..d649364d88d 100644
--- a/srcpkgs/python-terminado/template
+++ b/srcpkgs/python-terminado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-terminado'
 pkgname=python-terminado
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="terminado-${version}"
 build_style=python-module

From ced3b80cce126ab9d23dd2a4bc9505e23b5a4888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 520/872] python3-terminaltables: rebuild for Python 3.8.

---
 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 60ada7ffcb6..4f781eab76d 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=1
+revision=2
 archs=noarch
 wrksrc="terminaltables-${version}"
 build_style=python3-module

From 7a90fec1dbe0347ede0762e747d8edf378bd497c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 521/872] python-testpath: rebuild for Python 3.8.

---
 srcpkgs/python-testpath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-testpath/template b/srcpkgs/python-testpath/template
index bac7270fd40..abfc59900c0 100644
--- a/srcpkgs/python-testpath/template
+++ b/srcpkgs/python-testpath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-testpath'
 pkgname=python-testpath
 version=0.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="testpath-${version}"
 build_style=python-module

From f8761f2f7116f9b2691807d35d9836a34fbbbf32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 522/872] python3-text-unidecode: rebuild for Python 3.8.

---
 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 77163d9e0b6..b3b5aa95575 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="text-unidecode-${version}"
 build_style=python3-module

From 2d2f99664b0644e22e4876b9d54048008a392289 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 523/872] python-texttable: rebuild for Python 3.8.

---
 srcpkgs/python-texttable/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-texttable/template b/srcpkgs/python-texttable/template
index a9c5ec66db1..24bac87af6a 100644
--- a/srcpkgs/python-texttable/template
+++ b/srcpkgs/python-texttable/template
@@ -1,7 +1,7 @@
 # Template file for 'python-texttable'
 pkgname=python-texttable
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="texttable-${version}"
 build_style=python-module

From c671c144e8fe81895f6995347d19725f72165b25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 524/872] python3-tinycss: rebuild for Python 3.8.

---
 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 91fda6f808d..3b4717c234e 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=1
+revision=2
 archs=noarch
 wrksrc=tinycss-${version}
 build_style=python3-module

From 9aa3e8105128dc5e3b86a83bd0ae76e7d9c9cf86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 525/872] python-tmuxp: rebuild for Python 3.8.

---
 srcpkgs/python-tmuxp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tmuxp/template b/srcpkgs/python-tmuxp/template
index 00c86730cbe..45b4a9772b2 100644
--- a/srcpkgs/python-tmuxp/template
+++ b/srcpkgs/python-tmuxp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tmuxp'
 pkgname=python-tmuxp
 version=1.5.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="tmuxp-${version}"
 build_style=python-module

From 995158f34c29d704b44eae2b32df801023781096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 526/872] python-toml: rebuild for Python 3.8.

---
 srcpkgs/python-toml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-toml/template b/srcpkgs/python-toml/template
index 0eee1b0b2c3..2fd6eaa0cea 100644
--- a/srcpkgs/python-toml/template
+++ b/srcpkgs/python-toml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-toml'
 pkgname=python-toml
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="toml-${version}"
 build_style=python-module

From 6270afd962719dd0e9b876b40ab7bf9be9936cf5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 527/872] python-tornado: rebuild for Python 3.8.

---
 srcpkgs/python-tornado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tornado/template b/srcpkgs/python-tornado/template
index 7e5700177f5..bd558d251f5 100644
--- a/srcpkgs/python-tornado/template
+++ b/srcpkgs/python-tornado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tornado'
 pkgname=python-tornado
 version=5.1.1
-revision=1
+revision=2
 wrksrc="tornado-${version}"
 build_style=python-module
 pycompile_module="tornado"

From cd9e416288ae101465f91c75453326fdead7d148 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 528/872] python-tqdm: rebuild for Python 3.8.

---
 srcpkgs/python-tqdm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tqdm/template b/srcpkgs/python-tqdm/template
index 69369bfd6b9..ef1f07127ad 100644
--- a/srcpkgs/python-tqdm/template
+++ b/srcpkgs/python-tqdm/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tqdm'
 pkgname=python-tqdm
 version=4.36.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tqdm-${version}"
 build_style=python-module

From 4ef8d34c3ab05cf43591d92220fc001007644a6d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 529/872] python-traitlets: rebuild for Python 3.8.

---
 srcpkgs/python-traitlets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-traitlets/template b/srcpkgs/python-traitlets/template
index d2d1b85edb6..797dd0268da 100644
--- a/srcpkgs/python-traitlets/template
+++ b/srcpkgs/python-traitlets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-traitlets'
 pkgname=python-traitlets
 version=4.3.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="traitlets-${version}"
 build_style=python-module

From f41edcb16535bb92b415439644ee01a61da14478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 530/872] python3-transifex-client: rebuild for Python 3.8.

---
 srcpkgs/python3-transifex-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-transifex-client/template b/srcpkgs/python3-transifex-client/template
index 77ca15313e0..5ea767b5a7d 100644
--- a/srcpkgs/python3-transifex-client/template
+++ b/srcpkgs/python3-transifex-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-transifex-client'
 pkgname=python3-transifex-client
 version=0.13.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="transifex-client-${version}"
 build_style=python3-module

From d2c27a7fe61e206ccbf655146feec32e4b13cfc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 531/872] python3-treq: rebuild for Python 3.8.

---
 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 8f210d13489..e46e1e7e7a5 100644
--- a/srcpkgs/python3-treq/template
+++ b/srcpkgs/python3-treq/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-treq'
 pkgname=python3-treq
 version=18.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="treq-${version}"
 build_style=python3-module

From 26b5427ba0e26d8712ebe081a774396e3ea39d76 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 532/872] python-ttystatus: rebuild for Python 3.8.

---
 srcpkgs/python-ttystatus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ttystatus/template b/srcpkgs/python-ttystatus/template
index 9fbefad3461..43e87ddcdf0 100644
--- a/srcpkgs/python-ttystatus/template
+++ b/srcpkgs/python-ttystatus/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ttystatus'
 pkgname=python-ttystatus
 version=0.38
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="ttystatus"

From dbf349fac2110dc33ad6d676748e46240dec1fbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 533/872] python-twitter: rebuild for Python 3.8.

---
 srcpkgs/python-twitter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-twitter/template b/srcpkgs/python-twitter/template
index c299b28dedf..e5e7194078a 100644
--- a/srcpkgs/python-twitter/template
+++ b/srcpkgs/python-twitter/template
@@ -1,7 +1,7 @@
 # Template file for 'python-twitter'
 pkgname=python-twitter
 version=3.5
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="twitter"

From 58eab12e88f689c694ef474e09d2266b77b5bcc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 534/872] python3-txacme: rebuild for Python 3.8.

---
 srcpkgs/python3-txacme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-txacme/template b/srcpkgs/python3-txacme/template
index e6becf593e7..c678addda4d 100644
--- a/srcpkgs/python3-txacme/template
+++ b/srcpkgs/python3-txacme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txacme'
 pkgname=python3-txacme
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="txacme-${version}"
 build_style=python3-module

From a1a3464258c255e0b73cbdb47e0337d3b8af473e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 535/872] python3-txaio: rebuild for Python 3.8.

---
 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 fa13338cd30..8163f5c90fd 100644
--- a/srcpkgs/python3-txaio/template
+++ b/srcpkgs/python3-txaio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txaio'
 pkgname=python3-txaio
 version=18.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="txaio-${version}"
 build_style=python3-module

From 66d08c9f4945499ccd01b127d7ec1f8cfd468dd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 536/872] python3-txtorcon: rebuild for Python 3.8.

---
 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 3018a65e457..a10ab59c582 100644
--- a/srcpkgs/python3-txtorcon/template
+++ b/srcpkgs/python3-txtorcon/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txtorcon'
 pkgname=python3-txtorcon
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="txtorcon-${version}"
 build_style=python3-module

From f3bf9db3f8b699c67eebc7fa0278fca9de892d75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 537/872] python3-typed-ast: update to 1.4.0.

---
 srcpkgs/python3-typed-ast/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-typed-ast/template b/srcpkgs/python3-typed-ast/template
index ec5b5b9df11..b38f0fe065c 100644
--- a/srcpkgs/python3-typed-ast/template
+++ b/srcpkgs/python3-typed-ast/template
@@ -1,8 +1,8 @@
 # Template file for 'python3-typed-ast'
 pkgname=python3-typed-ast
-version=1.3.4
+version=1.4.0
 revision=1
-wrksrc="typed-ast-${version}"
+wrksrc="typed_ast-${version}"
 build_style=python3-module
 pycompile_module="typed_ast"
 hostmakedepends="python3-devel python3-setuptools"
@@ -11,6 +11,6 @@ short_desc="Ast module with type comment support"
 maintainer="whoami <whoami@systemli.org>"
 license="Apache-2.0"
 homepage="https://github.com/python/typed_ast"
-distfiles="${PYPI_SITE}/t/typed-ast/typed-ast-${version}.tar.gz"
-checksum=68c362848d9fb71d3c3e5f43c09974a0ae319144634e7a47db62f0f2a54a7fa7
+distfiles="${PYPI_SITE}/t/typed-ast/typed_ast-${version}.tar.gz"
+checksum=66480f95b8167c9c5c5c87f32cf437d585937970f3fc24386f313a4c97b44e34
 nocross="https://travis-ci.org/void-linux/void-packages/jobs/509366923#L1009"

From d977434aa35e2c6bc03c5db7514f5409eb21a2a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 538/872] python3-typing_extensions: rebuild for Python 3.8.

---
 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 ab96df4eb2d..605af46216d 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=3.6.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module

From d1368b489e196a385edf9b15df4da773505f8a5e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 539/872] python-tzlocal: rebuild for Python 3.8.

---
 srcpkgs/python-tzlocal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tzlocal/template b/srcpkgs/python-tzlocal/template
index 396eada3982..684d2a21b40 100644
--- a/srcpkgs/python-tzlocal/template
+++ b/srcpkgs/python-tzlocal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tzlocal'
 pkgname=python-tzlocal
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tzlocal-${version}"
 build_style=python-module

From 0ec72579de99edead05daf85e7cac5e0e2ab641b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 540/872] python-unittest-mixins: rebuild for Python 3.8.

---
 srcpkgs/python-unittest-mixins/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-unittest-mixins/template b/srcpkgs/python-unittest-mixins/template
index 6f7c7204112..2ff5c497523 100644
--- a/srcpkgs/python-unittest-mixins/template
+++ b/srcpkgs/python-unittest-mixins/template
@@ -1,7 +1,7 @@
 # Template file for 'python-unittest-mixins'
 pkgname=python-unittest-mixins
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From a5e3289470d7f0e25e09237aa9463d28817818c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 541/872] python3-unpaddedbase64: rebuild for Python 3.8.

---
 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 37df2c1d642..06a47db3b64 100644
--- a/srcpkgs/python3-unpaddedbase64/template
+++ b/srcpkgs/python3-unpaddedbase64/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-unpaddedbase64'
 pkgname=python3-unpaddedbase64
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-unpaddedbase64-${version}"
 build_style=python3-module

From 13043751d10b741546f419a7e9089a5b252fd5c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 542/872] python-urbandict: rebuild for Python 3.8.

---
 srcpkgs/python-urbandict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urbandict/template b/srcpkgs/python-urbandict/template
index ff09e963fa7..ed359c744be 100644
--- a/srcpkgs/python-urbandict/template
+++ b/srcpkgs/python-urbandict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urbandict'
 pkgname=python-urbandict
 version=0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="urbandict-${version}"
 build_style=python-module

From a15bf0893e7a65a070751099b3ddca9172b49912 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 543/872] python-uritemplate: rebuild for Python 3.8.

---
 srcpkgs/python-uritemplate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-uritemplate/template b/srcpkgs/python-uritemplate/template
index 7a530fee03b..cdcda419efe 100644
--- a/srcpkgs/python-uritemplate/template
+++ b/srcpkgs/python-uritemplate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-uritemplate'
 pkgname=python-uritemplate
 version=3.0.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 43c97a015ea83b2b0934ea864a84b324ec83f31a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 544/872] python3-urlgrabber: rebuild for Python 3.8.

---
 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 087087d5ed1..eef67c8e13c 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=1
+revision=2
 archs=noarch
 wrksrc="urlgrabber-${version}"
 build_style=python3-module

From 016dbcff2bb0c1709814f4da4fe214d551e3d4cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 545/872] python-urllib3: rebuild for Python 3.8.

---
 srcpkgs/python-urllib3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urllib3/template b/srcpkgs/python-urllib3/template
index 8056518c9c1..1ff21f7555d 100644
--- a/srcpkgs/python-urllib3/template
+++ b/srcpkgs/python-urllib3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urllib3'
 pkgname=python-urllib3
 version=1.25.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="urllib3-${version}"
 build_style=python-module

From 9629da352be38a0f14bcb680c7fc05dd1d1167f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 546/872] python-urwid: rebuild for Python 3.8.

---
 srcpkgs/python-urwid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwid/template b/srcpkgs/python-urwid/template
index ae6722b1135..7adf8b76b96 100644
--- a/srcpkgs/python-urwid/template
+++ b/srcpkgs/python-urwid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwid'
 pkgname=python-urwid
 version=2.0.1
-revision=2
+revision=3
 wrksrc="urwid-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"

From 4be978b1173afce93e7ff39f6e577059f4c7dd4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 547/872] python-urwidtrees: rebuild for Python 3.8.

---
 srcpkgs/python-urwidtrees/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwidtrees/template b/srcpkgs/python-urwidtrees/template
index be0e906addf..62d214489e2 100644
--- a/srcpkgs/python-urwidtrees/template
+++ b/srcpkgs/python-urwidtrees/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwidtrees'
 pkgname=python-urwidtrees
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="urwidtrees-${version}"
 build_style=python-module

From c9f3ad0ed793593060952aa365e888244dfd07e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 548/872] python3-usb: rebuild for Python 3.8.

---
 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 a081ee5ba76..d26c24df669 100644
--- a/srcpkgs/python3-usb/template
+++ b/srcpkgs/python3-usb/template
@@ -2,7 +2,7 @@
 pkgname=python3-usb
 _pkgname=pyusb
 version=1.0.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From 454ef49754696a81de599e7fa6cf9cab31ccbc31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 549/872] python-utils: rebuild for Python 3.8.

---
 srcpkgs/python-utils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-utils/template b/srcpkgs/python-utils/template
index e881e70c0f0..6745df121a6 100644
--- a/srcpkgs/python-utils/template
+++ b/srcpkgs/python-utils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-utils'
 pkgname=python-utils
 version=2.3.0
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 wrksrc="python-utils-${version}"

From eef5c75b93453defdcb8def5b34c20f20cda0fc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 550/872] python3-validators: rebuild for Python 3.8.

---
 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 29b9fc74c30..6d9da94c4bb 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.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="validators-${version}"
 build_style=python3-module

From 53ce0ff21de84f26405d0314002bb11e85903128 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 551/872] python3-vdf: rebuild for Python 3.8.

---
 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 44c635ecdd6..88bd521beaa 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.2
-revision=1
+revision=2
 wrksrc=vdf-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From f720d6ed8267fa4b27a7ce83dd3a265a18cd13b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 552/872] python-vint: rebuild for Python 3.8.

---
 srcpkgs/python-vint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vint/template b/srcpkgs/python-vint/template
index 4ca693f7eb2..62c663bf18e 100644
--- a/srcpkgs/python-vint/template
+++ b/srcpkgs/python-vint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vint'
 pkgname=python-vint
 version=0.3.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="vim-vint-${version}"
 build_style=python-module

From 573eadbcb861065b712050cf6e7fd200c33a73b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 553/872] python-virtualenv: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv/template b/srcpkgs/python-virtualenv/template
index 1f9166e79a2..cdeda28c53e 100644
--- a/srcpkgs/python-virtualenv/template
+++ b/srcpkgs/python-virtualenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv'
 pkgname=python-virtualenv
 version=16.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="virtualenv-${version}"
 build_style=python-module

From 25eda2949787b488dfc7cfc6512d02a4971d4f96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 554/872] python-virtualenv-clone: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv-clone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv-clone/template b/srcpkgs/python-virtualenv-clone/template
index 3c9f601bc6e..273b9ddf6d3 100644
--- a/srcpkgs/python-virtualenv-clone/template
+++ b/srcpkgs/python-virtualenv-clone/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv-clone'
 pkgname=python-virtualenv-clone
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5a922ea064a496fb01ff970e45a43ef51561b373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 555/872] python3-virustotal-api: rebuild for Python 3.8.

---
 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 2bc6592c91f..fc362c03b39 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=1
+revision=2
 archs=noarch
 wrksrc="virustotal-api-${version}"
 build_style=python3-module

From 65deaff01a3a9a5d82641fe121fdb2964b75346f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 556/872] python-vispy: rebuild for Python 3.8.

---
 srcpkgs/python-vispy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vispy/template b/srcpkgs/python-vispy/template
index b757e5a271f..624ade6f12b 100644
--- a/srcpkgs/python-vispy/template
+++ b/srcpkgs/python-vispy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vispy'
 pkgname=python-vispy
 version=0.6.1
-revision=1
+revision=2
 wrksrc="vispy-${version}"
 build_style=python-module
 pycompile_module="vispy"

From 5e47d846dedfdbef61bd10a33928ce13b600c648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 557/872] python-vobject: rebuild for Python 3.8.

---
 srcpkgs/python-vobject/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vobject/template b/srcpkgs/python-vobject/template
index 54f575aa1a1..2c1c215527c 100644
--- a/srcpkgs/python-vobject/template
+++ b/srcpkgs/python-vobject/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vobject'
 pkgname=python-vobject
 version=0.9.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="vobject-${version}"
 build_style=python-module

From 8125ffd3d4822ca6bf81508ed8b859e079cd9437 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 558/872] python-voluptuous: rebuild for Python 3.8.

---
 srcpkgs/python-voluptuous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-voluptuous/template b/srcpkgs/python-voluptuous/template
index fd44ae2e324..1dd5de27491 100644
--- a/srcpkgs/python-voluptuous/template
+++ b/srcpkgs/python-voluptuous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-voluptuous'
 pkgname=python-voluptuous
 version=0.11.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="voluptuous-${version}"
 build_style=python-module

From 608126ee8043f8d45a8e56608f99e0df6cc2ee9e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 559/872] python-watchdog: rebuild for Python 3.8.

---
 srcpkgs/python-watchdog/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchdog/template b/srcpkgs/python-watchdog/template
index f6027c3b5ca..2eea6397f00 100644
--- a/srcpkgs/python-watchdog/template
+++ b/srcpkgs/python-watchdog/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchdog'
 pkgname=python-watchdog
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="watchdog-${version}"
 build_style=python-module

From a54fc09b58f905a0ed5cd5892db67b7c4ea6ae9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 560/872] python-watchman: rebuild for Python 3.8.

---
 srcpkgs/python-watchman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchman/template b/srcpkgs/python-watchman/template
index 4c41c275ca2..97400668d64 100644
--- a/srcpkgs/python-watchman/template
+++ b/srcpkgs/python-watchman/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchman'
 pkgname=python-watchman
 version=1.4.1
-revision=2
+revision=3
 wrksrc="pywatchman-${version}"
 build_style=python-module
 pycompile_module="pywatchman"

From 4dd6084e6c30a25fb4ff3c44bf2c751eaab07715 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 561/872] python-wcwidth: rebuild for Python 3.8.

---
 srcpkgs/python-wcwidth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wcwidth/template b/srcpkgs/python-wcwidth/template
index 34bc22cbcb6..8ec6d17450c 100644
--- a/srcpkgs/python-wcwidth/template
+++ b/srcpkgs/python-wcwidth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wcwidth'
 pkgname=python-wcwidth
 version=0.1.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="wcwidth-${version}"
 build_style=python-module

From cafaf5868e58cb26c2cdd29d0d1b52f9cf1e31ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 562/872] python-webassets: rebuild for Python 3.8.

---
 srcpkgs/python-webassets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webassets/template b/srcpkgs/python-webassets/template
index 3ad5475bd17..789be9684f7 100644
--- a/srcpkgs/python-webassets/template
+++ b/srcpkgs/python-webassets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webassets'
 pkgname=python-webassets
 version=0.12.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 88d8fa4eb1ca72857d5a1cab8a4f7495a9af1595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 563/872] python-webencodings: rebuild for Python 3.8.

---
 srcpkgs/python-webencodings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webencodings/template b/srcpkgs/python-webencodings/template
index 5a05af10835..f047a9e3c52 100644
--- a/srcpkgs/python-webencodings/template
+++ b/srcpkgs/python-webencodings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webencodings'
 pkgname=python-webencodings
 version=0.5.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="webencodings-${version}"
 build_style=python-module

From 81c9d07c0e756cc87a6cd2c444c0b2f0987463da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 564/872] python-websocket-client: rebuild for Python 3.8.

---
 srcpkgs/python-websocket-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-websocket-client/template b/srcpkgs/python-websocket-client/template
index 8aa276655cb..3df8ab42b36 100644
--- a/srcpkgs/python-websocket-client/template
+++ b/srcpkgs/python-websocket-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-websocket-client'
 pkgname=python-websocket-client
 version=0.56.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="websocket_client-${version}"
 build_style=python-module

From 97fc927913b3f2682b7ddf73982008e9fdc1e42d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 565/872] python-wheel: rebuild for Python 3.8.

---
 srcpkgs/python-wheel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wheel/template b/srcpkgs/python-wheel/template
index 11c50bd65e6..11aeaf42316 100644
--- a/srcpkgs/python-wheel/template
+++ b/srcpkgs/python-wheel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wheel'
 pkgname=python-wheel
 version=0.32.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="wheel-${version}"
 build_style=python-module

From 861d20f2f112cd829f2f06f746680e2c034a812f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 566/872] python-wikipedia: rebuild for Python 3.8.

---
 srcpkgs/python-wikipedia/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wikipedia/template b/srcpkgs/python-wikipedia/template
index e6ebf65f7c2..f8a69755b74 100644
--- a/srcpkgs/python-wikipedia/template
+++ b/srcpkgs/python-wikipedia/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wikipedia'
 pkgname=python-wikipedia
 version=1.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="wikipedia-${version}"
 build_style=python-module

From c58e9b08de69bd19aa3bcf91ec42d1b626a2a6bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 567/872] python-wrapt: rebuild for Python 3.8.

---
 srcpkgs/python-wrapt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wrapt/template b/srcpkgs/python-wrapt/template
index a3a237aa08d..c2d2850bf5a 100644
--- a/srcpkgs/python-wrapt/template
+++ b/srcpkgs/python-wrapt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wrapt'
 pkgname=python-wrapt
 version=1.10.11
-revision=3
+revision=4
 wrksrc="wrapt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From f65cbaf6b92acb78d54d3b498924285bce64fb66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 568/872] python-wsproto: rebuild for Python 3.8.

---
 srcpkgs/python-wsproto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wsproto/template b/srcpkgs/python-wsproto/template
index 88b08f796d4..a93a799be0a 100644
--- a/srcpkgs/python-wsproto/template
+++ b/srcpkgs/python-wsproto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wsproto'
 pkgname=python-wsproto
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="wsproto-${version}"
 build_style=python-module

From 1b60fb796f8ac377a2e31dc0503df215c27fc59e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 569/872] python-xapp: rebuild for Python 3.8.

---
 srcpkgs/python-xapp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xapp/template b/srcpkgs/python-xapp/template
index 9b6938113f2..798041eb946 100644
--- a/srcpkgs/python-xapp/template
+++ b/srcpkgs/python-xapp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xapp'
 pkgname=python-xapp
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="xapp"

From 415bec8de0abe2772c407df9db650bd06ba122ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 570/872] python-xdg: rebuild for Python 3.8.

---
 srcpkgs/python-xdg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xdg/template b/srcpkgs/python-xdg/template
index afa6c180043..4e819c8bec7 100644
--- a/srcpkgs/python-xdg/template
+++ b/srcpkgs/python-xdg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xdg'
 pkgname=python-xdg
 version=0.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyxdg-${version}"
 build_style=python-module

From 4518feeb499caa6631ef29ead0439c5bcc67a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 571/872] python-xlib: rebuild for Python 3.8.

---
 srcpkgs/python-xlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xlib/template b/srcpkgs/python-xlib/template
index 1f97c4117d4..e67d1d82e73 100644
--- a/srcpkgs/python-xlib/template
+++ b/srcpkgs/python-xlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xlib'
 pkgname=python-xlib
 version=0.25
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="Xlib"

From 1cef928049b5216468e701acce714fc14d79694f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 572/872] python-xmldiff: rebuild for Python 3.8.

---
 srcpkgs/python-xmldiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmldiff/template b/srcpkgs/python-xmldiff/template
index a0a8004ea7b..4f3cc2d27b7 100644
--- a/srcpkgs/python-xmldiff/template
+++ b/srcpkgs/python-xmldiff/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmldiff'
 pkgname=python-xmldiff
 version=2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmldiff-${version}"
 build_style=python-module

From cefcbea2ec7904b0c1ad16ec32963bf430b27c4a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 573/872] python-xmltodict: rebuild for Python 3.8.

---
 srcpkgs/python-xmltodict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmltodict/template b/srcpkgs/python-xmltodict/template
index a48e6d46aa6..b3d7ef042e8 100644
--- a/srcpkgs/python-xmltodict/template
+++ b/srcpkgs/python-xmltodict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmltodict'
 pkgname=python-xmltodict
 version=0.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmltodict-${version}"
 build_style=python-module

From 889d5fe9fe9f1830bec336ac52bd8bd32f47f0a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 574/872] python-yaml: rebuild for Python 3.8.

---
 srcpkgs/python-yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yaml/template b/srcpkgs/python-yaml/template
index 8a7caf1d99e..e3bad0ae59b 100644
--- a/srcpkgs/python-yaml/template
+++ b/srcpkgs/python-yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yaml'
 pkgname=python-yaml
 version=5.1.2
-revision=1
+revision=2
 wrksrc="PyYAML-${version}"
 build_style=python-module
 pycompile_module="yaml"

From 1b3e89ca272ae28a62064bf83eaff84332307682 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 575/872] python-yamllint: rebuild for Python 3.8.

---
 srcpkgs/python-yamllint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yamllint/template b/srcpkgs/python-yamllint/template
index 1a05e1043bb..d0b51ba637a 100644
--- a/srcpkgs/python-yamllint/template
+++ b/srcpkgs/python-yamllint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yamllint'
 pkgname=python-yamllint
 version=1.15.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="yamllint-${version}"
 build_style=python-module

From b233bcb50542e39ba02899ef3d1b833e385204e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 576/872] python3-yarl: rebuild for Python 3.8.

---
 srcpkgs/python3-yarl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-yarl/template b/srcpkgs/python3-yarl/template
index 222f176cfcf..ecb79a3cc9c 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.3.0
-revision=2
+revision=3
 wrksrc="yarl-${version}"
 build_style=python3-module
 pycompile_module="yarl"

From 484c2559f18644c63342db467c703e2e998e89b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 577/872] python-zc.lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-zc.lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zc.lockfile/template b/srcpkgs/python-zc.lockfile/template
index cb0bee99506..b77071af04f 100644
--- a/srcpkgs/python-zc.lockfile/template
+++ b/srcpkgs/python-zc.lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zc.lockfile'
 pkgname=python-zc.lockfile
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 364e398c8dd7e3dd141ceb1c22626ecf2a5b9b32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 578/872] python3-zeroconf: rebuild for Python 3.8.

---
 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 497a8bc6b69..dda37bd3dc4 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.23.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-zeroconf-${version}"
 build_style=python3-module

From 22b5d6236d8f0ff0050135b2e77eca608519b1ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 579/872] python3-zipp: rebuild for Python 3.8.

---
 srcpkgs/python3-zipp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-zipp/template b/srcpkgs/python3-zipp/template
index 8445c10825c..ba682915beb 100644
--- a/srcpkgs/python3-zipp/template
+++ b/srcpkgs/python3-zipp/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-zipp'
 pkgname=python3-zipp
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="zipp-${version}"
 build_style=python3-module

From c5c37d6e890a553e458333e610ab56b1a5c9b516 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 580/872] python-zipstream: rebuild for Python 3.8.

---
 srcpkgs/python-zipstream/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zipstream/template b/srcpkgs/python-zipstream/template
index 89079e21b22..2c7390127ac 100644
--- a/srcpkgs/python-zipstream/template
+++ b/srcpkgs/python-zipstream/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zipstream'
 pkgname=python-zipstream
 version=1.1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="python-zipstream-${version}"
 build_style=python-module

From bc31e25a00839c9d3cc5ac70edf0485ee4b21d4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 581/872] python3-zope.cachedescriptors: rebuild for Python
 3.8.

---
 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 bdd5ef41e21..1f1fae5b27b 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.3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="zope.cachedescriptors-${version}"
 build_style=python3-module

From 40a63988f3c2db41391f0a7ab6cde24a9b79ed05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 582/872] python-zope.component: rebuild for Python 3.8.

---
 srcpkgs/python-zope.component/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.component/template b/srcpkgs/python-zope.component/template
index 7cea5b9d71d..66ef109a4aa 100644
--- a/srcpkgs/python-zope.component/template
+++ b/srcpkgs/python-zope.component/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.component'
 pkgname=python-zope.component
 version=4.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 799496c35db93c88e6d00e4b41eeca8b4af5b188 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 583/872] python-zope.event: rebuild for Python 3.8.

---
 srcpkgs/python-zope.event/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.event/template b/srcpkgs/python-zope.event/template
index 3c7fb8dfd6e..6518cb4529b 100644
--- a/srcpkgs/python-zope.event/template
+++ b/srcpkgs/python-zope.event/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.event'
 pkgname=python-zope.event
 version=4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d77b16ecad39877131af8a9c01ea925b33737b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 584/872] python-zope.interface: rebuild for Python 3.8.

---
 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 d3c57be85f7..1dbcbecd377 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=4.6.0
-revision=2
+revision=3
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="zope"

From e5cb80612a71c54facf607c52c7a385badeba668 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 585/872] python3-pivy: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-pivy/patches/73cd928f.patch | 36 +++++++++++++++++++++
 srcpkgs/python3-pivy/template               |  2 +-
 2 files changed, 37 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/python3-pivy/patches/73cd928f.patch

diff --git a/srcpkgs/python3-pivy/patches/73cd928f.patch b/srcpkgs/python3-pivy/patches/73cd928f.patch
new file mode 100644
index 00000000000..edff803822a
--- /dev/null
+++ b/srcpkgs/python3-pivy/patches/73cd928f.patch
@@ -0,0 +1,36 @@
+From 73cd928fe1a9c2abbe6f28844a7fc695ad11d7cf Mon Sep 17 00:00:00 2001
+From: Peter Lama <peterldev94@gmail.com>
+Date: Fri, 24 Aug 2018 17:25:47 -0700
+Subject: [PATCH] Fix issue #39: PyUnicode_AsUTF8 returns const char*
+
+Even with python 2, it doesn't seem like char* is needed
+
+--- Inventor/nodes/SoMarkerSet.i
++++ Inventor/nodes/SoMarkerSet.i
+@@ -5,7 +5,7 @@
+         short WIDTH, HEIGHT;
+         size.getValue(WIDTH, HEIGHT);
+         short BYTEWIDTH = (WIDTH + 7) / 2;
+-        char* coin_marker;
++        const char* coin_marker;
+ #ifdef PY_2
+         if (PyString_Check(string))
+         {
+@@ -49,4 +49,4 @@
+         delete[] bitmapbytes;
+         bitmapbytes = NULL;
+     }
+-}
+\ No newline at end of file
++}
+--- Inventor/sensors/SoSensor.i
++++ Inventor/sensors/SoSensor.i
+@@ -4,7 +4,7 @@ SoSensorPythonCB(void * data, SoSensor * sensor)
+ {
+   PyGILState_STATE gil = PyGILState_Ensure();
+   swig_type_info * swig_type = 0;
+-  char * sensor_cast_name = NULL;
++  const char * sensor_cast_name = NULL;
+   PyObject * func, * arglist;
+   PyObject * result, * pysensor;
+ 
diff --git a/srcpkgs/python3-pivy/template b/srcpkgs/python3-pivy/template
index 4a733e805e3..9caa13837e2 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.4
-revision=1
+revision=2
 wrksrc="Coin3D-${pkgname#python3-}-a84100beff22"
 build_style=python3-module
 pycompile_module="pivy"

From 7d8cfe1721327d4b8695c6abc56d012b27989c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 586/872] python-tweepy: update to 3.8.0.

---
 srcpkgs/python-tweepy/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python-tweepy/template b/srcpkgs/python-tweepy/template
index ef61039dac5..4605bbf83ea 100644
--- a/srcpkgs/python-tweepy/template
+++ b/srcpkgs/python-tweepy/template
@@ -1,6 +1,6 @@
 # Template file for 'python-tweepy'
 pkgname=python-tweepy
-version=3.7.0
+version=3.8.0
 revision=1
 archs=noarch
 wrksrc="tweepy-${version}"
@@ -14,8 +14,8 @@ license="MIT"
 homepage="https://github.com/tweepy/tweepy"
 distfiles="${PYPI_SITE}/t/tweepy/tweepy-${version}.tar.gz
  https://raw.githubusercontent.com/tweepy/tweepy/master/LICENSE>LICENSE.txt"
-checksum="fe85a79f58a01dd335968523b91c5fce760e7fe78bf25a6e71c72204fe499d0b
- deeeae0dcc22dbf108a801b8dc4e484bcc1bfb541b1a4f4615ab3e61def44fb5"
+checksum="8abd828ba51a85a2b5bb7373715d6d3bb32d18ac624e3a4db02e4ef8ab48316b
+ bf9bc5b9dcb8421bb3c342bb7fd29194688e1262b50766bd71b21a07461e74b7"
 
 post_install() {
 	vlicense ../LICENSE.txt

From 5f654f2f6a7eca9a50adb53af9037466723dd82c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 587/872] Electron-Cash: rebuild for Python 3.8.

---
 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 2db05c94832..08670c5f08d 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.0.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electroncash electroncash_gui electroncash_plugins"

From 931f125f8699e33cb16c8ed43a5e910d0056db6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 588/872] OpenLP: rebuild for Python 3.8.

---
 srcpkgs/OpenLP/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/OpenLP/template b/srcpkgs/OpenLP/template
index fb417f8d05e..ccae6d0282e 100644
--- a/srcpkgs/OpenLP/template
+++ b/srcpkgs/OpenLP/template
@@ -1,7 +1,7 @@
 # Template file for 'OpenLP'
 pkgname=OpenLP
 version=2.4.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="openlp"

From 21b02367e81c8635c88830fd008c0ba44ffcccff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 589/872] PhotoCollage: rebuild for Python 3.8.

---
 srcpkgs/PhotoCollage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/PhotoCollage/template b/srcpkgs/PhotoCollage/template
index 2c55ca87ce0..9997d1e7d98 100644
--- a/srcpkgs/PhotoCollage/template
+++ b/srcpkgs/PhotoCollage/template
@@ -1,7 +1,7 @@
 # Template file for 'PhotoCollage'
 pkgname=PhotoCollage
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="photocollage"

From 49dffe4070ca7dff3c38379b8df9d9b0d04395ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 590/872] ReText: rebuild for Python 3.8.

---
 srcpkgs/ReText/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ReText/template b/srcpkgs/ReText/template
index cc092ee6a36..a6551fbdf7c 100644
--- a/srcpkgs/ReText/template
+++ b/srcpkgs/ReText/template
@@ -1,7 +1,7 @@
 # Template file for 'ReText'
 pkgname=ReText
 version=7.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ReText"

From 225e30aaea5daebb0d4fc36c6d73424ad6fb1ec5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 591/872] SoapySDR: rebuild for Python 3.8.

---
 srcpkgs/SoapySDR/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/SoapySDR/template b/srcpkgs/SoapySDR/template
index 1bb66ce0689..bcfe45dc78a 100644
--- a/srcpkgs/SoapySDR/template
+++ b/srcpkgs/SoapySDR/template
@@ -1,7 +1,7 @@
 # Template file for 'SoapySDR'
 pkgname=SoapySDR
 version=0.7.1
-revision=1
+revision=2
 wrksrc="${pkgname}-soapy-sdr-${version}"
 build_style=cmake
 pycompile_module="SoapySDR.py"

From 2e64750e75e61296567ebb0053c46081cbab8e13 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 592/872] Solaar: rebuild for Python 3.8.

---
 srcpkgs/Solaar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Solaar/template b/srcpkgs/Solaar/template
index 2e8f4112e0e..86cab83d497 100644
--- a/srcpkgs/Solaar/template
+++ b/srcpkgs/Solaar/template
@@ -1,7 +1,7 @@
 # Template file for 'Solaar'
 pkgname=Solaar
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="hidapi logitech_receiver solaar"

From 21eb59c332d0765268a9b3a5442e4e265144a4ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 593/872] Trimage: rebuild for Python 3.8.

---
 srcpkgs/Trimage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Trimage/template b/srcpkgs/Trimage/template
index 14fc1d1bd1c..c9f4b047ccd 100644
--- a/srcpkgs/Trimage/template
+++ b/srcpkgs/Trimage/template
@@ -1,7 +1,7 @@
 # Template file for 'Trimage'
 pkgname=Trimage
 version=1.0.6
-revision=1
+revision=2
 wrksrc="Trimage-${version}"
 build_style=python3-module
 hostmakedepends="python3"

From 51428dec66979d2e47361fb2af5e7ad35acbe530 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 594/872] TwitchNotifier: rebuild for Python 3.8.

---
 srcpkgs/TwitchNotifier/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/TwitchNotifier/template b/srcpkgs/TwitchNotifier/template
index 01153bcc710..3bbba11db49 100644
--- a/srcpkgs/TwitchNotifier/template
+++ b/srcpkgs/TwitchNotifier/template
@@ -1,7 +1,7 @@
 # Template file for 'TwitchNotifier'
 pkgname=TwitchNotifier
 version=0.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-devel"
 makedepends="python3-devel"

From 18ad02f16088cf17e66f60da882ead88b4872617 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 595/872] Uranium: rebuild for Python 3.8.

---
 srcpkgs/Uranium/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Uranium/template b/srcpkgs/Uranium/template
index 193d5e211df..7a9509c2079 100644
--- a/srcpkgs/Uranium/template
+++ b/srcpkgs/Uranium/template
@@ -1,7 +1,7 @@
 # Template file for 'Uranium'
 pkgname=Uranium
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=cmake
 pycompile_module="UM"

From 1bfabd6cc63a8b03b99500dc59e362061f7549e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 596/872] afew: rebuild for Python 3.8.

---
 srcpkgs/afew/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/afew/template b/srcpkgs/afew/template
index a9156bbc902..f4b10098e66 100644
--- a/srcpkgs/afew/template
+++ b/srcpkgs/afew/template
@@ -1,7 +1,7 @@
 # Template file for 'afew'
 pkgname=afew
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="afew"

From f0695c0a0e527ead9d61cbbd52e872f5a6e7f422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 597/872] alot: rebuild for Python 3.8.

---
 srcpkgs/alot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/alot/template b/srcpkgs/alot/template
index 4ff75637282..c8e29e36297 100644
--- a/srcpkgs/alot/template
+++ b/srcpkgs/alot/template
@@ -1,7 +1,7 @@
 # Template file for 'alot'
 pkgname=alot
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="alot"

From ec032cb507b4dca0034eab7e0281dedd3b7dc418 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 598/872] ansible: rebuild for Python 3.8.

---
 srcpkgs/ansible/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ansible/template b/srcpkgs/ansible/template
index 413e6f8803e..773f890e114 100644
--- a/srcpkgs/ansible/template
+++ b/srcpkgs/ansible/template
@@ -1,7 +1,7 @@
 # Template file for 'ansible'
 pkgname=ansible
 version=2.8.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ansible"

From a97554cec966a402d73b894865fe2d37f1833cec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 599/872] apparmor: rebuild for Python 3.8.

---
 srcpkgs/apparmor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/apparmor/template b/srcpkgs/apparmor/template
index c0ef28bae03..e4f8e3fb3ae 100644
--- a/srcpkgs/apparmor/template
+++ b/srcpkgs/apparmor/template
@@ -1,7 +1,7 @@
 # Template file for 'apparmor'
 pkgname=apparmor
 version=2.13.3
-revision=1
+revision=2
 wrksrc="${pkgname}-v${version}"
 build_wrksrc=libraries/libapparmor
 build_style=gnu-configure

From 57116ea3c564f2a1852b8583df85c35aefe177a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 600/872] arandr: rebuild for Python 3.8.

---
 srcpkgs/arandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/arandr/template b/srcpkgs/arandr/template
index 71c8cbcd6ed..610dbc28bca 100644
--- a/srcpkgs/arandr/template
+++ b/srcpkgs/arandr/template
@@ -1,7 +1,7 @@
 # Template file for 'arandr'
 pkgname=arandr
 version=0.1.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenlayout"

From 4dbfc32dae63dc77f95207dc5aa5a79d26d2c9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 601/872] asciinema: rebuild for Python 3.8.

---
 srcpkgs/asciinema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/asciinema/template b/srcpkgs/asciinema/template
index 961b2756301..38b8871753c 100644
--- a/srcpkgs/asciinema/template
+++ b/srcpkgs/asciinema/template
@@ -1,7 +1,7 @@
 # Template file for 'asciinema'
 pkgname=asciinema
 version=2.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="asciinema"

From 956b672f4c6db0ea67d9ad05a8308ec5ea193930 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 602/872] attic: rebuild for Python 3.8.

---
 srcpkgs/attic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/attic/template b/srcpkgs/attic/template
index 533ef7377bc..ed454302ce4 100644
--- a/srcpkgs/attic/template
+++ b/srcpkgs/attic/template
@@ -1,7 +1,7 @@
 # Template file for 'attic'
 pkgname=attic
 version=0.16
-revision=14
+revision=15
 wrksrc="Attic-$version"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel python3-Sphinx"

From 3a21ab47b75c96c91b8447979356e5d4d4027fd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 603/872] autorandr: rebuild for Python 3.8.

---
 srcpkgs/autorandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/autorandr/template b/srcpkgs/autorandr/template
index bf38b833632..7f9796be18f 100644
--- a/srcpkgs/autorandr/template
+++ b/srcpkgs/autorandr/template
@@ -1,7 +1,7 @@
 # Template file for 'autorandr'
 pkgname=autorandr
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="autorandr.py"

From ca443f3bf2b2ea4c91fa81f47ea823293476950b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 604/872] avideo: rebuild for Python 3.8.

---
 srcpkgs/avideo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/avideo/template b/srcpkgs/avideo/template
index e4d004aafff..6430d391286 100644
--- a/srcpkgs/avideo/template
+++ b/srcpkgs/avideo/template
@@ -1,7 +1,7 @@
 # Template file for 'avideo'
 pkgname=avideo
 version=2017.9.27
-revision=3
+revision=4
 archs=noarch
 wrksrc="avideo"
 build_style=python3-module

From b1abf9d1270b34913e7bd6dbfcd004dba8a8c5ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 605/872] aws-cli: rebuild for Python 3.8.

---
 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 4e5e200e3f9..4328e203c3c 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.16.253
-revision=1
+revision=2
 archs=noarch
 wrksrc="aws-cli-${version}"
 build_style=python3-module

From af6fd86e4f623114e23d8cd19217a8ba196231c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 606/872] bandit: rebuild for Python 3.8.

---
 srcpkgs/bandit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bandit/template b/srcpkgs/bandit/template
index e6c1aa52d7c..d29873ecf61 100644
--- a/srcpkgs/bandit/template
+++ b/srcpkgs/bandit/template
@@ -1,7 +1,7 @@
 # Template file for 'bandit'
 pkgname=bandit
 version=1.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="bandit"

From acb296380ef65f2682ec382f88706be8dc3bf79f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 607/872] beancount: rebuild for Python 3.8.

---
 srcpkgs/beancount/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beancount/template b/srcpkgs/beancount/template
index b1e2a121668..0ba68fc8f4e 100644
--- a/srcpkgs/beancount/template
+++ b/srcpkgs/beancount/template
@@ -1,7 +1,7 @@
 # Template file for 'beancount'
 pkgname=beancount
 version=2.2.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="beancount"
 hostmakedepends="python3-setuptools"

From 4d085c5998e4472b4e7b4fceabecba11440daceb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 608/872] beets: rebuild for Python 3.8.

---
 srcpkgs/beets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beets/template b/srcpkgs/beets/template
index 7dab56ceef8..975e6ec9f86 100644
--- a/srcpkgs/beets/template
+++ b/srcpkgs/beets/template
@@ -1,7 +1,7 @@
 # Template file for 'beets'
 pkgname=beets
 version=1.4.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="beets beetsplug"

From 1640cb62a84da8a46aff2a9c6ee5f75c0ab73224 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 609/872] black: rebuild for Python 3.8.

---
 srcpkgs/black/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/black/template b/srcpkgs/black/template
index f6d433038b9..38498a1db07 100644
--- a/srcpkgs/black/template
+++ b/srcpkgs/black/template
@@ -1,7 +1,7 @@
 # Template file for 'black'
 pkgname=black
 version=19.3b0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="black.py blib2to3"

From 5939f3d169c384cfe92957888f7b53678a69e770 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 610/872] blueman: rebuild for Python 3.8.

---
 srcpkgs/blueman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blueman/template b/srcpkgs/blueman/template
index 83f9b899583..3616aee7da3 100644
--- a/srcpkgs/blueman/template
+++ b/srcpkgs/blueman/template
@@ -1,7 +1,7 @@
 # Template file for 'blueman'
 pkgname=blueman
 version=2.1.1
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="blueman"
 configure_args="--disable-static"

From 325ad86e9fdcfc900e695cdcb3b40bc448b85d06 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 611/872] borg: rebuild for Python 3.8.

---
 srcpkgs/borg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borg/template b/srcpkgs/borg/template
index 520b1b2f65a..b69c7d3418e 100644
--- a/srcpkgs/borg/template
+++ b/srcpkgs/borg/template
@@ -1,7 +1,7 @@
 # Template file for 'borg'
 pkgname=borg
 version=1.1.10
-revision=2
+revision=3
 wrksrc="borgbackup-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel"

From 73a17277e22d3252a93a66237bf81a04393fc244 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 612/872] borgmatic: rebuild for Python 3.8.

---
 srcpkgs/borgmatic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borgmatic/template b/srcpkgs/borgmatic/template
index 8ef7c0568a6..bdc6446243c 100644
--- a/srcpkgs/borgmatic/template
+++ b/srcpkgs/borgmatic/template
@@ -1,7 +1,7 @@
 # Template file for 'borgmatic'
 pkgname=borgmatic
 version=1.3.24
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="borgmatic"

From 482c5d69113ad10842dfe91f0ac4a0631660ac77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 613/872] btrfs-backup: rebuild for Python 3.8.

---
 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 07d08a1b62b..55a3800a857 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=1
+revision=2
 wrksrc="${pkgname/-/_}-${version}"
 archs=noarch
 build_style=python3-module

From 4fce3c4f00a44852e3f9fcab80a10d4acfc04ad6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 614/872] bum: rebuild for Python 3.8.

---
 srcpkgs/bum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bum/template b/srcpkgs/bum/template
index 58d0bb2b7f7..20f200e74d6 100644
--- a/srcpkgs/bum/template
+++ b/srcpkgs/bum/template
@@ -1,7 +1,7 @@
 # Template file for 'bum'
 pkgname=bum
 version=0.1.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="bum"

From a384e5462965e984f1abca2ca12b7f62b1a415d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 615/872] caffeine-ng: rebuild for Python 3.8.

---
 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 36287fbef5b..455b2f225c4 100644
--- a/srcpkgs/caffeine-ng/template
+++ b/srcpkgs/caffeine-ng/template
@@ -1,7 +1,7 @@
 # Template file for 'caffeine-ng'
 pkgname=caffeine-ng
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="caffeine"

From b857565a7a7fddfbffbcf40b9e784593d099a0a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 616/872] cairo-dock-plugins: rebuild for Python 3.8.

---
 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 9e6149c617f..0c23a7f6928 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=11
+revision=12
 build_style=cmake
 hostmakedepends="pkg-config"
 # XXX libetpan, libdbusmenu, etc

From c0c15488d9189a782c2ab6436de598620d4d2435 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 617/872] canto-curses: rebuild for Python 3.8.

---
 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 0905972b480..4270d61c2e0 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=4
+revision=5
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel ncurses-devel readline-devel"

From a821add22450c016c7b851ee1a0309da5b5d83af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 618/872] canto-next: rebuild for Python 3.8.

---
 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 fff7e82e238..fa28bde891b 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.7
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From fa2afe1224ee7d1e031e769bf84bd596e5ac6de2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 619/872] capstone: rebuild for Python 3.8.

---
 srcpkgs/capstone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/capstone/template b/srcpkgs/capstone/template
index e13c7666ed1..fded7c7157e 100644
--- a/srcpkgs/capstone/template
+++ b/srcpkgs/capstone/template
@@ -1,7 +1,7 @@
 # Template file for 'capstone'
 pkgname=capstone
 version=4.0.1
-revision=1
+revision=2
 build_style=gnu-makefile
 make_use_env=1
 hostmakedepends="python-setuptools python3-setuptools"

From 923fca0cf844d03c602bbae81add86e8be495762 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 620/872] catfish: rebuild for Python 3.8.

---
 srcpkgs/catfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/catfish/template b/srcpkgs/catfish/template
index 1b28ffcafff..b53de6b8ea6 100644
--- a/srcpkgs/catfish/template
+++ b/srcpkgs/catfish/template
@@ -1,7 +1,7 @@
 # Template file for 'catfish'
 pkgname=catfish
 version=1.4.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="catfish catfish_lib"

From fb71b3b941c7341384c307ef6e1654b8d0b54a3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 621/872] ccsm: rebuild for Python 3.8.

---
 srcpkgs/ccsm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ccsm/template b/srcpkgs/ccsm/template
index 0421e587b23..3067003017f 100644
--- a/srcpkgs/ccsm/template
+++ b/srcpkgs/ccsm/template
@@ -1,7 +1,7 @@
 # Template file for 'ccsm'
 pkgname=ccsm
 version=0.8.16
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 hostmakedepends="automake intltool libtool pkg-config python3"

From f4212d55b3ec84e188189bc74a572c728a37c66a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 622/872] cheat: rebuild for Python 3.8.

---
 srcpkgs/cheat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cheat/template b/srcpkgs/cheat/template
index b60b4ba53b2..f1e419c3c5a 100644
--- a/srcpkgs/cheat/template
+++ b/srcpkgs/cheat/template
@@ -1,7 +1,7 @@
 # Template file for 'cheat'
 pkgname=cheat
 version=2.5.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="cheat"
 conf_files="/etc/cheat"

From eb72b0be44091e56a3e5b73cdf6d11ff80ecb8ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 623/872] clearine: rebuild for Python 3.8.

---
 srcpkgs/clearine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/clearine/template b/srcpkgs/clearine/template
index 419bb3c4550..539d494b79b 100644
--- a/srcpkgs/clearine/template
+++ b/srcpkgs/clearine/template
@@ -1,7 +1,7 @@
 # Template file for 'clearine'
 pkgname=clearine
 version=0.7
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="Clearine"
 hostmakedepends="python3-setuptools"

From ca7e63827b68cba4586e81da6e622e70addc8b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 624/872] coccigrep: rebuild for Python 3.8.

---
 srcpkgs/coccigrep/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/coccigrep/template b/srcpkgs/coccigrep/template
index 736f16a458e..a02c2f78bb2 100644
--- a/srcpkgs/coccigrep/template
+++ b/srcpkgs/coccigrep/template
@@ -1,7 +1,7 @@
 # Template file for 'coccigrep'
 pkgname=coccigrep
 version=1.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coccigrep"

From 8b0269365914ae7e030b07b30f4a76f2f1726270 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 625/872] compizconfig-python: rebuild for Python 3.8.

---
 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 b9d9ce2892b..77d53c97f46 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.16
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static"
 hostmakedepends="automake intltool libtool pkg-config glib-devel gettext-devel python3-Cython"

From c7955381746f2b68e5bb140afe81526fd62a2d16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 626/872] coursera-dl: rebuild for Python 3.8.

---
 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 0dfdd73083f..2b09e53d836 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.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coursera"

From 1bf8d7143694f636186cfbdcf357f9b86f5a635b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 627/872] cozy: rebuild for Python 3.8.

---
 srcpkgs/cozy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cozy/template b/srcpkgs/cozy/template
index a35aff61f37..2515388da18 100644
--- a/srcpkgs/cozy/template
+++ b/srcpkgs/cozy/template
@@ -1,7 +1,7 @@
 # Template file for 'cozy'
 pkgname=cozy
 version=0.6.8
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 pycompile_module="cozy"

From 7b58e6f69ae54c84b50dfe4d6041cf861a698c60 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 628/872] cpuset: rebuild for Python 3.8.

---
 srcpkgs/cpuset/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cpuset/template b/srcpkgs/cpuset/template
index cf3910d2304..12b54631617 100644
--- a/srcpkgs/cpuset/template
+++ b/srcpkgs/cpuset/template
@@ -1,7 +1,7 @@
 # Template file for 'cpuset'
 pkgname=cpuset
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="cpuset"

From a542aca478f0e84bbc23d3fd91a236635712a9f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 629/872] ctop: rebuild for Python 3.8.

---
 srcpkgs/ctop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ctop/template b/srcpkgs/ctop/template
index b8ea58515b2..5231b4a4cb3 100644
--- a/srcpkgs/ctop/template
+++ b/srcpkgs/ctop/template
@@ -1,7 +1,7 @@
 # Template file for 'ctop'
 pkgname=ctop
 version=1.0.0
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="cgroup_top.py"

From b3065c411c5e0b3e48432c6901e1e7fb20eb00d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 630/872] cura: rebuild for Python 3.8.

---
 srcpkgs/cura/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cura/template b/srcpkgs/cura/template
index 31318e5aecf..ab5cd315f21 100644
--- a/srcpkgs/cura/template
+++ b/srcpkgs/cura/template
@@ -1,7 +1,7 @@
 # Template file for 'cura'
 pkgname=cura
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Cura-${version}"
 build_style=cmake

From 9f4eb67830feb2103a78edc7651e1f73cc606074 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 631/872] curseradio: rebuild for Python 3.8.

---
 srcpkgs/curseradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/curseradio/template b/srcpkgs/curseradio/template
index 4fe2306364a..f5afe3bba34 100644
--- a/srcpkgs/curseradio/template
+++ b/srcpkgs/curseradio/template
@@ -1,7 +1,7 @@
 # Template file for 'curseradio'
 pkgname=curseradio
 version=0.0.20171017
-revision=3
+revision=4
 archs=noarch
 _commit=1bd4bd0faeec675e0647bac9a100b526cba19f8d
 wrksrc="curseradio-${_commit}"

From fa4e6156adf5c317bb85ee1d8271c9e6ce57b3e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 632/872] d-feet: rebuild for Python 3.8.

---
 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 6930eddf582..7f7d593f30a 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.15
-revision=1
+revision=2
 build_style=meson
 maintainer="Enno Boland <gottox@voidlinux.org>"
 hostmakedepends="pkg-config intltool itstool python3-pycodestyle"

From d6145053ac873c90f6383dee8ec4d696463928f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 633/872] deluge: rebuild for Python 3.8.

---
 srcpkgs/deluge/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/deluge/template b/srcpkgs/deluge/template
index 6dc7f26184d..8148c68033c 100644
--- a/srcpkgs/deluge/template
+++ b/srcpkgs/deluge/template
@@ -1,7 +1,7 @@
 # Template file for 'deluge'
 pkgname=deluge
 version=2.0.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="deluge"

From 0b2691a90e5de63e49a3c3f3adfa709d618b0a05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 634/872] devedeng: rebuild for Python 3.8.

---
 srcpkgs/devedeng/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/devedeng/template b/srcpkgs/devedeng/template
index d971b2e207b..2d0516cedd3 100644
--- a/srcpkgs/devedeng/template
+++ b/srcpkgs/devedeng/template
@@ -1,7 +1,7 @@
 # Template file for 'devedeng'
 pkgname=devedeng
 version=4.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="devedeng"

From 8b7c3bcfced7b21089b0a64ac1c375eb973af343 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 635/872] distcc: rebuild for Python 3.8.

---
 srcpkgs/distcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/distcc/template b/srcpkgs/distcc/template
index ded4255becd..4d6a450533f 100644
--- a/srcpkgs/distcc/template
+++ b/srcpkgs/distcc/template
@@ -1,7 +1,7 @@
 # Template file for 'distcc'
 pkgname=distcc
 version=3.3.3
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-Werror --with-gtk"
 conf_files="

From 98151a807bebdc6d5e41e0b6a1bd0d65659fbb7e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 636/872] docker-compose: rebuild for Python 3.8.

---
 srcpkgs/docker-compose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/docker-compose/template b/srcpkgs/docker-compose/template
index c3383fdf1ad..f4a34005c83 100644
--- a/srcpkgs/docker-compose/template
+++ b/srcpkgs/docker-compose/template
@@ -1,7 +1,7 @@
 # Template file for 'docker-compose'
 pkgname=docker-compose
 version=1.24.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="compose-${version}"
 build_style=python3-module

From 9dc2f62edc54b5e314c24fe7bb303496223adb45 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 637/872] edx-dl: rebuild for Python 3.8.

---
 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 209884640c6..a51c917d606 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.10
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="edx_dl"

From 6a769ff00b2fc959627e96d44172f8a656548751 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 638/872] electrum: rebuild for Python 3.8.

---
 srcpkgs/electrum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template
index 3861becdda9..7525e08e9e2 100644
--- a/srcpkgs/electrum/template
+++ b/srcpkgs/electrum/template
@@ -1,7 +1,7 @@
 # Template file for 'electrum'
 pkgname=electrum
 version=3.3.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electrum electrum_gui electrum_plugins"

From be52dccd4b30af3377095664bf239767a0f7be39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 639/872] electrum-ltc: rebuild for Python 3.8.

---
 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 ad6f745e152..cf7265fbec8 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.6.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"

From 45951afeb4bab3066e0459cf1441d9c3570c85dc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 640/872] eolie: rebuild for Python 3.8.

---
 srcpkgs/eolie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eolie/template b/srcpkgs/eolie/template
index b3da3dcd829..94514510c98 100644
--- a/srcpkgs/eolie/template
+++ b/srcpkgs/eolie/template
@@ -1,7 +1,7 @@
 # Template file for 'eolie'
 pkgname=eolie
 version=0.9.62
-revision=1
+revision=2
 _eolie_hash=bb4aad19272cc636bd17f2f6602127fe
 build_style=meson
 pycompile_module="eolie"

From ad02dba2226dbfc6b1fb5e715af8b58821cd8c07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 641/872] eyeD3: rebuild for Python 3.8.

---
 srcpkgs/eyeD3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eyeD3/template b/srcpkgs/eyeD3/template
index 7be047810bd..211553f0adb 100644
--- a/srcpkgs/eyeD3/template
+++ b/srcpkgs/eyeD3/template
@@ -1,7 +1,7 @@
 # Template file for 'eyeD3'
 pkgname=eyeD3
 version=0.8.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="eyed3"

From 5333d561e8831b7103f00f5e4564ce20bc26e9b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 642/872] fail2ban: rebuild for Python 3.8.

---
 srcpkgs/fail2ban/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 829e93385dc..361bcd12edd 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,7 +1,7 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
 version=0.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From 6ed6f50c8422b21b0f8244e983014120a3467562 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 643/872] fava: rebuild for Python 3.8.

---
 srcpkgs/fava/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fava/template b/srcpkgs/fava/template
index 24e66cac45b..890858b095b 100644
--- a/srcpkgs/fava/template
+++ b/srcpkgs/fava/template
@@ -1,7 +1,7 @@
 # Template file for 'fava'
 pkgname=fava
 version=1.11
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fava"

From cfe04c8e627d5d3626d852a05f3a87ecf053557f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 644/872] fierce: rebuild for Python 3.8.

---
 srcpkgs/fierce/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fierce/template b/srcpkgs/fierce/template
index 86dedb39ad2..86692c6457b 100644
--- a/srcpkgs/fierce/template
+++ b/srcpkgs/fierce/template
@@ -1,7 +1,7 @@
 # Template file for 'fierce'
 pkgname=fierce
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fierce"

From c67a6380bd6f21a660d10cde09cb2930536faee5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 645/872] fifengine: rebuild for Python 3.8.

---
 srcpkgs/fifengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fifengine/template b/srcpkgs/fifengine/template
index 1d4bcbb9297..871c94ad7e0 100644
--- a/srcpkgs/fifengine/template
+++ b/srcpkgs/fifengine/template
@@ -1,7 +1,7 @@
 # Template file for 'fifengine'
 pkgname=fifengine
 version=0.4.2
-revision=1
+revision=2
 build_style=cmake
 pycompile_module="fife"
 hostmakedepends="swig python3"

From 407bb3354f4705ac3e7d9c40479ff7272cbf5478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 646/872] flake8: rebuild for Python 3.8.

---
 srcpkgs/flake8/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/flake8/template b/srcpkgs/flake8/template
index d8f2b095644..4d7ebeba176 100644
--- a/srcpkgs/flake8/template
+++ b/srcpkgs/flake8/template
@@ -1,7 +1,7 @@
 # Template file for 'flake8'
 pkgname=flake8
 version=3.7.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="flake8"

From 770a2460b2b1f167fe87687c22ab0ff3d925964d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 647/872] fontforge: fix and rebuild for Python 3.8.

---
 srcpkgs/fontforge/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/fontforge/template b/srcpkgs/fontforge/template
index 7fb02d7e371..2893bc52cfb 100644
--- a/srcpkgs/fontforge/template
+++ b/srcpkgs/fontforge/template
@@ -1,7 +1,7 @@
 # Template file for 'fontforge'
 pkgname=fontforge
 version=20190801
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake ca-certificates git libltdl-devel libtool m4
  pkg-config python3"
@@ -20,6 +20,7 @@ checksum="e4501de5bd8e7f6c68fe7d3abd4667bf44a07b981d342ffa00e8f42e155ce633
  1bf9c7eb8835e6ed94e62cb49f1141bc046c562849e52e6c3c7f1d7cfc95c7b3"
 
 pre_configure() {
+        sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION}/&-embed/g' m4/fontforge_arg_enable.m4
 	./bootstrap
 }
 

From b878e1d66ee439999393e2aa55941b07f8e6c745 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 648/872] gajim: rebuild for Python 3.8.

---
 srcpkgs/gajim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gajim/template b/srcpkgs/gajim/template
index 8c49c0cf6ef..e81015b3906 100644
--- a/srcpkgs/gajim/template
+++ b/srcpkgs/gajim/template
@@ -1,7 +1,7 @@
 # Template file for 'gajim'
 pkgname=gajim
 version=1.1.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gajim"

From e0ad178e264be367206a16d9b96524e6d37e4b22 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 649/872] gajim-omemo: rebuild for Python 3.8.

---
 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 803f94713be..64d47228496 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.6.29
-revision=1
+revision=2
 wrksrc="omemo"
 hostmakedepends="unzip"
 depends="python3 python3-setuptools python3-cryptography python3-axolotl python3-qrcode"

From 4988da06fe14563631406801f6b22795355576a4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 650/872] gallery-dl: rebuild for Python 3.8.

---
 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 a1e8c633fe3..62b338a32e3 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.10.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gallery_dl"

From 7d5c0c0d7a1dcc5f3c504ed769a3730c7d688ed3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 651/872] gandi-cli: rebuild for Python 3.8.

---
 srcpkgs/gandi-cli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gandi-cli/template b/srcpkgs/gandi-cli/template
index c5e805a09fd..4193bfe4638 100644
--- a/srcpkgs/gandi-cli/template
+++ b/srcpkgs/gandi-cli/template
@@ -1,7 +1,7 @@
 # Template file for 'gandi-cli'
 pkgname=gandi-cli
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="gandi.cli-${version}"
 build_style=python3-module

From 7ae81741d5a1d24c19e0950a8631b2afb2f66301 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 652/872] gcovr: rebuild for Python 3.8.

---
 srcpkgs/gcovr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gcovr/template b/srcpkgs/gcovr/template
index 2b9ff94bf2a..0d4addfc8a7 100644
--- a/srcpkgs/gcovr/template
+++ b/srcpkgs/gcovr/template
@@ -1,7 +1,7 @@
 # Template file for 'gcovr'
 pkgname=gcovr
 version=4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gcovr"

From ff745f27bbeb2148c202a6cfde42c27c27ffb081 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 653/872] gedit: rebuild for Python 3.8.

---
 srcpkgs/gedit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gedit/template b/srcpkgs/gedit/template
index 904d3b7c3c4..6666c331c52 100644
--- a/srcpkgs/gedit/template
+++ b/srcpkgs/gedit/template
@@ -1,7 +1,7 @@
 # Template file for 'gedit'
 pkgname=gedit
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gi/overrides"

From 6d37a1560ee94e42e383c5bc4cba87d59366a1bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 654/872] geis: rebuild for Python 3.8.

---
 srcpkgs/geis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/geis/template b/srcpkgs/geis/template
index fe31a3d2aeb..20afe76b0d8 100644
--- a/srcpkgs/geis/template
+++ b/srcpkgs/geis/template
@@ -1,7 +1,7 @@
 # Template file for 'geis'
 pkgname=geis
 version=2.2.17
-revision=4
+revision=5
 hostmakedepends="pkg-config python3-devel"
 makedepends="dbus-devel grail-devel frame-devel libXi-devel python3-devel xorg-server-devel"
 build_style="gnu-configure"

From 83ad8dc7e8dc71c64a9004e04aba36ca30c051fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 655/872] git-cola: rebuild for Python 3.8.

---
 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 7eaba90f3be..fd0bbf971d3 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.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/share/git-cola/lib"

From 69e4bac4c10842ce70ce2a1db26f883af407e79c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 656/872] git-review: rebuild for Python 3.8.

---
 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 d999dc87b16..c180cc60780 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="git_review"

From 7c0a260d7120bd5e0e4e27c6b30b83e9dfe60359 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 657/872] git-revise: rebuild for Python 3.8.

---
 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 4179a52bddc..a1bf51dc447 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.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gitrevise"

From 49a8265f4cd71c84814307928cbbd2eb33c4bbad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 658/872] gitg: rebuild for Python 3.8.

---
 srcpkgs/gitg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gitg/template b/srcpkgs/gitg/template
index e0da8e9490d..a3381fdb3a7 100644
--- a/srcpkgs/gitg/template
+++ b/srcpkgs/gitg/template
@@ -1,7 +1,7 @@
 # Template file for 'gitg'
 pkgname=gitg
 version=3.32.1
-revision=1
+revision=2
 build_style=meson
 hostmakedepends="intltool pkg-config gobject-introspection vala glib-devel"
 makedepends="gtksourceview-devel libgit2-glib-devel libgee08-devel gtkspell3-devel

From 5b5919636d70cb1259ebd7740e9b55936a7c29f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 659/872] glances: rebuild for Python 3.8.

---
 srcpkgs/glances/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glances/template b/srcpkgs/glances/template
index 6d4766493c3..753d9e20c92 100644
--- a/srcpkgs/glances/template
+++ b/srcpkgs/glances/template
@@ -1,7 +1,7 @@
 # Template file for 'glances'
 pkgname=glances
 version=3.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Glances-${version}"
 build_style=python3-module

From 8b16492c679f3eb6c6ae2d4573f9adeb356715be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 660/872] glusterfs: rebuild for Python 3.8.

---
 srcpkgs/glusterfs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glusterfs/template b/srcpkgs/glusterfs/template
index a1304e266fe..90093864286 100644
--- a/srcpkgs/glusterfs/template
+++ b/srcpkgs/glusterfs/template
@@ -1,7 +1,7 @@
 # Template file for 'glusterfs'
 pkgname=glusterfs
 version=6.5
-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 22925c23326876f7422d67e1f21f0e629b9c7ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 661/872] gnome-authenticator: rebuild for Python 3.8.

---
 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 52d161897c7..ab7c505c0fe 100644
--- a/srcpkgs/gnome-authenticator/template
+++ b/srcpkgs/gnome-authenticator/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-authenticator'
 pkgname=gnome-authenticator
 version=0.2.4
-revision=2
+revision=3
 _libgd_hash=7ae254bfc5f641c60566614e08245176f7bc5aa8
 wrksrc="Authenticator-${version}"
 build_style=meson

From 4130139a7454a2050f48c6feac4f9312c50219d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 662/872] gnome-music: rebuild for Python 3.8.

---
 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 bceb7c369c8..e2fbbcbdeca 100644
--- a/srcpkgs/gnome-music/template
+++ b/srcpkgs/gnome-music/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-music'
 pkgname=gnome-music
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gnomemusic"

From 94b0589cc1f42f2505ac86d6596ab748ab75e02f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 663/872] gnome-passbook: rebuild for Python 3.8.

---
 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 54035dc920b..89047338503 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.1
-revision=1
+revision=2
 _release_hash=0a227cfdf706f4bfcc0b782026f1aeb2
 wrksrc="passbook-${version}"
 build_style=meson

From 76dae990f2ec69291f7826391c7a375014867fb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 664/872] gnome-passwordsafe: rebuild for Python 3.8.

---
 srcpkgs/gnome-passwordsafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnome-passwordsafe/template b/srcpkgs/gnome-passwordsafe/template
index f310ce03a08..8f1f19174d2 100644
--- a/srcpkgs/gnome-passwordsafe/template
+++ b/srcpkgs/gnome-passwordsafe/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-passwordsafe'
 pkgname=gnome-passwordsafe
 version=3.32.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="PasswordSafe-${version}"
 build_style=meson

From ebb227d14a2271cc033506f2dd54957eecc5b719 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 665/872] gns3-gui: rebuild for Python 3.8.

---
 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 38751dea59b..f4318dc6afc 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.1.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3"

From b44e9cf882e059036ed7e3834cafdf689c956e32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 666/872] gns3-net-converter: rebuild for Python 3.8.

---
 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 b9b7403e8a6..70b6c90e8c8 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=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3converter"

From eaf37536ad96d1421cc95823589d2cd21779089d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 667/872] gns3-server: rebuild for Python 3.8.

---
 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 6bd9c067b20..739c584cb7c 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.1.21
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="gns3server"
 hostmakedepends="python3-setuptools"

From 3a2540b9e2143af7b07dcaee0ed3930b9016dc1e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 668/872] gnucash: rebuild for Python 3.8.

---
 srcpkgs/gnucash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnucash/template b/srcpkgs/gnucash/template
index 68bb811fc42..d8ff0a8ec86 100644
--- a/srcpkgs/gnucash/template
+++ b/srcpkgs/gnucash/template
@@ -1,7 +1,7 @@
 # Template file for 'gnucash'
 pkgname=gnucash
 version=3.7
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DWITH_SQL=0 -DWITH_PYTHON=1"
 hostmakedepends="pkg-config guile python3 libxslt perl"

From c1420969fc916318d29dfdc3836adf0580095969 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 669/872] gom: rebuild for Python 3.8.

---
 srcpkgs/gom/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gom/template b/srcpkgs/gom/template
index 6ec2a5e338f..0b45e19def4 100644
--- a/srcpkgs/gom/template
+++ b/srcpkgs/gom/template
@@ -1,7 +1,7 @@
 # Template file for 'gom'
 pkgname=gom
 version=0.3.3
-revision=3
+revision=4
 build_style=meson
 build_helper="gir"
 configure_args="-Denable-introspection=$(vopt_if gir true false)

From e55d5d66739df70ca67793cbca3b12aa5f01e751 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 670/872] gpodder: rebuild for Python 3.8.

---
 srcpkgs/gpodder/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gpodder/template b/srcpkgs/gpodder/template
index 7c7414e19cd..5cc63ab4205 100644
--- a/srcpkgs/gpodder/template
+++ b/srcpkgs/gpodder/template
@@ -1,7 +1,7 @@
 # Template file for 'gpodder'
 pkgname=gpodder
 version=3.10.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="gpodder-${version}"
 make_check_target=unittest

From d91d30f5f2b0b5e6323da1f35eaf923fed0a111f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 671/872] gramps: rebuild for Python 3.8.

---
 srcpkgs/gramps/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gramps/template b/srcpkgs/gramps/template
index 9d1d1a4616a..5d40aeefb49 100644
--- a/srcpkgs/gramps/template
+++ b/srcpkgs/gramps/template
@@ -1,7 +1,7 @@
 # Template file for 'gramps'
 pkgname=gramps
 version=5.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gramps"

From bb3e960f11dda36c822c8bd1e8575b2a69ce9a66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 672/872] greg: rebuild for Python 3.8.

---
 srcpkgs/greg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/greg/template b/srcpkgs/greg/template
index 9c15ba82f4b..d898d5fdf61 100644
--- a/srcpkgs/greg/template
+++ b/srcpkgs/greg/template
@@ -1,7 +1,7 @@
 # Template file for 'greg'
 pkgname=greg
 version=0.4.7
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 pycompile_module="greg"

From be202bce8c20fb165e811e32683e96aae42b1452 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 673/872] gst1-python3: rebuild for Python 3.8.

---
 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 6f02f19aca3..bf946f6a8bf 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.16.1
-revision=1
+revision=2
 wrksrc="gst-python-${version}"
 build_style=meson
 pycompile_module="gi/overrides"

From b9ef9fe5fb2d7b03831106592cfae54a25c41a0f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 674/872] guake: rebuild for Python 3.8.

---
 srcpkgs/guake/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/guake/template b/srcpkgs/guake/template
index 86eaba649a7..d92fdf89355 100644
--- a/srcpkgs/guake/template
+++ b/srcpkgs/guake/template
@@ -1,7 +1,7 @@
 # Template file for 'guake'
 pkgname=guake
 version=3.6.3
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 wrksrc="Guake-${version}"

From a53d49cbf26761960b1d159a12df007b627e7650 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 675/872] gufw: rebuild for Python 3.8.

---
 srcpkgs/gufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gufw/template b/srcpkgs/gufw/template
index d2b8a4b025d..a4e7d861d71 100644
--- a/srcpkgs/gufw/template
+++ b/srcpkgs/gufw/template
@@ -1,7 +1,7 @@
 # Template file for 'gufw'
 pkgname=gufw
 version=19.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="gui-ufw-${version}"
 build_style=python3-module

From 165d3546e52431e5cb6d8f7534344eb7da2982a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 676/872] hamlib: rebuild for Python 3.8.

---
 srcpkgs/hamlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hamlib/template b/srcpkgs/hamlib/template
index c28a069cd6f..d52436c0893 100644
--- a/srcpkgs/hamlib/template
+++ b/srcpkgs/hamlib/template
@@ -1,7 +1,7 @@
 # Template file for 'hamlib'
 pkgname=hamlib
 version=3.3
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static --with-perl-binding --with-python-binding
  --with-tcl-binding --with-xml-support"

From fe67c3b8e01dac359eba93dada80286f4b7bd546 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 677/872] hangups: rebuild for Python 3.8.

---
 srcpkgs/hangups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hangups/template b/srcpkgs/hangups/template
index 0a2f2db16b4..0837a2c47c3 100644
--- a/srcpkgs/hangups/template
+++ b/srcpkgs/hangups/template
@@ -1,7 +1,7 @@
 # Template file for 'hangups'
 pkgname=hangups
 version=0.4.9
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="hangups"
 hostmakedepends="python3-setuptools"

From 54c05618d6ea2a636e7649b6dfb4df7e9097df99 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 678/872] hplip: rebuild for Python 3.8.

---
 srcpkgs/hplip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hplip/template b/srcpkgs/hplip/template
index 07a707569f6..3ef76e4591b 100644
--- a/srcpkgs/hplip/template
+++ b/srcpkgs/hplip/template
@@ -1,7 +1,7 @@
 # Template file for 'hplip'
 pkgname=hplip
 version=3.19.8
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="usr/share/hplip"
 configure_args="

From b9133921feebbc073c9d3cecdc138c34dd553caa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 679/872] httpie: rebuild for Python 3.8.

---
 srcpkgs/httpie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/httpie/template b/srcpkgs/httpie/template
index 387af8ebf05..61fc1499d35 100644
--- a/srcpkgs/httpie/template
+++ b/srcpkgs/httpie/template
@@ -1,7 +1,7 @@
 # Template file for 'httpie'
 pkgname=httpie
 version=1.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="httpie"

From 6c6626a47930ae266d4f95bc011f99e15b7237a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 680/872] ibus: rebuild for Python 3.8.

---
 srcpkgs/ibus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ibus/template b/srcpkgs/ibus/template
index 4875c7535d6..d3c35d786a4 100644
--- a/srcpkgs/ibus/template
+++ b/srcpkgs/ibus/template
@@ -1,7 +1,7 @@
 # Template file for 'ibus'
 pkgname=ibus
 version=1.5.20
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 configure_args="--enable-ui --enable-gtk3 --disable-tests

From ad8f78bd52e9d9925d746e1bbca9a926040dc866 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 681/872] iotop: rebuild for Python 3.8.

---
 srcpkgs/iotop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template
index 146a9e97791..522bf32a7c2 100644
--- a/srcpkgs/iotop/template
+++ b/srcpkgs/iotop/template
@@ -1,7 +1,7 @@
 # Template file for 'iotop'
 pkgname=iotop
 version=0.6
-revision=5
+revision=6
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From bf6b1d411e5f8d2459161a4599d66d7148220c48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 682/872] jrnl: rebuild for Python 3.8.

---
 srcpkgs/jrnl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template
index 3d08f129885..b184ef09508 100644
--- a/srcpkgs/jrnl/template
+++ b/srcpkgs/jrnl/template
@@ -1,7 +1,7 @@
 # Template file for 'jrnl'
 pkgname=jrnl
 version=1.9.8
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="jrnl"

From 3262fda476f3282359c09dd2902deac5997a3394 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 683/872] khal: rebuild for Python 3.8.

---
 srcpkgs/khal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khal/template b/srcpkgs/khal/template
index 39d08a66ba8..a73516695bf 100644
--- a/srcpkgs/khal/template
+++ b/srcpkgs/khal/template
@@ -1,7 +1,7 @@
 # Template file for 'khal'
 pkgname=khal
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khal"

From be7f25caca1d74c5f9f58c4cc40c3f3f889971d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 684/872] khard: rebuild for Python 3.8.

---
 srcpkgs/khard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khard/template b/srcpkgs/khard/template
index 6c6f3024be1..3ec9f398d99 100644
--- a/srcpkgs/khard/template
+++ b/srcpkgs/khard/template
@@ -1,7 +1,7 @@
 # Template file for 'khard'
 pkgname=khard
 version=0.14.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khard"

From 0509f15447526a6132348baf9eb600d22a0c20f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 685/872] lfm: rebuild for Python 3.8.

---
 srcpkgs/lfm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lfm/template b/srcpkgs/lfm/template
index 0a0a3b4f563..1e0e7cf29fa 100644
--- a/srcpkgs/lfm/template
+++ b/srcpkgs/lfm/template
@@ -1,7 +1,7 @@
 # Template file for 'lfm'
 pkgname=lfm
 version=3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 9ac423037b0a4806134116f0b6501d27f2bb3047 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 686/872] libArcus: rebuild for Python 3.8.

---
 srcpkgs/libArcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libArcus/template b/srcpkgs/libArcus/template
index 8e6c97ada21..d2ffda576d4 100644
--- a/srcpkgs/libArcus/template
+++ b/srcpkgs/libArcus/template
@@ -1,7 +1,7 @@
 # Template file for 'libArcus'
 pkgname=libArcus
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DBUILD_EXAMPLES=OFF"
 hostmakedepends="protobuf python3-sip-devel"

From 8a5c0bc1b4d750fbb633dcfb68645bdb8e23ac37 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 687/872] libSavitar: rebuild for Python 3.8.

---
 srcpkgs/libSavitar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libSavitar/template b/srcpkgs/libSavitar/template
index a9d3020158f..213f02f4d65 100644
--- a/srcpkgs/libSavitar/template
+++ b/srcpkgs/libSavitar/template
@@ -1,7 +1,7 @@
 # Template file for 'libSavitar'
 pkgname=libSavitar
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 hostmakedepends="python3"
 makedepends="python3-sip-devel python3-devel pugixml-devel"

From 888da49c1bb8061c80359b4015485b151f0d74d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 688/872] libaccounts-glib: rebuild for Python 3.8.

---
 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 717be24f209..239f9307261 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=2
+revision=3
 wrksrc="${pkgname}-VERSION_${version}-8948717702424ce15f4e23e5db2c8ce0799ec120"
 build_style=meson
 hostmakedepends="gtk-doc pkg-config glib-devel gobject-introspection vala"

From bd98c3c06982e10c3f9df1df66d5b04f1a5ef434 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 689/872] libblockdev: rebuild for Python 3.8.

---
 srcpkgs/libblockdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libblockdev/template b/srcpkgs/libblockdev/template
index 1df156e3c5b..ff20fc70618 100644
--- a/srcpkgs/libblockdev/template
+++ b/srcpkgs/libblockdev/template
@@ -1,7 +1,7 @@
 # Template file for 'libblockdev'
 pkgname=libblockdev
 version=2.21
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="cryptsetup-devel device-mapper-devel dmraid-devel libbytesize-devel

From 41b298fd633e7e588071f06e8d421ed9b2c21a8c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 690/872] libbytesize: rebuild for Python 3.8.

---
 srcpkgs/libbytesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libbytesize/template b/srcpkgs/libbytesize/template
index ee1862d889d..e07cdf29a82 100644
--- a/srcpkgs/libbytesize/template
+++ b/srcpkgs/libbytesize/template
@@ -1,7 +1,7 @@
 # Template file for 'libbytesize'
 pkgname=libbytesize
 version=1.4
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python3"
 makedepends="mpfr-devel pcre-devel"

From bdb495aaf63cb8b79a83eda9623e54e67de33d75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 691/872] libcap-ng: rebuild for Python 3.8.

---
 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 f462636c4c1..c6ec4f0a216 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.7.10
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-python --without-python3"
 short_desc="Alternate POSIX capabilities library"

From 64a29440ad0bb81db7db97e461b4b68478993d17 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 692/872] libffado: rebuild for Python 3.8.

---
 srcpkgs/libffado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libffado/template b/srcpkgs/libffado/template
index a9b6a5ec6a8..d566806bd82 100644
--- a/srcpkgs/libffado/template
+++ b/srcpkgs/libffado/template
@@ -1,7 +1,7 @@
 # Template file for 'libffado'
 pkgname=libffado
 version=2.4.1
-revision=1
+revision=2
 build_style=scons
 make_build_args="PREFIX=/usr MANDIR=/usr/share/man
  UDEVDIR=/usr/lib/udev/rules.d CUSTOM_ENV=1 BUILD_TESTS=0

From 3ac32b19e51680d2330b26da6cb8d640904fcb75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 693/872] libgit2-glib: rebuild for Python 3.8.

---
 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 05389a18258..ce68cb35d66 100644
--- a/srcpkgs/libgit2-glib/template
+++ b/srcpkgs/libgit2-glib/template
@@ -1,7 +1,7 @@
 # Template file for 'libgit2-glib'
 pkgname=libgit2-glib
 version=0.28.0.1
-revision=1
+revision=2
 build_style=meson
 build_helper="gir"
 configure_args="-Dintrospection=$(vopt_if gir true false)

From 6950f9e7571c268c087d93d7e94d169a8fb8291b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 694/872] libixion: rebuild for Python 3.8.

---
 srcpkgs/libixion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libixion/template b/srcpkgs/libixion/template
index 5d2c58ee7c0..dbc05d8b9c1 100644
--- a/srcpkgs/libixion/template
+++ b/srcpkgs/libixion/template
@@ -2,7 +2,7 @@
 pkgname=libixion
 reverts="0.15.0_1"
 version=0.14.1
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="boost-devel mdds python3-devel"

From 45a847c34a550d9cc64985d24ef9b306aade5790 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 695/872] liblouis: rebuild for Python 3.8.

---
 srcpkgs/liblouis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liblouis/template b/srcpkgs/liblouis/template
index 77194ad8820..13c29b62b21 100644
--- a/srcpkgs/liblouis/template
+++ b/srcpkgs/liblouis/template
@@ -1,7 +1,7 @@
 # Template file for 'liblouis'
 pkgname=liblouis
 version=3.9.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--enable-ucs4"
 pycompile_module="louis"

From f79d54ca6d5162f4f17a9cae76f0bd941deaf438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 696/872] opencv: rebuild for Python 3.8.

---
 srcpkgs/opencv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/opencv/template b/srcpkgs/opencv/template
index fcc38299f23..474b77be181 100644
--- a/srcpkgs/opencv/template
+++ b/srcpkgs/opencv/template
@@ -1,7 +1,7 @@
 # Template file for 'opencv'
 pkgname=opencv
 version=3.4.5
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_PRECOMPILED_HEADERS=OFF -DWITH_OPENMP=ON
  -DWITH_OPENCL=ON -DENABLE_CXX11=ON -DOPENCV_SKIP_PYTHON_LOADER=ON

From f3399fca6f67a8990fa1adc144bd949c0a5c66c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 697/872] libopenshot: rebuild for Python 3.8.

---
 srcpkgs/libopenshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libopenshot/template b/srcpkgs/libopenshot/template
index e1ac18faf93..dab1f2ae1e3 100644
--- a/srcpkgs/libopenshot/template
+++ b/srcpkgs/libopenshot/template
@@ -1,7 +1,7 @@
 # Template file for 'libopenshot'
 pkgname=libopenshot
 version=0.2.3
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 build_style=cmake
 pycompile_module="openshot.py"

From c7902fc599bfc61c600307df6f75acfadf8e612e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 698/872] liborcus: rebuild for Python 3.8.

---
 srcpkgs/liborcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liborcus/template b/srcpkgs/liborcus/template
index 3523d7830d8..e7704c43974 100644
--- a/srcpkgs/liborcus/template
+++ b/srcpkgs/liborcus/template
@@ -2,7 +2,7 @@
 pkgname=liborcus
 reverts="0.15.0_1"
 version=0.14.1
-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 aec13b74f5953d86ed1dab8574a9bb836924a3da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 699/872] libpwquality: rebuild for Python 3.8.

---
 srcpkgs/libpwquality/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpwquality/template b/srcpkgs/libpwquality/template
index e5a656236d7..6c2209155a3 100644
--- a/srcpkgs/libpwquality/template
+++ b/srcpkgs/libpwquality/template
@@ -1,7 +1,7 @@
 # Template file for 'libpwquality'
 pkgname=libpwquality
 version=1.4.1
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static --enable-pam --with-securedir=/usr/lib/security"
 hostmakedepends="libtool automake gettext-devel"

From a5604d1184badc5a3b5afb2426bc910d703ee0f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 700/872] libsearpc: rebuild for Python 3.8.

---
 srcpkgs/libsearpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsearpc/template b/srcpkgs/libsearpc/template
index 61f68e5e7de..a7e0b9ce05c 100644
--- a/srcpkgs/libsearpc/template
+++ b/srcpkgs/libsearpc/template
@@ -1,7 +1,7 @@
 # Template file for 'libsearpc'
 pkgname=libsearpc
 version=3.1.0
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="pysearpc"
 configure_args="PYTHON=python3 --disable-static --disable-compile-demo"

From 5aaa024e287c3460065dbe861abc25499a281e07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 701/872] libtorrent-rasterbar: fix and rebuild for Python 3.8.

---
 srcpkgs/libtorrent-rasterbar/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libtorrent-rasterbar/template b/srcpkgs/libtorrent-rasterbar/template
index 118108c6184..51b7175fb81 100644
--- a/srcpkgs/libtorrent-rasterbar/template
+++ b/srcpkgs/libtorrent-rasterbar/template
@@ -1,9 +1,9 @@
 # Template file for 'libtorrent-rasterbar'
 pkgname=libtorrent-rasterbar
 version=1.1.13
-revision=3
+revision=4
 build_style=gnu-configure
-configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=boost_python36"
+configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=libboost_python${py3_ver/./}"
 hostmakedepends="automake pkg-config intltool libtool python3-devel"
 makedepends="libressl-devel boost-devel geoip-devel python3-devel"
 short_desc="C++ bittorrent library by Rasterbar Software"
@@ -14,9 +14,9 @@ distfiles="https://github.com/arvidn/libtorrent/releases/download/libtorrent-${v
 checksum=30040719858e3c06634764e0c1778738eb42ecd0b45e814afa746329a948ead7
 
 pre_configure() {
-	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython3.6m"
+	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython${py3_ver}${py3_abiver}"
 	autoreconf -fi
 }
 

From 75ce8cab25904eeb4975663fb77b4f29c10c1dbe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 702/872] libvirt-python: rebuild for Python 3.8.

---
 srcpkgs/libvirt-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvirt-python/template b/srcpkgs/libvirt-python/template
index a2f0e038166..56253c9d3b0 100644
--- a/srcpkgs/libvirt-python/template
+++ b/srcpkgs/libvirt-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libvirt-python'
 pkgname=libvirt-python
 version=5.8.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="libvirt.py libvirt_lxc.py libvirt_qemu.py"
 hostmakedepends="pkg-config python-devel python3-devel libvirt-devel"

From 5e9842585a68fb832637cdd1b5adcd50bc48841b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 703/872] libvoikko: rebuild for Python 3.8.

---
 srcpkgs/libvoikko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvoikko/template b/srcpkgs/libvoikko/template
index 8d21b0f9c71..ba8eef837ee 100644
--- a/srcpkgs/libvoikko/template
+++ b/srcpkgs/libvoikko/template
@@ -1,7 +1,7 @@
 # Template file for 'libvoikko'
 pkgname=libvoikko
 version=4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-hfst=false --with-dictionary-path=/usr/share/voikko"
 pycompile_module="libvoikko.py"

From 8141b26019c7a2414b15fcf8b8672eb24047f49d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 704/872] libxml2-python: rebuild for Python 3.8.

---
 srcpkgs/libxml2-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libxml2-python/template b/srcpkgs/libxml2-python/template
index a80208823c2..5514ed43437 100644
--- a/srcpkgs/libxml2-python/template
+++ b/srcpkgs/libxml2-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libxml2-python'
 pkgname=libxml2-python
 version=2.9.9
-revision=3
+revision=4
 wrksrc="${pkgname%-python}-${version}"
 build_wrksrc=python
 build_style=python-module

From 70f5881f1b341100ddc517ba0f4b54e161303165 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 705/872] lightdm-gtk-greeter-settings: rebuild for Python 3.8.

---
 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 715f41bbef4..76a25b91e4c 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=1
+revision=2
 build_style=python3-module
 pycompile_module="lightdm_gtk_greeter_settings"
 hostmakedepends="python3-distutils-extra intltool"

From 04c380043914f79a0c6cd3199748bb0fb2e37967 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 706/872] llvm9: rebuild for Python 3.8.

---
 srcpkgs/llvm9/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/llvm9/template b/srcpkgs/llvm9/template
index 3c1a1a3451b..890a93855d8 100644
--- a/srcpkgs/llvm9/template
+++ b/srcpkgs/llvm9/template
@@ -1,7 +1,7 @@
 # Template file for 'llvm9'
 pkgname=llvm9
 version=9.0.0
-revision=2
+revision=3
 wrksrc="llvm-${version}.src"
 build_style=cmake
 configure_args="

From 4778e7a0c73ffa2fae833fee20ac790fef99fff9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 707/872] lollypop: rebuild for Python 3.8.

---
 srcpkgs/lollypop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lollypop/template b/srcpkgs/lollypop/template
index 56ace773bf3..3bd13c0d387 100644
--- a/srcpkgs/lollypop/template
+++ b/srcpkgs/lollypop/template
@@ -1,7 +1,7 @@
 # Template file for 'lollypop'
 pkgname=lollypop
 version=1.1.4.16
-revision=1
+revision=2
 # Gitlab upload tag hash
 _uhash=6b4e4e7a2c17f0770c1e2b3354ae5a3a
 archs=noarch

From 6041a22c11224f7e771c92e9f61adf7eaf37450a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 708/872] lutris: rebuild for Python 3.8.

---
 srcpkgs/lutris/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lutris/template b/srcpkgs/lutris/template
index 8f54d693a12..75be521cc7c 100644
--- a/srcpkgs/lutris/template
+++ b/srcpkgs/lutris/template
@@ -1,7 +1,7 @@
 # Template file for 'lutris'
 pkgname=lutris
 version=0.5.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 build_helper="gir"

From 768559bee2d66197ffebf07de70d31e1098fe2a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 709/872] magic-wormhole: rebuild for Python 3.8.

---
 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 c07753ce6ad..d93a1bbe1fc 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.11.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wormhole"

From 2a5b126fdf712642756c4d70a6a679f4479b504c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 710/872] mate-tweak: rebuild for Python 3.8.

---
 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 85b829e85e8..76b79524269 100644
--- a/srcpkgs/mate-tweak/template
+++ b/srcpkgs/mate-tweak/template
@@ -1,7 +1,7 @@
 # Template file for 'mate-tweak'
 pkgname=mate-tweak
 version=19.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-pbr python3-setuptools"

From 2717d85b6903ce0f45484d5f051e477d27e68ff3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 711/872] med: rebuild for Python 3.8.

---
 srcpkgs/med/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/med/template b/srcpkgs/med/template
index 34dd6d006d6..acd79293246 100644
--- a/srcpkgs/med/template
+++ b/srcpkgs/med/template
@@ -1,7 +1,7 @@
 # Template file for 'med'
 pkgname=med
 version=4.0.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--with-swig=yes --includedir=/usr/include/med"
 pycompile_module=med

From e6073b9b26be31845b922008dc6d5083ec2516e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 712/872] meld: rebuild for Python 3.8.

---
 srcpkgs/meld/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meld/template b/srcpkgs/meld/template
index 9ed6114299e..7cbac065ce6 100644
--- a/srcpkgs/meld/template
+++ b/srcpkgs/meld/template
@@ -1,7 +1,7 @@
 # Template file for 'meld'
 pkgname=meld
 version=3.20.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="meld"

From 30bbbb75eda44c4dfeac15c27223fe671d4703ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 713/872] menulibre: rebuild for Python 3.8.

---
 srcpkgs/menulibre/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/menulibre/template b/srcpkgs/menulibre/template
index 64311115bec..f16c5f64337 100644
--- a/srcpkgs/menulibre/template
+++ b/srcpkgs/menulibre/template
@@ -1,7 +1,7 @@
 # Template file for 'menulibre'
 pkgname=menulibre
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="menulibre menulibre_lib"

From 7f5fb6f6a41e18474dce397f36f38f5cce8f9eca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 714/872] meson-cmake-wrapper: rebuild for Python 3.8.

---
 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 ca14e533431..57eea159ca8 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mcw"

From 2c4c7008df31cd5ec9699fe3aba2f53facd423e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 715/872] mimeo: rebuild for Python 3.8.

---
 srcpkgs/mimeo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mimeo/template b/srcpkgs/mimeo/template
index bef8dcde863..991c61d9df8 100644
--- a/srcpkgs/mimeo/template
+++ b/srcpkgs/mimeo/template
@@ -1,7 +1,7 @@
 # Template file for 'mimeo'
 pkgname=mimeo
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="Mimeo.py"

From 533400db8d1d7673cb8a5b187cf4510495a5d6fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 716/872] mozo: rebuild for Python 3.8.

---
 srcpkgs/mozo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template
index 041f2454c3d..7bc18f017c7 100644
--- a/srcpkgs/mozo/template
+++ b/srcpkgs/mozo/template
@@ -1,7 +1,7 @@
 # Template file for 'mozo'
 pkgname=mozo
 version=1.22.2
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="Mozo"

From 79476ba290c89d038ce38a9ed875bed6b5bf69e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 717/872] mpd-sima: rebuild for Python 3.8.

---
 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 fb72f0d2632..831fec709b7 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=1
+revision=2
 archs=noarch
 wrksrc="MPD_sima-${version}"
 build_style=python3-module

From 9d547673ab95e2aeb2d2405f6fff480cbd9afa5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 718/872] mps-youtube: rebuild for Python 3.8.

---
 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 7b104aa706f..2141b3e627d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mps_youtube"

From 8e1db2d48466dc2bdc06e1330eeefaa727da6356 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 719/872] mugshot: rebuild for Python 3.8.

---
 srcpkgs/mugshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mugshot/template b/srcpkgs/mugshot/template
index cf27b30acac..1e695654a86 100644
--- a/srcpkgs/mugshot/template
+++ b/srcpkgs/mugshot/template
@@ -1,7 +1,7 @@
 # Template file for 'mugshot'
 pkgname=mugshot
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra"

From dd0ad3b8c52088d1809fd214b32ed7b0acdd2f66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 720/872] multibootusb: rebuild for Python 3.8.

---
 srcpkgs/multibootusb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/multibootusb/template b/srcpkgs/multibootusb/template
index 049b641c5fd..70cb07a85ac 100644
--- a/srcpkgs/multibootusb/template
+++ b/srcpkgs/multibootusb/template
@@ -1,7 +1,7 @@
 # Template file for 'multibootusb'
 pkgname=multibootusb
 version=9.2.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="scripts"

From 85356b30501f219e78afd8cb95f1a6cb09193ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 721/872] mymcplus: rebuild for Python 3.8.

---
 srcpkgs/mymcplus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mymcplus/template b/srcpkgs/mymcplus/template
index 369ac8048ed..f30c62b09f4 100644
--- a/srcpkgs/mymcplus/template
+++ b/srcpkgs/mymcplus/template
@@ -1,7 +1,7 @@
 # Template file for 'mymcplus'
 pkgname=mymcplus
 version=3.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mymcplus"

From f10ceae15759ab2c42d786a23926a759967abb41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 722/872] nagstamon: fix and rebuild for Python 3.8.

---
 srcpkgs/nagstamon/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/nagstamon/template b/srcpkgs/nagstamon/template
index 3a63bb5f1d9..0eb5bc75d27 100644
--- a/srcpkgs/nagstamon/template
+++ b/srcpkgs/nagstamon/template
@@ -1,7 +1,7 @@
 # Template file for 'nagstamon'
 pkgname=nagstamon
 version=3.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=Nagstamon
 build_style=python3-module
@@ -16,6 +16,10 @@ homepage="https://nagstamon.ifw-dresden.de"
 distfiles="https://nagstamon.ifw-dresden.de/files/stable/Nagstamon-${version}.tar.gz"
 checksum=a834460e78dc01f62171a83c4a11d890702264ed662863dff39edaf14ae98880
 
+post_extract() {
+	# Gone in python 3.8, but these where the python 3.6 values.  ;)
+	vsed -i -e 's/platform.dist()/("","","")/g' setup.py
+}
 post_install() {
 	chmod 644 ${DESTDIR}/usr/share/pixmaps/nagstamon.svg
 	mv -v ${DESTDIR}/usr/bin/nagstamon.py ${DESTDIR}/usr/bin/nagstamon

From 52acf83950d25bcf72b3fc81796436543c409ce8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 723/872] neovim-remote: rebuild for Python 3.8.

---
 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 d8473bf0521..7391f9df2ee 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.2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nvr"

From ae77cba0468f1ab1fe3e89bf758d2d153c6b8725 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 724/872] newt: rebuild for Python 3.8.

---
 srcpkgs/newt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/newt/template b/srcpkgs/newt/template
index 3971bbfdbf7..25ccc946f51 100644
--- a/srcpkgs/newt/template
+++ b/srcpkgs/newt/template
@@ -1,7 +1,7 @@
 # Template file for 'newt'
 pkgname=newt
 version=0.52.21
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python-devel python3-devel"
 makedepends="slang-devel popt-devel python3-devel python-devel"

From 5d77f30f98b4d84c2807418deb840acda4016790 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 725/872] notmuch: rebuild for Python 3.8.

---
 srcpkgs/notmuch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/notmuch/template b/srcpkgs/notmuch/template
index ced670a59d4..a3085fd4c27 100644
--- a/srcpkgs/notmuch/template
+++ b/srcpkgs/notmuch/template
@@ -1,7 +1,7 @@
 # Template file for 'notmuch'
 pkgname=notmuch
 version=0.29.1
-revision=1
+revision=2
 hostmakedepends="perl pkg-config python-devel python3-Sphinx python3-devel"
 makedepends="bash-completion gmime3-devel talloc-devel xapian-core-devel"
 short_desc="Thread-based email index, search, and tagging"

From 2a004663318b9be9e0b13e69c2f89b9682ece8e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 726/872] nyx: rebuild for Python 3.8.

---
 srcpkgs/nyx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/nyx/template b/srcpkgs/nyx/template
index 201ab5856ff..4b265771793 100644
--- a/srcpkgs/nyx/template
+++ b/srcpkgs/nyx/template
@@ -1,7 +1,7 @@
 # Template file for 'nyx'
 pkgname=nyx
 version=2.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nyx"

From 9ff1df8e1d687a5a38d373d51d32e4e428dbe286 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 727/872] olm-python: rebuild for Python 3.8.

---
 srcpkgs/olm-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/olm-python/template b/srcpkgs/olm-python/template
index 57ac1cfa01b..0141611ea3f 100644
--- a/srcpkgs/olm-python/template
+++ b/srcpkgs/olm-python/template
@@ -1,7 +1,7 @@
 # Template file for 'olm-python'
 pkgname=olm-python
 version=3.1.4
-revision=1
+revision=2
 wrksrc="olm-${version}"
 build_wrksrc=python
 build_style=python-module

From b5b9070e7d35511535cee5a401bcdb4ea6359959 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 728/872] onboard: rebuild for Python 3.8.

---
 srcpkgs/onboard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onboard/template b/srcpkgs/onboard/template
index 844744038d8..467ed8f0ea5 100644
--- a/srcpkgs/onboard/template
+++ b/srcpkgs/onboard/template
@@ -1,7 +1,7 @@
 # Template file for 'onboard'
 pkgname=onboard
 version=1.4.1
-revision=4
+revision=5
 build_style=python3-module
 pycompile_module="Onboard"
 patch_args="-Np1"

From c23e1317c4a493f2967ade1da8cf6eb9806b2066 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 729/872] openrazer-meta: rebuild for Python 3.8.

---
 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 112cb9e900b..60dc8212a73 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=2
+revision=3
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 0c8dabe0616d85f801dfefea1b22748ee6055bdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 730/872] openshot: rebuild for Python 3.8.

---
 srcpkgs/openshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/openshot/template b/srcpkgs/openshot/template
index 605ea7305c2..d71b4d09fae 100644
--- a/srcpkgs/openshot/template
+++ b/srcpkgs/openshot/template
@@ -1,7 +1,7 @@
 # Template file for 'openshot'
 pkgname=openshot
 version=2.4.4
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 wrksrc="${pkgname}-qt-${version}"
 build_style=python3-module

From e14cf6e0c5c985078aade34a1f21446e153dbeed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 731/872] orca: rebuild for Python 3.8.

---
 srcpkgs/orca/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/orca/template b/srcpkgs/orca/template
index ac1c0e1dc0e..57d1495c10a 100644
--- a/srcpkgs/orca/template
+++ b/srcpkgs/orca/template
@@ -1,7 +1,7 @@
 # Template file for 'orca'
 pkgname=orca
 version=3.34.0
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="orca"

From ef83881d95547fbaa4f216958aa7f49b0b2c98b3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 732/872] papis: rebuild for Python 3.8.

---
 srcpkgs/papis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/papis/template b/srcpkgs/papis/template
index 95044b2a6a4..d99f358fc0d 100644
--- a/srcpkgs/papis/template
+++ b/srcpkgs/papis/template
@@ -1,7 +1,7 @@
 # Template file for 'papis'
 pkgname=papis
 version=0.8
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-requests python3-yaml python3-chardet python3-BeautifulSoup4

From f4cf98a67a63c679f47a66c6b67ab7309b5769f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 733/872] paraview: rebuild for Python 3.8.

---
 srcpkgs/paraview/template | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/paraview/template b/srcpkgs/paraview/template
index 3b721b1833a..d928a5ea095 100644
--- a/srcpkgs/paraview/template
+++ b/srcpkgs/paraview/template
@@ -1,7 +1,7 @@
 # Template file for 'paraview'
 pkgname=paraview
 version=5.6.1
-revision=1
+revision=2
 wrksrc=ParaView-v${version}
 build_style=cmake
 configure_args="-DPARAVIEW_ENABLE_FFMPEG=ON
@@ -58,6 +58,11 @@ checksum=50ef01f54db6358b402e50d1460ef47c04d675bf26f250c6937737169f1e6612
 CFLAGS="-D_GNU_SOURCE"
 CXXFLAGS="-D_GNU_SOURCE"
 
+post_extract() {
+	# Python 3.8 API change: https://docs.python.org/3/c-api/typeobj.html
+	sed -i '/\/\/ tp_print/s/nullptr/0/' \
+		VTK/Wrapping/Tools/*.c VTK/Wrapping/PythonCore/*.cxx
+}
 post_install() {
 	vlicense Copyright.txt
 }

From 726b01acdb0c9e145291f4e36011c0aaa709684d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 734/872] pass-git-helper: rebuild for Python 3.8.

---
 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 dfeed3ba4f0..6d7f25bd8a7 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.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 78ecdb2c1a4374ceaca2d5093af3a91996be3350 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 735/872] peframe: rebuild for Python 3.8.

---
 srcpkgs/peframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peframe/template b/srcpkgs/peframe/template
index b9d64f7a5a6..5ecede6cf56 100644
--- a/srcpkgs/peframe/template
+++ b/srcpkgs/peframe/template
@@ -1,7 +1,7 @@
 # Template file for 'peframe'
 pkgname=peframe
 version=6.0.3
-revision=1
+revision=2
 archs=noarch
 build_style="python3-module"
 pycompile_module="peframe"

From 78841509335c273af19896de5b79ea31c3168e1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 736/872] peru: rebuild for Python 3.8.

---
 srcpkgs/peru/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peru/template b/srcpkgs/peru/template
index 682440f0b50..10d4689338d 100644
--- a/srcpkgs/peru/template
+++ b/srcpkgs/peru/template
@@ -1,7 +1,7 @@
 # Template file for 'peru'
 pkgname=peru
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="peru"

From 9513806ce9175a7e7f042c9a8aa445525747c64b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 737/872] pgcli: rebuild for Python 3.8.

---
 srcpkgs/pgcli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index b967287e9cb..b187a0a4440 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,7 +1,7 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pgcli"

From 9b06f6f2643e97359ce83918b636d83617530e9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 738/872] picard: rebuild for Python 3.8.

---
 srcpkgs/picard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/picard/template b/srcpkgs/picard/template
index 1bae142434a..08404a88475 100644
--- a/srcpkgs/picard/template
+++ b/srcpkgs/picard/template
@@ -1,7 +1,7 @@
 # Template file for 'picard'
 pkgname=picard
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname}-release-${version}"
 build_style=python3-module

From f046b5d0d02d0350b9b4b0d012941d73a64d7674 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 739/872] piper: rebuild for Python 3.8.

---
 srcpkgs/piper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/piper/template b/srcpkgs/piper/template
index af8cc854991..91a31131f84 100644
--- a/srcpkgs/piper/template
+++ b/srcpkgs/piper/template
@@ -1,7 +1,7 @@
 # Template file for 'piper'
 pkgname=piper
 version=0.2.904
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 hostmakedepends="libratbag pkg-config glib-devel"

From 35264de163d55cc30160d954c08f635a5fa12285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 740/872] playitslowly: rebuild for Python 3.8.

---
 srcpkgs/playitslowly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/playitslowly/template b/srcpkgs/playitslowly/template
index d26cea3510a..6d3483ae251 100644
--- a/srcpkgs/playitslowly/template
+++ b/srcpkgs/playitslowly/template
@@ -1,7 +1,7 @@
 # Template file for 'playitslowly'
 pkgname=playitslowly
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From e81422f6d1d5c7623368d70897172c813b3de9b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 741/872] pmbootstrap: rebuild for Python 3.8.

---
 srcpkgs/pmbootstrap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pmbootstrap/template b/srcpkgs/pmbootstrap/template
index 1bfa8183a84..15e606439c2 100644
--- a/srcpkgs/pmbootstrap/template
+++ b/srcpkgs/pmbootstrap/template
@@ -1,7 +1,7 @@
 # Template file for 'pmbootstrap'
 pkgname=pmbootstrap
 version=1.9.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pmb"

From 527e6a4630f16baca7fc343a5a1d9a05342d82ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 742/872] pockyt: fix and rebuild for Python 3.8.

---
 srcpkgs/pockyt/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/pockyt/template b/srcpkgs/pockyt/template
index 760573904b1..ff12361d443 100644
--- a/srcpkgs/pockyt/template
+++ b/srcpkgs/pockyt/template
@@ -1,7 +1,7 @@
 # Template file for 'pockyt'
 pkgname=pockyt
 version=1.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -13,3 +13,7 @@ license="GPL-3.0-or-later"
 homepage="https://github.com/arvindch/pockyt"
 distfiles="${homepage}/archive/${version}.tar.gz"
 checksum=cd9561e126a6a01c73762639eb7e38b8c509ed1412f72fcc4729b12565b9962c
+
+post_extract() {
+	sed -i 's/(3, 7)/&, (3, 8)/' setup.py
+}

From b17ef4dbbbef2220a50989dc81f76cba0decd84a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 743/872] poezio: rebuild for Python 3.8.

---
 srcpkgs/poezio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/poezio/template b/srcpkgs/poezio/template
index 56f8138bb5e..4b318419dab 100644
--- a/srcpkgs/poezio/template
+++ b/srcpkgs/poezio/template
@@ -1,7 +1,7 @@
 # Template file for 'poezio'
 pkgname=poezio
 version=0.12.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="poezio poezio_plugins poezio_themes"
 hostmakedepends="python3-setuptools pkg-config"

From 3b5be45e96733313ad2473bc51a7d8eee1702577 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 744/872] protontricks: rebuild for Python 3.8.

---
 srcpkgs/protontricks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/protontricks/template b/srcpkgs/protontricks/template
index a32f51c4845..dc003b63690 100644
--- a/srcpkgs/protontricks/template
+++ b/srcpkgs/protontricks/template
@@ -1,7 +1,7 @@
 # Template file for 'protontricks'
 pkgname=protontricks
 version=1.2.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-setuptools"

From 6b17e630c97868c3510f8e786c4c0a4d3b250ecf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 745/872] pulseaudio-equalizer-ladspa: rebuild for Python 3.8.

---
 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 62d7eef2a65..10198de2c08 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=1
+revision=2
 wrksrc="equalizer-${version}"
 build_style=meson
 pycompile_module="pulseeq"

From 70dbb53c2ba650d2fc146e7837f700dec9df6062 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 746/872] pulseeffects: rebuild for Python 3.8.

---
 srcpkgs/pulseeffects/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pulseeffects/template b/srcpkgs/pulseeffects/template
index 7fc44f938d9..dc9044cad32 100644
--- a/srcpkgs/pulseeffects/template
+++ b/srcpkgs/pulseeffects/template
@@ -2,7 +2,7 @@
 pkgname=pulseeffects
 reverts="4.3.4_1"
 version=3.2.3
-revision=3
+revision=4
 build_style=meson
 pycompile_module="PulseEffects PulseEffectsTest"
 hostmakedepends="pkg-config"

From b1dc43e0f84322bbc809630267fe0e51c5e1b41e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 747/872] py3status: rebuild for Python 3.8.

---
 srcpkgs/py3status/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/py3status/template b/srcpkgs/py3status/template
index b7a263270e4..01709cfd14d 100644
--- a/srcpkgs/py3status/template
+++ b/srcpkgs/py3status/template
@@ -1,7 +1,7 @@
 # Template file for 'py3status'
 pkgname=py3status
 version=3.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="py3status"

From 0644b2ee33752b76bc1875c86123ab77a073fc53 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 748/872] pychess: rebuild for Python 3.8.

---
 srcpkgs/pychess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pychess/template b/srcpkgs/pychess/template
index 2c6ecef7bf9..d0594aa77f4 100644
--- a/srcpkgs/pychess/template
+++ b/srcpkgs/pychess/template
@@ -1,7 +1,7 @@
 # Template file for 'pychess'
 pkgname=pychess
 version=0.12.4
-revision=2
+revision=3
 build_style=python3-module
 pycompile_module="pychess"
 archs=noarch

From 5cf19da1be32229c7b04dffba15cd724042a2e9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 749/872] pycp: rebuild for Python 3.8.

---
 srcpkgs/pycp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pycp/template b/srcpkgs/pycp/template
index 770eb50d3f4..c9066259862 100644
--- a/srcpkgs/pycp/template
+++ b/srcpkgs/pycp/template
@@ -1,7 +1,7 @@
 # Template file for 'pycp'
 pkgname=pycp
 version=8.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pycp"

From d88382e9fb382116d88e9ccd60e69a7320462f5c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 750/872] pymol: rebuild for Python 3.8.

---
 srcpkgs/pymol/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pymol/template b/srcpkgs/pymol/template
index 428ba7a6deb..e1031f325c0 100644
--- a/srcpkgs/pymol/template
+++ b/srcpkgs/pymol/template
@@ -1,7 +1,7 @@
 # Template file for 'pymol'
 pkgname=pymol
 version=2.3.0
-revision=1
+revision=2
 wrksrc=${pkgname}-open-source-${version}
 build_style="python3-module"
 makedepends="msgpack-devel python3-numpy freetype-devel libfreeglut-devel glew-devel

From 1245dfb2ab23badf279042adca4caff2deba10a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 751/872] pyradio: rebuild for Python 3.8.

---
 srcpkgs/pyradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyradio/template b/srcpkgs/pyradio/template
index 10d7d8c6fbb..d2d5feddbdd 100644
--- a/srcpkgs/pyradio/template
+++ b/srcpkgs/pyradio/template
@@ -1,7 +1,7 @@
 # Template file for 'pyradio'
 pkgname=pyradio
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pyradio"

From f677cdf12f3d405d1bcb43aab8dd1fc258ee91d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 752/872] pyside2-tools: rebuild for Python 3.8.

---
 srcpkgs/pyside2-tools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyside2-tools/template b/srcpkgs/pyside2-tools/template
index 4ba0044452d..0a153de8c15 100644
--- a/srcpkgs/pyside2-tools/template
+++ b/srcpkgs/pyside2-tools/template
@@ -1,7 +1,7 @@
 # Template file for 'pyside2-tools'
 pkgname=pyside2-tools
 version=5.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release

From 727e69b5ed47b99d25354a6a6d6f42b907a7b696 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 753/872] pysolfc: rebuild for Python 3.8.

---
 srcpkgs/pysolfc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pysolfc/template b/srcpkgs/pysolfc/template
index 62eb90009af..1631e9619d3 100644
--- a/srcpkgs/pysolfc/template
+++ b/srcpkgs/pysolfc/template
@@ -1,7 +1,7 @@
 # Template file for 'pysolfc'
 pkgname=pysolfc
 version=2.6.4
-revision=2
+revision=3
 archs="noarch"
 wrksrc="PySolFC-${pkgname}-${version}"
 build_style=python3-module

From 837440a9d7d89a3bcfe00ffd798f18212ea374e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 754/872] pywal: rebuild for Python 3.8.

---
 srcpkgs/pywal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pywal/template b/srcpkgs/pywal/template
index 214a36698f2..98c4e1581e4 100644
--- a/srcpkgs/pywal/template
+++ b/srcpkgs/pywal/template
@@ -1,7 +1,7 @@
 # Template file for 'pywal'
 pkgname=pywal
 version=3.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pywal"

From 168ac3cd6bd43efb1d6d4192cd9b426cffb66930 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 755/872] qomui: rebuild for Python 3.8.

---
 srcpkgs/qomui/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qomui/template b/srcpkgs/qomui/template
index 4e68864252d..8063350ba06 100644
--- a/srcpkgs/qomui/template
+++ b/srcpkgs/qomui/template
@@ -1,7 +1,7 @@
 # Template file for 'qomui'
 pkgname=qomui
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qomui"

From 26a0119ac8b90d7cd7d6f2c49b3d1c927325b552 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 756/872] quodlibet: rebuild for Python 3.8.

---
 srcpkgs/quodlibet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/quodlibet/template b/srcpkgs/quodlibet/template
index 53f6e926315..4b0c4ba0de5 100644
--- a/srcpkgs/quodlibet/template
+++ b/srcpkgs/quodlibet/template
@@ -1,7 +1,7 @@
 # Template file for 'quodlibet'
 pkgname=quodlibet
 version=4.2.1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="quodlibet"

From c8788e4bb387cdc48040e3af5663a0a23e068ed2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 757/872] qutebrowser: rebuild for Python 3.8.

---
 srcpkgs/qutebrowser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qutebrowser/template b/srcpkgs/qutebrowser/template
index 11b74e4445d..07257c2d84b 100644
--- a/srcpkgs/qutebrowser/template
+++ b/srcpkgs/qutebrowser/template
@@ -1,7 +1,7 @@
 # Template file for 'qutebrowser'
 pkgname=qutebrowser
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qutebrowser"

From 2a2f8aeebe7cb2c4d3783dcdf5725f4c8e717d03 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 758/872] r128gain: rebuild for Python 3.8.

---
 srcpkgs/r128gain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/r128gain/template b/srcpkgs/r128gain/template
index cdea955828e..1cb30c786f8 100644
--- a/srcpkgs/r128gain/template
+++ b/srcpkgs/r128gain/template
@@ -1,7 +1,7 @@
 # Template file for 'r128gain'
 pkgname=r128gain
 version=0.9.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="r128gain"
 hostmakedepends="python3-setuptools"

From b923fdcd9bc9204affa69740d34e582e6712ed4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 759/872] radicale2: rebuild for Python 3.8.

---
 srcpkgs/radicale2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/radicale2/template b/srcpkgs/radicale2/template
index 0d8a27d89f3..310bc8cb3cf 100644
--- a/srcpkgs/radicale2/template
+++ b/srcpkgs/radicale2/template
@@ -1,7 +1,7 @@
 # Template file for 'radicale2'
 pkgname=radicale2
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module

From befc14e8b9ff96c37104bf2441216707df5bcc8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 760/872] ranger: rebuild for Python 3.8.

---
 srcpkgs/ranger/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template
index a387eac4ed7..a49716971a5 100644
--- a/srcpkgs/ranger/template
+++ b/srcpkgs/ranger/template
@@ -1,7 +1,7 @@
 # Template file for 'ranger'
 pkgname=ranger
 version=1.9.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ranger"

From d490364b5c373b46163f36731a39754e04556e98 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 761/872] rednotebook: rebuild for Python 3.8.

---
 srcpkgs/rednotebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rednotebook/template b/srcpkgs/rednotebook/template
index ac870a7a992..af7dea12fd5 100644
--- a/srcpkgs/rednotebook/template
+++ b/srcpkgs/rednotebook/template
@@ -1,7 +1,7 @@
 # Template file for 'rednotebook'
 pkgname=rednotebook
 version=2.11.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rednotebook"

From 44a5a4b73859a74fb915e7613fce5caeabd8acf1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 762/872] redshift: rebuild for Python 3.8.

---
 srcpkgs/redshift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/redshift/template b/srcpkgs/redshift/template
index bb31e7cec05..c58b8daeb76 100644
--- a/srcpkgs/redshift/template
+++ b/srcpkgs/redshift/template
@@ -1,7 +1,7 @@
 # Template file for 'redshift'
 pkgname=redshift
 version=1.12
-revision=1
+revision=2
 build_style=gnu-configure
 build_options="geoclue2"
 configure_args="--enable-gui --disable-geoclue $(vopt_enable geoclue2)"

From c0649b58de59e8a68aff332807f3240430e3ee7c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 763/872] ripe-atlas-tools: rebuild for Python 3.8.

---
 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 c8eef786962..c5e21c4b8dc 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=2.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ripe/atlas/tools"

From 8af034434b8588027b9c7e0f1b0abc587ad462bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 764/872] rmlint: rebuild for Python 3.8.

---
 srcpkgs/rmlint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rmlint/template b/srcpkgs/rmlint/template
index dc8d904d0c2..894a9a1dd01 100644
--- a/srcpkgs/rmlint/template
+++ b/srcpkgs/rmlint/template
@@ -1,7 +1,7 @@
 # Template file for 'rmlint'
 pkgname=rmlint
 version=2.9.0
-revision=1
+revision=2
 build_style=scons
 hostmakedepends="pkg-config python3-Sphinx glib-devel"
 makedepends="libblkid-devel elfutils-devel json-glib-devel"

From 04462f15c08bdd92062a53e420054fdfd65da92b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 765/872] rtv: rebuild for Python 3.8.

---
 srcpkgs/rtv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rtv/template b/srcpkgs/rtv/template
index 1a089e3e88d..1fc137b2e5b 100644
--- a/srcpkgs/rtv/template
+++ b/srcpkgs/rtv/template
@@ -1,7 +1,7 @@
 # Template file for 'rtv'
 pkgname=rtv
 version=1.27.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rtv"

From deb18b1928007c6e0a1042dab8adfe94a801bc28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 766/872] rubber: rebuild for Python 3.8.

---
 srcpkgs/rubber/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rubber/template b/srcpkgs/rubber/template
index cf668638cef..c7fe4cbbd06 100644
--- a/srcpkgs/rubber/template
+++ b/srcpkgs/rubber/template
@@ -1,7 +1,7 @@
 # Template file for 'rubber'
 pkgname=rubber
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From d19b0a94a22decc29f95aa94f2398a30133f2211 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 767/872] safeeyes: rebuild for Python 3.8.

---
 srcpkgs/safeeyes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/safeeyes/template b/srcpkgs/safeeyes/template
index bc35f302011..e7019662316 100644
--- a/srcpkgs/safeeyes/template
+++ b/srcpkgs/safeeyes/template
@@ -1,7 +1,7 @@
 # Template file for 'safeeyes'
 pkgname=safeeyes
 version=2.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="safeeyes"

From c2dacb3fb6e6380df395bffb3460d67524ddf348 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 768/872] scapy: rebuild for Python 3.8.

---
 srcpkgs/scapy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scapy/template b/srcpkgs/scapy/template
index 65242f332a8..36972bfd461 100644
--- a/srcpkgs/scapy/template
+++ b/srcpkgs/scapy/template
@@ -1,7 +1,7 @@
 # Template file for 'scapy'
 pkgname=scapy
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="scapy"

From 6b1ebeaf3648f62790dbf2c394c4060d12cb23d0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 769/872] screenplain: rebuild for Python 3.8.

---
 srcpkgs/screenplain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/screenplain/template b/srcpkgs/screenplain/template
index 8410ab45e40..8eb759ae6a6 100644
--- a/srcpkgs/screenplain/template
+++ b/srcpkgs/screenplain/template
@@ -1,7 +1,7 @@
 # Template file for 'screenplain'
 pkgname=screenplain
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenplain"

From 483229f73350818a1571180552a37954f26fe29d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 770/872] scudcloud: rebuild for Python 3.8.

---
 srcpkgs/scudcloud/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
index 1b9f5f27d8a..1ab2618066e 100644
--- a/srcpkgs/scudcloud/template
+++ b/srcpkgs/scudcloud/template
@@ -1,7 +1,7 @@
 # Template file for 'scudcloud'
 pkgname=scudcloud
 version=1.65
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="scudcloud"
 hostmakedepends="python3-setuptools"

From 123ca799b85c1e8c6cb93162214eead9f92e0baa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 771/872] seafile-libclient: rebuild for Python 3.8.

---
 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 47c49d5ceb2..5eda59c1041 100644
--- a/srcpkgs/seafile-libclient/template
+++ b/srcpkgs/seafile-libclient/template
@@ -1,7 +1,7 @@
 # Template file for 'seafile-libclient'
 pkgname=seafile-libclient
 version=7.0.2
-revision=1
+revision=2
 _distname="${pkgname/-libclient/}"
 wrksrc="${_distname}-${version}"
 build_style=gnu-configure

From dadf6fedad6d6851a5b944f873d4d86cd36ed505 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 772/872] sonata: rebuild for Python 3.8.

---
 srcpkgs/sonata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template
index 3e07610d1e5..fc2d86e6c1a 100644
--- a/srcpkgs/sonata/template
+++ b/srcpkgs/sonata/template
@@ -1,7 +1,7 @@
 # Template file for 'sonata'
 pkgname=sonata
 version=1.7b1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="sonata"

From 430726310d4a2c6f4487784216744a0ba8d42a97 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 773/872] speech-dispatcher: rebuild for Python 3.8.

---
 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 0c27951586a..39cebf1f320 100644
--- a/srcpkgs/speech-dispatcher/template
+++ b/srcpkgs/speech-dispatcher/template
@@ -1,7 +1,7 @@
 # Template build file for 'speech-dispatcher'.
 pkgname=speech-dispatcher
 version=0.8.8
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static"
 short_desc="High-level device independent layer for speech synthesis interface"

From 4bea1bb7754629dcc5164d4be09697dacdc27f52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 774/872] speedtest-cli: rebuild for Python 3.8.

---
 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 6746ea3a35e..c65d9fd631d 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.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="speedtest.py"

From b24b9d876eb69c9d222b4115f375b535b41d8e34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 775/872] sshuttle: rebuild for Python 3.8.

---
 srcpkgs/sshuttle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sshuttle/template b/srcpkgs/sshuttle/template
index e74d90171f2..04bae9a15c3 100644
--- a/srcpkgs/sshuttle/template
+++ b/srcpkgs/sshuttle/template
@@ -1,7 +1,7 @@
 # Template file for 'sshuttle'
 pkgname=sshuttle
 version=0.78.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="sshuttle"

From a94cf196bb0163b8ceac1e90b0c8aacf242262a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 776/872] sssd: rebuild for Python 3.8.

---
 srcpkgs/sssd/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sssd/template b/srcpkgs/sssd/template
index 2ea28d21bee..13d0da0ba99 100644
--- a/srcpkgs/sssd/template
+++ b/srcpkgs/sssd/template
@@ -1,7 +1,7 @@
 # Template file for 'sssd'
 pkgname=sssd
 version=2.0.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-selinux --without-semanage
  --disable-cifs-idmap-plugin --without-samba --with-os=fedora

From 70d497d5a57f21eb299193883523ee44fa71ea5a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 777/872] stcgal: rebuild for Python 3.8.

---
 srcpkgs/stcgal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stcgal/template b/srcpkgs/stcgal/template
index 3410ccf8678..d75e88837cc 100644
--- a/srcpkgs/stcgal/template
+++ b/srcpkgs/stcgal/template
@@ -1,7 +1,7 @@
 # Template file for 'stcgal'
 pkgname=stcgal
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="stcgal"

From cdf4a89e4e281111a817c4c7113ad77d40c5c6be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 778/872] stig: rebuild for Python 3.8.

---
 srcpkgs/stig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stig/template b/srcpkgs/stig/template
index 0777c5f0cc2..abe5f3b563c 100644
--- a/srcpkgs/stig/template
+++ b/srcpkgs/stig/template
@@ -1,7 +1,7 @@
 # Template file for 'stig'
 pkgname=stig
 version=0.10.1a
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 930f6e549836c3d39fd851a831e39a14e72633bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 779/872] streamlink: rebuild for Python 3.8.

---
 srcpkgs/streamlink/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/streamlink/template b/srcpkgs/streamlink/template
index abcdc12c4ac..59caa85dc8a 100644
--- a/srcpkgs/streamlink/template
+++ b/srcpkgs/streamlink/template
@@ -1,7 +1,7 @@
 # Template file for 'streamlink'
 pkgname=streamlink
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="streamlink streamlink_cli"

From ba9febf35412930fc49b70b49d56a17aa23ec4db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 780/872] subuser: rebuild for Python 3.8.

---
 srcpkgs/subuser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/subuser/template b/srcpkgs/subuser/template
index 50444246b29..0bc3e71db36 100644
--- a/srcpkgs/subuser/template
+++ b/srcpkgs/subuser/template
@@ -1,7 +1,7 @@
 # Template file for 'subuser'
 pkgname=subuser
 version=0.6.2
-revision=2
+revision=3
 archs="x86_64*"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From e15b7d83da234e08cd82b0718dee84173dfe4966 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 781/872] synapse: rebuild for Python 3.8.

---
 srcpkgs/synapse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template
index daae80e5792..0c0fd6841fb 100644
--- a/srcpkgs/synapse/template
+++ b/srcpkgs/synapse/template
@@ -1,7 +1,7 @@
 # Template file for 'synapse'
 pkgname=synapse
 version=1.3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From b4a3fa9e78a0b408df1d5ebbe41cd3ac56907dc4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 782/872] tekaim: rebuild for Python 3.8.

---
 srcpkgs/tekaim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tekaim/template b/srcpkgs/tekaim/template
index e3cc5335ecc..bd60dcc57a6 100644
--- a/srcpkgs/tekaim/template
+++ b/srcpkgs/tekaim/template
@@ -1,7 +1,7 @@
 # Template file for 'tekaim'
 pkgname=tekaim
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From 7224199b765cb4f2b66887ffe6244532da34b988 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 783/872] telepresence: rebuild for Python 3.8.

---
 srcpkgs/telepresence/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/telepresence/template b/srcpkgs/telepresence/template
index 17300f3b548..fa7f916f66f 100644
--- a/srcpkgs/telepresence/template
+++ b/srcpkgs/telepresence/template
@@ -1,7 +1,7 @@
 # Template file for 'telepresence'
 pkgname=telepresence
 version=0.102
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="telepresence"

From f585c9fe61cb8e3a7275817bb40e60bd92406046 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 784/872] termdown: rebuild for Python 3.8.

---
 srcpkgs/termdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/termdown/template b/srcpkgs/termdown/template
index 90a4a894d42..299de920389 100644
--- a/srcpkgs/termdown/template
+++ b/srcpkgs/termdown/template
@@ -1,7 +1,7 @@
 # Template file for 'termdown'
 pkgname=termdown
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="termdown.py"

From 52c4dcee8ca0ed8b268907b88b218d7b8e6f9593 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 785/872] terminal_markdown_viewer: rebuild for Python 3.8.

---
 srcpkgs/terminal_markdown_viewer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/terminal_markdown_viewer/template b/srcpkgs/terminal_markdown_viewer/template
index e5d0f38aae2..ba3fcfdc8d6 100644
--- a/srcpkgs/terminal_markdown_viewer/template
+++ b/srcpkgs/terminal_markdown_viewer/template
@@ -1,7 +1,7 @@
 # Template file for 'terminal_markdown_viewer'
 pkgname=terminal_markdown_viewer
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mdv"

From c4298b68d0f7694e8a23e689420f2a3d1f085606 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 786/872] thefuck: rebuild for Python 3.8.

---
 srcpkgs/thefuck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thefuck/template b/srcpkgs/thefuck/template
index 714cd7982c7..a0de1c7b6a3 100644
--- a/srcpkgs/thefuck/template
+++ b/srcpkgs/thefuck/template
@@ -1,7 +1,7 @@
 # Template file for 'thefuck'
 pkgname=thefuck
 version=3.29
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="thefuck"

From b18d19065aa9bd9b335b3ee939bb0bd64efade58 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 787/872] thinkpad-scripts: rebuild for Python 3.8.

---
 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 8d26cf23e77..855d42492fb 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tps"

From 1770ed9b1c9c751304b91a6f6e53da7de1648214 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 788/872] thrift: rebuild for Python 3.8.

---
 srcpkgs/thrift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thrift/template b/srcpkgs/thrift/template
index 73b0f59d4f6..e379ac35a09 100644
--- a/srcpkgs/thrift/template
+++ b/srcpkgs/thrift/template
@@ -1,7 +1,7 @@
 # Template file for 'thrift'
 pkgname=thrift
 version=0.12.0
-revision=2
+revision=3
 build_style=gnu-configure
 makedepends="boost-devel libressl-devel"
 short_desc="Apache Thrift compiler"

From 524283aef8b8fdd32035330913bfd16958f21979 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 789/872] todoman: rebuild for Python 3.8.

---
 srcpkgs/todoman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/todoman/template b/srcpkgs/todoman/template
index 2e0489ff49e..676412b8d0b 100644
--- a/srcpkgs/todoman/template
+++ b/srcpkgs/todoman/template
@@ -1,7 +1,7 @@
 # Template file for 'todoman'
 pkgname=todoman
 version=3.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="todoman"

From 7180afa5a1715531304f6a36a9eac431039f64f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 790/872] toot: rebuild for Python 3.8.

---
 srcpkgs/toot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template
index b6dcdc9ede6..7f9fac6ca01 100644
--- a/srcpkgs/toot/template
+++ b/srcpkgs/toot/template
@@ -1,7 +1,7 @@
 # Template file for 'toot'
 pkgname=toot
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="toot"

From d56207a1678134019b4f169934f0c50a78cf7588 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 791/872] torbrowser-launcher: fix and rebuild for Python 3.8.

---
 srcpkgs/torbrowser-launcher/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/torbrowser-launcher/template b/srcpkgs/torbrowser-launcher/template
index a4aa707495c..4986b6b3240 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.2
-revision=1
+revision=2
 archs="i686 x86_64" # limited by Tor Browser itself
 build_style=python3-module
 pycompile_module="torbrowser_launcher"
@@ -15,6 +15,10 @@ changelog="https://raw.githubusercontent.com/micahflee/torbrowser-launcher/maste
 distfiles="https://github.com/micahflee/torbrowser-launcher/archive/v${version}.tar.gz"
 checksum=25ad4b0c70579628bf18f4cdcd18ac303fe4f7f1c590cc48df2a87651c92991c
 
+post_extract() { 
+	# Python 3.8 removed platform.dist()
+	sed -i 's/distro =.*/distro = "Void"/' setup.py
+}
 post_install() {
 	vlicense LICENSE
 	rm ${DESTDIR}/usr/share/locale/torbrowser-launcher.mo # installed twice

From c66dda5131119abe071425664238ca389de34d8f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 792/872] tox: rebuild for Python 3.8.

---
 srcpkgs/tox/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tox/template b/srcpkgs/tox/template
index 8c6b63a3cb1..908cb86bb38 100644
--- a/srcpkgs/tox/template
+++ b/srcpkgs/tox/template
@@ -1,7 +1,7 @@
 # Template file for 'tox'
 pkgname=tox
 version=3.14.0
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="tox"
 hostmakedepends="python3-setuptools"

From c37ef482e10fb14da3d6cb396c8904257dc2c7c0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 793/872] trackma: rebuild for Python 3.8.

---
 srcpkgs/trackma/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/trackma/template b/srcpkgs/trackma/template
index 96833382346..4c29bb8a35d 100644
--- a/srcpkgs/trackma/template
+++ b/srcpkgs/trackma/template
@@ -1,7 +1,7 @@
 # Template file for 'trackma'
 pkgname=trackma
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 0a1f54dd6467927b77f9371a41381a01608228e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 794/872] trash-cli: rebuild for Python 3.8.

---
 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 2a08548c7c8..4ab724d8cb1 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.17.1.14
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3"

From 58a2a91ed22dcbe5fab5c49b6cb5b04cacb0bec6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 795/872] tryton: rebuild for Python 3.8.

---
 srcpkgs/tryton/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tryton/template b/srcpkgs/tryton/template
index 196033361f6..61e0f733dc9 100644
--- a/srcpkgs/tryton/template
+++ b/srcpkgs/tryton/template
@@ -1,7 +1,7 @@
 # Template file for 'tryton'
 pkgname=tryton
 version=5.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tryton"

From 0334c761ba939e24db0b4c619858a9e37a119b2d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 796/872] tuimoji: rebuild for Python 3.8.

---
 srcpkgs/tuimoji/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuimoji/template b/srcpkgs/tuimoji/template
index 71e0bf540c0..73f5cff281f 100644
--- a/srcpkgs/tuimoji/template
+++ b/srcpkgs/tuimoji/template
@@ -1,7 +1,7 @@
 # Template file for 'tuimoji'
 pkgname=tuimoji
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tuimoji"

From 7c8600b2683e37b9ae3b8d28fdf26fda4c4f5c41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 797/872] tuir: rebuild for Python 3.8.

---
 srcpkgs/tuir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuir/template b/srcpkgs/tuir/template
index dfc0b15c535..a98f4484544 100644
--- a/srcpkgs/tuir/template
+++ b/srcpkgs/tuir/template
@@ -1,7 +1,7 @@
 # Template file for 'tuir'
 pkgname=tuir
 version=1.28.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=python3-module

From fa94d7c83f3c15bf441526ff78dcfaa2e1a0e4fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 798/872] tzupdate: rebuild for Python 3.8.

---
 srcpkgs/tzupdate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tzupdate/template b/srcpkgs/tzupdate/template
index 9531f0f7540..de2217476bd 100644
--- a/srcpkgs/tzupdate/template
+++ b/srcpkgs/tzupdate/template
@@ -1,7 +1,7 @@
 # Template file for 'tzupdate'
 pkgname=tzupdate
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tzupdate.py"

From 8246b4d5c37f08891fb4b91655ad97e368d4b404 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 799/872] udiskie: rebuild for Python 3.8.

---
 srcpkgs/udiskie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/udiskie/template b/srcpkgs/udiskie/template
index 536f4d5609d..06d58236046 100644
--- a/srcpkgs/udiskie/template
+++ b/srcpkgs/udiskie/template
@@ -1,7 +1,7 @@
 # Template file for 'udiskie'
 pkgname=udiskie
 version=1.7.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="udiskie"

From c58f7d10a7748b8cf418991f3d804ce8631a137e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 800/872] ueberzug: rebuild for Python 3.8.

---
 srcpkgs/ueberzug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ueberzug/template b/srcpkgs/ueberzug/template
index e0c474ff63e..dfa1ab29d96 100644
--- a/srcpkgs/ueberzug/template
+++ b/srcpkgs/ueberzug/template
@@ -1,7 +1,7 @@
 # Template file for 'ueberzug'
 pkgname=ueberzug
 version=18.1.3
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel libX11-devel libXext-devel"

From e6ca68fa761e2b3df26f06a7b44e30331de08220 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 801/872] ufw: rebuild for Python 3.8.

---
 srcpkgs/ufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ufw/template b/srcpkgs/ufw/template
index ac7dfa45cdd..0bf2a3a0b76 100644
--- a/srcpkgs/ufw/template
+++ b/srcpkgs/ufw/template
@@ -1,7 +1,7 @@
 # Template file for 'ufw'
 pkgname=ufw
 version=0.36
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="ufw"

From 14dcd23aa719947cc774b71ef0820127a4865ef0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 802/872] unicorn: rebuild for Python 3.8.

---
 srcpkgs/unicorn/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/unicorn/template b/srcpkgs/unicorn/template
index 317e261ae88..971d44752ca 100644
--- a/srcpkgs/unicorn/template
+++ b/srcpkgs/unicorn/template
@@ -1,7 +1,7 @@
 # Template file for 'unicorn'
 pkgname=unicorn
 version=1.0.1
-revision=2
+revision=3
 archs="x86_64* i686*"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"
 short_desc="Lightweight multi-platform, multi-architecture CPU emulator framework"

From 1ae8d35f7645adeab1e7f8afafd996c92f0c08b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 803/872] unknown-horizons: rebuild for Python 3.8.

---
 srcpkgs/unknown-horizons/patches/py38.patch | 14 ++++++++++++++
 srcpkgs/unknown-horizons/template           |  2 +-
 2 files changed, 15 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/unknown-horizons/patches/py38.patch

diff --git a/srcpkgs/unknown-horizons/patches/py38.patch b/srcpkgs/unknown-horizons/patches/py38.patch
new file mode 100644
index 00000000000..59194750cd1
--- /dev/null
+++ b/srcpkgs/unknown-horizons/patches/py38.patch
@@ -0,0 +1,14 @@
+--- setup.py.orig
++++ setup.py
+@@ -39,10 +39,7 @@
+ # Ensure we are in the correct directory
+ os.chdir(os.path.realpath(os.path.dirname(__file__)))
+ 
+-if platform.dist()[0].lower() in ('debian', 'ubuntu'):
+-	executable_path = 'games'
+-else:
+-	executable_path = 'bin'
++executable_path = 'bin'
+ 
+ 
+ # this trick is for setting RELEASE_VERSION if the code is cloned from git repository
diff --git a/srcpkgs/unknown-horizons/template b/srcpkgs/unknown-horizons/template
index b5fc593b744..6e81970800d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3 intltool git python3-Pillow"

From 615d1baa489feab3864039bee37dad2e1ba9977d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 804/872] urh: rebuild for Python 3.8.

---
 srcpkgs/urh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urh/template b/srcpkgs/urh/template
index 2cec83082fd..31f28bb366b 100644
--- a/srcpkgs/urh/template
+++ b/srcpkgs/urh/template
@@ -1,7 +1,7 @@
 # Template file for 'urh'
 pkgname=urh
 version=2.7.5
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="urh"
 hostmakedepends="python3-setuptools python3-Cython"

From da0ab011d8839f3a6ddc2367fc8e1c879825ec29 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 805/872] urlscan: rebuild for Python 3.8.

---
 srcpkgs/urlscan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlscan/template b/srcpkgs/urlscan/template
index f6f0d1db07b..2bb1688dad7 100644
--- a/srcpkgs/urlscan/template
+++ b/srcpkgs/urlscan/template
@@ -1,7 +1,7 @@
 # Template file for 'urlscan'
 pkgname=urlscan
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlscan"

From d23be20fa55a06ffcdf1acd3d7018f833d4337c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 806/872] urlwatch: rebuild for Python 3.8.

---
 srcpkgs/urlwatch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlwatch/template b/srcpkgs/urlwatch/template
index e8a5e403c92..1166fe101a7 100644
--- a/srcpkgs/urlwatch/template
+++ b/srcpkgs/urlwatch/template
@@ -1,7 +1,7 @@
 # Template file for 'urlwatch'
 pkgname=urlwatch
 version=2.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlwatch"

From 758ae9723decfd1886b28f363eb103c16dbaa04b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 807/872] vapoursynth: fix and rebuild for Python 3.8.

---
 srcpkgs/vapoursynth/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/vapoursynth/template b/srcpkgs/vapoursynth/template
index dd85e8b39dc..1c417a624c3 100644
--- a/srcpkgs/vapoursynth/template
+++ b/srcpkgs/vapoursynth/template
@@ -1,7 +1,7 @@
 # Template file for 'vapoursynth'
 pkgname=vapoursynth
 version=R47.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake pkg-config libtool nasm python3-Cython"
 makedepends="python3-devel zimg-devel libmagick-devel libass-devel ffmpeg-devel
@@ -21,6 +21,7 @@ case $XBPS_TARGET_MACHINE in
 esac
 
 pre_configure() {
+	sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION/&-embed/g' configure.ac
 	./autogen.sh
 	case $XBPS_TARGET_MACHINE in
 		arm*musl)

From 2765c9f1b1e0d4395e629f6ff66e1003221cbb27 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 808/872] variety: rebuild for Python 3.8.

---
 srcpkgs/variety/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/variety/template b/srcpkgs/variety/template
index b4ea756c0c9..4d327a830f8 100644
--- a/srcpkgs/variety/template
+++ b/srcpkgs/variety/template
@@ -1,7 +1,7 @@
 # Template file for 'variety'
 pkgname=variety
 version=0.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="jumble variety variety_lib"

From 090c4bfcfc2db73eba64fcab8dec459707ad2676 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 809/872] vdirsyncer: rebuild for Python 3.8.

---
 srcpkgs/vdirsyncer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vdirsyncer/template b/srcpkgs/vdirsyncer/template
index 24080413456..708204afda2 100644
--- a/srcpkgs/vdirsyncer/template
+++ b/srcpkgs/vdirsyncer/template
@@ -1,7 +1,7 @@
 # Template file for 'vdirsyncer'
 pkgname=vdirsyncer
 version=0.16.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="vdirsyncer"

From fb3a977a1a5a3fd2be779201a4dd819512a4351a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 810/872] vidcutter: rebuild for Python 3.8.

---
 srcpkgs/vidcutter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vidcutter/template b/srcpkgs/vidcutter/template
index 4f30b888805..6ca85d4e766 100644
--- a/srcpkgs/vidcutter/template
+++ b/srcpkgs/vidcutter/template
@@ -1,7 +1,7 @@
 # Template file for 'vidcutter'
 pkgname=vidcutter
 version=6.0.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="vidcutter"

From 0addee01c86811593babb5238c415197cb01b03e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 811/872] vimiv: rebuild for Python 3.8.

---
 srcpkgs/vimiv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vimiv/template b/srcpkgs/vimiv/template
index 20fcbe7a03f..a560d4c9d81 100644
--- a/srcpkgs/vimiv/template
+++ b/srcpkgs/vimiv/template
@@ -1,7 +1,7 @@
 # Template file for 'vimiv'
 pkgname="vimiv"
 version=0.9.1
-revision=2
+revision=3
 build_style=gnu-makefile
 pycompile_module=vimiv
 hostmakedepends="python3-setuptools python3-devel"

From 0e236f27837583bf861e3984a19f4cf7827cbac1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 812/872] virtme: rebuild for Python 3.8.

---
 srcpkgs/virtme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtme/template b/srcpkgs/virtme/template
index 3905cb24b1d..30035a734f3 100644
--- a/srcpkgs/virtme/template
+++ b/srcpkgs/virtme/template
@@ -1,7 +1,7 @@
 # Template file for 'virtme'
 pkgname=virtme
 version=0.0.3.20180725
-revision=1
+revision=2
 archs=noarch
 _commit=60100bea82183b5d32ed9fca6534cd0fc60d5eb2
 wrksrc="${_commit}"

From 977bedee2b9cf218b33b79b6a30d782088e693be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 813/872] virtualenvwrapper: rebuild for Python 3.8.

---
 srcpkgs/virtualenvwrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtualenvwrapper/template b/srcpkgs/virtualenvwrapper/template
index 6007cc5d2ed..1f0c2efee86 100644
--- a/srcpkgs/virtualenvwrapper/template
+++ b/srcpkgs/virtualenvwrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'virtualenvwrapper'
 pkgname=virtualenvwrapper
 version=4.8.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="virtualenvwrapper"

From 13d514ee50452908bb52a5f4c379b8543e8aae2e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 814/872] visidata: rebuild for Python 3.8.

---
 srcpkgs/visidata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/visidata/template b/srcpkgs/visidata/template
index 715896e5f7c..c5c3ae7c82e 100644
--- a/srcpkgs/visidata/template
+++ b/srcpkgs/visidata/template
@@ -1,7 +1,7 @@
 # Template file for 'visidata'
 pkgname=visidata
 version=1.5.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="visidata"

From 9ed4ec9bfee68875daad74ea3f07f0378d1b0009 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 815/872] volctl: rebuild for Python 3.8.

---
 srcpkgs/volctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template
index 2b01750b9eb..585aabd2495 100644
--- a/srcpkgs/volctl/template
+++ b/srcpkgs/volctl/template
@@ -1,7 +1,7 @@
 # Template file for 'volctl'
 pkgname=volctl
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="volctl"

From 0db272695e88b29ee9216db4cc2572e0020b4df0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 816/872] voltron: rebuild for Python 3.8.

---
 srcpkgs/voltron/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/voltron/template b/srcpkgs/voltron/template
index c258bb9bab9..38f47a824e3 100644
--- a/srcpkgs/voltron/template
+++ b/srcpkgs/voltron/template
@@ -1,7 +1,7 @@
 # Template file for 'voltron'
 pkgname=voltron
 version=0.1.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="voltron"

From 12dedac32ff8a0f576ad19fc3147b4b386831c3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 817/872] volume_key: rebuild for Python 3.8.

---
 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 11d7b16bed8..14431cb70e9 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=1
+revision=2
 build_style=gnu-configure
 make_build_args="PYTHON3_CFLAGS=-I${XBPS_CROSS_BASE}/${py3_inc}
  PYTHON_CFLAGS=-I${XBPS_CROSS_BASE}/${py2_inc}"

From 3ce63c210ee385583504492fdf75f2ae859f05a4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 818/872] weather: rebuild for Python 3.8.

---
 srcpkgs/weather/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weather/template b/srcpkgs/weather/template
index ffa8a828b36..3ac33bfac15 100644
--- a/srcpkgs/weather/template
+++ b/srcpkgs/weather/template
@@ -1,7 +1,7 @@
 # Template file for 'weather'
 pkgname=weather
 version=2.3
-revision=2
+revision=3
 archs=noarch
 hostmakedepends="python3"
 depends="python3"

From 6b24b9871b5a34bb13b50f506793021986de04d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 819/872] wfuzz: rebuild for Python 3.8.

---
 srcpkgs/wfuzz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wfuzz/template b/srcpkgs/wfuzz/template
index b03c1f28add..4a88ab67407 100644
--- a/srcpkgs/wfuzz/template
+++ b/srcpkgs/wfuzz/template
@@ -1,7 +1,7 @@
 # Template file for 'wfuzz'
 pkgname=wfuzz
 version=2.4
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="wfuzz"

From ffffd630d47635e9948e7264798154dcf5cf4862 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 820/872] wpgtk: rebuild for Python 3.8.

---
 srcpkgs/wpgtk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpgtk/template b/srcpkgs/wpgtk/template
index 7e9d52b4f81..a722da58f22 100644
--- a/srcpkgs/wpgtk/template
+++ b/srcpkgs/wpgtk/template
@@ -1,7 +1,7 @@
 # Template file for 'wpgtk'
 pkgname=wpgtk
 version=6.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpgtk"

From ad6d5b938b34863f749429277206983bd33a9592 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 821/872] wpull: rebuild for Python 3.8.

---
 srcpkgs/wpull/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpull/template b/srcpkgs/wpull/template
index 5e9b9dcc641..621e1c85428 100644
--- a/srcpkgs/wpull/template
+++ b/srcpkgs/wpull/template
@@ -1,7 +1,7 @@
 # Template file for 'wpull'
 pkgname=wpull
 version=2.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpull"

From c0ba430699f94546d60abaeba6f248ef6d36ef84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 822/872] wxPython4: rebuild for Python 3.8.

---
 srcpkgs/wxPython4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wxPython4/template b/srcpkgs/wxPython4/template
index 2aa7117d5e0..b65e0b2ffe1 100644
--- a/srcpkgs/wxPython4/template
+++ b/srcpkgs/wxPython4/template
@@ -1,7 +1,7 @@
 # Template file for 'wxPython4'
 pkgname=wxPython4
 version=4.0.6
-revision=2
+revision=3
 wrksrc="wxPython-${version}"
 build_style=python3-module
 pycompile_module="wx"

From eae81cc7d657c1f863b8ae9a32aa075cc25328f4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 823/872] xcb-proto: rebuild for Python 3.8.

---
 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 1b26ecd73f3..020524bda87 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.13
-revision=2
+revision=3
 archs=noarch
 build_style=gnu-configure
 pycompile_module="xcbgen"

From c879f24aa56efd90bcd1b2031c3a7e194ee93abb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 824/872] xdot: rebuild for Python 3.8.

---
 srcpkgs/xdot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xdot/template b/srcpkgs/xdot/template
index 23f7b1f17e0..f7507ffb8c5 100644
--- a/srcpkgs/xdot/template
+++ b/srcpkgs/xdot/template
@@ -1,7 +1,7 @@
 # Template file for 'xdot'
 pkgname=xdot
 version=1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="xdot.py-${version}"
 build_style=python3-module

From ba48e65ee5332c30c40c9015ffd4f97f902bdcc1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 825/872] xkcdpass: rebuild for Python 3.8.

---
 srcpkgs/xkcdpass/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xkcdpass/template b/srcpkgs/xkcdpass/template
index 46b4a9635f9..37fb6872079 100644
--- a/srcpkgs/xkcdpass/template
+++ b/srcpkgs/xkcdpass/template
@@ -1,7 +1,7 @@
 # Template file for 'xkcdpass'
 pkgname=xkcdpass
 version=1.17.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="XKCD-password-generator-xkcdpass-${version}"
 build_style=python3-module

From f604c57acf10fb9091080955e88a704447aab0cb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 826/872] xonsh: rebuild for Python 3.8.

---
 srcpkgs/xonsh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xonsh/template b/srcpkgs/xonsh/template
index 768ebf36022..2dca267d0d1 100644
--- a/srcpkgs/xonsh/template
+++ b/srcpkgs/xonsh/template
@@ -1,7 +1,7 @@
 # Template file for 'xonsh'
 pkgname=xonsh
 version=0.9.12
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="xonsh xontrib"

From 8cdb99abdc99eefcc53ff3ab7418d4d830558c63 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 827/872] yq: rebuild for Python 3.8.

---
 srcpkgs/yq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yq/template b/srcpkgs/yq/template
index 7c3af7f43c2..dda886c6c40 100644
--- a/srcpkgs/yq/template
+++ b/srcpkgs/yq/template
@@ -1,7 +1,7 @@
 # Template file for 'yq'
 pkgname=yq
 version=2.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 6e757a227ac3953cc8567422ce6b473e6df30cc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 828/872] ytcc: rebuild for Python 3.8.

---
 srcpkgs/ytcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ytcc/template b/srcpkgs/ytcc/template
index feafa404b75..df4195758c7 100644
--- a/srcpkgs/ytcc/template
+++ b/srcpkgs/ytcc/template
@@ -1,7 +1,7 @@
 # Template file for 'ytcc'
 pkgname=ytcc
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ytcc"

From 1742b15ff06a60216eae8f7a016b441d18572e03 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 829/872] yturl: rebuild for Python 3.8.

---
 srcpkgs/yturl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yturl/template b/srcpkgs/yturl/template
index 6fa3e9872ee..ee14b77b5a0 100644
--- a/srcpkgs/yturl/template
+++ b/srcpkgs/yturl/template
@@ -1,7 +1,7 @@
 # Template file for 'yturl'
 pkgname=yturl
 version=2.0.2
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From b6302f7cf81ad28b08db1f9b8e986b9a6c3d59c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 830/872] yubikey-manager: rebuild for Python 3.8.

---
 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 af0330e8e15..fcc7b7cb737 100644
--- a/srcpkgs/yubikey-manager/template
+++ b/srcpkgs/yubikey-manager/template
@@ -1,7 +1,7 @@
 # Template file for 'yubikey-manager'
 pkgname=yubikey-manager
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 87bab1c9de0d25f72a5520b2adcd72c53599a433 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 831/872] z3: rebuild for Python 3.8.

---
 srcpkgs/z3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/z3/template b/srcpkgs/z3/template
index d632a285019..e054915df91 100644
--- a/srcpkgs/z3/template
+++ b/srcpkgs/z3/template
@@ -1,7 +1,7 @@
 # Template file for 'z3'
 pkgname=z3
 version=4.8.6
-revision=2
+revision=3
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=configure
 configure_args="--prefix=/usr -g --python $(vopt_if ocaml --ml)"

From 08edebe2ef2c613536937e6ee2d3fc6e9f067b72 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 832/872] zim: rebuild for Python 3.8.

---
 srcpkgs/zim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/zim/template b/srcpkgs/zim/template
index 45b9df5357c..dff4ad22081 100644
--- a/srcpkgs/zim/template
+++ b/srcpkgs/zim/template
@@ -1,7 +1,7 @@
 # Template file for 'zim'
 pkgname=zim
 version=0.71.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="zim"

From b4ef921e58656c77eb688ee4e2af7b20b3c8bfd2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 833/872] python3-pafy: rebuild for Python 3.8.

---
 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 ce26f770c69..b59c9a0adff 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.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pafy-${version}"
 build_style=python3-module

From bf4e7780fb8dcc15680cd79ddef83f8183bb3375 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 834/872] python3-perf: rebuild for Python 3.8.

---
 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 a03251f97e8..3d57ddb1c1a 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.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyperf-${version}"
 build_style=python3-module

From 80bbe375d025a8f2df0fa0878b5089c83f181e95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 835/872] python3-yara: rebuild for Python 3.8.

---
 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 4a6c56dd083..3bdff14a0da 100644
--- a/srcpkgs/python3-yara/template
+++ b/srcpkgs/python3-yara/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-yara'
 pkgname=python3-yara
 version=3.11.0
-revision=1
+revision=2
 wrksrc="yara-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From dfbf656d20e2c60d70d38432d72796e45a07530a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:31 +0200
Subject: [PATCH 836/872] azote: rebuild for Python 3.8.

---
 srcpkgs/azote/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/azote/template b/srcpkgs/azote/template
index 0a23c209551..2748cb98733 100644
--- a/srcpkgs/azote/template
+++ b/srcpkgs/azote/template
@@ -1,7 +1,7 @@
 # Template file for 'azote'
 pkgname=azote
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="azote"

From 6f9b552c053623ad5214d1b8401f41cb4e56734c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 837/872] binwalk: rebuild for Python 3.8.

---
 srcpkgs/binwalk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/binwalk/template b/srcpkgs/binwalk/template
index 461ea4b547a..fccd523d584 100644
--- a/srcpkgs/binwalk/template
+++ b/srcpkgs/binwalk/template
@@ -1,7 +1,7 @@
 # Template file for 'binwalk'
 pkgname=binwalk
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="binwalk"

From cdf9d0c94b7363a5bab761faa1a5119852db14c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 838/872] gnome-builder: rebuild for Python 3.8.

---
 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 9ae9ff9d94c..85aeeee9a15 100644
--- a/srcpkgs/gnome-builder/template
+++ b/srcpkgs/gnome-builder/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-builder'
 pkgname=gnome-builder
 version=3.34.1
-revision=1
+revision=2
 build_style=meson
 configure_args="-Dwith_webkit=true -Dwith_sysprof=true -Dhelp=true"
 hostmakedepends="appdata-tools desktop-file-utils flex gobject-introspection

From c0bccc27652b15e34572ed02503df5ae7b1dbebb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 839/872] gnome-tweaks: rebuild for Python 3.8.

---
 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 ac1f8bdb873..d0879253ac5 100644
--- a/srcpkgs/gnome-tweaks/template
+++ b/srcpkgs/gnome-tweaks/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-tweaks'
 pkgname=gnome-tweaks
 version=3.34.0
-revision=2
+revision=3
 archs=noarch
 build_style=meson
 pycompile_module="gtweak"

From c86e2d08bfa3e52c769e2b8c76e993af14c698bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 840/872] meson: rebuild for Python 3.8.

---
 srcpkgs/meson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meson/template b/srcpkgs/meson/template
index 315a0f27a92..76791451681 100644
--- a/srcpkgs/meson/template
+++ b/srcpkgs/meson/template
@@ -2,7 +2,7 @@
 pkgname=meson
 reverts="0.52.0_1 0.52.0_2"
 version=0.51.2
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mesonbuild"

From 1259e701609ac87f299b515b612f6b5589a6a5e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 841/872] onionshare: rebuild for Python 3.8.

---
 srcpkgs/onionshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onionshare/template b/srcpkgs/onionshare/template
index c585ae6101e..c37c5962736 100644
--- a/srcpkgs/onionshare/template
+++ b/srcpkgs/onionshare/template
@@ -1,7 +1,7 @@
 # Template file for 'onionshare'
 pkgname=onionshare
 version=2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="onionshare"

From e24fbb347a50db8d9adc3c2e21abfa2926516285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 842/872] portage: rebuild for Python 3.8.

---
 srcpkgs/portage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/portage/template b/srcpkgs/portage/template
index b0f34731035..9610428bbf4 100644
--- a/srcpkgs/portage/template
+++ b/srcpkgs/portage/template
@@ -1,7 +1,7 @@
 # Template file for 'portage'
 pkgname=portage
 version=2.3.77
-revision=1
+revision=2
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=python3-module
 pycompile_module="portage _emerge"

From 3d8944805a3fcbe269c633fd504f8156014b9743 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 843/872] rpm: fix and rebuild for Python 3.8.

---
 srcpkgs/rpm/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/rpm/template b/srcpkgs/rpm/template
index 98e35930c4c..695195323fd 100644
--- a/srcpkgs/rpm/template
+++ b/srcpkgs/rpm/template
@@ -1,7 +1,7 @@
 # Template file for 'rpm'
 pkgname=rpm
 version=4.15.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--with-lua --with-cap --with-acl --with-external-db
  --enable-python PYTHON=python3"
@@ -18,7 +18,7 @@ distfiles="http://ftp.rpm.org/releases/rpm-4.15.x/rpm-${version}.tar.bz2"
 checksum=1e06723b13591e57c99ebe2006fb8daddc4cf72efb366a64a34673ba5f61c201
 conflicts="rpmextract>=0" # Both provide rpm2cpio
 
-CFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6"
+CFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nss"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nspr"
 

From 72f86e0f7af627c04b12bdf23f9811e4ae8da247 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 844/872] youtube-dl: rebuild for Python 3.8.

---
 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 d6596b80bd3..f1ae3aa1a74 100644
--- a/srcpkgs/youtube-dl/template
+++ b/srcpkgs/youtube-dl/template
@@ -1,7 +1,7 @@
 # Template file for 'youtube-dl'
 pkgname=youtube-dl
 version=2019.10.16
-revision=1
+revision=2
 archs=noarch
 wrksrc=youtube-dl
 build_style=python3-module

From fb04151cb309fc8ff7a84dfe9204c113fb159d19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 845/872] blender: rebuild for Python 3.8.

---
 srcpkgs/blender/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template
index 758d1235185..47cb8f8ad13 100644
--- a/srcpkgs/blender/template
+++ b/srcpkgs/blender/template
@@ -1,7 +1,7 @@
 # Template file for 'blender'
 pkgname=blender
 version=2.79b
-revision=9
+revision=10
 build_style="cmake"
 makedepends="
  libgomp-devel libpng-devel tiff-devel python3-devel glu-devel

From 5a910b2ac8223753ca218101f9f59fd78dc5cfa3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 846/872] freecad: rebuild for Python 3.8.

---
 srcpkgs/freecad/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/freecad/template b/srcpkgs/freecad/template
index 9e9375c4444..26bf34702a2 100644
--- a/srcpkgs/freecad/template
+++ b/srcpkgs/freecad/template
@@ -1,7 +1,7 @@
 # Template file for 'freecad'
 pkgname=freecad
 version=0.18.3
-revision=2
+revision=3
 wrksrc="FreeCAD-${version}"
 build_style=cmake
 

From 32446cd95c2441db9d38c4ac07f025038c3c9510 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 847/872] gdb: rebuild for Python 3.8.

---
 srcpkgs/gdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gdb/template b/srcpkgs/gdb/template
index 9f84e4869e9..39aab79d08a 100644
--- a/srcpkgs/gdb/template
+++ b/srcpkgs/gdb/template
@@ -1,7 +1,7 @@
 # Template file for 'gdb'
 pkgname=gdb
 version=8.3.1
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="/usr/share/gdb"
 configure_args="--disable-werror --disable-nls --with-system-readline

From c374fa445ef4734555a51ba65667443628c437a5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 848/872] hexchat: rebuild for Python 3.8.

---
 srcpkgs/hexchat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hexchat/template b/srcpkgs/hexchat/template
index fbeaf28ae8a..9f7d7957b76 100644
--- a/srcpkgs/hexchat/template
+++ b/srcpkgs/hexchat/template
@@ -1,7 +1,7 @@
 # Template file for 'hexchat'
 pkgname=hexchat
 version=2.14.2
-revision=6
+revision=7
 build_style=meson
 configure_args="-Dwith-dbus=true -Dwith-ssl=true -Dwith-text=false
  -Dwith-perl=/usr/bin/perl -Dwith-python=python3

From 1a28d6208213efffc8e0175d8a22fe0c28dd72db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 849/872] hyperion: rebuild for Python 3.8.

---
 srcpkgs/hyperion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hyperion/template b/srcpkgs/hyperion/template
index 0befdbe7064..7ce415e929e 100644
--- a/srcpkgs/hyperion/template
+++ b/srcpkgs/hyperion/template
@@ -1,7 +1,7 @@
 # Template file for 'hyperion'
 pkgname=hyperion
 version=1.03.2
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DUSE_SYSTEM_PROTO_LIBS=ON -DENABLE_QT5=ON
  -DPROTOBUF_PROTOC_EXECUTABLE=/usr/bin/protoc -DENABLE_AMLOGIC=ON

From 521739c54edab764e22a7d821945f0a99dbab531 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 850/872] kdevelop-python: rebuild for Python 3.8.

---
 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 0265916a3d0..a306eb8f442 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.4.2
-revision=1
+revision=2
 wrksrc="kdev-python-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/kdevpythonsupport"

From 204b42f33357cfcbe50eaa9571de6ffcd17987f1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 851/872] kitty: rebuild for Python 3.8.

---
 srcpkgs/kitty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/kitty/template b/srcpkgs/kitty/template
index d79bcc4acce..54cd08c23ec 100644
--- a/srcpkgs/kitty/template
+++ b/srcpkgs/kitty/template
@@ -1,7 +1,7 @@
 # Template file for 'kitty'
 pkgname=kitty
 version=0.14.6
-revision=1
+revision=2
 pycompile_dirs="usr/lib/kitty"
 hostmakedepends="ncurses pkg-config python3 wayland-devel wayland-protocols"
 makedepends="gettext-devel glfw-devel harfbuzz-devel libxkbcommon-devel

From ff46af09ec9d031fa7b9f837936d6ce0ca6ab188 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 852/872] krita: rebuild for Python 3.8, fix sha256sum.

Tarball was yanked for trivial fix.
---
 srcpkgs/krita/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/krita/template b/srcpkgs/krita/template
index 7a59fc9ac58..67f128c61ce 100644
--- a/srcpkgs/krita/template
+++ b/srcpkgs/krita/template
@@ -1,7 +1,7 @@
 # Template file for 'krita'
 pkgname=krita
 version=4.2.7.1
-revision=1
+revision=2
 build_style=cmake
 configure_args="-Wno-dev -DBUILD_TESTING=OFF"
 hostmakedepends="extra-cmake-modules pkg-config python3"
@@ -18,6 +18,6 @@ license="GPL-3.0-only"
 homepage="https://krita.org/"
 KDE_SITE="http://ftp5.gwdg.de/pub/linux/kde/stable/"
 distfiles="${KDE_SITE}/krita/${version}/krita-${version}.tar.gz"
-checksum=28218030edca9dfa1c7e255401ca6fc8fe0e5329f7611cfc196e35746d312086
+checksum=3ed29fd9d8e067def55e703fc55312815c21041d274727e228bdbe0478c09c3d
 nocross=yes
 replaces="calligra-krita>=0"

From f9a159a4920b87026620cb80cb44e300bb5629df Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:26:38 +0200
Subject: [PATCH 853/872] libpeas: rebuild for Python 3.8.

---
 srcpkgs/libpeas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index a69238bf823..d4dcf8b5941 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,7 +1,7 @@
 # Template file for 'libpeas'
 pkgname=libpeas
 version=1.22.0
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"

From 3198d8c8c69cb92e374d2ee5506452d39e4d0112 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 854/872] libreoffice: rebuild for Python 3.8.

---
 srcpkgs/libreoffice/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template
index 6e8685ac0fd..98f04a40304 100644
--- a/srcpkgs/libreoffice/template
+++ b/srcpkgs/libreoffice/template
@@ -1,7 +1,7 @@
 # Template file for 'libreoffice'
 pkgname=libreoffice
 version=6.2.5.2
-revision=2
+revision=3
 build_style=meta
 make_build_args="build-nocheck"
 nocross=yes

From 6e364e35e9da7fad067673e7e0affd191b036cda Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 855/872] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index 1f9c8043b46..34174be7535 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=5
+revision=6
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From 8d6a6c56ca97a0c27761f1eb34b9ac5a412d5e76 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 856/872] libsigrokdecode: rebuild for Python 3.8.

---
 srcpkgs/libsigrokdecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsigrokdecode/template b/srcpkgs/libsigrokdecode/template
index 59e15dd61b9..cc9d9a10367 100644
--- a/srcpkgs/libsigrokdecode/template
+++ b/srcpkgs/libsigrokdecode/template
@@ -1,7 +1,7 @@
 # Template file for 'libsigrokdecode'
 pkgname=libsigrokdecode
 version=0.5.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="glib-devel python3-devel"

From eab6a99f64b40ea196f141af705a100a46c098a5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 857/872] luxrays: rebuild for Python 3.8.

---
 srcpkgs/luxrays/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/luxrays/template b/srcpkgs/luxrays/template
index c783e9fe3e5..58037fbfc05 100644
--- a/srcpkgs/luxrays/template
+++ b/srcpkgs/luxrays/template
@@ -1,7 +1,7 @@
 # Template file for 'luxrays'
 pkgname=luxrays
 version=3.1
-revision=13
+revision=14
 build_style=cmake
 configure_args="-DLUXRAYS_DISABLE_OPENCL=OFF -DCMAKE_SKIP_RPATH=ON"
 hostmakedepends="flex bison boost-devel"

From 4b5511ff6ff0a819f189e962b93232eef2057a0a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 858/872] navit: rebuild for Python 3.8.

---
 srcpkgs/navit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/navit/template b/srcpkgs/navit/template
index 461689a3c73..24cd151c64b 100644
--- a/srcpkgs/navit/template
+++ b/srcpkgs/navit/template
@@ -1,7 +1,7 @@
 # Template file for 'navit'
 pkgname=navit
 version=0.5.3
-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 2ab8aa0cdbe851d3d5f35721e48b280edc597164 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 859/872] obs: rebuild for Python 3.8.

---
 srcpkgs/obs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/obs/template b/srcpkgs/obs/template
index 3ed426b1583..45bf81803e4 100644
--- a/srcpkgs/obs/template
+++ b/srcpkgs/obs/template
@@ -1,7 +1,7 @@
 # Template file for 'obs'
 pkgname=obs
 version=24.0.1
-revision=1
+revision=2
 _commit_hash_obs_browser="693498b518cf893876f454ef581e13106e8370ec"
 _commit_hash_obs_vst="fde438f7a8afdf41a7ab386a0aa1a61175fc8427"
 _commit_hash_ftl_sdk="98289f7c2ed754c647d451899b3356850c0c1fa3"

From 87e37db9f0bdf52067c7be8fa4fda45b4f9a9734 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 860/872] renderdoc: fix and rebuild for Python 3.8.

---
 srcpkgs/renderdoc/files/swig-py38.patch    | 28 +++++++++++++
 srcpkgs/renderdoc/patches/cmake-py38.patch | 48 ++++++++++++++++++++++
 srcpkgs/renderdoc/template                 |  8 ++--
 3 files changed, 81 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/renderdoc/files/swig-py38.patch
 create mode 100644 srcpkgs/renderdoc/patches/cmake-py38.patch

diff --git a/srcpkgs/renderdoc/files/swig-py38.patch b/srcpkgs/renderdoc/files/swig-py38.patch
new file mode 100644
index 00000000000..0595599c658
--- /dev/null
+++ b/srcpkgs/renderdoc/files/swig-py38.patch
@@ -0,0 +1,28 @@
+From dbe955dd0300d55a32fd73a4eef730b3e30ed5c4 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 20:32:03 +0200
+Subject: [PATCH] swig: avoid use of _PyObject_GC_UNTRACK
+
+It is deprecated[1]. Use PyObject_GC_UnTrack instead.
+
+[1] https://docs.python.org/3/c-api/gcsupport.html#c._PyObject_GC_UNTRACK
+---
+ Lib/python/builtin.swg | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Lib/python/builtin.swg b/Lib/python/builtin.swg
+index 9597653b7..6af45a9d1 100644
+--- a/Lib/python/builtin.swg
++++ b/Lib/python/builtin.swg
+@@ -120,7 +120,7 @@ SwigPyBuiltin_FunpackSetterClosure (PyObject *obj, PyObject *val, void *closure)
+ 
+ SWIGINTERN void
+ SwigPyStaticVar_dealloc(PyDescrObject *descr) {
+-  _PyObject_GC_UNTRACK(descr);
++  PyObject_GC_UnTrack(descr);
+   Py_XDECREF(PyDescr_TYPE(descr));
+   Py_XDECREF(PyDescr_NAME(descr));
+   PyObject_GC_Del(descr);
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/patches/cmake-py38.patch b/srcpkgs/renderdoc/patches/cmake-py38.patch
new file mode 100644
index 00000000000..fc1adb9ddbc
--- /dev/null
+++ b/srcpkgs/renderdoc/patches/cmake-py38.patch
@@ -0,0 +1,48 @@
+From 56769d3e2cc12670b73a1ddd9dfaab959340c2e2 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 21:27:02 +0200
+Subject: [PATCH] CMake: py3.8 support, ability to patch swig
+
+Add 3.8 to list of python versions and ability to patch the custom
+swig, also needed for 3.8
+---
+ CMakeLists.txt            | 2 +-
+ qrenderdoc/CMakeLists.txt | 2 ++
+ 2 files changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 13818e5b8..00feda2ad 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -308,7 +308,7 @@ add_subdirectory(renderdoc)
+ # are handled in common
+ if(ENABLE_QRENDERDOC OR ENABLE_PYRENDERDOC)
+     # Make sure Python 3 is found
+-    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7)
++    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7 3.8)
+     find_package(PythonInterp 3 REQUIRED)
+     find_package(PythonLibs 3 REQUIRED)
+     # we also need python3-config for swig
+diff --git a/qrenderdoc/CMakeLists.txt b/qrenderdoc/CMakeLists.txt
+index 9fd65b2d3..1ef284349 100644
+--- a/qrenderdoc/CMakeLists.txt
++++ b/qrenderdoc/CMakeLists.txt
+@@ -7,6 +7,7 @@ endif()
+ 
+ set(QMAKE_QT5_COMMAND ${QT_QMAKE_EXECUTABLE} CACHE STRING "Command to run to invoke Qt5's qmake. Normally this is qmake, possibly with qtchooser, but might be qmake-qt5")
+ set(RENDERDOC_SWIG_PACKAGE https://github.com/baldurk/swig/archive/renderdoc-modified-6.zip CACHE STRING "The location where RenderDoc's swig fork source can be found. By default points to the URL on github but can be pointed to a local file.")
++set(RENDERDOC_SWIG_PATCH "" CACHE STRING "The location for the patch to apply to swig.")
+ 
+ set(QMAKE_CONFIG "debug")
+ set(QMAKE_LDFLAGS "")
+@@ -99,6 +100,7 @@ ExternalProject_Add(custom_swig
+     # using an URL to a zip directly so we don't clone the history etc
+     URL ${RENDERDOC_SWIG_PACKAGE}
+     BUILD_IN_SOURCE 1
++    PATCH_COMMAND patch -p1 -i ${RENDERDOC_SWIG_PATCH} > /dev/null
+     CONFIGURE_COMMAND ./autogen.sh > /dev/null 2>&1
+     COMMAND CC=${SWIG_CONFIGURE_CC} CXX=${SWIG_CONFIGURE_CXX} CFLAGS=-fPIC CXXFLAGS=-fPIC ./configure --with-pcre=yes --prefix=${CMAKE_BINARY_DIR} > /dev/null
+     BUILD_COMMAND ${GENERATOR_MAKE} > /dev/null 2>&1
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/template b/srcpkgs/renderdoc/template
index 32d051864d3..9972d9435b0 100644
--- a/srcpkgs/renderdoc/template
+++ b/srcpkgs/renderdoc/template
@@ -1,11 +1,13 @@
 # Template file for 'renderdoc'
 pkgname=renderdoc
 version=1.4
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DENABLE_GL=ON -DENABLE_GLES=ON -DENABLE_QRENDERDOC=ON
  -DENABLE_RENDERDOCCMD=ON -DENABLE_VULKAN=ON -DENABLE_XCB=ON -DENABLE_XLIB=ON
- -DENABLE_PYRENDERDOC=ON"
+ -DENABLE_PYRENDERDOC=ON
+ -DRENDERDOC_SWIG_PATCH=${XBPS_SRCPKGDIR}/${pkgname}/files/swig-py38.patch"
+patch_args="-p1"
 hostmakedepends="bison autoconf automake pkg-config python3"
 makedepends="libX11-devel libxcb-devel xcb-util-keysyms-devel libGL qt5-devel
  qt5-svg-devel qt5-x11extras-devel pcre-devel python3-devel"
@@ -17,7 +19,7 @@ distfiles="https://github.com/baldurk/${pkgname}/archive/v${version}.tar.gz"
 checksum=9a78951f386fb7c3ecf7df6919d300db59719d14f0621438963ae30a75d33677
 
 case "$XBPS_TARGET_MACHINE" in
-	*-musl) broken="This package uses execnfo.h which is not available on musl"
+	*-musl) broken="This package uses execinfo.h which is not available on musl"
 esac
 
 if [ "$CROSS_BUILD" ]; then

From 87d809bba385a13e86e119ed6ef6bf53f4db4e41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 861/872] sigil: rebuild for Python 3.8.

---
 srcpkgs/sigil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sigil/template b/srcpkgs/sigil/template
index 4a90ef95798..1d577ee3487 100644
--- a/srcpkgs/sigil/template
+++ b/srcpkgs/sigil/template
@@ -1,7 +1,7 @@
 # Template file for 'sigil'
 pkgname=sigil
 version=0.9.13
-revision=1
+revision=2
 wrksrc="Sigil-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/sigil/python3lib"

From caf18dc4cbb881128777ebd2ac53b3f3cb9b7836 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 862/872] uwsgi: rebuild for Python 3.8.

---
 srcpkgs/uwsgi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/uwsgi/template b/srcpkgs/uwsgi/template
index 2e96cd2e38e..e283d6bc357 100644
--- a/srcpkgs/uwsgi/template
+++ b/srcpkgs/uwsgi/template
@@ -1,7 +1,7 @@
 # Template file for 'uwsgi'
 pkgname=uwsgi
 version=2.0.18
-revision=1
+revision=2
 hostmakedepends="python python3"
 makedepends="python-devel python3-devel"
 short_desc="Fast, self-healing application container server"

From aec3e00468ac790651b8f08e7d7c9877c21ae958 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 863/872] vim: rebuild for Python 3.8.

---
 srcpkgs/vim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vim/template b/srcpkgs/vim/template
index 8f543069d19..7c7fd4a30f7 100644
--- a/srcpkgs/vim/template
+++ b/srcpkgs/vim/template
@@ -1,7 +1,7 @@
 # Template file for 'vim'
 pkgname=vim
 version=8.1.2021
-revision=3
+revision=4
 hostmakedepends="glib-devel pkg-config"
 makedepends="acl-devel gtk+3-devel libXt-devel lua-devel ncurses-devel
  perl python-devel python3-devel ruby-devel"

From d88bb0bcdce3dbdf8f861c336db423c1a875185a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 864/872] weechat: rebuild for Python 3.8.

---
 srcpkgs/weechat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weechat/template b/srcpkgs/weechat/template
index 19f8af4fd8f..14c3e2360f5 100644
--- a/srcpkgs/weechat/template
+++ b/srcpkgs/weechat/template
@@ -1,7 +1,7 @@
 # Template file for 'weechat'
 pkgname=weechat
 version=2.6
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_MAN=ON -DENABLE_ENCHANT=ON -DENABLE_PERL=ON
  -DENABLE_LUA=ON -DENABLE_RUBY=ON -DENABLE_SPELL=ON

From b8430a8c4d7404bab6a81d9eb7537efb829880df Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 865/872] znc: rebuild for Python 3.8.

---
 srcpkgs/znc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/znc/template b/srcpkgs/znc/template
index 8af8f23a145..696b59133c8 100644
--- a/srcpkgs/znc/template
+++ b/srcpkgs/znc/template
@@ -1,7 +1,7 @@
 # Template file for 'znc'
 pkgname=znc
 version=1.7.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="
  --enable-python

From 8c3c0fcf9bb79b0772fc9c398175562abce8ea16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:18:51 +0200
Subject: [PATCH 866/872] boost: rebuild for Python 3.8.

---
 srcpkgs/boost/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 40a4fe67730..1fb0e8ed519 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=5
+revision=6
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"

From 511e8b28d7de492b751f5d3154f9974195bfad2b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:10 +0200
Subject: [PATCH 867/872] python-pyside: remove, obsolete.

---
 srcpkgs/python-pyside/INSTALL.msg | 1 -
 srcpkgs/python-pyside/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/python-pyside/INSTALL.msg
 delete mode 100644 srcpkgs/python-pyside/template

diff --git a/srcpkgs/python-pyside/INSTALL.msg b/srcpkgs/python-pyside/INSTALL.msg
deleted file mode 100644
index 6de207b7aa2..00000000000
--- a/srcpkgs/python-pyside/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-python-pyside is no longer provided by Void Linux, and will be fully removed from the repos on 2019-07-17
diff --git a/srcpkgs/python-pyside/template b/srcpkgs/python-pyside/template
deleted file mode 100644
index 7053f0e7fc3..00000000000
--- a/srcpkgs/python-pyside/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'python-pyside'
-pkgname=python-pyside
-version=1.2.2
-revision=7
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="http://www.pyside.org/"

From 9cc0e009166f9e8283ea138d7a730ff048c889ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:52 +0200
Subject: [PATCH 868/872] pyside-tools: remove, obsolete.

---
 srcpkgs/pyside-tools/INSTALL.msg | 1 -
 srcpkgs/pyside-tools/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/pyside-tools/INSTALL.msg
 delete mode 100644 srcpkgs/pyside-tools/template

diff --git a/srcpkgs/pyside-tools/INSTALL.msg b/srcpkgs/pyside-tools/INSTALL.msg
deleted file mode 100644
index fdb45eb0f42..00000000000
--- a/srcpkgs/pyside-tools/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-pyside-tools is no longer provided by Void Linux, and will be fully removed from the repos on 2019-10-30
diff --git a/srcpkgs/pyside-tools/template b/srcpkgs/pyside-tools/template
deleted file mode 100644
index 27cfc18eea4..00000000000
--- a/srcpkgs/pyside-tools/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'pyside-tools'
-pkgname=pyside-tools
-version=0.2.15
-revision=2
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="https://wiki.qt.io/"

From 9fbb782146a8f13994e8a826217ba66139ebe7d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:22:03 +0200
Subject: [PATCH 869/872] shiboken: remove, obsolete.

---
 srcpkgs/shiboken/patches/python3.6.patch |  11 ---
 srcpkgs/shiboken/template                | 110 -----------------------
 2 files changed, 121 deletions(-)
 delete mode 100644 srcpkgs/shiboken/patches/python3.6.patch
 delete mode 100644 srcpkgs/shiboken/template

diff --git a/srcpkgs/shiboken/patches/python3.6.patch b/srcpkgs/shiboken/patches/python3.6.patch
deleted file mode 100644
index 7145fb4308b..00000000000
--- a/srcpkgs/shiboken/patches/python3.6.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- cmake/Modules/FindPython3Libs.cmake.orig
-+++ cmake/Modules/FindPython3Libs.cmake
-@@ -27,7 +27,7 @@
- # Search for the python framework on Apple.
- # CMAKE_FIND_FRAMEWORKS(Python)
- 
--FOREACH(_CURRENT_VERSION 3.4 3.3 3.2 3.1 3.0)
-+FOREACH(_CURRENT_VERSION 3.6 3.5 3.4 3.3 3.2 3.1 3.0)
-   IF(_CURRENT_VERSION GREATER 3.1)
-       SET(_32FLAGS "m" "u" "mu" "dm" "du" "dmu" "")
-   ELSE()
diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
deleted file mode 100644
index 34174be7535..00000000000
--- a/srcpkgs/shiboken/template
+++ /dev/null
@@ -1,110 +0,0 @@
-# Template file for 'shiboken'
-pkgname=shiboken
-version=1.2.2
-revision=6
-wrksrc="shiboken-${version}"
-hostmakedepends="cmake"
-makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"
-short_desc="CPython bindings generator for C++ libraries"
-maintainer="Enno Boland <gottox@voidlinux.org>"
-homepage="http://www.pyside.org"
-license="LGPL-2.1"
-distfiles="https://download.qt.io/official_releases/pyside/shiboken-${version}.tar.bz2"
-checksum=7625bbcf1fe313fd910c6b8c9cf49ac5495499f9d00867115a2f1f2a69fce5c4
-
-nocross="https://travis-ci.org/voidlinux/void-packages/jobs/269193001#L906"
-
-pre_build() {
-	# Fix inconsistent naming of libshiboken.so and ShibokenConfig.cmake
-	sed -i "/get_config_var('SOABI')/d" cmake/Modules/FindPython3InterpWithDebug.cmake
-}
-do_build() {
-	local args= configure_args="
-		-DCMAKE_INSTALL_PREFIX=/usr \
-		-DCMAKE_BUILD_TYPE=Release \
-		-DBUILD_TESTS=OFF"
-
-	for pyver in $py2_ver $py3_ver; do
-		args=
-		if [ "$pyver" = "$py2_ver" ]; then
-			args="-DPYTHON_SUFFIX=-python$py2_ver"
-		else
-			args="-DUSE_PYTHON3=yes"
-		fi
-
-		[ ! -d build-${pyver} ] && mkdir build-${pyver}
-		pushd build-${pyver}
-		cmake .. ${configure_args} ${args}
-		make ${makejobs}
-		popd
-	done
-}
-do_install() {
-	for pyver in $py2_ver $py3_ver; do
-		make -C build-${pyver} DESTDIR=${DESTDIR} install
-	done
-}
-post_install() {
-	# Fix conflict between .pc files
-	rm -f ${DESTDIR}/usr/lib/pkgconfig/*
-	for pyver in $py2_ver $py3_ver; do
-		vinstall build-${pyver}/data/shiboken.pc 644 \
-			usr/lib/pkgconfig shiboken-python${pyver}.pc
-	done
-}
-
-libshiboken-common-devel_package() {
-	depends="${sourcepkg}-${version}_${revision}"
-	short_desc+=" - common development files"
-	pkg_install() {
-		vmove usr/include
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig.cmake
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfigVersion.cmake
-	}
-}
-libshiboken-python-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python-${version}_${revision}"
-	short_desc="Python2 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py2_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py2_ver}.pc
-		vmove usr/lib/libshiboken-python${py2_ver}.so
-	}
-}
-libshiboken-python_package() {
-	short_desc="Python2 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version}
-	}
-}
-python-shiboken_package() {
-	short_desc="Python2 shiboken bindings"
-	pkg_install() {
-		vmove ${py2_sitelib}/shiboken.so
-	}
-}
-libshiboken-python3-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python3-${version}_${revision}"
-	short_desc="Python3 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py3_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py3_ver}.pc
-		vmove usr/lib/libshiboken-python${py3_ver}.so
-	}
-}
-libshiboken-python3_package() {
-	short_desc="Python3 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version}
-	}
-}
-python3-shiboken_package() {
-	short_desc="Python3 shiboken bindings"
-	pkg_install() {
-		vmove ${py3_sitelib}/shiboken.so
-	}
-}

From 05dbc60d867e0fc2d4c61b73863b8d5b8e12e551 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:34:00 +0200
Subject: [PATCH 870/872] boost: rebuild for Python 3.8.

Also ensure bjam is called with the same parameters, to avoid
a full rebuild with -j1 in do_install.
---
 common/shlibs          |  2 +-
 srcpkgs/boost/template | 13 +++++++------
 2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/common/shlibs b/common/shlibs
index f5133935773..92dae1c282c 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -683,7 +683,7 @@ libboost_stacktrace_noop.so.1.69.0 libboost_stacktrace_noop1.69-1.69.0_1<1.70.0
 libboost_stacktrace_addr2line.so.1.69.0 libboost_stacktrace_addr2line1.69-1.69.0_1<1.70.0
 libboost_stacktrace_basic.so.1.69.0 libboost_stacktrace_basic1.69-1.69.0_1<1.70.0
 libboost_python27.so.1.69.0 boost-python1.69-1.69.0_1<1.70.0
-libboost_python36.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
+libboost_python38.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
 libexempi.so.8 exempi-2.5.0_1
 libatasmart.so.4 libatasmart-0.17_1
 libsgutils2.so.2 libsgutils-1.42_1
diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 1fb0e8ed519..b516b348b14 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=6
+revision=7
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"
@@ -60,9 +60,9 @@ do_build() {
 	using python : ${py3_ver} : ${XBPS_CROSS_BASE}/usr/bin/python3 : ${XBPS_CROSS_BASE}${py3_inc} : ${XBPS_CROSS_BASE}${py3_lib} ;
 
 	__EOF
-	./bjam ${makejobs} \
+	./bjam ${makejobs} --prefix=${DESTDIR}/usr \
 		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam --debug-building \
+		--user-config=${wrksrc}/user-config.jam \
 		python=2.7,${py3_ver}
 }
 do_install() {
@@ -72,9 +72,10 @@ do_install() {
 	done
 
 	# Install headers/libs
-	./bjam --prefix=${DESTDIR}/usr abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam python=2.7,${py3_ver} install
-
+	./bjam --prefix=${DESTDIR}/usr \
+		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
+		--user-config=${wrksrc}/user-config.jam \
+		python=2.7,${py3_ver} install
 	# Install Boost.Build stuff.
 	vmkdir usr/share/boost-build
 	cd ${wrksrc}/tools/build && cp -a . ${DESTDIR}/usr/share/boost-build

From f52f1ab7e81ec87131f500e38a76b634f23e1fb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 19:40:03 +0200
Subject: [PATCH 871/872] libpeas: update to 1.24.0.

---
 srcpkgs/libpeas/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index d4dcf8b5941..1ff2598c527 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,8 +1,8 @@
 # Template file for 'libpeas'
 pkgname=libpeas
-version=1.22.0
-revision=6
-build_style=gnu-configure
+version=1.24.0
+revision=1
+build_style=meson
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"
 makedepends="vala-devel gtk+3-devel python3-gobject-devel
@@ -13,7 +13,7 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://wiki.gnome.org/Projects/Libpeas"
 distfiles="${GNOME_SITE}/${pkgname}/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=5b2fc0f53962b25bca131a5ec0139e6fef8e254481b6e777975f7a1d2702a962
+checksum=0b9a00138c129a663de3eef5569b00ace03ce31d345f7af783768e9f35c8e6f9
 
 pre_build() {
 	if [ "$CROSS_BUILD" ]; then
@@ -35,7 +35,6 @@ libpeas-devel_package() {
 		vmove usr/lib/pkgconfig
 		vmove "usr/lib/*.so"
 		vmove usr/share/gir-1.0
-		vmove usr/share/gtk-doc
 		vmove usr/share/glade
 	}
 }

From 42d81083546c2778a1dce1339b197b26c880d9b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 20:33:53 +0200
Subject: [PATCH 872/872] scudcloud: upstream dead.

---
 srcpkgs/scudcloud/template | 21 ---------------------
 1 file changed, 21 deletions(-)
 delete mode 100644 srcpkgs/scudcloud/template

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
deleted file mode 100644
index 1ab2618066e..00000000000
--- a/srcpkgs/scudcloud/template
+++ /dev/null
@@ -1,21 +0,0 @@
-# Template file for 'scudcloud'
-pkgname=scudcloud
-version=1.65
-revision=2
-build_style=python3-module
-pycompile_module="scudcloud"
-hostmakedepends="python3-setuptools"
-makedepends="python3-setuptools python-PyQt5 python-dbus python3-PyQt5-dbus"
-depends="python3-setuptools python-PyQt5 python3-PyQt5-dbus
- python3-PyQt5-webkit xdg-utils"
-short_desc="Non official desktop client app for Slack"
-archs=noarch
-maintainer="Gurpreet Singh <gurpreet@mailfence.com>"
-license="MIT"
-homepage="https://launchpad.net/~rael-gc/+archive/ubuntu/scudcloud"
-distfiles="https://github.com/raelgc/${pkgname}/archive/v${version}.tar.gz"
-checksum=1b5420a868a37e181655e9799a3d1fcbbc0b0112349c44ac3d7936b626334791
-
-post_install() {
-	vlicense LICENSE
-}

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (8 preceding siblings ...)
  2019-10-19 21:14 ` voidlinux-github
@ 2019-10-19 21:15 ` voidlinux-github
  2019-10-19 21:36 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (22 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-10-19 21:15 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 180 bytes --]

New comment by leahneukirchen on void-packages repository

https://github.com/void-linux/void-packages/pull/15623#issuecomment-544197907

Comment:
Did it with sed already 🙈

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PR PATCH] [Updated] [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (9 preceding siblings ...)
  2019-10-19 21:15 ` voidlinux-github
@ 2019-10-19 21:36 ` voidlinux-github
  2019-10-19 21:36 ` voidlinux-github
                   ` (21 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-10-19 21:36 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1067 bytes --]

There is an updated pull request by leahneukirchen against master on the void-packages repository

https://github.com/leahneukirchen/void-packages python38
https://github.com/void-linux/void-packages/pull/15623

[WIP] Python 3.8
This huge PR tries to bump all packages that either shlib-require
libpython3.6m.so.1.0 or put files into /usr/lib/python3.6/site-packages.

Broken packages (on x86_64):

- [ ] attic -> upstream dead, remove?
- [ ] blender -> update to 2.80
- [ ] eolie -> meson
- [x] fontforge
- [ ] freecad
- [ ] gst1-python -> meson
- [ ] libopenshot -> gcc9 issue, but supposedly fixed? @Spencer-H 
- [x] libpeas
- [x] nagstamon
- [x] paraview
- [x] pockyt
- [x] ~~scudcloud~~
- [x] torbrowser-launcher
- [x] unknown-horizons
- [x] vapoursynth
- [x] variety
- [ ] kdevelop-python -> upstream: https://bugs.kde.org/show_bug.cgi?id=411956
- [x] krita: SHA256 mismatch
- [x] ~~shiboken~~
- [x] renderdoc

Untested:

- [ ] libreoffice


A patch file from https://github.com/void-linux/void-packages/pull/15623.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python38-15623.patch --]
[-- Type: text/x-diff, Size: 635080 bytes --]

From 9907b26ec9aacb2c9c990c665c32502ef0f7c808 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:06:59 +0200
Subject: [PATCH 001/872] python3: update to 3.8.0.

---
 common/shlibs                                 |  3 ++-
 .../python3/patches/fix-xattrs-glibc.patch    | 13 ----------
 srcpkgs/python3/patches/libressl-2.6.patch    | 26 -------------------
 srcpkgs/python3/template                      | 23 ++++++++--------
 4 files changed, 13 insertions(+), 52 deletions(-)
 delete mode 100644 srcpkgs/python3/patches/fix-xattrs-glibc.patch
 delete mode 100644 srcpkgs/python3/patches/libressl-2.6.patch

diff --git a/common/shlibs b/common/shlibs
index cc3fd8383d8..f5133935773 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1698,8 +1698,9 @@ libefiboot.so.1 libefivar-31_1
 libportaudio.so.2 portaudio-19.20140130_1
 libportaudiocpp.so.0 portaudio-cpp-19.20140130_1
 libdar.so.5000 libdar-2.4.14_1
-libpython3.so python3-3.6.2_1
 libpython3.6m.so.1.0 python3-3.6.2_1
+libpython3.so python3-3.8.0_1
+libpython3.8.so.1.0 python3-3.8.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.25.28_1
diff --git a/srcpkgs/python3/patches/fix-xattrs-glibc.patch b/srcpkgs/python3/patches/fix-xattrs-glibc.patch
deleted file mode 100644
index 909901293d5..00000000000
--- a/srcpkgs/python3/patches/fix-xattrs-glibc.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- Modules/posixmodule.c.orig
-+++ Modules/posixmodule.c
-@@ -103,8 +103,9 @@ corresponding Unix manual entries for more information on calls.");
- #undef HAVE_SCHED_SETAFFINITY
- #endif
- 
--#if defined(HAVE_SYS_XATTR_H) && defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
-+#if defined(HAVE_SYS_XATTR_H) && defined(__linux__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
- #define USE_XATTRS
-+#include <linux/limits.h>
- #endif
- 
- #ifdef USE_XATTRS
diff --git a/srcpkgs/python3/patches/libressl-2.6.patch b/srcpkgs/python3/patches/libressl-2.6.patch
deleted file mode 100644
index 92dcf1ef06e..00000000000
--- a/srcpkgs/python3/patches/libressl-2.6.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-https://github.com/python/cpython/pull/4930
-
---- Lib/test/test_ssl.py.orig
-+++ Lib/test/test_ssl.py
-@@ -29,6 +29,12 @@
- PROTOCOLS = sorted(ssl._PROTOCOL_NAMES)
- HOST = support.HOST
- IS_LIBRESSL = ssl.OPENSSL_VERSION.startswith('LibreSSL')
-+if IS_LIBRESSL:
-+    LIBRESSL_VERSION = tuple(
-+        int(s) for s in ssl.OPENSSL_VERSION.rsplit(' ')[-1].split('.')
-+    )
-+else:
-+    LIBRESSL_VERSION = ()
- IS_OPENSSL_1_1 = not IS_LIBRESSL and ssl.OPENSSL_VERSION_INFO >= (1, 1, 0)
- 
- 
-@@ -3392,6 +3398,8 @@ def test_selected_npn_protocol(self):
-                                        chatty=True, connectionchatty=True)
-             self.assertIs(stats['client_npn_protocol'], None)
- 
-+        @unittest.skipIf(IS_LIBRESSL and LIBRESSL_VERSION >= (2, 6, 1),
-+                         "LibreSSL 2.6.1+ has broken NPN support")
-         @unittest.skipUnless(ssl.HAS_NPN, "NPN support needed for this test")
-         def test_npn_protocols(self):
-             server_protocols = ['http/1.1', 'spdy/2']
diff --git a/srcpkgs/python3/template b/srcpkgs/python3/template
index 60bd4411ba8..b03a59beea8 100644
--- a/srcpkgs/python3/template
+++ b/srcpkgs/python3/template
@@ -3,7 +3,7 @@
 # THIS PKG MUST BE SYNCHRONIZED WITH "srcpkgs/python3-tkinter".
 #
 pkgname=python3
-version=3.6.9
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 short_desc="Interpreted, interactive, object-oriented programming language (${version%.*} series)"
@@ -11,7 +11,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=5e2f5f554e3f8f7f0296f7e73d8600c4e9acbaee6b2555b83206edf5153870da
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pycompile_dirs="usr/lib/python${version%.*}"
 hostmakedepends="pkg-config"
@@ -27,8 +27,7 @@ alternatives="
  python:python.1:/usr/share/man/man1/python${version%.*}.1"
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,13 +71,13 @@ do_install() {
 	rm -rf ${DESTDIR}/usr/lib/python${version%.*}/lib2to3/tests
 	# Remove references to the install(1) wrapper.
 	sed -e "s,${XBPS_WRAPPERDIR},/usr/bin,g" -i \
-		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/Makefile
 	if [ "$CROSS_BUILD" ]; then
 		# Remove references to cross toolchain.
 		sed -i "s/$XBPS_CROSS_TRIPLET-//g" \
-			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}/Makefile
 	fi
 }
 
@@ -89,10 +88,10 @@ python3-devel_package() {
 		vmove usr/bin/python*-config
 		vmove usr/lib/pkgconfig
 		vmove usr/include
-		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/libpython${version%.*}m.a \
+		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/libpython${version%.*}*.a \
 			${PKGDESTDIR}/usr/lib
-		mkdir -p ${DESTDIR}/usr/include/python${version%.*}m
-		mv ${PKGDESTDIR}/usr/include/python${version%.*}m/pyconfig.h \
-			${DESTDIR}/usr/include/python${version%.*}m
+		mkdir -p ${DESTDIR}/usr/include/python${version%.*}
+		mv ${PKGDESTDIR}/usr/include/python${version%.*}/pyconfig.h \
+			${DESTDIR}/usr/include/python${version%.*}
 	}
 }

From 82deb1f06d09e93aabaa46495a066cec2647de81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 17:09:57 +0200
Subject: [PATCH 002/872] python3-tkinter: update to 3.8.0.

---
 srcpkgs/python3-tkinter/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template
index 83906219af8..874be51ebdf 100644
--- a/srcpkgs/python3-tkinter/template
+++ b/srcpkgs/python3-tkinter/template
@@ -7,7 +7,7 @@
 _desc="Interpreted, interactive, object-oriented programming language"
 
 pkgname=python3-tkinter
-version=3.6.8
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 pycompile_dirs="
@@ -22,11 +22,10 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=35446241e995773b1bed7d196f4b624dadcadc8429f26282e756b2fb8a351193
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used.
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used.
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,7 +71,7 @@ do_install() {
 		mv ${wrksrc}/${pkgname}-${version}-install/usr/lib/python${version%.*}/${lib} \
 			${DESTDIR}/usr/lib/python${version%.*}/
 	done
-	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*m*.so \
+	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*.so \
 		${DESTDIR}/usr/lib/python${version%.*}/lib-dynload/
 	ln -sf idle${version%.*} ${DESTDIR}/usr/bin/idle3
 }

From 8bb33f77d591103b56f40685a4b61f57b43219cd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:42:15 +0200
Subject: [PATCH 003/872] common/environment/setup/python.sh: update to Python
 3.8.

---
 common/build-style/python-module.sh | 14 ++++----------
 common/environment/setup/python.sh  |  4 ++--
 2 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/common/build-style/python-module.sh b/common/build-style/python-module.sh
index da6ed586cff..ff8f107745f 100644
--- a/common/build-style/python-module.sh
+++ b/common/build-style/python-module.sh
@@ -4,7 +4,7 @@
 
 do_build() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
+	local pyver= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
@@ -12,10 +12,7 @@ do_build() {
 			LDFLAGS="$tmp_ldflags"
 
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
@@ -49,15 +46,12 @@ do_check() {
 
 do_install() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx=
+	local pyver=
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
diff --git a/common/environment/setup/python.sh b/common/environment/setup/python.sh
index d1f4d49a10a..ba181d45361 100644
--- a/common/environment/setup/python.sh
+++ b/common/environment/setup/python.sh
@@ -10,8 +10,8 @@ py2_lib="/usr/lib/python${py2_ver}"
 py2_sitelib="${py2_lib}/site-packages"
 py2_inc="/usr/include/python${py2_ver}"
 
-py3_ver="3.6"
-py3_abiver="m"
+py3_ver="3.8"
+py3_abiver=""
 py3_lib="/usr/lib/python${py3_ver}"
 py3_sitelib="${py3_lib}/site-packages"
 py3_inc="/usr/include/python${py3_ver}${py3_abiver}"

From 75fdcb94c7c7be7dc2c232d271de721d74dc1a6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 004/872] python3-3to2: rebuild for Python 3.8.

---
 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 b6ab94fe7c9..38558f1fcff 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=1
+revision=2
 archs=noarch
 wrksrc="3to2-${version}"
 build_style=python3-module

From 043957a8bcc69ef2ef270f7acd2753a544054759 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 005/872] python-Arrow: rebuild for Python 3.8.

---
 srcpkgs/python-Arrow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Arrow/template b/srcpkgs/python-Arrow/template
index 456e3776188..a3785d60075 100644
--- a/srcpkgs/python-Arrow/template
+++ b/srcpkgs/python-Arrow/template
@@ -2,7 +2,7 @@
 pkgname=python-Arrow
 reverts=0.13.1_1
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="arrow-${version}"
 build_style=python-module

From 5d1bc07743d348083ebd7dfbd1a4ece4913e6a70 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 006/872] python-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Babel/template b/srcpkgs/python-Babel/template
index 34d7a7728ce..619ae432ba4 100644
--- a/srcpkgs/python-Babel/template
+++ b/srcpkgs/python-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Babel'
 pkgname=python-Babel
 version=2.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38e28e565317345549892f5b8da9e3ab1cc3d513 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 007/872] python-BeautifulSoup4: rebuild for Python 3.8.

---
 srcpkgs/python-BeautifulSoup4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-BeautifulSoup4/template b/srcpkgs/python-BeautifulSoup4/template
index 70e4f8a58da..1f6074230c2 100644
--- a/srcpkgs/python-BeautifulSoup4/template
+++ b/srcpkgs/python-BeautifulSoup4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-BeautifulSoup4'
 pkgname=python-BeautifulSoup4
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="beautifulsoup4-${version}"
 build_style=python-module

From 193dc4fe709e1bccd18b84a58f880fde1e4394e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 008/872] python-Bottleneck: rebuild for Python 3.8.

---
 srcpkgs/python-Bottleneck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Bottleneck/template b/srcpkgs/python-Bottleneck/template
index 0c308d5dbb5..28195e99bca 100644
--- a/srcpkgs/python-Bottleneck/template
+++ b/srcpkgs/python-Bottleneck/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Bottleneck'
 pkgname=python-Bottleneck
 version=1.2.1
-revision=4
+revision=5
 wrksrc="Bottleneck-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ff4c422045070300d874353cc6c9750143422e2b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 009/872] python-Cheroot: rebuild for Python 3.8.

---
 srcpkgs/python-Cheroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Cheroot/template b/srcpkgs/python-Cheroot/template
index fcfdf76e69d..7a5375258f4 100644
--- a/srcpkgs/python-Cheroot/template
+++ b/srcpkgs/python-Cheroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Cheroot'
 pkgname=python-Cheroot
 version=8.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cheroot-${version}"
 build_style=python-module

From 6eb51b02b428d8054b1d3a3aa21e6bdcde31cf9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 010/872] python3-CherryPy: rebuild for Python 3.8.

---
 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 b78c01eba2c..450e5791508 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.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python3-module

From 8522b77c798415c2f59fc3b26adc757f66aa0fa7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 011/872] python-ConfigArgParse: rebuild for Python 3.8.

---
 srcpkgs/python-ConfigArgParse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ConfigArgParse/template b/srcpkgs/python-ConfigArgParse/template
index c9a00a04508..d90ca739aee 100644
--- a/srcpkgs/python-ConfigArgParse/template
+++ b/srcpkgs/python-ConfigArgParse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ConfigArgParse'
 pkgname=python-ConfigArgParse
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ConfigArgParse-${version}"
 build_style=python-module

From 3dcbda27301f3e918539317bc411ff556115ef1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 012/872] python-Cython: rebuild for Python 3.8.

---
 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 dc39d54e9c2..675160b3744 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.13
-revision=1
+revision=2
 wrksrc="Cython-${version}"
 build_style=python-module
 pycompile_module="Cython pyximport cython.py"

From 7c69ef59e0a628c13ece955c9f7322631824adca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 013/872] python-Django: rebuild for Python 3.8.

---
 srcpkgs/python-Django/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Django/template b/srcpkgs/python-Django/template
index 21aa405fba1..65a98e41032 100644
--- a/srcpkgs/python-Django/template
+++ b/srcpkgs/python-Django/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Django'
 pkgname=python-Django
 version=1.11.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="Django-${version}"
 build_style=python-module

From 33b250adb0abf2e46663f0a05749097633fce228 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 014/872] python-Flask: rebuild for Python 3.8.

---
 srcpkgs/python-Flask/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask/template b/srcpkgs/python-Flask/template
index 149a76c077e..b75b306701b 100644
--- a/srcpkgs/python-Flask/template
+++ b/srcpkgs/python-Flask/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask'
 pkgname=python-Flask
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9167e534992bd8d17a79a70e22a3b06c68c9762b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 015/872] python-Flask-Assets: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Assets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Assets/template b/srcpkgs/python-Flask-Assets/template
index 339f629f77a..eb81201396b 100644
--- a/srcpkgs/python-Flask-Assets/template
+++ b/srcpkgs/python-Flask-Assets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Assets'
 pkgname=python-Flask-Assets
 version=0.12
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c65d524eb8ee83f7c8eae3ca16878857a374e06c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 016/872] python-Flask-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Babel/template b/srcpkgs/python-Flask-Babel/template
index 3028d15d7bd..b3cc35f230e 100644
--- a/srcpkgs/python-Flask-Babel/template
+++ b/srcpkgs/python-Flask-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Babel'
 pkgname=python-Flask-Babel
 version=0.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From d52f7742820844af3ec25f4b6d4d6d58b19ad722 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 017/872] python-Flask-Login: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Login/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Login/template b/srcpkgs/python-Flask-Login/template
index 8fecf240963..ccaab92d857 100644
--- a/srcpkgs/python-Flask-Login/template
+++ b/srcpkgs/python-Flask-Login/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Login'
 pkgname=python-Flask-Login
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 112c53663ece086d477e4d4fcbc667ae6a2fb518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 018/872] python-Flask-OAuthlib: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-OAuthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-OAuthlib/template b/srcpkgs/python-Flask-OAuthlib/template
index d53157e37b2..958f05a836c 100644
--- a/srcpkgs/python-Flask-OAuthlib/template
+++ b/srcpkgs/python-Flask-OAuthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-OAuthlib'
 pkgname=python-Flask-OAuthlib
 version=0.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From aca82b53b5330ee4a154f2246569006b2d3a38c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 019/872] python3-Flask-RESTful: rebuild for Python 3.8.

---
 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 d0ed467f666..5a05eed0e93 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.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="flask-restful-${version}"
 build_style=python3-module

From 3121295fb06a2b12c0e42b9a6412c1fa52bb86fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 020/872] python-Flask-Script: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Script/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Script/template b/srcpkgs/python-Flask-Script/template
index 19d13887b8e..41312eae57f 100644
--- a/srcpkgs/python-Flask-Script/template
+++ b/srcpkgs/python-Flask-Script/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Script'
 pkgname=python-Flask-Script
 version=2.0.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From cfadd6a4c47e4e611c9d739113006da88f9cb8e7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 021/872] python-Flask-WTF: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-WTF/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-WTF/template b/srcpkgs/python-Flask-WTF/template
index 8edb1d39e35..b2be1e630fb 100644
--- a/srcpkgs/python-Flask-WTF/template
+++ b/srcpkgs/python-Flask-WTF/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-WTF'
 pkgname=python-Flask-WTF
 version=0.14.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 11896d4bd9e1767f6ad8b10e737f0e6a0f5df44f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 022/872] python-GitPython: rebuild for Python 3.8.

---
 srcpkgs/python-GitPython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-GitPython/template b/srcpkgs/python-GitPython/template
index 0edb43cc811..232429265f1 100644
--- a/srcpkgs/python-GitPython/template
+++ b/srcpkgs/python-GitPython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-GitPython'
 pkgname=python-GitPython
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="GitPython-${version}"
 build_style=python-module

From 7008fe32294cead7ef25084a09f874e87cad05e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 023/872] python-IPy: rebuild for Python 3.8.

---
 srcpkgs/python-IPy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-IPy/template b/srcpkgs/python-IPy/template
index d28276383ce..aaae9fcd002 100644
--- a/srcpkgs/python-IPy/template
+++ b/srcpkgs/python-IPy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-IPy'
 pkgname=python-IPy
 version=1.00
-revision=1
+revision=2
 archs=noarch
 wrksrc="IPy-${version}"
 build_style=python-module

From 4ee5b9129c818c4db475e75f899f1f21eb9c312c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 024/872] python3-Inflector: rebuild for Python 3.8.

---
 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 1bfe9ccef7c..e9ee0ffe8d1 100644
--- a/srcpkgs/python3-Inflector/template
+++ b/srcpkgs/python3-Inflector/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-Inflector'
 pkgname=python3-Inflector
 version=2.0.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="Inflector-${version}"
 build_style=python3-module

From 631236d908cbeed8345c2fb159c73e7c54fe1571 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 025/872] python-Jinja2: rebuild for Python 3.8.

---
 srcpkgs/python-Jinja2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Jinja2/template b/srcpkgs/python-Jinja2/template
index c67e6f47f06..3fcd44dc198 100644
--- a/srcpkgs/python-Jinja2/template
+++ b/srcpkgs/python-Jinja2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Jinja2'
 pkgname=python-Jinja2
 version=2.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Jinja2-${version}"
 build_style=python-module

From 3a7808b9f47226adec7dd1e59bef222cf38d7e9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 026/872] python-Levenshtein: rebuild for Python 3.8.

---
 srcpkgs/python-Levenshtein/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Levenshtein/template b/srcpkgs/python-Levenshtein/template
index 26f57d90e70..7d97147ccc8 100644
--- a/srcpkgs/python-Levenshtein/template
+++ b/srcpkgs/python-Levenshtein/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Levenshtein'
 pkgname=python-Levenshtein
 version=0.12.0
-revision=2
+revision=3
 build_style=python-module
 pycompile_module="Levenshtein"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"

From 6d2a898ccc971553cf9dab7239daf8d626350b19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 027/872] python-M2Crypto: rebuild for Python 3.8.

---
 srcpkgs/python-M2Crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-M2Crypto/template b/srcpkgs/python-M2Crypto/template
index 102dbb7261e..6febd5a9ea1 100644
--- a/srcpkgs/python-M2Crypto/template
+++ b/srcpkgs/python-M2Crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-M2Crypto'
 pkgname=python-M2Crypto
 version=0.35.2
-revision=1
+revision=2
 wrksrc="M2Crypto-${version}"
 build_style=python-module
 pycompile_module="M2Crypto"

From 3597aa866d7cb1ff4d5316a0cfe52c8aa8ab717c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 028/872] python-Mako: rebuild for Python 3.8.

---
 srcpkgs/python-Mako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Mako/template b/srcpkgs/python-Mako/template
index e5c3c76170c..f0184179b83 100644
--- a/srcpkgs/python-Mako/template
+++ b/srcpkgs/python-Mako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Mako'
 pkgname=python-Mako
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Mako-${version}"
 build_style=python-module

From 164d5bbfa645fb7b1ddbfbccebb7b85e407c578f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 029/872] python-Markdown: rebuild for Python 3.8.

---
 srcpkgs/python-Markdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markdown/template b/srcpkgs/python-Markdown/template
index 935dcc12bca..03a0d18e23b 100644
--- a/srcpkgs/python-Markdown/template
+++ b/srcpkgs/python-Markdown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markdown'
 pkgname=python-Markdown
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python-module

From c5fcb10688938a17e3acb9f9c630c300f5fe9672 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 030/872] python-MarkupSafe: rebuild for Python 3.8.

---
 srcpkgs/python-MarkupSafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MarkupSafe/template b/srcpkgs/python-MarkupSafe/template
index c12dbb7e656..ae22857aa7a 100644
--- a/srcpkgs/python-MarkupSafe/template
+++ b/srcpkgs/python-MarkupSafe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MarkupSafe'
 pkgname=python-MarkupSafe
 version=1.1.1
-revision=1
+revision=2
 wrksrc="MarkupSafe-${version}"
 build_style=python-module
 pycompile_module="markupsafe"

From b7a4bc0f45110c5c3bd019a437078724336d1888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 031/872] python-Markups: rebuild for Python 3.8.

---
 srcpkgs/python-Markups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markups/template b/srcpkgs/python-Markups/template
index d4817feb430..02ba25ee05c 100644
--- a/srcpkgs/python-Markups/template
+++ b/srcpkgs/python-Markups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markups'
 pkgname=python-Markups
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markups-${version}"
 build_style=python-module

From af8fe2e4b17c908737f599cc43d860493f7da689 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 032/872] python3-MechanicalSoup: rebuild for Python 3.8.

---
 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 b1bbfa4184c..5a3b0b3eb03 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=1
+revision=2
 archs=noarch
 wrksrc=MechanicalSoup-${version}
 build_style=python3-module

From 4d05157344a63fb3d617b00a4268732231187cb4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 033/872] python-MiniMock: rebuild for Python 3.8.

---
 srcpkgs/python-MiniMock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MiniMock/template b/srcpkgs/python-MiniMock/template
index 38c0723f374..8b8c4f5f1e6 100644
--- a/srcpkgs/python-MiniMock/template
+++ b/srcpkgs/python-MiniMock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MiniMock'
 pkgname=python-MiniMock
 version=1.2.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 25b62a34488966009bf8450b60653f01872e2310 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 034/872] python-Pillow: rebuild for Python 3.8.

---
 srcpkgs/python-Pillow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pillow/template b/srcpkgs/python-Pillow/template
index e43d22b8f62..f1791b46d79 100644
--- a/srcpkgs/python-Pillow/template
+++ b/srcpkgs/python-Pillow/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pillow'
 pkgname=python-Pillow
 version=6.2.0
-revision=1
+revision=2
 wrksrc="Pillow-${version}"
 build_style=python-module
 pycompile_module="PIL"

From f79ffe3fe477b7fff206250125a96da96c80c086 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 035/872] python-PyAudio: rebuild for Python 3.8.

---
 srcpkgs/python-PyAudio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyAudio/template b/srcpkgs/python-PyAudio/template
index 5c3286caae0..2e84cf5cc8f 100644
--- a/srcpkgs/python-PyAudio/template
+++ b/srcpkgs/python-PyAudio/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyAudio'
 pkgname=python-PyAudio
 version=0.2.11
-revision=2
+revision=3
 wrksrc="PyAudio-${version}"
 build_style=python-module
 pycompile_module="pyaudio.py"

From 11c99c939a4791ec394842255e6aac23eaae5920 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 036/872] python3-PyBrowserID: rebuild for Python 3.8.

---
 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 abec9dac54e..eefd0175f1b 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=2
+revision=3
 archs=noarch
 wrksrc="PyBrowserID-${version}"
 build_style=python3-module

From d49beb289c07b8d33e8e2f286e068c0e8b3fe4b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 037/872] python3-PyFxA: rebuild for Python 3.8.

---
 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 31175c92435..6fc6791efdd 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=1
+revision=2
 archs=noarch
 wrksrc="PyFxA-${version}"
 build_style=python3-module

From d0eb109c7435d396e67de8f37a376ca0a2958d93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 038/872] python-PyHamcrest: rebuild for Python 3.8.

---
 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 61078241d8a..48f001595aa 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=1
+revision=2
 archs=noarch
 wrksrc="PyHamcrest-${version}"
 build_style=python-module

From 4afc9e488b53ee7025095fe93072953c256fc630 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 039/872] python-PyICU: rebuild for Python 3.8.

---
 srcpkgs/python-PyICU/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyICU/template b/srcpkgs/python-PyICU/template
index be4aaf88639..aab2934cbbd 100644
--- a/srcpkgs/python-PyICU/template
+++ b/srcpkgs/python-PyICU/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyICU'
 pkgname=python-PyICU
 version=2.3.1
-revision=2
+revision=3
 wrksrc="PyICU-${version}"
 build_style=python-module
 pycompile_module="icu PyICU.py"

From a0c3f96b4df2b1efda070832287f3728314c717a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 040/872] python3-PyJWT: rebuild for Python 3.8.

---
 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 6f0830125c1..bf1dda0753e 100644
--- a/srcpkgs/python3-PyJWT/template
+++ b/srcpkgs/python3-PyJWT/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-PyJWT'
 pkgname=python3-PyJWT
 version=1.7.1
-revision=1
+revision=2
 wrksrc="PyJWT-${version}"
 build_style=python3-module
 pycompile_module="PyJWT.py"

From 0355fd4b78af7fbf4ffad4b12dc8e153b70d703d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 041/872] python-PyOpenGL: rebuild for Python 3.8.

---
 srcpkgs/python-PyOpenGL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyOpenGL/template b/srcpkgs/python-PyOpenGL/template
index ec08e0bd667..eafc3be1210 100644
--- a/srcpkgs/python-PyOpenGL/template
+++ b/srcpkgs/python-PyOpenGL/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL'
 pkgname=python-PyOpenGL
 version=3.1.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="PyOpenGL-${version}"
 build_style=python-module

From 1a8da5c4a7dbf53ec6c03efd5387e02d2b0be720 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 17:15:54 +0200
Subject: [PATCH 042/872] python-PyOpenGL-accelerate: update to 3.1.3b1.

---
 srcpkgs/python-PyOpenGL-accelerate/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python-PyOpenGL-accelerate/template b/srcpkgs/python-PyOpenGL-accelerate/template
index 25d84abffcb..5d16a82b845 100644
--- a/srcpkgs/python-PyOpenGL-accelerate/template
+++ b/srcpkgs/python-PyOpenGL-accelerate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL-accelerate'
 pkgname=python-PyOpenGL-accelerate
-version=3.1.0
-revision=5
+version=3.1.3b1
+revision=1
 wrksrc="PyOpenGL-accelerate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"
@@ -9,10 +9,10 @@ makedepends="python-devel python3-devel python-numpy python3-numpy"
 depends="python-numpy"
 short_desc="Acceleration code for PyOpenGL (Python2)"
 maintainer="Alain Kalker <a.c.kalker@gmail.com>"
-license="3-clause-BSD"
+license="BSD-3-Clause"
 homepage="http://pyopengl.sourceforge.net/"
 distfiles="${PYPI_SITE}/P/PyOpenGL-accelerate/PyOpenGL-accelerate-${version}.tar.gz"
-checksum=927f4670b893d46e2f6273ae938bf0a1db27ffae3336eba94813ccef6260c410
+checksum=e687eea7e006d65f531933b49b3b3d2feaaf51279147a904247f9d189762a36f
 
 post_install() {
 	vlicense license.txt LICENSE

From 2f6b6f2c3880b16991df568d3ac18efca5c970c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 043/872] python-PyQt5: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5/template b/srcpkgs/python-PyQt5/template
index 6534d4e22e6..9eba20dc514 100644
--- a/srcpkgs/python-PyQt5/template
+++ b/srcpkgs/python-PyQt5/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5'
 pkgname=python-PyQt5
 version=5.13.0
-revision=1
+revision=2
 _sipver=4.19.18
 lib32disabled=yes
 wrksrc="PyQt5_gpl-${version}"

From cf20a1f23e0c305d2e9672610364b2fd4f566695 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 044/872] python-PyQt5-webengine: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5-webengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5-webengine/template b/srcpkgs/python-PyQt5-webengine/template
index 996ef6b00e2..af7162d20cb 100644
--- a/srcpkgs/python-PyQt5-webengine/template
+++ b/srcpkgs/python-PyQt5-webengine/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5-webengine'
 pkgname=python-PyQt5-webengine
 version=5.13.0
-revision=1
+revision=2
 wrksrc="PyQtWebEngine_gpl-${version}"
 pycompile_module="PyQt5WebEngine"
 hostmakedepends="pkg-config qt5-qmake

From 84502fbd3a591ad0db01072998b5a2b3fcfcf192 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 045/872] python-Pygments: rebuild for Python 3.8.

---
 srcpkgs/python-Pygments/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pygments/template b/srcpkgs/python-Pygments/template
index f5a72ca6cea..8d2214a6bfc 100644
--- a/srcpkgs/python-Pygments/template
+++ b/srcpkgs/python-Pygments/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pygments'
 pkgname=python-Pygments
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Pygments-${version}"
 build_style=python-module

From ef2467b2248b773e2d940058876cf81a2b935043 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 046/872] python-Pyro4: rebuild for Python 3.8.

---
 srcpkgs/python-Pyro4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pyro4/template b/srcpkgs/python-Pyro4/template
index d8925aa141f..0417e9f6a8a 100644
--- a/srcpkgs/python-Pyro4/template
+++ b/srcpkgs/python-Pyro4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pyro4'
 pkgname=python-Pyro4
 version=4.75
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a80785231122d63ad91b973744bf59b0a1b59506 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 047/872] python3-ReParser: rebuild for Python 3.8.

---
 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 5e7b5de3790..5959de9d0e3 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=1
+revision=2
 archs=noarch
 wrksrc=ReParser-${version}
 build_style=python3-module

From 543272b7ff22e6f0642d879c60f19717643fec8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 048/872] python-SPARQLWrapper: rebuild for Python 3.8.

---
 srcpkgs/python-SPARQLWrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-SPARQLWrapper/template b/srcpkgs/python-SPARQLWrapper/template
index d014eb8aab4..8d2db9a02b3 100644
--- a/srcpkgs/python-SPARQLWrapper/template
+++ b/srcpkgs/python-SPARQLWrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'python-SPARQLWrapper'
 pkgname=python-SPARQLWrapper
 version=1.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a01a9e6bc3bd9fddfdd13341f78e625b063be5c8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 049/872] python-SQLAlchemy: rebuild for Python 3.8.

---
 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 7b529ade621..110430ff9f5 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.8
-revision=1
+revision=2
 wrksrc="SQLAlchemy-${version}"
 build_style=python-module
 pycompile_module="sqlalchemy"

From 46382571cad86b54ca46e129f7c2988772d0a48e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 050/872] python3-SecretStorage: rebuild for Python 3.8.

---
 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 8df813ad247..b19d4865f7e 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.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="SecretStorage-${version}"
 build_style=python3-module

From c79427640956f1961211ce3322c3811958e0f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 051/872] python3-SoCo: rebuild for Python 3.8.

---
 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 f0ac9825f57..01ebbeff15a 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="SoCo-${version}"
 build_style=python3-module

From 20a1ac5477ca4a76e0257e06bf6f353835eac7bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 052/872] python-Sphinx: rebuild for Python 3.8.

---
 srcpkgs/python-Sphinx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Sphinx/template b/srcpkgs/python-Sphinx/template
index e70dc9b238e..42969925f9e 100644
--- a/srcpkgs/python-Sphinx/template
+++ b/srcpkgs/python-Sphinx/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Sphinx'
 pkgname=python-Sphinx
 version=1.8.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="Sphinx-${version}"
 build_style=python-module

From 863c01ff80faa4de651a55ba2a354f8da5e6b025 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 053/872] python3-Telethon: rebuild for Python 3.8.

---
 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 b0786559591..d0fa8e34d3f 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.10.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="Telethon-${version}"
 build_style=python3-module

From efc9766b9866c660a4cb508c49be4df48f1e5809 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 054/872] python-Twisted: rebuild for Python 3.8.

---
 srcpkgs/python-Twisted/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Twisted/template b/srcpkgs/python-Twisted/template
index 519a1e251a9..e94e0edf26e 100644
--- a/srcpkgs/python-Twisted/template
+++ b/srcpkgs/python-Twisted/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Twisted'
 pkgname=python-Twisted
 version=18.9.0
-revision=3
+revision=4
 wrksrc="Twisted-${version}"
 build_style=python-module
 pycompile_module="twisted"

From 5fd974f3940d5ee91fe712fef2e93ce539743b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 055/872] python3-TxSNI: rebuild for Python 3.8.

---
 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 403010da5be..d9d7c2a0c83 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.1.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="TxSNI-${version}"
 build_style=python3-module

From 559184031fe43c0ff648fb7fab55ede08fff2c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 056/872] python-Unidecode: rebuild for Python 3.8.

---
 srcpkgs/python-Unidecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Unidecode/template b/srcpkgs/python-Unidecode/template
index 035c5d846be..444eb1427d6 100644
--- a/srcpkgs/python-Unidecode/template
+++ b/srcpkgs/python-Unidecode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Unidecode'
 pkgname=python-Unidecode
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Unidecode-${version}"
 build_style=python-module

From 07f0904b4cb8f2de0b7bc39c0ca28d225c91257d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 057/872] python-WTForms: rebuild for Python 3.8.

---
 srcpkgs/python-WTForms/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-WTForms/template b/srcpkgs/python-WTForms/template
index 06af2366050..98dff7d092f 100644
--- a/srcpkgs/python-WTForms/template
+++ b/srcpkgs/python-WTForms/template
@@ -1,7 +1,7 @@
 # Template file for 'python-WTForms'
 pkgname=python-WTForms
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="WTForms-${version}"
 build_style=python-module

From ec81beba1921fe189a8dd80810da306514a86c1a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 058/872] python3-WebOb: rebuild for Python 3.8.

---
 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 c360542a1f2..53e63879f2c 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=1
+revision=2
 archs=noarch
 wrksrc="WebOb-${version}"
 build_style=python3-module

From 0b7a4a756b3ead4c188a3819311c4471c1b0a21c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 059/872] python-Werkzeug: rebuild for Python 3.8.

---
 srcpkgs/python-Werkzeug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Werkzeug/template b/srcpkgs/python-Werkzeug/template
index 24fff62f1ae..1ca303822e8 100644
--- a/srcpkgs/python-Werkzeug/template
+++ b/srcpkgs/python-Werkzeug/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Werkzeug'
 pkgname=python-Werkzeug
 version=0.15.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c530a6e11127606a3b29b73da4cb31f010d97b5c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 060/872] python-Whoosh: rebuild for Python 3.8.

---
 srcpkgs/python-Whoosh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Whoosh/template b/srcpkgs/python-Whoosh/template
index f2118ed0af2..66856b206a7 100644
--- a/srcpkgs/python-Whoosh/template
+++ b/srcpkgs/python-Whoosh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-whoosh'
 pkgname=python-Whoosh
 version=2.7.4
-revision=1
+revision=2
 wrksrc="Whoosh-${version}"
 archs=noarch
 build_style=python-module

From 3e3ad6526265ded86e6e1b5539061302a3890381 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 061/872] python3-XlsxWriter: rebuild for Python 3.8.

---
 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 ea68ced9a03..b991457e01e 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.1.8
-revision=1
+revision=2
 archs="noarch"
 wrksrc="XlsxWriter-RELEASE_${version}"
 build_style=python3-module

From ed808be70fb42a5a7e827e43a5d8a9954d85823a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 062/872] python-Yapsy: rebuild for Python 3.8.

---
 srcpkgs/python-Yapsy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Yapsy/template b/srcpkgs/python-Yapsy/template
index 9f79423f91d..5ad8b234f5d 100644
--- a/srcpkgs/python-Yapsy/template
+++ b/srcpkgs/python-Yapsy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Yapsy'
 pkgname=python-Yapsy
 version=1.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Yapsy-${version}"
 build_style=python-module

From ef3f8b60f72752d3ec1c7676df4597cc6cfdfb42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 063/872] python-aalib: rebuild for Python 3.8.

---
 srcpkgs/python-aalib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-aalib/template b/srcpkgs/python-aalib/template
index 349b8407343..f9621a9c8dc 100644
--- a/srcpkgs/python-aalib/template
+++ b/srcpkgs/python-aalib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-aalib'
 pkgname=python-aalib
 version=0.3.2
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="aalib.py"
 hostmakedepends="python-setuptools python3-setuptools"

From 1aee008231a9354b62bbf679e89e620deeba0d34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 064/872] python3-acme: rebuild for Python 3.8.

---
 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 d7ef20f2301..844dde9c814 100644
--- a/srcpkgs/python3-acme/template
+++ b/srcpkgs/python3-acme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-acme'
 pkgname=python3-acme
 version=0.39.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="acme-${version}"
 build_style=python3-module

From 877668118087bb2d0bd4b8ebf34db7c6c4308c31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 065/872] python3-aiodns: rebuild for Python 3.8.

---
 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 cca9f45dbf5..8e06ea6e614 100644
--- a/srcpkgs/python3-aiodns/template
+++ b/srcpkgs/python3-aiodns/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiodns'
 pkgname=python3-aiodns
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiodns-${version}"
 build_style=python3-module

From de87766918ac8688cf8992433b56e9b1ad222108 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 066/872] python3-aiohttp: rebuild for Python 3.8.

---
 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 fbe98e07b2b..67e450e6aab 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.5.4
-revision=3
+revision=4
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 0c2d285f8d7edc438e657ec9bc4a2b16982a4a57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 067/872] python3-aiohttp-cors: rebuild for Python 3.8.

---
 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 8a643ca1797..b621716e3cd 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=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 4643a6f9e03d1657e1ac2f5ca93bf616979b58de Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 068/872] python3-aiohttp-cors2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp-cors2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp-cors2/template b/srcpkgs/python3-aiohttp-cors2/template
index 7ff1206538b..f13b0598456 100644
--- a/srcpkgs/python3-aiohttp-cors2/template
+++ b/srcpkgs/python3-aiohttp-cors2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp-cors2'
 pkgname=python3-aiohttp-cors2
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 9db81023f9f60f7a78d62f9f9b8f1fa8afbb9fa8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 069/872] python3-aiohttp2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp2/template b/srcpkgs/python3-aiohttp2/template
index b570043baba..db3704b5700 100644
--- a/srcpkgs/python3-aiohttp2/template
+++ b/srcpkgs/python3-aiohttp2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp2'
 pkgname=python3-aiohttp2
 version=2.3.10
-revision=2
+revision=3
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 9bf56f834aca73a7ea8141ab0c95b4aed0d1f09a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 070/872] python3-aiohttp_socks: rebuild for Python 3.8.

---
 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 93c45ff24c4..10ab967ef76 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.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp_socks-${version}"
 build_style=python3-module

From acad4e265f43c8bc2098168adb1c0442a0c22445 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 071/872] python3-aiorpcx: rebuild for Python 3.8.

---
 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 42b6dc541bf..07922e15ccd 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.17.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiorpcX-${version}"
 build_style=python3-module

From b4945f68890b617f5b513871e533769a2149f07f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 072/872] python-alabaster: rebuild for Python 3.8.

---
 srcpkgs/python-alabaster/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alabaster/template b/srcpkgs/python-alabaster/template
index e4ece5c2991..b33009d5efb 100644
--- a/srcpkgs/python-alabaster/template
+++ b/srcpkgs/python-alabaster/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alabaster'
 pkgname=python-alabaster
 version=0.7.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="alabaster-${version}"
 build_style=python-module

From 04c416b8fb310277c61713ee1b8dd702a970240b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 073/872] python-alembic: rebuild for Python 3.8.

---
 srcpkgs/python-alembic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alembic/template b/srcpkgs/python-alembic/template
index 4011b33c0fa..aecbe10e7d0 100644
--- a/srcpkgs/python-alembic/template
+++ b/srcpkgs/python-alembic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alembic'
 pkgname=python-alembic
 version=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="alembic-${version}"
 build_style=python-module

From 5c2d4bcc3255cb59561524d151fe84b3a70e8ad4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 074/872] python3-altgraph: rebuild for Python 3.8.

---
 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 eff10f7aef4..2bf433edb6e 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.16.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="altgraph-${version}"
 build_style=python3-module

From 3c6234d42f7adffca219ea7f98f11d5283dce900 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 075/872] python3-aniso8601: rebuild for Python 3.8.

---
 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 26540bc8c3f..0253b89b5a3 100644
--- a/srcpkgs/python3-aniso8601/template
+++ b/srcpkgs/python3-aniso8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aniso8601'
 pkgname=python3-aniso8601
 version=8.0.0
-revision=1
+revision=2
 archs=noarch
 _gitver=0ec13b9d81c9
 wrksrc="nielsenb-aniso8601-${_gitver}"

From b4fecde90241517d0629d46de55f99a1ef7edbaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 076/872] python-ansicolor: rebuild for Python 3.8.

---
 srcpkgs/python-ansicolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ansicolor/template b/srcpkgs/python-ansicolor/template
index af18c5b946d..3663a82f0cc 100644
--- a/srcpkgs/python-ansicolor/template
+++ b/srcpkgs/python-ansicolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ansicolor'
 pkgname=python-ansicolor
 version=0.2.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="ansicolor-${version}"
 build_style=python-module

From 3983fbed547fd194f9eefaaf58d10c7770e27350 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 077/872] python3-anytree: rebuild for Python 3.8.

---
 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 5a37dba6581..7368754c426 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.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="anytree-${version}"
 build_style=python3-module

From 6d797f541c2cb160f9cfebd0a3e71dace50cceb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 078/872] python-appdirs: rebuild for Python 3.8.

---
 srcpkgs/python-appdirs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-appdirs/template b/srcpkgs/python-appdirs/template
index fdae1fe184b..15354ec5768 100644
--- a/srcpkgs/python-appdirs/template
+++ b/srcpkgs/python-appdirs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-appdirs'
 pkgname=python-appdirs
 version=1.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 7a7c86554157d7224efc221e706b9aebfc1ff796 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 079/872] python3-applib: rebuild for Python 3.8.

---
 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 95f589dc65a..0fb5a42e618 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=1
+revision=2
 archs=noarch
 wrksrc="applib-${version}"
 build_style=python3-module

From 642416934e5f74b49e1a38fe6e941287cbccbf83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 080/872] python-apsw: rebuild for Python 3.8.

---
 srcpkgs/python-apsw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-apsw/template b/srcpkgs/python-apsw/template
index ed47b4a7803..6146ea639db 100644
--- a/srcpkgs/python-apsw/template
+++ b/srcpkgs/python-apsw/template
@@ -3,7 +3,7 @@ pkgname=python-apsw
 _distver=3.29.0
 _patchver=r1
 version=${_distver}${_patchver}
-revision=1
+revision=2
 wrksrc="apsw-${_distver}-${_patchver}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 765bd2f2b82c6226b12a5d6bbe156b07c03a1bca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 081/872] python-argh: rebuild for Python 3.8.

---
 srcpkgs/python-argh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argh/template b/srcpkgs/python-argh/template
index 4b7aec3b525..656da441757 100644
--- a/srcpkgs/python-argh/template
+++ b/srcpkgs/python-argh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argh'
 pkgname=python-argh
 version=0.26.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="argh-${version}"
 build_style=python-module

From 1f6f709fcbb4353d419be8d129ce581747dae1ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 082/872] python-argon2: rebuild for Python 3.8.

---
 srcpkgs/python-argon2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argon2/template b/srcpkgs/python-argon2/template
index 0b4b132cddd..1b5216cc9c0 100644
--- a/srcpkgs/python-argon2/template
+++ b/srcpkgs/python-argon2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argon2'
 pkgname=python-argon2
 version=18.3.0
-revision=2
+revision=3
 wrksrc="argon2_cffi-${version}"
 build_style=python-module
 pycompile_module="argon2"

From 26f299203792a3fe43e8944054d8c61c83416097 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 083/872] python-arxiv2bib: rebuild for Python 3.8.

---
 srcpkgs/python-arxiv2bib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-arxiv2bib/template b/srcpkgs/python-arxiv2bib/template
index 8bbc6bcf78e..4f245755dcf 100644
--- a/srcpkgs/python-arxiv2bib/template
+++ b/srcpkgs/python-arxiv2bib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-arxiv2bib'
 pkgname=python-arxiv2bib
 version=1.0.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="arxiv2bib-${version}"
 build_style=python-module

From 5d25b8642b8f8043e54a95f2ff5efc880044395a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 084/872] python-asn1crypto: rebuild for Python 3.8.

---
 srcpkgs/python-asn1crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-asn1crypto/template b/srcpkgs/python-asn1crypto/template
index 369c20af98f..e7ffe7415fc 100644
--- a/srcpkgs/python-asn1crypto/template
+++ b/srcpkgs/python-asn1crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-asn1crypto'
 pkgname=python-asn1crypto
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="asn1crypto-${version}"
 build_style=python-module

From c0625af704339d35d7423cd750ef2620c53c39bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 085/872] python-astral: rebuild for Python 3.8.

---
 srcpkgs/python-astral/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-astral/template b/srcpkgs/python-astral/template
index b8fdaee27ac..07aaeee166b 100644
--- a/srcpkgs/python-astral/template
+++ b/srcpkgs/python-astral/template
@@ -1,7 +1,7 @@
 # Template file for 'python-astral'
 pkgname=python-astral
 version=1.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python-}-${version}"
 build_style=python-module

From 6cdbd1584336605868e949368279bb6c2143b1d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 086/872] python3-astroid: rebuild for Python 3.8.

---
 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 28f01bd4445..d964fd2cdf3 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.2.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="astroid-${version}"
 build_style=python3-module

From c0642f6c760884c3209a89e643de35660419627a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 087/872] python3-async-timeout: rebuild for Python 3.8.

---
 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 d949a4fdf9a..854584fb5b2 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=1
+revision=2
 archs=noarch
 wrksrc="async-timeout-${version}"
 build_style=python3-module

From 17cdd1aac68337b8859ce0d970b309f841b8a456 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 088/872] python3-async_generator: rebuild for Python 3.8.

---
 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 c2053d7bf1f..20d9f7ea0d1 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=1
+revision=2
 archs=noarch
 wrksrc="async_generator-${version}"
 build_style=python3-module

From e57ec7e6820968645a23bcc13867add4c9a62399 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 089/872] python-atomicwrites: rebuild for Python 3.8.

---
 srcpkgs/python-atomicwrites/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atomicwrites/template b/srcpkgs/python-atomicwrites/template
index 849272e53f9..ec411d981d4 100644
--- a/srcpkgs/python-atomicwrites/template
+++ b/srcpkgs/python-atomicwrites/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atomicwrites'
 pkgname=python-atomicwrites
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="atomicwrites-${version}"
 build_style=python-module

From 61df9fa27dc05bc6bb5d5a2c5e806fd041d9adb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 090/872] python-atspi: rebuild for Python 3.8.

---
 srcpkgs/python-atspi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atspi/template b/srcpkgs/python-atspi/template
index 4a2007fa319..cfa1ef35377 100644
--- a/srcpkgs/python-atspi/template
+++ b/srcpkgs/python-atspi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atspi'
 pkgname=python-atspi
 version=2.32.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure

From d24c76e2f70e9a9dd9a6aa66a323bf79f37f9110 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 091/872] python-attrs: rebuild for Python 3.8.

---
 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 aaddb13f5be..6e2297a9553 100644
--- a/srcpkgs/python-attrs/template
+++ b/srcpkgs/python-attrs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-attrs'
 pkgname=python-attrs
 version=19.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="attrs-${version}"
 build_style=python-module

From dba37b5f26f28057cb10e86a08a4d2281ee09b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 092/872] python-audioread: rebuild for Python 3.8.

---
 srcpkgs/python-audioread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-audioread/template b/srcpkgs/python-audioread/template
index fc788a2778c..bc878d4b82d 100644
--- a/srcpkgs/python-audioread/template
+++ b/srcpkgs/python-audioread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-audioread'
 pkgname=python-audioread
 version=2.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="audioread-${version}"
 build_style=python-module

From 789a6f2ae1cd503ad69b6a968651c7745f878718 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 093/872] audit: rebuild for Python 3.8.

---
 srcpkgs/audit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/audit/template b/srcpkgs/audit/template
index c624aae0f6d..3e0d21784c0 100644
--- a/srcpkgs/audit/template
+++ b/srcpkgs/audit/template
@@ -1,7 +1,7 @@
 # Template file for 'audit'
 pkgname=audit
 version=2.8.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--libdir=/usr/lib --enable-shared=audit --enable-gssapi-krb5
  --with-apparmor --with-libcap-ng --with-python3"

From e2efc441ba2dda6eac89d6d19f7960be2fb6cb6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 094/872] python3-autobahn: rebuild for Python 3.8.

---
 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 053e45608e5..524ba4b4566 100644
--- a/srcpkgs/python3-autobahn/template
+++ b/srcpkgs/python3-autobahn/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-autobahn'
 pkgname=python3-autobahn
 version=19.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="autobahn-${version}"
 build_style=python3-module

From 9ad07e924752896ad77bccca2019163eb738ebc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 095/872] python-automat: rebuild for Python 3.8.

---
 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 4d0f89a89f5..984f5e9642a 100644
--- a/srcpkgs/python-automat/template
+++ b/srcpkgs/python-automat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-automat'
 pkgname=python-automat
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Automat-${version}"
 build_style=python-module

From a104c6986268b798f373e1fb36de2b20efb9f618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 096/872] python-axolotl: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl/template b/srcpkgs/python-axolotl/template
index cf24db1b6e7..74480b5a9fe 100644
--- a/srcpkgs/python-axolotl/template
+++ b/srcpkgs/python-axolotl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl'
 pkgname=python-axolotl
 version=0.2.3
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="axolotl"

From c0e16521a2125c2ae2c155dd483904a3dce7bd8c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 097/872] python-axolotl-curve25519: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl-curve25519/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl-curve25519/template b/srcpkgs/python-axolotl-curve25519/template
index f7b273b8385..897de4e7cdf 100644
--- a/srcpkgs/python-axolotl-curve25519/template
+++ b/srcpkgs/python-axolotl-curve25519/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl-curve25519'
 pkgname=python-axolotl-curve25519
 version=0.4.1.post2
-revision=2
+revision=3
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 makedepends="python-devel python3-devel"

From 6c250811341de25ed60e2bdfaae58eb8f5a8c159 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 098/872] python-babelfish: rebuild for Python 3.8.

---
 srcpkgs/python-babelfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-babelfish/template b/srcpkgs/python-babelfish/template
index c156255f418..47d5bb176cc 100644
--- a/srcpkgs/python-babelfish/template
+++ b/srcpkgs/python-babelfish/template
@@ -1,7 +1,7 @@
 # Template file for 'python-babelfish'
 pkgname=python-babelfish
 version=0.5.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="babelfish-${version}"
 build_style=python-module

From 3bbb2fa6599ab0470a4209080a69ad4f8476f1ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 099/872] python-backcall: rebuild for Python 3.8.

---
 srcpkgs/python-backcall/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-backcall/template b/srcpkgs/python-backcall/template
index 01dfab9c25d..a55af727ab6 100644
--- a/srcpkgs/python-backcall/template
+++ b/srcpkgs/python-backcall/template
@@ -1,7 +1,7 @@
 # Template file for 'python-backcall'
 pkgname=python-backcall
 version=0.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="backcall-${version}"
 build_style=python-module

From d263efaab1b83cfdc94e9b33011f3cfefc52dcd2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 100/872] bcc: rebuild for Python 3.8.

---
 srcpkgs/bcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template
index a4d32bce7a4..e872cb6a4a8 100644
--- a/srcpkgs/bcc/template
+++ b/srcpkgs/bcc/template
@@ -1,7 +1,7 @@
 # Template file for 'bcc'
 pkgname=bcc
 version=0.11.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DREVISION=${version}"
 hostmakedepends="flex"

From 95aa25d2f02529207de0d9d62aa57353f202d9a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 101/872] python-bcrypt: rebuild for Python 3.8.

---
 srcpkgs/python-bcrypt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bcrypt/template b/srcpkgs/python-bcrypt/template
index 1ccac21ee94..664b5c9df07 100644
--- a/srcpkgs/python-bcrypt/template
+++ b/srcpkgs/python-bcrypt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bcrypt'
 pkgname=python-bcrypt
 version=3.1.7
-revision=1
+revision=2
 wrksrc="bcrypt-${version}"
 build_style=python-module
 pycompile_module="bcrypt"

From 91e29d8f93186f3c597658d4746f864cc6ed9fb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 102/872] python-bibtexparser: rebuild for Python 3.8.

---
 srcpkgs/python-bibtexparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bibtexparser/template b/srcpkgs/python-bibtexparser/template
index 1eff201e6b8..c40115c9fb8 100644
--- a/srcpkgs/python-bibtexparser/template
+++ b/srcpkgs/python-bibtexparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bibtexparser'
 pkgname=python-bibtexparser
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bibtexparser-${version}"
 build_style=python-module

From 6a95de33763230908ad4e9ae408dedcdd2cc431d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 103/872] python-bitarray: rebuild for Python 3.8.

---
 srcpkgs/python-bitarray/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitarray/template b/srcpkgs/python-bitarray/template
index 4f2b4ee392c..f928718a9df 100644
--- a/srcpkgs/python-bitarray/template
+++ b/srcpkgs/python-bitarray/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitarray'
 pkgname=python-bitarray
 version=1.0.1
-revision=1
+revision=2
 wrksrc="bitarray-${version}"
 build_style=python-module
 pycompile_module="bitarray"

From 1f892b7a3495cc0eddd59d14baf8fa6473521ce4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 104/872] python-bitbucket-api: rebuild for Python 3.8.

---
 srcpkgs/python-bitbucket-api/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitbucket-api/template b/srcpkgs/python-bitbucket-api/template
index 27747866baf..448ea60d53d 100644
--- a/srcpkgs/python-bitbucket-api/template
+++ b/srcpkgs/python-bitbucket-api/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitbucket-api'
 pkgname=python-bitbucket-api
 version=0.5.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="bitbucket-api-${version}"
 build_style=python-module

From 9f464ba19a5d403e830d05b84d5b86c6a9bf0209 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 105/872] python-bleach: rebuild for Python 3.8.

---
 srcpkgs/python-bleach/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bleach/template b/srcpkgs/python-bleach/template
index da389c319a5..6e3d4a3bf4c 100644
--- a/srcpkgs/python-bleach/template
+++ b/srcpkgs/python-bleach/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bleach'
 pkgname=python-bleach
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bleach-${version}"
 build_style=python-module

From a79c0811d86d64b345ee5b056c280a062c8e810a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 106/872] python3-blessed: rebuild for Python 3.8.

---
 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 4d494883f9a..8527379351f 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.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessed-${version}"
 build_style=python3-module

From ec38850242ede1700a4b6234199fba116a530b3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 107/872] python-blessings: rebuild for Python 3.8.

---
 srcpkgs/python-blessings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blessings/template b/srcpkgs/python-blessings/template
index f8e396da5c5..baa4938c328 100644
--- a/srcpkgs/python-blessings/template
+++ b/srcpkgs/python-blessings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blessings'
 pkgname=python-blessings
 version=1.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessings-${version}"
 build_style=python-module

From 19252293b6f311e3a280441f83e7ec1589711b77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 108/872] python-blinker: rebuild for Python 3.8.

---
 srcpkgs/python-blinker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blinker/template b/srcpkgs/python-blinker/template
index e34a4a9721a..b6d1d63d19a 100644
--- a/srcpkgs/python-blinker/template
+++ b/srcpkgs/python-blinker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blinker'
 pkgname=python-blinker
 version=1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="blinker-${version}"
 build_style=python-module

From 7cd7b832b55b68ab081454f2b86c254476bd5132 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 109/872] python-bluez: rebuild for Python 3.8.

---
 srcpkgs/python-bluez/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bluez/template b/srcpkgs/python-bluez/template
index 1112352e8ab..4734e47038d 100644
--- a/srcpkgs/python-bluez/template
+++ b/srcpkgs/python-bluez/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bluez'
 pkgname=python-bluez
 version=0.22
-revision=4
+revision=5
 wrksrc="pybluez-${version}"
 build_style=python-module
 pycompile_module="bluetooth"

From 47f9a18cc42f2afe1e8f31696b6928e35b8105c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 110/872] python3-boltons: rebuild for Python 3.8.

---
 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 84a991feef4..1083eb98c51 100644
--- a/srcpkgs/python3-boltons/template
+++ b/srcpkgs/python3-boltons/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-boltons'
 pkgname=python3-boltons
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boltons-${version}"
 build_style=python3-module

From 05f9cb79aa092e2ddeede56d09676742c60cb788 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 111/872] python-boto: rebuild for Python 3.8.

---
 srcpkgs/python-boto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-boto/template b/srcpkgs/python-boto/template
index 40bd3d888b9..684c00feee0 100644
--- a/srcpkgs/python-boto/template
+++ b/srcpkgs/python-boto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-boto'
 pkgname=python-boto
 version=2.49.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boto-${version}"
 build_style=python-module

From ad258b30e35aadb84fd8cd6395bb3d382b429ce9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 112/872] python-botocore: rebuild for Python 3.8.

---
 srcpkgs/python-botocore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-botocore/template b/srcpkgs/python-botocore/template
index ae1a4c17964..0610007f36e 100644
--- a/srcpkgs/python-botocore/template
+++ b/srcpkgs/python-botocore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-botocore'
 pkgname=python-botocore
 version=1.12.243
-revision=1
+revision=2
 archs=noarch
 wrksrc="botocore-${version}"
 build_style=python-module

From 5bc87295c4d5b8af514da116d9b83154488da331 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 113/872] python-bottle: rebuild for Python 3.8.

---
 srcpkgs/python-bottle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bottle/template b/srcpkgs/python-bottle/template
index 8e3a2ad5ad7..0ffc8adfec7 100644
--- a/srcpkgs/python-bottle/template
+++ b/srcpkgs/python-bottle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bottle'
 pkgname=python-bottle
 version=0.12.17
-revision=1
+revision=2
 archs=noarch
 wrksrc="bottle-${version}"
 build_style=python-module

From 86d7964c563357cfa4aec17ced1fefb9e2c974d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 114/872] brltty: rebuild for Python 3.8.

---
 srcpkgs/brltty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/brltty/template b/srcpkgs/brltty/template
index 33f3354a219..a838cd62d55 100644
--- a/srcpkgs/brltty/template
+++ b/srcpkgs/brltty/template
@@ -1,7 +1,7 @@
 # Template file for 'brltty'
 pkgname=brltty
 version=6.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-gpm --with-screen-driver=lx,sc
  --with-tables-directory=/usr/share/brltty PYTHON=/usr/bin/python3"

From 59305e4244220895606aef8a8016d356cee63dff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 115/872] python-bsddb3: rebuild for Python 3.8.

---
 srcpkgs/python-bsddb3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bsddb3/template b/srcpkgs/python-bsddb3/template
index f719a3f9560..1df37cc0e71 100644
--- a/srcpkgs/python-bsddb3/template
+++ b/srcpkgs/python-bsddb3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bsddb3'
 pkgname=python-bsddb3
 version=6.2.6
-revision=2
+revision=3
 wrksrc="bsddb3-${version}"
 build_style=python-module
 make_build_args="--berkeley-db=${XBPS_CROSS_BASE}/usr"

From 8e91ab0e55145cdc83aae10c6f0277d467cb5057 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 116/872] python-cached-property: rebuild for Python 3.8.

---
 srcpkgs/python-cached-property/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cached-property/template b/srcpkgs/python-cached-property/template
index ca2f8536260..16c89346565 100644
--- a/srcpkgs/python-cached-property/template
+++ b/srcpkgs/python-cached-property/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cached-property'
 pkgname=python-cached-property
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cached-property-${version}"
 build_style=python-module

From 3047633291296a9279b5c2a9c0ff04a0cea875f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 117/872] python-cachetools: rebuild for Python 3.8.

---
 srcpkgs/python-cachetools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cachetools/template b/srcpkgs/python-cachetools/template
index ee3ed3a4c94..0f2fdcaed32 100644
--- a/srcpkgs/python-cachetools/template
+++ b/srcpkgs/python-cachetools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cachetools'
 pkgname=python-cachetools
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cachetools-${version}"
 build_style=python-module

From 52e0110b2dc8419583a18babfa62796ef6410ac7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 118/872] python3-cairo: rebuild for Python 3.8.

---
 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 cdde1b83d20..ac158237dd2 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.18.1
-revision=1
+revision=2
 wrksrc="pycairo-${version}"
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From d8f9c3f93f495874237c23477fb548be8b2c0da2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 119/872] python-cairocffi: rebuild for Python 3.8.

---
 srcpkgs/python-cairocffi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cairocffi/template b/srcpkgs/python-cairocffi/template
index baa61334a2a..c057739b03d 100644
--- a/srcpkgs/python-cairocffi/template
+++ b/srcpkgs/python-cairocffi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cairocffi'
 pkgname=python-cairocffi
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cairocffi-${version}"
 build_style=python-module

From bc01f22fb9a5d16bae1b724b675fc57b1f732baa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 120/872] python3-canonicaljson: rebuild for Python 3.8.

---
 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 abc8e95820d..1cbe15f14ae 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.1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="canonicaljson-${version}"
 build_style=python3-module

From e4cba931e3e55f565bc084f8171dea2a8baa9aaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 121/872] python3-casttube: rebuild for Python 3.8.

---
 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 ccd95f3f31c..9e5544b0101 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=1
+revision=2
 archs=noarch
 wrksrc="casttube-${version}"
 build_style=python3-module

From 255661e350728911e6dc85db4bd8a0a0f059b561 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 122/872] python-cffi: rebuild for Python 3.8.

---
 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 27ae03879ac..8501b202bf2 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.12.3
-revision=1
+revision=2
 wrksrc="cffi-${version}"
 build_style=python-module
 pycompile_module="cffi"

From 1b85c0971a1d2d810331d3392d4ecedf140eeb47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 123/872] python3-changelogs: rebuild for Python 3.8.

---
 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 5c2a4889959..d9a7784cf3b 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.14.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="changelogs-${version}"
 build_style=python3-module

From 38e9561402e4ea4c3c4b27c8c747e6b710aec2fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 124/872] python-chardet: rebuild for Python 3.8.

---
 srcpkgs/python-chardet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chardet/template b/srcpkgs/python-chardet/template
index 685d3ab767f..bd502bbbddf 100644
--- a/srcpkgs/python-chardet/template
+++ b/srcpkgs/python-chardet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chardet'
 pkgname=python-chardet
 version=3.0.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="chardet-${version}"
 build_style=python-module

From de1193127ae80857e0f21f1d0499748b6ccafa40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 125/872] python3-cheetah3: rebuild for Python 3.8.

---
 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 40dfee6e322..b2149b2bc22 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.4
-revision=1
+revision=2
 wrksrc="Cheetah3-${version}"
 build_style=python3-module
 pycompile_module="Cheetah"

From 654378c7da0932e5e48085409868c2639efb5294 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 126/872] python3-chess: rebuild for Python 3.8.

---
 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 54b397517cf..e87dab6ca02 100644
--- a/srcpkgs/python3-chess/template
+++ b/srcpkgs/python3-chess/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chess'
 pkgname=python3-chess
 version=0.27.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-chess-${version}"
 build_style=python3-module

From 10db1a1daa9e65a8a20ebc6e20f512884e23f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 127/872] python3-chromecast: rebuild for Python 3.8.

---
 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 16df7502633..cfa41c5dfb5 100644
--- a/srcpkgs/python3-chromecast/template
+++ b/srcpkgs/python3-chromecast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chromecast'
 pkgname=python3-chromecast
 version=4.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychromecast-${version}"
 build_style=python3-module

From 9ff3e7dae7d0ebe28421538f18f150ecd58104e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 128/872] python-chroot: rebuild for Python 3.8.

---
 srcpkgs/python-chroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chroot/template b/srcpkgs/python-chroot/template
index 36853e9f2c0..7faa0f4cce9 100644
--- a/srcpkgs/python-chroot/template
+++ b/srcpkgs/python-chroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chroot'
 pkgname=python-chroot
 version=0.9.18
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychroot-${version}"
 build_style=python-module

From 8d2b57d7f0075beb9134ebd5f7e517ef8a7f20a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 129/872] python3-cli-ui: rebuild for Python 3.8.

---
 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 8303d44eed2..15a9bd32fce 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.9.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-cli-ui-${version}"
 build_style=python3-module

From ecf175e67cdb7bd1e27d29cc47a7e945a6660996 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 130/872] python3-cli_helpers: rebuild for Python 3.8.

---
 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 74b4abf2200..87b284e3cb5 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=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cli_helpers-${version}"
 build_style=python3-module

From aa87c50665110997328e9b80b9b6ba62c47f18bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 131/872] python-click: rebuild for Python 3.8.

---
 srcpkgs/python-click/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click/template b/srcpkgs/python-click/template
index 217e617e73e..4014cb66a83 100644
--- a/srcpkgs/python-click/template
+++ b/srcpkgs/python-click/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click'
 pkgname=python-click
 version=7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Click-${version}"
 build_style="python-module"

From cac08babb361a709a7b7a93c7a825b4682273115 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 132/872] python-click-log: rebuild for Python 3.8.

---
 srcpkgs/python-click-log/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-log/template b/srcpkgs/python-click-log/template
index 37b53f04af0..b57a7a74b4a 100644
--- a/srcpkgs/python-click-log/template
+++ b/srcpkgs/python-click-log/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-log'
 pkgname=python-click-log
 version=0.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-log-${version}"
 build_style="python-module"

From 5a0f06ded0599ac889d808c93865db1723b2ed95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 133/872] python3-click-plugins: rebuild for Python 3.8.

---
 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 cee484018d1..0ef6ce6b248 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=1
+revision=2
 archs=noarch
 wrksrc="click-plugins-${version}"
 build_style=python3-module

From cf104fe4106995307daeb70eb8d34554c238b5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 134/872] python-click-threading: rebuild for Python 3.8.

---
 srcpkgs/python-click-threading/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-threading/template b/srcpkgs/python-click-threading/template
index 76125224992..49b4a4a9aae 100644
--- a/srcpkgs/python-click-threading/template
+++ b/srcpkgs/python-click-threading/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-threading'
 pkgname=python-click-threading
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-threading-${version}"
 build_style="python-module"

From 4bcf653af73bc8e5a6492eee92e5d2826a779d38 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 135/872] python3-cmdln: rebuild for Python 3.8.

---
 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 f00c9a63908..2b7e21f3980 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=1
+revision=2
 archs=noarch
 wrksrc="cmdln-${version}"
 build_style=python3-module

From 52e9257d3be602d0748918c1440a3eae0b6baa51 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 136/872] python-codespell: rebuild for Python 3.8.

---
 srcpkgs/python-codespell/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-codespell/template b/srcpkgs/python-codespell/template
index 92134285a58..211626f33d7 100644
--- a/srcpkgs/python-codespell/template
+++ b/srcpkgs/python-codespell/template
@@ -1,7 +1,7 @@
 # Template file for 'python-codespell'
 pkgname=python-codespell
 version=1.14.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="codespell-${version}"
 build_style=python-module

From 65299f402e3d3a2991e33defee28d85043e0b40f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 137/872] python-colorama: rebuild for Python 3.8.

---
 srcpkgs/python-colorama/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-colorama/template b/srcpkgs/python-colorama/template
index 98ea0d3be78..09562385243 100644
--- a/srcpkgs/python-colorama/template
+++ b/srcpkgs/python-colorama/template
@@ -1,7 +1,7 @@
 # Template file for 'python-colorama'
 pkgname=python-colorama
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="colorama-${version}"
 build_style=python-module

From ec6a8fb7b9e3330e2d7f3fbe139c7a3742013bd8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 138/872] python3-colorclass: rebuild for Python 3.8.

---
 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 4a80f379206..ed8d2d2ea02 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=1
+revision=2
 archs=noarch
 wrksrc="colorclass-${version}"
 build_style=python3-module

From 4b254d3097fa01cb641af24639c6b9a230345954 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 139/872] python-configobj: rebuild for Python 3.8.

---
 srcpkgs/python-configobj/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-configobj/template b/srcpkgs/python-configobj/template
index 95f30d4631a..a8cb5d5d34e 100644
--- a/srcpkgs/python-configobj/template
+++ b/srcpkgs/python-configobj/template
@@ -1,7 +1,7 @@
 # Template file for 'python-configobj'
 pkgname=python-configobj
 version=5.0.6
-revision=5
+revision=6
 archs=noarch
 wrksrc="configobj-${version}"
 build_style=python-module

From 530a6b84ff81274981ed1aa92a2ff85a78dc9775 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 140/872] python-constantly: rebuild for Python 3.8.

---
 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 b5530908ac4..9160aec9edd 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=2
+revision=3
 archs=noarch
 wrksrc="constantly-${version}"
 build_style=python-module

From d2c0a853f5cd6634cca304f7db191fcb1d9a6afa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 141/872] python-construct: rebuild for Python 3.8.

---
 srcpkgs/python-construct/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-construct/template b/srcpkgs/python-construct/template
index 2afe435652c..d6d0b8010e2 100644
--- a/srcpkgs/python-construct/template
+++ b/srcpkgs/python-construct/template
@@ -1,7 +1,7 @@
 # Template file for 'python-construct'
 pkgname=python-construct
 version=2.9.45
-revision=2
+revision=3
 archs=noarch
 wrksrc="construct-${version}"
 build_style=python-module

From 9ba618aa4a4db0062002fcb1ad540bee9b702ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 142/872] python-coverage: rebuild for Python 3.8.

---
 srcpkgs/python-coverage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-coverage/template b/srcpkgs/python-coverage/template
index df6064b9879..1c44b5e18fb 100644
--- a/srcpkgs/python-coverage/template
+++ b/srcpkgs/python-coverage/template
@@ -1,7 +1,7 @@
 # Template file for 'python-coverage'
 pkgname=python-coverage
 version=4.5.4
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="coverage"

From 9adf4621a4960d8a331e1b723971cb326ad2429f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 143/872] python-cram: rebuild for Python 3.8.

---
 srcpkgs/python-cram/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cram/template b/srcpkgs/python-cram/template
index f1fce32149f..8c5d65fe260 100644
--- a/srcpkgs/python-cram/template
+++ b/srcpkgs/python-cram/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cram'
 pkgname=python-cram
 version=0.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="cram-${version}"
 build_style=python-module

From 47ef41a3931be5da08ee8d6fb0ff35b5e1a95d62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 144/872] python3-crcmod: rebuild for Python 3.8.

---
 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 4cd433d2420..9311dedc8ac 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=1
+revision=2
 wrksrc="crcmod-${version}"
 build_style=python3-module
 pycompile_module="crcmod"

From 8b8750f3919e1f23aa6930671f096a365391611a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 145/872] python-cryptography: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography/template b/srcpkgs/python-cryptography/template
index ce3184715dd..39e63d22f7d 100644
--- a/srcpkgs/python-cryptography/template
+++ b/srcpkgs/python-cryptography/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography'
 pkgname=python-cryptography
 version=2.7
-revision=1
+revision=2
 wrksrc="cryptography-${version}"
 build_style=python-module
 pycompile_module="cryptography"

From 676ecf3ea008b8ccabdd3d2798c449a061abb9dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 146/872] python-cryptography_vectors: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography_vectors/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography_vectors/template b/srcpkgs/python-cryptography_vectors/template
index d52e5f5e47c..8fba3a0ce27 100644
--- a/srcpkgs/python-cryptography_vectors/template
+++ b/srcpkgs/python-cryptography_vectors/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography_vectors'
 pkgname=python-cryptography_vectors
 version=2.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="cryptography_vectors-${version}"
 build_style=python-module

From b78a89dedf3b15094ae7febdff460a2cbf547464 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 147/872] python-css-parser: rebuild for Python 3.8.

---
 srcpkgs/python-css-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-css-parser/template b/srcpkgs/python-css-parser/template
index e90b103e4a0..f6d2d0cbf8b 100644
--- a/srcpkgs/python-css-parser/template
+++ b/srcpkgs/python-css-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-css-parser'
 pkgname=python-css-parser
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="css-parser-${version}"
 build_style=python-module

From 036f8b87a68dcb362c7037f58abcffb763571601 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 148/872] python-cssselect: rebuild for Python 3.8.

---
 srcpkgs/python-cssselect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssselect/template b/srcpkgs/python-cssselect/template
index d7dbcebc0ea..c7f43ebca9f 100644
--- a/srcpkgs/python-cssselect/template
+++ b/srcpkgs/python-cssselect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssselect'
 pkgname=python-cssselect
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d4b52974f5f9e8a86060d3dfccc041298c1d666 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 149/872] python-cssutils: rebuild for Python 3.8.

---
 srcpkgs/python-cssutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssutils/template b/srcpkgs/python-cssutils/template
index 648c4754c22..5f08903b9a0 100644
--- a/srcpkgs/python-cssutils/template
+++ b/srcpkgs/python-cssutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssutils'
 pkgname=python-cssutils
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="cssutils-${version}"
 build_style=python-module

From bfb2835290dfefddc0781e2b463d410bf121efa5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 150/872] python-cups: rebuild for Python 3.8.

---
 srcpkgs/python-cups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cups/template b/srcpkgs/python-cups/template
index 2c26e9ef3d0..62c384c9db8 100644
--- a/srcpkgs/python-cups/template
+++ b/srcpkgs/python-cups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cups'
 pkgname=python-cups
 version=1.9.74
-revision=2
+revision=3
 wrksrc="pycups-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 32daac09af71a30483e9985028381670b4ab6245 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 151/872] system-config-printer: rebuild for Python 3.8.

---
 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 e8f8eca46ae..04fe74ff808 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.11
-revision=5
+revision=6
 build_style=gnu-configure
 configure_args="--with-udev-rules"
 make_build_args="udevhelperdir=/usr/lib/udev"

From 582813b2756ce1d1d397113a752b81189680c001 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 152/872] python-curl: rebuild for Python 3.8.

---
 srcpkgs/python-curl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curl/template b/srcpkgs/python-curl/template
index f1f9051d53a..685c63ce68a 100644
--- a/srcpkgs/python-curl/template
+++ b/srcpkgs/python-curl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curl'
 pkgname=python-curl
 version=7.43.0.3
-revision=4
+revision=5
 wrksrc="pycurl-${version}"
 build_style=python-module
 pycompile_module="curl"

From 0eda981910702bfaac2a8af2041fe2c534c13618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 153/872] python-curtsies: rebuild for Python 3.8.

---
 srcpkgs/python-curtsies/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curtsies/template b/srcpkgs/python-curtsies/template
index 158d1c5ce76..6126a11e9b4 100644
--- a/srcpkgs/python-curtsies/template
+++ b/srcpkgs/python-curtsies/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curtsies'
 pkgname=python-curtsies
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="curtsies-${version}"
 build_style=python-module

From 7db16365daaa931d774701441c01b698be457cb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 154/872] python-cycler: rebuild for Python 3.8.

---
 srcpkgs/python-cycler/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cycler/template b/srcpkgs/python-cycler/template
index ee6c985b288..0b53c195dae 100644
--- a/srcpkgs/python-cycler/template
+++ b/srcpkgs/python-cycler/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cycler'
 pkgname=python-cycler
 version=0.10.0
-revision=4
+revision=5
 archs=noarch
 wrksrc="cycler-${version}"
 build_style=python-module

From 2c59e6772ee31b855fe302a27b9b9544cd865e6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 155/872] python-daemonize: rebuild for Python 3.8.

---
 srcpkgs/python-daemonize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-daemonize/template b/srcpkgs/python-daemonize/template
index 699a156b26b..efaf163e573 100644
--- a/srcpkgs/python-daemonize/template
+++ b/srcpkgs/python-daemonize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-daemonize'
 pkgname=python-daemonize
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="daemonize-${version}"
 build_style=python-module

From 84cc63fece0763c8b6920e56e78508551e0fc727 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 156/872] python-dateutil: rebuild for Python 3.8.

---
 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 d9c0f73c883..7675b8f9447 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.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="dateutil"

From 9a19173186ae564f17114f530ac8077484d43c82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 157/872] python-dbus: rebuild for Python 3.8.

---
 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 869c10b2969..3845f6ce34a 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.12
-revision=1
+revision=2
 wrksrc="dbus-python-${version}"
 build_style=gnu-configure
 pycompile_module="dbus"

From 06a9a5b6965485369e669181d99123d7beabf81f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 158/872] python3-dbusmock: rebuild for Python 3.8.

---
 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 67e0ed68078..4abd47843cc 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.18.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-dbusmock-${version}"
 build_style=python3-module

From 694c57d69d63d9f59bef9d31d20a0b16dc73a2a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 159/872] python-decorator: rebuild for Python 3.8.

---
 srcpkgs/python-decorator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-decorator/template b/srcpkgs/python-decorator/template
index 14090c537c9..7f14fef90a6 100644
--- a/srcpkgs/python-decorator/template
+++ b/srcpkgs/python-decorator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-decorator'
 pkgname=python-decorator
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="decorator-${version}"
 build_style=python-module

From 3bd4b100eb970e16e93bbbed8ce2ac91a36e3df5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 160/872] python-defusedxml: rebuild for Python 3.8.

---
 srcpkgs/python-defusedxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-defusedxml/template b/srcpkgs/python-defusedxml/template
index afd62e94414..96234eb18c7 100644
--- a/srcpkgs/python-defusedxml/template
+++ b/srcpkgs/python-defusedxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-defusedxml'
 pkgname=python-defusedxml
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="defusedxml-${version}"
 build_style=python-module

From 442acbe58cd337c55658908f41ec5b6221ca8fcb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 161/872] python3-discid: rebuild for Python 3.8.

---
 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 be5eae1f07f..cc4bc27a1aa 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=1
+revision=2
 archs=noarch
 wrksrc="discid-${version}"
 build_style=python3-module

From 31db2101853fbced7b2655f48906b9054bce07ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 162/872] python-discogs_client: rebuild for Python 3.8.

---
 srcpkgs/python-discogs_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-discogs_client/template b/srcpkgs/python-discogs_client/template
index a27cc50f93c..5af18eda664 100644
--- a/srcpkgs/python-discogs_client/template
+++ b/srcpkgs/python-discogs_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-discogs_client'
 pkgname=python-discogs_client
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="discogs-client-${version}"
 build_style=python-module

From 0aba2b232148b832c27ebd8703c24f42c5018f15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 163/872] python3-distro: rebuild for Python 3.8.

---
 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 86e94572ed7..f1205ace151 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.4.0
-revision=1
+revision=2
 wrksrc=distro-${version}
 build_style=python3-module
 pycompile_module="distro"

From 990a3bd7cef20bd21b781caccd807a7cadf6a0fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 164/872] python-distutils-extra: rebuild for Python 3.8.

---
 srcpkgs/python-distutils-extra/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-distutils-extra/template b/srcpkgs/python-distutils-extra/template
index 9e5728ba08f..46bb0cccc31 100644
--- a/srcpkgs/python-distutils-extra/template
+++ b/srcpkgs/python-distutils-extra/template
@@ -1,7 +1,7 @@
 # Template file for 'python-distutils-extra'
 pkgname=python-distutils-extra
 version=2.39
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 pycompile_module="DistUtilsExtra"

From cc8c6f7c74e5660152cb87b99e7d7b88b5c3d077 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 165/872] python-dkimpy: rebuild for Python 3.8.

---
 srcpkgs/python-dkimpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dkimpy/template b/srcpkgs/python-dkimpy/template
index 4ca5ad386b0..1da26c5de5d 100644
--- a/srcpkgs/python-dkimpy/template
+++ b/srcpkgs/python-dkimpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dkimpy'
 pkgname=python-dkimpy
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="dkimpy-${version}"
 build_style=python-module

From 8560c730ee4396275d04f5b5649fc0b2a1a8819e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 166/872] python-dnspython: rebuild for Python 3.8.

---
 srcpkgs/python-dnspython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dnspython/template b/srcpkgs/python-dnspython/template
index 15d4d7a8a73..66d237e89ee 100644
--- a/srcpkgs/python-dnspython/template
+++ b/srcpkgs/python-dnspython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dnspython'
 pkgname=python-dnspython
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dnspython-${version}"
 build_style=python-module

From c723160d02d838faad8761fcdaa9cfaed2df756f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 167/872] python-docker: rebuild for Python 3.8.

---
 srcpkgs/python-docker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker/template b/srcpkgs/python-docker/template
index b3f8cb2076b..83265bbb606 100644
--- a/srcpkgs/python-docker/template
+++ b/srcpkgs/python-docker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker'
 pkgname=python-docker
 version=3.7.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-${version}"
 build_style=python-module

From 116d9592b10bcde7a5b2f78ed23e0c2e382394da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 168/872] python-docker-pycreds: rebuild for Python 3.8.

---
 srcpkgs/python-docker-pycreds/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker-pycreds/template b/srcpkgs/python-docker-pycreds/template
index c478ded9de6..2224be0d21d 100644
--- a/srcpkgs/python-docker-pycreds/template
+++ b/srcpkgs/python-docker-pycreds/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker-pycreds'
 pkgname=python-docker-pycreds
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-pycreds-${version}"
 build_style=python-module

From 339d2fc160bc67c015b61704b1ade0e15a729050 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 169/872] python-dockerpty: rebuild for Python 3.8.

---
 srcpkgs/python-dockerpty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dockerpty/template b/srcpkgs/python-dockerpty/template
index 78ba5bc3b09..4a0b3a7a33f 100644
--- a/srcpkgs/python-dockerpty/template
+++ b/srcpkgs/python-dockerpty/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dockerpty'
 pkgname=python-dockerpty
 version=0.4.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="dockerpty-${version}"
 build_style=python-module

From 9925e97e6e19313f6899b14640957a47c12c3c6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 170/872] python-docopt: rebuild for Python 3.8.

---
 srcpkgs/python-docopt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docopt/template b/srcpkgs/python-docopt/template
index 4b8661ed2e1..48e5f86c1e0 100644
--- a/srcpkgs/python-docopt/template
+++ b/srcpkgs/python-docopt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docopt'
 pkgname=python-docopt
 version=0.6.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="docopt-${version}"
 build_style=python-module

From b274270fc5a58198a59400d9c8eb825546cf64ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 171/872] python-docutils: rebuild for Python 3.8.

---
 srcpkgs/python-docutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docutils/template b/srcpkgs/python-docutils/template
index 62f080f416a..8fd21a7450b 100644
--- a/srcpkgs/python-docutils/template
+++ b/srcpkgs/python-docutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docutils'
 pkgname=python-docutils
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docutils-${version}"
 build_style=python-module

From 6db8d0a9fb5d7b1cd339f5102d86a29dda19f348 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 172/872] python-dogpile.cache: rebuild for Python 3.8.

---
 srcpkgs/python-dogpile.cache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index f6e106fb4e8..894c6f695bf 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dogpile.cache'
 pkgname=python-dogpile.cache
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dogpile.cache-${version}"
 build_style=python-module

From e603b2f5de239ac8c6e7b8322f560ed5249fe887 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 173/872] python-dominate: rebuild for Python 3.8.

---
 srcpkgs/python-dominate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dominate/template b/srcpkgs/python-dominate/template
index 14ec659bac8..6d6f2caa323 100644
--- a/srcpkgs/python-dominate/template
+++ b/srcpkgs/python-dominate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dominate'
 pkgname=python-dominate
 version=2.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dominate-${version}"
 build_style=python-module

From 2bd7c3e739559614758b25140591fa8bb623a73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 174/872] python-dulwich: rebuild for Python 3.8.

---
 srcpkgs/python-dulwich/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dulwich/template b/srcpkgs/python-dulwich/template
index 0bddda65069..7b8ac45011e 100644
--- a/srcpkgs/python-dulwich/template
+++ b/srcpkgs/python-dulwich/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dulwich'
 pkgname=python-dulwich
 version=0.19.13
-revision=1
+revision=2
 wrksrc="dulwich-${version}"
 build_style=python-module
 pycompile_module="dulwich"

From 9d0b79dad0746da7669be20a38791a7eff4a42dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 175/872] python3-easygui: rebuild for Python 3.8.

---
 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 c1ec4767ae9..a9a2f66d865 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="easygui-${version}"
 build_style=python3-module

From eaa3ee113511523004b2d78a2119becc627b2dcf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 176/872] python-ecdsa: rebuild for Python 3.8.

---
 srcpkgs/python-ecdsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ecdsa/template b/srcpkgs/python-ecdsa/template
index 5e0b217fa73..e6e7d58cd10 100644
--- a/srcpkgs/python-ecdsa/template
+++ b/srcpkgs/python-ecdsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ecdsa'
 pkgname=python-ecdsa
 version=0.13.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 5d7cb5b032b5814415f5b21646b09bceda211fd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 177/872] python-editor: rebuild for Python 3.8.

---
 srcpkgs/python-editor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-editor/template b/srcpkgs/python-editor/template
index 4b86afa6924..3594e407205 100644
--- a/srcpkgs/python-editor/template
+++ b/srcpkgs/python-editor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-editor'
 pkgname=python-editor
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="editor"

From 19c3e09b30ed3cf9c6ffee8cee652d54c672a599 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 178/872] python-efl: rebuild for Python 3.8.

---
 srcpkgs/python-efl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-efl/template b/srcpkgs/python-efl/template
index a49e7d35847..2096f6916da 100644
--- a/srcpkgs/python-efl/template
+++ b/srcpkgs/python-efl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-efl'
 pkgname=python-efl
 version=1.22.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="efl"
 hostmakedepends="pkg-config python-devel python3-devel"

From 82198e93fcca38bb8b5f4f754bcbd6fd7baf59da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 179/872] python3-eliot: rebuild for Python 3.8.

---
 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 15b05dd7331..8453789b688 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="eliot-${version}"
 build_style=python3-module

From bcfe6b0d9db4104d00cb6a16d6012f2258515d59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 180/872] python-empy: rebuild for Python 3.8.

---
 srcpkgs/python-empy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-empy/template b/srcpkgs/python-empy/template
index 97476250cf2..4668a9cc814 100644
--- a/srcpkgs/python-empy/template
+++ b/srcpkgs/python-empy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-empy'
 pkgname=python-empy
 version=3.3.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="empy-${version}"
 build_style=python-module

From 6a91fa7210bd83ced5963d69be69166cd7ad72e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 181/872] python-enchant: rebuild for Python 3.8.

---
 srcpkgs/python-enchant/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enchant/template b/srcpkgs/python-enchant/template
index a443877d821..e499957b47e 100644
--- a/srcpkgs/python-enchant/template
+++ b/srcpkgs/python-enchant/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enchant'
 pkgname=python-enchant
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python-module

From 6ec52886dc67e49d1440bf8d0d1fe8fab07df30a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 182/872] python-entrypoints: rebuild for Python 3.8.

---
 srcpkgs/python-entrypoints/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-entrypoints/template b/srcpkgs/python-entrypoints/template
index ebefb2d04dc..6070650f35d 100644
--- a/srcpkgs/python-entrypoints/template
+++ b/srcpkgs/python-entrypoints/template
@@ -1,7 +1,7 @@
 # Template file for 'python-entrypoints'
 pkgname=python-entrypoints
 version=0.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="entrypoints-${version}"
 build_style=python-module

From 612a78254c1f46db87994e41646495e245a3facf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 183/872] python-envdir: rebuild for Python 3.8.

---
 srcpkgs/python-envdir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-envdir/template b/srcpkgs/python-envdir/template
index 622fcee6b34..b8cccad60ac 100644
--- a/srcpkgs/python-envdir/template
+++ b/srcpkgs/python-envdir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-envdir'
 pkgname=python-envdir
 version=1.0.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 50f8488d9ea7d659590f7d09f42dd5b94e19152c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 184/872] python-enzyme: rebuild for Python 3.8.

---
 srcpkgs/python-enzyme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enzyme/template b/srcpkgs/python-enzyme/template
index 637c858195b..f28f40b0319 100644
--- a/srcpkgs/python-enzyme/template
+++ b/srcpkgs/python-enzyme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enzyme'
 pkgname=python-enzyme
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="enzyme-${version}"
 build_style=python-module

From 0927e611429f29f17290f1e10cf2c0b872d1feb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 185/872] python3-esprima: rebuild for Python 3.8.

---
 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 c3a564123de..aec8930a6bf 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=1
+revision=2
 wrksrc="esprima-${version}"
 build_style=python3-module
 pycompile_module="esprima"

From d10708d4fcebbbc7dccf424ca1a596b43ae8df59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 186/872] python-evdev: rebuild for Python 3.8.

---
 srcpkgs/python-evdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-evdev/template b/srcpkgs/python-evdev/template
index 3c1a5253513..cff10211628 100644
--- a/srcpkgs/python-evdev/template
+++ b/srcpkgs/python-evdev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-evdev'
 pkgname=python-evdev
 version=1.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="evdev"
 hostmakedepends="python-setuptools python3-setuptools"

From d4f74f5bad705da704a6773a834e3939d7700c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 187/872] python-ewmh: rebuild for Python 3.8.

---
 srcpkgs/python-ewmh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ewmh/template b/srcpkgs/python-ewmh/template
index be6d04316b0..a96490fb56d 100644
--- a/srcpkgs/python-ewmh/template
+++ b/srcpkgs/python-ewmh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ewmh'
 pkgname=python-ewmh
 version=0.1.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From afbcc47e23517b6d56ec485dc40f389c1af31701 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 188/872] python-exifread: rebuild for Python 3.8.

---
 srcpkgs/python-exifread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-exifread/template b/srcpkgs/python-exifread/template
index 853f885fff8..834aa7730ee 100644
--- a/srcpkgs/python-exifread/template
+++ b/srcpkgs/python-exifread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-exifread'
 pkgname=python-exifread
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="exif-py-${version}"
 build_style="python-module"

From d05fad06fa4306ef7f685f49a366fcc27e64a40c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 189/872] python-fasteners: rebuild for Python 3.8.

---
 srcpkgs/python-fasteners/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fasteners/template b/srcpkgs/python-fasteners/template
index 34ca4e0e9db..24d2ec0611f 100644
--- a/srcpkgs/python-fasteners/template
+++ b/srcpkgs/python-fasteners/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fasteners'
 pkgname=python-fasteners
 version=0.15
-revision=1
+revision=2
 archs=noarch
 wrksrc="fasteners-${version}"
 build_style=python-module

From 8c663b7a9f12675a94dea8c33eddeededd3c56bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 190/872] python-feedgenerator: rebuild for Python 3.8.

---
 srcpkgs/python-feedgenerator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedgenerator/template b/srcpkgs/python-feedgenerator/template
index 3e5abc4f433..bcffb6728aa 100644
--- a/srcpkgs/python-feedgenerator/template
+++ b/srcpkgs/python-feedgenerator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedgenerator'
 pkgname=python-feedgenerator
 version=1.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="feedgenerator-${version}"
 build_style=python-module

From ab9e5bccaa31f32d93549c21e47bc12c4e5ac181 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 191/872] python-feedparser: rebuild for Python 3.8.

---
 srcpkgs/python-feedparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedparser/template b/srcpkgs/python-feedparser/template
index c5c5e8783eb..94f0a58ec88 100644
--- a/srcpkgs/python-feedparser/template
+++ b/srcpkgs/python-feedparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedparser'
 pkgname=python-feedparser
 version=5.2.1
-revision=5
+revision=6
 archs=noarch
 wrksrc="feedparser-${version}"
 build_style=python-module

From 157719696415e499518e188417324c7d97359d36 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 192/872] python3-fido2: rebuild for Python 3.8.

---
 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 fafb4d61d56..fb737d68d20 100644
--- a/srcpkgs/python3-fido2/template
+++ b/srcpkgs/python3-fido2/template
@@ -2,7 +2,7 @@
 pkgname=python3-fido2
 _pkgname=fido2
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From cbab3fd166f79dc7d2659a802e1953c697f94a95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 193/872] python3-filelock: rebuild for Python 3.8.

---
 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 8e0bc8f1070..9105ff8689d 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.0.12
-revision=1
+revision=2
 wrksrc="filelock-${version}"
 build_style=python3-module
 pycompile_module="filelock.py"

From df9deb02719807bdcb49f7c41040cd8748efd6fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 194/872] python-filetype: rebuild for Python 3.8.

---
 srcpkgs/python-filetype/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-filetype/template b/srcpkgs/python-filetype/template
index 37896cff9d8..10b974794b5 100644
--- a/srcpkgs/python-filetype/template
+++ b/srcpkgs/python-filetype/template
@@ -1,7 +1,7 @@
 # Template file for 'python-filetype'
 pkgname=python-filetype
 version=1.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="filetype-${version}"
 build_style=python-module

From b71ed5528581f9bba57653ff2acb45edf6dcbd81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 195/872] python3-fishnet: rebuild for Python 3.8.

---
 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 9dde60cbb6c..6280ae8e966 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=1
+revision=2
 archs=noarch
 wrksrc="fishnet-${version}"
 build_style=python3-module

From 25bc415f7d96b99e98c97ab0abad6a531786f9e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 196/872] python-flaky: rebuild for Python 3.8.

---
 srcpkgs/python-flaky/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-flaky/template b/srcpkgs/python-flaky/template
index d5211c9cb60..e8e681421f7 100644
--- a/srcpkgs/python-flaky/template
+++ b/srcpkgs/python-flaky/template
@@ -1,7 +1,7 @@
 # Template file for 'python-flaky'
 pkgname=python-flaky
 version=3.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 6dfa18d602ed8d6414a040466c4e0eef4db1d0d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 197/872] python3-flexmock: rebuild for Python 3.8.

---
 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 0663ed5122d..8a7c9a2894d 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.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="flexmock-${version}"
 build_style=python3-module

From 8c90b86b18b06e68260df59166a7228f7af5e5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 198/872] python3-fonttools: rebuild for Python 3.8.

---
 srcpkgs/python3-fonttools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-fonttools/template b/srcpkgs/python3-fonttools/template
index 15cf36585fb..ccd4b66c5d8 100644
--- a/srcpkgs/python3-fonttools/template
+++ b/srcpkgs/python3-fonttools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-fonttools'
 pkgname=python3-fonttools
 version=4.0.2
-revision=1
+revision=2
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 pycompile_module="fonttools"

From 423903ec28541ea1cd89f97400529121dca5e065 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 199/872] python3-frozendict: rebuild for Python 3.8.

---
 srcpkgs/python3-frozendict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-frozendict/template b/srcpkgs/python3-frozendict/template
index d3b4dc91602..739000a887c 100644
--- a/srcpkgs/python3-frozendict/template
+++ b/srcpkgs/python3-frozendict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-frozendict'
 pkgname=python3-frozendict
 version=1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="frozendict-${version}"
 build_style=python3-module

From 0929953d079922e685a9b46372630d69c2c6776d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 200/872] python-fuse: rebuild for Python 3.8.

---
 srcpkgs/python-fuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fuse/template b/srcpkgs/python-fuse/template
index 6449cc36a02..2e99e9866d3 100644
--- a/srcpkgs/python-fuse/template
+++ b/srcpkgs/python-fuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fuse'
 pkgname=python-fuse
 version=0.3.1
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="fuseparts fuse.py"
 hostmakedepends="pkg-config python-setuptools python3-setuptools"

From 505bca67544c8cca26d3f7675eb746bb98abf44e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 201/872] python-future: rebuild for Python 3.8.

---
 srcpkgs/python-future/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-future/template b/srcpkgs/python-future/template
index 1844be2efbc..6cd53908823 100644
--- a/srcpkgs/python-future/template
+++ b/srcpkgs/python-future/template
@@ -1,7 +1,7 @@
 # Template file for 'python-future'
 pkgname=python-future
 version=0.17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="future-${version}"
 build_style=python-module

From 4b595c01c8dcf28a72cf0a96960609ab9788b6ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 202/872] python3-geojson: rebuild for Python 3.8.

---
 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 6bcd0c3092e..90e7d5a0e60 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=1
+revision=2
 archs=noarch
 wrksrc="geojson-${version}"
 build_style=python3-module

From 5e44d64f54a2983f4d5fefba49ef65a6803bd024 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 203/872] python-gevent: rebuild for Python 3.8.

---
 srcpkgs/python-gevent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gevent/template b/srcpkgs/python-gevent/template
index 2bbabee00fc..35c76146d56 100644
--- a/srcpkgs/python-gevent/template
+++ b/srcpkgs/python-gevent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gevent'
 pkgname=python-gevent
 version=1.4.0
-revision=1
+revision=2
 wrksrc="gevent-${version}"
 build_style=python-module
 pycompile_module="gevent"

From 5fed10c6460512a1f1391f079ed47645f9df532e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 204/872] python3-gitchangelog: rebuild for Python 3.8.

---
 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 ed381e07d78..cc1945f2623 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=1
+revision=2
 archs=noarch
 wrksrc="gitchangelog-${version}"
 build_style=python3-module

From b52557ed164619919a05cdf8fae5e77e5b4f53db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 205/872] python-gitdb: rebuild for Python 3.8.

---
 srcpkgs/python-gitdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitdb/template b/srcpkgs/python-gitdb/template
index d9e624b9f53..253ddaa07bd 100644
--- a/srcpkgs/python-gitdb/template
+++ b/srcpkgs/python-gitdb/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitdb'
 pkgname=python-gitdb
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="gitdb2-${version}"
 build_style=python-module

From 53365dcec4eb25138ea4bb248d57c1b2aa7aa311 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 206/872] python-github3: rebuild for Python 3.8.

---
 srcpkgs/python-github3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-github3/template b/srcpkgs/python-github3/template
index 2cb71368f3d..425fe1b7362 100644
--- a/srcpkgs/python-github3/template
+++ b/srcpkgs/python-github3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-github3'
 pkgname=python-github3
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="github3.py-${version}"
 build_style=python-module

From 2b4c90de9a0cbcbb5902a9407f229864bd81a7f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 207/872] python-gitlab: rebuild for Python 3.8.

---
 srcpkgs/python-gitlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitlab/template b/srcpkgs/python-gitlab/template
index 7db583b54c4..0f71b4c7153 100644
--- a/srcpkgs/python-gitlab/template
+++ b/srcpkgs/python-gitlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitlab'
 pkgname=python-gitlab
 version=1.12.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gitlab"

From 51613301779bb891e87daba6b634dca18654d29f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 208/872] python-gmpy2: rebuild for Python 3.8.

---
 srcpkgs/python-gmpy2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gmpy2/template b/srcpkgs/python-gmpy2/template
index c41a9f4595b..74e9b583288 100644
--- a/srcpkgs/python-gmpy2/template
+++ b/srcpkgs/python-gmpy2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gmpy2'
 pkgname=python-gmpy2
 version=2.0.8
-revision=5
+revision=6
 wrksrc="gmpy2-${version}"
 build_style=python-module
 hostmakedepends="unzip python-setuptools python3-setuptools

From a6f4b9ed74b787b741e6297520186bd60de2b46e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 209/872] python-gntp: rebuild for Python 3.8.

---
 srcpkgs/python-gntp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gntp/template b/srcpkgs/python-gntp/template
index 14bd36518f8..7b3bb5a7bb7 100644
--- a/srcpkgs/python-gntp/template
+++ b/srcpkgs/python-gntp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gntp'
 pkgname=python-gntp
 version=1.0.3
-revision=4
+revision=5
 archs=noarch
 wrksrc="gntp-${version}"
 build_style=python-module

From 0730dc20e341ef5247184f85a47f2d1200750698 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 210/872] python-gnupg: rebuild for Python 3.8.

---
 srcpkgs/python-gnupg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gnupg/template b/srcpkgs/python-gnupg/template
index ae6f49c7e27..24c0943d1e4 100644
--- a/srcpkgs/python-gnupg/template
+++ b/srcpkgs/python-gnupg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gnupg'
 pkgname=python-gnupg
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gnupg.py"

From 2c78f38b921da1d4ac2ddf5c200a378cadd75590 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 211/872] python3-gobject: rebuild for Python 3.8.

---
 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 242d33ed3ac..8713ddf5334 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.32.2
-revision=1
+revision=2
 wrksrc="pygobject-${version}"
 build_style=meson
 build_helper="gir"

From 15ed888e45d37128f9852cfc492a14182186f1a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 212/872] python-gogs-client: rebuild for Python 3.8.

---
 srcpkgs/python-gogs-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gogs-client/template b/srcpkgs/python-gogs-client/template
index e8189bc8805..027135d430c 100644
--- a/srcpkgs/python-gogs-client/template
+++ b/srcpkgs/python-gogs-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gogs-client'
 pkgname=python-gogs-client
 version=1.0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="gogs_client-${version}"
 build_style=python-module

From 1ce661eb8f15d8e6d56a3f1e197897c332fa224e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 213/872] python-google-api-python-client: rebuild for Python
 3.8.

---
 srcpkgs/python-google-api-python-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-api-python-client/template b/srcpkgs/python-google-api-python-client/template
index 273cd0722b8..69c2d4e96eb 100644
--- a/srcpkgs/python-google-api-python-client/template
+++ b/srcpkgs/python-google-api-python-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-api-python-client'
 pkgname=python-google-api-python-client
 version=1.7.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From abc55893b0e34778f73646713ec111220a9cafbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 214/872] python-google-auth: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth/template b/srcpkgs/python-google-auth/template
index 708fe08325a..1de6800e3d2 100644
--- a/srcpkgs/python-google-auth/template
+++ b/srcpkgs/python-google-auth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth'
 pkgname=python-google-auth
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 345385c7c36d4b9e58aad80d36b1cd93575ecd95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 215/872] python-google-auth-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth-httplib2/template b/srcpkgs/python-google-auth-httplib2/template
index 9a7fd093ce5..9e43bc92292 100644
--- a/srcpkgs/python-google-auth-httplib2/template
+++ b/srcpkgs/python-google-auth-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth-httplib2'
 pkgname=python-google-auth-httplib2
 version=0.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 659bb740f4ecc98b01dc400608f6b524416a0b86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 216/872] python-gpg: rebuild for Python 3.8.

---
 srcpkgs/python-gpg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gpg/template b/srcpkgs/python-gpg/template
index 4ef85846b42..a17a0324af8 100644
--- a/srcpkgs/python-gpg/template
+++ b/srcpkgs/python-gpg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gpg'
 pkgname=python-gpg
 version=1.10.0
-revision=3
+revision=4
 wrksrc="gpg-${version}"
 build_style=python-module
 hostmakedepends="swig gpgme-devel python-devel python3-devel"

From 873dc5b9b60d819c83e9d76fd366d7e22b1e3bc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 217/872] python-grako: rebuild for Python 3.8.

---
 srcpkgs/python-grako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-grako/template b/srcpkgs/python-grako/template
index cc02973b31e..2b401732735 100644
--- a/srcpkgs/python-grako/template
+++ b/srcpkgs/python-grako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-grako'
 pkgname=python-grako
 version=3.99.9
-revision=3
+revision=4
 wrksrc="neogeny-${pkgname/python-/}-275d3c4fe4ac"
 build_style=python-module
 pycompile_module="grako"

From d47059d2656db0b58c65856428cabac0432d40b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 218/872] python-graphviz: rebuild for Python 3.8.

---
 srcpkgs/python-graphviz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-graphviz/template b/srcpkgs/python-graphviz/template
index 521f2e81213..e3d487a2db7 100644
--- a/srcpkgs/python-graphviz/template
+++ b/srcpkgs/python-graphviz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-graphviz'
 pkgname=python-graphviz
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 604137947acf2b7cd302f3f32e778c96a0f521f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 219/872] python-greenlet: rebuild for Python 3.8.

---
 srcpkgs/python-greenlet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-greenlet/template b/srcpkgs/python-greenlet/template
index d1e63ac7adb..b540e9a286b 100644
--- a/srcpkgs/python-greenlet/template
+++ b/srcpkgs/python-greenlet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-greenlet'
 pkgname=python-greenlet
 version=0.4.15
-revision=2
+revision=3
 wrksrc="greenlet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From c75b3ed338515fef098deb3e5b0d7a6afb7e4027 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 220/872] python-guessit: rebuild for Python 3.8.

---
 srcpkgs/python-guessit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-guessit/template b/srcpkgs/python-guessit/template
index 5029048a041..a962f14522f 100644
--- a/srcpkgs/python-guessit/template
+++ b/srcpkgs/python-guessit/template
@@ -1,7 +1,7 @@
 # Template file for 'python-guessit'
 pkgname=python-guessit
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="guessit-${version}"
 build_style=python-module

From be7acc08bc4f5ffb222fcebc23a391553273ece1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 221/872] python-h11: rebuild for Python 3.8.

---
 srcpkgs/python-h11/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-h11/template b/srcpkgs/python-h11/template
index 88040dfadec..b2e007533a7 100644
--- a/srcpkgs/python-h11/template
+++ b/srcpkgs/python-h11/template
@@ -1,7 +1,7 @@
 # Template file for 'python-h11'
 pkgname=python-h11
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=h11-${version}
 build_style=python-module

From bdf55bd416f8bc2ed44be6c4c54d162c18a8ea97 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 222/872] python-habanero: rebuild for Python 3.8.

---
 srcpkgs/python-habanero/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-habanero/template b/srcpkgs/python-habanero/template
index 86d66befc3d..a914f21ecb7 100644
--- a/srcpkgs/python-habanero/template
+++ b/srcpkgs/python-habanero/template
@@ -1,7 +1,7 @@
 # Template file for 'python-habanero'
 pkgname=python-habanero
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="habanero-${version}"
 build_style=python-module

From 9c07301e6c8b8cbc8282f2c49eee7ea5572650fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 223/872] python3-hawkauthlib: rebuild for Python 3.8.

---
 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 fd7f1405790..1456fa7d814 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=2
+revision=3
 archs=noarch
 wrksrc="hawkauthlib-${version}"
 build_style=python3-module

From 66941ef99dc3f45dea432a38889d9aedcbc58e8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 224/872] python-hiredis: rebuild for Python 3.8.

---
 srcpkgs/python-hiredis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hiredis/template b/srcpkgs/python-hiredis/template
index 23694ae92d7..82a97d5eaf3 100644
--- a/srcpkgs/python-hiredis/template
+++ b/srcpkgs/python-hiredis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hiredis'
 pkgname=python-hiredis
 version=0.2.0
-revision=4
+revision=5
 wrksrc="hiredis-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 335237d6c8ffbf9d850fddc0047cb4ea28057efd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 225/872] python3-hkdf: rebuild for Python 3.8.

---
 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 fabc91ee974..0faaf05b5fe 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=1
+revision=2
 archs=noarch
 wrksrc="hkdf-${version}"
 build_style=python3-module

From fa28e1e2a5b4f298ee9762f0f595a5b1b16db0c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 226/872] python-hoedown: rebuild for Python 3.8.

---
 srcpkgs/python-hoedown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hoedown/template b/srcpkgs/python-hoedown/template
index a964fbbb709..4b82aba9afc 100644
--- a/srcpkgs/python-hoedown/template
+++ b/srcpkgs/python-hoedown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hoedown'
 pkgname=python-hoedown
 version=0.3.0
-revision=2
+revision=3
 wrksrc="hoedown-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 1b9ab7e23ce8f84563cdaac18cbe35d6b5b377eb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 227/872] python-hpack: rebuild for Python 3.8.

---
 srcpkgs/python-hpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hpack/template b/srcpkgs/python-hpack/template
index c69e91daa0e..ffbac313103 100644
--- a/srcpkgs/python-hpack/template
+++ b/srcpkgs/python-hpack/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hpack'
 pkgname=python-hpack
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hpack-${version}
 build_style=python-module

From b6095882129bc28d1a3eec0f996353011126ed10 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 228/872] python3-html2text: rebuild for Python 3.8.

---
 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 006f2a127ad..c74e236a053 100644
--- a/srcpkgs/python3-html2text/template
+++ b/srcpkgs/python3-html2text/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-html2text'
 pkgname=python3-html2text
 version=2019.9.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module

From 78741dc5f018f23c93acabc2cdd16c97d5e08012 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 229/872] python-html5-parser: rebuild for Python 3.8.

---
 srcpkgs/python-html5-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5-parser/template b/srcpkgs/python-html5-parser/template
index 130c5037e57..41bbd0ea157 100644
--- a/srcpkgs/python-html5-parser/template
+++ b/srcpkgs/python-html5-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5-parser'
 pkgname=python-html5-parser
 version=0.4.8
-revision=1
+revision=2
 wrksrc="html5-parser-${version}"
 build_style=python-module
 pycompile_module="html5_parser"

From f69efbb44a9aa15f6b7468ff70a20786ec1a04d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 230/872] python-html5lib: rebuild for Python 3.8.

---
 srcpkgs/python-html5lib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5lib/template b/srcpkgs/python-html5lib/template
index 81e683f7bcf..2565de64fd2 100644
--- a/srcpkgs/python-html5lib/template
+++ b/srcpkgs/python-html5lib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5lib'
 pkgname=python-html5lib
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="html5lib-${version}"
 build_style=python-module

From 6bd979521876c876eea2022ebe023cdbb30777c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 231/872] python-httmock: rebuild for Python 3.8.

---
 srcpkgs/python-httmock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httmock/template b/srcpkgs/python-httmock/template
index 61a60126936..e798b4fc1b3 100644
--- a/srcpkgs/python-httmock/template
+++ b/srcpkgs/python-httmock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httmock'
 pkgname=python-httmock
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="httmock-${version}"
 build_style=python-module

From 7f5b2e5c5738ca5824c255406195ff59f30f2c80 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 232/872] python-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httplib2/template b/srcpkgs/python-httplib2/template
index edcb6abf0c1..fe76a729328 100644
--- a/srcpkgs/python-httplib2/template
+++ b/srcpkgs/python-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httplib2'
 pkgname=python-httplib2
 version=0.13.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="httplib2-${version}"
 build_style=python-module

From 9bd4d3d3c99054f61ceb650933dcd9c5740d5ff0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 233/872] python3-humanize: rebuild for Python 3.8.

---
 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 c82c20fb0f2..d1011fb92e9 100644
--- a/srcpkgs/python3-humanize/template
+++ b/srcpkgs/python3-humanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-humanize'
 pkgname=python3-humanize
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="humanize-${version}"
 build_style=python3-module

From ead6f9504cd4015bc13944d58d676ef457b0fb34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 234/872] python-hyper-h2: rebuild for Python 3.8.

---
 srcpkgs/python-hyper-h2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyper-h2/template b/srcpkgs/python-hyper-h2/template
index 5dcf7ed1c4d..9e5eee3b69b 100644
--- a/srcpkgs/python-hyper-h2/template
+++ b/srcpkgs/python-hyper-h2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyper-h2'
 pkgname=python-hyper-h2
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyper-h2-${version}"
 build_style=python-module

From 8ac54f95c067c3f715c23a58d7f2b6d0683988cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 235/872] python-hyperframe: rebuild for Python 3.8.

---
 srcpkgs/python-hyperframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyperframe/template b/srcpkgs/python-hyperframe/template
index e4cea346f7e..6b544c2061c 100644
--- a/srcpkgs/python-hyperframe/template
+++ b/srcpkgs/python-hyperframe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperframe'
 pkgname=python-hyperframe
 version=5.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hyperframe-${version}
 build_style=python-module

From cb929edb0d026e58d2d6c7e6f9baeee9fedf523e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 236/872] python-hyperlink: rebuild for Python 3.8.

---
 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 1cc7aa0670a..945bf72ee59 100644
--- a/srcpkgs/python-hyperlink/template
+++ b/srcpkgs/python-hyperlink/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperlink'
 pkgname=python-hyperlink
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyperlink-${version}"
 build_style=python-module

From da7a9015ccf93b07d390988b03b1403702cfa14a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 237/872] python-hypothesis: rebuild for Python 3.8.

---
 srcpkgs/python-hypothesis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hypothesis/template b/srcpkgs/python-hypothesis/template
index f3eb931e410..de55593fc02 100644
--- a/srcpkgs/python-hypothesis/template
+++ b/srcpkgs/python-hypothesis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hypothesis'
 pkgname=python-hypothesis
 version=4.38.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="hypothesis-hypothesis-python-${version}"
 build_wrksrc=hypothesis-python

From f091030376534d6a6f7c625b82a8405350e7cdcd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 238/872] python-icalendar: rebuild for Python 3.8.

---
 srcpkgs/python-icalendar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-icalendar/template b/srcpkgs/python-icalendar/template
index b2129648ea6..be45f2d608d 100644
--- a/srcpkgs/python-icalendar/template
+++ b/srcpkgs/python-icalendar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-icalendar'
 pkgname=python-icalendar
 version=4.0.3
-revision=1
+revision=2
 wrksrc="icalendar-${version}"
 archs=noarch
 build_style=python-module

From 474626af886f96ef30849e5aca015775f7edfb8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 239/872] icdiff: rebuild for Python 3.8.

---
 srcpkgs/icdiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template
index 31cfc3e2354..396448b86f4 100644
--- a/srcpkgs/icdiff/template
+++ b/srcpkgs/icdiff/template
@@ -1,7 +1,7 @@
 # Template file for 'icdiff'
 pkgname=icdiff
 version=1.9.5
-revision=1
+revision=2
 wrksrc="${pkgname}-release-${version}"
 archs=noarch
 build_style=python-module

From 21e5ba4fadd590c9e0dd7afde206429c99c46c56 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 240/872] python-idna: rebuild for Python 3.8.

---
 srcpkgs/python-idna/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-idna/template b/srcpkgs/python-idna/template
index 4c6baefd41b..446a04da7d7 100644
--- a/srcpkgs/python-idna/template
+++ b/srcpkgs/python-idna/template
@@ -1,7 +1,7 @@
 # Template file for 'python-idna'
 pkgname=python-idna
 version=2.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-${version}"
 build_style=python-module

From a012eff0de75e8caab0be24964731b749fe6ad8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 241/872] python3-idna-ssl: rebuild for Python 3.8.

---
 srcpkgs/python3-idna-ssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-idna-ssl/template b/srcpkgs/python3-idna-ssl/template
index df953f4d0d9..0608fb7278c 100644
--- a/srcpkgs/python3-idna-ssl/template
+++ b/srcpkgs/python3-idna-ssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-idna-ssl'
 pkgname=python3-idna-ssl
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-ssl-${version}"
 build_style=python3-module

From ac112b7dfc3aadb93225736a4504f7965af29838 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 242/872] python3-ifaddr: rebuild for Python 3.8.

---
 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 37bc2bbaf73..683d76662a3 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ifaddr-${version}"
 build_style=python3-module

From 32d0218ef7a7a721759e4c421d70255f49b3cfd0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 243/872] python-imagesize: rebuild for Python 3.8.

---
 srcpkgs/python-imagesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-imagesize/template b/srcpkgs/python-imagesize/template
index ee231eb9f24..f64c86812b5 100644
--- a/srcpkgs/python-imagesize/template
+++ b/srcpkgs/python-imagesize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-imagesize'
 pkgname=python-imagesize
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="imagesize-${version}"
 build_style=python-module

From f0bf351c50949a7348409d8c132926c401dabf43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 244/872] python3-importlib_metadata: rebuild for Python 3.8.

---
 srcpkgs/python3-importlib_metadata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-importlib_metadata/template b/srcpkgs/python3-importlib_metadata/template
index 9acbe968e10..f88e9d9b780 100644
--- a/srcpkgs/python3-importlib_metadata/template
+++ b/srcpkgs/python3-importlib_metadata/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-importlib_metadata'
 pkgname=python3-importlib_metadata
 version=0.23
-revision=1
+revision=2
 archs=noarch
 wrksrc="importlib_metadata-${version}"
 build_style=python3-module

From 73cc1c05e8e0ccf9063a33dd203d70df2ab135ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 245/872] python-incremental: rebuild for Python 3.8.

---
 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 a1c07042365..70477e26866 100644
--- a/srcpkgs/python-incremental/template
+++ b/srcpkgs/python-incremental/template
@@ -1,7 +1,7 @@
 # Template file for 'python-incremental'
 pkgname=python-incremental
 version=17.5.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="incremental-${version}"
 build_style=python-module

From 82a10b837fff5c5ce2f37ede93dad161025a109c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 246/872] python-inotify: rebuild for Python 3.8.

---
 srcpkgs/python-inotify/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-inotify/template b/srcpkgs/python-inotify/template
index f8e26bcc415..64e48fd9330 100644
--- a/srcpkgs/python-inotify/template
+++ b/srcpkgs/python-inotify/template
@@ -1,7 +1,7 @@
 # Template file for 'python-inotify'
 pkgname=python-inotify
 version=0.9.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="pyinotify-${version}"
 build_style=python-module

From 70f558982c4846e9de5243694f048c7014c7089a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 247/872] python-iptools: rebuild for Python 3.8.

---
 srcpkgs/python-iptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iptools/template b/srcpkgs/python-iptools/template
index 599a85ccdba..3c53013fb9d 100644
--- a/srcpkgs/python-iptools/template
+++ b/srcpkgs/python-iptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iptools'
 pkgname=python-iptools
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9962727fd608ce59af5a55c73c8b4c3d0c17fe71 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 248/872] python3-ipython: rebuild for Python 3.8.

---
 srcpkgs/python3-ipython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template
index 63242f382db..2c08bad1e41 100644
--- a/srcpkgs/python3-ipython/template
+++ b/srcpkgs/python3-ipython/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-ipython'
 pkgname=python3-ipython
 version=7.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipython-${version}"
 build_style=python3-module

From ecafa2b5530001ac56b03e639dff4ae00027d1ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 249/872] python-ipython_genutils: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_genutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_genutils/template b/srcpkgs/python-ipython_genutils/template
index 9af9604ca00..d46a3b0b716 100644
--- a/srcpkgs/python-ipython_genutils/template
+++ b/srcpkgs/python-ipython_genutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_genutils'
 pkgname=python-ipython_genutils
 version=0.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="ipython_genutils-${version}"
 build_style=python-module

From 1349d0a55b00bc5b30629934ad23ae1ed8839d98 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 250/872] python-ipython_ipykernel: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_ipykernel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_ipykernel/template b/srcpkgs/python-ipython_ipykernel/template
index 5ddc333798a..ca17b58c006 100644
--- a/srcpkgs/python-ipython_ipykernel/template
+++ b/srcpkgs/python-ipython_ipykernel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_ipykernel'
 pkgname=python-ipython_ipykernel
 version=4.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipykernel-${version}"
 build_style=python-module

From 1b146320a422b57ba1db41491ccff040d9ee719d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 251/872] python3-irc: rebuild for Python 3.8.

---
 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 eea3a629128..714c11dc943 100644
--- a/srcpkgs/python3-irc/template
+++ b/srcpkgs/python3-irc/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-irc'
 pkgname=python3-irc
 version=17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="irc-${version}"
 build_style=python3-module

From e04c4f250fda964ab555eb6b636f701d995009e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 252/872] python-isbnlib: rebuild for Python 3.8.

---
 srcpkgs/python-isbnlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isbnlib/template b/srcpkgs/python-isbnlib/template
index 3e2f66c6b66..1cc46a060d6 100644
--- a/srcpkgs/python-isbnlib/template
+++ b/srcpkgs/python-isbnlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isbnlib'
 pkgname=python-isbnlib
 version=3.9.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="isbnlib-${version}"
 build_style=python-module

From 2debe6131c52d94acd065961f9ea9ae22176a34c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 253/872] python-iso-8601: rebuild for Python 3.8.

---
 srcpkgs/python-iso-8601/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iso-8601/template b/srcpkgs/python-iso-8601/template
index a483e55b0bd..a841866d439 100644
--- a/srcpkgs/python-iso-8601/template
+++ b/srcpkgs/python-iso-8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iso-8601'
 pkgname=python-iso-8601
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="iso-8601-${version}"
 build_style=python-module

From 8b4be7b5324ac1347d55cc4f4e9eaa552465beec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 254/872] python-isodate: rebuild for Python 3.8.

---
 srcpkgs/python-isodate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isodate/template b/srcpkgs/python-isodate/template
index b2a7eb46591..74e4e813e64 100644
--- a/srcpkgs/python-isodate/template
+++ b/srcpkgs/python-isodate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isodate'
 pkgname=python-isodate
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="isodate-${version}"
 build_style=python-module

From a9c9e144908d37411616dd357e9fdc7575aaa8c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 255/872] python-isort: rebuild for Python 3.8.

---
 srcpkgs/python-isort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isort/template b/srcpkgs/python-isort/template
index df7fcfbf2d2..cd8e43b69ea 100644
--- a/srcpkgs/python-isort/template
+++ b/srcpkgs/python-isort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isort'
 pkgname=python-isort
 version=4.3.21
-revision=1
+revision=2
 archs=noarch
 wrksrc="isort-${version}"
 build_style=python-module

From a81f38d5db390cc4ae2c6be89747bebd3f1f15dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 256/872] python-itsdangerous: rebuild for Python 3.8.

---
 srcpkgs/python-itsdangerous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-itsdangerous/template b/srcpkgs/python-itsdangerous/template
index d1d9234df88..6e6fe5dcb2b 100644
--- a/srcpkgs/python-itsdangerous/template
+++ b/srcpkgs/python-itsdangerous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-itsdangerous'
 pkgname=python-itsdangerous
 version=0.24
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 2d842da30a2a65a2405487fdd5929ca2a0555251 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 257/872] python-iwlib: rebuild for Python 3.8.

---
 srcpkgs/python-iwlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iwlib/template b/srcpkgs/python-iwlib/template
index 2c58d4c8d29..2f4149b4e92 100644
--- a/srcpkgs/python-iwlib/template
+++ b/srcpkgs/python-iwlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iwlib'
 pkgname=python-iwlib
 version=1.6.2
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="iwlib"

From c09cc84b06cf4332a02b0a826494a74c81409175 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 258/872] python-jedi: rebuild for Python 3.8.

---
 srcpkgs/python-jedi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jedi/template b/srcpkgs/python-jedi/template
index 136e6adbea4..a994f0e2861 100644
--- a/srcpkgs/python-jedi/template
+++ b/srcpkgs/python-jedi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jedi'
 pkgname=python-jedi
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 _parsover=0.5.0
 wrksrc="jedi-${version}"

From 235b9031c126ebf53355a5ef0c337423c0df1d95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 259/872] python3-jeepney: rebuild for Python 3.8.

---
 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 2ae308a6fc6..9c5c007aa17 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.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="jeepney-${version}"
 build_style=python3-module

From 4868c0871bc763937dd6b8573e91ee86064e0595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 260/872] python3-jellyfish: rebuild for Python 3.8.

---
 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 dec74539e3f..5d0a614c397 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.7.2
-revision=1
+revision=2
 wrksrc="jellyfish-${version}"
 build_style=python3-module
 pycompile_module="jellyfish"

From a9c225f19782a27d8e5e28a508ea0acc39991390 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 261/872] python-jmespath: rebuild for Python 3.8.

---
 srcpkgs/python-jmespath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jmespath/template b/srcpkgs/python-jmespath/template
index 47508a3a0c2..220f1a33c07 100644
--- a/srcpkgs/python-jmespath/template
+++ b/srcpkgs/python-jmespath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jmespath'
 pkgname=python-jmespath
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jmespath.py-${version}"
 build_style=python-module

From 30e8e2e1619bdf45652db8c6ecdd0e0a4fc90d8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 262/872] python3-josepy: rebuild for Python 3.8.

---
 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 6d6e4547d38..903bd7028ed 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="josepy-${version}"
 build_style=python3-module

From c06d36cf857257f3cf63a7e677498487d37168d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 263/872] python-jsonpointer: rebuild for Python 3.8.

---
 srcpkgs/python-jsonpointer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonpointer/template b/srcpkgs/python-jsonpointer/template
index ed865fbfcba..fd103d123aa 100644
--- a/srcpkgs/python-jsonpointer/template
+++ b/srcpkgs/python-jsonpointer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonpointer'
 pkgname=python-jsonpointer
 version=2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonpointer-${version}"
 build_style=python-module

From be483d0bbf53a22e23a3c2db3d77dc61bff17915 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 264/872] python-jsonrpclib: rebuild for Python 3.8.

---
 srcpkgs/python-jsonrpclib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonrpclib/template b/srcpkgs/python-jsonrpclib/template
index 7253607fe57..a245168a824 100644
--- a/srcpkgs/python-jsonrpclib/template
+++ b/srcpkgs/python-jsonrpclib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonrpclib'
 pkgname=python-jsonrpclib
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonrpclib-pelix-${version}"
 build_style=python-module

From 15ad75adf989474229acc1fdac0c5d5887528bd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 265/872] python-jsonschema: rebuild for Python 3.8.

---
 srcpkgs/python-jsonschema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonschema/template b/srcpkgs/python-jsonschema/template
index 63c30ce6863..326b5609d36 100644
--- a/srcpkgs/python-jsonschema/template
+++ b/srcpkgs/python-jsonschema/template
@@ -2,7 +2,7 @@
 pkgname=python-jsonschema
 reverts="3.0.2_1"
 version=2.6.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="jsonschema-${version}"
 build_style=python-module

From 8bf3797435c040a1682d5e3e4c6c41f650d82b34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 266/872] python-jupyter_client: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_client/template b/srcpkgs/python-jupyter_client/template
index ab5cd0c5b3c..6365dd9e175 100644
--- a/srcpkgs/python-jupyter_client/template
+++ b/srcpkgs/python-jupyter_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_client'
 pkgname=python-jupyter_client
 version=5.2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_client-${version}"
 build_style=python-module

From e732ed651c399cb8d7e96a618444e815bf86ce4b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 267/872] python3-jupyter_console: rebuild for Python 3.8.

---
 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 25b2eda4c2f..3837e5b3bbf 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_console-${version}"
 build_style=python3-module

From b264bc5200c6942b1507777e0bc169838cb6a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 268/872] python-jupyter_core: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_core/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_core/template b/srcpkgs/python-jupyter_core/template
index fcce4e0fe0b..f1629208e86 100644
--- a/srcpkgs/python-jupyter_core/template
+++ b/srcpkgs/python-jupyter_core/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_core'
 pkgname=python-jupyter_core
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_core-${version}"
 build_style=python-module

From 54845c515258535f8793ff37241d0daad10fcddc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 269/872] python-jupyter_ipywidgets: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_ipywidgets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_ipywidgets/template b/srcpkgs/python-jupyter_ipywidgets/template
index 3d511a25152..44570cf390a 100644
--- a/srcpkgs/python-jupyter_ipywidgets/template
+++ b/srcpkgs/python-jupyter_ipywidgets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_ipywidgets'
 pkgname=python-jupyter_ipywidgets
 version=7.4.2
-revision=1
+revision=2
 archs=noarch
 _widgetsnbextver=3.4.0
 wrksrc="ipywidgets-${version}"

From da9dc8f246174d7b5fed1a61f1b4bb127c2bc9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 270/872] python-jupyter_nbconvert: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbconvert/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbconvert/template b/srcpkgs/python-jupyter_nbconvert/template
index 57ac5cce23f..e6cdad7d21c 100644
--- a/srcpkgs/python-jupyter_nbconvert/template
+++ b/srcpkgs/python-jupyter_nbconvert/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbconvert'
 pkgname=python-jupyter_nbconvert
 version=5.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="nbconvert-${version}"
 build_style=python-module

From 8e126f65404eaa5a5b69bca1aa41b4be58abe4b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 271/872] python-jupyter_nbformat: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbformat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbformat/template b/srcpkgs/python-jupyter_nbformat/template
index 11098fd3f90..e2addc8866f 100644
--- a/srcpkgs/python-jupyter_nbformat/template
+++ b/srcpkgs/python-jupyter_nbformat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbformat'
 pkgname=python-jupyter_nbformat
 version=4.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="nbformat-${version}"
 build_style=python-module

From 3d7a11f09a2f159b9e42c935154654a47117f3a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 272/872] python-jupyter_notebook: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_notebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_notebook/template b/srcpkgs/python-jupyter_notebook/template
index c3f478c1fb4..4f6de0f642d 100644
--- a/srcpkgs/python-jupyter_notebook/template
+++ b/srcpkgs/python-jupyter_notebook/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_notebook'
 pkgname=python-jupyter_notebook
 version=5.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="notebook-${version}"
 build_style=python-module

From eab8a5bd67b168048f40a3d2fe199e073715a1b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 273/872] python-jupyter_qtconsole: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_qtconsole/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_qtconsole/template b/srcpkgs/python-jupyter_qtconsole/template
index f8f85534bbd..ea7f89a62af 100644
--- a/srcpkgs/python-jupyter_qtconsole/template
+++ b/srcpkgs/python-jupyter_qtconsole/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_qtconsole'
 pkgname=python-jupyter_qtconsole
 version=4.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="qtconsole-${version}"
 build_style=python-module

From 96c7c1f6f484f9a33a17b0213142b8a97a7c69e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 274/872] python-jupyter_widgetsnbextension: rebuild for Python
 3.8.

---
 srcpkgs/python-jupyter_widgetsnbextension/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_widgetsnbextension/template b/srcpkgs/python-jupyter_widgetsnbextension/template
index dacd88ccb4f..05e9c0d00a3 100644
--- a/srcpkgs/python-jupyter_widgetsnbextension/template
+++ b/srcpkgs/python-jupyter_widgetsnbextension/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_widgetsnbextension'
 pkgname=python-jupyter_widgetsnbextension
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="widgetsnbextension-${version}"
 build_style=python-module

From 6175c117f039e76b8fff45d549f50360a92742b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 275/872] python-kaptan: rebuild for Python 3.8.

---
 srcpkgs/python-kaptan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kaptan/template b/srcpkgs/python-kaptan/template
index 649eeec8568..6668b240008 100644
--- a/srcpkgs/python-kaptan/template
+++ b/srcpkgs/python-kaptan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kaptan'
 pkgname=python-kaptan
 version=0.5.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="kaptan-${version}"
 build_style=python-module

From 6668dcf37c32ef8390c8f45e6cd206d8478b963b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 276/872] python-keepalive: rebuild for Python 3.8.

---
 srcpkgs/python-keepalive/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keepalive/template b/srcpkgs/python-keepalive/template
index deb95a07236..50e1d7e6e78 100644
--- a/srcpkgs/python-keepalive/template
+++ b/srcpkgs/python-keepalive/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keepalive'
 pkgname=python-keepalive
 version=0.5
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9e9d4a781427bc1296f59529a4d83b4a1271c5e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 277/872] python-keyring: rebuild for Python 3.8.

---
 srcpkgs/python-keyring/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyring/template b/srcpkgs/python-keyring/template
index df1c21ee1be..2a87160b04d 100644
--- a/srcpkgs/python-keyring/template
+++ b/srcpkgs/python-keyring/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyring'
 pkgname=python-keyring
 version=18.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyring-${version}"
 build_style=python-module

From 8fea0f10f3e8aebfe92a9d090368b1cda777a405 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 278/872] python3-keyrings-alt: rebuild for Python 3.8.

---
 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 d5820535e54..ed09cfac4a7 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=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyrings.alt-${version}"
 build_style=python3-module

From 271539dc3ed1e21733c374ff971770403194a1d1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 279/872] python-keyutils: rebuild for Python 3.8.

---
 srcpkgs/python-keyutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyutils/template b/srcpkgs/python-keyutils/template
index d56ada0e30e..a72819e963a 100644
--- a/srcpkgs/python-keyutils/template
+++ b/srcpkgs/python-keyutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyutils'
 pkgname=python-keyutils
 version=0.6
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="keyutils"
 hostmakedepends="python-setuptools python3-setuptools"

From 0556a11defcdebd2c4319e286451ce3f45f87ebd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 280/872] python-kitchen: rebuild for Python 3.8.

---
 srcpkgs/python-kitchen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kitchen/template b/srcpkgs/python-kitchen/template
index 2bbd68c13c9..68a46986de9 100644
--- a/srcpkgs/python-kitchen/template
+++ b/srcpkgs/python-kitchen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kitchen'
 pkgname=python-kitchen
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="kitchen-${version}"
 build_style=python-module

From fe5070b00515733fcafbeebc62a10ba2029b40db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 281/872] python-kiwisolver: rebuild for Python 3.8.

---
 srcpkgs/python-kiwisolver/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kiwisolver/template b/srcpkgs/python-kiwisolver/template
index 072bd5af038..67f0805aa51 100644
--- a/srcpkgs/python-kiwisolver/template
+++ b/srcpkgs/python-kiwisolver/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kiwisolver'
 pkgname=python-kiwisolver
 version=1.0.1
-revision=2
+revision=3
 wrksrc="kiwisolver-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From d1c550f6959162ec91e7bb39c54ecdd1d5b7c0ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 282/872] python-lazy-object-proxy: rebuild for Python 3.8.

---
 srcpkgs/python-lazy-object-proxy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lazy-object-proxy/template b/srcpkgs/python-lazy-object-proxy/template
index 07efb7b4777..ab2c6dce05c 100644
--- a/srcpkgs/python-lazy-object-proxy/template
+++ b/srcpkgs/python-lazy-object-proxy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lazy-object-proxy'
 pkgname=python-lazy-object-proxy
 version=1.3.1
-revision=3
+revision=4
 wrksrc="lazy-object-proxy-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e5c9a0cf8e6e0714fba4433b9deb1aaf40d43ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 283/872] python-ldap: rebuild for Python 3.8.

---
 srcpkgs/python-ldap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap/template b/srcpkgs/python-ldap/template
index 7770baa8774..e3efc2fc6b3 100644
--- a/srcpkgs/python-ldap/template
+++ b/srcpkgs/python-ldap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap'
 pkgname=python-ldap
 version=3.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="ldap ldapurl.py ldif.py slapdtest"
 hostmakedepends="python-setuptools python3-setuptools"

From dca16bc247cccf1bc7020afca5594d857514100a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 284/872] python-ldap3: rebuild for Python 3.8.

---
 srcpkgs/python-ldap3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap3/template b/srcpkgs/python-ldap3/template
index 676251a85ff..e8e4cade72b 100644
--- a/srcpkgs/python-ldap3/template
+++ b/srcpkgs/python-ldap3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap3'
 pkgname=python-ldap3
 version=2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ldap3-${version}"
 build_style=python-module

From 8f3e1b0bf64fb527d029fec15229e079f326c373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 285/872] python3-libevdev: rebuild for Python 3.8.

---
 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 0a79893726c..f0295cdee9b 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.8
-revision=1
+revision=2
 _githash=1827bebcf789adee8492cbfcc7cf8d56059a42a4
 wrksrc="python-libevdev-${version}-${_githash}"
 build_style=python3-module

From a5b674c4366c36182e29f21b8071faff59006106 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 286/872] libsmbios: rebuild for Python 3.8.

---
 srcpkgs/libsmbios/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsmbios/template b/srcpkgs/libsmbios/template
index 31d8ffda65f..161cb79deb9 100644
--- a/srcpkgs/libsmbios/template
+++ b/srcpkgs/libsmbios/template
@@ -1,7 +1,7 @@
 # Template file for 'libsmbios'
 pkgname=libsmbios
 version=2.4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--sbindir=/usr/bin --disable-static"
 hostmakedepends="automake doxygen gettext-devel help2man libtool pkg-config"

From 7762c8392d1a03ae7a320bdec0b5402b7147d0b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 287/872] python-libtmux: rebuild for Python 3.8.

---
 srcpkgs/python-libtmux/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-libtmux/template b/srcpkgs/python-libtmux/template
index 36fa7ca7ffd..20f43af5f7d 100644
--- a/srcpkgs/python-libtmux/template
+++ b/srcpkgs/python-libtmux/template
@@ -1,7 +1,7 @@
 # Template file for 'python-libtmux'
 pkgname=python-libtmux
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="libtmux-${version}"
 build_style=python-module

From 16a2a1b8ba0ad9f9032d52092294e8a39041bba2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 288/872] python-llfuse: rebuild for Python 3.8.

---
 srcpkgs/python-llfuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-llfuse/template b/srcpkgs/python-llfuse/template
index 203c5e2fd84..b453c67e91d 100644
--- a/srcpkgs/python-llfuse/template
+++ b/srcpkgs/python-llfuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-llfuse'
 pkgname=python-llfuse
 version=1.3.6
-revision=1
+revision=2
 wrksrc="llfuse-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pkg-config"

From ae7f34ffc994fc4606c9209683fae6625f3e781e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 289/872] python-lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lockfile/template b/srcpkgs/python-lockfile/template
index 4c4612ed144..778cecba7e9 100644
--- a/srcpkgs/python-lockfile/template
+++ b/srcpkgs/python-lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lockfile'
 pkgname=python-lockfile
 version=0.12.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="lockfile-${version}"
 build_style=python-module

From 5fd2f78e26b399ed936b12f51886dae3a8d35cb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 290/872] python-logfury: rebuild for Python 3.8.

---
 srcpkgs/python-logfury/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-logfury/template b/srcpkgs/python-logfury/template
index 4b1c435e34a..1b52d2d7fdf 100644
--- a/srcpkgs/python-logfury/template
+++ b/srcpkgs/python-logfury/template
@@ -1,7 +1,7 @@
 # Template file for 'python-logfury'
 pkgname=python-logfury
 version=0.1.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="logfury-${version}"
 build_style=python-module

From 747dc28bedc27e7b5c8738113573012f545333a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 291/872] python-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lxml/template b/srcpkgs/python-lxml/template
index c3aeabfbf1b..1a6a3ac9113 100644
--- a/srcpkgs/python-lxml/template
+++ b/srcpkgs/python-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lxml'
 pkgname=python-lxml
 version=4.4.1
-revision=1
+revision=2
 wrksrc="lxml-lxml-${version}"
 build_style=python-module
 pycompile_module="lxml"

From ebc274c0463316f63fe99e5df0c704e3d324c885 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 292/872] python-lz4: rebuild for Python 3.8.

---
 srcpkgs/python-lz4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lz4/template b/srcpkgs/python-lz4/template
index dab8e8ed542..76a2e800e38 100644
--- a/srcpkgs/python-lz4/template
+++ b/srcpkgs/python-lz4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lz4'
 pkgname=python-lz4
 version=2.1.6
-revision=2
+revision=3
 wrksrc="lz4-${version}"
 build_style=python-module
 pycompile_module="lz4"

From 8eb3f4d6193b25ae716fa2fdfae1f929deb65a91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 293/872] python3-macaroons: rebuild for Python 3.8.

---
 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 d44100c20f2..420f5aff043 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=1
+revision=2
 archs=noarch
 wrksrc="pymacaroons-${version}"
 build_style=python3-module

From 437e300b76670db404728daad9f6224630daaa3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 294/872] python3-macholib: rebuild for Python 3.8.

---
 srcpkgs/python3-macholib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-macholib/template b/srcpkgs/python3-macholib/template
index a2738f57eb0..525b5f7106b 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.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="macholib-${version}"
 build_style=python3-module

From b08f229d26f5b2c915caabe213234afc1e4002e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 295/872] python-magic: rebuild for Python 3.8.

---
 srcpkgs/python-magic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-magic/template b/srcpkgs/python-magic/template
index 98e3c0802ab..5a59efa4808 100644
--- a/srcpkgs/python-magic/template
+++ b/srcpkgs/python-magic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-magic'
 pkgname=python-magic
 version=0.4.15
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="magic.py"

From c597fee1945d8f994f591622074acf3670a81484 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 296/872] python-marisa-trie: rebuild for Python 3.8.

---
 srcpkgs/python-marisa-trie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-marisa-trie/template b/srcpkgs/python-marisa-trie/template
index bb09c933335..5e46b686ace 100644
--- a/srcpkgs/python-marisa-trie/template
+++ b/srcpkgs/python-marisa-trie/template
@@ -1,7 +1,7 @@
 # Template file for 'python-marisa-trie'
 pkgname=python-marisa-trie
 version=0.7.5
-revision=2
+revision=3
 wrksrc="marisa-trie-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 5366314fc7ba3b340ccf5b4658edff33f5ec148a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 297/872] python-markdown2: rebuild for Python 3.8.

---
 srcpkgs/python-markdown2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-markdown2/template b/srcpkgs/python-markdown2/template
index 2d352ba029d..e9068f64202 100644
--- a/srcpkgs/python-markdown2/template
+++ b/srcpkgs/python-markdown2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-markdown2'
 pkgname=python-markdown2
 version=2.3.8
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="markdown2"

From b56d284bcbb50ddece287bde845145e6481e4d39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 298/872] python3-matplotlib: rebuild for Python 3.8.

---
 srcpkgs/python3-matplotlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template
index 857ba17cacf..be02817a4d3 100644
--- a/srcpkgs/python3-matplotlib/template
+++ b/srcpkgs/python3-matplotlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-matplotlib'
 pkgname=python3-matplotlib
 version=3.1.1
-revision=1
+revision=2
 wrksrc="matplotlib-${version}"
 build_style=python3-module
 pycompile_module="matplotlib mpl_toolkits pylab.py"

From 8b3780e8f6f50712735239defc569952763e8894 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 299/872] python-mccabe: rebuild for Python 3.8.

---
 srcpkgs/python-mccabe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mccabe/template b/srcpkgs/python-mccabe/template
index b6a01929540..1e2ed6328b8 100644
--- a/srcpkgs/python-mccabe/template
+++ b/srcpkgs/python-mccabe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mccabe'
 pkgname=python-mccabe
 version=0.6.1
-revision=2
+revision=3
 archs=noarch
 replaces="mccabe>=0"
 wrksrc="mccabe-${version}"

From 954d38992e9a83e3214b79375b895ee1072db4e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 300/872] python-mechanize: rebuild for Python 3.8.

---
 srcpkgs/python-mechanize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mechanize/template b/srcpkgs/python-mechanize/template
index c5b2b5789a7..ca29bbd0d23 100644
--- a/srcpkgs/python-mechanize/template
+++ b/srcpkgs/python-mechanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mechanize'
 pkgname=python-mechanize
 version=0.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="mechanize-${version}"
 build_style=python-module

From e8762f4af80ad5b1cb6a41af3183141ec903485f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 301/872] python3-minidb: rebuild for Python 3.8.

---
 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 50490794600..140964b7a8a 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.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="minidb-${version}"
 build_style=python3-module

From 93febdb59f89cf4939f3684acd832f879fc774d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 302/872] python-miniupnpc: rebuild for Python 3.8.

---
 srcpkgs/python-miniupnpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-miniupnpc/template b/srcpkgs/python-miniupnpc/template
index 500c217c78e..f7892bab073 100644
--- a/srcpkgs/python-miniupnpc/template
+++ b/srcpkgs/python-miniupnpc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-miniupnpc'
 pkgname=python-miniupnpc
 version=2.0.2
-revision=2
+revision=3
 wrksrc="${pkgname#python-}-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ab280bf26207a66e5e3f418768bf3358cc2c76ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 303/872] python-mistune: rebuild for Python 3.8.

---
 srcpkgs/python-mistune/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mistune/template b/srcpkgs/python-mistune/template
index 0ee8dfde5b1..ef5c054ba75 100644
--- a/srcpkgs/python-mistune/template
+++ b/srcpkgs/python-mistune/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mistune'
 pkgname=python-mistune
 version=0.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="mistune-${version}"
 build_style=python-module

From 05abf67487f6ac161862195dfb2069fade248fbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 304/872] python3-more-itertools: rebuild for Python 3.8.

---
 srcpkgs/python3-more-itertools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-more-itertools/template b/srcpkgs/python3-more-itertools/template
index b089992f84e..a765da98495 100644
--- a/srcpkgs/python3-more-itertools/template
+++ b/srcpkgs/python3-more-itertools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-more-itertools'
 pkgname=python3-more-itertools
 version=7.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python3-module

From efcbd7f439e04ca5dc43be057047c93f1051b5cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 305/872] python-mpd2: rebuild for Python 3.8.

---
 srcpkgs/python-mpd2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template
index 682d9a85f5e..0389f8c2a28 100644
--- a/srcpkgs/python-mpd2/template
+++ b/srcpkgs/python-mpd2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpd2'
 pkgname=python-mpd2
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mpd"

From 507a89e7a29ba5dd81f66830577542bb3a098780 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 306/872] python3-mpi4py: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-mpi4py/template | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/python3-mpi4py/template b/srcpkgs/python3-mpi4py/template
index 94a83b688f2..8f9e76867cc 100644
--- a/srcpkgs/python3-mpi4py/template
+++ b/srcpkgs/python3-mpi4py/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpi4py'
 pkgname=python3-mpi4py
 version=3.0.2
-revision=1
+revision=2
 wrksrc="mpi4py-${version}"
 build_style=python3-module
 pycompile_module="mpi4py"
@@ -15,6 +15,12 @@ homepage="https://bitbucket.org/mpi4py/mpi4py"
 distfiles="$PYPI_SITE/m/mpi4py/mpi4py-${version}.tar.gz"
 checksum=f8d629d1e3e3b7b89cb99d0e3bc5505e76cc42089829807950d5c56606ed48e0
 
+post_extract() {
+	# recythonize
+	rm src/mpi4py/include/mpi4py/mpi4py.MPI.h \
+		src/mpi4py/include/mpi4py/mpi4py.MPI_api.h \
+		src/mpi4py.MPI.c
+}
 post_install() {
 	vlicense LICENSE.rst
 }

From d71d04b6dbfad4ce9460041fe001aab7c4cab301 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 307/872] python-mpmath: rebuild for Python 3.8.

---
 srcpkgs/python-mpmath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpmath/template b/srcpkgs/python-mpmath/template
index b0a38c01514..8fd4873dd62 100644
--- a/srcpkgs/python-mpmath/template
+++ b/srcpkgs/python-mpmath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpmath'
 pkgname=python-mpmath
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="mpmath-${version}"
 build_style=python-module

From f050643cc3d8a1927b2b43a4d6bc3a47fce265d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 308/872] python3-mpv: rebuild for Python 3.8.

---
 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 2780c02610b..1910a4d231d 100644
--- a/srcpkgs/python3-mpv/template
+++ b/srcpkgs/python3-mpv/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpv'
 pkgname=python3-mpv
 version=0.3.9
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-mpv-${version}"
 build_style=python3-module

From 076ab982ba68fae19b6a637c3190d501b6f11afb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 309/872] python-msgpack: rebuild for Python 3.8.

---
 srcpkgs/python-msgpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-msgpack/template b/srcpkgs/python-msgpack/template
index 395d854d638..59571d6a208 100644
--- a/srcpkgs/python-msgpack/template
+++ b/srcpkgs/python-msgpack/template
@@ -2,7 +2,7 @@
 pkgname=python-msgpack
 reverts="0.6.0_1"
 version=0.5.6
-revision=3
+revision=4
 wrksrc="msgpack-${version}"
 build_style=python-module
 pycompile_module="msgpack"

From c0b498d4aabae1c0cc1564a796b43c28045b08f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 310/872] python3-msoffcrypto-tool: rebuild for Python 3.8.

---
 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 5996d3bf355..d1b369fc773 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=4.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="msoffcrypto-tool-${version}"
 build_style=python3-module

From a02ae9dc7e657d6823c09d222a46aaaad0b52e6e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 311/872] python-mtranslate: rebuild for Python 3.8.

---
 srcpkgs/python-mtranslate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mtranslate/template b/srcpkgs/python-mtranslate/template
index d56fa18f0f0..992c7b76fe9 100644
--- a/srcpkgs/python-mtranslate/template
+++ b/srcpkgs/python-mtranslate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mtranslate'
 pkgname=python-mtranslate
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="mtranslate-${version}"
 build_style=python-module

From 1db5126bddf0129431159c083c0e8c7feeda0e24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 312/872] python3-multidict: rebuild for Python 3.8.

---
 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 82888db842f..62054db71f1 100644
--- a/srcpkgs/python3-multidict/template
+++ b/srcpkgs/python3-multidict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-multidict'
 pkgname=python3-multidict
 version=4.5.2
-revision=2
+revision=3
 wrksrc="multidict-${version}"
 build_style=python3-module
 pycompile_module="multidict"

From db397601599182d62444486443fe7887f1bf0869 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 313/872] python3-munkres: rebuild for Python 3.8.

---
 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 15767afe3fe..d0d0a013e80 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python3-module

From f6bec8102ac4a1433f716928258d680f0546e9f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 314/872] python-musicbrainzngs: rebuild for Python 3.8.

---
 srcpkgs/python-musicbrainzngs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-musicbrainzngs/template b/srcpkgs/python-musicbrainzngs/template
index 588c25f7cd8..3d738f0c3c0 100644
--- a/srcpkgs/python-musicbrainzngs/template
+++ b/srcpkgs/python-musicbrainzngs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-musicbrainzngs'
 pkgname=python-musicbrainzngs
 version=0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="musicbrainzngs-${version}"
 build_style="python-module"

From 59d602d19ea627b5ddd3ac33170326df511f1b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 315/872] python3-musicpd: rebuild for Python 3.8.

---
 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 3328b2f4bbf..8c6ba2fb451 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=1
+revision=2
 archs=noarch
 wrksrc="python-musicpd-${version}"
 build_style=python3-module

From e4271deae6b4b0258165475e34a0174f837576d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 316/872] mutagen: rebuild for Python 3.8.

---
 srcpkgs/mutagen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mutagen/template b/srcpkgs/mutagen/template
index cbf05ea8583..8b24cc82dc8 100644
--- a/srcpkgs/mutagen/template
+++ b/srcpkgs/mutagen/template
@@ -1,7 +1,7 @@
 # Template file for 'mutagen'
 pkgname=mutagen
 version=1.42.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mutagen"

From c726c7e86676ccc5612045570a6821438d6541cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 317/872] python-mygpoclient: rebuild for Python 3.8.

---
 srcpkgs/python-mygpoclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mygpoclient/template b/srcpkgs/python-mygpoclient/template
index 3f85c72cc0c..ffad63a70a1 100644
--- a/srcpkgs/python-mygpoclient/template
+++ b/srcpkgs/python-mygpoclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mygpoclient'
 pkgname=python-mygpoclient
 version=1.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="mygpoclient-${version}"
 build_style=python-module

From 1d17c7a2672083ac8c194b767f1be1d8778d6f42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 318/872] python3-mypy: rebuild for Python 3.8.

---
 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 37ecd732c06..564c0a4d47c 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.730
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy-${version}"
 build_style=python3-module

From d44ba12caf9958f6f6d708b0e5061d3ca01990e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 319/872] python3-mypy_extensions: rebuild for Python 3.8.

---
 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 2761924248e..25de48ea141 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy_extensions-${version}"
 build_style=python3-module

From 8c03f1eb83b224187a7b0fb11b5c780c96875438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 320/872] python-mysqlclient: rebuild for Python 3.8.

---
 srcpkgs/python-mysqlclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mysqlclient/template b/srcpkgs/python-mysqlclient/template
index 43fed28d4f0..079666a6dab 100644
--- a/srcpkgs/python-mysqlclient/template
+++ b/srcpkgs/python-mysqlclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mysqlclient'
 pkgname=python-mysqlclient
 version=1.3.14
-revision=2
+revision=3
 wrksrc="mysqlclient-${version}"
 build_style=python-module
 pycompile_module="MySQLdb _mysql_exceptions.py"

From 8b80cedc0b4331f2c1827c959c67be32d904a6b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 321/872] python3-nacl: rebuild for Python 3.8.

---
 srcpkgs/python3-nacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-nacl/template b/srcpkgs/python3-nacl/template
index 5dd6a71ad6a..b59ea0196ac 100644
--- a/srcpkgs/python3-nacl/template
+++ b/srcpkgs/python3-nacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-nacl'
 pkgname=python3-nacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python3-module
 pycompile_module="nacl"

From 4b93d8f922559d3f9f9693969307cdb0dedd22c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 322/872] python-namedlist: rebuild for Python 3.8.

---
 srcpkgs/python-namedlist/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-namedlist/template b/srcpkgs/python-namedlist/template
index 4c6e6f1f3d5..75626b9f6d5 100644
--- a/srcpkgs/python-namedlist/template
+++ b/srcpkgs/python-namedlist/template
@@ -1,7 +1,7 @@
 # Template file for 'python-namedlist'
 pkgname=python-namedlist
 version=1.7
-revision=5
+revision=6
 archs=noarch
 wrksrc="namedlist-${version}"
 build_style=python-module

From 643225c4205051b03e6b58dd88dd0fe79a960880 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 323/872] python-natsort: rebuild for Python 3.8.

---
 srcpkgs/python-natsort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-natsort/template b/srcpkgs/python-natsort/template
index 754ac50c419..7101e297aad 100644
--- a/srcpkgs/python-natsort/template
+++ b/srcpkgs/python-natsort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-natsort'
 pkgname=python-natsort
 version=6.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="natsort-${version}"
 build_style=python-module

From 1b4401089b676f8d76d5cbdf86f7cff95a90063f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 324/872] python-nbxmpp: rebuild for Python 3.8.

---
 srcpkgs/python-nbxmpp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nbxmpp/template b/srcpkgs/python-nbxmpp/template
index 4952ee1e102..8c39a93bca7 100644
--- a/srcpkgs/python-nbxmpp/template
+++ b/srcpkgs/python-nbxmpp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nbxmpp'
 pkgname=python-nbxmpp
 version=0.6.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 1ee192bdc19afbca9bbbc456945aaed8e882dc3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 325/872] python-ndg_httpsclient: rebuild for Python 3.8.

---
 srcpkgs/python-ndg_httpsclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ndg_httpsclient/template b/srcpkgs/python-ndg_httpsclient/template
index 908d7137391..54b653f68a9 100644
--- a/srcpkgs/python-ndg_httpsclient/template
+++ b/srcpkgs/python-ndg_httpsclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ndg_httpsclient'
 pkgname=python-ndg_httpsclient
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ndg_httpsclient-${version}"
 build_style=python-module

From 37b5c7920c617c4f55d5abe58df690c621598a93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 326/872] python3-neovim: rebuild for Python 3.8.

---
 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 44068f17b66..2730cd1b92b 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.3.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="pynvim-${version}"
 build_style="python3-module"

From 8136ec791e98badf101712f4f44830a6721d4849 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 327/872] python-netaddr: rebuild for Python 3.8.

---
 srcpkgs/python-netaddr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netaddr/template b/srcpkgs/python-netaddr/template
index 851095a3c7c..20cc1c93134 100644
--- a/srcpkgs/python-netaddr/template
+++ b/srcpkgs/python-netaddr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netaddr'
 pkgname=python-netaddr
 version=0.7.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="netaddr-${version}"
 build_style=python-module

From ebe247f557b410a62febae438785f8f011964023 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 328/872] python-netifaces: rebuild for Python 3.8.

---
 srcpkgs/python-netifaces/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netifaces/template b/srcpkgs/python-netifaces/template
index b8d6e505879..760f657aaba 100644
--- a/srcpkgs/python-netifaces/template
+++ b/srcpkgs/python-netifaces/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netifaces'
 pkgname=python-netifaces
 version=0.10.9
-revision=1
+revision=2
 wrksrc="netifaces-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 07d0e05094764c4ef127de2a4d489537d8ab5708 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 329/872] python3-networkx: rebuild for Python 3.8.

---
 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 eae29038d94..84acd3e929c 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.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="networkx-${version}"
 build_style=python3-module

From 8a3aeb59a75fbf1b7f0394b94c325ef8827b6b5d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 330/872] python-nose: rebuild for Python 3.8.

---
 srcpkgs/python-nose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose/template b/srcpkgs/python-nose/template
index c9fbe9d28d3..f2cd7fe5c3f 100644
--- a/srcpkgs/python-nose/template
+++ b/srcpkgs/python-nose/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose'
 pkgname=python-nose
 version=1.3.7
-revision=3
+revision=4
 archs=noarch
 wrksrc="nose-${version}"
 build_style=python-module

From f86abdbaaaa9e7e8236c4d39cd7e46a733425805 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 331/872] python-nose2: rebuild for Python 3.8.

---
 srcpkgs/python-nose2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose2/template b/srcpkgs/python-nose2/template
index a9ddf5969a1..058abbd4253 100644
--- a/srcpkgs/python-nose2/template
+++ b/srcpkgs/python-nose2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose2'
 pkgname=python-nose2
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 18b92c10ef3291636c1e7e28d721c5e994bf6302 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 332/872] python-npyscreen: rebuild for Python 3.8.

---
 srcpkgs/python-npyscreen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-npyscreen/template b/srcpkgs/python-npyscreen/template
index 0457fa1aaed..2223850f22e 100644
--- a/srcpkgs/python-npyscreen/template
+++ b/srcpkgs/python-npyscreen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-npyscreen'
 pkgname=python-npyscreen
 version=4.10.5.1
-revision=1
+revision=2
 wrksrc="npyscreen-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 9ea98fac2c37960db9a7b76cea2be115e8a2bed7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 333/872] python-ntplib: rebuild for Python 3.8.

---
 srcpkgs/python-ntplib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ntplib/template b/srcpkgs/python-ntplib/template
index 81bac24971e..0582fb326c1 100644
--- a/srcpkgs/python-ntplib/template
+++ b/srcpkgs/python-ntplib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ntplib'
 pkgname=python-ntplib
 version=0.3.3
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 wrksrc="ntplib-${version}"

From 42e7c3606ad17794721afef48ff01de438abbfde Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 334/872] python-numexpr: rebuild for Python 3.8.

---
 srcpkgs/python-numexpr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numexpr/template b/srcpkgs/python-numexpr/template
index 1db40092411..baf91175a33 100644
--- a/srcpkgs/python-numexpr/template
+++ b/srcpkgs/python-numexpr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numexpr'
 pkgname=python-numexpr
 version=2.7.0
-revision=1
+revision=2
 wrksrc="numexpr-${version}"
 build_style=python-module
 pycompile_module="numexpr"

From 30d9e4a8b4a096dfdf5ebfa58ffcadefb1dc1208 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 335/872] python3-numpy: rebuild for Python 3.8.

---
 srcpkgs/python3-numpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-numpy/template b/srcpkgs/python3-numpy/template
index c4c1936cc0d..f5e8ce2cc32 100644
--- a/srcpkgs/python3-numpy/template
+++ b/srcpkgs/python3-numpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-numpy'
 pkgname=python3-numpy
 version=1.17.2
-revision=1
+revision=2
 wrksrc="numpy-${version}"
 build_style=python3-module
 pycompile_module="numpy"

From 0172497dfdbc4c61b890a5cb33fdf7a4c4f8d99a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 336/872] python-numpy-stl: rebuild for Python 3.8.

---
 srcpkgs/python-numpy-stl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numpy-stl/template b/srcpkgs/python-numpy-stl/template
index 3eed838e4f6..cce1a8ead1f 100644
--- a/srcpkgs/python-numpy-stl/template
+++ b/srcpkgs/python-numpy-stl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numpy-stl'
 pkgname=python-numpy-stl
 version=2.10.1
-revision=1
+revision=2
 wrksrc="numpy-stl-v${version}"
 build_style=python-module
 pycompile_module="stl"

From f24b29a48d74aeaddb7b697a5daffdddbd861096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 337/872] python-oauth2client: rebuild for Python 3.8.

---
 srcpkgs/python-oauth2client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauth2client/template b/srcpkgs/python-oauth2client/template
index fd135e4e98f..2398adba276 100644
--- a/srcpkgs/python-oauth2client/template
+++ b/srcpkgs/python-oauth2client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauth2client'
 pkgname=python-oauth2client
 version=4.1.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 4c0ff2a063a36adf86c97b9d4c835ca20b5edfc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 338/872] python-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauthlib/template b/srcpkgs/python-oauthlib/template
index 5bbaa7df29b..036f1b31c92 100644
--- a/srcpkgs/python-oauthlib/template
+++ b/srcpkgs/python-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauthlib'
 pkgname=python-oauthlib
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 661bc27cfe08965221daa2747362d72e4fc27178 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 339/872] python-olefile: rebuild for Python 3.8.

---
 srcpkgs/python-olefile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-olefile/template b/srcpkgs/python-olefile/template
index 4346cfcf667..803d7b67cd8 100644
--- a/srcpkgs/python-olefile/template
+++ b/srcpkgs/python-olefile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-olefile'
 pkgname=python-olefile
 version=0.46
-revision=1
+revision=2
 archs=noarch
 wrksrc="olefile-${version}"
 build_style=python-module

From 81ad48cc99baa98fff2bb93d2c9ddbfe5bd36422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 340/872] python3-oletools: rebuild for Python 3.8.

---
 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 af9a91ff273..a4fda46427b 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.54.2b
-revision=1
+revision=2
 archs=noarch
 wrksrc="oletools-${version}"
 build_style=python3-module

From 0ae1454dacdb40d36d6c46872241d8b7f943ac15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 341/872] openrazer-meta: rebuild for Python 3.8.

---
 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 d4bd24878b2..112cb9e900b 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=1
+revision=2
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 827b1a86d790e29df3f5448f95b7d7583439ebc7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 342/872] python-openssl: rebuild for Python 3.8.

---
 srcpkgs/python-openssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-openssl/template b/srcpkgs/python-openssl/template
index 94bccaa166f..8aabda074fa 100644
--- a/srcpkgs/python-openssl/template
+++ b/srcpkgs/python-openssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-openssl'
 pkgname=python-openssl
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyOpenSSL-${version}"
 build_style=python-module

From 0b35d1d0b8e9ec0f17cb71edb12538b78cf15fa9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 343/872] python3-orocos-kdl: rebuild for Python 3.8.

---
 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 df3e27d5e7b..85b573b2fa4 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=1
+revision=2
 wrksrc=orocos_kinematics_dynamics-${version}
 build_wrksrc=python_orocos_kdl
 build_style=cmake

From 1f599cbc677804bd62252474063a3f44bab1963f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 344/872] python3-owm: rebuild for Python 3.8.

---
 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 d51e01831e6..acdb960ab45 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=1
+revision=2
 wrksrc="pyowm-${version}"
 build_style=python3-module
 pycompile_module="pyowm"

From 04d5ca1141107a7e08a15eccec26eae0cef6ddfc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 345/872] python-packaging: rebuild for Python 3.8.

---
 srcpkgs/python-packaging/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-packaging/template b/srcpkgs/python-packaging/template
index 505631bb29c..06042d12b90 100644
--- a/srcpkgs/python-packaging/template
+++ b/srcpkgs/python-packaging/template
@@ -1,7 +1,7 @@
 # Template file for 'python-packaging'
 pkgname=python-packaging
 version=19.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="packaging-${version}"
 build_style=python-module

From 3d4f635d1909bcc10be550a6ba92c93bab657d24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 346/872] python-pam: rebuild for Python 3.8.

---
 srcpkgs/python-pam/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pam/template b/srcpkgs/python-pam/template
index e696a05ae7f..28c22cfd6ea 100644
--- a/srcpkgs/python-pam/template
+++ b/srcpkgs/python-pam/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pam'
 pkgname=python-pam
 version=1.8.4
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="pam.py"

From 7906adb846a053b93372b360401c778862703de5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 347/872] python3-pandas: rebuild for Python 3.8.

---
 srcpkgs/python3-pandas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pandas/template b/srcpkgs/python3-pandas/template
index ad282b4d5d4..10f9d5a77d9 100644
--- a/srcpkgs/python3-pandas/template
+++ b/srcpkgs/python3-pandas/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pandas'
 pkgname=python3-pandas
 version=0.25.1
-revision=1
+revision=2
 wrksrc="pandas-${version}"
 build_style=python3-module
 pycompile_module="pandas"

From 5f63764964faf4b0d244098f5f64ba1225e14c5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 348/872] python-pandocfilters: rebuild for Python 3.8.

---
 srcpkgs/python-pandocfilters/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pandocfilters/template b/srcpkgs/python-pandocfilters/template
index a7a3d442052..8650d20256f 100644
--- a/srcpkgs/python-pandocfilters/template
+++ b/srcpkgs/python-pandocfilters/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pandocfilters'
 pkgname=python-pandocfilters
 version=1.4.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="pandocfilters-${version}"
 build_style=python-module

From cedefda1104de9c58b20c6b7e1d8a0f4d5385b24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 349/872] python-paramiko: rebuild for Python 3.8.

---
 srcpkgs/python-paramiko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-paramiko/template b/srcpkgs/python-paramiko/template
index c512ceb951f..d6f75508a03 100644
--- a/srcpkgs/python-paramiko/template
+++ b/srcpkgs/python-paramiko/template
@@ -1,7 +1,7 @@
 # Template file for 'python-paramiko'
 pkgname=python-paramiko
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 6c5cdbb0603a5742137ad2399e1f282d7135ecbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 350/872] python-parse: rebuild for Python 3.8.

---
 srcpkgs/python-parse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parse/template b/srcpkgs/python-parse/template
index 298d0b65e78..ded581b4420 100644
--- a/srcpkgs/python-parse/template
+++ b/srcpkgs/python-parse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parse'
 pkgname=python-parse
 version=1.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="parse-${version}"
 build_style=python-module

From 06c32d13c6ecc8f5c59fd3d28c856cddb7e55b69 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 351/872] python3-parsedatetime: rebuild for Python 3.8.

---
 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 d3ac21d7d34..34e9ba0f416 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="parsedatetime-${version}"
 build_style=python3-module

From 149092afd6b238ec9977aa2ba8d8f244d5357e67 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 352/872] python-parsing: rebuild for Python 3.8.

---
 srcpkgs/python-parsing/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parsing/template b/srcpkgs/python-parsing/template
index 0cc744eaf79..bd6cf2c2238 100644
--- a/srcpkgs/python-parsing/template
+++ b/srcpkgs/python-parsing/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parsing'
 pkgname=python-parsing
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyparsing-pyparsing_${version}"
 build_style=python-module

From c302574bea31ba81d3f2e4d6c1b8b8212592985d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 353/872] python-parso: rebuild for Python 3.8.

---
 srcpkgs/python-parso/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parso/template b/srcpkgs/python-parso/template
index 20e5fe306c0..1959b42622a 100644
--- a/srcpkgs/python-parso/template
+++ b/srcpkgs/python-parso/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parso'
 pkgname=python-parso
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="parso-${version}"
 build_style=python-module

From 6b9c95f942435b16d67021b0ce8f182c24bb943f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 354/872] python-passlib: rebuild for Python 3.8.

---
 srcpkgs/python-passlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-passlib/template b/srcpkgs/python-passlib/template
index 3af12ce7b1b..f46a3e92642 100644
--- a/srcpkgs/python-passlib/template
+++ b/srcpkgs/python-passlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-passlib'
 pkgname=python-passlib
 version=1.7.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="passlib-${version}"
 build_style=python-module

From 49600da0619f7152e3ea828c366d9a4680ebac40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 355/872] python-pathlib2: rebuild for Python 3.8.

---
 srcpkgs/python-pathlib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathlib2/template b/srcpkgs/python-pathlib2/template
index bb7bec778f5..fa600b78fbe 100644
--- a/srcpkgs/python-pathlib2/template
+++ b/srcpkgs/python-pathlib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathlib2'
 pkgname=python-pathlib2
 version=2.3.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pathlib2-${version}"
 build_style=python-module

From a0a108aec87134d5b6d2e03e731f48739e1226c0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 356/872] python-pathspec: rebuild for Python 3.8.

---
 srcpkgs/python-pathspec/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathspec/template b/srcpkgs/python-pathspec/template
index 7c5fe04097a..2fa8fa1a811 100644
--- a/srcpkgs/python-pathspec/template
+++ b/srcpkgs/python-pathspec/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathspec'
 pkgname=python-pathspec
 version=0.5.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathspec-${version}"
 build_style=python-module

From c66de315dc6f359ddb581056e8ef350e92acb135 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 357/872] python-pathtools: rebuild for Python 3.8.

---
 srcpkgs/python-pathtools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathtools/template b/srcpkgs/python-pathtools/template
index 218e6ed2f57..47dc6ef6a71 100644
--- a/srcpkgs/python-pathtools/template
+++ b/srcpkgs/python-pathtools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathtools'
 pkgname=python-pathtools
 version=0.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathtools-${version}"
 build_style=python-module

From d3d8ba877ce3e383a472c68a51b4eb6138da7d25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 358/872] python-pbkdf2: rebuild for Python 3.8.

---
 srcpkgs/python-pbkdf2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pbkdf2/template b/srcpkgs/python-pbkdf2/template
index edc50f824c2..956d0b4cad9 100644
--- a/srcpkgs/python-pbkdf2/template
+++ b/srcpkgs/python-pbkdf2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pbkdf2'
 pkgname=python-pbkdf2
 version=1.3
-revision=3
+revision=4
 archs=noarch
 wrksrc="pbkdf2-${version}"
 build_style=python-module

From 92b150f4aee95d71074c2bc7e253e089372033b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 359/872] python-pbr: rebuild for Python 3.8.

---
 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 7ab0b39539f..9c7216056fe 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.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pbr-${version}"
 build_style=python-module

From a5f7f198ba9557855d1662cf7b3d806286d735b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 360/872] python3-pcodedmp: rebuild for Python 3.8.

---
 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 efe8cc83ee7..eb52c809fae 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=1
+revision=2
 archs=noarch
 wrksrc="pcodedmp-${version}"
 build_style=python3-module

From c6f7d3cab5a62a3302eedc82e3ce1b5af007e967 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 361/872] python-pdfrw: rebuild for Python 3.8.

---
 srcpkgs/python-pdfrw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pdfrw/template b/srcpkgs/python-pdfrw/template
index ddb43b928fc..ef7db98e491 100644
--- a/srcpkgs/python-pdfrw/template
+++ b/srcpkgs/python-pdfrw/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pdfrw'
 pkgname=python-pdfrw
 version=0.4
-revision=2
+revision=3
 archs=noarch
 replaces="python-pdfrw-example<${version}_${revision}"
 wrksrc="${pkgname/python-//}-${version}"

From 8f02a9d6b13212de51e3921f641914d153244a1d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 362/872] python-peewee: rebuild for Python 3.8.

---
 srcpkgs/python-peewee/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-peewee/template b/srcpkgs/python-peewee/template
index 9b07ed413b9..de0068a330e 100644
--- a/srcpkgs/python-peewee/template
+++ b/srcpkgs/python-peewee/template
@@ -1,7 +1,7 @@
 # Template file for 'python-peewee'
 pkgname=python-peewee
 version=3.11.2
-revision=1
+revision=2
 wrksrc="peewee-${version}"
 build_style=python-module
 pycompile_module="playhouse peewee.py pwiz.py"

From 8c541b3666a838b55909e5f7ca46b7318c1e315e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 363/872] python3-pefile: rebuild for Python 3.8.

---
 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 305d64e0758..8791f06640b 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=1
+revision=2
 archs=noarch
 wrksrc="pefile-${version}"
 build_style=python3-module

From edc8e4f2bb803865815c3d0bd64a2e50bfdf5da8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 364/872] python3-pem: rebuild for Python 3.8.

---
 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 3517c80b66a..15417666597 100644
--- a/srcpkgs/python3-pem/template
+++ b/srcpkgs/python3-pem/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pem'
 pkgname=python3-pem
 version=19.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pem-${version}"
 build_style=python3-module

From 164760eb3d8d28400ea4be2967d7678696839866 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 365/872] python-pex: rebuild for Python 3.8.

---
 srcpkgs/python-pex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pex/template b/srcpkgs/python-pex/template
index 4beafcf7b4b..e36ccda8180 100644
--- a/srcpkgs/python-pex/template
+++ b/srcpkgs/python-pex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pex'
 pkgname=python-pex
 version=1.6.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="pex-${version}"
 build_style=python-module

From b4043ec822756e0711d025e31db342f81853fc0b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 366/872] python-pexpect: rebuild for Python 3.8.

---
 srcpkgs/python-pexpect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pexpect/template b/srcpkgs/python-pexpect/template
index 8d03a1945f3..03102c3d294 100644
--- a/srcpkgs/python-pexpect/template
+++ b/srcpkgs/python-pexpect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pexpect'
 pkgname=python-pexpect
 version=4.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pexpect-${version}"
 build_style=python-module

From 50f6291ca752dc88af34a7df4987b99f11369c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 367/872] python-pgmigrate: rebuild for Python 3.8.

---
 srcpkgs/python-pgmigrate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgmigrate/template b/srcpkgs/python-pgmigrate/template
index b441ba2a89f..767b6cf8921 100644
--- a/srcpkgs/python-pgmigrate/template
+++ b/srcpkgs/python-pgmigrate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgmigrate'
 pkgname=python-pgmigrate
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgmigrate-${version}"
 build_style=python-module

From 19bc6f8c731b45f52c358d34830221558e54f36f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 368/872] python-pgpdump: rebuild for Python 3.8.

---
 srcpkgs/python-pgpdump/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgpdump/template b/srcpkgs/python-pgpdump/template
index 58be9116feb..a28b6e209e7 100644
--- a/srcpkgs/python-pgpdump/template
+++ b/srcpkgs/python-pgpdump/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgpdump'
 pkgname=python-pgpdump
 version=1.5
-revision=5
+revision=6
 archs=noarch
 build_style=python-module
 pycompile_module="pgpdump"

From d3bc17a7484bd198f2f0e5d449b183920ca6ef9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 369/872] python3-pgspecial: rebuild for Python 3.8.

---
 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 dc52d12c214..c4f67a707f1 100644
--- a/srcpkgs/python3-pgspecial/template
+++ b/srcpkgs/python3-pgspecial/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pgspecial'
 pkgname=python3-pgspecial
 version=1.11.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgspecial-${version}"
 build_style=python3-module

From 630e0f8ca443d21d7a84c4cb44ab119db356b6fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 370/872] python3-pgzero: rebuild for Python 3.8.

---
 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 9653505acda..8b8f477112d 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgzero-${version}"
 build_style=python3-module

From b39841f2f8458d2865aac460282b318538b727c4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 371/872] python3-phonenumbers: rebuild for Python 3.8.

---
 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 ebf33f226e4..7b4e889fd8d 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.10.20
-revision=1
+revision=2
 archs=noarch
 wrksrc="phonenumbers-${version}"
 build_style=python3-module

From c4dbacfe25a16b0526190c66a838b7e407125426 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 372/872] python-picamera: rebuild for Python 3.8.

---
 srcpkgs/python-picamera/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-picamera/template b/srcpkgs/python-picamera/template
index 92bc2a57a6d..e3c9a17bfdc 100644
--- a/srcpkgs/python-picamera/template
+++ b/srcpkgs/python-picamera/template
@@ -1,7 +1,7 @@
 # Template file for 'python-picamera'
 pkgname=python-picamera
 version=1.13
-revision=1
+revision=2
 archs=noarch
 wrksrc="picamera-${version}"
 build_style=python-module

From 29473c016c6cd2d720c417714e89e9eaba3b321e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 373/872] python-pickleshare: rebuild for Python 3.8.

---
 srcpkgs/python-pickleshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pickleshare/template b/srcpkgs/python-pickleshare/template
index 2485c95230a..c1d86826c15 100644
--- a/srcpkgs/python-pickleshare/template
+++ b/srcpkgs/python-pickleshare/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pickleshare'
 pkgname=python-pickleshare
 version=0.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pickleshare-${version}"
 build_style=python-module

From 7c358da397b1273369bbeb98240a250157d4fe9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 374/872] python3-pillow-simd: rebuild for Python 3.8.

---
 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 7bab9fb20c3..4c756b07c79 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=5.3.0.post1
-revision=1
+revision=2
 archs="x86_64*"
 wrksrc="pillow-simd-${version}"
 build_style=python3-module

From 06b38c4e7a2c4a5ec22c8a9c530dbe56d846260f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 375/872] python-pip: rebuild for Python 3.8.

---
 srcpkgs/python-pip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pip/template b/srcpkgs/python-pip/template
index 75f11561816..9d4607095c7 100644
--- a/srcpkgs/python-pip/template
+++ b/srcpkgs/python-pip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pip'
 pkgname=python-pip
 version=19.2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pip-${version}"
 build_style=python-module

From 16067b9358434ea80b4b86a4dcd5a60f6b9e575b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 376/872] python-pipenv: rebuild for Python 3.8.

---
 srcpkgs/python-pipenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pipenv/template b/srcpkgs/python-pipenv/template
index e7ce3922875..210a0813673 100644
--- a/srcpkgs/python-pipenv/template
+++ b/srcpkgs/python-pipenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pipenv'
 pkgname=python-pipenv
 version=2018.11.26
-revision=3
+revision=4
 archs=noarch
 wrksrc="pipenv-${version}"
 build_style=python-module

From cb995aed1307a20f4ffe7746dbe54e4099ce9670 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 377/872] python-pkgconfig: rebuild for Python 3.8.

---
 srcpkgs/python-pkgconfig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pkgconfig/template b/srcpkgs/python-pkgconfig/template
index 13e1dcd3bf7..e9e5480907d 100644
--- a/srcpkgs/python-pkgconfig/template
+++ b/srcpkgs/python-pkgconfig/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pkgconfig'
 pkgname=python-pkgconfig
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pkgconfig-${version}"
 build_style=python-module

From f284340f35211b5c0879b7a5338c325e6cfe62da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 378/872] python-plotly: rebuild for Python 3.8.

---
 srcpkgs/python-plotly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-plotly/template b/srcpkgs/python-plotly/template
index fbbb3a3a520..1593b108f7a 100644
--- a/srcpkgs/python-plotly/template
+++ b/srcpkgs/python-plotly/template
@@ -1,7 +1,7 @@
 # Template file for 'python-plotly'
 pkgname=python-plotly
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 #wrksrc="${pkgname#*-}-${version}"
 wrksrc="plotly.py-${version}"

From ee0d515dc265db17d6c90029fc5ffad4fbfb17ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 379/872] python3-pluggy: rebuild for Python 3.8.

---
 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 37ebc2dae40..6f97cb25f21 100644
--- a/srcpkgs/python3-pluggy/template
+++ b/srcpkgs/python3-pluggy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pluggy'
 pkgname=python3-pluggy
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python3-module

From 60f109b4924812d3cbb6107b8d070a2fdb642962 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 380/872] python-ply: rebuild for Python 3.8.

---
 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 034fbcfa531..04a3defa6aa 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=1
+revision=2
 archs=noarch
 wrksrc="ply-${version}"
 build_style=python-module

From 95b0bc668a60a91dbbd68944bdc712d271e93723 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 381/872] python3-pmw: rebuild for Python 3.8.

---
 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 646e7129443..289b5ef1d0d 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=1
+revision=2
 archs=noarch
 short_desc="Python 3 Tkinter widget toolkit"
 homepage="http://pmw.sourceforge.net/"

From 760b2aa66f385f882c6da4545bc93c906a387d73 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 382/872] python-podcastparser: rebuild for Python 3.8.

---
 srcpkgs/python-podcastparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-podcastparser/template b/srcpkgs/python-podcastparser/template
index e4847d3ed65..61702f0d28b 100644
--- a/srcpkgs/python-podcastparser/template
+++ b/srcpkgs/python-podcastparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-podcastparser'
 pkgname=python-podcastparser
 version=0.6.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="podcastparser-${version}"
 build_style=python-module

From e0ad0641945e1dea937fb2ca555a61603e4560b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 383/872] python-polib: rebuild for Python 3.8.

---
 srcpkgs/python-polib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-polib/template b/srcpkgs/python-polib/template
index b0ade05d90d..8b8d4b66c68 100644
--- a/srcpkgs/python-polib/template
+++ b/srcpkgs/python-polib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-polib'
 pkgname=python-polib
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="polib-${version}"
 build_style=python-module

From 0030be5c9ea47539a72b9d5b5131abeac8412e47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 384/872] python-portend: rebuild for Python 3.8.

---
 srcpkgs/python-portend/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python-portend/template b/srcpkgs/python-portend/template
index 216ae413d09..0538f68083f 100644
--- a/srcpkgs/python-portend/template
+++ b/srcpkgs/python-portend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-portend'
 pkgname=python-portend
 version=2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="portend-${version}"
 build_style=python-module
@@ -14,7 +14,7 @@ license="MIT"
 homepage="https://github.com/jaraco/portend"
 changelog="https://github.com/jaraco/portend/blob/master/CHANGES.rst"
 distfiles="https://github.com/jaraco/portend/archive/${version}.tar.gz"
-checksum=61aa1a8fd76d64bd6093e4151a2bfeda177d5083bf2e2bcc92a053bd2104fde3
+checksum=c0740375a19168e117d291e7ed307e985d2c0e2dc732ca97444bc58a28076dfa
 
 pre_build() {
 	sed -i setup.py \

From 86c2211e1837e156275077b9efe1e25572514867 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 385/872] python-prctl: rebuild for Python 3.8.

---
 srcpkgs/python-prctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prctl/template b/srcpkgs/python-prctl/template
index 2b420d655cf..e8bf54b98fd 100644
--- a/srcpkgs/python-prctl/template
+++ b/srcpkgs/python-prctl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prctl'
 pkgname=python-prctl
 version=1.7
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="prctl.py"
 hostmakedepends="python-setuptools python3-setuptools libcap-devel"

From e7c53afc196d066076f9117158bd6a0b7b28bf52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 386/872] python3-precis-i18n: rebuild for Python 3.8.

---
 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 19612bc818b..be7bb0b0b56 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=1
+revision=2
 archs=noarch
 wrksrc="precis_i18n-${version}"
 build_style=python3-module

From fc6a6a6ae9e2454bc6e5aa117ab2f5f747f1c3d2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 387/872] python-pretend: rebuild for Python 3.8.

---
 srcpkgs/python-pretend/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pretend/template b/srcpkgs/python-pretend/template
index 9a647271b57..6d8063fc43a 100644
--- a/srcpkgs/python-pretend/template
+++ b/srcpkgs/python-pretend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pretend'
 pkgname=python-pretend
 version=1.0.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pretend-${version}"
 build_style=python-module

From 990266b8ce207f64d2a8e2f2f2c11473236e4a2d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 388/872] python-progress: rebuild for Python 3.8.

---
 srcpkgs/python-progress/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-progress/template b/srcpkgs/python-progress/template
index 7d3924e3618..0d6bd1db69d 100644
--- a/srcpkgs/python-progress/template
+++ b/srcpkgs/python-progress/template
@@ -1,7 +1,7 @@
 # Template file for 'python-progress'
 pkgname=python-progress
 version=1.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="progress-${version}"
 build_style=python-module

From 1259abece823637c18eaca058493cebdf15842ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 389/872] python-prometheus_client: rebuild for Python 3.8.

---
 srcpkgs/python-prometheus_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prometheus_client/template b/srcpkgs/python-prometheus_client/template
index 46df561f7d4..7b71fbeffc2 100644
--- a/srcpkgs/python-prometheus_client/template
+++ b/srcpkgs/python-prometheus_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prometheus_client'
 pkgname=python-prometheus_client
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="prometheus_client-${version}"
 build_style=python-module

From 67527aa7cf723b45f2c49017717337d56884bf4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 390/872] python-prompt_toolkit1: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit1/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit1/template b/srcpkgs/python-prompt_toolkit1/template
index d117d620ba5..7afe6179f33 100644
--- a/srcpkgs/python-prompt_toolkit1/template
+++ b/srcpkgs/python-prompt_toolkit1/template
@@ -2,7 +2,7 @@
 pkgname=python-prompt_toolkit1
 reverts="2.0.9_1"
 version=1.0.15
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From ad672131c8ab27e3e4dfa04ab7264c23d46f206e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 391/872] python-prompt_toolkit2: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit2/template b/srcpkgs/python-prompt_toolkit2/template
index 0fa71fa06dc..d7f2fd11e14 100644
--- a/srcpkgs/python-prompt_toolkit2/template
+++ b/srcpkgs/python-prompt_toolkit2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prompt_toolkit2'
 pkgname=python-prompt_toolkit2
 version=2.0.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From 2d3dfe28989a26dbea6bd90097a7a4046839373e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 392/872] python-proselint: rebuild for Python 3.8.

---
 srcpkgs/python-proselint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-proselint/template b/srcpkgs/python-proselint/template
index c017c497386..b1da90de474 100644
--- a/srcpkgs/python-proselint/template
+++ b/srcpkgs/python-proselint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-proselint'
 pkgname=python-proselint
 version=0.10.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="proselint-${version}"
 build_style=python-module

From 3dceefa27e529cfd28f51c8b96cec007bd4464e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 393/872] python-protobuf: rebuild for Python 3.8.

---
 srcpkgs/python-protobuf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-protobuf/template b/srcpkgs/python-protobuf/template
index 4b736f1e7af..7dbed97fb76 100644
--- a/srcpkgs/python-protobuf/template
+++ b/srcpkgs/python-protobuf/template
@@ -1,7 +1,7 @@
 # Template file for 'python-protobuf'
 pkgname=python-protobuf
 version=3.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="protobuf-${version}"
 build_style=python-module

From abc13cfff04878580efaf4333ca9548112b11049 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 394/872] python-psutil: rebuild for Python 3.8.

---
 srcpkgs/python-psutil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psutil/template b/srcpkgs/python-psutil/template
index 96cbb3c399f..11353ed2179 100644
--- a/srcpkgs/python-psutil/template
+++ b/srcpkgs/python-psutil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psutil'
 pkgname=python-psutil
 version=5.6.3
-revision=1
+revision=2
 wrksrc="psutil-${version}"
 build_style=python-module
 pycompile_module="psutil"

From 970bcf29dafb825894593f644c2fb7b4f1b86aff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 395/872] python-psycopg2: rebuild for Python 3.8.

---
 srcpkgs/python-psycopg2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psycopg2/template b/srcpkgs/python-psycopg2/template
index f41de2880e6..14b28b8aed1 100644
--- a/srcpkgs/python-psycopg2/template
+++ b/srcpkgs/python-psycopg2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psycopg2'
 pkgname=python-psycopg2
 version=2.8.3
-revision=1
+revision=2
 wrksrc="psycopg2-${version}"
 build_style=python-module
 pycompile_module="psycopg2"

From f987fad321d899f07d159588838ad3f3bfd1eb12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 396/872] python-ptyprocess: rebuild for Python 3.8.

---
 srcpkgs/python-ptyprocess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ptyprocess/template b/srcpkgs/python-ptyprocess/template
index 04c4cf89391..fd2e51fa3ac 100644
--- a/srcpkgs/python-ptyprocess/template
+++ b/srcpkgs/python-ptyprocess/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ptyprocess'
 pkgname=python-ptyprocess
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ptyprocess-${version}"
 build_style=python-module

From 6854ff4b103875e8ed393d695b71afd7a2589626 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 397/872] python3-pulsectl: rebuild for Python 3.8.

---
 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 429dd1abe45..045afdb411b 100644
--- a/srcpkgs/python3-pulsectl/template
+++ b/srcpkgs/python3-pulsectl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pulsectl'
 pkgname=python3-pulsectl
 version=19.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pulsectl-${version}"
 build_style=python3-module

From e8331ef1c889bc2b1756c6ed55a1cc93186445af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 398/872] python-py: rebuild for Python 3.8.

---
 srcpkgs/python-py/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-py/template b/srcpkgs/python-py/template
index 99644bc228a..07a1ae2a21b 100644
--- a/srcpkgs/python-py/template
+++ b/srcpkgs/python-py/template
@@ -1,7 +1,7 @@
 # Template file for 'python-py'
 pkgname=python-py
 version=1.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="py-${version}"
 build_style=python-module

From 1f71c5025d9cb40d86e4245b6a90731b3f25c6fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 399/872] python-pyPEG2: rebuild for Python 3.8.

---
 srcpkgs/python-pyPEG2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyPEG2/template b/srcpkgs/python-pyPEG2/template
index 113948af730..6ba175687f1 100644
--- a/srcpkgs/python-pyPEG2/template
+++ b/srcpkgs/python-pyPEG2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyPEG2'
 pkgname=python-pyPEG2
 version=2.15.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 3f82483327ba7958b0a6f8b67e63abf009c360ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 400/872] python-pyacoustid: rebuild for Python 3.8.

---
 srcpkgs/python-pyacoustid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyacoustid/template b/srcpkgs/python-pyacoustid/template
index 068d3d52649..d5b2d967f4e 100644
--- a/srcpkgs/python-pyacoustid/template
+++ b/srcpkgs/python-pyacoustid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyacoustid'
 pkgname=python-pyacoustid
 version=1.1.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyacoustid-${version}"
 build_style=python-module

From da477a37411d7cf0d00da2dea60d734072705be7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 401/872] python-pyaes: rebuild for Python 3.8.

---
 srcpkgs/python-pyaes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyaes/template b/srcpkgs/python-pyaes/template
index a8c812a9e01..d31766d0481 100644
--- a/srcpkgs/python-pyaes/template
+++ b/srcpkgs/python-pyaes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyaes'
 pkgname=python-pyaes
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyaes-${version}"
 build_style=python-module

From 9e2b6fe7e7b67777d70eb25705c27d4ed6462a3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 402/872] python-pyasn1: rebuild for Python 3.8.

---
 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 510dfa09816..fcddad43633 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyasn1-${version}"
 build_style=python-module

From 712c6a81632d8741a302138a46ffd3b1c8fb079f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 403/872] python-pyasn1-modules: rebuild for Python 3.8.

---
 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 bc19e4940ed..b142819a272 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 989e8e1bc0a51f2fa1a88ec8f99eae20dd3e21ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 404/872] python3-pycares: rebuild for Python 3.8.

---
 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 c52702904b4..ed82808bada 100644
--- a/srcpkgs/python3-pycares/template
+++ b/srcpkgs/python3-pycares/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pycares'
 pkgname=python3-pycares
 version=2.3.0
-revision=2
+revision=3
 wrksrc="pycares-${version}"
 build_style=python3-module
 pycompile_module="pycares"

From 0885c6a30ff0765b465e0e4c84803b48b9090dc5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 405/872] python-pycodestyle: rebuild for Python 3.8.

---
 srcpkgs/python-pycodestyle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycodestyle/template b/srcpkgs/python-pycodestyle/template
index ca20d8e0c97..08bc8c8bec7 100644
--- a/srcpkgs/python-pycodestyle/template
+++ b/srcpkgs/python-pycodestyle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycodestyle'
 pkgname=python-pycodestyle
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycodestyle-${version}"
 build_style=python-module

From 61d0268320bb8306c2b2823a663588c885a01df6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 406/872] python-pycountry: rebuild for Python 3.8.

---
 srcpkgs/python-pycountry/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycountry/template b/srcpkgs/python-pycountry/template
index 88a0025f258..205db6240b7 100644
--- a/srcpkgs/python-pycountry/template
+++ b/srcpkgs/python-pycountry/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycountry'
 pkgname=python-pycountry
 version=18.12.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycountry-${version}"
 build_style=python-module

From e3a689e939cf482e09d50cf25b8f244cbec3dc12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 407/872] python-pycparser: rebuild for Python 3.8.

---
 srcpkgs/python-pycparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycparser/template b/srcpkgs/python-pycparser/template
index a521b3494ab..d2e83aa79b2 100644
--- a/srcpkgs/python-pycparser/template
+++ b/srcpkgs/python-pycparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycparser'
 pkgname=python-pycparser
 version=2.19
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycparser-${version}"
 build_style=python-module

From a86a5e2a75c91a868bf9b10f7ad9d86ca4df85d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 408/872] python-pycryptodome: rebuild for Python 3.8.

---
 srcpkgs/python-pycryptodome/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycryptodome/template b/srcpkgs/python-pycryptodome/template
index f01b5731c45..a4368d61b39 100644
--- a/srcpkgs/python-pycryptodome/template
+++ b/srcpkgs/python-pycryptodome/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycryptodome'
 pkgname=python-pycryptodome
 version=3.9.0
-revision=1
+revision=2
 wrksrc="pycryptodome-${version}"
 build_style=python-module
 pycompile_module="Crypto"

From 0cd2d63524942e2cfe5220436720dab24ef75308 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 409/872] python-pyelftools: rebuild for Python 3.8.

---
 srcpkgs/python-pyelftools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyelftools/template b/srcpkgs/python-pyelftools/template
index a6e9e9b644e..193650442fc 100644
--- a/srcpkgs/python-pyelftools/template
+++ b/srcpkgs/python-pyelftools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyelftools'
 pkgname=python-pyelftools
 version=0.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyelftools-${version}"
 build_style=python-module

From 61ae993767f544e608a601e6727e58b8c73400fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 410/872] python3-pyfiglet: rebuild for Python 3.8.

---
 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 d00b4fda62a..a4a67b12d42 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=1
+revision=2
 archs=noarch
 wrksrc="pyfiglet-${version}"
 build_style="python3-module"

From 7f5bd3a27f56badc9d95d3b2b7a684604262af1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 411/872] python-pyflakes: rebuild for Python 3.8.

---
 srcpkgs/python-pyflakes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyflakes/template b/srcpkgs/python-pyflakes/template
index 86d477c47f2..19229ebb3a4 100644
--- a/srcpkgs/python-pyflakes/template
+++ b/srcpkgs/python-pyflakes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyflakes'
 pkgname=python-pyflakes
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyflakes-${version}"
 build_style=python-module

From a811c56d34b1f53ac8aeca03f5247410137fe8d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 412/872] python-pygame: rebuild for Python 3.8.

---
 srcpkgs/python-pygame/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pygame/template b/srcpkgs/python-pygame/template
index a510333df6e..a900d62dbe3 100644
--- a/srcpkgs/python-pygame/template
+++ b/srcpkgs/python-pygame/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pygame'
 pkgname=python-pygame
 version=1.9.4
-revision=2
+revision=3
 wrksrc="pygame-${version}"
 build_style=python-module
 pycompile_module="pygame"

From e62822b2e5fa56868e80f10a019c7a0d66abbcbd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 413/872] python-pyglet: rebuild for Python 3.8.

---
 srcpkgs/python-pyglet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyglet/template b/srcpkgs/python-pyglet/template
index f8315bdf616..ee6ed16064c 100644
--- a/srcpkgs/python-pyglet/template
+++ b/srcpkgs/python-pyglet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyglet'
 pkgname=python-pyglet
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyglet-${version}"
 build_style=python-module

From 1f0bf2cea3a10c9982132fbe81c5ebd884defa35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 414/872] python3-pykeepass: rebuild for Python 3.8.

---
 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 c0e0fd4db41..135da6fea65 100644
--- a/srcpkgs/python3-pykeepass/template
+++ b/srcpkgs/python3-pykeepass/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pykeepass'
 pkgname=python3-pykeepass
 version=3.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="pykeepass-${version}"
 build_style=python3-module

From f2d7f9a6199d6780975ad9efb639642e96acc8c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 415/872] python3-pykwalify: rebuild for Python 3.8.

---
 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 27bc0c37355..b3727aba651 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pykwalify-${version}"
 build_style=python3-module

From cb348b8cc013bee10cb1adcdd5b9dac8e8f37a83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 416/872] python3-pylast: rebuild for Python 3.8.

---
 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 187b51943a8..60184348d80 100644
--- a/srcpkgs/python3-pylast/template
+++ b/srcpkgs/python3-pylast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylast'
 pkgname=python3-pylast
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylast-${version}"
 build_style=python3-module

From 6629ec0088134c22cfb115f29fd4a90a9b38e7a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 417/872] python3-pylibgen: rebuild for Python 3.8.

---
 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 641bf649c17..540ccb32790 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylibgen-${version}"
 build_style=python3-module

From 953751fa6deeafefea78df4f5ec27ee5c5c9902d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 418/872] python3-pylint: rebuild for Python 3.8.

---
 srcpkgs/python3-pylint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pylint/template b/srcpkgs/python3-pylint/template
index 6c8800069f0..315dbffb3fc 100644
--- a/srcpkgs/python3-pylint/template
+++ b/srcpkgs/python3-pylint/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylint'
 pkgname=python3-pylint
 version=2.3.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="pylint-${version}"
 build_style=python3-module

From 96bc4e17e1f144c3528e0ec3b455d501c2c3efdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 419/872] python-pynacl: rebuild for Python 3.8.

---
 srcpkgs/python-pynacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pynacl/template b/srcpkgs/python-pynacl/template
index 6ead91820b1..7a7fe246821 100644
--- a/srcpkgs/python-pynacl/template
+++ b/srcpkgs/python-pynacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pynacl'
 pkgname=python-pynacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python-module
 pycompile_module="nacl"

From ec1da9dfd353e059b23780a676ef1561f56f9b2e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 420/872] python-pyotp: rebuild for Python 3.8.

---
 srcpkgs/python-pyotp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyotp/template b/srcpkgs/python-pyotp/template
index 54714ee2ebb..b70bd73d4aa 100644
--- a/srcpkgs/python-pyotp/template
+++ b/srcpkgs/python-pyotp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyotp'
 pkgname=python-pyotp
 version=2.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyotp-${version}"
 build_style=python-module

From 3c83515599af94f7483a3e165f03547f9daa2835 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 421/872] python-pyperclip: rebuild for Python 3.8.

---
 srcpkgs/python-pyperclip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyperclip/template b/srcpkgs/python-pyperclip/template
index 512dc8d3dfb..b173f1479a5 100644
--- a/srcpkgs/python-pyperclip/template
+++ b/srcpkgs/python-pyperclip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyperclip'
 pkgname=python-pyperclip
 version=1.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=pyperclip-${version}
 build_style=python-module

From 6d17f7510d6ce4ec430e8bf72567fecdbd521681 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 422/872] python-pyqtgraph: rebuild for Python 3.8.

---
 srcpkgs/python-pyqtgraph/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyqtgraph/template b/srcpkgs/python-pyqtgraph/template
index f90e2b15319..1bea9c2ffdf 100644
--- a/srcpkgs/python-pyqtgraph/template
+++ b/srcpkgs/python-pyqtgraph/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyqtgraph'
 pkgname=python-pyqtgraph
 version=0.10.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${pkgname#*-}-${version}"
 build_style=python-module

From fff21c3dd38242e2992b276e00f6970f96a34293 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 423/872] python-pyrfc3339: rebuild for Python 3.8.

---
 srcpkgs/python-pyrfc3339/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyrfc3339/template b/srcpkgs/python-pyrfc3339/template
index 618e46d1c4b..cd81c4d0624 100644
--- a/srcpkgs/python-pyrfc3339/template
+++ b/srcpkgs/python-pyrfc3339/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyrfc3339'
 pkgname=python-pyrfc3339
 version=1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="pyrfc3339"

From bdfc6ef4d47bd373ff649510c96f640b48da738a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 424/872] python-pyscss: rebuild for Python 3.8.

---
 srcpkgs/python-pyscss/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyscss/template b/srcpkgs/python-pyscss/template
index 1f7d8b7d8cd..1a8e9c44d7d 100644
--- a/srcpkgs/python-pyscss/template
+++ b/srcpkgs/python-pyscss/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyscss'
 pkgname=python-pyscss
 version=1.3.5
-revision=6
+revision=7
 wrksrc="pyScss-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pcre-devel"

From 6bdfad32f6894df0a7f3eb185662fa32228408ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 425/872] python3-pysdl2: rebuild for Python 3.8.

---
 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 d59ea7d7fa2..3efdca5b667 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=1
+revision=2
 archs=noarch
 wrksrc="py-sdl2-rel_${version//./_}"
 build_style=python3-module

From 67dab081767478a600fbc44d5333dc2746a683ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 426/872] python-pyserial: rebuild for Python 3.8.

---
 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 8808e76d206..354be493b16 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=2
+revision=3
 archs=noarch
 wrksrc="pyserial-${version}"
 build_style=python-module

From a6914f6aa35af001fd954260658bed6e1e5df2bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 427/872] python3-pyside2: rebuild for Python 3.8.

---
 srcpkgs/python3-pyside2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pyside2/template b/srcpkgs/python3-pyside2/template
index a5d60b17568..1da3400f239 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.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From deee942f64ef5e0e70f6a45a7f9e3a2593d53add Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 428/872] python3-pysigset: rebuild for Python 3.8.

---
 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 8de87145a09..50d9162ea70 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.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysigset-${version}"
 build_style=python3-module

From 913752d5b84f0054c829fc060939c366bf5b28cb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 429/872] python-pysocks: rebuild for Python 3.8.

---
 srcpkgs/python-pysocks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysocks/template b/srcpkgs/python-pysocks/template
index 68a27819e3d..d9b216aeab8 100644
--- a/srcpkgs/python-pysocks/template
+++ b/srcpkgs/python-pysocks/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysocks'
 pkgname=python-pysocks
 version=1.6.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="PySocks-${version}"
 build_style=python-module

From e256b35c573b66ccaaffbf92ee92ecad250db3c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 430/872] python3-pysol_cards: rebuild for Python 3.8.

---
 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 e03d92fe077..a37429754a2 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.8.6
-revision=1
+revision=2
 wrksrc="pysol_cards-${version}"
 build_style=python3-module
 pycompile_module="pysol_cards"

From d29dab0ddee296649a1f4ace5c33678cc349d6ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 431/872] python-pysrt: rebuild for Python 3.8.

---
 srcpkgs/python-pysrt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysrt/template b/srcpkgs/python-pysrt/template
index 061435a52c7..7e154825bef 100644
--- a/srcpkgs/python-pysrt/template
+++ b/srcpkgs/python-pysrt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysrt'
 pkgname=python-pysrt
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysrt-${version}"
 build_style=python-module

From 4ba7eb802460f8e4e15f1389bebd64237c6f1aec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 432/872] python-pystache: rebuild for Python 3.8.

---
 srcpkgs/python-pystache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pystache/template b/srcpkgs/python-pystache/template
index 13f8b04aa88..c1a5bcd57d9 100644
--- a/srcpkgs/python-pystache/template
+++ b/srcpkgs/python-pystache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pystache'
 pkgname=python-pystache
 version=0.5.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pystache-${version}"
 build_style=python-module

From a6a1d8010f3909cc551f70485efc660b22168f46 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 433/872] python-pyte: rebuild for Python 3.8.

---
 srcpkgs/python-pyte/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyte/template b/srcpkgs/python-pyte/template
index 43b708adc66..76efbec91d1 100644
--- a/srcpkgs/python-pyte/template
+++ b/srcpkgs/python-pyte/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyte'
 pkgname=python-pyte
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyte-${version}"
 build_style=python-module

From 03679e357b0bdbd90ddbb6deba5693594ef9d592 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 434/872] python-pytest: rebuild for Python 3.8.

---
 srcpkgs/python-pytest/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest/template b/srcpkgs/python-pytest/template
index 6481f21e677..d5c246599c6 100644
--- a/srcpkgs/python-pytest/template
+++ b/srcpkgs/python-pytest/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest'
 pkgname=python-pytest
 version=3.7.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From d8ff8818fa4f90c63cf468feb2bba5d8b9dca026 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 435/872] python3-pytest-asyncio: rebuild for Python 3.8.

---
 srcpkgs/python3-pytest-asyncio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template
index bd104f99e2c..0c90d33a9e5 100644
--- a/srcpkgs/python3-pytest-asyncio/template
+++ b/srcpkgs/python3-pytest-asyncio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pytest-asyncio'
 pkgname=python3-pytest-asyncio
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytest-asyncio-${version}"
 build_style=python3-module

From 8bdff4905b1d2e832656b8dde532b566e516752c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 436/872] python-pytest-fixture-config: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-fixture-config/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-fixture-config/template b/srcpkgs/python-pytest-fixture-config/template
index cd3e38a592a..14255af8a35 100644
--- a/srcpkgs/python-pytest-fixture-config/template
+++ b/srcpkgs/python-pytest-fixture-config/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-fixture-config'
 pkgname=python-pytest-fixture-config
 version=1.3.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 89c93c6cebe4d9e57d61a6e1c0d1782514496073 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 437/872] python-pytest-mock: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-mock/template b/srcpkgs/python-pytest-mock/template
index f3dc85810b6..240e8773aaa 100644
--- a/srcpkgs/python-pytest-mock/template
+++ b/srcpkgs/python-pytest-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-mock'
 pkgname=python-pytest-mock
 version=1.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From e10ffc843814c368a7fd76e24e6afa8512ce198c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 438/872] python-pytz: rebuild for Python 3.8.

---
 srcpkgs/python-pytz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytz/template b/srcpkgs/python-pytz/template
index d6becf829a7..40f582962c8 100644
--- a/srcpkgs/python-pytz/template
+++ b/srcpkgs/python-pytz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytz'
 pkgname=python-pytz
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytz-${version}"
 build_style=python-module

From 562767d788b8e163bcde2dbd45de9eca2899bd90 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 439/872] python-pyudev: rebuild for Python 3.8.

---
 srcpkgs/python-pyudev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyudev/template b/srcpkgs/python-pyudev/template
index d059b7882a2..2ec53088636 100644
--- a/srcpkgs/python-pyudev/template
+++ b/srcpkgs/python-pyudev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyudev'
 pkgname=python-pyudev
 version=0.21.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyudev-${version}"
 build_style=python-module

From bb91a3d4616a0e9dbf1a34b271d62527a455f4ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 440/872] python3-pyx: rebuild for Python 3.8.

---
 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 87608c43428..89963bed89f 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.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="PyX-${version}"
 build_style=python3-module

From caa3ad83cde6d2b66687ae0ac2bb87dfd8eb100f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 441/872] python-pyzbar: rebuild for Python 3.8.

---
 srcpkgs/python-pyzbar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzbar/template b/srcpkgs/python-pyzbar/template
index 06ae37a5708..35b568eb4e6 100644
--- a/srcpkgs/python-pyzbar/template
+++ b/srcpkgs/python-pyzbar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzbar'
 pkgname=python-pyzbar
 version=0.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyzbar-${version}"
 build_style=python-module

From 83e0ba8fd12c3f07b4f3c2f8109ff0cd9a69353b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 442/872] python-pyzmq: rebuild for Python 3.8.

---
 srcpkgs/python-pyzmq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzmq/template b/srcpkgs/python-pyzmq/template
index 859aab5983d..27dbe29e516 100644
--- a/srcpkgs/python-pyzmq/template
+++ b/srcpkgs/python-pyzmq/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzmq'
 pkgname=python-pyzmq
 version=18.0.1
-revision=1
+revision=2
 wrksrc="pyzmq-${version}"
 build_style=python-module
 make_build_args="--zmq=${XBPS_CROSS_BASE}/usr"

From 2d71150f372801e322d8ee5f31b2bc67795fc3a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 443/872] python-qrcode: rebuild for Python 3.8.

---
 srcpkgs/python-qrcode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-qrcode/template b/srcpkgs/python-qrcode/template
index 9deb485855f..bf35c82757e 100644
--- a/srcpkgs/python-qrcode/template
+++ b/srcpkgs/python-qrcode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-qrcode'
 pkgname=python-qrcode
 version=6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="qrcode-${version}"
 build_style=python-module

From 55eeefa7bb378b38024ce5c57d228c5d2c24875f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 444/872] python-random2: rebuild for Python 3.8.

---
 srcpkgs/python-random2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-random2/template b/srcpkgs/python-random2/template
index 92f36fee139..2603cae3584 100644
--- a/srcpkgs/python-random2/template
+++ b/srcpkgs/python-random2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-random2'
 pkgname=python-random2
 version=1.0.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="random2-${version}"
 build_style=python-module

From 4aa520f994404a836b859a95bf53280ec662d779 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 445/872] python-rarfile: rebuild for Python 3.8.

---
 srcpkgs/python-rarfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rarfile/template b/srcpkgs/python-rarfile/template
index e0c597c1fb1..e3b6f3e2887 100644
--- a/srcpkgs/python-rarfile/template
+++ b/srcpkgs/python-rarfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rarfile'
 pkgname=python-rarfile
 version=3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="rarfile-${version}"
 build_style=python-module

From 77edc413dd0a2b7d7423d47946137d1db7452b91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 446/872] python-raven: rebuild for Python 3.8.

---
 srcpkgs/python-raven/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-raven/template b/srcpkgs/python-raven/template
index eec4e5f49b6..87382c21602 100644
--- a/srcpkgs/python-raven/template
+++ b/srcpkgs/python-raven/template
@@ -1,7 +1,7 @@
 # Template file for 'python-raven'
 pkgname=python-raven
 version=6.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="raven-${version}"
 build_style=python-module

From 0fd244bc29d49109b475295b68c11c496626bd43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 447/872] python-rdflib: rebuild for Python 3.8.

---
 srcpkgs/python-rdflib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rdflib/template b/srcpkgs/python-rdflib/template
index 0512abb0e5a..f676dedfb2f 100644
--- a/srcpkgs/python-rdflib/template
+++ b/srcpkgs/python-rdflib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rdflib'
 pkgname=python-rdflib
 version=4.2.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="rdflib-${version}"
 build_style=python-module

From 52682c54b0a7808306dcb6c0c9af5436d056d6a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 448/872] python-readability-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-readability-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-readability-lxml/template b/srcpkgs/python-readability-lxml/template
index ddf0602b730..19dadaa336f 100644
--- a/srcpkgs/python-readability-lxml/template
+++ b/srcpkgs/python-readability-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-readability-lxml'
 pkgname=python-readability-lxml
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="readability-lxml-${version}"
 build_style=python-module

From 5b239aeb5613465b0d414e14b8b37a83f65232fc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 449/872] python3-readlike: rebuild for Python 3.8.

---
 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 cbba969b076..43159962442 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=1
+revision=2
 archs=noarch
 wrksrc=readlike-${version}
 build_style=python3-module

From 10ff7da432e0f1563ed8c4feb921648f20e75246 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 450/872] python-rebulk: rebuild for Python 3.8.

---
 srcpkgs/python-rebulk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rebulk/template b/srcpkgs/python-rebulk/template
index 1cf6cf623c8..8f9c2621304 100644
--- a/srcpkgs/python-rebulk/template
+++ b/srcpkgs/python-rebulk/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rebulk'
 pkgname=python-rebulk
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rebulk-${version}"
 build_style=python-module

From b720f89f9fb6ecb79aa43ff92f151239049cb9c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 451/872] python-redis: rebuild for Python 3.8.

---
 srcpkgs/python-redis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-redis/template b/srcpkgs/python-redis/template
index f57c0d841b3..b7e773fde54 100644
--- a/srcpkgs/python-redis/template
+++ b/srcpkgs/python-redis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-redis'
 pkgname=python-redis
 version=2.10.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="redis-${version}"
 build_style=python-module

From 90d47f03a3f7a55f623c0b5019b0b58b6169aae5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 452/872] python-regex: rebuild for Python 3.8.

---
 srcpkgs/python-regex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-regex/template b/srcpkgs/python-regex/template
index 33e99b0127b..7a624db9477 100644
--- a/srcpkgs/python-regex/template
+++ b/srcpkgs/python-regex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-regex'
 pkgname=python-regex
 version=2019.08.19
-revision=1
+revision=2
 wrksrc="regex-${version}"
 build_style=python-module
 pycompile_module="_regex_core.py regex.py test_regex.py"

From e132fc559392a2f2a5268100218ef2061759c476 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 453/872] python-rencode: rebuild for Python 3.8.

---
 srcpkgs/python-rencode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rencode/template b/srcpkgs/python-rencode/template
index 7176038a60a..021e1d414b8 100644
--- a/srcpkgs/python-rencode/template
+++ b/srcpkgs/python-rencode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rencode'
 pkgname=python-rencode
 version=1.0.6
-revision=2
+revision=3
 wrksrc="rencode-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"

From 635743944483bd5fdbf4a909ef4874532f1035b9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 454/872] python-reportlab: rebuild for Python 3.8.

---
 srcpkgs/python-reportlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-reportlab/template b/srcpkgs/python-reportlab/template
index 7f153d65a2a..3915767b6d3 100644
--- a/srcpkgs/python-reportlab/template
+++ b/srcpkgs/python-reportlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-reportlab'
 pkgname=python-reportlab
 version=3.5.23
-revision=1
+revision=2
 wrksrc="reportlab-${version}"
 build_style=python-module
 pycompile_module="reportlab"

From 4a6d7b1e5e0d64a6834cc210da11806cbe217453 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 455/872] python-requests: rebuild for Python 3.8.

---
 srcpkgs/python-requests/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests/template b/srcpkgs/python-requests/template
index fc806b611e9..73d2d5945ef 100644
--- a/srcpkgs/python-requests/template
+++ b/srcpkgs/python-requests/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests'
 pkgname=python-requests
 version=2.22.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-${version}"
 build_style=python-module

From 61f6560b710773eab8296ef28bd943f5dc0d290d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 456/872] python-requests-mock: rebuild for Python 3.8.

---
 srcpkgs/python-requests-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-mock/template b/srcpkgs/python-requests-mock/template
index 5b89b5ed3b8..2d1410fcd1b 100644
--- a/srcpkgs/python-requests-mock/template
+++ b/srcpkgs/python-requests-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-mock'
 pkgname=python-requests-mock
 version=1.5.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="requests-mock-${version}"
 build_style=python-module

From f4f04d85ce7abb39fbbf306bc3c1dcfc467cdf14 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 457/872] python-requests-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-requests-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-oauthlib/template b/srcpkgs/python-requests-oauthlib/template
index b011ea17a36..8cd838090a7 100644
--- a/srcpkgs/python-requests-oauthlib/template
+++ b/srcpkgs/python-requests-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-oauthlib'
 pkgname=python-requests-oauthlib
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5853f21b57bde4c4e66293b132fba4fc03804518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 458/872] python-requests-toolbelt: rebuild for Python 3.8.

---
 srcpkgs/python-requests-toolbelt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-toolbelt/template b/srcpkgs/python-requests-toolbelt/template
index 3ba66a0a007..13a81586221 100644
--- a/srcpkgs/python-requests-toolbelt/template
+++ b/srcpkgs/python-requests-toolbelt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-toolbelt'
 pkgname=python-requests-toolbelt
 version=0.9.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 14171483829854051f0c8030562c1052094d78c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 459/872] python3-requests-unixsocket: rebuild for Python 3.8.

---
 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 ec9e1074566..fd389ec2d13 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-unixsocket-${version}"
 build_style=python3-module

From 9b589212b423bd7e2dfbb7ab7ef63c65b9dd07cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 460/872] python-rfc6555: rebuild for Python 3.8.

---
 srcpkgs/python-rfc6555/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rfc6555/template b/srcpkgs/python-rfc6555/template
index c3babc25b93..2522872cc32 100644
--- a/srcpkgs/python-rfc6555/template
+++ b/srcpkgs/python-rfc6555/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rfc6555'
 pkgname=python-rfc6555
 version=0.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rfc6555-${version}"
 build_style=python-module

From a399a96d8293a9387f5648001a03178d2550059b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 461/872] python-ripe-atlas-cousteau: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-cousteau/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-cousteau/template b/srcpkgs/python-ripe-atlas-cousteau/template
index ac16300fe3d..72f32a9da0d 100644
--- a/srcpkgs/python-ripe-atlas-cousteau/template
+++ b/srcpkgs/python-ripe-atlas-cousteau/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-cousteau'
 pkgname=python-ripe-atlas-cousteau
 version=1.4.2
-revision=1
+revision=2
 build_style=python-module
 archs=noarch
 pycompile_module="ripe/atlas/cousteau"

From 4c2ddc085f45f52b438013ad3d494f8f59859504 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 462/872] python-ripe-atlas-sagan: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-sagan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-sagan/template b/srcpkgs/python-ripe-atlas-sagan/template
index 60a9b883b93..22abb48af46 100644
--- a/srcpkgs/python-ripe-atlas-sagan/template
+++ b/srcpkgs/python-ripe-atlas-sagan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-sagan'
 pkgname=python-ripe-atlas-sagan
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ripe.atlas.sagan-${version}"
 build_style=python-module

From 10e7db3d51d8370e317d667edc372d0fcfd5bad9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 463/872] python-rsa: rebuild for Python 3.8.

---
 srcpkgs/python-rsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rsa/template b/srcpkgs/python-rsa/template
index a4ae59846ff..11e9bf2c60d 100644
--- a/srcpkgs/python-rsa/template
+++ b/srcpkgs/python-rsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rsa'
 pkgname=python-rsa
 version=4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a3bbda3918c5b4bb668860ba5bbd81f83f1a4925 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 464/872] python3-rsistent: rebuild for Python 3.8.

---
 srcpkgs/python3-rsistent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-rsistent/template b/srcpkgs/python3-rsistent/template
index 13019f472cd..7897e107b2b 100644
--- a/srcpkgs/python3-rsistent/template
+++ b/srcpkgs/python3-rsistent/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-rsistent'
 pkgname=python3-rsistent
 version=0.15.4
-revision=1
+revision=2
 wrksrc="pyrsistent-${version}"
 build_style=python3-module
 pycompile_module="pyrsistent"

From 7d4c9082b7051c6ce978ca21f34f138189c7f2d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 465/872] python3-rss2email: rebuild for Python 3.8.

---
 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 d07984d33d8..34e7d4e65a6 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.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="rss2email-${version}"
 build_style=python3-module

From a0a5e6df8a02d98f37c3c22c043adb325c8a8a62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 466/872] python-ruamel.yaml: rebuild for Python 3.8.

---
 srcpkgs/python-ruamel.yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ruamel.yaml/template b/srcpkgs/python-ruamel.yaml/template
index d86ddfc67c9..789f8a7acd2 100644
--- a/srcpkgs/python-ruamel.yaml/template
+++ b/srcpkgs/python-ruamel.yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ruamel.yaml'
 pkgname=python-ruamel.yaml
 version=0.15.92
-revision=1
+revision=2
 wrksrc="ruamel.yaml-${version}"
 build_style=python-module
 pycompile_module="ruamel/yaml"

From 6b579f083949bbd67a78d66ae983de1f36f03a82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 467/872] python3-s-tui: rebuild for Python 3.8.

---
 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 4c7db6ff3c9..85a945b1b09 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=0.8.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="s-tui-${version}"
 build_style=python3-module

From 5cc92799a690ba40dd26192e3f0182e07089683a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 468/872] python-s3transfer: rebuild for Python 3.8.

---
 srcpkgs/python-s3transfer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-s3transfer/template b/srcpkgs/python-s3transfer/template
index e306c3c3b1a..dd92eeff657 100644
--- a/srcpkgs/python-s3transfer/template
+++ b/srcpkgs/python-s3transfer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-s3transfer'
 pkgname=python-s3transfer
 version=0.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="s3transfer-${version}"
 build_style=python-module

From 2ec5386706a289e510b5b03e33cf74e0a23596a6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 469/872] python3-saml2: rebuild for Python 3.8.

---
 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 e94602a82ea..c0dabb5e9d0 100644
--- a/srcpkgs/python3-saml2/template
+++ b/srcpkgs/python3-saml2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-saml2'
 pkgname=python3-saml2
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysaml2-${version}"
 build_style=python3-module

From e856d28eb580f0af5442d11d24ffacdd7fade12b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 470/872] python-scandir: rebuild for Python 3.8.

---
 srcpkgs/python-scandir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scandir/template b/srcpkgs/python-scandir/template
index 774fac91b8f..b02fe6d0281 100644
--- a/srcpkgs/python-scandir/template
+++ b/srcpkgs/python-scandir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scandir'
 pkgname=python-scandir
 version=1.10.0
-revision=2
+revision=3
 wrksrc="scandir-${version}"
 build_style=python-module
 pycompile_module="scandir.py"

From 3b5e1eeb2ce0519b51592cebffc1bd89dce0f96c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 471/872] python3-scard: rebuild for Python 3.8.

---
 srcpkgs/python3-scard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scard/template b/srcpkgs/python3-scard/template
index 793f144a74b..279419ac3e3 100644
--- a/srcpkgs/python3-scard/template
+++ b/srcpkgs/python3-scard/template
@@ -2,7 +2,7 @@
 pkgname=python3-scard
 _pkgname=pyscard
 version=1.9.8
-revision=1
+revision=2
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module
 pycompile_module=smartcard

From f62ba61eaebce26c267e2d453d8e0ea6e005a285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 472/872] python3-scikit-learn: rebuild for Python 3.8.

---
 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 73799b9f420..8ac82167832 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.20.4
-revision=1
+revision=2
 wrksrc="scikit-learn-${version}"
 build_style=python3-module
 pycompile_module="sklearn"

From ccf4f6aa1bd0ba8aaf9499dcacb1320a77221004 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 473/872] python3-scipy: rebuild for Python 3.8.

---
 srcpkgs/python3-scipy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scipy/template b/srcpkgs/python3-scipy/template
index 291ac3734f1..2cef9ac33e1 100644
--- a/srcpkgs/python3-scipy/template
+++ b/srcpkgs/python3-scipy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-scipy'
 pkgname=python3-scipy
 version=1.3.1
-revision=1
+revision=2
 wrksrc="scipy-${version}"
 build_style=python3-module
 pycompile_module="scipy"

From 04cbe0c6403a4ecd9cda36e10bba5d06e472823d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 474/872] python-scour: rebuild for Python 3.8.

---
 srcpkgs/python-scour/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scour/template b/srcpkgs/python-scour/template
index b78cf37f057..0db5b157ce1 100644
--- a/srcpkgs/python-scour/template
+++ b/srcpkgs/python-scour/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scour'
 pkgname=python-scour
 version=0.37
-revision=1
+revision=2
 archs=noarch
 wrksrc="scour-${version}"
 build_style=python-module

From 0fd08871993ece59d562feb8472d05249ae1d76a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 475/872] python3-scruffy: rebuild for Python 3.8.

---
 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 e797b110f42..62a21a74eca 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="scruffy-${version}"
 build_style=python3-module

From 65cb259cf8f67f78fe484e4423fe0006aae17045 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 476/872] python-send2trash: rebuild for Python 3.8.

---
 srcpkgs/python-send2trash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-send2trash/template b/srcpkgs/python-send2trash/template
index 49c3a2b3d77..94f56545695 100644
--- a/srcpkgs/python-send2trash/template
+++ b/srcpkgs/python-send2trash/template
@@ -1,7 +1,7 @@
 # Template file for 'python-send2trash'
 pkgname=python-send2trash
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="send2trash-${version}"
 build_style=python-module

From 04a4413d706d49df8a415b9714091b0e4bb0fdfa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 477/872] python-serpent: rebuild for Python 3.8.

---
 srcpkgs/python-serpent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-serpent/template b/srcpkgs/python-serpent/template
index b60d390c1ab..a40f0d44515 100644
--- a/srcpkgs/python-serpent/template
+++ b/srcpkgs/python-serpent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-serpent'
 pkgname=python-serpent
 version=1.28
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38131f811a874463c71c55408ef6e629166a5b8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 478/872] python-service_identity: rebuild for Python 3.8.

---
 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 eae084c858f..e21a1520a75 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=1
+revision=2
 archs=noarch
 wrksrc="service_identity-${version}"
 build_style=python-module

From 9a538d41d8b848da9da43cd5d6f80428b7208be8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 479/872] setconf: rebuild for Python 3.8.

---
 srcpkgs/setconf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/setconf/template b/srcpkgs/setconf/template
index a3d22376a5b..1911c558c77 100644
--- a/srcpkgs/setconf/template
+++ b/srcpkgs/setconf/template
@@ -1,7 +1,7 @@
 # Template file for 'setconf'
 pkgname=setconf
 version=0.7.6
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="setconf.py"

From aacff3894cc42a49ab1becc06f64f23197302443 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 480/872] python-setproctitle: rebuild for Python 3.8.

---
 srcpkgs/python-setproctitle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setproctitle/template b/srcpkgs/python-setproctitle/template
index d0d41ae888d..c47e3a9db53 100644
--- a/srcpkgs/python-setproctitle/template
+++ b/srcpkgs/python-setproctitle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setproctitle'
 pkgname=python-setproctitle
 version=1.1.10
-revision=5
+revision=6
 wrksrc="setproctitle-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e2b8c2ac8d355cdb0f221b80ab39e2ef92beb3e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 481/872] python-setuptools: rebuild for Python 3.8.

---
 srcpkgs/python-setuptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setuptools/template b/srcpkgs/python-setuptools/template
index 382a9b45bcd..a172f8e8e09 100644
--- a/srcpkgs/python-setuptools/template
+++ b/srcpkgs/python-setuptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setuptools'
 pkgname=python-setuptools
 version=41.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python-module

From 5feb793ba33633318f41644f84b5ffd5428e2d4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 482/872] python-sh: rebuild for Python 3.8.

---
 srcpkgs/python-sh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sh/template b/srcpkgs/python-sh/template
index 1826986b25c..76985dc1f01 100644
--- a/srcpkgs/python-sh/template
+++ b/srcpkgs/python-sh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sh'
 pkgname=python-sh
 version=1.12.14
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From f0cfe151eea6fcf86d1196385a1ac0057a65ab48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 483/872] python-shapely: rebuild for Python 3.8.

---
 srcpkgs/python-shapely/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-shapely/template b/srcpkgs/python-shapely/template
index 25cc875a02c..114726838f9 100644
--- a/srcpkgs/python-shapely/template
+++ b/srcpkgs/python-shapely/template
@@ -1,7 +1,7 @@
 # Template file for 'python-shapely'
 pkgname=python-shapely
 version=1.7a1
-revision=2
+revision=3
 wrksrc="Shapely-${version}"
 build_style=python-module
 pycompile_module="shapely"

From 0908618383925caf43243de8097dbf6491149f8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 484/872] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index d552ce8432d..1f9c8043b46 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=4
+revision=5
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From 14af86f199e28c6eae170b10c1c662bd0184b73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 485/872] shiboken2: rebuild for Python 3.8.

---
 srcpkgs/shiboken2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken2/template b/srcpkgs/shiboken2/template
index 394d9ba4f94..a08edf3f2a0 100644
--- a/srcpkgs/shiboken2/template
+++ b/srcpkgs/shiboken2/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken2'
 pkgname=shiboken2
 version=5.11.2
-revision=2
+revision=3
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From 9ea535c3baf70c69a2bbe07d057742af1877d648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 486/872] python3-shodan: rebuild for Python 3.8.

---
 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 858a0b921f8..033b5a269ff 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.19.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="shodan-python-${version}"
 build_style=python3-module

From 76805ea236fc7f4ecd5948a492413602efff91e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 487/872] python3-signedjson: rebuild for Python 3.8.

---
 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 6f6fb339fd2..d8f9b06b22f 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-signedjson-${version}"
 build_style=python3-module

From 12e9d209470a13cdd9063e5544ffd00c5952138e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 488/872] python-simplebayes: rebuild for Python 3.8.

---
 srcpkgs/python-simplebayes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplebayes/template b/srcpkgs/python-simplebayes/template
index e76b94ad549..6c95222fa7e 100644
--- a/srcpkgs/python-simplebayes/template
+++ b/srcpkgs/python-simplebayes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplebayes'
 pkgname=python-simplebayes
 version=1.5.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="simplebayes-${version}"
 build_style=python-module

From d1ad830144a3e370bbac6e82affb1d06805dfdbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 489/872] python-simplegeneric: rebuild for Python 3.8.

---
 srcpkgs/python-simplegeneric/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplegeneric/template b/srcpkgs/python-simplegeneric/template
index 3dc4e1dda94..f352387fa1f 100644
--- a/srcpkgs/python-simplegeneric/template
+++ b/srcpkgs/python-simplegeneric/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplegeneric'
 pkgname=python-simplegeneric
 version=0.8.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="simplegeneric-${version}"
 build_style=python-module

From f6d990c1a1436b305f8b5af6f58c1f6430d96dc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 490/872] python-simplejson: rebuild for Python 3.8.

---
 srcpkgs/python-simplejson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplejson/template b/srcpkgs/python-simplejson/template
index b453ae952ba..1b8523d0d46 100644
--- a/srcpkgs/python-simplejson/template
+++ b/srcpkgs/python-simplejson/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplejson'
 pkgname=python-simplejson
 version=3.16.1
-revision=2
+revision=3
 wrksrc="simplejson-${version}"
 build_style=python-module
 pycompile_module="simplejson"

From b6f0878a2894ffdd731251a64a26cb1ddf40038a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 491/872] sip: rebuild for Python 3.8.

---
 srcpkgs/sip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sip/template b/srcpkgs/sip/template
index 9d09b823bb6..0e8a81000b1 100644
--- a/srcpkgs/sip/template
+++ b/srcpkgs/sip/template
@@ -1,7 +1,7 @@
 # Template file for 'sip'
 pkgname=sip
 version=4.19.18
-revision=1
+revision=2
 wrksrc="sip-${version}"
 hostmakedepends="python-devel python3-devel"
 makedepends="${hostmakedepends}"

From 5f24e47fb2b044495bbf0ee108d18220ad3b3bd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 492/872] python-six: rebuild for Python 3.8.

---
 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 c6d91f5ece9..a25323caa2a 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.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="six-${version}"
 build_style=python-module

From 09784cf129c5a66b731964fcda119a53dd9dbb7b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 493/872] python3-slixmpp: rebuild for Python 3.8.

---
 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 db367c3d0ab..cbbde6f394b 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.4.2
-revision=1
+revision=2
 wrksrc="slixmpp-${version}"
 build_style=python3-module
 pycompile_module="slixmpp"

From 5e4eb88ccd16957dc33f6923ae3a72151385e9ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 494/872] python3-slugify: rebuild for Python 3.8.

---
 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 44d37f2aed7..012bb98f063 100644
--- a/srcpkgs/python3-slugify/template
+++ b/srcpkgs/python3-slugify/template
@@ -3,7 +3,7 @@ pkgname=python3-slugify
 # Please don't update. Only required by Transifx-client,
 # doesn't work with newer versions
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-slugify-${version}"
 build_style=python3-module

From 3673d2d0b57421bb69e3ed7407630c26169fab96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 495/872] python-smbc: rebuild for Python 3.8.

---
 srcpkgs/python-smbc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smbc/template b/srcpkgs/python-smbc/template
index abc745f8982..6a280139a25 100644
--- a/srcpkgs/python-smbc/template
+++ b/srcpkgs/python-smbc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smbc'
 pkgname=python-smbc
 version=1.0.16
-revision=1
+revision=2
 wrksrc="pysmbc-${version}"
 build_style=python-module
 pycompile_module="smbc"

From 2e7eca88dff9a562419fb01bfafbdaf55a6c2bd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 496/872] python-smmap: rebuild for Python 3.8.

---
 srcpkgs/python-smmap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smmap/template b/srcpkgs/python-smmap/template
index 4aa0c37ff40..8c8ea952285 100644
--- a/srcpkgs/python-smmap/template
+++ b/srcpkgs/python-smmap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smmap'
 pkgname=python-smmap
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="smmap-${version}"
 build_style=python-module

From fd787d6092a892885c1a37ff836d919c3268746b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 497/872] python-snakeoil: rebuild for Python 3.8.

---
 srcpkgs/python-snakeoil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snakeoil/template b/srcpkgs/python-snakeoil/template
index 9c98461c555..79e964d9254 100644
--- a/srcpkgs/python-snakeoil/template
+++ b/srcpkgs/python-snakeoil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snakeoil'
 pkgname=python-snakeoil
 version=0.7.5
-revision=2
+revision=3
 wrksrc="snakeoil-${version}"
 build_style=python-module
 pycompile_module="snakeoil"

From c023c48bda41f4e9b16718923037b0abc4c9cc57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 498/872] python-snappy: rebuild for Python 3.8.

---
 srcpkgs/python-snappy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snappy/template b/srcpkgs/python-snappy/template
index ac386f64fae..b1870cbe681 100644
--- a/srcpkgs/python-snappy/template
+++ b/srcpkgs/python-snappy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snappy'
 pkgname=python-snappy
 version=0.5.4
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="snappy"
 hostmakedepends="python-setuptools python3-setuptools"

From cf3b5c203b490e3aa45e74d0cef8b0d0c4d9cbd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 499/872] python-snowballstemmer: rebuild for Python 3.8.

---
 srcpkgs/python-snowballstemmer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snowballstemmer/template b/srcpkgs/python-snowballstemmer/template
index 6c21632cffa..221478860e5 100644
--- a/srcpkgs/python-snowballstemmer/template
+++ b/srcpkgs/python-snowballstemmer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snowballstemmer'
 pkgname=python-snowballstemmer
 version=1.2.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="snowballstemmer-${version}"
 build_style=python-module

From ebbd083848ced4227417bedacb81db1e46b3b0d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 500/872] python-socketIO-client: rebuild for Python 3.8.

---
 srcpkgs/python-socketIO-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-socketIO-client/template b/srcpkgs/python-socketIO-client/template
index 32fdac4117d..9495d7cf40b 100644
--- a/srcpkgs/python-socketIO-client/template
+++ b/srcpkgs/python-socketIO-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-socketIO-client'
 pkgname=python-socketIO-client
 version=0.7.2
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="socketIO_client"

From bf4912c1b4d342f253c99ee2ff30408cc72ef150 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 501/872] python3-sortedcontainers: rebuild for Python 3.8.

---
 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 2b531ded9b6..41d87d4ebd0 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.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="sortedcontainers-${version}"
 build_style=python3-module

From d111b9221a51cf160ffadb598d8ab186bac3562f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 502/872] python-soupsieve: rebuild for Python 3.8.

---
 srcpkgs/python-soupsieve/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-soupsieve/template b/srcpkgs/python-soupsieve/template
index 586553ca759..63b65c5910f 100644
--- a/srcpkgs/python-soupsieve/template
+++ b/srcpkgs/python-soupsieve/template
@@ -1,7 +1,7 @@
 # Template file for 'python-soupsieve'
 pkgname=python-soupsieve
 version=1.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="soupsieve-${version}"
 build_style=python-module

From 505955408532e39107891c66bb40c986d8a5da3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 503/872] python3-spake2: rebuild for Python 3.8.

---
 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 ff83afed1d6..dc0cdced747 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=1
+revision=2
 archs=noarch
 wrksrc="python-spake2-${version}"
 build_style=python3-module

From ed28cd6c33b5a607891182e27d4edc4b33e42c75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 504/872] python-sphinx_rtd_theme: rebuild for Python 3.8.

---
 srcpkgs/python-sphinx_rtd_theme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinx_rtd_theme/template b/srcpkgs/python-sphinx_rtd_theme/template
index 90def1c9d1d..ebd4f13da8f 100644
--- a/srcpkgs/python-sphinx_rtd_theme/template
+++ b/srcpkgs/python-sphinx_rtd_theme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinx_rtd_theme'
 pkgname=python-sphinx_rtd_theme
 version=0.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinx_rtd_theme-${version}"
 build_style=python-module

From dc5c184f3eb8653ed7620ead5c8c28a67daed07d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 505/872] python-sphinxcontrib: rebuild for Python 3.8.

---
 srcpkgs/python-sphinxcontrib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib/template b/srcpkgs/python-sphinxcontrib/template
index ce3befc56d7..c6789cc77f5 100644
--- a/srcpkgs/python-sphinxcontrib/template
+++ b/srcpkgs/python-sphinxcontrib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib'
 pkgname=python-sphinxcontrib
 version=1.0
-revision=2
+revision=3
 archs=noarch
 create_wrksrc=yes
 pycompile_module="sphinxcontrib"

From 044129ada15eeb9695b554976702e8af049dcfd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 506/872] python-sphinxcontrib-websupport: rebuild for Python
 3.8.

---
 srcpkgs/python-sphinxcontrib-websupport/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib-websupport/template b/srcpkgs/python-sphinxcontrib-websupport/template
index 2236e50b25b..5387dec6519 100644
--- a/srcpkgs/python-sphinxcontrib-websupport/template
+++ b/srcpkgs/python-sphinxcontrib-websupport/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib-websupport'
 pkgname=python-sphinxcontrib-websupport
 version=1.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinxcontrib-websupport-${version}"
 build_style=python-module

From d4fb3b78447ca7349e0a94033b436c3e0caa5dc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 507/872] python-sqlalchemy-migrate: rebuild for Python 3.8.

---
 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 cfdf6166695..bb002660c0f 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=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 863a48d9543b2461c699350ad32bb2ae925e30c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 508/872] python-sqlparse: rebuild for Python 3.8.

---
 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 29a477db392..0f8c6f8ea2e 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=1
+revision=2
 archs=noarch
 wrksrc="sqlparse-${version}"
 build_style=python-module

From b477355bf26b723b8ab7cab61902be1e4aaee7bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 509/872] python-stem: rebuild for Python 3.8.

---
 srcpkgs/python-stem/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index e04ae0a848c..e16e79d84bb 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stem'
 pkgname=python-stem
 version=1.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stem-${version/b/}"
 build_style=python-module

From 82d435bdfc12ea7b4a3dabd17da5113470bffe26 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 510/872] python-stevedore: rebuild for Python 3.8.

---
 srcpkgs/python-stevedore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stevedore/template b/srcpkgs/python-stevedore/template
index 281538211af..4f781304d3f 100644
--- a/srcpkgs/python-stevedore/template
+++ b/srcpkgs/python-stevedore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stevedore'
 pkgname=python-stevedore
 version=1.30.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stevedore-${version}"
 build_style=python-module

From 2afe8f7a4ce71437484d9258f44ead34ae2f6647 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 511/872] python-stormssh: rebuild for Python 3.8.

---
 srcpkgs/python-stormssh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stormssh/template b/srcpkgs/python-stormssh/template
index 250e838e582..11f63f67bba 100644
--- a/srcpkgs/python-stormssh/template
+++ b/srcpkgs/python-stormssh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stormssh'
 pkgname=python-stormssh
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=storm-${version}
 build_style=python-module

From 754addaa6845cd505b5d744fa4e54a66dba9c4ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 512/872] python-subliminal: rebuild for Python 3.8.

---
 srcpkgs/python-subliminal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-subliminal/template b/srcpkgs/python-subliminal/template
index 035ca844880..216c11bb4c0 100644
--- a/srcpkgs/python-subliminal/template
+++ b/srcpkgs/python-subliminal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-subliminal'
 pkgname=python-subliminal
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="subliminal-${version}"
 build_style=python-module

From da488d7b04fb3b00046be4293c33ae0809dad8e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 513/872] python-sympy: rebuild for Python 3.8.

---
 srcpkgs/python-sympy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sympy/template b/srcpkgs/python-sympy/template
index 21d8cf69840..d41c8a392b0 100644
--- a/srcpkgs/python-sympy/template
+++ b/srcpkgs/python-sympy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sympy'
 pkgname=python-sympy
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="sympy-${version}"
 build_style=python-module

From 78857098e3058d7f0df7ece8be24b84196d16921 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 514/872] python-tables: rebuild for Python 3.8.

---
 srcpkgs/python-tables/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tables/template b/srcpkgs/python-tables/template
index 644ae3d1a35..5f61fe8fb88 100644
--- a/srcpkgs/python-tables/template
+++ b/srcpkgs/python-tables/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tables'
 pkgname=python-tables
 version=3.5.2
-revision=1
+revision=2
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="tables"

From 45955cd565bccabbc642dce6684af05ad7651ba5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 515/872] python3-tabulate: rebuild for Python 3.8.

---
 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 19b61edd88c..6f142077300 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="tabulate-${version}"
 build_style=python3-module

From 285f369cadcf0d14f66db8045bb3fb979e69937f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 516/872] python-tempita: rebuild for Python 3.8.

---
 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 9e7123fbd9d..c1c75ee1cac 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=3
+revision=4
 archs=noarch
 wrksrc="Tempita-${version}"
 build_style=python-module

From efa04f85df83993e48813e00587c05cd6c722387 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 517/872] python-tempora: rebuild for Python 3.8.

---
 srcpkgs/python-tempora/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tempora/template b/srcpkgs/python-tempora/template
index fa1cbd4fbd1..866d163f367 100644
--- a/srcpkgs/python-tempora/template
+++ b/srcpkgs/python-tempora/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tempora'
 pkgname=python-tempora
 version=1.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tempora-${version}"
 build_style=python-module

From 783b09196fc04d62a7e7a220ffffc941acedfeeb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 518/872] python-termcolor: rebuild for Python 3.8.

---
 srcpkgs/python-termcolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-termcolor/template b/srcpkgs/python-termcolor/template
index 877e5e59d9b..73c18fc79eb 100644
--- a/srcpkgs/python-termcolor/template
+++ b/srcpkgs/python-termcolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-termcolor'
 pkgname=python-termcolor
 version=1.1.0
-revision=5
+revision=6
 archs=noarch
 wrksrc="termcolor-${version}"
 build_style=python-module

From 469ef1b462bbb9fb2d5d97b38e357b662f5009d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 519/872] python-terminado: rebuild for Python 3.8.

---
 srcpkgs/python-terminado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-terminado/template b/srcpkgs/python-terminado/template
index cdfe6163991..d649364d88d 100644
--- a/srcpkgs/python-terminado/template
+++ b/srcpkgs/python-terminado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-terminado'
 pkgname=python-terminado
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="terminado-${version}"
 build_style=python-module

From ced3b80cce126ab9d23dd2a4bc9505e23b5a4888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 520/872] python3-terminaltables: rebuild for Python 3.8.

---
 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 60ada7ffcb6..4f781eab76d 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=1
+revision=2
 archs=noarch
 wrksrc="terminaltables-${version}"
 build_style=python3-module

From 7a90fec1dbe0347ede0762e747d8edf378bd497c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 521/872] python-testpath: rebuild for Python 3.8.

---
 srcpkgs/python-testpath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-testpath/template b/srcpkgs/python-testpath/template
index bac7270fd40..abfc59900c0 100644
--- a/srcpkgs/python-testpath/template
+++ b/srcpkgs/python-testpath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-testpath'
 pkgname=python-testpath
 version=0.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="testpath-${version}"
 build_style=python-module

From f8761f2f7116f9b2691807d35d9836a34fbbbf32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 522/872] python3-text-unidecode: rebuild for Python 3.8.

---
 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 77163d9e0b6..b3b5aa95575 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="text-unidecode-${version}"
 build_style=python3-module

From 2d2f99664b0644e22e4876b9d54048008a392289 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 523/872] python-texttable: rebuild for Python 3.8.

---
 srcpkgs/python-texttable/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-texttable/template b/srcpkgs/python-texttable/template
index a9c5ec66db1..24bac87af6a 100644
--- a/srcpkgs/python-texttable/template
+++ b/srcpkgs/python-texttable/template
@@ -1,7 +1,7 @@
 # Template file for 'python-texttable'
 pkgname=python-texttable
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="texttable-${version}"
 build_style=python-module

From c671c144e8fe81895f6995347d19725f72165b25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 524/872] python3-tinycss: rebuild for Python 3.8.

---
 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 91fda6f808d..3b4717c234e 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=1
+revision=2
 archs=noarch
 wrksrc=tinycss-${version}
 build_style=python3-module

From 9aa3e8105128dc5e3b86a83bd0ae76e7d9c9cf86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 525/872] python-tmuxp: rebuild for Python 3.8.

---
 srcpkgs/python-tmuxp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tmuxp/template b/srcpkgs/python-tmuxp/template
index 00c86730cbe..45b4a9772b2 100644
--- a/srcpkgs/python-tmuxp/template
+++ b/srcpkgs/python-tmuxp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tmuxp'
 pkgname=python-tmuxp
 version=1.5.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="tmuxp-${version}"
 build_style=python-module

From 995158f34c29d704b44eae2b32df801023781096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 526/872] python-toml: rebuild for Python 3.8.

---
 srcpkgs/python-toml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-toml/template b/srcpkgs/python-toml/template
index 0eee1b0b2c3..2fd6eaa0cea 100644
--- a/srcpkgs/python-toml/template
+++ b/srcpkgs/python-toml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-toml'
 pkgname=python-toml
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="toml-${version}"
 build_style=python-module

From 6270afd962719dd0e9b876b40ab7bf9be9936cf5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 527/872] python-tornado: rebuild for Python 3.8.

---
 srcpkgs/python-tornado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tornado/template b/srcpkgs/python-tornado/template
index 7e5700177f5..bd558d251f5 100644
--- a/srcpkgs/python-tornado/template
+++ b/srcpkgs/python-tornado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tornado'
 pkgname=python-tornado
 version=5.1.1
-revision=1
+revision=2
 wrksrc="tornado-${version}"
 build_style=python-module
 pycompile_module="tornado"

From cd9e416288ae101465f91c75453326fdead7d148 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 528/872] python-tqdm: rebuild for Python 3.8.

---
 srcpkgs/python-tqdm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tqdm/template b/srcpkgs/python-tqdm/template
index 69369bfd6b9..ef1f07127ad 100644
--- a/srcpkgs/python-tqdm/template
+++ b/srcpkgs/python-tqdm/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tqdm'
 pkgname=python-tqdm
 version=4.36.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tqdm-${version}"
 build_style=python-module

From 4ef8d34c3ab05cf43591d92220fc001007644a6d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 529/872] python-traitlets: rebuild for Python 3.8.

---
 srcpkgs/python-traitlets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-traitlets/template b/srcpkgs/python-traitlets/template
index d2d1b85edb6..797dd0268da 100644
--- a/srcpkgs/python-traitlets/template
+++ b/srcpkgs/python-traitlets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-traitlets'
 pkgname=python-traitlets
 version=4.3.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="traitlets-${version}"
 build_style=python-module

From f41edcb16535bb92b415439644ee01a61da14478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 530/872] python3-transifex-client: rebuild for Python 3.8.

---
 srcpkgs/python3-transifex-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-transifex-client/template b/srcpkgs/python3-transifex-client/template
index 77ca15313e0..5ea767b5a7d 100644
--- a/srcpkgs/python3-transifex-client/template
+++ b/srcpkgs/python3-transifex-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-transifex-client'
 pkgname=python3-transifex-client
 version=0.13.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="transifex-client-${version}"
 build_style=python3-module

From d2c27a7fe61e206ccbf655146feec32e4b13cfc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 531/872] python3-treq: rebuild for Python 3.8.

---
 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 8f210d13489..e46e1e7e7a5 100644
--- a/srcpkgs/python3-treq/template
+++ b/srcpkgs/python3-treq/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-treq'
 pkgname=python3-treq
 version=18.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="treq-${version}"
 build_style=python3-module

From 26b5427ba0e26d8712ebe081a774396e3ea39d76 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 532/872] python-ttystatus: rebuild for Python 3.8.

---
 srcpkgs/python-ttystatus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ttystatus/template b/srcpkgs/python-ttystatus/template
index 9fbefad3461..43e87ddcdf0 100644
--- a/srcpkgs/python-ttystatus/template
+++ b/srcpkgs/python-ttystatus/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ttystatus'
 pkgname=python-ttystatus
 version=0.38
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="ttystatus"

From dbf349fac2110dc33ad6d676748e46240dec1fbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 533/872] python-twitter: rebuild for Python 3.8.

---
 srcpkgs/python-twitter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-twitter/template b/srcpkgs/python-twitter/template
index c299b28dedf..e5e7194078a 100644
--- a/srcpkgs/python-twitter/template
+++ b/srcpkgs/python-twitter/template
@@ -1,7 +1,7 @@
 # Template file for 'python-twitter'
 pkgname=python-twitter
 version=3.5
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="twitter"

From 58eab12e88f689c694ef474e09d2266b77b5bcc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 534/872] python3-txacme: rebuild for Python 3.8.

---
 srcpkgs/python3-txacme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-txacme/template b/srcpkgs/python3-txacme/template
index e6becf593e7..c678addda4d 100644
--- a/srcpkgs/python3-txacme/template
+++ b/srcpkgs/python3-txacme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txacme'
 pkgname=python3-txacme
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="txacme-${version}"
 build_style=python3-module

From a1a3464258c255e0b73cbdb47e0337d3b8af473e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 535/872] python3-txaio: rebuild for Python 3.8.

---
 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 fa13338cd30..8163f5c90fd 100644
--- a/srcpkgs/python3-txaio/template
+++ b/srcpkgs/python3-txaio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txaio'
 pkgname=python3-txaio
 version=18.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="txaio-${version}"
 build_style=python3-module

From 66d08c9f4945499ccd01b127d7ec1f8cfd468dd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 536/872] python3-txtorcon: rebuild for Python 3.8.

---
 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 3018a65e457..a10ab59c582 100644
--- a/srcpkgs/python3-txtorcon/template
+++ b/srcpkgs/python3-txtorcon/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txtorcon'
 pkgname=python3-txtorcon
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="txtorcon-${version}"
 build_style=python3-module

From f3bf9db3f8b699c67eebc7fa0278fca9de892d75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 537/872] python3-typed-ast: update to 1.4.0.

---
 srcpkgs/python3-typed-ast/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-typed-ast/template b/srcpkgs/python3-typed-ast/template
index ec5b5b9df11..b38f0fe065c 100644
--- a/srcpkgs/python3-typed-ast/template
+++ b/srcpkgs/python3-typed-ast/template
@@ -1,8 +1,8 @@
 # Template file for 'python3-typed-ast'
 pkgname=python3-typed-ast
-version=1.3.4
+version=1.4.0
 revision=1
-wrksrc="typed-ast-${version}"
+wrksrc="typed_ast-${version}"
 build_style=python3-module
 pycompile_module="typed_ast"
 hostmakedepends="python3-devel python3-setuptools"
@@ -11,6 +11,6 @@ short_desc="Ast module with type comment support"
 maintainer="whoami <whoami@systemli.org>"
 license="Apache-2.0"
 homepage="https://github.com/python/typed_ast"
-distfiles="${PYPI_SITE}/t/typed-ast/typed-ast-${version}.tar.gz"
-checksum=68c362848d9fb71d3c3e5f43c09974a0ae319144634e7a47db62f0f2a54a7fa7
+distfiles="${PYPI_SITE}/t/typed-ast/typed_ast-${version}.tar.gz"
+checksum=66480f95b8167c9c5c5c87f32cf437d585937970f3fc24386f313a4c97b44e34
 nocross="https://travis-ci.org/void-linux/void-packages/jobs/509366923#L1009"

From d977434aa35e2c6bc03c5db7514f5409eb21a2a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 538/872] python3-typing_extensions: rebuild for Python 3.8.

---
 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 ab96df4eb2d..605af46216d 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=3.6.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module

From d1368b489e196a385edf9b15df4da773505f8a5e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 539/872] python-tzlocal: rebuild for Python 3.8.

---
 srcpkgs/python-tzlocal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tzlocal/template b/srcpkgs/python-tzlocal/template
index 396eada3982..684d2a21b40 100644
--- a/srcpkgs/python-tzlocal/template
+++ b/srcpkgs/python-tzlocal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tzlocal'
 pkgname=python-tzlocal
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tzlocal-${version}"
 build_style=python-module

From 0ec72579de99edead05daf85e7cac5e0e2ab641b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 540/872] python-unittest-mixins: rebuild for Python 3.8.

---
 srcpkgs/python-unittest-mixins/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-unittest-mixins/template b/srcpkgs/python-unittest-mixins/template
index 6f7c7204112..2ff5c497523 100644
--- a/srcpkgs/python-unittest-mixins/template
+++ b/srcpkgs/python-unittest-mixins/template
@@ -1,7 +1,7 @@
 # Template file for 'python-unittest-mixins'
 pkgname=python-unittest-mixins
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From a5e3289470d7f0e25e09237aa9463d28817818c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 541/872] python3-unpaddedbase64: rebuild for Python 3.8.

---
 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 37df2c1d642..06a47db3b64 100644
--- a/srcpkgs/python3-unpaddedbase64/template
+++ b/srcpkgs/python3-unpaddedbase64/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-unpaddedbase64'
 pkgname=python3-unpaddedbase64
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-unpaddedbase64-${version}"
 build_style=python3-module

From 13043751d10b741546f419a7e9089a5b252fd5c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 542/872] python-urbandict: rebuild for Python 3.8.

---
 srcpkgs/python-urbandict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urbandict/template b/srcpkgs/python-urbandict/template
index ff09e963fa7..ed359c744be 100644
--- a/srcpkgs/python-urbandict/template
+++ b/srcpkgs/python-urbandict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urbandict'
 pkgname=python-urbandict
 version=0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="urbandict-${version}"
 build_style=python-module

From a15bf0893e7a65a070751099b3ddca9172b49912 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 543/872] python-uritemplate: rebuild for Python 3.8.

---
 srcpkgs/python-uritemplate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-uritemplate/template b/srcpkgs/python-uritemplate/template
index 7a530fee03b..cdcda419efe 100644
--- a/srcpkgs/python-uritemplate/template
+++ b/srcpkgs/python-uritemplate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-uritemplate'
 pkgname=python-uritemplate
 version=3.0.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 43c97a015ea83b2b0934ea864a84b324ec83f31a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 544/872] python3-urlgrabber: rebuild for Python 3.8.

---
 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 087087d5ed1..eef67c8e13c 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=1
+revision=2
 archs=noarch
 wrksrc="urlgrabber-${version}"
 build_style=python3-module

From 016dbcff2bb0c1709814f4da4fe214d551e3d4cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 545/872] python-urllib3: rebuild for Python 3.8.

---
 srcpkgs/python-urllib3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urllib3/template b/srcpkgs/python-urllib3/template
index 8056518c9c1..1ff21f7555d 100644
--- a/srcpkgs/python-urllib3/template
+++ b/srcpkgs/python-urllib3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urllib3'
 pkgname=python-urllib3
 version=1.25.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="urllib3-${version}"
 build_style=python-module

From 9629da352be38a0f14bcb680c7fc05dd1d1167f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 546/872] python-urwid: rebuild for Python 3.8.

---
 srcpkgs/python-urwid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwid/template b/srcpkgs/python-urwid/template
index ae6722b1135..7adf8b76b96 100644
--- a/srcpkgs/python-urwid/template
+++ b/srcpkgs/python-urwid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwid'
 pkgname=python-urwid
 version=2.0.1
-revision=2
+revision=3
 wrksrc="urwid-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"

From 4be978b1173afce93e7ff39f6e577059f4c7dd4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 547/872] python-urwidtrees: rebuild for Python 3.8.

---
 srcpkgs/python-urwidtrees/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwidtrees/template b/srcpkgs/python-urwidtrees/template
index be0e906addf..62d214489e2 100644
--- a/srcpkgs/python-urwidtrees/template
+++ b/srcpkgs/python-urwidtrees/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwidtrees'
 pkgname=python-urwidtrees
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="urwidtrees-${version}"
 build_style=python-module

From c9f3ad0ed793593060952aa365e888244dfd07e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 548/872] python3-usb: rebuild for Python 3.8.

---
 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 a081ee5ba76..d26c24df669 100644
--- a/srcpkgs/python3-usb/template
+++ b/srcpkgs/python3-usb/template
@@ -2,7 +2,7 @@
 pkgname=python3-usb
 _pkgname=pyusb
 version=1.0.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From 454ef49754696a81de599e7fa6cf9cab31ccbc31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 549/872] python-utils: rebuild for Python 3.8.

---
 srcpkgs/python-utils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-utils/template b/srcpkgs/python-utils/template
index e881e70c0f0..6745df121a6 100644
--- a/srcpkgs/python-utils/template
+++ b/srcpkgs/python-utils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-utils'
 pkgname=python-utils
 version=2.3.0
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 wrksrc="python-utils-${version}"

From eef5c75b93453defdcb8def5b34c20f20cda0fc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 550/872] python3-validators: rebuild for Python 3.8.

---
 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 29b9fc74c30..6d9da94c4bb 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.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="validators-${version}"
 build_style=python3-module

From 53ce0ff21de84f26405d0314002bb11e85903128 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 551/872] python3-vdf: rebuild for Python 3.8.

---
 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 44c635ecdd6..88bd521beaa 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.2
-revision=1
+revision=2
 wrksrc=vdf-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From f720d6ed8267fa4b27a7ce83dd3a265a18cd13b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 552/872] python-vint: rebuild for Python 3.8.

---
 srcpkgs/python-vint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vint/template b/srcpkgs/python-vint/template
index 4ca693f7eb2..62c663bf18e 100644
--- a/srcpkgs/python-vint/template
+++ b/srcpkgs/python-vint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vint'
 pkgname=python-vint
 version=0.3.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="vim-vint-${version}"
 build_style=python-module

From 573eadbcb861065b712050cf6e7fd200c33a73b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 553/872] python-virtualenv: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv/template b/srcpkgs/python-virtualenv/template
index 1f9166e79a2..cdeda28c53e 100644
--- a/srcpkgs/python-virtualenv/template
+++ b/srcpkgs/python-virtualenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv'
 pkgname=python-virtualenv
 version=16.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="virtualenv-${version}"
 build_style=python-module

From 25eda2949787b488dfc7cfc6512d02a4971d4f96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 554/872] python-virtualenv-clone: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv-clone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv-clone/template b/srcpkgs/python-virtualenv-clone/template
index 3c9f601bc6e..273b9ddf6d3 100644
--- a/srcpkgs/python-virtualenv-clone/template
+++ b/srcpkgs/python-virtualenv-clone/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv-clone'
 pkgname=python-virtualenv-clone
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5a922ea064a496fb01ff970e45a43ef51561b373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 555/872] python3-virustotal-api: rebuild for Python 3.8.

---
 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 2bc6592c91f..fc362c03b39 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=1
+revision=2
 archs=noarch
 wrksrc="virustotal-api-${version}"
 build_style=python3-module

From 65deaff01a3a9a5d82641fe121fdb2964b75346f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 556/872] python-vispy: rebuild for Python 3.8.

---
 srcpkgs/python-vispy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vispy/template b/srcpkgs/python-vispy/template
index b757e5a271f..624ade6f12b 100644
--- a/srcpkgs/python-vispy/template
+++ b/srcpkgs/python-vispy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vispy'
 pkgname=python-vispy
 version=0.6.1
-revision=1
+revision=2
 wrksrc="vispy-${version}"
 build_style=python-module
 pycompile_module="vispy"

From 5e47d846dedfdbef61bd10a33928ce13b600c648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 557/872] python-vobject: rebuild for Python 3.8.

---
 srcpkgs/python-vobject/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vobject/template b/srcpkgs/python-vobject/template
index 54f575aa1a1..2c1c215527c 100644
--- a/srcpkgs/python-vobject/template
+++ b/srcpkgs/python-vobject/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vobject'
 pkgname=python-vobject
 version=0.9.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="vobject-${version}"
 build_style=python-module

From 8125ffd3d4822ca6bf81508ed8b859e079cd9437 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 558/872] python-voluptuous: rebuild for Python 3.8.

---
 srcpkgs/python-voluptuous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-voluptuous/template b/srcpkgs/python-voluptuous/template
index fd44ae2e324..1dd5de27491 100644
--- a/srcpkgs/python-voluptuous/template
+++ b/srcpkgs/python-voluptuous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-voluptuous'
 pkgname=python-voluptuous
 version=0.11.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="voluptuous-${version}"
 build_style=python-module

From 608126ee8043f8d45a8e56608f99e0df6cc2ee9e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 559/872] python-watchdog: rebuild for Python 3.8.

---
 srcpkgs/python-watchdog/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchdog/template b/srcpkgs/python-watchdog/template
index f6027c3b5ca..2eea6397f00 100644
--- a/srcpkgs/python-watchdog/template
+++ b/srcpkgs/python-watchdog/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchdog'
 pkgname=python-watchdog
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="watchdog-${version}"
 build_style=python-module

From a54fc09b58f905a0ed5cd5892db67b7c4ea6ae9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 560/872] python-watchman: rebuild for Python 3.8.

---
 srcpkgs/python-watchman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchman/template b/srcpkgs/python-watchman/template
index 4c41c275ca2..97400668d64 100644
--- a/srcpkgs/python-watchman/template
+++ b/srcpkgs/python-watchman/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchman'
 pkgname=python-watchman
 version=1.4.1
-revision=2
+revision=3
 wrksrc="pywatchman-${version}"
 build_style=python-module
 pycompile_module="pywatchman"

From 4dd6084e6c30a25fb4ff3c44bf2c751eaab07715 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 561/872] python-wcwidth: rebuild for Python 3.8.

---
 srcpkgs/python-wcwidth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wcwidth/template b/srcpkgs/python-wcwidth/template
index 34bc22cbcb6..8ec6d17450c 100644
--- a/srcpkgs/python-wcwidth/template
+++ b/srcpkgs/python-wcwidth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wcwidth'
 pkgname=python-wcwidth
 version=0.1.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="wcwidth-${version}"
 build_style=python-module

From cafaf5868e58cb26c2cdd29d0d1b52f9cf1e31ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 562/872] python-webassets: rebuild for Python 3.8.

---
 srcpkgs/python-webassets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webassets/template b/srcpkgs/python-webassets/template
index 3ad5475bd17..789be9684f7 100644
--- a/srcpkgs/python-webassets/template
+++ b/srcpkgs/python-webassets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webassets'
 pkgname=python-webassets
 version=0.12.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 88d8fa4eb1ca72857d5a1cab8a4f7495a9af1595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 563/872] python-webencodings: rebuild for Python 3.8.

---
 srcpkgs/python-webencodings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webencodings/template b/srcpkgs/python-webencodings/template
index 5a05af10835..f047a9e3c52 100644
--- a/srcpkgs/python-webencodings/template
+++ b/srcpkgs/python-webencodings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webencodings'
 pkgname=python-webencodings
 version=0.5.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="webencodings-${version}"
 build_style=python-module

From 81c9d07c0e756cc87a6cd2c444c0b2f0987463da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 564/872] python-websocket-client: rebuild for Python 3.8.

---
 srcpkgs/python-websocket-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-websocket-client/template b/srcpkgs/python-websocket-client/template
index 8aa276655cb..3df8ab42b36 100644
--- a/srcpkgs/python-websocket-client/template
+++ b/srcpkgs/python-websocket-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-websocket-client'
 pkgname=python-websocket-client
 version=0.56.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="websocket_client-${version}"
 build_style=python-module

From 97fc927913b3f2682b7ddf73982008e9fdc1e42d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 565/872] python-wheel: rebuild for Python 3.8.

---
 srcpkgs/python-wheel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wheel/template b/srcpkgs/python-wheel/template
index 11c50bd65e6..11aeaf42316 100644
--- a/srcpkgs/python-wheel/template
+++ b/srcpkgs/python-wheel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wheel'
 pkgname=python-wheel
 version=0.32.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="wheel-${version}"
 build_style=python-module

From 861d20f2f112cd829f2f06f746680e2c034a812f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 566/872] python-wikipedia: rebuild for Python 3.8.

---
 srcpkgs/python-wikipedia/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wikipedia/template b/srcpkgs/python-wikipedia/template
index e6ebf65f7c2..f8a69755b74 100644
--- a/srcpkgs/python-wikipedia/template
+++ b/srcpkgs/python-wikipedia/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wikipedia'
 pkgname=python-wikipedia
 version=1.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="wikipedia-${version}"
 build_style=python-module

From c58e9b08de69bd19aa3bcf91ec42d1b626a2a6bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 567/872] python-wrapt: rebuild for Python 3.8.

---
 srcpkgs/python-wrapt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wrapt/template b/srcpkgs/python-wrapt/template
index a3a237aa08d..c2d2850bf5a 100644
--- a/srcpkgs/python-wrapt/template
+++ b/srcpkgs/python-wrapt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wrapt'
 pkgname=python-wrapt
 version=1.10.11
-revision=3
+revision=4
 wrksrc="wrapt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From f65cbaf6b92acb78d54d3b498924285bce64fb66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 568/872] python-wsproto: rebuild for Python 3.8.

---
 srcpkgs/python-wsproto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wsproto/template b/srcpkgs/python-wsproto/template
index 88b08f796d4..a93a799be0a 100644
--- a/srcpkgs/python-wsproto/template
+++ b/srcpkgs/python-wsproto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wsproto'
 pkgname=python-wsproto
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="wsproto-${version}"
 build_style=python-module

From 1b60fb796f8ac377a2e31dc0503df215c27fc59e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 569/872] python-xapp: rebuild for Python 3.8.

---
 srcpkgs/python-xapp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xapp/template b/srcpkgs/python-xapp/template
index 9b6938113f2..798041eb946 100644
--- a/srcpkgs/python-xapp/template
+++ b/srcpkgs/python-xapp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xapp'
 pkgname=python-xapp
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="xapp"

From 415bec8de0abe2772c407df9db650bd06ba122ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 570/872] python-xdg: rebuild for Python 3.8.

---
 srcpkgs/python-xdg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xdg/template b/srcpkgs/python-xdg/template
index afa6c180043..4e819c8bec7 100644
--- a/srcpkgs/python-xdg/template
+++ b/srcpkgs/python-xdg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xdg'
 pkgname=python-xdg
 version=0.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyxdg-${version}"
 build_style=python-module

From 4518feeb499caa6631ef29ead0439c5bcc67a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 571/872] python-xlib: rebuild for Python 3.8.

---
 srcpkgs/python-xlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xlib/template b/srcpkgs/python-xlib/template
index 1f97c4117d4..e67d1d82e73 100644
--- a/srcpkgs/python-xlib/template
+++ b/srcpkgs/python-xlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xlib'
 pkgname=python-xlib
 version=0.25
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="Xlib"

From 1cef928049b5216468e701acce714fc14d79694f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 572/872] python-xmldiff: rebuild for Python 3.8.

---
 srcpkgs/python-xmldiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmldiff/template b/srcpkgs/python-xmldiff/template
index a0a8004ea7b..4f3cc2d27b7 100644
--- a/srcpkgs/python-xmldiff/template
+++ b/srcpkgs/python-xmldiff/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmldiff'
 pkgname=python-xmldiff
 version=2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmldiff-${version}"
 build_style=python-module

From cefcbea2ec7904b0c1ad16ec32963bf430b27c4a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 573/872] python-xmltodict: rebuild for Python 3.8.

---
 srcpkgs/python-xmltodict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmltodict/template b/srcpkgs/python-xmltodict/template
index a48e6d46aa6..b3d7ef042e8 100644
--- a/srcpkgs/python-xmltodict/template
+++ b/srcpkgs/python-xmltodict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmltodict'
 pkgname=python-xmltodict
 version=0.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmltodict-${version}"
 build_style=python-module

From 889d5fe9fe9f1830bec336ac52bd8bd32f47f0a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 574/872] python-yaml: rebuild for Python 3.8.

---
 srcpkgs/python-yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yaml/template b/srcpkgs/python-yaml/template
index 8a7caf1d99e..e3bad0ae59b 100644
--- a/srcpkgs/python-yaml/template
+++ b/srcpkgs/python-yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yaml'
 pkgname=python-yaml
 version=5.1.2
-revision=1
+revision=2
 wrksrc="PyYAML-${version}"
 build_style=python-module
 pycompile_module="yaml"

From 1b3e89ca272ae28a62064bf83eaff84332307682 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 575/872] python-yamllint: rebuild for Python 3.8.

---
 srcpkgs/python-yamllint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yamllint/template b/srcpkgs/python-yamllint/template
index 1a05e1043bb..d0b51ba637a 100644
--- a/srcpkgs/python-yamllint/template
+++ b/srcpkgs/python-yamllint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yamllint'
 pkgname=python-yamllint
 version=1.15.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="yamllint-${version}"
 build_style=python-module

From b233bcb50542e39ba02899ef3d1b833e385204e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 576/872] python3-yarl: rebuild for Python 3.8.

---
 srcpkgs/python3-yarl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-yarl/template b/srcpkgs/python3-yarl/template
index 222f176cfcf..ecb79a3cc9c 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.3.0
-revision=2
+revision=3
 wrksrc="yarl-${version}"
 build_style=python3-module
 pycompile_module="yarl"

From 484c2559f18644c63342db467c703e2e998e89b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 577/872] python-zc.lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-zc.lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zc.lockfile/template b/srcpkgs/python-zc.lockfile/template
index cb0bee99506..b77071af04f 100644
--- a/srcpkgs/python-zc.lockfile/template
+++ b/srcpkgs/python-zc.lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zc.lockfile'
 pkgname=python-zc.lockfile
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 364e398c8dd7e3dd141ceb1c22626ecf2a5b9b32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 578/872] python3-zeroconf: rebuild for Python 3.8.

---
 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 497a8bc6b69..dda37bd3dc4 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.23.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-zeroconf-${version}"
 build_style=python3-module

From 22b5d6236d8f0ff0050135b2e77eca608519b1ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 579/872] python3-zipp: rebuild for Python 3.8.

---
 srcpkgs/python3-zipp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-zipp/template b/srcpkgs/python3-zipp/template
index 8445c10825c..ba682915beb 100644
--- a/srcpkgs/python3-zipp/template
+++ b/srcpkgs/python3-zipp/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-zipp'
 pkgname=python3-zipp
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="zipp-${version}"
 build_style=python3-module

From c5c37d6e890a553e458333e610ab56b1a5c9b516 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 580/872] python-zipstream: rebuild for Python 3.8.

---
 srcpkgs/python-zipstream/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zipstream/template b/srcpkgs/python-zipstream/template
index 89079e21b22..2c7390127ac 100644
--- a/srcpkgs/python-zipstream/template
+++ b/srcpkgs/python-zipstream/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zipstream'
 pkgname=python-zipstream
 version=1.1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="python-zipstream-${version}"
 build_style=python-module

From bc31e25a00839c9d3cc5ac70edf0485ee4b21d4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 581/872] python3-zope.cachedescriptors: rebuild for Python
 3.8.

---
 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 bdd5ef41e21..1f1fae5b27b 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.3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="zope.cachedescriptors-${version}"
 build_style=python3-module

From 40a63988f3c2db41391f0a7ab6cde24a9b79ed05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 582/872] python-zope.component: rebuild for Python 3.8.

---
 srcpkgs/python-zope.component/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.component/template b/srcpkgs/python-zope.component/template
index 7cea5b9d71d..66ef109a4aa 100644
--- a/srcpkgs/python-zope.component/template
+++ b/srcpkgs/python-zope.component/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.component'
 pkgname=python-zope.component
 version=4.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 799496c35db93c88e6d00e4b41eeca8b4af5b188 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 583/872] python-zope.event: rebuild for Python 3.8.

---
 srcpkgs/python-zope.event/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.event/template b/srcpkgs/python-zope.event/template
index 3c7fb8dfd6e..6518cb4529b 100644
--- a/srcpkgs/python-zope.event/template
+++ b/srcpkgs/python-zope.event/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.event'
 pkgname=python-zope.event
 version=4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d77b16ecad39877131af8a9c01ea925b33737b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 584/872] python-zope.interface: rebuild for Python 3.8.

---
 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 d3c57be85f7..1dbcbecd377 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=4.6.0
-revision=2
+revision=3
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="zope"

From e5cb80612a71c54facf607c52c7a385badeba668 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 585/872] python3-pivy: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-pivy/patches/73cd928f.patch | 36 +++++++++++++++++++++
 srcpkgs/python3-pivy/template               |  2 +-
 2 files changed, 37 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/python3-pivy/patches/73cd928f.patch

diff --git a/srcpkgs/python3-pivy/patches/73cd928f.patch b/srcpkgs/python3-pivy/patches/73cd928f.patch
new file mode 100644
index 00000000000..edff803822a
--- /dev/null
+++ b/srcpkgs/python3-pivy/patches/73cd928f.patch
@@ -0,0 +1,36 @@
+From 73cd928fe1a9c2abbe6f28844a7fc695ad11d7cf Mon Sep 17 00:00:00 2001
+From: Peter Lama <peterldev94@gmail.com>
+Date: Fri, 24 Aug 2018 17:25:47 -0700
+Subject: [PATCH] Fix issue #39: PyUnicode_AsUTF8 returns const char*
+
+Even with python 2, it doesn't seem like char* is needed
+
+--- Inventor/nodes/SoMarkerSet.i
++++ Inventor/nodes/SoMarkerSet.i
+@@ -5,7 +5,7 @@
+         short WIDTH, HEIGHT;
+         size.getValue(WIDTH, HEIGHT);
+         short BYTEWIDTH = (WIDTH + 7) / 2;
+-        char* coin_marker;
++        const char* coin_marker;
+ #ifdef PY_2
+         if (PyString_Check(string))
+         {
+@@ -49,4 +49,4 @@
+         delete[] bitmapbytes;
+         bitmapbytes = NULL;
+     }
+-}
+\ No newline at end of file
++}
+--- Inventor/sensors/SoSensor.i
++++ Inventor/sensors/SoSensor.i
+@@ -4,7 +4,7 @@ SoSensorPythonCB(void * data, SoSensor * sensor)
+ {
+   PyGILState_STATE gil = PyGILState_Ensure();
+   swig_type_info * swig_type = 0;
+-  char * sensor_cast_name = NULL;
++  const char * sensor_cast_name = NULL;
+   PyObject * func, * arglist;
+   PyObject * result, * pysensor;
+ 
diff --git a/srcpkgs/python3-pivy/template b/srcpkgs/python3-pivy/template
index 4a733e805e3..9caa13837e2 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.4
-revision=1
+revision=2
 wrksrc="Coin3D-${pkgname#python3-}-a84100beff22"
 build_style=python3-module
 pycompile_module="pivy"

From 7d8cfe1721327d4b8695c6abc56d012b27989c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 586/872] python-tweepy: update to 3.8.0.

---
 srcpkgs/python-tweepy/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python-tweepy/template b/srcpkgs/python-tweepy/template
index ef61039dac5..4605bbf83ea 100644
--- a/srcpkgs/python-tweepy/template
+++ b/srcpkgs/python-tweepy/template
@@ -1,6 +1,6 @@
 # Template file for 'python-tweepy'
 pkgname=python-tweepy
-version=3.7.0
+version=3.8.0
 revision=1
 archs=noarch
 wrksrc="tweepy-${version}"
@@ -14,8 +14,8 @@ license="MIT"
 homepage="https://github.com/tweepy/tweepy"
 distfiles="${PYPI_SITE}/t/tweepy/tweepy-${version}.tar.gz
  https://raw.githubusercontent.com/tweepy/tweepy/master/LICENSE>LICENSE.txt"
-checksum="fe85a79f58a01dd335968523b91c5fce760e7fe78bf25a6e71c72204fe499d0b
- deeeae0dcc22dbf108a801b8dc4e484bcc1bfb541b1a4f4615ab3e61def44fb5"
+checksum="8abd828ba51a85a2b5bb7373715d6d3bb32d18ac624e3a4db02e4ef8ab48316b
+ bf9bc5b9dcb8421bb3c342bb7fd29194688e1262b50766bd71b21a07461e74b7"
 
 post_install() {
 	vlicense ../LICENSE.txt

From 5f654f2f6a7eca9a50adb53af9037466723dd82c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 587/872] Electron-Cash: rebuild for Python 3.8.

---
 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 2db05c94832..08670c5f08d 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.0.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electroncash electroncash_gui electroncash_plugins"

From 931f125f8699e33cb16c8ed43a5e910d0056db6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 588/872] OpenLP: rebuild for Python 3.8.

---
 srcpkgs/OpenLP/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/OpenLP/template b/srcpkgs/OpenLP/template
index fb417f8d05e..ccae6d0282e 100644
--- a/srcpkgs/OpenLP/template
+++ b/srcpkgs/OpenLP/template
@@ -1,7 +1,7 @@
 # Template file for 'OpenLP'
 pkgname=OpenLP
 version=2.4.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="openlp"

From 21b02367e81c8635c88830fd008c0ba44ffcccff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 589/872] PhotoCollage: rebuild for Python 3.8.

---
 srcpkgs/PhotoCollage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/PhotoCollage/template b/srcpkgs/PhotoCollage/template
index 2c55ca87ce0..9997d1e7d98 100644
--- a/srcpkgs/PhotoCollage/template
+++ b/srcpkgs/PhotoCollage/template
@@ -1,7 +1,7 @@
 # Template file for 'PhotoCollage'
 pkgname=PhotoCollage
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="photocollage"

From 49dffe4070ca7dff3c38379b8df9d9b0d04395ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 590/872] ReText: rebuild for Python 3.8.

---
 srcpkgs/ReText/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ReText/template b/srcpkgs/ReText/template
index cc092ee6a36..a6551fbdf7c 100644
--- a/srcpkgs/ReText/template
+++ b/srcpkgs/ReText/template
@@ -1,7 +1,7 @@
 # Template file for 'ReText'
 pkgname=ReText
 version=7.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ReText"

From 225e30aaea5daebb0d4fc36c6d73424ad6fb1ec5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 591/872] SoapySDR: rebuild for Python 3.8.

---
 srcpkgs/SoapySDR/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/SoapySDR/template b/srcpkgs/SoapySDR/template
index 1bb66ce0689..bcfe45dc78a 100644
--- a/srcpkgs/SoapySDR/template
+++ b/srcpkgs/SoapySDR/template
@@ -1,7 +1,7 @@
 # Template file for 'SoapySDR'
 pkgname=SoapySDR
 version=0.7.1
-revision=1
+revision=2
 wrksrc="${pkgname}-soapy-sdr-${version}"
 build_style=cmake
 pycompile_module="SoapySDR.py"

From 2e64750e75e61296567ebb0053c46081cbab8e13 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 592/872] Solaar: rebuild for Python 3.8.

---
 srcpkgs/Solaar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Solaar/template b/srcpkgs/Solaar/template
index 2e8f4112e0e..86cab83d497 100644
--- a/srcpkgs/Solaar/template
+++ b/srcpkgs/Solaar/template
@@ -1,7 +1,7 @@
 # Template file for 'Solaar'
 pkgname=Solaar
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="hidapi logitech_receiver solaar"

From 21eb59c332d0765268a9b3a5442e4e265144a4ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 593/872] Trimage: rebuild for Python 3.8.

---
 srcpkgs/Trimage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Trimage/template b/srcpkgs/Trimage/template
index 14fc1d1bd1c..c9f4b047ccd 100644
--- a/srcpkgs/Trimage/template
+++ b/srcpkgs/Trimage/template
@@ -1,7 +1,7 @@
 # Template file for 'Trimage'
 pkgname=Trimage
 version=1.0.6
-revision=1
+revision=2
 wrksrc="Trimage-${version}"
 build_style=python3-module
 hostmakedepends="python3"

From 51428dec66979d2e47361fb2af5e7ad35acbe530 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 594/872] TwitchNotifier: rebuild for Python 3.8.

---
 srcpkgs/TwitchNotifier/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/TwitchNotifier/template b/srcpkgs/TwitchNotifier/template
index 01153bcc710..3bbba11db49 100644
--- a/srcpkgs/TwitchNotifier/template
+++ b/srcpkgs/TwitchNotifier/template
@@ -1,7 +1,7 @@
 # Template file for 'TwitchNotifier'
 pkgname=TwitchNotifier
 version=0.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-devel"
 makedepends="python3-devel"

From 18ad02f16088cf17e66f60da882ead88b4872617 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 595/872] Uranium: rebuild for Python 3.8.

---
 srcpkgs/Uranium/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Uranium/template b/srcpkgs/Uranium/template
index 193d5e211df..7a9509c2079 100644
--- a/srcpkgs/Uranium/template
+++ b/srcpkgs/Uranium/template
@@ -1,7 +1,7 @@
 # Template file for 'Uranium'
 pkgname=Uranium
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=cmake
 pycompile_module="UM"

From 1bfabd6cc63a8b03b99500dc59e362061f7549e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 596/872] afew: rebuild for Python 3.8.

---
 srcpkgs/afew/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/afew/template b/srcpkgs/afew/template
index a9156bbc902..f4b10098e66 100644
--- a/srcpkgs/afew/template
+++ b/srcpkgs/afew/template
@@ -1,7 +1,7 @@
 # Template file for 'afew'
 pkgname=afew
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="afew"

From f0695c0a0e527ead9d61cbbd52e872f5a6e7f422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 597/872] alot: rebuild for Python 3.8.

---
 srcpkgs/alot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/alot/template b/srcpkgs/alot/template
index 4ff75637282..c8e29e36297 100644
--- a/srcpkgs/alot/template
+++ b/srcpkgs/alot/template
@@ -1,7 +1,7 @@
 # Template file for 'alot'
 pkgname=alot
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="alot"

From ec032cb507b4dca0034eab7e0281dedd3b7dc418 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 598/872] ansible: rebuild for Python 3.8.

---
 srcpkgs/ansible/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ansible/template b/srcpkgs/ansible/template
index 413e6f8803e..773f890e114 100644
--- a/srcpkgs/ansible/template
+++ b/srcpkgs/ansible/template
@@ -1,7 +1,7 @@
 # Template file for 'ansible'
 pkgname=ansible
 version=2.8.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ansible"

From a97554cec966a402d73b894865fe2d37f1833cec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 599/872] apparmor: rebuild for Python 3.8.

---
 srcpkgs/apparmor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/apparmor/template b/srcpkgs/apparmor/template
index c0ef28bae03..e4f8e3fb3ae 100644
--- a/srcpkgs/apparmor/template
+++ b/srcpkgs/apparmor/template
@@ -1,7 +1,7 @@
 # Template file for 'apparmor'
 pkgname=apparmor
 version=2.13.3
-revision=1
+revision=2
 wrksrc="${pkgname}-v${version}"
 build_wrksrc=libraries/libapparmor
 build_style=gnu-configure

From 57116ea3c564f2a1852b8583df85c35aefe177a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 600/872] arandr: rebuild for Python 3.8.

---
 srcpkgs/arandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/arandr/template b/srcpkgs/arandr/template
index 71c8cbcd6ed..610dbc28bca 100644
--- a/srcpkgs/arandr/template
+++ b/srcpkgs/arandr/template
@@ -1,7 +1,7 @@
 # Template file for 'arandr'
 pkgname=arandr
 version=0.1.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenlayout"

From 4dbfc32dae63dc77f95207dc5aa5a79d26d2c9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 601/872] asciinema: rebuild for Python 3.8.

---
 srcpkgs/asciinema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/asciinema/template b/srcpkgs/asciinema/template
index 961b2756301..38b8871753c 100644
--- a/srcpkgs/asciinema/template
+++ b/srcpkgs/asciinema/template
@@ -1,7 +1,7 @@
 # Template file for 'asciinema'
 pkgname=asciinema
 version=2.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="asciinema"

From 956b672f4c6db0ea67d9ad05a8308ec5ea193930 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 602/872] attic: rebuild for Python 3.8.

---
 srcpkgs/attic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/attic/template b/srcpkgs/attic/template
index 533ef7377bc..ed454302ce4 100644
--- a/srcpkgs/attic/template
+++ b/srcpkgs/attic/template
@@ -1,7 +1,7 @@
 # Template file for 'attic'
 pkgname=attic
 version=0.16
-revision=14
+revision=15
 wrksrc="Attic-$version"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel python3-Sphinx"

From 3a21ab47b75c96c91b8447979356e5d4d4027fd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 603/872] autorandr: rebuild for Python 3.8.

---
 srcpkgs/autorandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/autorandr/template b/srcpkgs/autorandr/template
index bf38b833632..7f9796be18f 100644
--- a/srcpkgs/autorandr/template
+++ b/srcpkgs/autorandr/template
@@ -1,7 +1,7 @@
 # Template file for 'autorandr'
 pkgname=autorandr
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="autorandr.py"

From ca443f3bf2b2ea4c91fa81f47ea823293476950b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 604/872] avideo: rebuild for Python 3.8.

---
 srcpkgs/avideo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/avideo/template b/srcpkgs/avideo/template
index e4d004aafff..6430d391286 100644
--- a/srcpkgs/avideo/template
+++ b/srcpkgs/avideo/template
@@ -1,7 +1,7 @@
 # Template file for 'avideo'
 pkgname=avideo
 version=2017.9.27
-revision=3
+revision=4
 archs=noarch
 wrksrc="avideo"
 build_style=python3-module

From b1abf9d1270b34913e7bd6dbfcd004dba8a8c5ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 605/872] aws-cli: rebuild for Python 3.8.

---
 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 4e5e200e3f9..4328e203c3c 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.16.253
-revision=1
+revision=2
 archs=noarch
 wrksrc="aws-cli-${version}"
 build_style=python3-module

From af6fd86e4f623114e23d8cd19217a8ba196231c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 606/872] bandit: rebuild for Python 3.8.

---
 srcpkgs/bandit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bandit/template b/srcpkgs/bandit/template
index e6c1aa52d7c..d29873ecf61 100644
--- a/srcpkgs/bandit/template
+++ b/srcpkgs/bandit/template
@@ -1,7 +1,7 @@
 # Template file for 'bandit'
 pkgname=bandit
 version=1.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="bandit"

From acb296380ef65f2682ec382f88706be8dc3bf79f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 607/872] beancount: rebuild for Python 3.8.

---
 srcpkgs/beancount/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beancount/template b/srcpkgs/beancount/template
index b1e2a121668..0ba68fc8f4e 100644
--- a/srcpkgs/beancount/template
+++ b/srcpkgs/beancount/template
@@ -1,7 +1,7 @@
 # Template file for 'beancount'
 pkgname=beancount
 version=2.2.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="beancount"
 hostmakedepends="python3-setuptools"

From 4d085c5998e4472b4e7b4fceabecba11440daceb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 608/872] beets: rebuild for Python 3.8.

---
 srcpkgs/beets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beets/template b/srcpkgs/beets/template
index 7dab56ceef8..975e6ec9f86 100644
--- a/srcpkgs/beets/template
+++ b/srcpkgs/beets/template
@@ -1,7 +1,7 @@
 # Template file for 'beets'
 pkgname=beets
 version=1.4.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="beets beetsplug"

From 1640cb62a84da8a46aff2a9c6ee5f75c0ab73224 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 609/872] black: rebuild for Python 3.8.

---
 srcpkgs/black/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/black/template b/srcpkgs/black/template
index f6d433038b9..38498a1db07 100644
--- a/srcpkgs/black/template
+++ b/srcpkgs/black/template
@@ -1,7 +1,7 @@
 # Template file for 'black'
 pkgname=black
 version=19.3b0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="black.py blib2to3"

From 5939f3d169c384cfe92957888f7b53678a69e770 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 610/872] blueman: rebuild for Python 3.8.

---
 srcpkgs/blueman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blueman/template b/srcpkgs/blueman/template
index 83f9b899583..3616aee7da3 100644
--- a/srcpkgs/blueman/template
+++ b/srcpkgs/blueman/template
@@ -1,7 +1,7 @@
 # Template file for 'blueman'
 pkgname=blueman
 version=2.1.1
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="blueman"
 configure_args="--disable-static"

From 325ad86e9fdcfc900e695cdcb3b40bc448b85d06 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 611/872] borg: rebuild for Python 3.8.

---
 srcpkgs/borg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borg/template b/srcpkgs/borg/template
index 520b1b2f65a..b69c7d3418e 100644
--- a/srcpkgs/borg/template
+++ b/srcpkgs/borg/template
@@ -1,7 +1,7 @@
 # Template file for 'borg'
 pkgname=borg
 version=1.1.10
-revision=2
+revision=3
 wrksrc="borgbackup-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel"

From 73a17277e22d3252a93a66237bf81a04393fc244 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 612/872] borgmatic: rebuild for Python 3.8.

---
 srcpkgs/borgmatic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borgmatic/template b/srcpkgs/borgmatic/template
index 8ef7c0568a6..bdc6446243c 100644
--- a/srcpkgs/borgmatic/template
+++ b/srcpkgs/borgmatic/template
@@ -1,7 +1,7 @@
 # Template file for 'borgmatic'
 pkgname=borgmatic
 version=1.3.24
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="borgmatic"

From 482c5d69113ad10842dfe91f0ac4a0631660ac77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 613/872] btrfs-backup: rebuild for Python 3.8.

---
 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 07d08a1b62b..55a3800a857 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=1
+revision=2
 wrksrc="${pkgname/-/_}-${version}"
 archs=noarch
 build_style=python3-module

From 4fce3c4f00a44852e3f9fcab80a10d4acfc04ad6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 614/872] bum: rebuild for Python 3.8.

---
 srcpkgs/bum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bum/template b/srcpkgs/bum/template
index 58d0bb2b7f7..20f200e74d6 100644
--- a/srcpkgs/bum/template
+++ b/srcpkgs/bum/template
@@ -1,7 +1,7 @@
 # Template file for 'bum'
 pkgname=bum
 version=0.1.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="bum"

From a384e5462965e984f1abca2ca12b7f62b1a415d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 615/872] caffeine-ng: rebuild for Python 3.8.

---
 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 36287fbef5b..455b2f225c4 100644
--- a/srcpkgs/caffeine-ng/template
+++ b/srcpkgs/caffeine-ng/template
@@ -1,7 +1,7 @@
 # Template file for 'caffeine-ng'
 pkgname=caffeine-ng
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="caffeine"

From b857565a7a7fddfbffbcf40b9e784593d099a0a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 616/872] cairo-dock-plugins: rebuild for Python 3.8.

---
 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 9e6149c617f..0c23a7f6928 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=11
+revision=12
 build_style=cmake
 hostmakedepends="pkg-config"
 # XXX libetpan, libdbusmenu, etc

From c0c15488d9189a782c2ab6436de598620d4d2435 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 617/872] canto-curses: rebuild for Python 3.8.

---
 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 0905972b480..4270d61c2e0 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=4
+revision=5
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel ncurses-devel readline-devel"

From a821add22450c016c7b851ee1a0309da5b5d83af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 618/872] canto-next: rebuild for Python 3.8.

---
 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 fff7e82e238..fa28bde891b 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.7
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From fa2afe1224ee7d1e031e769bf84bd596e5ac6de2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 619/872] capstone: rebuild for Python 3.8.

---
 srcpkgs/capstone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/capstone/template b/srcpkgs/capstone/template
index e13c7666ed1..fded7c7157e 100644
--- a/srcpkgs/capstone/template
+++ b/srcpkgs/capstone/template
@@ -1,7 +1,7 @@
 # Template file for 'capstone'
 pkgname=capstone
 version=4.0.1
-revision=1
+revision=2
 build_style=gnu-makefile
 make_use_env=1
 hostmakedepends="python-setuptools python3-setuptools"

From 923fca0cf844d03c602bbae81add86e8be495762 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 620/872] catfish: rebuild for Python 3.8.

---
 srcpkgs/catfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/catfish/template b/srcpkgs/catfish/template
index 1b28ffcafff..b53de6b8ea6 100644
--- a/srcpkgs/catfish/template
+++ b/srcpkgs/catfish/template
@@ -1,7 +1,7 @@
 # Template file for 'catfish'
 pkgname=catfish
 version=1.4.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="catfish catfish_lib"

From fb71b3b941c7341384c307ef6e1654b8d0b54a3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 621/872] ccsm: rebuild for Python 3.8.

---
 srcpkgs/ccsm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ccsm/template b/srcpkgs/ccsm/template
index 0421e587b23..3067003017f 100644
--- a/srcpkgs/ccsm/template
+++ b/srcpkgs/ccsm/template
@@ -1,7 +1,7 @@
 # Template file for 'ccsm'
 pkgname=ccsm
 version=0.8.16
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 hostmakedepends="automake intltool libtool pkg-config python3"

From f4212d55b3ec84e188189bc74a572c728a37c66a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 622/872] cheat: rebuild for Python 3.8.

---
 srcpkgs/cheat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cheat/template b/srcpkgs/cheat/template
index b60b4ba53b2..f1e419c3c5a 100644
--- a/srcpkgs/cheat/template
+++ b/srcpkgs/cheat/template
@@ -1,7 +1,7 @@
 # Template file for 'cheat'
 pkgname=cheat
 version=2.5.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="cheat"
 conf_files="/etc/cheat"

From eb72b0be44091e56a3e5b73cdf6d11ff80ecb8ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 623/872] clearine: rebuild for Python 3.8.

---
 srcpkgs/clearine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/clearine/template b/srcpkgs/clearine/template
index 419bb3c4550..539d494b79b 100644
--- a/srcpkgs/clearine/template
+++ b/srcpkgs/clearine/template
@@ -1,7 +1,7 @@
 # Template file for 'clearine'
 pkgname=clearine
 version=0.7
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="Clearine"
 hostmakedepends="python3-setuptools"

From ca7e63827b68cba4586e81da6e622e70addc8b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 624/872] coccigrep: rebuild for Python 3.8.

---
 srcpkgs/coccigrep/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/coccigrep/template b/srcpkgs/coccigrep/template
index 736f16a458e..a02c2f78bb2 100644
--- a/srcpkgs/coccigrep/template
+++ b/srcpkgs/coccigrep/template
@@ -1,7 +1,7 @@
 # Template file for 'coccigrep'
 pkgname=coccigrep
 version=1.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coccigrep"

From 8b0269365914ae7e030b07b30f4a76f2f1726270 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 625/872] compizconfig-python: rebuild for Python 3.8.

---
 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 b9d9ce2892b..77d53c97f46 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.16
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static"
 hostmakedepends="automake intltool libtool pkg-config glib-devel gettext-devel python3-Cython"

From c7955381746f2b68e5bb140afe81526fd62a2d16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 626/872] coursera-dl: rebuild for Python 3.8.

---
 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 0dfdd73083f..2b09e53d836 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.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coursera"

From 1bf8d7143694f636186cfbdcf357f9b86f5a635b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 627/872] cozy: rebuild for Python 3.8.

---
 srcpkgs/cozy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cozy/template b/srcpkgs/cozy/template
index a35aff61f37..2515388da18 100644
--- a/srcpkgs/cozy/template
+++ b/srcpkgs/cozy/template
@@ -1,7 +1,7 @@
 # Template file for 'cozy'
 pkgname=cozy
 version=0.6.8
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 pycompile_module="cozy"

From 7b58e6f69ae54c84b50dfe4d6041cf861a698c60 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 628/872] cpuset: rebuild for Python 3.8.

---
 srcpkgs/cpuset/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cpuset/template b/srcpkgs/cpuset/template
index cf3910d2304..12b54631617 100644
--- a/srcpkgs/cpuset/template
+++ b/srcpkgs/cpuset/template
@@ -1,7 +1,7 @@
 # Template file for 'cpuset'
 pkgname=cpuset
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="cpuset"

From a542aca478f0e84bbc23d3fd91a236635712a9f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 629/872] ctop: rebuild for Python 3.8.

---
 srcpkgs/ctop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ctop/template b/srcpkgs/ctop/template
index b8ea58515b2..5231b4a4cb3 100644
--- a/srcpkgs/ctop/template
+++ b/srcpkgs/ctop/template
@@ -1,7 +1,7 @@
 # Template file for 'ctop'
 pkgname=ctop
 version=1.0.0
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="cgroup_top.py"

From b3065c411c5e0b3e48432c6901e1e7fb20eb00d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 630/872] cura: rebuild for Python 3.8.

---
 srcpkgs/cura/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cura/template b/srcpkgs/cura/template
index 31318e5aecf..ab5cd315f21 100644
--- a/srcpkgs/cura/template
+++ b/srcpkgs/cura/template
@@ -1,7 +1,7 @@
 # Template file for 'cura'
 pkgname=cura
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Cura-${version}"
 build_style=cmake

From 9f4eb67830feb2103a78edc7651e1f73cc606074 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 631/872] curseradio: rebuild for Python 3.8.

---
 srcpkgs/curseradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/curseradio/template b/srcpkgs/curseradio/template
index 4fe2306364a..f5afe3bba34 100644
--- a/srcpkgs/curseradio/template
+++ b/srcpkgs/curseradio/template
@@ -1,7 +1,7 @@
 # Template file for 'curseradio'
 pkgname=curseradio
 version=0.0.20171017
-revision=3
+revision=4
 archs=noarch
 _commit=1bd4bd0faeec675e0647bac9a100b526cba19f8d
 wrksrc="curseradio-${_commit}"

From fa4e6156adf5c317bb85ee1d8271c9e6ce57b3e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 632/872] d-feet: rebuild for Python 3.8.

---
 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 6930eddf582..7f7d593f30a 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.15
-revision=1
+revision=2
 build_style=meson
 maintainer="Enno Boland <gottox@voidlinux.org>"
 hostmakedepends="pkg-config intltool itstool python3-pycodestyle"

From d6145053ac873c90f6383dee8ec4d696463928f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 633/872] deluge: rebuild for Python 3.8.

---
 srcpkgs/deluge/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/deluge/template b/srcpkgs/deluge/template
index 6dc7f26184d..8148c68033c 100644
--- a/srcpkgs/deluge/template
+++ b/srcpkgs/deluge/template
@@ -1,7 +1,7 @@
 # Template file for 'deluge'
 pkgname=deluge
 version=2.0.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="deluge"

From 0b2691a90e5de63e49a3c3f3adfa709d618b0a05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 634/872] devedeng: rebuild for Python 3.8.

---
 srcpkgs/devedeng/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/devedeng/template b/srcpkgs/devedeng/template
index d971b2e207b..2d0516cedd3 100644
--- a/srcpkgs/devedeng/template
+++ b/srcpkgs/devedeng/template
@@ -1,7 +1,7 @@
 # Template file for 'devedeng'
 pkgname=devedeng
 version=4.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="devedeng"

From 8b7c3bcfced7b21089b0a64ac1c375eb973af343 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 635/872] distcc: rebuild for Python 3.8.

---
 srcpkgs/distcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/distcc/template b/srcpkgs/distcc/template
index ded4255becd..4d6a450533f 100644
--- a/srcpkgs/distcc/template
+++ b/srcpkgs/distcc/template
@@ -1,7 +1,7 @@
 # Template file for 'distcc'
 pkgname=distcc
 version=3.3.3
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-Werror --with-gtk"
 conf_files="

From 98151a807bebdc6d5e41e0b6a1bd0d65659fbb7e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 636/872] docker-compose: rebuild for Python 3.8.

---
 srcpkgs/docker-compose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/docker-compose/template b/srcpkgs/docker-compose/template
index c3383fdf1ad..f4a34005c83 100644
--- a/srcpkgs/docker-compose/template
+++ b/srcpkgs/docker-compose/template
@@ -1,7 +1,7 @@
 # Template file for 'docker-compose'
 pkgname=docker-compose
 version=1.24.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="compose-${version}"
 build_style=python3-module

From 9dc2f62edc54b5e314c24fe7bb303496223adb45 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 637/872] edx-dl: rebuild for Python 3.8.

---
 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 209884640c6..a51c917d606 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.10
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="edx_dl"

From 6a769ff00b2fc959627e96d44172f8a656548751 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 638/872] electrum: rebuild for Python 3.8.

---
 srcpkgs/electrum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template
index 3861becdda9..7525e08e9e2 100644
--- a/srcpkgs/electrum/template
+++ b/srcpkgs/electrum/template
@@ -1,7 +1,7 @@
 # Template file for 'electrum'
 pkgname=electrum
 version=3.3.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electrum electrum_gui electrum_plugins"

From be52dccd4b30af3377095664bf239767a0f7be39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 639/872] electrum-ltc: rebuild for Python 3.8.

---
 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 ad6f745e152..cf7265fbec8 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.6.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"

From 45951afeb4bab3066e0459cf1441d9c3570c85dc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 640/872] eolie: rebuild for Python 3.8.

---
 srcpkgs/eolie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eolie/template b/srcpkgs/eolie/template
index b3da3dcd829..94514510c98 100644
--- a/srcpkgs/eolie/template
+++ b/srcpkgs/eolie/template
@@ -1,7 +1,7 @@
 # Template file for 'eolie'
 pkgname=eolie
 version=0.9.62
-revision=1
+revision=2
 _eolie_hash=bb4aad19272cc636bd17f2f6602127fe
 build_style=meson
 pycompile_module="eolie"

From ad02dba2226dbfc6b1fb5e715af8b58821cd8c07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 641/872] eyeD3: rebuild for Python 3.8.

---
 srcpkgs/eyeD3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eyeD3/template b/srcpkgs/eyeD3/template
index 7be047810bd..211553f0adb 100644
--- a/srcpkgs/eyeD3/template
+++ b/srcpkgs/eyeD3/template
@@ -1,7 +1,7 @@
 # Template file for 'eyeD3'
 pkgname=eyeD3
 version=0.8.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="eyed3"

From 5333d561e8831b7103f00f5e4564ce20bc26e9b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 642/872] fail2ban: rebuild for Python 3.8.

---
 srcpkgs/fail2ban/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 829e93385dc..361bcd12edd 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,7 +1,7 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
 version=0.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From 6ed6f50c8422b21b0f8244e983014120a3467562 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 643/872] fava: rebuild for Python 3.8.

---
 srcpkgs/fava/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fava/template b/srcpkgs/fava/template
index 24e66cac45b..890858b095b 100644
--- a/srcpkgs/fava/template
+++ b/srcpkgs/fava/template
@@ -1,7 +1,7 @@
 # Template file for 'fava'
 pkgname=fava
 version=1.11
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fava"

From cfe04c8e627d5d3626d852a05f3a87ecf053557f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 644/872] fierce: rebuild for Python 3.8.

---
 srcpkgs/fierce/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fierce/template b/srcpkgs/fierce/template
index 86dedb39ad2..86692c6457b 100644
--- a/srcpkgs/fierce/template
+++ b/srcpkgs/fierce/template
@@ -1,7 +1,7 @@
 # Template file for 'fierce'
 pkgname=fierce
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fierce"

From c67a6380bd6f21a660d10cde09cb2930536faee5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 645/872] fifengine: rebuild for Python 3.8.

---
 srcpkgs/fifengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fifengine/template b/srcpkgs/fifengine/template
index 1d4bcbb9297..871c94ad7e0 100644
--- a/srcpkgs/fifengine/template
+++ b/srcpkgs/fifengine/template
@@ -1,7 +1,7 @@
 # Template file for 'fifengine'
 pkgname=fifengine
 version=0.4.2
-revision=1
+revision=2
 build_style=cmake
 pycompile_module="fife"
 hostmakedepends="swig python3"

From 407bb3354f4705ac3e7d9c40479ff7272cbf5478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 646/872] flake8: rebuild for Python 3.8.

---
 srcpkgs/flake8/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/flake8/template b/srcpkgs/flake8/template
index d8f2b095644..4d7ebeba176 100644
--- a/srcpkgs/flake8/template
+++ b/srcpkgs/flake8/template
@@ -1,7 +1,7 @@
 # Template file for 'flake8'
 pkgname=flake8
 version=3.7.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="flake8"

From 770a2460b2b1f167fe87687c22ab0ff3d925964d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 647/872] fontforge: fix and rebuild for Python 3.8.

---
 srcpkgs/fontforge/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/fontforge/template b/srcpkgs/fontforge/template
index 7fb02d7e371..2893bc52cfb 100644
--- a/srcpkgs/fontforge/template
+++ b/srcpkgs/fontforge/template
@@ -1,7 +1,7 @@
 # Template file for 'fontforge'
 pkgname=fontforge
 version=20190801
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake ca-certificates git libltdl-devel libtool m4
  pkg-config python3"
@@ -20,6 +20,7 @@ checksum="e4501de5bd8e7f6c68fe7d3abd4667bf44a07b981d342ffa00e8f42e155ce633
  1bf9c7eb8835e6ed94e62cb49f1141bc046c562849e52e6c3c7f1d7cfc95c7b3"
 
 pre_configure() {
+        sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION}/&-embed/g' m4/fontforge_arg_enable.m4
 	./bootstrap
 }
 

From b878e1d66ee439999393e2aa55941b07f8e6c745 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 648/872] gajim: rebuild for Python 3.8.

---
 srcpkgs/gajim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gajim/template b/srcpkgs/gajim/template
index 8c49c0cf6ef..e81015b3906 100644
--- a/srcpkgs/gajim/template
+++ b/srcpkgs/gajim/template
@@ -1,7 +1,7 @@
 # Template file for 'gajim'
 pkgname=gajim
 version=1.1.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gajim"

From e0ad178e264be367206a16d9b96524e6d37e4b22 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 649/872] gajim-omemo: rebuild for Python 3.8.

---
 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 803f94713be..64d47228496 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.6.29
-revision=1
+revision=2
 wrksrc="omemo"
 hostmakedepends="unzip"
 depends="python3 python3-setuptools python3-cryptography python3-axolotl python3-qrcode"

From 4988da06fe14563631406801f6b22795355576a4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 650/872] gallery-dl: rebuild for Python 3.8.

---
 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 a1e8c633fe3..62b338a32e3 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.10.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gallery_dl"

From 7d5c0c0d7a1dcc5f3c504ed769a3730c7d688ed3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 651/872] gandi-cli: rebuild for Python 3.8.

---
 srcpkgs/gandi-cli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gandi-cli/template b/srcpkgs/gandi-cli/template
index c5e805a09fd..4193bfe4638 100644
--- a/srcpkgs/gandi-cli/template
+++ b/srcpkgs/gandi-cli/template
@@ -1,7 +1,7 @@
 # Template file for 'gandi-cli'
 pkgname=gandi-cli
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="gandi.cli-${version}"
 build_style=python3-module

From 7ae81741d5a1d24c19e0950a8631b2afb2f66301 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 652/872] gcovr: rebuild for Python 3.8.

---
 srcpkgs/gcovr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gcovr/template b/srcpkgs/gcovr/template
index 2b9ff94bf2a..0d4addfc8a7 100644
--- a/srcpkgs/gcovr/template
+++ b/srcpkgs/gcovr/template
@@ -1,7 +1,7 @@
 # Template file for 'gcovr'
 pkgname=gcovr
 version=4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gcovr"

From ff745f27bbeb2148c202a6cfde42c27c27ffb081 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 653/872] gedit: rebuild for Python 3.8.

---
 srcpkgs/gedit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gedit/template b/srcpkgs/gedit/template
index 904d3b7c3c4..6666c331c52 100644
--- a/srcpkgs/gedit/template
+++ b/srcpkgs/gedit/template
@@ -1,7 +1,7 @@
 # Template file for 'gedit'
 pkgname=gedit
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gi/overrides"

From 6d37a1560ee94e42e383c5bc4cba87d59366a1bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 654/872] geis: rebuild for Python 3.8.

---
 srcpkgs/geis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/geis/template b/srcpkgs/geis/template
index fe31a3d2aeb..20afe76b0d8 100644
--- a/srcpkgs/geis/template
+++ b/srcpkgs/geis/template
@@ -1,7 +1,7 @@
 # Template file for 'geis'
 pkgname=geis
 version=2.2.17
-revision=4
+revision=5
 hostmakedepends="pkg-config python3-devel"
 makedepends="dbus-devel grail-devel frame-devel libXi-devel python3-devel xorg-server-devel"
 build_style="gnu-configure"

From 83ad8dc7e8dc71c64a9004e04aba36ca30c051fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 655/872] git-cola: rebuild for Python 3.8.

---
 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 7eaba90f3be..fd0bbf971d3 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.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/share/git-cola/lib"

From 69e4bac4c10842ce70ce2a1db26f883af407e79c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 656/872] git-review: rebuild for Python 3.8.

---
 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 d999dc87b16..c180cc60780 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="git_review"

From 7c0a260d7120bd5e0e4e27c6b30b83e9dfe60359 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 657/872] git-revise: rebuild for Python 3.8.

---
 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 4179a52bddc..a1bf51dc447 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.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gitrevise"

From 49a8265f4cd71c84814307928cbbd2eb33c4bbad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 658/872] gitg: rebuild for Python 3.8.

---
 srcpkgs/gitg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gitg/template b/srcpkgs/gitg/template
index e0da8e9490d..a3381fdb3a7 100644
--- a/srcpkgs/gitg/template
+++ b/srcpkgs/gitg/template
@@ -1,7 +1,7 @@
 # Template file for 'gitg'
 pkgname=gitg
 version=3.32.1
-revision=1
+revision=2
 build_style=meson
 hostmakedepends="intltool pkg-config gobject-introspection vala glib-devel"
 makedepends="gtksourceview-devel libgit2-glib-devel libgee08-devel gtkspell3-devel

From 5b5919636d70cb1259ebd7740e9b55936a7c29f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 659/872] glances: rebuild for Python 3.8.

---
 srcpkgs/glances/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glances/template b/srcpkgs/glances/template
index 6d4766493c3..753d9e20c92 100644
--- a/srcpkgs/glances/template
+++ b/srcpkgs/glances/template
@@ -1,7 +1,7 @@
 # Template file for 'glances'
 pkgname=glances
 version=3.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Glances-${version}"
 build_style=python3-module

From 8b16492c679f3eb6c6ae2d4573f9adeb356715be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 660/872] glusterfs: rebuild for Python 3.8.

---
 srcpkgs/glusterfs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glusterfs/template b/srcpkgs/glusterfs/template
index a1304e266fe..90093864286 100644
--- a/srcpkgs/glusterfs/template
+++ b/srcpkgs/glusterfs/template
@@ -1,7 +1,7 @@
 # Template file for 'glusterfs'
 pkgname=glusterfs
 version=6.5
-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 22925c23326876f7422d67e1f21f0e629b9c7ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 661/872] gnome-authenticator: rebuild for Python 3.8.

---
 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 52d161897c7..ab7c505c0fe 100644
--- a/srcpkgs/gnome-authenticator/template
+++ b/srcpkgs/gnome-authenticator/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-authenticator'
 pkgname=gnome-authenticator
 version=0.2.4
-revision=2
+revision=3
 _libgd_hash=7ae254bfc5f641c60566614e08245176f7bc5aa8
 wrksrc="Authenticator-${version}"
 build_style=meson

From 4130139a7454a2050f48c6feac4f9312c50219d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 662/872] gnome-music: rebuild for Python 3.8.

---
 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 bceb7c369c8..e2fbbcbdeca 100644
--- a/srcpkgs/gnome-music/template
+++ b/srcpkgs/gnome-music/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-music'
 pkgname=gnome-music
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gnomemusic"

From 94b0589cc1f42f2505ac86d6596ab748ab75e02f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 663/872] gnome-passbook: rebuild for Python 3.8.

---
 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 54035dc920b..89047338503 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.1
-revision=1
+revision=2
 _release_hash=0a227cfdf706f4bfcc0b782026f1aeb2
 wrksrc="passbook-${version}"
 build_style=meson

From 76dae990f2ec69291f7826391c7a375014867fb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 664/872] gnome-passwordsafe: rebuild for Python 3.8.

---
 srcpkgs/gnome-passwordsafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnome-passwordsafe/template b/srcpkgs/gnome-passwordsafe/template
index f310ce03a08..8f1f19174d2 100644
--- a/srcpkgs/gnome-passwordsafe/template
+++ b/srcpkgs/gnome-passwordsafe/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-passwordsafe'
 pkgname=gnome-passwordsafe
 version=3.32.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="PasswordSafe-${version}"
 build_style=meson

From ebb227d14a2271cc033506f2dd54957eecc5b719 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 665/872] gns3-gui: rebuild for Python 3.8.

---
 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 38751dea59b..f4318dc6afc 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.1.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3"

From b44e9cf882e059036ed7e3834cafdf689c956e32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 666/872] gns3-net-converter: rebuild for Python 3.8.

---
 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 b9b7403e8a6..70b6c90e8c8 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=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3converter"

From eaf37536ad96d1421cc95823589d2cd21779089d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 667/872] gns3-server: rebuild for Python 3.8.

---
 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 6bd9c067b20..739c584cb7c 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.1.21
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="gns3server"
 hostmakedepends="python3-setuptools"

From 3a2540b9e2143af7b07dcaee0ed3930b9016dc1e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 668/872] gnucash: rebuild for Python 3.8.

---
 srcpkgs/gnucash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnucash/template b/srcpkgs/gnucash/template
index 68bb811fc42..d8ff0a8ec86 100644
--- a/srcpkgs/gnucash/template
+++ b/srcpkgs/gnucash/template
@@ -1,7 +1,7 @@
 # Template file for 'gnucash'
 pkgname=gnucash
 version=3.7
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DWITH_SQL=0 -DWITH_PYTHON=1"
 hostmakedepends="pkg-config guile python3 libxslt perl"

From c1420969fc916318d29dfdc3836adf0580095969 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 669/872] gom: rebuild for Python 3.8.

---
 srcpkgs/gom/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gom/template b/srcpkgs/gom/template
index 6ec2a5e338f..0b45e19def4 100644
--- a/srcpkgs/gom/template
+++ b/srcpkgs/gom/template
@@ -1,7 +1,7 @@
 # Template file for 'gom'
 pkgname=gom
 version=0.3.3
-revision=3
+revision=4
 build_style=meson
 build_helper="gir"
 configure_args="-Denable-introspection=$(vopt_if gir true false)

From e55d5d66739df70ca67793cbca3b12aa5f01e751 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 670/872] gpodder: rebuild for Python 3.8.

---
 srcpkgs/gpodder/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gpodder/template b/srcpkgs/gpodder/template
index 7c7414e19cd..5cc63ab4205 100644
--- a/srcpkgs/gpodder/template
+++ b/srcpkgs/gpodder/template
@@ -1,7 +1,7 @@
 # Template file for 'gpodder'
 pkgname=gpodder
 version=3.10.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="gpodder-${version}"
 make_check_target=unittest

From d91d30f5f2b0b5e6323da1f35eaf923fed0a111f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 671/872] gramps: rebuild for Python 3.8.

---
 srcpkgs/gramps/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gramps/template b/srcpkgs/gramps/template
index 9d1d1a4616a..5d40aeefb49 100644
--- a/srcpkgs/gramps/template
+++ b/srcpkgs/gramps/template
@@ -1,7 +1,7 @@
 # Template file for 'gramps'
 pkgname=gramps
 version=5.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gramps"

From bb3e960f11dda36c822c8bd1e8575b2a69ce9a66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 672/872] greg: rebuild for Python 3.8.

---
 srcpkgs/greg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/greg/template b/srcpkgs/greg/template
index 9c15ba82f4b..d898d5fdf61 100644
--- a/srcpkgs/greg/template
+++ b/srcpkgs/greg/template
@@ -1,7 +1,7 @@
 # Template file for 'greg'
 pkgname=greg
 version=0.4.7
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 pycompile_module="greg"

From be202bce8c20fb165e811e32683e96aae42b1452 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 673/872] gst1-python3: rebuild for Python 3.8.

---
 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 6f02f19aca3..bf946f6a8bf 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.16.1
-revision=1
+revision=2
 wrksrc="gst-python-${version}"
 build_style=meson
 pycompile_module="gi/overrides"

From b9ef9fe5fb2d7b03831106592cfae54a25c41a0f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 674/872] guake: rebuild for Python 3.8.

---
 srcpkgs/guake/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/guake/template b/srcpkgs/guake/template
index 86eaba649a7..d92fdf89355 100644
--- a/srcpkgs/guake/template
+++ b/srcpkgs/guake/template
@@ -1,7 +1,7 @@
 # Template file for 'guake'
 pkgname=guake
 version=3.6.3
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 wrksrc="Guake-${version}"

From a53d49cbf26761960b1d159a12df007b627e7650 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 675/872] gufw: rebuild for Python 3.8.

---
 srcpkgs/gufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gufw/template b/srcpkgs/gufw/template
index d2b8a4b025d..a4e7d861d71 100644
--- a/srcpkgs/gufw/template
+++ b/srcpkgs/gufw/template
@@ -1,7 +1,7 @@
 # Template file for 'gufw'
 pkgname=gufw
 version=19.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="gui-ufw-${version}"
 build_style=python3-module

From 165d3546e52431e5cb6d8f7534344eb7da2982a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 676/872] hamlib: rebuild for Python 3.8.

---
 srcpkgs/hamlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hamlib/template b/srcpkgs/hamlib/template
index c28a069cd6f..d52436c0893 100644
--- a/srcpkgs/hamlib/template
+++ b/srcpkgs/hamlib/template
@@ -1,7 +1,7 @@
 # Template file for 'hamlib'
 pkgname=hamlib
 version=3.3
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static --with-perl-binding --with-python-binding
  --with-tcl-binding --with-xml-support"

From fe67c3b8e01dac359eba93dada80286f4b7bd546 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 677/872] hangups: rebuild for Python 3.8.

---
 srcpkgs/hangups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hangups/template b/srcpkgs/hangups/template
index 0a2f2db16b4..0837a2c47c3 100644
--- a/srcpkgs/hangups/template
+++ b/srcpkgs/hangups/template
@@ -1,7 +1,7 @@
 # Template file for 'hangups'
 pkgname=hangups
 version=0.4.9
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="hangups"
 hostmakedepends="python3-setuptools"

From 54c05618d6ea2a636e7649b6dfb4df7e9097df99 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 678/872] hplip: rebuild for Python 3.8.

---
 srcpkgs/hplip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hplip/template b/srcpkgs/hplip/template
index 07a707569f6..3ef76e4591b 100644
--- a/srcpkgs/hplip/template
+++ b/srcpkgs/hplip/template
@@ -1,7 +1,7 @@
 # Template file for 'hplip'
 pkgname=hplip
 version=3.19.8
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="usr/share/hplip"
 configure_args="

From b9133921feebbc073c9d3cecdc138c34dd553caa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 679/872] httpie: rebuild for Python 3.8.

---
 srcpkgs/httpie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/httpie/template b/srcpkgs/httpie/template
index 387af8ebf05..61fc1499d35 100644
--- a/srcpkgs/httpie/template
+++ b/srcpkgs/httpie/template
@@ -1,7 +1,7 @@
 # Template file for 'httpie'
 pkgname=httpie
 version=1.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="httpie"

From 6c6626a47930ae266d4f95bc011f99e15b7237a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 680/872] ibus: rebuild for Python 3.8.

---
 srcpkgs/ibus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ibus/template b/srcpkgs/ibus/template
index 4875c7535d6..d3c35d786a4 100644
--- a/srcpkgs/ibus/template
+++ b/srcpkgs/ibus/template
@@ -1,7 +1,7 @@
 # Template file for 'ibus'
 pkgname=ibus
 version=1.5.20
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 configure_args="--enable-ui --enable-gtk3 --disable-tests

From ad8f78bd52e9d9925d746e1bbca9a926040dc866 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 681/872] iotop: rebuild for Python 3.8.

---
 srcpkgs/iotop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template
index 146a9e97791..522bf32a7c2 100644
--- a/srcpkgs/iotop/template
+++ b/srcpkgs/iotop/template
@@ -1,7 +1,7 @@
 # Template file for 'iotop'
 pkgname=iotop
 version=0.6
-revision=5
+revision=6
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From bf6b1d411e5f8d2459161a4599d66d7148220c48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 682/872] jrnl: rebuild for Python 3.8.

---
 srcpkgs/jrnl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template
index 3d08f129885..b184ef09508 100644
--- a/srcpkgs/jrnl/template
+++ b/srcpkgs/jrnl/template
@@ -1,7 +1,7 @@
 # Template file for 'jrnl'
 pkgname=jrnl
 version=1.9.8
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="jrnl"

From 3262fda476f3282359c09dd2902deac5997a3394 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 683/872] khal: rebuild for Python 3.8.

---
 srcpkgs/khal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khal/template b/srcpkgs/khal/template
index 39d08a66ba8..a73516695bf 100644
--- a/srcpkgs/khal/template
+++ b/srcpkgs/khal/template
@@ -1,7 +1,7 @@
 # Template file for 'khal'
 pkgname=khal
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khal"

From be7f25caca1d74c5f9f58c4cc40c3f3f889971d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 684/872] khard: rebuild for Python 3.8.

---
 srcpkgs/khard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khard/template b/srcpkgs/khard/template
index 6c6f3024be1..3ec9f398d99 100644
--- a/srcpkgs/khard/template
+++ b/srcpkgs/khard/template
@@ -1,7 +1,7 @@
 # Template file for 'khard'
 pkgname=khard
 version=0.14.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khard"

From 0509f15447526a6132348baf9eb600d22a0c20f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 685/872] lfm: rebuild for Python 3.8.

---
 srcpkgs/lfm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lfm/template b/srcpkgs/lfm/template
index 0a0a3b4f563..1e0e7cf29fa 100644
--- a/srcpkgs/lfm/template
+++ b/srcpkgs/lfm/template
@@ -1,7 +1,7 @@
 # Template file for 'lfm'
 pkgname=lfm
 version=3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 9ac423037b0a4806134116f0b6501d27f2bb3047 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 686/872] libArcus: rebuild for Python 3.8.

---
 srcpkgs/libArcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libArcus/template b/srcpkgs/libArcus/template
index 8e6c97ada21..d2ffda576d4 100644
--- a/srcpkgs/libArcus/template
+++ b/srcpkgs/libArcus/template
@@ -1,7 +1,7 @@
 # Template file for 'libArcus'
 pkgname=libArcus
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DBUILD_EXAMPLES=OFF"
 hostmakedepends="protobuf python3-sip-devel"

From 8a5c0bc1b4d750fbb633dcfb68645bdb8e23ac37 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 687/872] libSavitar: rebuild for Python 3.8.

---
 srcpkgs/libSavitar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libSavitar/template b/srcpkgs/libSavitar/template
index a9d3020158f..213f02f4d65 100644
--- a/srcpkgs/libSavitar/template
+++ b/srcpkgs/libSavitar/template
@@ -1,7 +1,7 @@
 # Template file for 'libSavitar'
 pkgname=libSavitar
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 hostmakedepends="python3"
 makedepends="python3-sip-devel python3-devel pugixml-devel"

From 888da49c1bb8061c80359b4015485b151f0d74d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 688/872] libaccounts-glib: rebuild for Python 3.8.

---
 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 717be24f209..239f9307261 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=2
+revision=3
 wrksrc="${pkgname}-VERSION_${version}-8948717702424ce15f4e23e5db2c8ce0799ec120"
 build_style=meson
 hostmakedepends="gtk-doc pkg-config glib-devel gobject-introspection vala"

From bd98c3c06982e10c3f9df1df66d5b04f1a5ef434 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 689/872] libblockdev: rebuild for Python 3.8.

---
 srcpkgs/libblockdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libblockdev/template b/srcpkgs/libblockdev/template
index 1df156e3c5b..ff20fc70618 100644
--- a/srcpkgs/libblockdev/template
+++ b/srcpkgs/libblockdev/template
@@ -1,7 +1,7 @@
 # Template file for 'libblockdev'
 pkgname=libblockdev
 version=2.21
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="cryptsetup-devel device-mapper-devel dmraid-devel libbytesize-devel

From 41b298fd633e7e588071f06e8d421ed9b2c21a8c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 690/872] libbytesize: rebuild for Python 3.8.

---
 srcpkgs/libbytesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libbytesize/template b/srcpkgs/libbytesize/template
index ee1862d889d..e07cdf29a82 100644
--- a/srcpkgs/libbytesize/template
+++ b/srcpkgs/libbytesize/template
@@ -1,7 +1,7 @@
 # Template file for 'libbytesize'
 pkgname=libbytesize
 version=1.4
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python3"
 makedepends="mpfr-devel pcre-devel"

From bdb495aaf63cb8b79a83eda9623e54e67de33d75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 691/872] libcap-ng: rebuild for Python 3.8.

---
 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 f462636c4c1..c6ec4f0a216 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.7.10
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-python --without-python3"
 short_desc="Alternate POSIX capabilities library"

From 64a29440ad0bb81db7db97e461b4b68478993d17 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 692/872] libffado: rebuild for Python 3.8.

---
 srcpkgs/libffado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libffado/template b/srcpkgs/libffado/template
index a9b6a5ec6a8..d566806bd82 100644
--- a/srcpkgs/libffado/template
+++ b/srcpkgs/libffado/template
@@ -1,7 +1,7 @@
 # Template file for 'libffado'
 pkgname=libffado
 version=2.4.1
-revision=1
+revision=2
 build_style=scons
 make_build_args="PREFIX=/usr MANDIR=/usr/share/man
  UDEVDIR=/usr/lib/udev/rules.d CUSTOM_ENV=1 BUILD_TESTS=0

From 3ac32b19e51680d2330b26da6cb8d640904fcb75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 693/872] libgit2-glib: rebuild for Python 3.8.

---
 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 05389a18258..ce68cb35d66 100644
--- a/srcpkgs/libgit2-glib/template
+++ b/srcpkgs/libgit2-glib/template
@@ -1,7 +1,7 @@
 # Template file for 'libgit2-glib'
 pkgname=libgit2-glib
 version=0.28.0.1
-revision=1
+revision=2
 build_style=meson
 build_helper="gir"
 configure_args="-Dintrospection=$(vopt_if gir true false)

From 6950f9e7571c268c087d93d7e94d169a8fb8291b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 694/872] libixion: rebuild for Python 3.8.

---
 srcpkgs/libixion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libixion/template b/srcpkgs/libixion/template
index 5d2c58ee7c0..dbc05d8b9c1 100644
--- a/srcpkgs/libixion/template
+++ b/srcpkgs/libixion/template
@@ -2,7 +2,7 @@
 pkgname=libixion
 reverts="0.15.0_1"
 version=0.14.1
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="boost-devel mdds python3-devel"

From 45a847c34a550d9cc64985d24ef9b306aade5790 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 695/872] liblouis: rebuild for Python 3.8.

---
 srcpkgs/liblouis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liblouis/template b/srcpkgs/liblouis/template
index 77194ad8820..13c29b62b21 100644
--- a/srcpkgs/liblouis/template
+++ b/srcpkgs/liblouis/template
@@ -1,7 +1,7 @@
 # Template file for 'liblouis'
 pkgname=liblouis
 version=3.9.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--enable-ucs4"
 pycompile_module="louis"

From f79d54ca6d5162f4f17a9cae76f0bd941deaf438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 696/872] opencv: rebuild for Python 3.8.

---
 srcpkgs/opencv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/opencv/template b/srcpkgs/opencv/template
index fcc38299f23..474b77be181 100644
--- a/srcpkgs/opencv/template
+++ b/srcpkgs/opencv/template
@@ -1,7 +1,7 @@
 # Template file for 'opencv'
 pkgname=opencv
 version=3.4.5
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_PRECOMPILED_HEADERS=OFF -DWITH_OPENMP=ON
  -DWITH_OPENCL=ON -DENABLE_CXX11=ON -DOPENCV_SKIP_PYTHON_LOADER=ON

From f3399fca6f67a8990fa1adc144bd949c0a5c66c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 697/872] libopenshot: rebuild for Python 3.8.

---
 srcpkgs/libopenshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libopenshot/template b/srcpkgs/libopenshot/template
index e1ac18faf93..dab1f2ae1e3 100644
--- a/srcpkgs/libopenshot/template
+++ b/srcpkgs/libopenshot/template
@@ -1,7 +1,7 @@
 # Template file for 'libopenshot'
 pkgname=libopenshot
 version=0.2.3
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 build_style=cmake
 pycompile_module="openshot.py"

From c7902fc599bfc61c600307df6f75acfadf8e612e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 698/872] liborcus: rebuild for Python 3.8.

---
 srcpkgs/liborcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liborcus/template b/srcpkgs/liborcus/template
index 3523d7830d8..e7704c43974 100644
--- a/srcpkgs/liborcus/template
+++ b/srcpkgs/liborcus/template
@@ -2,7 +2,7 @@
 pkgname=liborcus
 reverts="0.15.0_1"
 version=0.14.1
-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 aec13b74f5953d86ed1dab8574a9bb836924a3da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 699/872] libpwquality: rebuild for Python 3.8.

---
 srcpkgs/libpwquality/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpwquality/template b/srcpkgs/libpwquality/template
index e5a656236d7..6c2209155a3 100644
--- a/srcpkgs/libpwquality/template
+++ b/srcpkgs/libpwquality/template
@@ -1,7 +1,7 @@
 # Template file for 'libpwquality'
 pkgname=libpwquality
 version=1.4.1
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static --enable-pam --with-securedir=/usr/lib/security"
 hostmakedepends="libtool automake gettext-devel"

From a5604d1184badc5a3b5afb2426bc910d703ee0f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 700/872] libsearpc: rebuild for Python 3.8.

---
 srcpkgs/libsearpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsearpc/template b/srcpkgs/libsearpc/template
index 61f68e5e7de..a7e0b9ce05c 100644
--- a/srcpkgs/libsearpc/template
+++ b/srcpkgs/libsearpc/template
@@ -1,7 +1,7 @@
 # Template file for 'libsearpc'
 pkgname=libsearpc
 version=3.1.0
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="pysearpc"
 configure_args="PYTHON=python3 --disable-static --disable-compile-demo"

From 5aaa024e287c3460065dbe861abc25499a281e07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 701/872] libtorrent-rasterbar: fix and rebuild for Python 3.8.

---
 srcpkgs/libtorrent-rasterbar/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libtorrent-rasterbar/template b/srcpkgs/libtorrent-rasterbar/template
index 118108c6184..51b7175fb81 100644
--- a/srcpkgs/libtorrent-rasterbar/template
+++ b/srcpkgs/libtorrent-rasterbar/template
@@ -1,9 +1,9 @@
 # Template file for 'libtorrent-rasterbar'
 pkgname=libtorrent-rasterbar
 version=1.1.13
-revision=3
+revision=4
 build_style=gnu-configure
-configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=boost_python36"
+configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=libboost_python${py3_ver/./}"
 hostmakedepends="automake pkg-config intltool libtool python3-devel"
 makedepends="libressl-devel boost-devel geoip-devel python3-devel"
 short_desc="C++ bittorrent library by Rasterbar Software"
@@ -14,9 +14,9 @@ distfiles="https://github.com/arvidn/libtorrent/releases/download/libtorrent-${v
 checksum=30040719858e3c06634764e0c1778738eb42ecd0b45e814afa746329a948ead7
 
 pre_configure() {
-	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython3.6m"
+	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython${py3_ver}${py3_abiver}"
 	autoreconf -fi
 }
 

From 75ce8cab25904eeb4975663fb77b4f29c10c1dbe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 702/872] libvirt-python: rebuild for Python 3.8.

---
 srcpkgs/libvirt-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvirt-python/template b/srcpkgs/libvirt-python/template
index a2f0e038166..56253c9d3b0 100644
--- a/srcpkgs/libvirt-python/template
+++ b/srcpkgs/libvirt-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libvirt-python'
 pkgname=libvirt-python
 version=5.8.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="libvirt.py libvirt_lxc.py libvirt_qemu.py"
 hostmakedepends="pkg-config python-devel python3-devel libvirt-devel"

From 5e9842585a68fb832637cdd1b5adcd50bc48841b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 703/872] libvoikko: rebuild for Python 3.8.

---
 srcpkgs/libvoikko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvoikko/template b/srcpkgs/libvoikko/template
index 8d21b0f9c71..ba8eef837ee 100644
--- a/srcpkgs/libvoikko/template
+++ b/srcpkgs/libvoikko/template
@@ -1,7 +1,7 @@
 # Template file for 'libvoikko'
 pkgname=libvoikko
 version=4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-hfst=false --with-dictionary-path=/usr/share/voikko"
 pycompile_module="libvoikko.py"

From 8141b26019c7a2414b15fcf8b8672eb24047f49d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 704/872] libxml2-python: rebuild for Python 3.8.

---
 srcpkgs/libxml2-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libxml2-python/template b/srcpkgs/libxml2-python/template
index a80208823c2..5514ed43437 100644
--- a/srcpkgs/libxml2-python/template
+++ b/srcpkgs/libxml2-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libxml2-python'
 pkgname=libxml2-python
 version=2.9.9
-revision=3
+revision=4
 wrksrc="${pkgname%-python}-${version}"
 build_wrksrc=python
 build_style=python-module

From 70f5881f1b341100ddc517ba0f4b54e161303165 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 705/872] lightdm-gtk-greeter-settings: rebuild for Python 3.8.

---
 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 715f41bbef4..76a25b91e4c 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=1
+revision=2
 build_style=python3-module
 pycompile_module="lightdm_gtk_greeter_settings"
 hostmakedepends="python3-distutils-extra intltool"

From 04c380043914f79a0c6cd3199748bb0fb2e37967 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 706/872] llvm9: rebuild for Python 3.8.

---
 srcpkgs/llvm9/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/llvm9/template b/srcpkgs/llvm9/template
index 3c1a1a3451b..890a93855d8 100644
--- a/srcpkgs/llvm9/template
+++ b/srcpkgs/llvm9/template
@@ -1,7 +1,7 @@
 # Template file for 'llvm9'
 pkgname=llvm9
 version=9.0.0
-revision=2
+revision=3
 wrksrc="llvm-${version}.src"
 build_style=cmake
 configure_args="

From 4778e7a0c73ffa2fae833fee20ac790fef99fff9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 707/872] lollypop: rebuild for Python 3.8.

---
 srcpkgs/lollypop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lollypop/template b/srcpkgs/lollypop/template
index 56ace773bf3..3bd13c0d387 100644
--- a/srcpkgs/lollypop/template
+++ b/srcpkgs/lollypop/template
@@ -1,7 +1,7 @@
 # Template file for 'lollypop'
 pkgname=lollypop
 version=1.1.4.16
-revision=1
+revision=2
 # Gitlab upload tag hash
 _uhash=6b4e4e7a2c17f0770c1e2b3354ae5a3a
 archs=noarch

From 6041a22c11224f7e771c92e9f61adf7eaf37450a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 708/872] lutris: rebuild for Python 3.8.

---
 srcpkgs/lutris/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lutris/template b/srcpkgs/lutris/template
index 8f54d693a12..75be521cc7c 100644
--- a/srcpkgs/lutris/template
+++ b/srcpkgs/lutris/template
@@ -1,7 +1,7 @@
 # Template file for 'lutris'
 pkgname=lutris
 version=0.5.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 build_helper="gir"

From 768559bee2d66197ffebf07de70d31e1098fe2a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 709/872] magic-wormhole: rebuild for Python 3.8.

---
 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 c07753ce6ad..d93a1bbe1fc 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.11.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wormhole"

From 2a5b126fdf712642756c4d70a6a679f4479b504c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 710/872] mate-tweak: rebuild for Python 3.8.

---
 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 85b829e85e8..76b79524269 100644
--- a/srcpkgs/mate-tweak/template
+++ b/srcpkgs/mate-tweak/template
@@ -1,7 +1,7 @@
 # Template file for 'mate-tweak'
 pkgname=mate-tweak
 version=19.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-pbr python3-setuptools"

From 2717d85b6903ce0f45484d5f051e477d27e68ff3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 711/872] med: rebuild for Python 3.8.

---
 srcpkgs/med/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/med/template b/srcpkgs/med/template
index 34dd6d006d6..acd79293246 100644
--- a/srcpkgs/med/template
+++ b/srcpkgs/med/template
@@ -1,7 +1,7 @@
 # Template file for 'med'
 pkgname=med
 version=4.0.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--with-swig=yes --includedir=/usr/include/med"
 pycompile_module=med

From e6073b9b26be31845b922008dc6d5083ec2516e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 712/872] meld: rebuild for Python 3.8.

---
 srcpkgs/meld/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meld/template b/srcpkgs/meld/template
index 9ed6114299e..7cbac065ce6 100644
--- a/srcpkgs/meld/template
+++ b/srcpkgs/meld/template
@@ -1,7 +1,7 @@
 # Template file for 'meld'
 pkgname=meld
 version=3.20.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="meld"

From 30bbbb75eda44c4dfeac15c27223fe671d4703ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 713/872] menulibre: rebuild for Python 3.8.

---
 srcpkgs/menulibre/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/menulibre/template b/srcpkgs/menulibre/template
index 64311115bec..f16c5f64337 100644
--- a/srcpkgs/menulibre/template
+++ b/srcpkgs/menulibre/template
@@ -1,7 +1,7 @@
 # Template file for 'menulibre'
 pkgname=menulibre
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="menulibre menulibre_lib"

From 7f5fb6f6a41e18474dce397f36f38f5cce8f9eca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 714/872] meson-cmake-wrapper: rebuild for Python 3.8.

---
 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 ca14e533431..57eea159ca8 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mcw"

From 2c4c7008df31cd5ec9699fe3aba2f53facd423e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 715/872] mimeo: rebuild for Python 3.8.

---
 srcpkgs/mimeo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mimeo/template b/srcpkgs/mimeo/template
index bef8dcde863..991c61d9df8 100644
--- a/srcpkgs/mimeo/template
+++ b/srcpkgs/mimeo/template
@@ -1,7 +1,7 @@
 # Template file for 'mimeo'
 pkgname=mimeo
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="Mimeo.py"

From 533400db8d1d7673cb8a5b187cf4510495a5d6fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 716/872] mozo: rebuild for Python 3.8.

---
 srcpkgs/mozo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template
index 041f2454c3d..7bc18f017c7 100644
--- a/srcpkgs/mozo/template
+++ b/srcpkgs/mozo/template
@@ -1,7 +1,7 @@
 # Template file for 'mozo'
 pkgname=mozo
 version=1.22.2
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="Mozo"

From 79476ba290c89d038ce38a9ed875bed6b5bf69e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 717/872] mpd-sima: rebuild for Python 3.8.

---
 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 fb72f0d2632..831fec709b7 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=1
+revision=2
 archs=noarch
 wrksrc="MPD_sima-${version}"
 build_style=python3-module

From 9d547673ab95e2aeb2d2405f6fff480cbd9afa5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 718/872] mps-youtube: rebuild for Python 3.8.

---
 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 7b104aa706f..2141b3e627d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mps_youtube"

From 8e1db2d48466dc2bdc06e1330eeefaa727da6356 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 719/872] mugshot: rebuild for Python 3.8.

---
 srcpkgs/mugshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mugshot/template b/srcpkgs/mugshot/template
index cf27b30acac..1e695654a86 100644
--- a/srcpkgs/mugshot/template
+++ b/srcpkgs/mugshot/template
@@ -1,7 +1,7 @@
 # Template file for 'mugshot'
 pkgname=mugshot
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra"

From dd0ad3b8c52088d1809fd214b32ed7b0acdd2f66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 720/872] multibootusb: rebuild for Python 3.8.

---
 srcpkgs/multibootusb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/multibootusb/template b/srcpkgs/multibootusb/template
index 049b641c5fd..70cb07a85ac 100644
--- a/srcpkgs/multibootusb/template
+++ b/srcpkgs/multibootusb/template
@@ -1,7 +1,7 @@
 # Template file for 'multibootusb'
 pkgname=multibootusb
 version=9.2.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="scripts"

From 85356b30501f219e78afd8cb95f1a6cb09193ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 721/872] mymcplus: rebuild for Python 3.8.

---
 srcpkgs/mymcplus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mymcplus/template b/srcpkgs/mymcplus/template
index 369ac8048ed..f30c62b09f4 100644
--- a/srcpkgs/mymcplus/template
+++ b/srcpkgs/mymcplus/template
@@ -1,7 +1,7 @@
 # Template file for 'mymcplus'
 pkgname=mymcplus
 version=3.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mymcplus"

From f10ceae15759ab2c42d786a23926a759967abb41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 722/872] nagstamon: fix and rebuild for Python 3.8.

---
 srcpkgs/nagstamon/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/nagstamon/template b/srcpkgs/nagstamon/template
index 3a63bb5f1d9..0eb5bc75d27 100644
--- a/srcpkgs/nagstamon/template
+++ b/srcpkgs/nagstamon/template
@@ -1,7 +1,7 @@
 # Template file for 'nagstamon'
 pkgname=nagstamon
 version=3.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=Nagstamon
 build_style=python3-module
@@ -16,6 +16,10 @@ homepage="https://nagstamon.ifw-dresden.de"
 distfiles="https://nagstamon.ifw-dresden.de/files/stable/Nagstamon-${version}.tar.gz"
 checksum=a834460e78dc01f62171a83c4a11d890702264ed662863dff39edaf14ae98880
 
+post_extract() {
+	# Gone in python 3.8, but these where the python 3.6 values.  ;)
+	vsed -i -e 's/platform.dist()/("","","")/g' setup.py
+}
 post_install() {
 	chmod 644 ${DESTDIR}/usr/share/pixmaps/nagstamon.svg
 	mv -v ${DESTDIR}/usr/bin/nagstamon.py ${DESTDIR}/usr/bin/nagstamon

From 52acf83950d25bcf72b3fc81796436543c409ce8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 723/872] neovim-remote: rebuild for Python 3.8.

---
 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 d8473bf0521..7391f9df2ee 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.2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nvr"

From ae77cba0468f1ab1fe3e89bf758d2d153c6b8725 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 724/872] newt: rebuild for Python 3.8.

---
 srcpkgs/newt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/newt/template b/srcpkgs/newt/template
index 3971bbfdbf7..25ccc946f51 100644
--- a/srcpkgs/newt/template
+++ b/srcpkgs/newt/template
@@ -1,7 +1,7 @@
 # Template file for 'newt'
 pkgname=newt
 version=0.52.21
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python-devel python3-devel"
 makedepends="slang-devel popt-devel python3-devel python-devel"

From 5d77f30f98b4d84c2807418deb840acda4016790 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 725/872] notmuch: rebuild for Python 3.8.

---
 srcpkgs/notmuch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/notmuch/template b/srcpkgs/notmuch/template
index ced670a59d4..a3085fd4c27 100644
--- a/srcpkgs/notmuch/template
+++ b/srcpkgs/notmuch/template
@@ -1,7 +1,7 @@
 # Template file for 'notmuch'
 pkgname=notmuch
 version=0.29.1
-revision=1
+revision=2
 hostmakedepends="perl pkg-config python-devel python3-Sphinx python3-devel"
 makedepends="bash-completion gmime3-devel talloc-devel xapian-core-devel"
 short_desc="Thread-based email index, search, and tagging"

From 2a004663318b9be9e0b13e69c2f89b9682ece8e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 726/872] nyx: rebuild for Python 3.8.

---
 srcpkgs/nyx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/nyx/template b/srcpkgs/nyx/template
index 201ab5856ff..4b265771793 100644
--- a/srcpkgs/nyx/template
+++ b/srcpkgs/nyx/template
@@ -1,7 +1,7 @@
 # Template file for 'nyx'
 pkgname=nyx
 version=2.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nyx"

From 9ff1df8e1d687a5a38d373d51d32e4e428dbe286 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 727/872] olm-python: rebuild for Python 3.8.

---
 srcpkgs/olm-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/olm-python/template b/srcpkgs/olm-python/template
index 57ac1cfa01b..0141611ea3f 100644
--- a/srcpkgs/olm-python/template
+++ b/srcpkgs/olm-python/template
@@ -1,7 +1,7 @@
 # Template file for 'olm-python'
 pkgname=olm-python
 version=3.1.4
-revision=1
+revision=2
 wrksrc="olm-${version}"
 build_wrksrc=python
 build_style=python-module

From b5b9070e7d35511535cee5a401bcdb4ea6359959 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 728/872] onboard: rebuild for Python 3.8.

---
 srcpkgs/onboard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onboard/template b/srcpkgs/onboard/template
index 844744038d8..467ed8f0ea5 100644
--- a/srcpkgs/onboard/template
+++ b/srcpkgs/onboard/template
@@ -1,7 +1,7 @@
 # Template file for 'onboard'
 pkgname=onboard
 version=1.4.1
-revision=4
+revision=5
 build_style=python3-module
 pycompile_module="Onboard"
 patch_args="-Np1"

From c23e1317c4a493f2967ade1da8cf6eb9806b2066 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 729/872] openrazer-meta: rebuild for Python 3.8.

---
 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 112cb9e900b..60dc8212a73 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=2
+revision=3
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 0c8dabe0616d85f801dfefea1b22748ee6055bdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 730/872] openshot: rebuild for Python 3.8.

---
 srcpkgs/openshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/openshot/template b/srcpkgs/openshot/template
index 605ea7305c2..d71b4d09fae 100644
--- a/srcpkgs/openshot/template
+++ b/srcpkgs/openshot/template
@@ -1,7 +1,7 @@
 # Template file for 'openshot'
 pkgname=openshot
 version=2.4.4
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 wrksrc="${pkgname}-qt-${version}"
 build_style=python3-module

From e14cf6e0c5c985078aade34a1f21446e153dbeed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 731/872] orca: rebuild for Python 3.8.

---
 srcpkgs/orca/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/orca/template b/srcpkgs/orca/template
index ac1c0e1dc0e..57d1495c10a 100644
--- a/srcpkgs/orca/template
+++ b/srcpkgs/orca/template
@@ -1,7 +1,7 @@
 # Template file for 'orca'
 pkgname=orca
 version=3.34.0
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="orca"

From ef83881d95547fbaa4f216958aa7f49b0b2c98b3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 732/872] papis: rebuild for Python 3.8.

---
 srcpkgs/papis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/papis/template b/srcpkgs/papis/template
index 95044b2a6a4..d99f358fc0d 100644
--- a/srcpkgs/papis/template
+++ b/srcpkgs/papis/template
@@ -1,7 +1,7 @@
 # Template file for 'papis'
 pkgname=papis
 version=0.8
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-requests python3-yaml python3-chardet python3-BeautifulSoup4

From f4cf98a67a63c679f47a66c6b67ab7309b5769f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 733/872] paraview: rebuild for Python 3.8.

---
 srcpkgs/paraview/template | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/paraview/template b/srcpkgs/paraview/template
index 3b721b1833a..d928a5ea095 100644
--- a/srcpkgs/paraview/template
+++ b/srcpkgs/paraview/template
@@ -1,7 +1,7 @@
 # Template file for 'paraview'
 pkgname=paraview
 version=5.6.1
-revision=1
+revision=2
 wrksrc=ParaView-v${version}
 build_style=cmake
 configure_args="-DPARAVIEW_ENABLE_FFMPEG=ON
@@ -58,6 +58,11 @@ checksum=50ef01f54db6358b402e50d1460ef47c04d675bf26f250c6937737169f1e6612
 CFLAGS="-D_GNU_SOURCE"
 CXXFLAGS="-D_GNU_SOURCE"
 
+post_extract() {
+	# Python 3.8 API change: https://docs.python.org/3/c-api/typeobj.html
+	sed -i '/\/\/ tp_print/s/nullptr/0/' \
+		VTK/Wrapping/Tools/*.c VTK/Wrapping/PythonCore/*.cxx
+}
 post_install() {
 	vlicense Copyright.txt
 }

From 726b01acdb0c9e145291f4e36011c0aaa709684d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 734/872] pass-git-helper: rebuild for Python 3.8.

---
 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 dfeed3ba4f0..6d7f25bd8a7 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.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 78ecdb2c1a4374ceaca2d5093af3a91996be3350 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 735/872] peframe: rebuild for Python 3.8.

---
 srcpkgs/peframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peframe/template b/srcpkgs/peframe/template
index b9d64f7a5a6..5ecede6cf56 100644
--- a/srcpkgs/peframe/template
+++ b/srcpkgs/peframe/template
@@ -1,7 +1,7 @@
 # Template file for 'peframe'
 pkgname=peframe
 version=6.0.3
-revision=1
+revision=2
 archs=noarch
 build_style="python3-module"
 pycompile_module="peframe"

From 78841509335c273af19896de5b79ea31c3168e1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 736/872] peru: rebuild for Python 3.8.

---
 srcpkgs/peru/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peru/template b/srcpkgs/peru/template
index 682440f0b50..10d4689338d 100644
--- a/srcpkgs/peru/template
+++ b/srcpkgs/peru/template
@@ -1,7 +1,7 @@
 # Template file for 'peru'
 pkgname=peru
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="peru"

From 9513806ce9175a7e7f042c9a8aa445525747c64b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 737/872] pgcli: rebuild for Python 3.8.

---
 srcpkgs/pgcli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index b967287e9cb..b187a0a4440 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,7 +1,7 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pgcli"

From 9b06f6f2643e97359ce83918b636d83617530e9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 738/872] picard: rebuild for Python 3.8.

---
 srcpkgs/picard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/picard/template b/srcpkgs/picard/template
index 1bae142434a..08404a88475 100644
--- a/srcpkgs/picard/template
+++ b/srcpkgs/picard/template
@@ -1,7 +1,7 @@
 # Template file for 'picard'
 pkgname=picard
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname}-release-${version}"
 build_style=python3-module

From f046b5d0d02d0350b9b4b0d012941d73a64d7674 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 739/872] piper: rebuild for Python 3.8.

---
 srcpkgs/piper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/piper/template b/srcpkgs/piper/template
index af8cc854991..91a31131f84 100644
--- a/srcpkgs/piper/template
+++ b/srcpkgs/piper/template
@@ -1,7 +1,7 @@
 # Template file for 'piper'
 pkgname=piper
 version=0.2.904
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 hostmakedepends="libratbag pkg-config glib-devel"

From 35264de163d55cc30160d954c08f635a5fa12285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 740/872] playitslowly: rebuild for Python 3.8.

---
 srcpkgs/playitslowly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/playitslowly/template b/srcpkgs/playitslowly/template
index d26cea3510a..6d3483ae251 100644
--- a/srcpkgs/playitslowly/template
+++ b/srcpkgs/playitslowly/template
@@ -1,7 +1,7 @@
 # Template file for 'playitslowly'
 pkgname=playitslowly
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From e81422f6d1d5c7623368d70897172c813b3de9b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 741/872] pmbootstrap: rebuild for Python 3.8.

---
 srcpkgs/pmbootstrap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pmbootstrap/template b/srcpkgs/pmbootstrap/template
index 1bfa8183a84..15e606439c2 100644
--- a/srcpkgs/pmbootstrap/template
+++ b/srcpkgs/pmbootstrap/template
@@ -1,7 +1,7 @@
 # Template file for 'pmbootstrap'
 pkgname=pmbootstrap
 version=1.9.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pmb"

From 527e6a4630f16baca7fc343a5a1d9a05342d82ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 742/872] pockyt: fix and rebuild for Python 3.8.

---
 srcpkgs/pockyt/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/pockyt/template b/srcpkgs/pockyt/template
index 760573904b1..ff12361d443 100644
--- a/srcpkgs/pockyt/template
+++ b/srcpkgs/pockyt/template
@@ -1,7 +1,7 @@
 # Template file for 'pockyt'
 pkgname=pockyt
 version=1.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -13,3 +13,7 @@ license="GPL-3.0-or-later"
 homepage="https://github.com/arvindch/pockyt"
 distfiles="${homepage}/archive/${version}.tar.gz"
 checksum=cd9561e126a6a01c73762639eb7e38b8c509ed1412f72fcc4729b12565b9962c
+
+post_extract() {
+	sed -i 's/(3, 7)/&, (3, 8)/' setup.py
+}

From b17ef4dbbbef2220a50989dc81f76cba0decd84a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 743/872] poezio: rebuild for Python 3.8.

---
 srcpkgs/poezio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/poezio/template b/srcpkgs/poezio/template
index 56f8138bb5e..4b318419dab 100644
--- a/srcpkgs/poezio/template
+++ b/srcpkgs/poezio/template
@@ -1,7 +1,7 @@
 # Template file for 'poezio'
 pkgname=poezio
 version=0.12.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="poezio poezio_plugins poezio_themes"
 hostmakedepends="python3-setuptools pkg-config"

From 3b5be45e96733313ad2473bc51a7d8eee1702577 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 744/872] protontricks: rebuild for Python 3.8.

---
 srcpkgs/protontricks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/protontricks/template b/srcpkgs/protontricks/template
index a32f51c4845..dc003b63690 100644
--- a/srcpkgs/protontricks/template
+++ b/srcpkgs/protontricks/template
@@ -1,7 +1,7 @@
 # Template file for 'protontricks'
 pkgname=protontricks
 version=1.2.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-setuptools"

From 6b17e630c97868c3510f8e786c4c0a4d3b250ecf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 745/872] pulseaudio-equalizer-ladspa: rebuild for Python 3.8.

---
 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 62d7eef2a65..10198de2c08 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=1
+revision=2
 wrksrc="equalizer-${version}"
 build_style=meson
 pycompile_module="pulseeq"

From 70dbb53c2ba650d2fc146e7837f700dec9df6062 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 746/872] pulseeffects: rebuild for Python 3.8.

---
 srcpkgs/pulseeffects/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pulseeffects/template b/srcpkgs/pulseeffects/template
index 7fc44f938d9..dc9044cad32 100644
--- a/srcpkgs/pulseeffects/template
+++ b/srcpkgs/pulseeffects/template
@@ -2,7 +2,7 @@
 pkgname=pulseeffects
 reverts="4.3.4_1"
 version=3.2.3
-revision=3
+revision=4
 build_style=meson
 pycompile_module="PulseEffects PulseEffectsTest"
 hostmakedepends="pkg-config"

From b1dc43e0f84322bbc809630267fe0e51c5e1b41e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 747/872] py3status: rebuild for Python 3.8.

---
 srcpkgs/py3status/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/py3status/template b/srcpkgs/py3status/template
index b7a263270e4..01709cfd14d 100644
--- a/srcpkgs/py3status/template
+++ b/srcpkgs/py3status/template
@@ -1,7 +1,7 @@
 # Template file for 'py3status'
 pkgname=py3status
 version=3.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="py3status"

From 0644b2ee33752b76bc1875c86123ab77a073fc53 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 748/872] pychess: rebuild for Python 3.8.

---
 srcpkgs/pychess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pychess/template b/srcpkgs/pychess/template
index 2c6ecef7bf9..d0594aa77f4 100644
--- a/srcpkgs/pychess/template
+++ b/srcpkgs/pychess/template
@@ -1,7 +1,7 @@
 # Template file for 'pychess'
 pkgname=pychess
 version=0.12.4
-revision=2
+revision=3
 build_style=python3-module
 pycompile_module="pychess"
 archs=noarch

From 5cf19da1be32229c7b04dffba15cd724042a2e9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 749/872] pycp: rebuild for Python 3.8.

---
 srcpkgs/pycp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pycp/template b/srcpkgs/pycp/template
index 770eb50d3f4..c9066259862 100644
--- a/srcpkgs/pycp/template
+++ b/srcpkgs/pycp/template
@@ -1,7 +1,7 @@
 # Template file for 'pycp'
 pkgname=pycp
 version=8.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pycp"

From d88382e9fb382116d88e9ccd60e69a7320462f5c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 750/872] pymol: rebuild for Python 3.8.

---
 srcpkgs/pymol/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pymol/template b/srcpkgs/pymol/template
index 428ba7a6deb..e1031f325c0 100644
--- a/srcpkgs/pymol/template
+++ b/srcpkgs/pymol/template
@@ -1,7 +1,7 @@
 # Template file for 'pymol'
 pkgname=pymol
 version=2.3.0
-revision=1
+revision=2
 wrksrc=${pkgname}-open-source-${version}
 build_style="python3-module"
 makedepends="msgpack-devel python3-numpy freetype-devel libfreeglut-devel glew-devel

From 1245dfb2ab23badf279042adca4caff2deba10a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 751/872] pyradio: rebuild for Python 3.8.

---
 srcpkgs/pyradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyradio/template b/srcpkgs/pyradio/template
index 10d7d8c6fbb..d2d5feddbdd 100644
--- a/srcpkgs/pyradio/template
+++ b/srcpkgs/pyradio/template
@@ -1,7 +1,7 @@
 # Template file for 'pyradio'
 pkgname=pyradio
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pyradio"

From f677cdf12f3d405d1bcb43aab8dd1fc258ee91d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 752/872] pyside2-tools: rebuild for Python 3.8.

---
 srcpkgs/pyside2-tools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyside2-tools/template b/srcpkgs/pyside2-tools/template
index 4ba0044452d..0a153de8c15 100644
--- a/srcpkgs/pyside2-tools/template
+++ b/srcpkgs/pyside2-tools/template
@@ -1,7 +1,7 @@
 # Template file for 'pyside2-tools'
 pkgname=pyside2-tools
 version=5.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release

From 727e69b5ed47b99d25354a6a6d6f42b907a7b696 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 753/872] pysolfc: rebuild for Python 3.8.

---
 srcpkgs/pysolfc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pysolfc/template b/srcpkgs/pysolfc/template
index 62eb90009af..1631e9619d3 100644
--- a/srcpkgs/pysolfc/template
+++ b/srcpkgs/pysolfc/template
@@ -1,7 +1,7 @@
 # Template file for 'pysolfc'
 pkgname=pysolfc
 version=2.6.4
-revision=2
+revision=3
 archs="noarch"
 wrksrc="PySolFC-${pkgname}-${version}"
 build_style=python3-module

From 837440a9d7d89a3bcfe00ffd798f18212ea374e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 754/872] pywal: rebuild for Python 3.8.

---
 srcpkgs/pywal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pywal/template b/srcpkgs/pywal/template
index 214a36698f2..98c4e1581e4 100644
--- a/srcpkgs/pywal/template
+++ b/srcpkgs/pywal/template
@@ -1,7 +1,7 @@
 # Template file for 'pywal'
 pkgname=pywal
 version=3.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pywal"

From 168ac3cd6bd43efb1d6d4192cd9b426cffb66930 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 755/872] qomui: rebuild for Python 3.8.

---
 srcpkgs/qomui/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qomui/template b/srcpkgs/qomui/template
index 4e68864252d..8063350ba06 100644
--- a/srcpkgs/qomui/template
+++ b/srcpkgs/qomui/template
@@ -1,7 +1,7 @@
 # Template file for 'qomui'
 pkgname=qomui
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qomui"

From 26a0119ac8b90d7cd7d6f2c49b3d1c927325b552 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 756/872] quodlibet: rebuild for Python 3.8.

---
 srcpkgs/quodlibet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/quodlibet/template b/srcpkgs/quodlibet/template
index 53f6e926315..4b0c4ba0de5 100644
--- a/srcpkgs/quodlibet/template
+++ b/srcpkgs/quodlibet/template
@@ -1,7 +1,7 @@
 # Template file for 'quodlibet'
 pkgname=quodlibet
 version=4.2.1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="quodlibet"

From c8788e4bb387cdc48040e3af5663a0a23e068ed2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 757/872] qutebrowser: rebuild for Python 3.8.

---
 srcpkgs/qutebrowser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qutebrowser/template b/srcpkgs/qutebrowser/template
index 11b74e4445d..07257c2d84b 100644
--- a/srcpkgs/qutebrowser/template
+++ b/srcpkgs/qutebrowser/template
@@ -1,7 +1,7 @@
 # Template file for 'qutebrowser'
 pkgname=qutebrowser
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qutebrowser"

From 2a2f8aeebe7cb2c4d3783dcdf5725f4c8e717d03 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 758/872] r128gain: rebuild for Python 3.8.

---
 srcpkgs/r128gain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/r128gain/template b/srcpkgs/r128gain/template
index cdea955828e..1cb30c786f8 100644
--- a/srcpkgs/r128gain/template
+++ b/srcpkgs/r128gain/template
@@ -1,7 +1,7 @@
 # Template file for 'r128gain'
 pkgname=r128gain
 version=0.9.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="r128gain"
 hostmakedepends="python3-setuptools"

From b923fdcd9bc9204affa69740d34e582e6712ed4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 759/872] radicale2: rebuild for Python 3.8.

---
 srcpkgs/radicale2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/radicale2/template b/srcpkgs/radicale2/template
index 0d8a27d89f3..310bc8cb3cf 100644
--- a/srcpkgs/radicale2/template
+++ b/srcpkgs/radicale2/template
@@ -1,7 +1,7 @@
 # Template file for 'radicale2'
 pkgname=radicale2
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module

From befc14e8b9ff96c37104bf2441216707df5bcc8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 760/872] ranger: rebuild for Python 3.8.

---
 srcpkgs/ranger/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template
index a387eac4ed7..a49716971a5 100644
--- a/srcpkgs/ranger/template
+++ b/srcpkgs/ranger/template
@@ -1,7 +1,7 @@
 # Template file for 'ranger'
 pkgname=ranger
 version=1.9.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ranger"

From d490364b5c373b46163f36731a39754e04556e98 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 761/872] rednotebook: rebuild for Python 3.8.

---
 srcpkgs/rednotebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rednotebook/template b/srcpkgs/rednotebook/template
index ac870a7a992..af7dea12fd5 100644
--- a/srcpkgs/rednotebook/template
+++ b/srcpkgs/rednotebook/template
@@ -1,7 +1,7 @@
 # Template file for 'rednotebook'
 pkgname=rednotebook
 version=2.11.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rednotebook"

From 44a5a4b73859a74fb915e7613fce5caeabd8acf1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 762/872] redshift: rebuild for Python 3.8.

---
 srcpkgs/redshift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/redshift/template b/srcpkgs/redshift/template
index bb31e7cec05..c58b8daeb76 100644
--- a/srcpkgs/redshift/template
+++ b/srcpkgs/redshift/template
@@ -1,7 +1,7 @@
 # Template file for 'redshift'
 pkgname=redshift
 version=1.12
-revision=1
+revision=2
 build_style=gnu-configure
 build_options="geoclue2"
 configure_args="--enable-gui --disable-geoclue $(vopt_enable geoclue2)"

From c0649b58de59e8a68aff332807f3240430e3ee7c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 763/872] ripe-atlas-tools: rebuild for Python 3.8.

---
 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 c8eef786962..c5e21c4b8dc 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=2.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ripe/atlas/tools"

From 8af034434b8588027b9c7e0f1b0abc587ad462bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 764/872] rmlint: rebuild for Python 3.8.

---
 srcpkgs/rmlint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rmlint/template b/srcpkgs/rmlint/template
index dc8d904d0c2..894a9a1dd01 100644
--- a/srcpkgs/rmlint/template
+++ b/srcpkgs/rmlint/template
@@ -1,7 +1,7 @@
 # Template file for 'rmlint'
 pkgname=rmlint
 version=2.9.0
-revision=1
+revision=2
 build_style=scons
 hostmakedepends="pkg-config python3-Sphinx glib-devel"
 makedepends="libblkid-devel elfutils-devel json-glib-devel"

From 04462f15c08bdd92062a53e420054fdfd65da92b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 765/872] rtv: rebuild for Python 3.8.

---
 srcpkgs/rtv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rtv/template b/srcpkgs/rtv/template
index 1a089e3e88d..1fc137b2e5b 100644
--- a/srcpkgs/rtv/template
+++ b/srcpkgs/rtv/template
@@ -1,7 +1,7 @@
 # Template file for 'rtv'
 pkgname=rtv
 version=1.27.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rtv"

From deb18b1928007c6e0a1042dab8adfe94a801bc28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 766/872] rubber: rebuild for Python 3.8.

---
 srcpkgs/rubber/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rubber/template b/srcpkgs/rubber/template
index cf668638cef..c7fe4cbbd06 100644
--- a/srcpkgs/rubber/template
+++ b/srcpkgs/rubber/template
@@ -1,7 +1,7 @@
 # Template file for 'rubber'
 pkgname=rubber
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From d19b0a94a22decc29f95aa94f2398a30133f2211 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 767/872] safeeyes: rebuild for Python 3.8.

---
 srcpkgs/safeeyes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/safeeyes/template b/srcpkgs/safeeyes/template
index bc35f302011..e7019662316 100644
--- a/srcpkgs/safeeyes/template
+++ b/srcpkgs/safeeyes/template
@@ -1,7 +1,7 @@
 # Template file for 'safeeyes'
 pkgname=safeeyes
 version=2.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="safeeyes"

From c2dacb3fb6e6380df395bffb3460d67524ddf348 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 768/872] scapy: rebuild for Python 3.8.

---
 srcpkgs/scapy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scapy/template b/srcpkgs/scapy/template
index 65242f332a8..36972bfd461 100644
--- a/srcpkgs/scapy/template
+++ b/srcpkgs/scapy/template
@@ -1,7 +1,7 @@
 # Template file for 'scapy'
 pkgname=scapy
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="scapy"

From 6b1ebeaf3648f62790dbf2c394c4060d12cb23d0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 769/872] screenplain: rebuild for Python 3.8.

---
 srcpkgs/screenplain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/screenplain/template b/srcpkgs/screenplain/template
index 8410ab45e40..8eb759ae6a6 100644
--- a/srcpkgs/screenplain/template
+++ b/srcpkgs/screenplain/template
@@ -1,7 +1,7 @@
 # Template file for 'screenplain'
 pkgname=screenplain
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenplain"

From 483229f73350818a1571180552a37954f26fe29d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 770/872] scudcloud: rebuild for Python 3.8.

---
 srcpkgs/scudcloud/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
index 1b9f5f27d8a..1ab2618066e 100644
--- a/srcpkgs/scudcloud/template
+++ b/srcpkgs/scudcloud/template
@@ -1,7 +1,7 @@
 # Template file for 'scudcloud'
 pkgname=scudcloud
 version=1.65
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="scudcloud"
 hostmakedepends="python3-setuptools"

From 123ca799b85c1e8c6cb93162214eead9f92e0baa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 771/872] seafile-libclient: rebuild for Python 3.8.

---
 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 47c49d5ceb2..5eda59c1041 100644
--- a/srcpkgs/seafile-libclient/template
+++ b/srcpkgs/seafile-libclient/template
@@ -1,7 +1,7 @@
 # Template file for 'seafile-libclient'
 pkgname=seafile-libclient
 version=7.0.2
-revision=1
+revision=2
 _distname="${pkgname/-libclient/}"
 wrksrc="${_distname}-${version}"
 build_style=gnu-configure

From dadf6fedad6d6851a5b944f873d4d86cd36ed505 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 772/872] sonata: rebuild for Python 3.8.

---
 srcpkgs/sonata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template
index 3e07610d1e5..fc2d86e6c1a 100644
--- a/srcpkgs/sonata/template
+++ b/srcpkgs/sonata/template
@@ -1,7 +1,7 @@
 # Template file for 'sonata'
 pkgname=sonata
 version=1.7b1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="sonata"

From 430726310d4a2c6f4487784216744a0ba8d42a97 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 773/872] speech-dispatcher: rebuild for Python 3.8.

---
 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 0c27951586a..39cebf1f320 100644
--- a/srcpkgs/speech-dispatcher/template
+++ b/srcpkgs/speech-dispatcher/template
@@ -1,7 +1,7 @@
 # Template build file for 'speech-dispatcher'.
 pkgname=speech-dispatcher
 version=0.8.8
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static"
 short_desc="High-level device independent layer for speech synthesis interface"

From 4bea1bb7754629dcc5164d4be09697dacdc27f52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 774/872] speedtest-cli: rebuild for Python 3.8.

---
 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 6746ea3a35e..c65d9fd631d 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.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="speedtest.py"

From b24b9d876eb69c9d222b4115f375b535b41d8e34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 775/872] sshuttle: rebuild for Python 3.8.

---
 srcpkgs/sshuttle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sshuttle/template b/srcpkgs/sshuttle/template
index e74d90171f2..04bae9a15c3 100644
--- a/srcpkgs/sshuttle/template
+++ b/srcpkgs/sshuttle/template
@@ -1,7 +1,7 @@
 # Template file for 'sshuttle'
 pkgname=sshuttle
 version=0.78.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="sshuttle"

From a94cf196bb0163b8ceac1e90b0c8aacf242262a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 776/872] sssd: rebuild for Python 3.8.

---
 srcpkgs/sssd/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sssd/template b/srcpkgs/sssd/template
index 2ea28d21bee..13d0da0ba99 100644
--- a/srcpkgs/sssd/template
+++ b/srcpkgs/sssd/template
@@ -1,7 +1,7 @@
 # Template file for 'sssd'
 pkgname=sssd
 version=2.0.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-selinux --without-semanage
  --disable-cifs-idmap-plugin --without-samba --with-os=fedora

From 70d497d5a57f21eb299193883523ee44fa71ea5a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 777/872] stcgal: rebuild for Python 3.8.

---
 srcpkgs/stcgal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stcgal/template b/srcpkgs/stcgal/template
index 3410ccf8678..d75e88837cc 100644
--- a/srcpkgs/stcgal/template
+++ b/srcpkgs/stcgal/template
@@ -1,7 +1,7 @@
 # Template file for 'stcgal'
 pkgname=stcgal
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="stcgal"

From cdf4a89e4e281111a817c4c7113ad77d40c5c6be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 778/872] stig: rebuild for Python 3.8.

---
 srcpkgs/stig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stig/template b/srcpkgs/stig/template
index 0777c5f0cc2..abe5f3b563c 100644
--- a/srcpkgs/stig/template
+++ b/srcpkgs/stig/template
@@ -1,7 +1,7 @@
 # Template file for 'stig'
 pkgname=stig
 version=0.10.1a
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 930f6e549836c3d39fd851a831e39a14e72633bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 779/872] streamlink: rebuild for Python 3.8.

---
 srcpkgs/streamlink/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/streamlink/template b/srcpkgs/streamlink/template
index abcdc12c4ac..59caa85dc8a 100644
--- a/srcpkgs/streamlink/template
+++ b/srcpkgs/streamlink/template
@@ -1,7 +1,7 @@
 # Template file for 'streamlink'
 pkgname=streamlink
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="streamlink streamlink_cli"

From ba9febf35412930fc49b70b49d56a17aa23ec4db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 780/872] subuser: rebuild for Python 3.8.

---
 srcpkgs/subuser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/subuser/template b/srcpkgs/subuser/template
index 50444246b29..0bc3e71db36 100644
--- a/srcpkgs/subuser/template
+++ b/srcpkgs/subuser/template
@@ -1,7 +1,7 @@
 # Template file for 'subuser'
 pkgname=subuser
 version=0.6.2
-revision=2
+revision=3
 archs="x86_64*"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From e15b7d83da234e08cd82b0718dee84173dfe4966 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 781/872] synapse: rebuild for Python 3.8.

---
 srcpkgs/synapse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template
index daae80e5792..0c0fd6841fb 100644
--- a/srcpkgs/synapse/template
+++ b/srcpkgs/synapse/template
@@ -1,7 +1,7 @@
 # Template file for 'synapse'
 pkgname=synapse
 version=1.3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From b4a3fa9e78a0b408df1d5ebbe41cd3ac56907dc4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 782/872] tekaim: rebuild for Python 3.8.

---
 srcpkgs/tekaim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tekaim/template b/srcpkgs/tekaim/template
index e3cc5335ecc..bd60dcc57a6 100644
--- a/srcpkgs/tekaim/template
+++ b/srcpkgs/tekaim/template
@@ -1,7 +1,7 @@
 # Template file for 'tekaim'
 pkgname=tekaim
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From 7224199b765cb4f2b66887ffe6244532da34b988 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 783/872] telepresence: rebuild for Python 3.8.

---
 srcpkgs/telepresence/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/telepresence/template b/srcpkgs/telepresence/template
index 17300f3b548..fa7f916f66f 100644
--- a/srcpkgs/telepresence/template
+++ b/srcpkgs/telepresence/template
@@ -1,7 +1,7 @@
 # Template file for 'telepresence'
 pkgname=telepresence
 version=0.102
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="telepresence"

From f585c9fe61cb8e3a7275817bb40e60bd92406046 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 784/872] termdown: rebuild for Python 3.8.

---
 srcpkgs/termdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/termdown/template b/srcpkgs/termdown/template
index 90a4a894d42..299de920389 100644
--- a/srcpkgs/termdown/template
+++ b/srcpkgs/termdown/template
@@ -1,7 +1,7 @@
 # Template file for 'termdown'
 pkgname=termdown
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="termdown.py"

From 52c4dcee8ca0ed8b268907b88b218d7b8e6f9593 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 785/872] terminal_markdown_viewer: rebuild for Python 3.8.

---
 srcpkgs/terminal_markdown_viewer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/terminal_markdown_viewer/template b/srcpkgs/terminal_markdown_viewer/template
index e5d0f38aae2..ba3fcfdc8d6 100644
--- a/srcpkgs/terminal_markdown_viewer/template
+++ b/srcpkgs/terminal_markdown_viewer/template
@@ -1,7 +1,7 @@
 # Template file for 'terminal_markdown_viewer'
 pkgname=terminal_markdown_viewer
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mdv"

From c4298b68d0f7694e8a23e689420f2a3d1f085606 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 786/872] thefuck: rebuild for Python 3.8.

---
 srcpkgs/thefuck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thefuck/template b/srcpkgs/thefuck/template
index 714cd7982c7..a0de1c7b6a3 100644
--- a/srcpkgs/thefuck/template
+++ b/srcpkgs/thefuck/template
@@ -1,7 +1,7 @@
 # Template file for 'thefuck'
 pkgname=thefuck
 version=3.29
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="thefuck"

From b18d19065aa9bd9b335b3ee939bb0bd64efade58 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 787/872] thinkpad-scripts: rebuild for Python 3.8.

---
 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 8d26cf23e77..855d42492fb 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tps"

From 1770ed9b1c9c751304b91a6f6e53da7de1648214 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 788/872] thrift: rebuild for Python 3.8.

---
 srcpkgs/thrift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thrift/template b/srcpkgs/thrift/template
index 73b0f59d4f6..e379ac35a09 100644
--- a/srcpkgs/thrift/template
+++ b/srcpkgs/thrift/template
@@ -1,7 +1,7 @@
 # Template file for 'thrift'
 pkgname=thrift
 version=0.12.0
-revision=2
+revision=3
 build_style=gnu-configure
 makedepends="boost-devel libressl-devel"
 short_desc="Apache Thrift compiler"

From 524283aef8b8fdd32035330913bfd16958f21979 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 789/872] todoman: rebuild for Python 3.8.

---
 srcpkgs/todoman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/todoman/template b/srcpkgs/todoman/template
index 2e0489ff49e..676412b8d0b 100644
--- a/srcpkgs/todoman/template
+++ b/srcpkgs/todoman/template
@@ -1,7 +1,7 @@
 # Template file for 'todoman'
 pkgname=todoman
 version=3.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="todoman"

From 7180afa5a1715531304f6a36a9eac431039f64f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 790/872] toot: rebuild for Python 3.8.

---
 srcpkgs/toot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template
index b6dcdc9ede6..7f9fac6ca01 100644
--- a/srcpkgs/toot/template
+++ b/srcpkgs/toot/template
@@ -1,7 +1,7 @@
 # Template file for 'toot'
 pkgname=toot
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="toot"

From d56207a1678134019b4f169934f0c50a78cf7588 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 791/872] torbrowser-launcher: fix and rebuild for Python 3.8.

---
 srcpkgs/torbrowser-launcher/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/torbrowser-launcher/template b/srcpkgs/torbrowser-launcher/template
index a4aa707495c..4986b6b3240 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.2
-revision=1
+revision=2
 archs="i686 x86_64" # limited by Tor Browser itself
 build_style=python3-module
 pycompile_module="torbrowser_launcher"
@@ -15,6 +15,10 @@ changelog="https://raw.githubusercontent.com/micahflee/torbrowser-launcher/maste
 distfiles="https://github.com/micahflee/torbrowser-launcher/archive/v${version}.tar.gz"
 checksum=25ad4b0c70579628bf18f4cdcd18ac303fe4f7f1c590cc48df2a87651c92991c
 
+post_extract() { 
+	# Python 3.8 removed platform.dist()
+	sed -i 's/distro =.*/distro = "Void"/' setup.py
+}
 post_install() {
 	vlicense LICENSE
 	rm ${DESTDIR}/usr/share/locale/torbrowser-launcher.mo # installed twice

From c66dda5131119abe071425664238ca389de34d8f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 792/872] tox: rebuild for Python 3.8.

---
 srcpkgs/tox/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tox/template b/srcpkgs/tox/template
index 8c6b63a3cb1..908cb86bb38 100644
--- a/srcpkgs/tox/template
+++ b/srcpkgs/tox/template
@@ -1,7 +1,7 @@
 # Template file for 'tox'
 pkgname=tox
 version=3.14.0
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="tox"
 hostmakedepends="python3-setuptools"

From c37ef482e10fb14da3d6cb396c8904257dc2c7c0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 793/872] trackma: rebuild for Python 3.8.

---
 srcpkgs/trackma/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/trackma/template b/srcpkgs/trackma/template
index 96833382346..4c29bb8a35d 100644
--- a/srcpkgs/trackma/template
+++ b/srcpkgs/trackma/template
@@ -1,7 +1,7 @@
 # Template file for 'trackma'
 pkgname=trackma
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 0a1f54dd6467927b77f9371a41381a01608228e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 794/872] trash-cli: rebuild for Python 3.8.

---
 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 2a08548c7c8..4ab724d8cb1 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.17.1.14
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3"

From 58a2a91ed22dcbe5fab5c49b6cb5b04cacb0bec6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 795/872] tryton: rebuild for Python 3.8.

---
 srcpkgs/tryton/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tryton/template b/srcpkgs/tryton/template
index 196033361f6..61e0f733dc9 100644
--- a/srcpkgs/tryton/template
+++ b/srcpkgs/tryton/template
@@ -1,7 +1,7 @@
 # Template file for 'tryton'
 pkgname=tryton
 version=5.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tryton"

From 0334c761ba939e24db0b4c619858a9e37a119b2d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 796/872] tuimoji: rebuild for Python 3.8.

---
 srcpkgs/tuimoji/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuimoji/template b/srcpkgs/tuimoji/template
index 71e0bf540c0..73f5cff281f 100644
--- a/srcpkgs/tuimoji/template
+++ b/srcpkgs/tuimoji/template
@@ -1,7 +1,7 @@
 # Template file for 'tuimoji'
 pkgname=tuimoji
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tuimoji"

From 7c8600b2683e37b9ae3b8d28fdf26fda4c4f5c41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 797/872] tuir: rebuild for Python 3.8.

---
 srcpkgs/tuir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuir/template b/srcpkgs/tuir/template
index dfc0b15c535..a98f4484544 100644
--- a/srcpkgs/tuir/template
+++ b/srcpkgs/tuir/template
@@ -1,7 +1,7 @@
 # Template file for 'tuir'
 pkgname=tuir
 version=1.28.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=python3-module

From fa94d7c83f3c15bf441526ff78dcfaa2e1a0e4fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 798/872] tzupdate: rebuild for Python 3.8.

---
 srcpkgs/tzupdate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tzupdate/template b/srcpkgs/tzupdate/template
index 9531f0f7540..de2217476bd 100644
--- a/srcpkgs/tzupdate/template
+++ b/srcpkgs/tzupdate/template
@@ -1,7 +1,7 @@
 # Template file for 'tzupdate'
 pkgname=tzupdate
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tzupdate.py"

From 8246b4d5c37f08891fb4b91655ad97e368d4b404 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 799/872] udiskie: rebuild for Python 3.8.

---
 srcpkgs/udiskie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/udiskie/template b/srcpkgs/udiskie/template
index 536f4d5609d..06d58236046 100644
--- a/srcpkgs/udiskie/template
+++ b/srcpkgs/udiskie/template
@@ -1,7 +1,7 @@
 # Template file for 'udiskie'
 pkgname=udiskie
 version=1.7.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="udiskie"

From c58f7d10a7748b8cf418991f3d804ce8631a137e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 800/872] ueberzug: rebuild for Python 3.8.

---
 srcpkgs/ueberzug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ueberzug/template b/srcpkgs/ueberzug/template
index e0c474ff63e..dfa1ab29d96 100644
--- a/srcpkgs/ueberzug/template
+++ b/srcpkgs/ueberzug/template
@@ -1,7 +1,7 @@
 # Template file for 'ueberzug'
 pkgname=ueberzug
 version=18.1.3
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel libX11-devel libXext-devel"

From e6ca68fa761e2b3df26f06a7b44e30331de08220 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 801/872] ufw: rebuild for Python 3.8.

---
 srcpkgs/ufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ufw/template b/srcpkgs/ufw/template
index ac7dfa45cdd..0bf2a3a0b76 100644
--- a/srcpkgs/ufw/template
+++ b/srcpkgs/ufw/template
@@ -1,7 +1,7 @@
 # Template file for 'ufw'
 pkgname=ufw
 version=0.36
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="ufw"

From 14dcd23aa719947cc774b71ef0820127a4865ef0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 802/872] unicorn: rebuild for Python 3.8.

---
 srcpkgs/unicorn/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/unicorn/template b/srcpkgs/unicorn/template
index 317e261ae88..971d44752ca 100644
--- a/srcpkgs/unicorn/template
+++ b/srcpkgs/unicorn/template
@@ -1,7 +1,7 @@
 # Template file for 'unicorn'
 pkgname=unicorn
 version=1.0.1
-revision=2
+revision=3
 archs="x86_64* i686*"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"
 short_desc="Lightweight multi-platform, multi-architecture CPU emulator framework"

From 1ae8d35f7645adeab1e7f8afafd996c92f0c08b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 803/872] unknown-horizons: rebuild for Python 3.8.

---
 srcpkgs/unknown-horizons/patches/py38.patch | 14 ++++++++++++++
 srcpkgs/unknown-horizons/template           |  2 +-
 2 files changed, 15 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/unknown-horizons/patches/py38.patch

diff --git a/srcpkgs/unknown-horizons/patches/py38.patch b/srcpkgs/unknown-horizons/patches/py38.patch
new file mode 100644
index 00000000000..59194750cd1
--- /dev/null
+++ b/srcpkgs/unknown-horizons/patches/py38.patch
@@ -0,0 +1,14 @@
+--- setup.py.orig
++++ setup.py
+@@ -39,10 +39,7 @@
+ # Ensure we are in the correct directory
+ os.chdir(os.path.realpath(os.path.dirname(__file__)))
+ 
+-if platform.dist()[0].lower() in ('debian', 'ubuntu'):
+-	executable_path = 'games'
+-else:
+-	executable_path = 'bin'
++executable_path = 'bin'
+ 
+ 
+ # this trick is for setting RELEASE_VERSION if the code is cloned from git repository
diff --git a/srcpkgs/unknown-horizons/template b/srcpkgs/unknown-horizons/template
index b5fc593b744..6e81970800d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3 intltool git python3-Pillow"

From 615d1baa489feab3864039bee37dad2e1ba9977d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 804/872] urh: rebuild for Python 3.8.

---
 srcpkgs/urh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urh/template b/srcpkgs/urh/template
index 2cec83082fd..31f28bb366b 100644
--- a/srcpkgs/urh/template
+++ b/srcpkgs/urh/template
@@ -1,7 +1,7 @@
 # Template file for 'urh'
 pkgname=urh
 version=2.7.5
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="urh"
 hostmakedepends="python3-setuptools python3-Cython"

From da0ab011d8839f3a6ddc2367fc8e1c879825ec29 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 805/872] urlscan: rebuild for Python 3.8.

---
 srcpkgs/urlscan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlscan/template b/srcpkgs/urlscan/template
index f6f0d1db07b..2bb1688dad7 100644
--- a/srcpkgs/urlscan/template
+++ b/srcpkgs/urlscan/template
@@ -1,7 +1,7 @@
 # Template file for 'urlscan'
 pkgname=urlscan
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlscan"

From d23be20fa55a06ffcdf1acd3d7018f833d4337c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 806/872] urlwatch: rebuild for Python 3.8.

---
 srcpkgs/urlwatch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlwatch/template b/srcpkgs/urlwatch/template
index e8a5e403c92..1166fe101a7 100644
--- a/srcpkgs/urlwatch/template
+++ b/srcpkgs/urlwatch/template
@@ -1,7 +1,7 @@
 # Template file for 'urlwatch'
 pkgname=urlwatch
 version=2.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlwatch"

From 758ae9723decfd1886b28f363eb103c16dbaa04b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 807/872] vapoursynth: fix and rebuild for Python 3.8.

---
 srcpkgs/vapoursynth/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/vapoursynth/template b/srcpkgs/vapoursynth/template
index dd85e8b39dc..1c417a624c3 100644
--- a/srcpkgs/vapoursynth/template
+++ b/srcpkgs/vapoursynth/template
@@ -1,7 +1,7 @@
 # Template file for 'vapoursynth'
 pkgname=vapoursynth
 version=R47.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake pkg-config libtool nasm python3-Cython"
 makedepends="python3-devel zimg-devel libmagick-devel libass-devel ffmpeg-devel
@@ -21,6 +21,7 @@ case $XBPS_TARGET_MACHINE in
 esac
 
 pre_configure() {
+	sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION/&-embed/g' configure.ac
 	./autogen.sh
 	case $XBPS_TARGET_MACHINE in
 		arm*musl)

From 2765c9f1b1e0d4395e629f6ff66e1003221cbb27 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 808/872] variety: rebuild for Python 3.8.

---
 srcpkgs/variety/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/variety/template b/srcpkgs/variety/template
index b4ea756c0c9..4d327a830f8 100644
--- a/srcpkgs/variety/template
+++ b/srcpkgs/variety/template
@@ -1,7 +1,7 @@
 # Template file for 'variety'
 pkgname=variety
 version=0.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="jumble variety variety_lib"

From 090c4bfcfc2db73eba64fcab8dec459707ad2676 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 809/872] vdirsyncer: rebuild for Python 3.8.

---
 srcpkgs/vdirsyncer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vdirsyncer/template b/srcpkgs/vdirsyncer/template
index 24080413456..708204afda2 100644
--- a/srcpkgs/vdirsyncer/template
+++ b/srcpkgs/vdirsyncer/template
@@ -1,7 +1,7 @@
 # Template file for 'vdirsyncer'
 pkgname=vdirsyncer
 version=0.16.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="vdirsyncer"

From fb3a977a1a5a3fd2be779201a4dd819512a4351a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 810/872] vidcutter: rebuild for Python 3.8.

---
 srcpkgs/vidcutter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vidcutter/template b/srcpkgs/vidcutter/template
index 4f30b888805..6ca85d4e766 100644
--- a/srcpkgs/vidcutter/template
+++ b/srcpkgs/vidcutter/template
@@ -1,7 +1,7 @@
 # Template file for 'vidcutter'
 pkgname=vidcutter
 version=6.0.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="vidcutter"

From 0addee01c86811593babb5238c415197cb01b03e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 811/872] vimiv: rebuild for Python 3.8.

---
 srcpkgs/vimiv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vimiv/template b/srcpkgs/vimiv/template
index 20fcbe7a03f..a560d4c9d81 100644
--- a/srcpkgs/vimiv/template
+++ b/srcpkgs/vimiv/template
@@ -1,7 +1,7 @@
 # Template file for 'vimiv'
 pkgname="vimiv"
 version=0.9.1
-revision=2
+revision=3
 build_style=gnu-makefile
 pycompile_module=vimiv
 hostmakedepends="python3-setuptools python3-devel"

From 0e236f27837583bf861e3984a19f4cf7827cbac1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 812/872] virtme: rebuild for Python 3.8.

---
 srcpkgs/virtme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtme/template b/srcpkgs/virtme/template
index 3905cb24b1d..30035a734f3 100644
--- a/srcpkgs/virtme/template
+++ b/srcpkgs/virtme/template
@@ -1,7 +1,7 @@
 # Template file for 'virtme'
 pkgname=virtme
 version=0.0.3.20180725
-revision=1
+revision=2
 archs=noarch
 _commit=60100bea82183b5d32ed9fca6534cd0fc60d5eb2
 wrksrc="${_commit}"

From 977bedee2b9cf218b33b79b6a30d782088e693be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 813/872] virtualenvwrapper: rebuild for Python 3.8.

---
 srcpkgs/virtualenvwrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtualenvwrapper/template b/srcpkgs/virtualenvwrapper/template
index 6007cc5d2ed..1f0c2efee86 100644
--- a/srcpkgs/virtualenvwrapper/template
+++ b/srcpkgs/virtualenvwrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'virtualenvwrapper'
 pkgname=virtualenvwrapper
 version=4.8.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="virtualenvwrapper"

From 13d514ee50452908bb52a5f4c379b8543e8aae2e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 814/872] visidata: rebuild for Python 3.8.

---
 srcpkgs/visidata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/visidata/template b/srcpkgs/visidata/template
index 715896e5f7c..c5c3ae7c82e 100644
--- a/srcpkgs/visidata/template
+++ b/srcpkgs/visidata/template
@@ -1,7 +1,7 @@
 # Template file for 'visidata'
 pkgname=visidata
 version=1.5.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="visidata"

From 9ed4ec9bfee68875daad74ea3f07f0378d1b0009 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 815/872] volctl: rebuild for Python 3.8.

---
 srcpkgs/volctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template
index 2b01750b9eb..585aabd2495 100644
--- a/srcpkgs/volctl/template
+++ b/srcpkgs/volctl/template
@@ -1,7 +1,7 @@
 # Template file for 'volctl'
 pkgname=volctl
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="volctl"

From 0db272695e88b29ee9216db4cc2572e0020b4df0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 816/872] voltron: rebuild for Python 3.8.

---
 srcpkgs/voltron/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/voltron/template b/srcpkgs/voltron/template
index c258bb9bab9..38f47a824e3 100644
--- a/srcpkgs/voltron/template
+++ b/srcpkgs/voltron/template
@@ -1,7 +1,7 @@
 # Template file for 'voltron'
 pkgname=voltron
 version=0.1.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="voltron"

From 12dedac32ff8a0f576ad19fc3147b4b386831c3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 817/872] volume_key: rebuild for Python 3.8.

---
 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 11d7b16bed8..14431cb70e9 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=1
+revision=2
 build_style=gnu-configure
 make_build_args="PYTHON3_CFLAGS=-I${XBPS_CROSS_BASE}/${py3_inc}
  PYTHON_CFLAGS=-I${XBPS_CROSS_BASE}/${py2_inc}"

From 3ce63c210ee385583504492fdf75f2ae859f05a4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 818/872] weather: rebuild for Python 3.8.

---
 srcpkgs/weather/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weather/template b/srcpkgs/weather/template
index ffa8a828b36..3ac33bfac15 100644
--- a/srcpkgs/weather/template
+++ b/srcpkgs/weather/template
@@ -1,7 +1,7 @@
 # Template file for 'weather'
 pkgname=weather
 version=2.3
-revision=2
+revision=3
 archs=noarch
 hostmakedepends="python3"
 depends="python3"

From 6b24b9871b5a34bb13b50f506793021986de04d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 819/872] wfuzz: rebuild for Python 3.8.

---
 srcpkgs/wfuzz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wfuzz/template b/srcpkgs/wfuzz/template
index b03c1f28add..4a88ab67407 100644
--- a/srcpkgs/wfuzz/template
+++ b/srcpkgs/wfuzz/template
@@ -1,7 +1,7 @@
 # Template file for 'wfuzz'
 pkgname=wfuzz
 version=2.4
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="wfuzz"

From ffffd630d47635e9948e7264798154dcf5cf4862 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 820/872] wpgtk: rebuild for Python 3.8.

---
 srcpkgs/wpgtk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpgtk/template b/srcpkgs/wpgtk/template
index 7e9d52b4f81..a722da58f22 100644
--- a/srcpkgs/wpgtk/template
+++ b/srcpkgs/wpgtk/template
@@ -1,7 +1,7 @@
 # Template file for 'wpgtk'
 pkgname=wpgtk
 version=6.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpgtk"

From ad6d5b938b34863f749429277206983bd33a9592 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 821/872] wpull: rebuild for Python 3.8.

---
 srcpkgs/wpull/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpull/template b/srcpkgs/wpull/template
index 5e9b9dcc641..621e1c85428 100644
--- a/srcpkgs/wpull/template
+++ b/srcpkgs/wpull/template
@@ -1,7 +1,7 @@
 # Template file for 'wpull'
 pkgname=wpull
 version=2.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpull"

From c0ba430699f94546d60abaeba6f248ef6d36ef84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 822/872] wxPython4: rebuild for Python 3.8.

---
 srcpkgs/wxPython4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wxPython4/template b/srcpkgs/wxPython4/template
index 2aa7117d5e0..b65e0b2ffe1 100644
--- a/srcpkgs/wxPython4/template
+++ b/srcpkgs/wxPython4/template
@@ -1,7 +1,7 @@
 # Template file for 'wxPython4'
 pkgname=wxPython4
 version=4.0.6
-revision=2
+revision=3
 wrksrc="wxPython-${version}"
 build_style=python3-module
 pycompile_module="wx"

From eae81cc7d657c1f863b8ae9a32aa075cc25328f4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 823/872] xcb-proto: rebuild for Python 3.8.

---
 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 1b26ecd73f3..020524bda87 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.13
-revision=2
+revision=3
 archs=noarch
 build_style=gnu-configure
 pycompile_module="xcbgen"

From c879f24aa56efd90bcd1b2031c3a7e194ee93abb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 824/872] xdot: rebuild for Python 3.8.

---
 srcpkgs/xdot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xdot/template b/srcpkgs/xdot/template
index 23f7b1f17e0..f7507ffb8c5 100644
--- a/srcpkgs/xdot/template
+++ b/srcpkgs/xdot/template
@@ -1,7 +1,7 @@
 # Template file for 'xdot'
 pkgname=xdot
 version=1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="xdot.py-${version}"
 build_style=python3-module

From ba48e65ee5332c30c40c9015ffd4f97f902bdcc1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 825/872] xkcdpass: rebuild for Python 3.8.

---
 srcpkgs/xkcdpass/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xkcdpass/template b/srcpkgs/xkcdpass/template
index 46b4a9635f9..37fb6872079 100644
--- a/srcpkgs/xkcdpass/template
+++ b/srcpkgs/xkcdpass/template
@@ -1,7 +1,7 @@
 # Template file for 'xkcdpass'
 pkgname=xkcdpass
 version=1.17.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="XKCD-password-generator-xkcdpass-${version}"
 build_style=python3-module

From f604c57acf10fb9091080955e88a704447aab0cb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 826/872] xonsh: rebuild for Python 3.8.

---
 srcpkgs/xonsh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xonsh/template b/srcpkgs/xonsh/template
index 768ebf36022..2dca267d0d1 100644
--- a/srcpkgs/xonsh/template
+++ b/srcpkgs/xonsh/template
@@ -1,7 +1,7 @@
 # Template file for 'xonsh'
 pkgname=xonsh
 version=0.9.12
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="xonsh xontrib"

From 8cdb99abdc99eefcc53ff3ab7418d4d830558c63 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 827/872] yq: rebuild for Python 3.8.

---
 srcpkgs/yq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yq/template b/srcpkgs/yq/template
index 7c3af7f43c2..dda886c6c40 100644
--- a/srcpkgs/yq/template
+++ b/srcpkgs/yq/template
@@ -1,7 +1,7 @@
 # Template file for 'yq'
 pkgname=yq
 version=2.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 6e757a227ac3953cc8567422ce6b473e6df30cc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 828/872] ytcc: rebuild for Python 3.8.

---
 srcpkgs/ytcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ytcc/template b/srcpkgs/ytcc/template
index feafa404b75..df4195758c7 100644
--- a/srcpkgs/ytcc/template
+++ b/srcpkgs/ytcc/template
@@ -1,7 +1,7 @@
 # Template file for 'ytcc'
 pkgname=ytcc
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ytcc"

From 1742b15ff06a60216eae8f7a016b441d18572e03 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 829/872] yturl: rebuild for Python 3.8.

---
 srcpkgs/yturl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yturl/template b/srcpkgs/yturl/template
index 6fa3e9872ee..ee14b77b5a0 100644
--- a/srcpkgs/yturl/template
+++ b/srcpkgs/yturl/template
@@ -1,7 +1,7 @@
 # Template file for 'yturl'
 pkgname=yturl
 version=2.0.2
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From b6302f7cf81ad28b08db1f9b8e986b9a6c3d59c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 830/872] yubikey-manager: rebuild for Python 3.8.

---
 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 af0330e8e15..fcc7b7cb737 100644
--- a/srcpkgs/yubikey-manager/template
+++ b/srcpkgs/yubikey-manager/template
@@ -1,7 +1,7 @@
 # Template file for 'yubikey-manager'
 pkgname=yubikey-manager
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 87bab1c9de0d25f72a5520b2adcd72c53599a433 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 831/872] z3: rebuild for Python 3.8.

---
 srcpkgs/z3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/z3/template b/srcpkgs/z3/template
index d632a285019..e054915df91 100644
--- a/srcpkgs/z3/template
+++ b/srcpkgs/z3/template
@@ -1,7 +1,7 @@
 # Template file for 'z3'
 pkgname=z3
 version=4.8.6
-revision=2
+revision=3
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=configure
 configure_args="--prefix=/usr -g --python $(vopt_if ocaml --ml)"

From 08edebe2ef2c613536937e6ee2d3fc6e9f067b72 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 832/872] zim: rebuild for Python 3.8.

---
 srcpkgs/zim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/zim/template b/srcpkgs/zim/template
index 45b9df5357c..dff4ad22081 100644
--- a/srcpkgs/zim/template
+++ b/srcpkgs/zim/template
@@ -1,7 +1,7 @@
 # Template file for 'zim'
 pkgname=zim
 version=0.71.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="zim"

From b4ef921e58656c77eb688ee4e2af7b20b3c8bfd2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 833/872] python3-pafy: rebuild for Python 3.8.

---
 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 ce26f770c69..b59c9a0adff 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.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pafy-${version}"
 build_style=python3-module

From bf4e7780fb8dcc15680cd79ddef83f8183bb3375 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 834/872] python3-perf: rebuild for Python 3.8.

---
 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 a03251f97e8..3d57ddb1c1a 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.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyperf-${version}"
 build_style=python3-module

From 80bbe375d025a8f2df0fa0878b5089c83f181e95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 835/872] python3-yara: rebuild for Python 3.8.

---
 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 4a6c56dd083..3bdff14a0da 100644
--- a/srcpkgs/python3-yara/template
+++ b/srcpkgs/python3-yara/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-yara'
 pkgname=python3-yara
 version=3.11.0
-revision=1
+revision=2
 wrksrc="yara-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From dfbf656d20e2c60d70d38432d72796e45a07530a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:31 +0200
Subject: [PATCH 836/872] azote: rebuild for Python 3.8.

---
 srcpkgs/azote/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/azote/template b/srcpkgs/azote/template
index 0a23c209551..2748cb98733 100644
--- a/srcpkgs/azote/template
+++ b/srcpkgs/azote/template
@@ -1,7 +1,7 @@
 # Template file for 'azote'
 pkgname=azote
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="azote"

From 6f9b552c053623ad5214d1b8401f41cb4e56734c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 837/872] binwalk: rebuild for Python 3.8.

---
 srcpkgs/binwalk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/binwalk/template b/srcpkgs/binwalk/template
index 461ea4b547a..fccd523d584 100644
--- a/srcpkgs/binwalk/template
+++ b/srcpkgs/binwalk/template
@@ -1,7 +1,7 @@
 # Template file for 'binwalk'
 pkgname=binwalk
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="binwalk"

From cdf9d0c94b7363a5bab761faa1a5119852db14c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 838/872] gnome-builder: rebuild for Python 3.8.

---
 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 9ae9ff9d94c..85aeeee9a15 100644
--- a/srcpkgs/gnome-builder/template
+++ b/srcpkgs/gnome-builder/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-builder'
 pkgname=gnome-builder
 version=3.34.1
-revision=1
+revision=2
 build_style=meson
 configure_args="-Dwith_webkit=true -Dwith_sysprof=true -Dhelp=true"
 hostmakedepends="appdata-tools desktop-file-utils flex gobject-introspection

From c0bccc27652b15e34572ed02503df5ae7b1dbebb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 839/872] gnome-tweaks: rebuild for Python 3.8.

---
 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 ac1f8bdb873..d0879253ac5 100644
--- a/srcpkgs/gnome-tweaks/template
+++ b/srcpkgs/gnome-tweaks/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-tweaks'
 pkgname=gnome-tweaks
 version=3.34.0
-revision=2
+revision=3
 archs=noarch
 build_style=meson
 pycompile_module="gtweak"

From c86e2d08bfa3e52c769e2b8c76e993af14c698bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 840/872] meson: rebuild for Python 3.8.

---
 srcpkgs/meson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meson/template b/srcpkgs/meson/template
index 315a0f27a92..76791451681 100644
--- a/srcpkgs/meson/template
+++ b/srcpkgs/meson/template
@@ -2,7 +2,7 @@
 pkgname=meson
 reverts="0.52.0_1 0.52.0_2"
 version=0.51.2
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mesonbuild"

From 1259e701609ac87f299b515b612f6b5589a6a5e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 841/872] onionshare: rebuild for Python 3.8.

---
 srcpkgs/onionshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onionshare/template b/srcpkgs/onionshare/template
index c585ae6101e..c37c5962736 100644
--- a/srcpkgs/onionshare/template
+++ b/srcpkgs/onionshare/template
@@ -1,7 +1,7 @@
 # Template file for 'onionshare'
 pkgname=onionshare
 version=2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="onionshare"

From e24fbb347a50db8d9adc3c2e21abfa2926516285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 842/872] portage: rebuild for Python 3.8.

---
 srcpkgs/portage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/portage/template b/srcpkgs/portage/template
index b0f34731035..9610428bbf4 100644
--- a/srcpkgs/portage/template
+++ b/srcpkgs/portage/template
@@ -1,7 +1,7 @@
 # Template file for 'portage'
 pkgname=portage
 version=2.3.77
-revision=1
+revision=2
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=python3-module
 pycompile_module="portage _emerge"

From 3d8944805a3fcbe269c633fd504f8156014b9743 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 843/872] rpm: fix and rebuild for Python 3.8.

---
 srcpkgs/rpm/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/rpm/template b/srcpkgs/rpm/template
index 98e35930c4c..695195323fd 100644
--- a/srcpkgs/rpm/template
+++ b/srcpkgs/rpm/template
@@ -1,7 +1,7 @@
 # Template file for 'rpm'
 pkgname=rpm
 version=4.15.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--with-lua --with-cap --with-acl --with-external-db
  --enable-python PYTHON=python3"
@@ -18,7 +18,7 @@ distfiles="http://ftp.rpm.org/releases/rpm-4.15.x/rpm-${version}.tar.bz2"
 checksum=1e06723b13591e57c99ebe2006fb8daddc4cf72efb366a64a34673ba5f61c201
 conflicts="rpmextract>=0" # Both provide rpm2cpio
 
-CFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6"
+CFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nss"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nspr"
 

From 72f86e0f7af627c04b12bdf23f9811e4ae8da247 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 844/872] youtube-dl: rebuild for Python 3.8.

---
 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 d6596b80bd3..f1ae3aa1a74 100644
--- a/srcpkgs/youtube-dl/template
+++ b/srcpkgs/youtube-dl/template
@@ -1,7 +1,7 @@
 # Template file for 'youtube-dl'
 pkgname=youtube-dl
 version=2019.10.16
-revision=1
+revision=2
 archs=noarch
 wrksrc=youtube-dl
 build_style=python3-module

From fb04151cb309fc8ff7a84dfe9204c113fb159d19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 845/872] blender: rebuild for Python 3.8.

---
 srcpkgs/blender/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template
index 758d1235185..47cb8f8ad13 100644
--- a/srcpkgs/blender/template
+++ b/srcpkgs/blender/template
@@ -1,7 +1,7 @@
 # Template file for 'blender'
 pkgname=blender
 version=2.79b
-revision=9
+revision=10
 build_style="cmake"
 makedepends="
  libgomp-devel libpng-devel tiff-devel python3-devel glu-devel

From 7a05e07582c4f2dad1e5ce7b472de4dd50f5ffc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 846/872] freecad: fix and rebuild for Python 3.8.

---
 srcpkgs/freecad/patches/090-py38.patch | 22 ++++++++++++++++++++++
 srcpkgs/freecad/template               |  2 +-
 2 files changed, 23 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/freecad/patches/090-py38.patch

diff --git a/srcpkgs/freecad/patches/090-py38.patch b/srcpkgs/freecad/patches/090-py38.patch
new file mode 100644
index 00000000000..92566df9df3
--- /dev/null
+++ b/srcpkgs/freecad/patches/090-py38.patch
@@ -0,0 +1,22 @@
+From 174011749d836f3b6c6ae2630f53b2f4c1f9d3fc Mon Sep 17 00:00:00 2001
+From: Richard <hobbes1069@gmail.com>
+Date: Thu, 17 Oct 2019 11:20:10 -0500
+Subject: [PATCH] Update swigpyrun.in for Python 3.8
+
+In Python 3.8 some functions related to thread state were intentionally made private.
+
+This fix (specific to FreeCAD) was suggested here:
+
+https://bugs.python.org/issue35886
+
+--- src/Base/swigpyrun.inl
++++ src/Base/swigpyrun.inl
+@@ -72,7 +72,7 @@ void cleanupSWIG_T(const char* TypeName)
+ 
+     PyObject *module, *dict;
+     PyInterpreterState *interp = PyThreadState_GET()->interp;
+-    PyObject *modules = interp->modules;
++    PyObject *modules = PyImport_GetModuleDict();
+     module = PyDict_GetItemString(modules, "__builtin__");
+     if (module != NULL && PyModule_Check(module)) {
+         dict = PyModule_GetDict(module);
diff --git a/srcpkgs/freecad/template b/srcpkgs/freecad/template
index 9e9375c4444..26bf34702a2 100644
--- a/srcpkgs/freecad/template
+++ b/srcpkgs/freecad/template
@@ -1,7 +1,7 @@
 # Template file for 'freecad'
 pkgname=freecad
 version=0.18.3
-revision=2
+revision=3
 wrksrc="FreeCAD-${version}"
 build_style=cmake
 

From 718d5c572ffaa708c4160791eb058eabf0caf143 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 847/872] gdb: rebuild for Python 3.8.

---
 srcpkgs/gdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gdb/template b/srcpkgs/gdb/template
index 9f84e4869e9..39aab79d08a 100644
--- a/srcpkgs/gdb/template
+++ b/srcpkgs/gdb/template
@@ -1,7 +1,7 @@
 # Template file for 'gdb'
 pkgname=gdb
 version=8.3.1
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="/usr/share/gdb"
 configure_args="--disable-werror --disable-nls --with-system-readline

From e89ecd13e39e0d4ffa50beaae64ee63aa2febcdc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 848/872] hexchat: rebuild for Python 3.8.

---
 srcpkgs/hexchat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hexchat/template b/srcpkgs/hexchat/template
index fbeaf28ae8a..9f7d7957b76 100644
--- a/srcpkgs/hexchat/template
+++ b/srcpkgs/hexchat/template
@@ -1,7 +1,7 @@
 # Template file for 'hexchat'
 pkgname=hexchat
 version=2.14.2
-revision=6
+revision=7
 build_style=meson
 configure_args="-Dwith-dbus=true -Dwith-ssl=true -Dwith-text=false
  -Dwith-perl=/usr/bin/perl -Dwith-python=python3

From 295d2fcdb8e6c8981469ea3f0881d7acc0d7a5a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 849/872] hyperion: rebuild for Python 3.8.

---
 srcpkgs/hyperion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hyperion/template b/srcpkgs/hyperion/template
index 0befdbe7064..7ce415e929e 100644
--- a/srcpkgs/hyperion/template
+++ b/srcpkgs/hyperion/template
@@ -1,7 +1,7 @@
 # Template file for 'hyperion'
 pkgname=hyperion
 version=1.03.2
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DUSE_SYSTEM_PROTO_LIBS=ON -DENABLE_QT5=ON
  -DPROTOBUF_PROTOC_EXECUTABLE=/usr/bin/protoc -DENABLE_AMLOGIC=ON

From c6846e2a15765deae100b5a9a32307270668a58c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 850/872] kdevelop-python: rebuild for Python 3.8.

---
 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 0265916a3d0..a306eb8f442 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.4.2
-revision=1
+revision=2
 wrksrc="kdev-python-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/kdevpythonsupport"

From a61462c12e1549e93d89a2be3d1fbc1c899f8fc7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 851/872] kitty: rebuild for Python 3.8.

---
 srcpkgs/kitty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/kitty/template b/srcpkgs/kitty/template
index d79bcc4acce..54cd08c23ec 100644
--- a/srcpkgs/kitty/template
+++ b/srcpkgs/kitty/template
@@ -1,7 +1,7 @@
 # Template file for 'kitty'
 pkgname=kitty
 version=0.14.6
-revision=1
+revision=2
 pycompile_dirs="usr/lib/kitty"
 hostmakedepends="ncurses pkg-config python3 wayland-devel wayland-protocols"
 makedepends="gettext-devel glfw-devel harfbuzz-devel libxkbcommon-devel

From eb1971689e3b6e8804a1e503f9487d80a97a132a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 852/872] krita: rebuild for Python 3.8, fix sha256sum.

Tarball was yanked for trivial fix.
---
 srcpkgs/krita/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/krita/template b/srcpkgs/krita/template
index 7a59fc9ac58..67f128c61ce 100644
--- a/srcpkgs/krita/template
+++ b/srcpkgs/krita/template
@@ -1,7 +1,7 @@
 # Template file for 'krita'
 pkgname=krita
 version=4.2.7.1
-revision=1
+revision=2
 build_style=cmake
 configure_args="-Wno-dev -DBUILD_TESTING=OFF"
 hostmakedepends="extra-cmake-modules pkg-config python3"
@@ -18,6 +18,6 @@ license="GPL-3.0-only"
 homepage="https://krita.org/"
 KDE_SITE="http://ftp5.gwdg.de/pub/linux/kde/stable/"
 distfiles="${KDE_SITE}/krita/${version}/krita-${version}.tar.gz"
-checksum=28218030edca9dfa1c7e255401ca6fc8fe0e5329f7611cfc196e35746d312086
+checksum=3ed29fd9d8e067def55e703fc55312815c21041d274727e228bdbe0478c09c3d
 nocross=yes
 replaces="calligra-krita>=0"

From 221123967fa111191496b9e08e2c9c76756c13b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:26:38 +0200
Subject: [PATCH 853/872] libpeas: rebuild for Python 3.8.

---
 srcpkgs/libpeas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index a69238bf823..d4dcf8b5941 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,7 +1,7 @@
 # Template file for 'libpeas'
 pkgname=libpeas
 version=1.22.0
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"

From 365648c1fccc0285703eeddac9324f2f4a91218f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 854/872] libreoffice: rebuild for Python 3.8.

---
 srcpkgs/libreoffice/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template
index 6e8685ac0fd..98f04a40304 100644
--- a/srcpkgs/libreoffice/template
+++ b/srcpkgs/libreoffice/template
@@ -1,7 +1,7 @@
 # Template file for 'libreoffice'
 pkgname=libreoffice
 version=6.2.5.2
-revision=2
+revision=3
 build_style=meta
 make_build_args="build-nocheck"
 nocross=yes

From 1c313604728a7106e5854243e06f9cb65c997436 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 855/872] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index 1f9c8043b46..34174be7535 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=5
+revision=6
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From aef507d5b726f510663f6e9c2bfd9f7eb3eeab4e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 856/872] libsigrokdecode: rebuild for Python 3.8.

---
 srcpkgs/libsigrokdecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsigrokdecode/template b/srcpkgs/libsigrokdecode/template
index 59e15dd61b9..cc9d9a10367 100644
--- a/srcpkgs/libsigrokdecode/template
+++ b/srcpkgs/libsigrokdecode/template
@@ -1,7 +1,7 @@
 # Template file for 'libsigrokdecode'
 pkgname=libsigrokdecode
 version=0.5.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="glib-devel python3-devel"

From ca583906dfd0c97c9a4c36d862bf85a55ad07f90 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 857/872] luxrays: rebuild for Python 3.8.

---
 srcpkgs/luxrays/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/luxrays/template b/srcpkgs/luxrays/template
index c783e9fe3e5..58037fbfc05 100644
--- a/srcpkgs/luxrays/template
+++ b/srcpkgs/luxrays/template
@@ -1,7 +1,7 @@
 # Template file for 'luxrays'
 pkgname=luxrays
 version=3.1
-revision=13
+revision=14
 build_style=cmake
 configure_args="-DLUXRAYS_DISABLE_OPENCL=OFF -DCMAKE_SKIP_RPATH=ON"
 hostmakedepends="flex bison boost-devel"

From ef66922c11033d027b7badec1e15a0a0fb3aacbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 858/872] navit: rebuild for Python 3.8.

---
 srcpkgs/navit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/navit/template b/srcpkgs/navit/template
index 461689a3c73..24cd151c64b 100644
--- a/srcpkgs/navit/template
+++ b/srcpkgs/navit/template
@@ -1,7 +1,7 @@
 # Template file for 'navit'
 pkgname=navit
 version=0.5.3
-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 f8cae9038ecc7f293e820f51664bfd59aac52b73 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 859/872] obs: rebuild for Python 3.8.

---
 srcpkgs/obs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/obs/template b/srcpkgs/obs/template
index 3ed426b1583..45bf81803e4 100644
--- a/srcpkgs/obs/template
+++ b/srcpkgs/obs/template
@@ -1,7 +1,7 @@
 # Template file for 'obs'
 pkgname=obs
 version=24.0.1
-revision=1
+revision=2
 _commit_hash_obs_browser="693498b518cf893876f454ef581e13106e8370ec"
 _commit_hash_obs_vst="fde438f7a8afdf41a7ab386a0aa1a61175fc8427"
 _commit_hash_ftl_sdk="98289f7c2ed754c647d451899b3356850c0c1fa3"

From dbfccd5a0bab2df75f326e85613243fa4867cd8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 860/872] renderdoc: fix and rebuild for Python 3.8.

---
 srcpkgs/renderdoc/files/swig-py38.patch    | 28 +++++++++++++
 srcpkgs/renderdoc/patches/cmake-py38.patch | 48 ++++++++++++++++++++++
 srcpkgs/renderdoc/template                 |  8 ++--
 3 files changed, 81 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/renderdoc/files/swig-py38.patch
 create mode 100644 srcpkgs/renderdoc/patches/cmake-py38.patch

diff --git a/srcpkgs/renderdoc/files/swig-py38.patch b/srcpkgs/renderdoc/files/swig-py38.patch
new file mode 100644
index 00000000000..0595599c658
--- /dev/null
+++ b/srcpkgs/renderdoc/files/swig-py38.patch
@@ -0,0 +1,28 @@
+From dbe955dd0300d55a32fd73a4eef730b3e30ed5c4 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 20:32:03 +0200
+Subject: [PATCH] swig: avoid use of _PyObject_GC_UNTRACK
+
+It is deprecated[1]. Use PyObject_GC_UnTrack instead.
+
+[1] https://docs.python.org/3/c-api/gcsupport.html#c._PyObject_GC_UNTRACK
+---
+ Lib/python/builtin.swg | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Lib/python/builtin.swg b/Lib/python/builtin.swg
+index 9597653b7..6af45a9d1 100644
+--- a/Lib/python/builtin.swg
++++ b/Lib/python/builtin.swg
+@@ -120,7 +120,7 @@ SwigPyBuiltin_FunpackSetterClosure (PyObject *obj, PyObject *val, void *closure)
+ 
+ SWIGINTERN void
+ SwigPyStaticVar_dealloc(PyDescrObject *descr) {
+-  _PyObject_GC_UNTRACK(descr);
++  PyObject_GC_UnTrack(descr);
+   Py_XDECREF(PyDescr_TYPE(descr));
+   Py_XDECREF(PyDescr_NAME(descr));
+   PyObject_GC_Del(descr);
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/patches/cmake-py38.patch b/srcpkgs/renderdoc/patches/cmake-py38.patch
new file mode 100644
index 00000000000..fc1adb9ddbc
--- /dev/null
+++ b/srcpkgs/renderdoc/patches/cmake-py38.patch
@@ -0,0 +1,48 @@
+From 56769d3e2cc12670b73a1ddd9dfaab959340c2e2 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 21:27:02 +0200
+Subject: [PATCH] CMake: py3.8 support, ability to patch swig
+
+Add 3.8 to list of python versions and ability to patch the custom
+swig, also needed for 3.8
+---
+ CMakeLists.txt            | 2 +-
+ qrenderdoc/CMakeLists.txt | 2 ++
+ 2 files changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 13818e5b8..00feda2ad 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -308,7 +308,7 @@ add_subdirectory(renderdoc)
+ # are handled in common
+ if(ENABLE_QRENDERDOC OR ENABLE_PYRENDERDOC)
+     # Make sure Python 3 is found
+-    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7)
++    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7 3.8)
+     find_package(PythonInterp 3 REQUIRED)
+     find_package(PythonLibs 3 REQUIRED)
+     # we also need python3-config for swig
+diff --git a/qrenderdoc/CMakeLists.txt b/qrenderdoc/CMakeLists.txt
+index 9fd65b2d3..1ef284349 100644
+--- a/qrenderdoc/CMakeLists.txt
++++ b/qrenderdoc/CMakeLists.txt
+@@ -7,6 +7,7 @@ endif()
+ 
+ set(QMAKE_QT5_COMMAND ${QT_QMAKE_EXECUTABLE} CACHE STRING "Command to run to invoke Qt5's qmake. Normally this is qmake, possibly with qtchooser, but might be qmake-qt5")
+ set(RENDERDOC_SWIG_PACKAGE https://github.com/baldurk/swig/archive/renderdoc-modified-6.zip CACHE STRING "The location where RenderDoc's swig fork source can be found. By default points to the URL on github but can be pointed to a local file.")
++set(RENDERDOC_SWIG_PATCH "" CACHE STRING "The location for the patch to apply to swig.")
+ 
+ set(QMAKE_CONFIG "debug")
+ set(QMAKE_LDFLAGS "")
+@@ -99,6 +100,7 @@ ExternalProject_Add(custom_swig
+     # using an URL to a zip directly so we don't clone the history etc
+     URL ${RENDERDOC_SWIG_PACKAGE}
+     BUILD_IN_SOURCE 1
++    PATCH_COMMAND patch -p1 -i ${RENDERDOC_SWIG_PATCH} > /dev/null
+     CONFIGURE_COMMAND ./autogen.sh > /dev/null 2>&1
+     COMMAND CC=${SWIG_CONFIGURE_CC} CXX=${SWIG_CONFIGURE_CXX} CFLAGS=-fPIC CXXFLAGS=-fPIC ./configure --with-pcre=yes --prefix=${CMAKE_BINARY_DIR} > /dev/null
+     BUILD_COMMAND ${GENERATOR_MAKE} > /dev/null 2>&1
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/template b/srcpkgs/renderdoc/template
index 32d051864d3..9972d9435b0 100644
--- a/srcpkgs/renderdoc/template
+++ b/srcpkgs/renderdoc/template
@@ -1,11 +1,13 @@
 # Template file for 'renderdoc'
 pkgname=renderdoc
 version=1.4
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DENABLE_GL=ON -DENABLE_GLES=ON -DENABLE_QRENDERDOC=ON
  -DENABLE_RENDERDOCCMD=ON -DENABLE_VULKAN=ON -DENABLE_XCB=ON -DENABLE_XLIB=ON
- -DENABLE_PYRENDERDOC=ON"
+ -DENABLE_PYRENDERDOC=ON
+ -DRENDERDOC_SWIG_PATCH=${XBPS_SRCPKGDIR}/${pkgname}/files/swig-py38.patch"
+patch_args="-p1"
 hostmakedepends="bison autoconf automake pkg-config python3"
 makedepends="libX11-devel libxcb-devel xcb-util-keysyms-devel libGL qt5-devel
  qt5-svg-devel qt5-x11extras-devel pcre-devel python3-devel"
@@ -17,7 +19,7 @@ distfiles="https://github.com/baldurk/${pkgname}/archive/v${version}.tar.gz"
 checksum=9a78951f386fb7c3ecf7df6919d300db59719d14f0621438963ae30a75d33677
 
 case "$XBPS_TARGET_MACHINE" in
-	*-musl) broken="This package uses execnfo.h which is not available on musl"
+	*-musl) broken="This package uses execinfo.h which is not available on musl"
 esac
 
 if [ "$CROSS_BUILD" ]; then

From 459b63795ca01a8fe746aec6d9f97141bdc3fc35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 861/872] sigil: rebuild for Python 3.8.

---
 srcpkgs/sigil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sigil/template b/srcpkgs/sigil/template
index 4a90ef95798..1d577ee3487 100644
--- a/srcpkgs/sigil/template
+++ b/srcpkgs/sigil/template
@@ -1,7 +1,7 @@
 # Template file for 'sigil'
 pkgname=sigil
 version=0.9.13
-revision=1
+revision=2
 wrksrc="Sigil-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/sigil/python3lib"

From eb0492cef63d32f08e51495ae261b150a7b3f1b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 862/872] uwsgi: rebuild for Python 3.8.

---
 srcpkgs/uwsgi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/uwsgi/template b/srcpkgs/uwsgi/template
index 2e96cd2e38e..e283d6bc357 100644
--- a/srcpkgs/uwsgi/template
+++ b/srcpkgs/uwsgi/template
@@ -1,7 +1,7 @@
 # Template file for 'uwsgi'
 pkgname=uwsgi
 version=2.0.18
-revision=1
+revision=2
 hostmakedepends="python python3"
 makedepends="python-devel python3-devel"
 short_desc="Fast, self-healing application container server"

From 107450e305e9c38e02604604d47fd38619481bc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 863/872] vim: rebuild for Python 3.8.

---
 srcpkgs/vim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vim/template b/srcpkgs/vim/template
index 8f543069d19..7c7fd4a30f7 100644
--- a/srcpkgs/vim/template
+++ b/srcpkgs/vim/template
@@ -1,7 +1,7 @@
 # Template file for 'vim'
 pkgname=vim
 version=8.1.2021
-revision=3
+revision=4
 hostmakedepends="glib-devel pkg-config"
 makedepends="acl-devel gtk+3-devel libXt-devel lua-devel ncurses-devel
  perl python-devel python3-devel ruby-devel"

From e5c9ab9b7773855271a75cfe5d4dc6cc5d230b59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 864/872] weechat: rebuild for Python 3.8.

---
 srcpkgs/weechat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weechat/template b/srcpkgs/weechat/template
index 19f8af4fd8f..14c3e2360f5 100644
--- a/srcpkgs/weechat/template
+++ b/srcpkgs/weechat/template
@@ -1,7 +1,7 @@
 # Template file for 'weechat'
 pkgname=weechat
 version=2.6
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_MAN=ON -DENABLE_ENCHANT=ON -DENABLE_PERL=ON
  -DENABLE_LUA=ON -DENABLE_RUBY=ON -DENABLE_SPELL=ON

From a86ea0eef792b9b5666ffe67d6f3c6549467f704 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 865/872] znc: rebuild for Python 3.8.

---
 srcpkgs/znc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/znc/template b/srcpkgs/znc/template
index 8af8f23a145..696b59133c8 100644
--- a/srcpkgs/znc/template
+++ b/srcpkgs/znc/template
@@ -1,7 +1,7 @@
 # Template file for 'znc'
 pkgname=znc
 version=1.7.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="
  --enable-python

From 2cfcf24e55b5aae1d192c7345b5ede0401a4486b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:18:51 +0200
Subject: [PATCH 866/872] boost: rebuild for Python 3.8.

---
 srcpkgs/boost/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 40a4fe67730..1fb0e8ed519 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=5
+revision=6
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"

From dab8bf9a36920b36c01351b0e78a3d894d95e438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:10 +0200
Subject: [PATCH 867/872] python-pyside: remove, obsolete.

---
 srcpkgs/python-pyside/INSTALL.msg | 1 -
 srcpkgs/python-pyside/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/python-pyside/INSTALL.msg
 delete mode 100644 srcpkgs/python-pyside/template

diff --git a/srcpkgs/python-pyside/INSTALL.msg b/srcpkgs/python-pyside/INSTALL.msg
deleted file mode 100644
index 6de207b7aa2..00000000000
--- a/srcpkgs/python-pyside/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-python-pyside is no longer provided by Void Linux, and will be fully removed from the repos on 2019-07-17
diff --git a/srcpkgs/python-pyside/template b/srcpkgs/python-pyside/template
deleted file mode 100644
index 7053f0e7fc3..00000000000
--- a/srcpkgs/python-pyside/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'python-pyside'
-pkgname=python-pyside
-version=1.2.2
-revision=7
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="http://www.pyside.org/"

From 56c4a66cb73f8c03aa1d75d0f3aeffc5558c4047 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:52 +0200
Subject: [PATCH 868/872] pyside-tools: remove, obsolete.

---
 srcpkgs/pyside-tools/INSTALL.msg | 1 -
 srcpkgs/pyside-tools/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/pyside-tools/INSTALL.msg
 delete mode 100644 srcpkgs/pyside-tools/template

diff --git a/srcpkgs/pyside-tools/INSTALL.msg b/srcpkgs/pyside-tools/INSTALL.msg
deleted file mode 100644
index fdb45eb0f42..00000000000
--- a/srcpkgs/pyside-tools/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-pyside-tools is no longer provided by Void Linux, and will be fully removed from the repos on 2019-10-30
diff --git a/srcpkgs/pyside-tools/template b/srcpkgs/pyside-tools/template
deleted file mode 100644
index 27cfc18eea4..00000000000
--- a/srcpkgs/pyside-tools/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'pyside-tools'
-pkgname=pyside-tools
-version=0.2.15
-revision=2
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="https://wiki.qt.io/"

From a4caf17102b2a8d6832ab3be41174a163b7a0573 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:22:03 +0200
Subject: [PATCH 869/872] shiboken: remove, obsolete.

---
 srcpkgs/shiboken/patches/python3.6.patch |  11 ---
 srcpkgs/shiboken/template                | 110 -----------------------
 2 files changed, 121 deletions(-)
 delete mode 100644 srcpkgs/shiboken/patches/python3.6.patch
 delete mode 100644 srcpkgs/shiboken/template

diff --git a/srcpkgs/shiboken/patches/python3.6.patch b/srcpkgs/shiboken/patches/python3.6.patch
deleted file mode 100644
index 7145fb4308b..00000000000
--- a/srcpkgs/shiboken/patches/python3.6.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- cmake/Modules/FindPython3Libs.cmake.orig
-+++ cmake/Modules/FindPython3Libs.cmake
-@@ -27,7 +27,7 @@
- # Search for the python framework on Apple.
- # CMAKE_FIND_FRAMEWORKS(Python)
- 
--FOREACH(_CURRENT_VERSION 3.4 3.3 3.2 3.1 3.0)
-+FOREACH(_CURRENT_VERSION 3.6 3.5 3.4 3.3 3.2 3.1 3.0)
-   IF(_CURRENT_VERSION GREATER 3.1)
-       SET(_32FLAGS "m" "u" "mu" "dm" "du" "dmu" "")
-   ELSE()
diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
deleted file mode 100644
index 34174be7535..00000000000
--- a/srcpkgs/shiboken/template
+++ /dev/null
@@ -1,110 +0,0 @@
-# Template file for 'shiboken'
-pkgname=shiboken
-version=1.2.2
-revision=6
-wrksrc="shiboken-${version}"
-hostmakedepends="cmake"
-makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"
-short_desc="CPython bindings generator for C++ libraries"
-maintainer="Enno Boland <gottox@voidlinux.org>"
-homepage="http://www.pyside.org"
-license="LGPL-2.1"
-distfiles="https://download.qt.io/official_releases/pyside/shiboken-${version}.tar.bz2"
-checksum=7625bbcf1fe313fd910c6b8c9cf49ac5495499f9d00867115a2f1f2a69fce5c4
-
-nocross="https://travis-ci.org/voidlinux/void-packages/jobs/269193001#L906"
-
-pre_build() {
-	# Fix inconsistent naming of libshiboken.so and ShibokenConfig.cmake
-	sed -i "/get_config_var('SOABI')/d" cmake/Modules/FindPython3InterpWithDebug.cmake
-}
-do_build() {
-	local args= configure_args="
-		-DCMAKE_INSTALL_PREFIX=/usr \
-		-DCMAKE_BUILD_TYPE=Release \
-		-DBUILD_TESTS=OFF"
-
-	for pyver in $py2_ver $py3_ver; do
-		args=
-		if [ "$pyver" = "$py2_ver" ]; then
-			args="-DPYTHON_SUFFIX=-python$py2_ver"
-		else
-			args="-DUSE_PYTHON3=yes"
-		fi
-
-		[ ! -d build-${pyver} ] && mkdir build-${pyver}
-		pushd build-${pyver}
-		cmake .. ${configure_args} ${args}
-		make ${makejobs}
-		popd
-	done
-}
-do_install() {
-	for pyver in $py2_ver $py3_ver; do
-		make -C build-${pyver} DESTDIR=${DESTDIR} install
-	done
-}
-post_install() {
-	# Fix conflict between .pc files
-	rm -f ${DESTDIR}/usr/lib/pkgconfig/*
-	for pyver in $py2_ver $py3_ver; do
-		vinstall build-${pyver}/data/shiboken.pc 644 \
-			usr/lib/pkgconfig shiboken-python${pyver}.pc
-	done
-}
-
-libshiboken-common-devel_package() {
-	depends="${sourcepkg}-${version}_${revision}"
-	short_desc+=" - common development files"
-	pkg_install() {
-		vmove usr/include
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig.cmake
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfigVersion.cmake
-	}
-}
-libshiboken-python-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python-${version}_${revision}"
-	short_desc="Python2 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py2_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py2_ver}.pc
-		vmove usr/lib/libshiboken-python${py2_ver}.so
-	}
-}
-libshiboken-python_package() {
-	short_desc="Python2 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version}
-	}
-}
-python-shiboken_package() {
-	short_desc="Python2 shiboken bindings"
-	pkg_install() {
-		vmove ${py2_sitelib}/shiboken.so
-	}
-}
-libshiboken-python3-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python3-${version}_${revision}"
-	short_desc="Python3 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py3_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py3_ver}.pc
-		vmove usr/lib/libshiboken-python${py3_ver}.so
-	}
-}
-libshiboken-python3_package() {
-	short_desc="Python3 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version}
-	}
-}
-python3-shiboken_package() {
-	short_desc="Python3 shiboken bindings"
-	pkg_install() {
-		vmove ${py3_sitelib}/shiboken.so
-	}
-}

From b8a76a958a1e28d96f0bf8a93acb982d756937b3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:34:00 +0200
Subject: [PATCH 870/872] boost: rebuild for Python 3.8.

Also ensure bjam is called with the same parameters, to avoid
a full rebuild with -j1 in do_install.
---
 common/shlibs          |  2 +-
 srcpkgs/boost/template | 13 +++++++------
 2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/common/shlibs b/common/shlibs
index f5133935773..92dae1c282c 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -683,7 +683,7 @@ libboost_stacktrace_noop.so.1.69.0 libboost_stacktrace_noop1.69-1.69.0_1<1.70.0
 libboost_stacktrace_addr2line.so.1.69.0 libboost_stacktrace_addr2line1.69-1.69.0_1<1.70.0
 libboost_stacktrace_basic.so.1.69.0 libboost_stacktrace_basic1.69-1.69.0_1<1.70.0
 libboost_python27.so.1.69.0 boost-python1.69-1.69.0_1<1.70.0
-libboost_python36.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
+libboost_python38.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
 libexempi.so.8 exempi-2.5.0_1
 libatasmart.so.4 libatasmart-0.17_1
 libsgutils2.so.2 libsgutils-1.42_1
diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 1fb0e8ed519..b516b348b14 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=6
+revision=7
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"
@@ -60,9 +60,9 @@ do_build() {
 	using python : ${py3_ver} : ${XBPS_CROSS_BASE}/usr/bin/python3 : ${XBPS_CROSS_BASE}${py3_inc} : ${XBPS_CROSS_BASE}${py3_lib} ;
 
 	__EOF
-	./bjam ${makejobs} \
+	./bjam ${makejobs} --prefix=${DESTDIR}/usr \
 		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam --debug-building \
+		--user-config=${wrksrc}/user-config.jam \
 		python=2.7,${py3_ver}
 }
 do_install() {
@@ -72,9 +72,10 @@ do_install() {
 	done
 
 	# Install headers/libs
-	./bjam --prefix=${DESTDIR}/usr abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam python=2.7,${py3_ver} install
-
+	./bjam --prefix=${DESTDIR}/usr \
+		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
+		--user-config=${wrksrc}/user-config.jam \
+		python=2.7,${py3_ver} install
 	# Install Boost.Build stuff.
 	vmkdir usr/share/boost-build
 	cd ${wrksrc}/tools/build && cp -a . ${DESTDIR}/usr/share/boost-build

From 4c0b1ce20aabdbed98b49e903ea6d0c9f531ad2f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 19:40:03 +0200
Subject: [PATCH 871/872] libpeas: update to 1.24.0.

---
 srcpkgs/libpeas/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index d4dcf8b5941..1ff2598c527 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,8 +1,8 @@
 # Template file for 'libpeas'
 pkgname=libpeas
-version=1.22.0
-revision=6
-build_style=gnu-configure
+version=1.24.0
+revision=1
+build_style=meson
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"
 makedepends="vala-devel gtk+3-devel python3-gobject-devel
@@ -13,7 +13,7 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://wiki.gnome.org/Projects/Libpeas"
 distfiles="${GNOME_SITE}/${pkgname}/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=5b2fc0f53962b25bca131a5ec0139e6fef8e254481b6e777975f7a1d2702a962
+checksum=0b9a00138c129a663de3eef5569b00ace03ce31d345f7af783768e9f35c8e6f9
 
 pre_build() {
 	if [ "$CROSS_BUILD" ]; then
@@ -35,7 +35,6 @@ libpeas-devel_package() {
 		vmove usr/lib/pkgconfig
 		vmove "usr/lib/*.so"
 		vmove usr/share/gir-1.0
-		vmove usr/share/gtk-doc
 		vmove usr/share/glade
 	}
 }

From 2be9ae0e45df517724574e5d873706b5377a17af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 20:33:53 +0200
Subject: [PATCH 872/872] scudcloud: upstream dead.

---
 srcpkgs/scudcloud/template | 21 ---------------------
 1 file changed, 21 deletions(-)
 delete mode 100644 srcpkgs/scudcloud/template

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
deleted file mode 100644
index 1ab2618066e..00000000000
--- a/srcpkgs/scudcloud/template
+++ /dev/null
@@ -1,21 +0,0 @@
-# Template file for 'scudcloud'
-pkgname=scudcloud
-version=1.65
-revision=2
-build_style=python3-module
-pycompile_module="scudcloud"
-hostmakedepends="python3-setuptools"
-makedepends="python3-setuptools python-PyQt5 python-dbus python3-PyQt5-dbus"
-depends="python3-setuptools python-PyQt5 python3-PyQt5-dbus
- python3-PyQt5-webkit xdg-utils"
-short_desc="Non official desktop client app for Slack"
-archs=noarch
-maintainer="Gurpreet Singh <gurpreet@mailfence.com>"
-license="MIT"
-homepage="https://launchpad.net/~rael-gc/+archive/ubuntu/scudcloud"
-distfiles="https://github.com/raelgc/${pkgname}/archive/v${version}.tar.gz"
-checksum=1b5420a868a37e181655e9799a3d1fcbbc0b0112349c44ac3d7936b626334791
-
-post_install() {
-	vlicense LICENSE
-}

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PR PATCH] [Updated] [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (10 preceding siblings ...)
  2019-10-19 21:36 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-10-19 21:36 ` voidlinux-github
  2019-10-19 22:15 ` voidlinux-github
                   ` (20 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-10-19 21:36 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1067 bytes --]

There is an updated pull request by leahneukirchen against master on the void-packages repository

https://github.com/leahneukirchen/void-packages python38
https://github.com/void-linux/void-packages/pull/15623

[WIP] Python 3.8
This huge PR tries to bump all packages that either shlib-require
libpython3.6m.so.1.0 or put files into /usr/lib/python3.6/site-packages.

Broken packages (on x86_64):

- [ ] attic -> upstream dead, remove?
- [ ] blender -> update to 2.80
- [ ] eolie -> meson
- [x] fontforge
- [ ] freecad
- [ ] gst1-python -> meson
- [ ] libopenshot -> gcc9 issue, but supposedly fixed? @Spencer-H 
- [x] libpeas
- [x] nagstamon
- [x] paraview
- [x] pockyt
- [x] ~~scudcloud~~
- [x] torbrowser-launcher
- [x] unknown-horizons
- [x] vapoursynth
- [x] variety
- [ ] kdevelop-python -> upstream: https://bugs.kde.org/show_bug.cgi?id=411956
- [x] krita: SHA256 mismatch
- [x] ~~shiboken~~
- [x] renderdoc

Untested:

- [ ] libreoffice


A patch file from https://github.com/void-linux/void-packages/pull/15623.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python38-15623.patch --]
[-- Type: text/x-diff, Size: 635080 bytes --]

From 9907b26ec9aacb2c9c990c665c32502ef0f7c808 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:06:59 +0200
Subject: [PATCH 001/872] python3: update to 3.8.0.

---
 common/shlibs                                 |  3 ++-
 .../python3/patches/fix-xattrs-glibc.patch    | 13 ----------
 srcpkgs/python3/patches/libressl-2.6.patch    | 26 -------------------
 srcpkgs/python3/template                      | 23 ++++++++--------
 4 files changed, 13 insertions(+), 52 deletions(-)
 delete mode 100644 srcpkgs/python3/patches/fix-xattrs-glibc.patch
 delete mode 100644 srcpkgs/python3/patches/libressl-2.6.patch

diff --git a/common/shlibs b/common/shlibs
index cc3fd8383d8..f5133935773 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1698,8 +1698,9 @@ libefiboot.so.1 libefivar-31_1
 libportaudio.so.2 portaudio-19.20140130_1
 libportaudiocpp.so.0 portaudio-cpp-19.20140130_1
 libdar.so.5000 libdar-2.4.14_1
-libpython3.so python3-3.6.2_1
 libpython3.6m.so.1.0 python3-3.6.2_1
+libpython3.so python3-3.8.0_1
+libpython3.8.so.1.0 python3-3.8.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.25.28_1
diff --git a/srcpkgs/python3/patches/fix-xattrs-glibc.patch b/srcpkgs/python3/patches/fix-xattrs-glibc.patch
deleted file mode 100644
index 909901293d5..00000000000
--- a/srcpkgs/python3/patches/fix-xattrs-glibc.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- Modules/posixmodule.c.orig
-+++ Modules/posixmodule.c
-@@ -103,8 +103,9 @@ corresponding Unix manual entries for more information on calls.");
- #undef HAVE_SCHED_SETAFFINITY
- #endif
- 
--#if defined(HAVE_SYS_XATTR_H) && defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
-+#if defined(HAVE_SYS_XATTR_H) && defined(__linux__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
- #define USE_XATTRS
-+#include <linux/limits.h>
- #endif
- 
- #ifdef USE_XATTRS
diff --git a/srcpkgs/python3/patches/libressl-2.6.patch b/srcpkgs/python3/patches/libressl-2.6.patch
deleted file mode 100644
index 92dcf1ef06e..00000000000
--- a/srcpkgs/python3/patches/libressl-2.6.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-https://github.com/python/cpython/pull/4930
-
---- Lib/test/test_ssl.py.orig
-+++ Lib/test/test_ssl.py
-@@ -29,6 +29,12 @@
- PROTOCOLS = sorted(ssl._PROTOCOL_NAMES)
- HOST = support.HOST
- IS_LIBRESSL = ssl.OPENSSL_VERSION.startswith('LibreSSL')
-+if IS_LIBRESSL:
-+    LIBRESSL_VERSION = tuple(
-+        int(s) for s in ssl.OPENSSL_VERSION.rsplit(' ')[-1].split('.')
-+    )
-+else:
-+    LIBRESSL_VERSION = ()
- IS_OPENSSL_1_1 = not IS_LIBRESSL and ssl.OPENSSL_VERSION_INFO >= (1, 1, 0)
- 
- 
-@@ -3392,6 +3398,8 @@ def test_selected_npn_protocol(self):
-                                        chatty=True, connectionchatty=True)
-             self.assertIs(stats['client_npn_protocol'], None)
- 
-+        @unittest.skipIf(IS_LIBRESSL and LIBRESSL_VERSION >= (2, 6, 1),
-+                         "LibreSSL 2.6.1+ has broken NPN support")
-         @unittest.skipUnless(ssl.HAS_NPN, "NPN support needed for this test")
-         def test_npn_protocols(self):
-             server_protocols = ['http/1.1', 'spdy/2']
diff --git a/srcpkgs/python3/template b/srcpkgs/python3/template
index 60bd4411ba8..b03a59beea8 100644
--- a/srcpkgs/python3/template
+++ b/srcpkgs/python3/template
@@ -3,7 +3,7 @@
 # THIS PKG MUST BE SYNCHRONIZED WITH "srcpkgs/python3-tkinter".
 #
 pkgname=python3
-version=3.6.9
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 short_desc="Interpreted, interactive, object-oriented programming language (${version%.*} series)"
@@ -11,7 +11,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=5e2f5f554e3f8f7f0296f7e73d8600c4e9acbaee6b2555b83206edf5153870da
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pycompile_dirs="usr/lib/python${version%.*}"
 hostmakedepends="pkg-config"
@@ -27,8 +27,7 @@ alternatives="
  python:python.1:/usr/share/man/man1/python${version%.*}.1"
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,13 +71,13 @@ do_install() {
 	rm -rf ${DESTDIR}/usr/lib/python${version%.*}/lib2to3/tests
 	# Remove references to the install(1) wrapper.
 	sed -e "s,${XBPS_WRAPPERDIR},/usr/bin,g" -i \
-		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/Makefile
 	if [ "$CROSS_BUILD" ]; then
 		# Remove references to cross toolchain.
 		sed -i "s/$XBPS_CROSS_TRIPLET-//g" \
-			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}/Makefile
 	fi
 }
 
@@ -89,10 +88,10 @@ python3-devel_package() {
 		vmove usr/bin/python*-config
 		vmove usr/lib/pkgconfig
 		vmove usr/include
-		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/libpython${version%.*}m.a \
+		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/libpython${version%.*}*.a \
 			${PKGDESTDIR}/usr/lib
-		mkdir -p ${DESTDIR}/usr/include/python${version%.*}m
-		mv ${PKGDESTDIR}/usr/include/python${version%.*}m/pyconfig.h \
-			${DESTDIR}/usr/include/python${version%.*}m
+		mkdir -p ${DESTDIR}/usr/include/python${version%.*}
+		mv ${PKGDESTDIR}/usr/include/python${version%.*}/pyconfig.h \
+			${DESTDIR}/usr/include/python${version%.*}
 	}
 }

From 82deb1f06d09e93aabaa46495a066cec2647de81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 17:09:57 +0200
Subject: [PATCH 002/872] python3-tkinter: update to 3.8.0.

---
 srcpkgs/python3-tkinter/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template
index 83906219af8..874be51ebdf 100644
--- a/srcpkgs/python3-tkinter/template
+++ b/srcpkgs/python3-tkinter/template
@@ -7,7 +7,7 @@
 _desc="Interpreted, interactive, object-oriented programming language"
 
 pkgname=python3-tkinter
-version=3.6.8
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 pycompile_dirs="
@@ -22,11 +22,10 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=35446241e995773b1bed7d196f4b624dadcadc8429f26282e756b2fb8a351193
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used.
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used.
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,7 +71,7 @@ do_install() {
 		mv ${wrksrc}/${pkgname}-${version}-install/usr/lib/python${version%.*}/${lib} \
 			${DESTDIR}/usr/lib/python${version%.*}/
 	done
-	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*m*.so \
+	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*.so \
 		${DESTDIR}/usr/lib/python${version%.*}/lib-dynload/
 	ln -sf idle${version%.*} ${DESTDIR}/usr/bin/idle3
 }

From 8bb33f77d591103b56f40685a4b61f57b43219cd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:42:15 +0200
Subject: [PATCH 003/872] common/environment/setup/python.sh: update to Python
 3.8.

---
 common/build-style/python-module.sh | 14 ++++----------
 common/environment/setup/python.sh  |  4 ++--
 2 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/common/build-style/python-module.sh b/common/build-style/python-module.sh
index da6ed586cff..ff8f107745f 100644
--- a/common/build-style/python-module.sh
+++ b/common/build-style/python-module.sh
@@ -4,7 +4,7 @@
 
 do_build() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
+	local pyver= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
@@ -12,10 +12,7 @@ do_build() {
 			LDFLAGS="$tmp_ldflags"
 
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
@@ -49,15 +46,12 @@ do_check() {
 
 do_install() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx=
+	local pyver=
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
diff --git a/common/environment/setup/python.sh b/common/environment/setup/python.sh
index d1f4d49a10a..ba181d45361 100644
--- a/common/environment/setup/python.sh
+++ b/common/environment/setup/python.sh
@@ -10,8 +10,8 @@ py2_lib="/usr/lib/python${py2_ver}"
 py2_sitelib="${py2_lib}/site-packages"
 py2_inc="/usr/include/python${py2_ver}"
 
-py3_ver="3.6"
-py3_abiver="m"
+py3_ver="3.8"
+py3_abiver=""
 py3_lib="/usr/lib/python${py3_ver}"
 py3_sitelib="${py3_lib}/site-packages"
 py3_inc="/usr/include/python${py3_ver}${py3_abiver}"

From 75fdcb94c7c7be7dc2c232d271de721d74dc1a6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 004/872] python3-3to2: rebuild for Python 3.8.

---
 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 b6ab94fe7c9..38558f1fcff 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=1
+revision=2
 archs=noarch
 wrksrc="3to2-${version}"
 build_style=python3-module

From 043957a8bcc69ef2ef270f7acd2753a544054759 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 005/872] python-Arrow: rebuild for Python 3.8.

---
 srcpkgs/python-Arrow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Arrow/template b/srcpkgs/python-Arrow/template
index 456e3776188..a3785d60075 100644
--- a/srcpkgs/python-Arrow/template
+++ b/srcpkgs/python-Arrow/template
@@ -2,7 +2,7 @@
 pkgname=python-Arrow
 reverts=0.13.1_1
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="arrow-${version}"
 build_style=python-module

From 5d1bc07743d348083ebd7dfbd1a4ece4913e6a70 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 006/872] python-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Babel/template b/srcpkgs/python-Babel/template
index 34d7a7728ce..619ae432ba4 100644
--- a/srcpkgs/python-Babel/template
+++ b/srcpkgs/python-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Babel'
 pkgname=python-Babel
 version=2.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38e28e565317345549892f5b8da9e3ab1cc3d513 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 007/872] python-BeautifulSoup4: rebuild for Python 3.8.

---
 srcpkgs/python-BeautifulSoup4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-BeautifulSoup4/template b/srcpkgs/python-BeautifulSoup4/template
index 70e4f8a58da..1f6074230c2 100644
--- a/srcpkgs/python-BeautifulSoup4/template
+++ b/srcpkgs/python-BeautifulSoup4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-BeautifulSoup4'
 pkgname=python-BeautifulSoup4
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="beautifulsoup4-${version}"
 build_style=python-module

From 193dc4fe709e1bccd18b84a58f880fde1e4394e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 008/872] python-Bottleneck: rebuild for Python 3.8.

---
 srcpkgs/python-Bottleneck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Bottleneck/template b/srcpkgs/python-Bottleneck/template
index 0c308d5dbb5..28195e99bca 100644
--- a/srcpkgs/python-Bottleneck/template
+++ b/srcpkgs/python-Bottleneck/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Bottleneck'
 pkgname=python-Bottleneck
 version=1.2.1
-revision=4
+revision=5
 wrksrc="Bottleneck-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ff4c422045070300d874353cc6c9750143422e2b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 009/872] python-Cheroot: rebuild for Python 3.8.

---
 srcpkgs/python-Cheroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Cheroot/template b/srcpkgs/python-Cheroot/template
index fcfdf76e69d..7a5375258f4 100644
--- a/srcpkgs/python-Cheroot/template
+++ b/srcpkgs/python-Cheroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Cheroot'
 pkgname=python-Cheroot
 version=8.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cheroot-${version}"
 build_style=python-module

From 6eb51b02b428d8054b1d3a3aa21e6bdcde31cf9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 010/872] python3-CherryPy: rebuild for Python 3.8.

---
 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 b78c01eba2c..450e5791508 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.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python3-module

From 8522b77c798415c2f59fc3b26adc757f66aa0fa7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 011/872] python-ConfigArgParse: rebuild for Python 3.8.

---
 srcpkgs/python-ConfigArgParse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ConfigArgParse/template b/srcpkgs/python-ConfigArgParse/template
index c9a00a04508..d90ca739aee 100644
--- a/srcpkgs/python-ConfigArgParse/template
+++ b/srcpkgs/python-ConfigArgParse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ConfigArgParse'
 pkgname=python-ConfigArgParse
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ConfigArgParse-${version}"
 build_style=python-module

From 3dcbda27301f3e918539317bc411ff556115ef1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 012/872] python-Cython: rebuild for Python 3.8.

---
 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 dc39d54e9c2..675160b3744 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.13
-revision=1
+revision=2
 wrksrc="Cython-${version}"
 build_style=python-module
 pycompile_module="Cython pyximport cython.py"

From 7c69ef59e0a628c13ece955c9f7322631824adca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 013/872] python-Django: rebuild for Python 3.8.

---
 srcpkgs/python-Django/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Django/template b/srcpkgs/python-Django/template
index 21aa405fba1..65a98e41032 100644
--- a/srcpkgs/python-Django/template
+++ b/srcpkgs/python-Django/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Django'
 pkgname=python-Django
 version=1.11.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="Django-${version}"
 build_style=python-module

From 33b250adb0abf2e46663f0a05749097633fce228 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 014/872] python-Flask: rebuild for Python 3.8.

---
 srcpkgs/python-Flask/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask/template b/srcpkgs/python-Flask/template
index 149a76c077e..b75b306701b 100644
--- a/srcpkgs/python-Flask/template
+++ b/srcpkgs/python-Flask/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask'
 pkgname=python-Flask
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9167e534992bd8d17a79a70e22a3b06c68c9762b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 015/872] python-Flask-Assets: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Assets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Assets/template b/srcpkgs/python-Flask-Assets/template
index 339f629f77a..eb81201396b 100644
--- a/srcpkgs/python-Flask-Assets/template
+++ b/srcpkgs/python-Flask-Assets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Assets'
 pkgname=python-Flask-Assets
 version=0.12
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c65d524eb8ee83f7c8eae3ca16878857a374e06c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 016/872] python-Flask-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Babel/template b/srcpkgs/python-Flask-Babel/template
index 3028d15d7bd..b3cc35f230e 100644
--- a/srcpkgs/python-Flask-Babel/template
+++ b/srcpkgs/python-Flask-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Babel'
 pkgname=python-Flask-Babel
 version=0.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From d52f7742820844af3ec25f4b6d4d6d58b19ad722 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 017/872] python-Flask-Login: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Login/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Login/template b/srcpkgs/python-Flask-Login/template
index 8fecf240963..ccaab92d857 100644
--- a/srcpkgs/python-Flask-Login/template
+++ b/srcpkgs/python-Flask-Login/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Login'
 pkgname=python-Flask-Login
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 112c53663ece086d477e4d4fcbc667ae6a2fb518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 018/872] python-Flask-OAuthlib: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-OAuthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-OAuthlib/template b/srcpkgs/python-Flask-OAuthlib/template
index d53157e37b2..958f05a836c 100644
--- a/srcpkgs/python-Flask-OAuthlib/template
+++ b/srcpkgs/python-Flask-OAuthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-OAuthlib'
 pkgname=python-Flask-OAuthlib
 version=0.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From aca82b53b5330ee4a154f2246569006b2d3a38c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 019/872] python3-Flask-RESTful: rebuild for Python 3.8.

---
 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 d0ed467f666..5a05eed0e93 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.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="flask-restful-${version}"
 build_style=python3-module

From 3121295fb06a2b12c0e42b9a6412c1fa52bb86fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 020/872] python-Flask-Script: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Script/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Script/template b/srcpkgs/python-Flask-Script/template
index 19d13887b8e..41312eae57f 100644
--- a/srcpkgs/python-Flask-Script/template
+++ b/srcpkgs/python-Flask-Script/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Script'
 pkgname=python-Flask-Script
 version=2.0.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From cfadd6a4c47e4e611c9d739113006da88f9cb8e7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 021/872] python-Flask-WTF: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-WTF/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-WTF/template b/srcpkgs/python-Flask-WTF/template
index 8edb1d39e35..b2be1e630fb 100644
--- a/srcpkgs/python-Flask-WTF/template
+++ b/srcpkgs/python-Flask-WTF/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-WTF'
 pkgname=python-Flask-WTF
 version=0.14.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 11896d4bd9e1767f6ad8b10e737f0e6a0f5df44f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 022/872] python-GitPython: rebuild for Python 3.8.

---
 srcpkgs/python-GitPython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-GitPython/template b/srcpkgs/python-GitPython/template
index 0edb43cc811..232429265f1 100644
--- a/srcpkgs/python-GitPython/template
+++ b/srcpkgs/python-GitPython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-GitPython'
 pkgname=python-GitPython
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="GitPython-${version}"
 build_style=python-module

From 7008fe32294cead7ef25084a09f874e87cad05e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 023/872] python-IPy: rebuild for Python 3.8.

---
 srcpkgs/python-IPy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-IPy/template b/srcpkgs/python-IPy/template
index d28276383ce..aaae9fcd002 100644
--- a/srcpkgs/python-IPy/template
+++ b/srcpkgs/python-IPy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-IPy'
 pkgname=python-IPy
 version=1.00
-revision=1
+revision=2
 archs=noarch
 wrksrc="IPy-${version}"
 build_style=python-module

From 4ee5b9129c818c4db475e75f899f1f21eb9c312c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 024/872] python3-Inflector: rebuild for Python 3.8.

---
 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 1bfe9ccef7c..e9ee0ffe8d1 100644
--- a/srcpkgs/python3-Inflector/template
+++ b/srcpkgs/python3-Inflector/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-Inflector'
 pkgname=python3-Inflector
 version=2.0.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="Inflector-${version}"
 build_style=python3-module

From 631236d908cbeed8345c2fb159c73e7c54fe1571 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 025/872] python-Jinja2: rebuild for Python 3.8.

---
 srcpkgs/python-Jinja2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Jinja2/template b/srcpkgs/python-Jinja2/template
index c67e6f47f06..3fcd44dc198 100644
--- a/srcpkgs/python-Jinja2/template
+++ b/srcpkgs/python-Jinja2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Jinja2'
 pkgname=python-Jinja2
 version=2.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Jinja2-${version}"
 build_style=python-module

From 3a7808b9f47226adec7dd1e59bef222cf38d7e9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 026/872] python-Levenshtein: rebuild for Python 3.8.

---
 srcpkgs/python-Levenshtein/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Levenshtein/template b/srcpkgs/python-Levenshtein/template
index 26f57d90e70..7d97147ccc8 100644
--- a/srcpkgs/python-Levenshtein/template
+++ b/srcpkgs/python-Levenshtein/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Levenshtein'
 pkgname=python-Levenshtein
 version=0.12.0
-revision=2
+revision=3
 build_style=python-module
 pycompile_module="Levenshtein"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"

From 6d2a898ccc971553cf9dab7239daf8d626350b19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 027/872] python-M2Crypto: rebuild for Python 3.8.

---
 srcpkgs/python-M2Crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-M2Crypto/template b/srcpkgs/python-M2Crypto/template
index 102dbb7261e..6febd5a9ea1 100644
--- a/srcpkgs/python-M2Crypto/template
+++ b/srcpkgs/python-M2Crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-M2Crypto'
 pkgname=python-M2Crypto
 version=0.35.2
-revision=1
+revision=2
 wrksrc="M2Crypto-${version}"
 build_style=python-module
 pycompile_module="M2Crypto"

From 3597aa866d7cb1ff4d5316a0cfe52c8aa8ab717c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 028/872] python-Mako: rebuild for Python 3.8.

---
 srcpkgs/python-Mako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Mako/template b/srcpkgs/python-Mako/template
index e5c3c76170c..f0184179b83 100644
--- a/srcpkgs/python-Mako/template
+++ b/srcpkgs/python-Mako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Mako'
 pkgname=python-Mako
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Mako-${version}"
 build_style=python-module

From 164d5bbfa645fb7b1ddbfbccebb7b85e407c578f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 029/872] python-Markdown: rebuild for Python 3.8.

---
 srcpkgs/python-Markdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markdown/template b/srcpkgs/python-Markdown/template
index 935dcc12bca..03a0d18e23b 100644
--- a/srcpkgs/python-Markdown/template
+++ b/srcpkgs/python-Markdown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markdown'
 pkgname=python-Markdown
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python-module

From c5fcb10688938a17e3acb9f9c630c300f5fe9672 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 030/872] python-MarkupSafe: rebuild for Python 3.8.

---
 srcpkgs/python-MarkupSafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MarkupSafe/template b/srcpkgs/python-MarkupSafe/template
index c12dbb7e656..ae22857aa7a 100644
--- a/srcpkgs/python-MarkupSafe/template
+++ b/srcpkgs/python-MarkupSafe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MarkupSafe'
 pkgname=python-MarkupSafe
 version=1.1.1
-revision=1
+revision=2
 wrksrc="MarkupSafe-${version}"
 build_style=python-module
 pycompile_module="markupsafe"

From b7a4bc0f45110c5c3bd019a437078724336d1888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 031/872] python-Markups: rebuild for Python 3.8.

---
 srcpkgs/python-Markups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markups/template b/srcpkgs/python-Markups/template
index d4817feb430..02ba25ee05c 100644
--- a/srcpkgs/python-Markups/template
+++ b/srcpkgs/python-Markups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markups'
 pkgname=python-Markups
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markups-${version}"
 build_style=python-module

From af8fe2e4b17c908737f599cc43d860493f7da689 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 032/872] python3-MechanicalSoup: rebuild for Python 3.8.

---
 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 b1bbfa4184c..5a3b0b3eb03 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=1
+revision=2
 archs=noarch
 wrksrc=MechanicalSoup-${version}
 build_style=python3-module

From 4d05157344a63fb3d617b00a4268732231187cb4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 033/872] python-MiniMock: rebuild for Python 3.8.

---
 srcpkgs/python-MiniMock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MiniMock/template b/srcpkgs/python-MiniMock/template
index 38c0723f374..8b8c4f5f1e6 100644
--- a/srcpkgs/python-MiniMock/template
+++ b/srcpkgs/python-MiniMock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MiniMock'
 pkgname=python-MiniMock
 version=1.2.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 25b62a34488966009bf8450b60653f01872e2310 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 034/872] python-Pillow: rebuild for Python 3.8.

---
 srcpkgs/python-Pillow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pillow/template b/srcpkgs/python-Pillow/template
index e43d22b8f62..f1791b46d79 100644
--- a/srcpkgs/python-Pillow/template
+++ b/srcpkgs/python-Pillow/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pillow'
 pkgname=python-Pillow
 version=6.2.0
-revision=1
+revision=2
 wrksrc="Pillow-${version}"
 build_style=python-module
 pycompile_module="PIL"

From f79ffe3fe477b7fff206250125a96da96c80c086 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 035/872] python-PyAudio: rebuild for Python 3.8.

---
 srcpkgs/python-PyAudio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyAudio/template b/srcpkgs/python-PyAudio/template
index 5c3286caae0..2e84cf5cc8f 100644
--- a/srcpkgs/python-PyAudio/template
+++ b/srcpkgs/python-PyAudio/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyAudio'
 pkgname=python-PyAudio
 version=0.2.11
-revision=2
+revision=3
 wrksrc="PyAudio-${version}"
 build_style=python-module
 pycompile_module="pyaudio.py"

From 11c99c939a4791ec394842255e6aac23eaae5920 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 036/872] python3-PyBrowserID: rebuild for Python 3.8.

---
 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 abec9dac54e..eefd0175f1b 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=2
+revision=3
 archs=noarch
 wrksrc="PyBrowserID-${version}"
 build_style=python3-module

From d49beb289c07b8d33e8e2f286e068c0e8b3fe4b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 037/872] python3-PyFxA: rebuild for Python 3.8.

---
 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 31175c92435..6fc6791efdd 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=1
+revision=2
 archs=noarch
 wrksrc="PyFxA-${version}"
 build_style=python3-module

From d0eb109c7435d396e67de8f37a376ca0a2958d93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 038/872] python-PyHamcrest: rebuild for Python 3.8.

---
 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 61078241d8a..48f001595aa 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=1
+revision=2
 archs=noarch
 wrksrc="PyHamcrest-${version}"
 build_style=python-module

From 4afc9e488b53ee7025095fe93072953c256fc630 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 039/872] python-PyICU: rebuild for Python 3.8.

---
 srcpkgs/python-PyICU/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyICU/template b/srcpkgs/python-PyICU/template
index be4aaf88639..aab2934cbbd 100644
--- a/srcpkgs/python-PyICU/template
+++ b/srcpkgs/python-PyICU/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyICU'
 pkgname=python-PyICU
 version=2.3.1
-revision=2
+revision=3
 wrksrc="PyICU-${version}"
 build_style=python-module
 pycompile_module="icu PyICU.py"

From a0c3f96b4df2b1efda070832287f3728314c717a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 040/872] python3-PyJWT: rebuild for Python 3.8.

---
 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 6f0830125c1..bf1dda0753e 100644
--- a/srcpkgs/python3-PyJWT/template
+++ b/srcpkgs/python3-PyJWT/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-PyJWT'
 pkgname=python3-PyJWT
 version=1.7.1
-revision=1
+revision=2
 wrksrc="PyJWT-${version}"
 build_style=python3-module
 pycompile_module="PyJWT.py"

From 0355fd4b78af7fbf4ffad4b12dc8e153b70d703d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 041/872] python-PyOpenGL: rebuild for Python 3.8.

---
 srcpkgs/python-PyOpenGL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyOpenGL/template b/srcpkgs/python-PyOpenGL/template
index ec08e0bd667..eafc3be1210 100644
--- a/srcpkgs/python-PyOpenGL/template
+++ b/srcpkgs/python-PyOpenGL/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL'
 pkgname=python-PyOpenGL
 version=3.1.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="PyOpenGL-${version}"
 build_style=python-module

From 1a8da5c4a7dbf53ec6c03efd5387e02d2b0be720 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 17:15:54 +0200
Subject: [PATCH 042/872] python-PyOpenGL-accelerate: update to 3.1.3b1.

---
 srcpkgs/python-PyOpenGL-accelerate/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python-PyOpenGL-accelerate/template b/srcpkgs/python-PyOpenGL-accelerate/template
index 25d84abffcb..5d16a82b845 100644
--- a/srcpkgs/python-PyOpenGL-accelerate/template
+++ b/srcpkgs/python-PyOpenGL-accelerate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL-accelerate'
 pkgname=python-PyOpenGL-accelerate
-version=3.1.0
-revision=5
+version=3.1.3b1
+revision=1
 wrksrc="PyOpenGL-accelerate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"
@@ -9,10 +9,10 @@ makedepends="python-devel python3-devel python-numpy python3-numpy"
 depends="python-numpy"
 short_desc="Acceleration code for PyOpenGL (Python2)"
 maintainer="Alain Kalker <a.c.kalker@gmail.com>"
-license="3-clause-BSD"
+license="BSD-3-Clause"
 homepage="http://pyopengl.sourceforge.net/"
 distfiles="${PYPI_SITE}/P/PyOpenGL-accelerate/PyOpenGL-accelerate-${version}.tar.gz"
-checksum=927f4670b893d46e2f6273ae938bf0a1db27ffae3336eba94813ccef6260c410
+checksum=e687eea7e006d65f531933b49b3b3d2feaaf51279147a904247f9d189762a36f
 
 post_install() {
 	vlicense license.txt LICENSE

From 2f6b6f2c3880b16991df568d3ac18efca5c970c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 043/872] python-PyQt5: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5/template b/srcpkgs/python-PyQt5/template
index 6534d4e22e6..9eba20dc514 100644
--- a/srcpkgs/python-PyQt5/template
+++ b/srcpkgs/python-PyQt5/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5'
 pkgname=python-PyQt5
 version=5.13.0
-revision=1
+revision=2
 _sipver=4.19.18
 lib32disabled=yes
 wrksrc="PyQt5_gpl-${version}"

From cf20a1f23e0c305d2e9672610364b2fd4f566695 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 044/872] python-PyQt5-webengine: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5-webengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5-webengine/template b/srcpkgs/python-PyQt5-webengine/template
index 996ef6b00e2..af7162d20cb 100644
--- a/srcpkgs/python-PyQt5-webengine/template
+++ b/srcpkgs/python-PyQt5-webengine/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5-webengine'
 pkgname=python-PyQt5-webengine
 version=5.13.0
-revision=1
+revision=2
 wrksrc="PyQtWebEngine_gpl-${version}"
 pycompile_module="PyQt5WebEngine"
 hostmakedepends="pkg-config qt5-qmake

From 84502fbd3a591ad0db01072998b5a2b3fcfcf192 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 045/872] python-Pygments: rebuild for Python 3.8.

---
 srcpkgs/python-Pygments/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pygments/template b/srcpkgs/python-Pygments/template
index f5a72ca6cea..8d2214a6bfc 100644
--- a/srcpkgs/python-Pygments/template
+++ b/srcpkgs/python-Pygments/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pygments'
 pkgname=python-Pygments
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Pygments-${version}"
 build_style=python-module

From ef2467b2248b773e2d940058876cf81a2b935043 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 046/872] python-Pyro4: rebuild for Python 3.8.

---
 srcpkgs/python-Pyro4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pyro4/template b/srcpkgs/python-Pyro4/template
index d8925aa141f..0417e9f6a8a 100644
--- a/srcpkgs/python-Pyro4/template
+++ b/srcpkgs/python-Pyro4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pyro4'
 pkgname=python-Pyro4
 version=4.75
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a80785231122d63ad91b973744bf59b0a1b59506 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 047/872] python3-ReParser: rebuild for Python 3.8.

---
 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 5e7b5de3790..5959de9d0e3 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=1
+revision=2
 archs=noarch
 wrksrc=ReParser-${version}
 build_style=python3-module

From 543272b7ff22e6f0642d879c60f19717643fec8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 048/872] python-SPARQLWrapper: rebuild for Python 3.8.

---
 srcpkgs/python-SPARQLWrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-SPARQLWrapper/template b/srcpkgs/python-SPARQLWrapper/template
index d014eb8aab4..8d2db9a02b3 100644
--- a/srcpkgs/python-SPARQLWrapper/template
+++ b/srcpkgs/python-SPARQLWrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'python-SPARQLWrapper'
 pkgname=python-SPARQLWrapper
 version=1.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a01a9e6bc3bd9fddfdd13341f78e625b063be5c8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 049/872] python-SQLAlchemy: rebuild for Python 3.8.

---
 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 7b529ade621..110430ff9f5 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.8
-revision=1
+revision=2
 wrksrc="SQLAlchemy-${version}"
 build_style=python-module
 pycompile_module="sqlalchemy"

From 46382571cad86b54ca46e129f7c2988772d0a48e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 050/872] python3-SecretStorage: rebuild for Python 3.8.

---
 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 8df813ad247..b19d4865f7e 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.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="SecretStorage-${version}"
 build_style=python3-module

From c79427640956f1961211ce3322c3811958e0f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 051/872] python3-SoCo: rebuild for Python 3.8.

---
 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 f0ac9825f57..01ebbeff15a 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="SoCo-${version}"
 build_style=python3-module

From 20a1ac5477ca4a76e0257e06bf6f353835eac7bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 052/872] python-Sphinx: rebuild for Python 3.8.

---
 srcpkgs/python-Sphinx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Sphinx/template b/srcpkgs/python-Sphinx/template
index e70dc9b238e..42969925f9e 100644
--- a/srcpkgs/python-Sphinx/template
+++ b/srcpkgs/python-Sphinx/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Sphinx'
 pkgname=python-Sphinx
 version=1.8.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="Sphinx-${version}"
 build_style=python-module

From 863c01ff80faa4de651a55ba2a354f8da5e6b025 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 053/872] python3-Telethon: rebuild for Python 3.8.

---
 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 b0786559591..d0fa8e34d3f 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.10.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="Telethon-${version}"
 build_style=python3-module

From efc9766b9866c660a4cb508c49be4df48f1e5809 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 054/872] python-Twisted: rebuild for Python 3.8.

---
 srcpkgs/python-Twisted/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Twisted/template b/srcpkgs/python-Twisted/template
index 519a1e251a9..e94e0edf26e 100644
--- a/srcpkgs/python-Twisted/template
+++ b/srcpkgs/python-Twisted/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Twisted'
 pkgname=python-Twisted
 version=18.9.0
-revision=3
+revision=4
 wrksrc="Twisted-${version}"
 build_style=python-module
 pycompile_module="twisted"

From 5fd974f3940d5ee91fe712fef2e93ce539743b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 055/872] python3-TxSNI: rebuild for Python 3.8.

---
 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 403010da5be..d9d7c2a0c83 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.1.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="TxSNI-${version}"
 build_style=python3-module

From 559184031fe43c0ff648fb7fab55ede08fff2c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 056/872] python-Unidecode: rebuild for Python 3.8.

---
 srcpkgs/python-Unidecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Unidecode/template b/srcpkgs/python-Unidecode/template
index 035c5d846be..444eb1427d6 100644
--- a/srcpkgs/python-Unidecode/template
+++ b/srcpkgs/python-Unidecode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Unidecode'
 pkgname=python-Unidecode
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Unidecode-${version}"
 build_style=python-module

From 07f0904b4cb8f2de0b7bc39c0ca28d225c91257d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 057/872] python-WTForms: rebuild for Python 3.8.

---
 srcpkgs/python-WTForms/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-WTForms/template b/srcpkgs/python-WTForms/template
index 06af2366050..98dff7d092f 100644
--- a/srcpkgs/python-WTForms/template
+++ b/srcpkgs/python-WTForms/template
@@ -1,7 +1,7 @@
 # Template file for 'python-WTForms'
 pkgname=python-WTForms
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="WTForms-${version}"
 build_style=python-module

From ec81beba1921fe189a8dd80810da306514a86c1a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 058/872] python3-WebOb: rebuild for Python 3.8.

---
 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 c360542a1f2..53e63879f2c 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=1
+revision=2
 archs=noarch
 wrksrc="WebOb-${version}"
 build_style=python3-module

From 0b7a4a756b3ead4c188a3819311c4471c1b0a21c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 059/872] python-Werkzeug: rebuild for Python 3.8.

---
 srcpkgs/python-Werkzeug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Werkzeug/template b/srcpkgs/python-Werkzeug/template
index 24fff62f1ae..1ca303822e8 100644
--- a/srcpkgs/python-Werkzeug/template
+++ b/srcpkgs/python-Werkzeug/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Werkzeug'
 pkgname=python-Werkzeug
 version=0.15.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c530a6e11127606a3b29b73da4cb31f010d97b5c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 060/872] python-Whoosh: rebuild for Python 3.8.

---
 srcpkgs/python-Whoosh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Whoosh/template b/srcpkgs/python-Whoosh/template
index f2118ed0af2..66856b206a7 100644
--- a/srcpkgs/python-Whoosh/template
+++ b/srcpkgs/python-Whoosh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-whoosh'
 pkgname=python-Whoosh
 version=2.7.4
-revision=1
+revision=2
 wrksrc="Whoosh-${version}"
 archs=noarch
 build_style=python-module

From 3e3ad6526265ded86e6e1b5539061302a3890381 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 061/872] python3-XlsxWriter: rebuild for Python 3.8.

---
 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 ea68ced9a03..b991457e01e 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.1.8
-revision=1
+revision=2
 archs="noarch"
 wrksrc="XlsxWriter-RELEASE_${version}"
 build_style=python3-module

From ed808be70fb42a5a7e827e43a5d8a9954d85823a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 062/872] python-Yapsy: rebuild for Python 3.8.

---
 srcpkgs/python-Yapsy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Yapsy/template b/srcpkgs/python-Yapsy/template
index 9f79423f91d..5ad8b234f5d 100644
--- a/srcpkgs/python-Yapsy/template
+++ b/srcpkgs/python-Yapsy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Yapsy'
 pkgname=python-Yapsy
 version=1.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Yapsy-${version}"
 build_style=python-module

From ef3f8b60f72752d3ec1c7676df4597cc6cfdfb42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 063/872] python-aalib: rebuild for Python 3.8.

---
 srcpkgs/python-aalib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-aalib/template b/srcpkgs/python-aalib/template
index 349b8407343..f9621a9c8dc 100644
--- a/srcpkgs/python-aalib/template
+++ b/srcpkgs/python-aalib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-aalib'
 pkgname=python-aalib
 version=0.3.2
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="aalib.py"
 hostmakedepends="python-setuptools python3-setuptools"

From 1aee008231a9354b62bbf679e89e620deeba0d34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 064/872] python3-acme: rebuild for Python 3.8.

---
 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 d7ef20f2301..844dde9c814 100644
--- a/srcpkgs/python3-acme/template
+++ b/srcpkgs/python3-acme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-acme'
 pkgname=python3-acme
 version=0.39.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="acme-${version}"
 build_style=python3-module

From 877668118087bb2d0bd4b8ebf34db7c6c4308c31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 065/872] python3-aiodns: rebuild for Python 3.8.

---
 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 cca9f45dbf5..8e06ea6e614 100644
--- a/srcpkgs/python3-aiodns/template
+++ b/srcpkgs/python3-aiodns/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiodns'
 pkgname=python3-aiodns
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiodns-${version}"
 build_style=python3-module

From de87766918ac8688cf8992433b56e9b1ad222108 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 066/872] python3-aiohttp: rebuild for Python 3.8.

---
 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 fbe98e07b2b..67e450e6aab 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.5.4
-revision=3
+revision=4
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 0c2d285f8d7edc438e657ec9bc4a2b16982a4a57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 067/872] python3-aiohttp-cors: rebuild for Python 3.8.

---
 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 8a643ca1797..b621716e3cd 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=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 4643a6f9e03d1657e1ac2f5ca93bf616979b58de Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 068/872] python3-aiohttp-cors2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp-cors2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp-cors2/template b/srcpkgs/python3-aiohttp-cors2/template
index 7ff1206538b..f13b0598456 100644
--- a/srcpkgs/python3-aiohttp-cors2/template
+++ b/srcpkgs/python3-aiohttp-cors2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp-cors2'
 pkgname=python3-aiohttp-cors2
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 9db81023f9f60f7a78d62f9f9b8f1fa8afbb9fa8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 069/872] python3-aiohttp2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp2/template b/srcpkgs/python3-aiohttp2/template
index b570043baba..db3704b5700 100644
--- a/srcpkgs/python3-aiohttp2/template
+++ b/srcpkgs/python3-aiohttp2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp2'
 pkgname=python3-aiohttp2
 version=2.3.10
-revision=2
+revision=3
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 9bf56f834aca73a7ea8141ab0c95b4aed0d1f09a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 070/872] python3-aiohttp_socks: rebuild for Python 3.8.

---
 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 93c45ff24c4..10ab967ef76 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.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp_socks-${version}"
 build_style=python3-module

From acad4e265f43c8bc2098168adb1c0442a0c22445 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 071/872] python3-aiorpcx: rebuild for Python 3.8.

---
 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 42b6dc541bf..07922e15ccd 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.17.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiorpcX-${version}"
 build_style=python3-module

From b4945f68890b617f5b513871e533769a2149f07f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 072/872] python-alabaster: rebuild for Python 3.8.

---
 srcpkgs/python-alabaster/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alabaster/template b/srcpkgs/python-alabaster/template
index e4ece5c2991..b33009d5efb 100644
--- a/srcpkgs/python-alabaster/template
+++ b/srcpkgs/python-alabaster/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alabaster'
 pkgname=python-alabaster
 version=0.7.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="alabaster-${version}"
 build_style=python-module

From 04c416b8fb310277c61713ee1b8dd702a970240b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 073/872] python-alembic: rebuild for Python 3.8.

---
 srcpkgs/python-alembic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alembic/template b/srcpkgs/python-alembic/template
index 4011b33c0fa..aecbe10e7d0 100644
--- a/srcpkgs/python-alembic/template
+++ b/srcpkgs/python-alembic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alembic'
 pkgname=python-alembic
 version=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="alembic-${version}"
 build_style=python-module

From 5c2d4bcc3255cb59561524d151fe84b3a70e8ad4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 074/872] python3-altgraph: rebuild for Python 3.8.

---
 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 eff10f7aef4..2bf433edb6e 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.16.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="altgraph-${version}"
 build_style=python3-module

From 3c6234d42f7adffca219ea7f98f11d5283dce900 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 075/872] python3-aniso8601: rebuild for Python 3.8.

---
 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 26540bc8c3f..0253b89b5a3 100644
--- a/srcpkgs/python3-aniso8601/template
+++ b/srcpkgs/python3-aniso8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aniso8601'
 pkgname=python3-aniso8601
 version=8.0.0
-revision=1
+revision=2
 archs=noarch
 _gitver=0ec13b9d81c9
 wrksrc="nielsenb-aniso8601-${_gitver}"

From b4fecde90241517d0629d46de55f99a1ef7edbaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 076/872] python-ansicolor: rebuild for Python 3.8.

---
 srcpkgs/python-ansicolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ansicolor/template b/srcpkgs/python-ansicolor/template
index af18c5b946d..3663a82f0cc 100644
--- a/srcpkgs/python-ansicolor/template
+++ b/srcpkgs/python-ansicolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ansicolor'
 pkgname=python-ansicolor
 version=0.2.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="ansicolor-${version}"
 build_style=python-module

From 3983fbed547fd194f9eefaaf58d10c7770e27350 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 077/872] python3-anytree: rebuild for Python 3.8.

---
 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 5a37dba6581..7368754c426 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.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="anytree-${version}"
 build_style=python3-module

From 6d797f541c2cb160f9cfebd0a3e71dace50cceb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 078/872] python-appdirs: rebuild for Python 3.8.

---
 srcpkgs/python-appdirs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-appdirs/template b/srcpkgs/python-appdirs/template
index fdae1fe184b..15354ec5768 100644
--- a/srcpkgs/python-appdirs/template
+++ b/srcpkgs/python-appdirs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-appdirs'
 pkgname=python-appdirs
 version=1.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 7a7c86554157d7224efc221e706b9aebfc1ff796 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 079/872] python3-applib: rebuild for Python 3.8.

---
 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 95f589dc65a..0fb5a42e618 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=1
+revision=2
 archs=noarch
 wrksrc="applib-${version}"
 build_style=python3-module

From 642416934e5f74b49e1a38fe6e941287cbccbf83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 080/872] python-apsw: rebuild for Python 3.8.

---
 srcpkgs/python-apsw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-apsw/template b/srcpkgs/python-apsw/template
index ed47b4a7803..6146ea639db 100644
--- a/srcpkgs/python-apsw/template
+++ b/srcpkgs/python-apsw/template
@@ -3,7 +3,7 @@ pkgname=python-apsw
 _distver=3.29.0
 _patchver=r1
 version=${_distver}${_patchver}
-revision=1
+revision=2
 wrksrc="apsw-${_distver}-${_patchver}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 765bd2f2b82c6226b12a5d6bbe156b07c03a1bca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 081/872] python-argh: rebuild for Python 3.8.

---
 srcpkgs/python-argh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argh/template b/srcpkgs/python-argh/template
index 4b7aec3b525..656da441757 100644
--- a/srcpkgs/python-argh/template
+++ b/srcpkgs/python-argh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argh'
 pkgname=python-argh
 version=0.26.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="argh-${version}"
 build_style=python-module

From 1f6f709fcbb4353d419be8d129ce581747dae1ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 082/872] python-argon2: rebuild for Python 3.8.

---
 srcpkgs/python-argon2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argon2/template b/srcpkgs/python-argon2/template
index 0b4b132cddd..1b5216cc9c0 100644
--- a/srcpkgs/python-argon2/template
+++ b/srcpkgs/python-argon2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argon2'
 pkgname=python-argon2
 version=18.3.0
-revision=2
+revision=3
 wrksrc="argon2_cffi-${version}"
 build_style=python-module
 pycompile_module="argon2"

From 26f299203792a3fe43e8944054d8c61c83416097 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 083/872] python-arxiv2bib: rebuild for Python 3.8.

---
 srcpkgs/python-arxiv2bib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-arxiv2bib/template b/srcpkgs/python-arxiv2bib/template
index 8bbc6bcf78e..4f245755dcf 100644
--- a/srcpkgs/python-arxiv2bib/template
+++ b/srcpkgs/python-arxiv2bib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-arxiv2bib'
 pkgname=python-arxiv2bib
 version=1.0.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="arxiv2bib-${version}"
 build_style=python-module

From 5d25b8642b8f8043e54a95f2ff5efc880044395a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 084/872] python-asn1crypto: rebuild for Python 3.8.

---
 srcpkgs/python-asn1crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-asn1crypto/template b/srcpkgs/python-asn1crypto/template
index 369c20af98f..e7ffe7415fc 100644
--- a/srcpkgs/python-asn1crypto/template
+++ b/srcpkgs/python-asn1crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-asn1crypto'
 pkgname=python-asn1crypto
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="asn1crypto-${version}"
 build_style=python-module

From c0625af704339d35d7423cd750ef2620c53c39bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 085/872] python-astral: rebuild for Python 3.8.

---
 srcpkgs/python-astral/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-astral/template b/srcpkgs/python-astral/template
index b8fdaee27ac..07aaeee166b 100644
--- a/srcpkgs/python-astral/template
+++ b/srcpkgs/python-astral/template
@@ -1,7 +1,7 @@
 # Template file for 'python-astral'
 pkgname=python-astral
 version=1.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python-}-${version}"
 build_style=python-module

From 6cdbd1584336605868e949368279bb6c2143b1d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 086/872] python3-astroid: rebuild for Python 3.8.

---
 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 28f01bd4445..d964fd2cdf3 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.2.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="astroid-${version}"
 build_style=python3-module

From c0642f6c760884c3209a89e643de35660419627a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 087/872] python3-async-timeout: rebuild for Python 3.8.

---
 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 d949a4fdf9a..854584fb5b2 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=1
+revision=2
 archs=noarch
 wrksrc="async-timeout-${version}"
 build_style=python3-module

From 17cdd1aac68337b8859ce0d970b309f841b8a456 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 088/872] python3-async_generator: rebuild for Python 3.8.

---
 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 c2053d7bf1f..20d9f7ea0d1 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=1
+revision=2
 archs=noarch
 wrksrc="async_generator-${version}"
 build_style=python3-module

From e57ec7e6820968645a23bcc13867add4c9a62399 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 089/872] python-atomicwrites: rebuild for Python 3.8.

---
 srcpkgs/python-atomicwrites/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atomicwrites/template b/srcpkgs/python-atomicwrites/template
index 849272e53f9..ec411d981d4 100644
--- a/srcpkgs/python-atomicwrites/template
+++ b/srcpkgs/python-atomicwrites/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atomicwrites'
 pkgname=python-atomicwrites
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="atomicwrites-${version}"
 build_style=python-module

From 61df9fa27dc05bc6bb5d5a2c5e806fd041d9adb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 090/872] python-atspi: rebuild for Python 3.8.

---
 srcpkgs/python-atspi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atspi/template b/srcpkgs/python-atspi/template
index 4a2007fa319..cfa1ef35377 100644
--- a/srcpkgs/python-atspi/template
+++ b/srcpkgs/python-atspi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atspi'
 pkgname=python-atspi
 version=2.32.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure

From d24c76e2f70e9a9dd9a6aa66a323bf79f37f9110 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 091/872] python-attrs: rebuild for Python 3.8.

---
 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 aaddb13f5be..6e2297a9553 100644
--- a/srcpkgs/python-attrs/template
+++ b/srcpkgs/python-attrs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-attrs'
 pkgname=python-attrs
 version=19.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="attrs-${version}"
 build_style=python-module

From dba37b5f26f28057cb10e86a08a4d2281ee09b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 092/872] python-audioread: rebuild for Python 3.8.

---
 srcpkgs/python-audioread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-audioread/template b/srcpkgs/python-audioread/template
index fc788a2778c..bc878d4b82d 100644
--- a/srcpkgs/python-audioread/template
+++ b/srcpkgs/python-audioread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-audioread'
 pkgname=python-audioread
 version=2.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="audioread-${version}"
 build_style=python-module

From 789a6f2ae1cd503ad69b6a968651c7745f878718 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 093/872] audit: rebuild for Python 3.8.

---
 srcpkgs/audit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/audit/template b/srcpkgs/audit/template
index c624aae0f6d..3e0d21784c0 100644
--- a/srcpkgs/audit/template
+++ b/srcpkgs/audit/template
@@ -1,7 +1,7 @@
 # Template file for 'audit'
 pkgname=audit
 version=2.8.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--libdir=/usr/lib --enable-shared=audit --enable-gssapi-krb5
  --with-apparmor --with-libcap-ng --with-python3"

From e2efc441ba2dda6eac89d6d19f7960be2fb6cb6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 094/872] python3-autobahn: rebuild for Python 3.8.

---
 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 053e45608e5..524ba4b4566 100644
--- a/srcpkgs/python3-autobahn/template
+++ b/srcpkgs/python3-autobahn/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-autobahn'
 pkgname=python3-autobahn
 version=19.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="autobahn-${version}"
 build_style=python3-module

From 9ad07e924752896ad77bccca2019163eb738ebc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 095/872] python-automat: rebuild for Python 3.8.

---
 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 4d0f89a89f5..984f5e9642a 100644
--- a/srcpkgs/python-automat/template
+++ b/srcpkgs/python-automat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-automat'
 pkgname=python-automat
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Automat-${version}"
 build_style=python-module

From a104c6986268b798f373e1fb36de2b20efb9f618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 096/872] python-axolotl: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl/template b/srcpkgs/python-axolotl/template
index cf24db1b6e7..74480b5a9fe 100644
--- a/srcpkgs/python-axolotl/template
+++ b/srcpkgs/python-axolotl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl'
 pkgname=python-axolotl
 version=0.2.3
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="axolotl"

From c0e16521a2125c2ae2c155dd483904a3dce7bd8c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 097/872] python-axolotl-curve25519: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl-curve25519/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl-curve25519/template b/srcpkgs/python-axolotl-curve25519/template
index f7b273b8385..897de4e7cdf 100644
--- a/srcpkgs/python-axolotl-curve25519/template
+++ b/srcpkgs/python-axolotl-curve25519/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl-curve25519'
 pkgname=python-axolotl-curve25519
 version=0.4.1.post2
-revision=2
+revision=3
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 makedepends="python-devel python3-devel"

From 6c250811341de25ed60e2bdfaae58eb8f5a8c159 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 098/872] python-babelfish: rebuild for Python 3.8.

---
 srcpkgs/python-babelfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-babelfish/template b/srcpkgs/python-babelfish/template
index c156255f418..47d5bb176cc 100644
--- a/srcpkgs/python-babelfish/template
+++ b/srcpkgs/python-babelfish/template
@@ -1,7 +1,7 @@
 # Template file for 'python-babelfish'
 pkgname=python-babelfish
 version=0.5.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="babelfish-${version}"
 build_style=python-module

From 3bbb2fa6599ab0470a4209080a69ad4f8476f1ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 099/872] python-backcall: rebuild for Python 3.8.

---
 srcpkgs/python-backcall/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-backcall/template b/srcpkgs/python-backcall/template
index 01dfab9c25d..a55af727ab6 100644
--- a/srcpkgs/python-backcall/template
+++ b/srcpkgs/python-backcall/template
@@ -1,7 +1,7 @@
 # Template file for 'python-backcall'
 pkgname=python-backcall
 version=0.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="backcall-${version}"
 build_style=python-module

From d263efaab1b83cfdc94e9b33011f3cfefc52dcd2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 100/872] bcc: rebuild for Python 3.8.

---
 srcpkgs/bcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template
index a4d32bce7a4..e872cb6a4a8 100644
--- a/srcpkgs/bcc/template
+++ b/srcpkgs/bcc/template
@@ -1,7 +1,7 @@
 # Template file for 'bcc'
 pkgname=bcc
 version=0.11.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DREVISION=${version}"
 hostmakedepends="flex"

From 95aa25d2f02529207de0d9d62aa57353f202d9a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 101/872] python-bcrypt: rebuild for Python 3.8.

---
 srcpkgs/python-bcrypt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bcrypt/template b/srcpkgs/python-bcrypt/template
index 1ccac21ee94..664b5c9df07 100644
--- a/srcpkgs/python-bcrypt/template
+++ b/srcpkgs/python-bcrypt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bcrypt'
 pkgname=python-bcrypt
 version=3.1.7
-revision=1
+revision=2
 wrksrc="bcrypt-${version}"
 build_style=python-module
 pycompile_module="bcrypt"

From 91e29d8f93186f3c597658d4746f864cc6ed9fb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 102/872] python-bibtexparser: rebuild for Python 3.8.

---
 srcpkgs/python-bibtexparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bibtexparser/template b/srcpkgs/python-bibtexparser/template
index 1eff201e6b8..c40115c9fb8 100644
--- a/srcpkgs/python-bibtexparser/template
+++ b/srcpkgs/python-bibtexparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bibtexparser'
 pkgname=python-bibtexparser
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bibtexparser-${version}"
 build_style=python-module

From 6a95de33763230908ad4e9ae408dedcdd2cc431d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 103/872] python-bitarray: rebuild for Python 3.8.

---
 srcpkgs/python-bitarray/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitarray/template b/srcpkgs/python-bitarray/template
index 4f2b4ee392c..f928718a9df 100644
--- a/srcpkgs/python-bitarray/template
+++ b/srcpkgs/python-bitarray/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitarray'
 pkgname=python-bitarray
 version=1.0.1
-revision=1
+revision=2
 wrksrc="bitarray-${version}"
 build_style=python-module
 pycompile_module="bitarray"

From 1f892b7a3495cc0eddd59d14baf8fa6473521ce4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 104/872] python-bitbucket-api: rebuild for Python 3.8.

---
 srcpkgs/python-bitbucket-api/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitbucket-api/template b/srcpkgs/python-bitbucket-api/template
index 27747866baf..448ea60d53d 100644
--- a/srcpkgs/python-bitbucket-api/template
+++ b/srcpkgs/python-bitbucket-api/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitbucket-api'
 pkgname=python-bitbucket-api
 version=0.5.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="bitbucket-api-${version}"
 build_style=python-module

From 9f464ba19a5d403e830d05b84d5b86c6a9bf0209 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 105/872] python-bleach: rebuild for Python 3.8.

---
 srcpkgs/python-bleach/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bleach/template b/srcpkgs/python-bleach/template
index da389c319a5..6e3d4a3bf4c 100644
--- a/srcpkgs/python-bleach/template
+++ b/srcpkgs/python-bleach/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bleach'
 pkgname=python-bleach
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bleach-${version}"
 build_style=python-module

From a79c0811d86d64b345ee5b056c280a062c8e810a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 106/872] python3-blessed: rebuild for Python 3.8.

---
 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 4d494883f9a..8527379351f 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.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessed-${version}"
 build_style=python3-module

From ec38850242ede1700a4b6234199fba116a530b3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 107/872] python-blessings: rebuild for Python 3.8.

---
 srcpkgs/python-blessings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blessings/template b/srcpkgs/python-blessings/template
index f8e396da5c5..baa4938c328 100644
--- a/srcpkgs/python-blessings/template
+++ b/srcpkgs/python-blessings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blessings'
 pkgname=python-blessings
 version=1.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessings-${version}"
 build_style=python-module

From 19252293b6f311e3a280441f83e7ec1589711b77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 108/872] python-blinker: rebuild for Python 3.8.

---
 srcpkgs/python-blinker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blinker/template b/srcpkgs/python-blinker/template
index e34a4a9721a..b6d1d63d19a 100644
--- a/srcpkgs/python-blinker/template
+++ b/srcpkgs/python-blinker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blinker'
 pkgname=python-blinker
 version=1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="blinker-${version}"
 build_style=python-module

From 7cd7b832b55b68ab081454f2b86c254476bd5132 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 109/872] python-bluez: rebuild for Python 3.8.

---
 srcpkgs/python-bluez/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bluez/template b/srcpkgs/python-bluez/template
index 1112352e8ab..4734e47038d 100644
--- a/srcpkgs/python-bluez/template
+++ b/srcpkgs/python-bluez/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bluez'
 pkgname=python-bluez
 version=0.22
-revision=4
+revision=5
 wrksrc="pybluez-${version}"
 build_style=python-module
 pycompile_module="bluetooth"

From 47f9a18cc42f2afe1e8f31696b6928e35b8105c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 110/872] python3-boltons: rebuild for Python 3.8.

---
 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 84a991feef4..1083eb98c51 100644
--- a/srcpkgs/python3-boltons/template
+++ b/srcpkgs/python3-boltons/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-boltons'
 pkgname=python3-boltons
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boltons-${version}"
 build_style=python3-module

From 05f9cb79aa092e2ddeede56d09676742c60cb788 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 111/872] python-boto: rebuild for Python 3.8.

---
 srcpkgs/python-boto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-boto/template b/srcpkgs/python-boto/template
index 40bd3d888b9..684c00feee0 100644
--- a/srcpkgs/python-boto/template
+++ b/srcpkgs/python-boto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-boto'
 pkgname=python-boto
 version=2.49.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boto-${version}"
 build_style=python-module

From ad258b30e35aadb84fd8cd6395bb3d382b429ce9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 112/872] python-botocore: rebuild for Python 3.8.

---
 srcpkgs/python-botocore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-botocore/template b/srcpkgs/python-botocore/template
index ae1a4c17964..0610007f36e 100644
--- a/srcpkgs/python-botocore/template
+++ b/srcpkgs/python-botocore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-botocore'
 pkgname=python-botocore
 version=1.12.243
-revision=1
+revision=2
 archs=noarch
 wrksrc="botocore-${version}"
 build_style=python-module

From 5bc87295c4d5b8af514da116d9b83154488da331 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 113/872] python-bottle: rebuild for Python 3.8.

---
 srcpkgs/python-bottle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bottle/template b/srcpkgs/python-bottle/template
index 8e3a2ad5ad7..0ffc8adfec7 100644
--- a/srcpkgs/python-bottle/template
+++ b/srcpkgs/python-bottle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bottle'
 pkgname=python-bottle
 version=0.12.17
-revision=1
+revision=2
 archs=noarch
 wrksrc="bottle-${version}"
 build_style=python-module

From 86d7964c563357cfa4aec17ced1fefb9e2c974d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 114/872] brltty: rebuild for Python 3.8.

---
 srcpkgs/brltty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/brltty/template b/srcpkgs/brltty/template
index 33f3354a219..a838cd62d55 100644
--- a/srcpkgs/brltty/template
+++ b/srcpkgs/brltty/template
@@ -1,7 +1,7 @@
 # Template file for 'brltty'
 pkgname=brltty
 version=6.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-gpm --with-screen-driver=lx,sc
  --with-tables-directory=/usr/share/brltty PYTHON=/usr/bin/python3"

From 59305e4244220895606aef8a8016d356cee63dff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 115/872] python-bsddb3: rebuild for Python 3.8.

---
 srcpkgs/python-bsddb3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bsddb3/template b/srcpkgs/python-bsddb3/template
index f719a3f9560..1df37cc0e71 100644
--- a/srcpkgs/python-bsddb3/template
+++ b/srcpkgs/python-bsddb3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bsddb3'
 pkgname=python-bsddb3
 version=6.2.6
-revision=2
+revision=3
 wrksrc="bsddb3-${version}"
 build_style=python-module
 make_build_args="--berkeley-db=${XBPS_CROSS_BASE}/usr"

From 8e91ab0e55145cdc83aae10c6f0277d467cb5057 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 116/872] python-cached-property: rebuild for Python 3.8.

---
 srcpkgs/python-cached-property/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cached-property/template b/srcpkgs/python-cached-property/template
index ca2f8536260..16c89346565 100644
--- a/srcpkgs/python-cached-property/template
+++ b/srcpkgs/python-cached-property/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cached-property'
 pkgname=python-cached-property
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cached-property-${version}"
 build_style=python-module

From 3047633291296a9279b5c2a9c0ff04a0cea875f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 117/872] python-cachetools: rebuild for Python 3.8.

---
 srcpkgs/python-cachetools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cachetools/template b/srcpkgs/python-cachetools/template
index ee3ed3a4c94..0f2fdcaed32 100644
--- a/srcpkgs/python-cachetools/template
+++ b/srcpkgs/python-cachetools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cachetools'
 pkgname=python-cachetools
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cachetools-${version}"
 build_style=python-module

From 52e0110b2dc8419583a18babfa62796ef6410ac7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 118/872] python3-cairo: rebuild for Python 3.8.

---
 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 cdde1b83d20..ac158237dd2 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.18.1
-revision=1
+revision=2
 wrksrc="pycairo-${version}"
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From d8f9c3f93f495874237c23477fb548be8b2c0da2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 119/872] python-cairocffi: rebuild for Python 3.8.

---
 srcpkgs/python-cairocffi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cairocffi/template b/srcpkgs/python-cairocffi/template
index baa61334a2a..c057739b03d 100644
--- a/srcpkgs/python-cairocffi/template
+++ b/srcpkgs/python-cairocffi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cairocffi'
 pkgname=python-cairocffi
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cairocffi-${version}"
 build_style=python-module

From bc01f22fb9a5d16bae1b724b675fc57b1f732baa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 120/872] python3-canonicaljson: rebuild for Python 3.8.

---
 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 abc8e95820d..1cbe15f14ae 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.1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="canonicaljson-${version}"
 build_style=python3-module

From e4cba931e3e55f565bc084f8171dea2a8baa9aaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 121/872] python3-casttube: rebuild for Python 3.8.

---
 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 ccd95f3f31c..9e5544b0101 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=1
+revision=2
 archs=noarch
 wrksrc="casttube-${version}"
 build_style=python3-module

From 255661e350728911e6dc85db4bd8a0a0f059b561 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 122/872] python-cffi: rebuild for Python 3.8.

---
 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 27ae03879ac..8501b202bf2 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.12.3
-revision=1
+revision=2
 wrksrc="cffi-${version}"
 build_style=python-module
 pycompile_module="cffi"

From 1b85c0971a1d2d810331d3392d4ecedf140eeb47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 123/872] python3-changelogs: rebuild for Python 3.8.

---
 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 5c2a4889959..d9a7784cf3b 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.14.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="changelogs-${version}"
 build_style=python3-module

From 38e9561402e4ea4c3c4b27c8c747e6b710aec2fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 124/872] python-chardet: rebuild for Python 3.8.

---
 srcpkgs/python-chardet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chardet/template b/srcpkgs/python-chardet/template
index 685d3ab767f..bd502bbbddf 100644
--- a/srcpkgs/python-chardet/template
+++ b/srcpkgs/python-chardet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chardet'
 pkgname=python-chardet
 version=3.0.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="chardet-${version}"
 build_style=python-module

From de1193127ae80857e0f21f1d0499748b6ccafa40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 125/872] python3-cheetah3: rebuild for Python 3.8.

---
 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 40dfee6e322..b2149b2bc22 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.4
-revision=1
+revision=2
 wrksrc="Cheetah3-${version}"
 build_style=python3-module
 pycompile_module="Cheetah"

From 654378c7da0932e5e48085409868c2639efb5294 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 126/872] python3-chess: rebuild for Python 3.8.

---
 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 54b397517cf..e87dab6ca02 100644
--- a/srcpkgs/python3-chess/template
+++ b/srcpkgs/python3-chess/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chess'
 pkgname=python3-chess
 version=0.27.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-chess-${version}"
 build_style=python3-module

From 10db1a1daa9e65a8a20ebc6e20f512884e23f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 127/872] python3-chromecast: rebuild for Python 3.8.

---
 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 16df7502633..cfa41c5dfb5 100644
--- a/srcpkgs/python3-chromecast/template
+++ b/srcpkgs/python3-chromecast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chromecast'
 pkgname=python3-chromecast
 version=4.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychromecast-${version}"
 build_style=python3-module

From 9ff3e7dae7d0ebe28421538f18f150ecd58104e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 128/872] python-chroot: rebuild for Python 3.8.

---
 srcpkgs/python-chroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chroot/template b/srcpkgs/python-chroot/template
index 36853e9f2c0..7faa0f4cce9 100644
--- a/srcpkgs/python-chroot/template
+++ b/srcpkgs/python-chroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chroot'
 pkgname=python-chroot
 version=0.9.18
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychroot-${version}"
 build_style=python-module

From 8d2b57d7f0075beb9134ebd5f7e517ef8a7f20a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 129/872] python3-cli-ui: rebuild for Python 3.8.

---
 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 8303d44eed2..15a9bd32fce 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.9.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-cli-ui-${version}"
 build_style=python3-module

From ecf175e67cdb7bd1e27d29cc47a7e945a6660996 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 130/872] python3-cli_helpers: rebuild for Python 3.8.

---
 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 74b4abf2200..87b284e3cb5 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=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cli_helpers-${version}"
 build_style=python3-module

From aa87c50665110997328e9b80b9b6ba62c47f18bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 131/872] python-click: rebuild for Python 3.8.

---
 srcpkgs/python-click/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click/template b/srcpkgs/python-click/template
index 217e617e73e..4014cb66a83 100644
--- a/srcpkgs/python-click/template
+++ b/srcpkgs/python-click/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click'
 pkgname=python-click
 version=7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Click-${version}"
 build_style="python-module"

From cac08babb361a709a7b7a93c7a825b4682273115 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 132/872] python-click-log: rebuild for Python 3.8.

---
 srcpkgs/python-click-log/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-log/template b/srcpkgs/python-click-log/template
index 37b53f04af0..b57a7a74b4a 100644
--- a/srcpkgs/python-click-log/template
+++ b/srcpkgs/python-click-log/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-log'
 pkgname=python-click-log
 version=0.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-log-${version}"
 build_style="python-module"

From 5a0f06ded0599ac889d808c93865db1723b2ed95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 133/872] python3-click-plugins: rebuild for Python 3.8.

---
 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 cee484018d1..0ef6ce6b248 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=1
+revision=2
 archs=noarch
 wrksrc="click-plugins-${version}"
 build_style=python3-module

From cf104fe4106995307daeb70eb8d34554c238b5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 134/872] python-click-threading: rebuild for Python 3.8.

---
 srcpkgs/python-click-threading/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-threading/template b/srcpkgs/python-click-threading/template
index 76125224992..49b4a4a9aae 100644
--- a/srcpkgs/python-click-threading/template
+++ b/srcpkgs/python-click-threading/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-threading'
 pkgname=python-click-threading
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-threading-${version}"
 build_style="python-module"

From 4bcf653af73bc8e5a6492eee92e5d2826a779d38 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 135/872] python3-cmdln: rebuild for Python 3.8.

---
 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 f00c9a63908..2b7e21f3980 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=1
+revision=2
 archs=noarch
 wrksrc="cmdln-${version}"
 build_style=python3-module

From 52e9257d3be602d0748918c1440a3eae0b6baa51 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 136/872] python-codespell: rebuild for Python 3.8.

---
 srcpkgs/python-codespell/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-codespell/template b/srcpkgs/python-codespell/template
index 92134285a58..211626f33d7 100644
--- a/srcpkgs/python-codespell/template
+++ b/srcpkgs/python-codespell/template
@@ -1,7 +1,7 @@
 # Template file for 'python-codespell'
 pkgname=python-codespell
 version=1.14.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="codespell-${version}"
 build_style=python-module

From 65299f402e3d3a2991e33defee28d85043e0b40f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 137/872] python-colorama: rebuild for Python 3.8.

---
 srcpkgs/python-colorama/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-colorama/template b/srcpkgs/python-colorama/template
index 98ea0d3be78..09562385243 100644
--- a/srcpkgs/python-colorama/template
+++ b/srcpkgs/python-colorama/template
@@ -1,7 +1,7 @@
 # Template file for 'python-colorama'
 pkgname=python-colorama
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="colorama-${version}"
 build_style=python-module

From ec6a8fb7b9e3330e2d7f3fbe139c7a3742013bd8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 138/872] python3-colorclass: rebuild for Python 3.8.

---
 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 4a80f379206..ed8d2d2ea02 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=1
+revision=2
 archs=noarch
 wrksrc="colorclass-${version}"
 build_style=python3-module

From 4b254d3097fa01cb641af24639c6b9a230345954 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 139/872] python-configobj: rebuild for Python 3.8.

---
 srcpkgs/python-configobj/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-configobj/template b/srcpkgs/python-configobj/template
index 95f30d4631a..a8cb5d5d34e 100644
--- a/srcpkgs/python-configobj/template
+++ b/srcpkgs/python-configobj/template
@@ -1,7 +1,7 @@
 # Template file for 'python-configobj'
 pkgname=python-configobj
 version=5.0.6
-revision=5
+revision=6
 archs=noarch
 wrksrc="configobj-${version}"
 build_style=python-module

From 530a6b84ff81274981ed1aa92a2ff85a78dc9775 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 140/872] python-constantly: rebuild for Python 3.8.

---
 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 b5530908ac4..9160aec9edd 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=2
+revision=3
 archs=noarch
 wrksrc="constantly-${version}"
 build_style=python-module

From d2c0a853f5cd6634cca304f7db191fcb1d9a6afa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 141/872] python-construct: rebuild for Python 3.8.

---
 srcpkgs/python-construct/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-construct/template b/srcpkgs/python-construct/template
index 2afe435652c..d6d0b8010e2 100644
--- a/srcpkgs/python-construct/template
+++ b/srcpkgs/python-construct/template
@@ -1,7 +1,7 @@
 # Template file for 'python-construct'
 pkgname=python-construct
 version=2.9.45
-revision=2
+revision=3
 archs=noarch
 wrksrc="construct-${version}"
 build_style=python-module

From 9ba618aa4a4db0062002fcb1ad540bee9b702ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 142/872] python-coverage: rebuild for Python 3.8.

---
 srcpkgs/python-coverage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-coverage/template b/srcpkgs/python-coverage/template
index df6064b9879..1c44b5e18fb 100644
--- a/srcpkgs/python-coverage/template
+++ b/srcpkgs/python-coverage/template
@@ -1,7 +1,7 @@
 # Template file for 'python-coverage'
 pkgname=python-coverage
 version=4.5.4
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="coverage"

From 9adf4621a4960d8a331e1b723971cb326ad2429f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 143/872] python-cram: rebuild for Python 3.8.

---
 srcpkgs/python-cram/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cram/template b/srcpkgs/python-cram/template
index f1fce32149f..8c5d65fe260 100644
--- a/srcpkgs/python-cram/template
+++ b/srcpkgs/python-cram/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cram'
 pkgname=python-cram
 version=0.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="cram-${version}"
 build_style=python-module

From 47ef41a3931be5da08ee8d6fb0ff35b5e1a95d62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 144/872] python3-crcmod: rebuild for Python 3.8.

---
 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 4cd433d2420..9311dedc8ac 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=1
+revision=2
 wrksrc="crcmod-${version}"
 build_style=python3-module
 pycompile_module="crcmod"

From 8b8750f3919e1f23aa6930671f096a365391611a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 145/872] python-cryptography: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography/template b/srcpkgs/python-cryptography/template
index ce3184715dd..39e63d22f7d 100644
--- a/srcpkgs/python-cryptography/template
+++ b/srcpkgs/python-cryptography/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography'
 pkgname=python-cryptography
 version=2.7
-revision=1
+revision=2
 wrksrc="cryptography-${version}"
 build_style=python-module
 pycompile_module="cryptography"

From 676ecf3ea008b8ccabdd3d2798c449a061abb9dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 146/872] python-cryptography_vectors: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography_vectors/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography_vectors/template b/srcpkgs/python-cryptography_vectors/template
index d52e5f5e47c..8fba3a0ce27 100644
--- a/srcpkgs/python-cryptography_vectors/template
+++ b/srcpkgs/python-cryptography_vectors/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography_vectors'
 pkgname=python-cryptography_vectors
 version=2.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="cryptography_vectors-${version}"
 build_style=python-module

From b78a89dedf3b15094ae7febdff460a2cbf547464 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 147/872] python-css-parser: rebuild for Python 3.8.

---
 srcpkgs/python-css-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-css-parser/template b/srcpkgs/python-css-parser/template
index e90b103e4a0..f6d2d0cbf8b 100644
--- a/srcpkgs/python-css-parser/template
+++ b/srcpkgs/python-css-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-css-parser'
 pkgname=python-css-parser
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="css-parser-${version}"
 build_style=python-module

From 036f8b87a68dcb362c7037f58abcffb763571601 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 148/872] python-cssselect: rebuild for Python 3.8.

---
 srcpkgs/python-cssselect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssselect/template b/srcpkgs/python-cssselect/template
index d7dbcebc0ea..c7f43ebca9f 100644
--- a/srcpkgs/python-cssselect/template
+++ b/srcpkgs/python-cssselect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssselect'
 pkgname=python-cssselect
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d4b52974f5f9e8a86060d3dfccc041298c1d666 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 149/872] python-cssutils: rebuild for Python 3.8.

---
 srcpkgs/python-cssutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssutils/template b/srcpkgs/python-cssutils/template
index 648c4754c22..5f08903b9a0 100644
--- a/srcpkgs/python-cssutils/template
+++ b/srcpkgs/python-cssutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssutils'
 pkgname=python-cssutils
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="cssutils-${version}"
 build_style=python-module

From bfb2835290dfefddc0781e2b463d410bf121efa5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 150/872] python-cups: rebuild for Python 3.8.

---
 srcpkgs/python-cups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cups/template b/srcpkgs/python-cups/template
index 2c26e9ef3d0..62c384c9db8 100644
--- a/srcpkgs/python-cups/template
+++ b/srcpkgs/python-cups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cups'
 pkgname=python-cups
 version=1.9.74
-revision=2
+revision=3
 wrksrc="pycups-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 32daac09af71a30483e9985028381670b4ab6245 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 151/872] system-config-printer: rebuild for Python 3.8.

---
 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 e8f8eca46ae..04fe74ff808 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.11
-revision=5
+revision=6
 build_style=gnu-configure
 configure_args="--with-udev-rules"
 make_build_args="udevhelperdir=/usr/lib/udev"

From 582813b2756ce1d1d397113a752b81189680c001 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 152/872] python-curl: rebuild for Python 3.8.

---
 srcpkgs/python-curl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curl/template b/srcpkgs/python-curl/template
index f1f9051d53a..685c63ce68a 100644
--- a/srcpkgs/python-curl/template
+++ b/srcpkgs/python-curl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curl'
 pkgname=python-curl
 version=7.43.0.3
-revision=4
+revision=5
 wrksrc="pycurl-${version}"
 build_style=python-module
 pycompile_module="curl"

From 0eda981910702bfaac2a8af2041fe2c534c13618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 153/872] python-curtsies: rebuild for Python 3.8.

---
 srcpkgs/python-curtsies/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curtsies/template b/srcpkgs/python-curtsies/template
index 158d1c5ce76..6126a11e9b4 100644
--- a/srcpkgs/python-curtsies/template
+++ b/srcpkgs/python-curtsies/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curtsies'
 pkgname=python-curtsies
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="curtsies-${version}"
 build_style=python-module

From 7db16365daaa931d774701441c01b698be457cb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 154/872] python-cycler: rebuild for Python 3.8.

---
 srcpkgs/python-cycler/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cycler/template b/srcpkgs/python-cycler/template
index ee6c985b288..0b53c195dae 100644
--- a/srcpkgs/python-cycler/template
+++ b/srcpkgs/python-cycler/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cycler'
 pkgname=python-cycler
 version=0.10.0
-revision=4
+revision=5
 archs=noarch
 wrksrc="cycler-${version}"
 build_style=python-module

From 2c59e6772ee31b855fe302a27b9b9544cd865e6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 155/872] python-daemonize: rebuild for Python 3.8.

---
 srcpkgs/python-daemonize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-daemonize/template b/srcpkgs/python-daemonize/template
index 699a156b26b..efaf163e573 100644
--- a/srcpkgs/python-daemonize/template
+++ b/srcpkgs/python-daemonize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-daemonize'
 pkgname=python-daemonize
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="daemonize-${version}"
 build_style=python-module

From 84cc63fece0763c8b6920e56e78508551e0fc727 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 156/872] python-dateutil: rebuild for Python 3.8.

---
 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 d9c0f73c883..7675b8f9447 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.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="dateutil"

From 9a19173186ae564f17114f530ac8077484d43c82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 157/872] python-dbus: rebuild for Python 3.8.

---
 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 869c10b2969..3845f6ce34a 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.12
-revision=1
+revision=2
 wrksrc="dbus-python-${version}"
 build_style=gnu-configure
 pycompile_module="dbus"

From 06a9a5b6965485369e669181d99123d7beabf81f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 158/872] python3-dbusmock: rebuild for Python 3.8.

---
 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 67e0ed68078..4abd47843cc 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.18.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-dbusmock-${version}"
 build_style=python3-module

From 694c57d69d63d9f59bef9d31d20a0b16dc73a2a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 159/872] python-decorator: rebuild for Python 3.8.

---
 srcpkgs/python-decorator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-decorator/template b/srcpkgs/python-decorator/template
index 14090c537c9..7f14fef90a6 100644
--- a/srcpkgs/python-decorator/template
+++ b/srcpkgs/python-decorator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-decorator'
 pkgname=python-decorator
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="decorator-${version}"
 build_style=python-module

From 3bd4b100eb970e16e93bbbed8ce2ac91a36e3df5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 160/872] python-defusedxml: rebuild for Python 3.8.

---
 srcpkgs/python-defusedxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-defusedxml/template b/srcpkgs/python-defusedxml/template
index afd62e94414..96234eb18c7 100644
--- a/srcpkgs/python-defusedxml/template
+++ b/srcpkgs/python-defusedxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-defusedxml'
 pkgname=python-defusedxml
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="defusedxml-${version}"
 build_style=python-module

From 442acbe58cd337c55658908f41ec5b6221ca8fcb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 161/872] python3-discid: rebuild for Python 3.8.

---
 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 be5eae1f07f..cc4bc27a1aa 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=1
+revision=2
 archs=noarch
 wrksrc="discid-${version}"
 build_style=python3-module

From 31db2101853fbced7b2655f48906b9054bce07ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 162/872] python-discogs_client: rebuild for Python 3.8.

---
 srcpkgs/python-discogs_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-discogs_client/template b/srcpkgs/python-discogs_client/template
index a27cc50f93c..5af18eda664 100644
--- a/srcpkgs/python-discogs_client/template
+++ b/srcpkgs/python-discogs_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-discogs_client'
 pkgname=python-discogs_client
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="discogs-client-${version}"
 build_style=python-module

From 0aba2b232148b832c27ebd8703c24f42c5018f15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 163/872] python3-distro: rebuild for Python 3.8.

---
 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 86e94572ed7..f1205ace151 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.4.0
-revision=1
+revision=2
 wrksrc=distro-${version}
 build_style=python3-module
 pycompile_module="distro"

From 990a3bd7cef20bd21b781caccd807a7cadf6a0fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 164/872] python-distutils-extra: rebuild for Python 3.8.

---
 srcpkgs/python-distutils-extra/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-distutils-extra/template b/srcpkgs/python-distutils-extra/template
index 9e5728ba08f..46bb0cccc31 100644
--- a/srcpkgs/python-distutils-extra/template
+++ b/srcpkgs/python-distutils-extra/template
@@ -1,7 +1,7 @@
 # Template file for 'python-distutils-extra'
 pkgname=python-distutils-extra
 version=2.39
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 pycompile_module="DistUtilsExtra"

From cc8c6f7c74e5660152cb87b99e7d7b88b5c3d077 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 165/872] python-dkimpy: rebuild for Python 3.8.

---
 srcpkgs/python-dkimpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dkimpy/template b/srcpkgs/python-dkimpy/template
index 4ca5ad386b0..1da26c5de5d 100644
--- a/srcpkgs/python-dkimpy/template
+++ b/srcpkgs/python-dkimpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dkimpy'
 pkgname=python-dkimpy
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="dkimpy-${version}"
 build_style=python-module

From 8560c730ee4396275d04f5b5649fc0b2a1a8819e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 166/872] python-dnspython: rebuild for Python 3.8.

---
 srcpkgs/python-dnspython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dnspython/template b/srcpkgs/python-dnspython/template
index 15d4d7a8a73..66d237e89ee 100644
--- a/srcpkgs/python-dnspython/template
+++ b/srcpkgs/python-dnspython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dnspython'
 pkgname=python-dnspython
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dnspython-${version}"
 build_style=python-module

From c723160d02d838faad8761fcdaa9cfaed2df756f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 167/872] python-docker: rebuild for Python 3.8.

---
 srcpkgs/python-docker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker/template b/srcpkgs/python-docker/template
index b3f8cb2076b..83265bbb606 100644
--- a/srcpkgs/python-docker/template
+++ b/srcpkgs/python-docker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker'
 pkgname=python-docker
 version=3.7.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-${version}"
 build_style=python-module

From 116d9592b10bcde7a5b2f78ed23e0c2e382394da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 168/872] python-docker-pycreds: rebuild for Python 3.8.

---
 srcpkgs/python-docker-pycreds/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker-pycreds/template b/srcpkgs/python-docker-pycreds/template
index c478ded9de6..2224be0d21d 100644
--- a/srcpkgs/python-docker-pycreds/template
+++ b/srcpkgs/python-docker-pycreds/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker-pycreds'
 pkgname=python-docker-pycreds
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-pycreds-${version}"
 build_style=python-module

From 339d2fc160bc67c015b61704b1ade0e15a729050 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 169/872] python-dockerpty: rebuild for Python 3.8.

---
 srcpkgs/python-dockerpty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dockerpty/template b/srcpkgs/python-dockerpty/template
index 78ba5bc3b09..4a0b3a7a33f 100644
--- a/srcpkgs/python-dockerpty/template
+++ b/srcpkgs/python-dockerpty/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dockerpty'
 pkgname=python-dockerpty
 version=0.4.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="dockerpty-${version}"
 build_style=python-module

From 9925e97e6e19313f6899b14640957a47c12c3c6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 170/872] python-docopt: rebuild for Python 3.8.

---
 srcpkgs/python-docopt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docopt/template b/srcpkgs/python-docopt/template
index 4b8661ed2e1..48e5f86c1e0 100644
--- a/srcpkgs/python-docopt/template
+++ b/srcpkgs/python-docopt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docopt'
 pkgname=python-docopt
 version=0.6.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="docopt-${version}"
 build_style=python-module

From b274270fc5a58198a59400d9c8eb825546cf64ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 171/872] python-docutils: rebuild for Python 3.8.

---
 srcpkgs/python-docutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docutils/template b/srcpkgs/python-docutils/template
index 62f080f416a..8fd21a7450b 100644
--- a/srcpkgs/python-docutils/template
+++ b/srcpkgs/python-docutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docutils'
 pkgname=python-docutils
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docutils-${version}"
 build_style=python-module

From 6db8d0a9fb5d7b1cd339f5102d86a29dda19f348 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 172/872] python-dogpile.cache: rebuild for Python 3.8.

---
 srcpkgs/python-dogpile.cache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index f6e106fb4e8..894c6f695bf 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dogpile.cache'
 pkgname=python-dogpile.cache
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dogpile.cache-${version}"
 build_style=python-module

From e603b2f5de239ac8c6e7b8322f560ed5249fe887 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 173/872] python-dominate: rebuild for Python 3.8.

---
 srcpkgs/python-dominate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dominate/template b/srcpkgs/python-dominate/template
index 14ec659bac8..6d6f2caa323 100644
--- a/srcpkgs/python-dominate/template
+++ b/srcpkgs/python-dominate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dominate'
 pkgname=python-dominate
 version=2.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dominate-${version}"
 build_style=python-module

From 2bd7c3e739559614758b25140591fa8bb623a73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 174/872] python-dulwich: rebuild for Python 3.8.

---
 srcpkgs/python-dulwich/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dulwich/template b/srcpkgs/python-dulwich/template
index 0bddda65069..7b8ac45011e 100644
--- a/srcpkgs/python-dulwich/template
+++ b/srcpkgs/python-dulwich/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dulwich'
 pkgname=python-dulwich
 version=0.19.13
-revision=1
+revision=2
 wrksrc="dulwich-${version}"
 build_style=python-module
 pycompile_module="dulwich"

From 9d0b79dad0746da7669be20a38791a7eff4a42dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 175/872] python3-easygui: rebuild for Python 3.8.

---
 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 c1ec4767ae9..a9a2f66d865 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="easygui-${version}"
 build_style=python3-module

From eaa3ee113511523004b2d78a2119becc627b2dcf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 176/872] python-ecdsa: rebuild for Python 3.8.

---
 srcpkgs/python-ecdsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ecdsa/template b/srcpkgs/python-ecdsa/template
index 5e0b217fa73..e6e7d58cd10 100644
--- a/srcpkgs/python-ecdsa/template
+++ b/srcpkgs/python-ecdsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ecdsa'
 pkgname=python-ecdsa
 version=0.13.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 5d7cb5b032b5814415f5b21646b09bceda211fd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 177/872] python-editor: rebuild for Python 3.8.

---
 srcpkgs/python-editor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-editor/template b/srcpkgs/python-editor/template
index 4b86afa6924..3594e407205 100644
--- a/srcpkgs/python-editor/template
+++ b/srcpkgs/python-editor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-editor'
 pkgname=python-editor
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="editor"

From 19c3e09b30ed3cf9c6ffee8cee652d54c672a599 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 178/872] python-efl: rebuild for Python 3.8.

---
 srcpkgs/python-efl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-efl/template b/srcpkgs/python-efl/template
index a49e7d35847..2096f6916da 100644
--- a/srcpkgs/python-efl/template
+++ b/srcpkgs/python-efl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-efl'
 pkgname=python-efl
 version=1.22.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="efl"
 hostmakedepends="pkg-config python-devel python3-devel"

From 82198e93fcca38bb8b5f4f754bcbd6fd7baf59da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 179/872] python3-eliot: rebuild for Python 3.8.

---
 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 15b05dd7331..8453789b688 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="eliot-${version}"
 build_style=python3-module

From bcfe6b0d9db4104d00cb6a16d6012f2258515d59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 180/872] python-empy: rebuild for Python 3.8.

---
 srcpkgs/python-empy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-empy/template b/srcpkgs/python-empy/template
index 97476250cf2..4668a9cc814 100644
--- a/srcpkgs/python-empy/template
+++ b/srcpkgs/python-empy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-empy'
 pkgname=python-empy
 version=3.3.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="empy-${version}"
 build_style=python-module

From 6a91fa7210bd83ced5963d69be69166cd7ad72e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 181/872] python-enchant: rebuild for Python 3.8.

---
 srcpkgs/python-enchant/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enchant/template b/srcpkgs/python-enchant/template
index a443877d821..e499957b47e 100644
--- a/srcpkgs/python-enchant/template
+++ b/srcpkgs/python-enchant/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enchant'
 pkgname=python-enchant
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python-module

From 6ec52886dc67e49d1440bf8d0d1fe8fab07df30a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 182/872] python-entrypoints: rebuild for Python 3.8.

---
 srcpkgs/python-entrypoints/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-entrypoints/template b/srcpkgs/python-entrypoints/template
index ebefb2d04dc..6070650f35d 100644
--- a/srcpkgs/python-entrypoints/template
+++ b/srcpkgs/python-entrypoints/template
@@ -1,7 +1,7 @@
 # Template file for 'python-entrypoints'
 pkgname=python-entrypoints
 version=0.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="entrypoints-${version}"
 build_style=python-module

From 612a78254c1f46db87994e41646495e245a3facf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 183/872] python-envdir: rebuild for Python 3.8.

---
 srcpkgs/python-envdir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-envdir/template b/srcpkgs/python-envdir/template
index 622fcee6b34..b8cccad60ac 100644
--- a/srcpkgs/python-envdir/template
+++ b/srcpkgs/python-envdir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-envdir'
 pkgname=python-envdir
 version=1.0.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 50f8488d9ea7d659590f7d09f42dd5b94e19152c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 184/872] python-enzyme: rebuild for Python 3.8.

---
 srcpkgs/python-enzyme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enzyme/template b/srcpkgs/python-enzyme/template
index 637c858195b..f28f40b0319 100644
--- a/srcpkgs/python-enzyme/template
+++ b/srcpkgs/python-enzyme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enzyme'
 pkgname=python-enzyme
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="enzyme-${version}"
 build_style=python-module

From 0927e611429f29f17290f1e10cf2c0b872d1feb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 185/872] python3-esprima: rebuild for Python 3.8.

---
 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 c3a564123de..aec8930a6bf 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=1
+revision=2
 wrksrc="esprima-${version}"
 build_style=python3-module
 pycompile_module="esprima"

From d10708d4fcebbbc7dccf424ca1a596b43ae8df59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 186/872] python-evdev: rebuild for Python 3.8.

---
 srcpkgs/python-evdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-evdev/template b/srcpkgs/python-evdev/template
index 3c1a5253513..cff10211628 100644
--- a/srcpkgs/python-evdev/template
+++ b/srcpkgs/python-evdev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-evdev'
 pkgname=python-evdev
 version=1.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="evdev"
 hostmakedepends="python-setuptools python3-setuptools"

From d4f74f5bad705da704a6773a834e3939d7700c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 187/872] python-ewmh: rebuild for Python 3.8.

---
 srcpkgs/python-ewmh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ewmh/template b/srcpkgs/python-ewmh/template
index be6d04316b0..a96490fb56d 100644
--- a/srcpkgs/python-ewmh/template
+++ b/srcpkgs/python-ewmh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ewmh'
 pkgname=python-ewmh
 version=0.1.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From afbcc47e23517b6d56ec485dc40f389c1af31701 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 188/872] python-exifread: rebuild for Python 3.8.

---
 srcpkgs/python-exifread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-exifread/template b/srcpkgs/python-exifread/template
index 853f885fff8..834aa7730ee 100644
--- a/srcpkgs/python-exifread/template
+++ b/srcpkgs/python-exifread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-exifread'
 pkgname=python-exifread
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="exif-py-${version}"
 build_style="python-module"

From d05fad06fa4306ef7f685f49a366fcc27e64a40c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 189/872] python-fasteners: rebuild for Python 3.8.

---
 srcpkgs/python-fasteners/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fasteners/template b/srcpkgs/python-fasteners/template
index 34ca4e0e9db..24d2ec0611f 100644
--- a/srcpkgs/python-fasteners/template
+++ b/srcpkgs/python-fasteners/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fasteners'
 pkgname=python-fasteners
 version=0.15
-revision=1
+revision=2
 archs=noarch
 wrksrc="fasteners-${version}"
 build_style=python-module

From 8c663b7a9f12675a94dea8c33eddeededd3c56bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 190/872] python-feedgenerator: rebuild for Python 3.8.

---
 srcpkgs/python-feedgenerator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedgenerator/template b/srcpkgs/python-feedgenerator/template
index 3e5abc4f433..bcffb6728aa 100644
--- a/srcpkgs/python-feedgenerator/template
+++ b/srcpkgs/python-feedgenerator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedgenerator'
 pkgname=python-feedgenerator
 version=1.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="feedgenerator-${version}"
 build_style=python-module

From ab9e5bccaa31f32d93549c21e47bc12c4e5ac181 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 191/872] python-feedparser: rebuild for Python 3.8.

---
 srcpkgs/python-feedparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedparser/template b/srcpkgs/python-feedparser/template
index c5c5e8783eb..94f0a58ec88 100644
--- a/srcpkgs/python-feedparser/template
+++ b/srcpkgs/python-feedparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedparser'
 pkgname=python-feedparser
 version=5.2.1
-revision=5
+revision=6
 archs=noarch
 wrksrc="feedparser-${version}"
 build_style=python-module

From 157719696415e499518e188417324c7d97359d36 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 192/872] python3-fido2: rebuild for Python 3.8.

---
 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 fafb4d61d56..fb737d68d20 100644
--- a/srcpkgs/python3-fido2/template
+++ b/srcpkgs/python3-fido2/template
@@ -2,7 +2,7 @@
 pkgname=python3-fido2
 _pkgname=fido2
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From cbab3fd166f79dc7d2659a802e1953c697f94a95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 193/872] python3-filelock: rebuild for Python 3.8.

---
 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 8e0bc8f1070..9105ff8689d 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.0.12
-revision=1
+revision=2
 wrksrc="filelock-${version}"
 build_style=python3-module
 pycompile_module="filelock.py"

From df9deb02719807bdcb49f7c41040cd8748efd6fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 194/872] python-filetype: rebuild for Python 3.8.

---
 srcpkgs/python-filetype/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-filetype/template b/srcpkgs/python-filetype/template
index 37896cff9d8..10b974794b5 100644
--- a/srcpkgs/python-filetype/template
+++ b/srcpkgs/python-filetype/template
@@ -1,7 +1,7 @@
 # Template file for 'python-filetype'
 pkgname=python-filetype
 version=1.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="filetype-${version}"
 build_style=python-module

From b71ed5528581f9bba57653ff2acb45edf6dcbd81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 195/872] python3-fishnet: rebuild for Python 3.8.

---
 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 9dde60cbb6c..6280ae8e966 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=1
+revision=2
 archs=noarch
 wrksrc="fishnet-${version}"
 build_style=python3-module

From 25bc415f7d96b99e98c97ab0abad6a531786f9e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 196/872] python-flaky: rebuild for Python 3.8.

---
 srcpkgs/python-flaky/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-flaky/template b/srcpkgs/python-flaky/template
index d5211c9cb60..e8e681421f7 100644
--- a/srcpkgs/python-flaky/template
+++ b/srcpkgs/python-flaky/template
@@ -1,7 +1,7 @@
 # Template file for 'python-flaky'
 pkgname=python-flaky
 version=3.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 6dfa18d602ed8d6414a040466c4e0eef4db1d0d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 197/872] python3-flexmock: rebuild for Python 3.8.

---
 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 0663ed5122d..8a7c9a2894d 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.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="flexmock-${version}"
 build_style=python3-module

From 8c90b86b18b06e68260df59166a7228f7af5e5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 198/872] python3-fonttools: rebuild for Python 3.8.

---
 srcpkgs/python3-fonttools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-fonttools/template b/srcpkgs/python3-fonttools/template
index 15cf36585fb..ccd4b66c5d8 100644
--- a/srcpkgs/python3-fonttools/template
+++ b/srcpkgs/python3-fonttools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-fonttools'
 pkgname=python3-fonttools
 version=4.0.2
-revision=1
+revision=2
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 pycompile_module="fonttools"

From 423903ec28541ea1cd89f97400529121dca5e065 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 199/872] python3-frozendict: rebuild for Python 3.8.

---
 srcpkgs/python3-frozendict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-frozendict/template b/srcpkgs/python3-frozendict/template
index d3b4dc91602..739000a887c 100644
--- a/srcpkgs/python3-frozendict/template
+++ b/srcpkgs/python3-frozendict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-frozendict'
 pkgname=python3-frozendict
 version=1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="frozendict-${version}"
 build_style=python3-module

From 0929953d079922e685a9b46372630d69c2c6776d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 200/872] python-fuse: rebuild for Python 3.8.

---
 srcpkgs/python-fuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fuse/template b/srcpkgs/python-fuse/template
index 6449cc36a02..2e99e9866d3 100644
--- a/srcpkgs/python-fuse/template
+++ b/srcpkgs/python-fuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fuse'
 pkgname=python-fuse
 version=0.3.1
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="fuseparts fuse.py"
 hostmakedepends="pkg-config python-setuptools python3-setuptools"

From 505bca67544c8cca26d3f7675eb746bb98abf44e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 201/872] python-future: rebuild for Python 3.8.

---
 srcpkgs/python-future/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-future/template b/srcpkgs/python-future/template
index 1844be2efbc..6cd53908823 100644
--- a/srcpkgs/python-future/template
+++ b/srcpkgs/python-future/template
@@ -1,7 +1,7 @@
 # Template file for 'python-future'
 pkgname=python-future
 version=0.17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="future-${version}"
 build_style=python-module

From 4b595c01c8dcf28a72cf0a96960609ab9788b6ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 202/872] python3-geojson: rebuild for Python 3.8.

---
 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 6bcd0c3092e..90e7d5a0e60 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=1
+revision=2
 archs=noarch
 wrksrc="geojson-${version}"
 build_style=python3-module

From 5e44d64f54a2983f4d5fefba49ef65a6803bd024 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 203/872] python-gevent: rebuild for Python 3.8.

---
 srcpkgs/python-gevent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gevent/template b/srcpkgs/python-gevent/template
index 2bbabee00fc..35c76146d56 100644
--- a/srcpkgs/python-gevent/template
+++ b/srcpkgs/python-gevent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gevent'
 pkgname=python-gevent
 version=1.4.0
-revision=1
+revision=2
 wrksrc="gevent-${version}"
 build_style=python-module
 pycompile_module="gevent"

From 5fed10c6460512a1f1391f079ed47645f9df532e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 204/872] python3-gitchangelog: rebuild for Python 3.8.

---
 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 ed381e07d78..cc1945f2623 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=1
+revision=2
 archs=noarch
 wrksrc="gitchangelog-${version}"
 build_style=python3-module

From b52557ed164619919a05cdf8fae5e77e5b4f53db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 205/872] python-gitdb: rebuild for Python 3.8.

---
 srcpkgs/python-gitdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitdb/template b/srcpkgs/python-gitdb/template
index d9e624b9f53..253ddaa07bd 100644
--- a/srcpkgs/python-gitdb/template
+++ b/srcpkgs/python-gitdb/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitdb'
 pkgname=python-gitdb
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="gitdb2-${version}"
 build_style=python-module

From 53365dcec4eb25138ea4bb248d57c1b2aa7aa311 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 206/872] python-github3: rebuild for Python 3.8.

---
 srcpkgs/python-github3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-github3/template b/srcpkgs/python-github3/template
index 2cb71368f3d..425fe1b7362 100644
--- a/srcpkgs/python-github3/template
+++ b/srcpkgs/python-github3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-github3'
 pkgname=python-github3
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="github3.py-${version}"
 build_style=python-module

From 2b4c90de9a0cbcbb5902a9407f229864bd81a7f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 207/872] python-gitlab: rebuild for Python 3.8.

---
 srcpkgs/python-gitlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitlab/template b/srcpkgs/python-gitlab/template
index 7db583b54c4..0f71b4c7153 100644
--- a/srcpkgs/python-gitlab/template
+++ b/srcpkgs/python-gitlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitlab'
 pkgname=python-gitlab
 version=1.12.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gitlab"

From 51613301779bb891e87daba6b634dca18654d29f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 208/872] python-gmpy2: rebuild for Python 3.8.

---
 srcpkgs/python-gmpy2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gmpy2/template b/srcpkgs/python-gmpy2/template
index c41a9f4595b..74e9b583288 100644
--- a/srcpkgs/python-gmpy2/template
+++ b/srcpkgs/python-gmpy2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gmpy2'
 pkgname=python-gmpy2
 version=2.0.8
-revision=5
+revision=6
 wrksrc="gmpy2-${version}"
 build_style=python-module
 hostmakedepends="unzip python-setuptools python3-setuptools

From a6f4b9ed74b787b741e6297520186bd60de2b46e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 209/872] python-gntp: rebuild for Python 3.8.

---
 srcpkgs/python-gntp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gntp/template b/srcpkgs/python-gntp/template
index 14bd36518f8..7b3bb5a7bb7 100644
--- a/srcpkgs/python-gntp/template
+++ b/srcpkgs/python-gntp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gntp'
 pkgname=python-gntp
 version=1.0.3
-revision=4
+revision=5
 archs=noarch
 wrksrc="gntp-${version}"
 build_style=python-module

From 0730dc20e341ef5247184f85a47f2d1200750698 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 210/872] python-gnupg: rebuild for Python 3.8.

---
 srcpkgs/python-gnupg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gnupg/template b/srcpkgs/python-gnupg/template
index ae6f49c7e27..24c0943d1e4 100644
--- a/srcpkgs/python-gnupg/template
+++ b/srcpkgs/python-gnupg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gnupg'
 pkgname=python-gnupg
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gnupg.py"

From 2c78f38b921da1d4ac2ddf5c200a378cadd75590 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 211/872] python3-gobject: rebuild for Python 3.8.

---
 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 242d33ed3ac..8713ddf5334 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.32.2
-revision=1
+revision=2
 wrksrc="pygobject-${version}"
 build_style=meson
 build_helper="gir"

From 15ed888e45d37128f9852cfc492a14182186f1a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 212/872] python-gogs-client: rebuild for Python 3.8.

---
 srcpkgs/python-gogs-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gogs-client/template b/srcpkgs/python-gogs-client/template
index e8189bc8805..027135d430c 100644
--- a/srcpkgs/python-gogs-client/template
+++ b/srcpkgs/python-gogs-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gogs-client'
 pkgname=python-gogs-client
 version=1.0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="gogs_client-${version}"
 build_style=python-module

From 1ce661eb8f15d8e6d56a3f1e197897c332fa224e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 213/872] python-google-api-python-client: rebuild for Python
 3.8.

---
 srcpkgs/python-google-api-python-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-api-python-client/template b/srcpkgs/python-google-api-python-client/template
index 273cd0722b8..69c2d4e96eb 100644
--- a/srcpkgs/python-google-api-python-client/template
+++ b/srcpkgs/python-google-api-python-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-api-python-client'
 pkgname=python-google-api-python-client
 version=1.7.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From abc55893b0e34778f73646713ec111220a9cafbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 214/872] python-google-auth: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth/template b/srcpkgs/python-google-auth/template
index 708fe08325a..1de6800e3d2 100644
--- a/srcpkgs/python-google-auth/template
+++ b/srcpkgs/python-google-auth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth'
 pkgname=python-google-auth
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 345385c7c36d4b9e58aad80d36b1cd93575ecd95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 215/872] python-google-auth-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth-httplib2/template b/srcpkgs/python-google-auth-httplib2/template
index 9a7fd093ce5..9e43bc92292 100644
--- a/srcpkgs/python-google-auth-httplib2/template
+++ b/srcpkgs/python-google-auth-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth-httplib2'
 pkgname=python-google-auth-httplib2
 version=0.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 659bb740f4ecc98b01dc400608f6b524416a0b86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 216/872] python-gpg: rebuild for Python 3.8.

---
 srcpkgs/python-gpg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gpg/template b/srcpkgs/python-gpg/template
index 4ef85846b42..a17a0324af8 100644
--- a/srcpkgs/python-gpg/template
+++ b/srcpkgs/python-gpg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gpg'
 pkgname=python-gpg
 version=1.10.0
-revision=3
+revision=4
 wrksrc="gpg-${version}"
 build_style=python-module
 hostmakedepends="swig gpgme-devel python-devel python3-devel"

From 873dc5b9b60d819c83e9d76fd366d7e22b1e3bc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 217/872] python-grako: rebuild for Python 3.8.

---
 srcpkgs/python-grako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-grako/template b/srcpkgs/python-grako/template
index cc02973b31e..2b401732735 100644
--- a/srcpkgs/python-grako/template
+++ b/srcpkgs/python-grako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-grako'
 pkgname=python-grako
 version=3.99.9
-revision=3
+revision=4
 wrksrc="neogeny-${pkgname/python-/}-275d3c4fe4ac"
 build_style=python-module
 pycompile_module="grako"

From d47059d2656db0b58c65856428cabac0432d40b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 218/872] python-graphviz: rebuild for Python 3.8.

---
 srcpkgs/python-graphviz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-graphviz/template b/srcpkgs/python-graphviz/template
index 521f2e81213..e3d487a2db7 100644
--- a/srcpkgs/python-graphviz/template
+++ b/srcpkgs/python-graphviz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-graphviz'
 pkgname=python-graphviz
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 604137947acf2b7cd302f3f32e778c96a0f521f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 219/872] python-greenlet: rebuild for Python 3.8.

---
 srcpkgs/python-greenlet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-greenlet/template b/srcpkgs/python-greenlet/template
index d1e63ac7adb..b540e9a286b 100644
--- a/srcpkgs/python-greenlet/template
+++ b/srcpkgs/python-greenlet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-greenlet'
 pkgname=python-greenlet
 version=0.4.15
-revision=2
+revision=3
 wrksrc="greenlet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From c75b3ed338515fef098deb3e5b0d7a6afb7e4027 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 220/872] python-guessit: rebuild for Python 3.8.

---
 srcpkgs/python-guessit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-guessit/template b/srcpkgs/python-guessit/template
index 5029048a041..a962f14522f 100644
--- a/srcpkgs/python-guessit/template
+++ b/srcpkgs/python-guessit/template
@@ -1,7 +1,7 @@
 # Template file for 'python-guessit'
 pkgname=python-guessit
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="guessit-${version}"
 build_style=python-module

From be7acc08bc4f5ffb222fcebc23a391553273ece1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 221/872] python-h11: rebuild for Python 3.8.

---
 srcpkgs/python-h11/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-h11/template b/srcpkgs/python-h11/template
index 88040dfadec..b2e007533a7 100644
--- a/srcpkgs/python-h11/template
+++ b/srcpkgs/python-h11/template
@@ -1,7 +1,7 @@
 # Template file for 'python-h11'
 pkgname=python-h11
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=h11-${version}
 build_style=python-module

From bdf55bd416f8bc2ed44be6c4c54d162c18a8ea97 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 222/872] python-habanero: rebuild for Python 3.8.

---
 srcpkgs/python-habanero/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-habanero/template b/srcpkgs/python-habanero/template
index 86d66befc3d..a914f21ecb7 100644
--- a/srcpkgs/python-habanero/template
+++ b/srcpkgs/python-habanero/template
@@ -1,7 +1,7 @@
 # Template file for 'python-habanero'
 pkgname=python-habanero
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="habanero-${version}"
 build_style=python-module

From 9c07301e6c8b8cbc8282f2c49eee7ea5572650fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 223/872] python3-hawkauthlib: rebuild for Python 3.8.

---
 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 fd7f1405790..1456fa7d814 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=2
+revision=3
 archs=noarch
 wrksrc="hawkauthlib-${version}"
 build_style=python3-module

From 66941ef99dc3f45dea432a38889d9aedcbc58e8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 224/872] python-hiredis: rebuild for Python 3.8.

---
 srcpkgs/python-hiredis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hiredis/template b/srcpkgs/python-hiredis/template
index 23694ae92d7..82a97d5eaf3 100644
--- a/srcpkgs/python-hiredis/template
+++ b/srcpkgs/python-hiredis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hiredis'
 pkgname=python-hiredis
 version=0.2.0
-revision=4
+revision=5
 wrksrc="hiredis-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 335237d6c8ffbf9d850fddc0047cb4ea28057efd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 225/872] python3-hkdf: rebuild for Python 3.8.

---
 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 fabc91ee974..0faaf05b5fe 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=1
+revision=2
 archs=noarch
 wrksrc="hkdf-${version}"
 build_style=python3-module

From fa28e1e2a5b4f298ee9762f0f595a5b1b16db0c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 226/872] python-hoedown: rebuild for Python 3.8.

---
 srcpkgs/python-hoedown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hoedown/template b/srcpkgs/python-hoedown/template
index a964fbbb709..4b82aba9afc 100644
--- a/srcpkgs/python-hoedown/template
+++ b/srcpkgs/python-hoedown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hoedown'
 pkgname=python-hoedown
 version=0.3.0
-revision=2
+revision=3
 wrksrc="hoedown-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 1b9ab7e23ce8f84563cdaac18cbe35d6b5b377eb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 227/872] python-hpack: rebuild for Python 3.8.

---
 srcpkgs/python-hpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hpack/template b/srcpkgs/python-hpack/template
index c69e91daa0e..ffbac313103 100644
--- a/srcpkgs/python-hpack/template
+++ b/srcpkgs/python-hpack/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hpack'
 pkgname=python-hpack
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hpack-${version}
 build_style=python-module

From b6095882129bc28d1a3eec0f996353011126ed10 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 228/872] python3-html2text: rebuild for Python 3.8.

---
 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 006f2a127ad..c74e236a053 100644
--- a/srcpkgs/python3-html2text/template
+++ b/srcpkgs/python3-html2text/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-html2text'
 pkgname=python3-html2text
 version=2019.9.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module

From 78741dc5f018f23c93acabc2cdd16c97d5e08012 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 229/872] python-html5-parser: rebuild for Python 3.8.

---
 srcpkgs/python-html5-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5-parser/template b/srcpkgs/python-html5-parser/template
index 130c5037e57..41bbd0ea157 100644
--- a/srcpkgs/python-html5-parser/template
+++ b/srcpkgs/python-html5-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5-parser'
 pkgname=python-html5-parser
 version=0.4.8
-revision=1
+revision=2
 wrksrc="html5-parser-${version}"
 build_style=python-module
 pycompile_module="html5_parser"

From f69efbb44a9aa15f6b7468ff70a20786ec1a04d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 230/872] python-html5lib: rebuild for Python 3.8.

---
 srcpkgs/python-html5lib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5lib/template b/srcpkgs/python-html5lib/template
index 81e683f7bcf..2565de64fd2 100644
--- a/srcpkgs/python-html5lib/template
+++ b/srcpkgs/python-html5lib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5lib'
 pkgname=python-html5lib
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="html5lib-${version}"
 build_style=python-module

From 6bd979521876c876eea2022ebe023cdbb30777c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 231/872] python-httmock: rebuild for Python 3.8.

---
 srcpkgs/python-httmock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httmock/template b/srcpkgs/python-httmock/template
index 61a60126936..e798b4fc1b3 100644
--- a/srcpkgs/python-httmock/template
+++ b/srcpkgs/python-httmock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httmock'
 pkgname=python-httmock
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="httmock-${version}"
 build_style=python-module

From 7f5b2e5c5738ca5824c255406195ff59f30f2c80 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 232/872] python-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httplib2/template b/srcpkgs/python-httplib2/template
index edcb6abf0c1..fe76a729328 100644
--- a/srcpkgs/python-httplib2/template
+++ b/srcpkgs/python-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httplib2'
 pkgname=python-httplib2
 version=0.13.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="httplib2-${version}"
 build_style=python-module

From 9bd4d3d3c99054f61ceb650933dcd9c5740d5ff0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 233/872] python3-humanize: rebuild for Python 3.8.

---
 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 c82c20fb0f2..d1011fb92e9 100644
--- a/srcpkgs/python3-humanize/template
+++ b/srcpkgs/python3-humanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-humanize'
 pkgname=python3-humanize
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="humanize-${version}"
 build_style=python3-module

From ead6f9504cd4015bc13944d58d676ef457b0fb34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 234/872] python-hyper-h2: rebuild for Python 3.8.

---
 srcpkgs/python-hyper-h2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyper-h2/template b/srcpkgs/python-hyper-h2/template
index 5dcf7ed1c4d..9e5eee3b69b 100644
--- a/srcpkgs/python-hyper-h2/template
+++ b/srcpkgs/python-hyper-h2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyper-h2'
 pkgname=python-hyper-h2
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyper-h2-${version}"
 build_style=python-module

From 8ac54f95c067c3f715c23a58d7f2b6d0683988cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 235/872] python-hyperframe: rebuild for Python 3.8.

---
 srcpkgs/python-hyperframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyperframe/template b/srcpkgs/python-hyperframe/template
index e4cea346f7e..6b544c2061c 100644
--- a/srcpkgs/python-hyperframe/template
+++ b/srcpkgs/python-hyperframe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperframe'
 pkgname=python-hyperframe
 version=5.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hyperframe-${version}
 build_style=python-module

From cb929edb0d026e58d2d6c7e6f9baeee9fedf523e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 236/872] python-hyperlink: rebuild for Python 3.8.

---
 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 1cc7aa0670a..945bf72ee59 100644
--- a/srcpkgs/python-hyperlink/template
+++ b/srcpkgs/python-hyperlink/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperlink'
 pkgname=python-hyperlink
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyperlink-${version}"
 build_style=python-module

From da7a9015ccf93b07d390988b03b1403702cfa14a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 237/872] python-hypothesis: rebuild for Python 3.8.

---
 srcpkgs/python-hypothesis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hypothesis/template b/srcpkgs/python-hypothesis/template
index f3eb931e410..de55593fc02 100644
--- a/srcpkgs/python-hypothesis/template
+++ b/srcpkgs/python-hypothesis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hypothesis'
 pkgname=python-hypothesis
 version=4.38.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="hypothesis-hypothesis-python-${version}"
 build_wrksrc=hypothesis-python

From f091030376534d6a6f7c625b82a8405350e7cdcd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 238/872] python-icalendar: rebuild for Python 3.8.

---
 srcpkgs/python-icalendar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-icalendar/template b/srcpkgs/python-icalendar/template
index b2129648ea6..be45f2d608d 100644
--- a/srcpkgs/python-icalendar/template
+++ b/srcpkgs/python-icalendar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-icalendar'
 pkgname=python-icalendar
 version=4.0.3
-revision=1
+revision=2
 wrksrc="icalendar-${version}"
 archs=noarch
 build_style=python-module

From 474626af886f96ef30849e5aca015775f7edfb8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 239/872] icdiff: rebuild for Python 3.8.

---
 srcpkgs/icdiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template
index 31cfc3e2354..396448b86f4 100644
--- a/srcpkgs/icdiff/template
+++ b/srcpkgs/icdiff/template
@@ -1,7 +1,7 @@
 # Template file for 'icdiff'
 pkgname=icdiff
 version=1.9.5
-revision=1
+revision=2
 wrksrc="${pkgname}-release-${version}"
 archs=noarch
 build_style=python-module

From 21e5ba4fadd590c9e0dd7afde206429c99c46c56 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 240/872] python-idna: rebuild for Python 3.8.

---
 srcpkgs/python-idna/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-idna/template b/srcpkgs/python-idna/template
index 4c6baefd41b..446a04da7d7 100644
--- a/srcpkgs/python-idna/template
+++ b/srcpkgs/python-idna/template
@@ -1,7 +1,7 @@
 # Template file for 'python-idna'
 pkgname=python-idna
 version=2.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-${version}"
 build_style=python-module

From a012eff0de75e8caab0be24964731b749fe6ad8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 241/872] python3-idna-ssl: rebuild for Python 3.8.

---
 srcpkgs/python3-idna-ssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-idna-ssl/template b/srcpkgs/python3-idna-ssl/template
index df953f4d0d9..0608fb7278c 100644
--- a/srcpkgs/python3-idna-ssl/template
+++ b/srcpkgs/python3-idna-ssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-idna-ssl'
 pkgname=python3-idna-ssl
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-ssl-${version}"
 build_style=python3-module

From ac112b7dfc3aadb93225736a4504f7965af29838 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 242/872] python3-ifaddr: rebuild for Python 3.8.

---
 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 37bc2bbaf73..683d76662a3 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ifaddr-${version}"
 build_style=python3-module

From 32d0218ef7a7a721759e4c421d70255f49b3cfd0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 243/872] python-imagesize: rebuild for Python 3.8.

---
 srcpkgs/python-imagesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-imagesize/template b/srcpkgs/python-imagesize/template
index ee231eb9f24..f64c86812b5 100644
--- a/srcpkgs/python-imagesize/template
+++ b/srcpkgs/python-imagesize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-imagesize'
 pkgname=python-imagesize
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="imagesize-${version}"
 build_style=python-module

From f0bf351c50949a7348409d8c132926c401dabf43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 244/872] python3-importlib_metadata: rebuild for Python 3.8.

---
 srcpkgs/python3-importlib_metadata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-importlib_metadata/template b/srcpkgs/python3-importlib_metadata/template
index 9acbe968e10..f88e9d9b780 100644
--- a/srcpkgs/python3-importlib_metadata/template
+++ b/srcpkgs/python3-importlib_metadata/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-importlib_metadata'
 pkgname=python3-importlib_metadata
 version=0.23
-revision=1
+revision=2
 archs=noarch
 wrksrc="importlib_metadata-${version}"
 build_style=python3-module

From 73cc1c05e8e0ccf9063a33dd203d70df2ab135ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 245/872] python-incremental: rebuild for Python 3.8.

---
 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 a1c07042365..70477e26866 100644
--- a/srcpkgs/python-incremental/template
+++ b/srcpkgs/python-incremental/template
@@ -1,7 +1,7 @@
 # Template file for 'python-incremental'
 pkgname=python-incremental
 version=17.5.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="incremental-${version}"
 build_style=python-module

From 82a10b837fff5c5ce2f37ede93dad161025a109c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 246/872] python-inotify: rebuild for Python 3.8.

---
 srcpkgs/python-inotify/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-inotify/template b/srcpkgs/python-inotify/template
index f8e26bcc415..64e48fd9330 100644
--- a/srcpkgs/python-inotify/template
+++ b/srcpkgs/python-inotify/template
@@ -1,7 +1,7 @@
 # Template file for 'python-inotify'
 pkgname=python-inotify
 version=0.9.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="pyinotify-${version}"
 build_style=python-module

From 70f558982c4846e9de5243694f048c7014c7089a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 247/872] python-iptools: rebuild for Python 3.8.

---
 srcpkgs/python-iptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iptools/template b/srcpkgs/python-iptools/template
index 599a85ccdba..3c53013fb9d 100644
--- a/srcpkgs/python-iptools/template
+++ b/srcpkgs/python-iptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iptools'
 pkgname=python-iptools
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9962727fd608ce59af5a55c73c8b4c3d0c17fe71 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 248/872] python3-ipython: rebuild for Python 3.8.

---
 srcpkgs/python3-ipython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template
index 63242f382db..2c08bad1e41 100644
--- a/srcpkgs/python3-ipython/template
+++ b/srcpkgs/python3-ipython/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-ipython'
 pkgname=python3-ipython
 version=7.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipython-${version}"
 build_style=python3-module

From ecafa2b5530001ac56b03e639dff4ae00027d1ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 249/872] python-ipython_genutils: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_genutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_genutils/template b/srcpkgs/python-ipython_genutils/template
index 9af9604ca00..d46a3b0b716 100644
--- a/srcpkgs/python-ipython_genutils/template
+++ b/srcpkgs/python-ipython_genutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_genutils'
 pkgname=python-ipython_genutils
 version=0.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="ipython_genutils-${version}"
 build_style=python-module

From 1349d0a55b00bc5b30629934ad23ae1ed8839d98 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 250/872] python-ipython_ipykernel: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_ipykernel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_ipykernel/template b/srcpkgs/python-ipython_ipykernel/template
index 5ddc333798a..ca17b58c006 100644
--- a/srcpkgs/python-ipython_ipykernel/template
+++ b/srcpkgs/python-ipython_ipykernel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_ipykernel'
 pkgname=python-ipython_ipykernel
 version=4.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipykernel-${version}"
 build_style=python-module

From 1b146320a422b57ba1db41491ccff040d9ee719d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 251/872] python3-irc: rebuild for Python 3.8.

---
 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 eea3a629128..714c11dc943 100644
--- a/srcpkgs/python3-irc/template
+++ b/srcpkgs/python3-irc/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-irc'
 pkgname=python3-irc
 version=17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="irc-${version}"
 build_style=python3-module

From e04c4f250fda964ab555eb6b636f701d995009e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 252/872] python-isbnlib: rebuild for Python 3.8.

---
 srcpkgs/python-isbnlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isbnlib/template b/srcpkgs/python-isbnlib/template
index 3e2f66c6b66..1cc46a060d6 100644
--- a/srcpkgs/python-isbnlib/template
+++ b/srcpkgs/python-isbnlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isbnlib'
 pkgname=python-isbnlib
 version=3.9.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="isbnlib-${version}"
 build_style=python-module

From 2debe6131c52d94acd065961f9ea9ae22176a34c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 253/872] python-iso-8601: rebuild for Python 3.8.

---
 srcpkgs/python-iso-8601/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iso-8601/template b/srcpkgs/python-iso-8601/template
index a483e55b0bd..a841866d439 100644
--- a/srcpkgs/python-iso-8601/template
+++ b/srcpkgs/python-iso-8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iso-8601'
 pkgname=python-iso-8601
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="iso-8601-${version}"
 build_style=python-module

From 8b4be7b5324ac1347d55cc4f4e9eaa552465beec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 254/872] python-isodate: rebuild for Python 3.8.

---
 srcpkgs/python-isodate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isodate/template b/srcpkgs/python-isodate/template
index b2a7eb46591..74e4e813e64 100644
--- a/srcpkgs/python-isodate/template
+++ b/srcpkgs/python-isodate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isodate'
 pkgname=python-isodate
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="isodate-${version}"
 build_style=python-module

From a9c9e144908d37411616dd357e9fdc7575aaa8c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 255/872] python-isort: rebuild for Python 3.8.

---
 srcpkgs/python-isort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isort/template b/srcpkgs/python-isort/template
index df7fcfbf2d2..cd8e43b69ea 100644
--- a/srcpkgs/python-isort/template
+++ b/srcpkgs/python-isort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isort'
 pkgname=python-isort
 version=4.3.21
-revision=1
+revision=2
 archs=noarch
 wrksrc="isort-${version}"
 build_style=python-module

From a81f38d5db390cc4ae2c6be89747bebd3f1f15dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 256/872] python-itsdangerous: rebuild for Python 3.8.

---
 srcpkgs/python-itsdangerous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-itsdangerous/template b/srcpkgs/python-itsdangerous/template
index d1d9234df88..6e6fe5dcb2b 100644
--- a/srcpkgs/python-itsdangerous/template
+++ b/srcpkgs/python-itsdangerous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-itsdangerous'
 pkgname=python-itsdangerous
 version=0.24
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 2d842da30a2a65a2405487fdd5929ca2a0555251 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 257/872] python-iwlib: rebuild for Python 3.8.

---
 srcpkgs/python-iwlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iwlib/template b/srcpkgs/python-iwlib/template
index 2c58d4c8d29..2f4149b4e92 100644
--- a/srcpkgs/python-iwlib/template
+++ b/srcpkgs/python-iwlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iwlib'
 pkgname=python-iwlib
 version=1.6.2
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="iwlib"

From c09cc84b06cf4332a02b0a826494a74c81409175 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 258/872] python-jedi: rebuild for Python 3.8.

---
 srcpkgs/python-jedi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jedi/template b/srcpkgs/python-jedi/template
index 136e6adbea4..a994f0e2861 100644
--- a/srcpkgs/python-jedi/template
+++ b/srcpkgs/python-jedi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jedi'
 pkgname=python-jedi
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 _parsover=0.5.0
 wrksrc="jedi-${version}"

From 235b9031c126ebf53355a5ef0c337423c0df1d95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 259/872] python3-jeepney: rebuild for Python 3.8.

---
 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 2ae308a6fc6..9c5c007aa17 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.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="jeepney-${version}"
 build_style=python3-module

From 4868c0871bc763937dd6b8573e91ee86064e0595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 260/872] python3-jellyfish: rebuild for Python 3.8.

---
 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 dec74539e3f..5d0a614c397 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.7.2
-revision=1
+revision=2
 wrksrc="jellyfish-${version}"
 build_style=python3-module
 pycompile_module="jellyfish"

From a9c225f19782a27d8e5e28a508ea0acc39991390 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 261/872] python-jmespath: rebuild for Python 3.8.

---
 srcpkgs/python-jmespath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jmespath/template b/srcpkgs/python-jmespath/template
index 47508a3a0c2..220f1a33c07 100644
--- a/srcpkgs/python-jmespath/template
+++ b/srcpkgs/python-jmespath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jmespath'
 pkgname=python-jmespath
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jmespath.py-${version}"
 build_style=python-module

From 30e8e2e1619bdf45652db8c6ecdd0e0a4fc90d8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 262/872] python3-josepy: rebuild for Python 3.8.

---
 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 6d6e4547d38..903bd7028ed 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="josepy-${version}"
 build_style=python3-module

From c06d36cf857257f3cf63a7e677498487d37168d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 263/872] python-jsonpointer: rebuild for Python 3.8.

---
 srcpkgs/python-jsonpointer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonpointer/template b/srcpkgs/python-jsonpointer/template
index ed865fbfcba..fd103d123aa 100644
--- a/srcpkgs/python-jsonpointer/template
+++ b/srcpkgs/python-jsonpointer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonpointer'
 pkgname=python-jsonpointer
 version=2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonpointer-${version}"
 build_style=python-module

From be483d0bbf53a22e23a3c2db3d77dc61bff17915 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 264/872] python-jsonrpclib: rebuild for Python 3.8.

---
 srcpkgs/python-jsonrpclib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonrpclib/template b/srcpkgs/python-jsonrpclib/template
index 7253607fe57..a245168a824 100644
--- a/srcpkgs/python-jsonrpclib/template
+++ b/srcpkgs/python-jsonrpclib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonrpclib'
 pkgname=python-jsonrpclib
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonrpclib-pelix-${version}"
 build_style=python-module

From 15ad75adf989474229acc1fdac0c5d5887528bd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 265/872] python-jsonschema: rebuild for Python 3.8.

---
 srcpkgs/python-jsonschema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonschema/template b/srcpkgs/python-jsonschema/template
index 63c30ce6863..326b5609d36 100644
--- a/srcpkgs/python-jsonschema/template
+++ b/srcpkgs/python-jsonschema/template
@@ -2,7 +2,7 @@
 pkgname=python-jsonschema
 reverts="3.0.2_1"
 version=2.6.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="jsonschema-${version}"
 build_style=python-module

From 8bf3797435c040a1682d5e3e4c6c41f650d82b34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 266/872] python-jupyter_client: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_client/template b/srcpkgs/python-jupyter_client/template
index ab5cd0c5b3c..6365dd9e175 100644
--- a/srcpkgs/python-jupyter_client/template
+++ b/srcpkgs/python-jupyter_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_client'
 pkgname=python-jupyter_client
 version=5.2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_client-${version}"
 build_style=python-module

From e732ed651c399cb8d7e96a618444e815bf86ce4b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 267/872] python3-jupyter_console: rebuild for Python 3.8.

---
 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 25b2eda4c2f..3837e5b3bbf 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_console-${version}"
 build_style=python3-module

From b264bc5200c6942b1507777e0bc169838cb6a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 268/872] python-jupyter_core: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_core/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_core/template b/srcpkgs/python-jupyter_core/template
index fcce4e0fe0b..f1629208e86 100644
--- a/srcpkgs/python-jupyter_core/template
+++ b/srcpkgs/python-jupyter_core/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_core'
 pkgname=python-jupyter_core
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_core-${version}"
 build_style=python-module

From 54845c515258535f8793ff37241d0daad10fcddc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 269/872] python-jupyter_ipywidgets: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_ipywidgets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_ipywidgets/template b/srcpkgs/python-jupyter_ipywidgets/template
index 3d511a25152..44570cf390a 100644
--- a/srcpkgs/python-jupyter_ipywidgets/template
+++ b/srcpkgs/python-jupyter_ipywidgets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_ipywidgets'
 pkgname=python-jupyter_ipywidgets
 version=7.4.2
-revision=1
+revision=2
 archs=noarch
 _widgetsnbextver=3.4.0
 wrksrc="ipywidgets-${version}"

From da9dc8f246174d7b5fed1a61f1b4bb127c2bc9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 270/872] python-jupyter_nbconvert: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbconvert/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbconvert/template b/srcpkgs/python-jupyter_nbconvert/template
index 57ac5cce23f..e6cdad7d21c 100644
--- a/srcpkgs/python-jupyter_nbconvert/template
+++ b/srcpkgs/python-jupyter_nbconvert/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbconvert'
 pkgname=python-jupyter_nbconvert
 version=5.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="nbconvert-${version}"
 build_style=python-module

From 8e126f65404eaa5a5b69bca1aa41b4be58abe4b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 271/872] python-jupyter_nbformat: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbformat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbformat/template b/srcpkgs/python-jupyter_nbformat/template
index 11098fd3f90..e2addc8866f 100644
--- a/srcpkgs/python-jupyter_nbformat/template
+++ b/srcpkgs/python-jupyter_nbformat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbformat'
 pkgname=python-jupyter_nbformat
 version=4.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="nbformat-${version}"
 build_style=python-module

From 3d7a11f09a2f159b9e42c935154654a47117f3a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 272/872] python-jupyter_notebook: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_notebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_notebook/template b/srcpkgs/python-jupyter_notebook/template
index c3f478c1fb4..4f6de0f642d 100644
--- a/srcpkgs/python-jupyter_notebook/template
+++ b/srcpkgs/python-jupyter_notebook/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_notebook'
 pkgname=python-jupyter_notebook
 version=5.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="notebook-${version}"
 build_style=python-module

From eab8a5bd67b168048f40a3d2fe199e073715a1b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 273/872] python-jupyter_qtconsole: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_qtconsole/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_qtconsole/template b/srcpkgs/python-jupyter_qtconsole/template
index f8f85534bbd..ea7f89a62af 100644
--- a/srcpkgs/python-jupyter_qtconsole/template
+++ b/srcpkgs/python-jupyter_qtconsole/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_qtconsole'
 pkgname=python-jupyter_qtconsole
 version=4.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="qtconsole-${version}"
 build_style=python-module

From 96c7c1f6f484f9a33a17b0213142b8a97a7c69e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 274/872] python-jupyter_widgetsnbextension: rebuild for Python
 3.8.

---
 srcpkgs/python-jupyter_widgetsnbextension/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_widgetsnbextension/template b/srcpkgs/python-jupyter_widgetsnbextension/template
index dacd88ccb4f..05e9c0d00a3 100644
--- a/srcpkgs/python-jupyter_widgetsnbextension/template
+++ b/srcpkgs/python-jupyter_widgetsnbextension/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_widgetsnbextension'
 pkgname=python-jupyter_widgetsnbextension
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="widgetsnbextension-${version}"
 build_style=python-module

From 6175c117f039e76b8fff45d549f50360a92742b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 275/872] python-kaptan: rebuild for Python 3.8.

---
 srcpkgs/python-kaptan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kaptan/template b/srcpkgs/python-kaptan/template
index 649eeec8568..6668b240008 100644
--- a/srcpkgs/python-kaptan/template
+++ b/srcpkgs/python-kaptan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kaptan'
 pkgname=python-kaptan
 version=0.5.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="kaptan-${version}"
 build_style=python-module

From 6668dcf37c32ef8390c8f45e6cd206d8478b963b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 276/872] python-keepalive: rebuild for Python 3.8.

---
 srcpkgs/python-keepalive/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keepalive/template b/srcpkgs/python-keepalive/template
index deb95a07236..50e1d7e6e78 100644
--- a/srcpkgs/python-keepalive/template
+++ b/srcpkgs/python-keepalive/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keepalive'
 pkgname=python-keepalive
 version=0.5
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9e9d4a781427bc1296f59529a4d83b4a1271c5e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 277/872] python-keyring: rebuild for Python 3.8.

---
 srcpkgs/python-keyring/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyring/template b/srcpkgs/python-keyring/template
index df1c21ee1be..2a87160b04d 100644
--- a/srcpkgs/python-keyring/template
+++ b/srcpkgs/python-keyring/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyring'
 pkgname=python-keyring
 version=18.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyring-${version}"
 build_style=python-module

From 8fea0f10f3e8aebfe92a9d090368b1cda777a405 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 278/872] python3-keyrings-alt: rebuild for Python 3.8.

---
 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 d5820535e54..ed09cfac4a7 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=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyrings.alt-${version}"
 build_style=python3-module

From 271539dc3ed1e21733c374ff971770403194a1d1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 279/872] python-keyutils: rebuild for Python 3.8.

---
 srcpkgs/python-keyutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyutils/template b/srcpkgs/python-keyutils/template
index d56ada0e30e..a72819e963a 100644
--- a/srcpkgs/python-keyutils/template
+++ b/srcpkgs/python-keyutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyutils'
 pkgname=python-keyutils
 version=0.6
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="keyutils"
 hostmakedepends="python-setuptools python3-setuptools"

From 0556a11defcdebd2c4319e286451ce3f45f87ebd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 280/872] python-kitchen: rebuild for Python 3.8.

---
 srcpkgs/python-kitchen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kitchen/template b/srcpkgs/python-kitchen/template
index 2bbd68c13c9..68a46986de9 100644
--- a/srcpkgs/python-kitchen/template
+++ b/srcpkgs/python-kitchen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kitchen'
 pkgname=python-kitchen
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="kitchen-${version}"
 build_style=python-module

From fe5070b00515733fcafbeebc62a10ba2029b40db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 281/872] python-kiwisolver: rebuild for Python 3.8.

---
 srcpkgs/python-kiwisolver/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kiwisolver/template b/srcpkgs/python-kiwisolver/template
index 072bd5af038..67f0805aa51 100644
--- a/srcpkgs/python-kiwisolver/template
+++ b/srcpkgs/python-kiwisolver/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kiwisolver'
 pkgname=python-kiwisolver
 version=1.0.1
-revision=2
+revision=3
 wrksrc="kiwisolver-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From d1c550f6959162ec91e7bb39c54ecdd1d5b7c0ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 282/872] python-lazy-object-proxy: rebuild for Python 3.8.

---
 srcpkgs/python-lazy-object-proxy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lazy-object-proxy/template b/srcpkgs/python-lazy-object-proxy/template
index 07efb7b4777..ab2c6dce05c 100644
--- a/srcpkgs/python-lazy-object-proxy/template
+++ b/srcpkgs/python-lazy-object-proxy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lazy-object-proxy'
 pkgname=python-lazy-object-proxy
 version=1.3.1
-revision=3
+revision=4
 wrksrc="lazy-object-proxy-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e5c9a0cf8e6e0714fba4433b9deb1aaf40d43ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 283/872] python-ldap: rebuild for Python 3.8.

---
 srcpkgs/python-ldap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap/template b/srcpkgs/python-ldap/template
index 7770baa8774..e3efc2fc6b3 100644
--- a/srcpkgs/python-ldap/template
+++ b/srcpkgs/python-ldap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap'
 pkgname=python-ldap
 version=3.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="ldap ldapurl.py ldif.py slapdtest"
 hostmakedepends="python-setuptools python3-setuptools"

From dca16bc247cccf1bc7020afca5594d857514100a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 284/872] python-ldap3: rebuild for Python 3.8.

---
 srcpkgs/python-ldap3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap3/template b/srcpkgs/python-ldap3/template
index 676251a85ff..e8e4cade72b 100644
--- a/srcpkgs/python-ldap3/template
+++ b/srcpkgs/python-ldap3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap3'
 pkgname=python-ldap3
 version=2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ldap3-${version}"
 build_style=python-module

From 8f3e1b0bf64fb527d029fec15229e079f326c373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 285/872] python3-libevdev: rebuild for Python 3.8.

---
 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 0a79893726c..f0295cdee9b 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.8
-revision=1
+revision=2
 _githash=1827bebcf789adee8492cbfcc7cf8d56059a42a4
 wrksrc="python-libevdev-${version}-${_githash}"
 build_style=python3-module

From a5b674c4366c36182e29f21b8071faff59006106 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 286/872] libsmbios: rebuild for Python 3.8.

---
 srcpkgs/libsmbios/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsmbios/template b/srcpkgs/libsmbios/template
index 31d8ffda65f..161cb79deb9 100644
--- a/srcpkgs/libsmbios/template
+++ b/srcpkgs/libsmbios/template
@@ -1,7 +1,7 @@
 # Template file for 'libsmbios'
 pkgname=libsmbios
 version=2.4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--sbindir=/usr/bin --disable-static"
 hostmakedepends="automake doxygen gettext-devel help2man libtool pkg-config"

From 7762c8392d1a03ae7a320bdec0b5402b7147d0b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 287/872] python-libtmux: rebuild for Python 3.8.

---
 srcpkgs/python-libtmux/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-libtmux/template b/srcpkgs/python-libtmux/template
index 36fa7ca7ffd..20f43af5f7d 100644
--- a/srcpkgs/python-libtmux/template
+++ b/srcpkgs/python-libtmux/template
@@ -1,7 +1,7 @@
 # Template file for 'python-libtmux'
 pkgname=python-libtmux
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="libtmux-${version}"
 build_style=python-module

From 16a2a1b8ba0ad9f9032d52092294e8a39041bba2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 288/872] python-llfuse: rebuild for Python 3.8.

---
 srcpkgs/python-llfuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-llfuse/template b/srcpkgs/python-llfuse/template
index 203c5e2fd84..b453c67e91d 100644
--- a/srcpkgs/python-llfuse/template
+++ b/srcpkgs/python-llfuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-llfuse'
 pkgname=python-llfuse
 version=1.3.6
-revision=1
+revision=2
 wrksrc="llfuse-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pkg-config"

From ae7f34ffc994fc4606c9209683fae6625f3e781e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 289/872] python-lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lockfile/template b/srcpkgs/python-lockfile/template
index 4c4612ed144..778cecba7e9 100644
--- a/srcpkgs/python-lockfile/template
+++ b/srcpkgs/python-lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lockfile'
 pkgname=python-lockfile
 version=0.12.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="lockfile-${version}"
 build_style=python-module

From 5fd2f78e26b399ed936b12f51886dae3a8d35cb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 290/872] python-logfury: rebuild for Python 3.8.

---
 srcpkgs/python-logfury/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-logfury/template b/srcpkgs/python-logfury/template
index 4b1c435e34a..1b52d2d7fdf 100644
--- a/srcpkgs/python-logfury/template
+++ b/srcpkgs/python-logfury/template
@@ -1,7 +1,7 @@
 # Template file for 'python-logfury'
 pkgname=python-logfury
 version=0.1.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="logfury-${version}"
 build_style=python-module

From 747dc28bedc27e7b5c8738113573012f545333a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 291/872] python-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lxml/template b/srcpkgs/python-lxml/template
index c3aeabfbf1b..1a6a3ac9113 100644
--- a/srcpkgs/python-lxml/template
+++ b/srcpkgs/python-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lxml'
 pkgname=python-lxml
 version=4.4.1
-revision=1
+revision=2
 wrksrc="lxml-lxml-${version}"
 build_style=python-module
 pycompile_module="lxml"

From ebc274c0463316f63fe99e5df0c704e3d324c885 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 292/872] python-lz4: rebuild for Python 3.8.

---
 srcpkgs/python-lz4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lz4/template b/srcpkgs/python-lz4/template
index dab8e8ed542..76a2e800e38 100644
--- a/srcpkgs/python-lz4/template
+++ b/srcpkgs/python-lz4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lz4'
 pkgname=python-lz4
 version=2.1.6
-revision=2
+revision=3
 wrksrc="lz4-${version}"
 build_style=python-module
 pycompile_module="lz4"

From 8eb3f4d6193b25ae716fa2fdfae1f929deb65a91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 293/872] python3-macaroons: rebuild for Python 3.8.

---
 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 d44100c20f2..420f5aff043 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=1
+revision=2
 archs=noarch
 wrksrc="pymacaroons-${version}"
 build_style=python3-module

From 437e300b76670db404728daad9f6224630daaa3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 294/872] python3-macholib: rebuild for Python 3.8.

---
 srcpkgs/python3-macholib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-macholib/template b/srcpkgs/python3-macholib/template
index a2738f57eb0..525b5f7106b 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.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="macholib-${version}"
 build_style=python3-module

From b08f229d26f5b2c915caabe213234afc1e4002e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 295/872] python-magic: rebuild for Python 3.8.

---
 srcpkgs/python-magic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-magic/template b/srcpkgs/python-magic/template
index 98e3c0802ab..5a59efa4808 100644
--- a/srcpkgs/python-magic/template
+++ b/srcpkgs/python-magic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-magic'
 pkgname=python-magic
 version=0.4.15
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="magic.py"

From c597fee1945d8f994f591622074acf3670a81484 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 296/872] python-marisa-trie: rebuild for Python 3.8.

---
 srcpkgs/python-marisa-trie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-marisa-trie/template b/srcpkgs/python-marisa-trie/template
index bb09c933335..5e46b686ace 100644
--- a/srcpkgs/python-marisa-trie/template
+++ b/srcpkgs/python-marisa-trie/template
@@ -1,7 +1,7 @@
 # Template file for 'python-marisa-trie'
 pkgname=python-marisa-trie
 version=0.7.5
-revision=2
+revision=3
 wrksrc="marisa-trie-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 5366314fc7ba3b340ccf5b4658edff33f5ec148a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 297/872] python-markdown2: rebuild for Python 3.8.

---
 srcpkgs/python-markdown2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-markdown2/template b/srcpkgs/python-markdown2/template
index 2d352ba029d..e9068f64202 100644
--- a/srcpkgs/python-markdown2/template
+++ b/srcpkgs/python-markdown2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-markdown2'
 pkgname=python-markdown2
 version=2.3.8
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="markdown2"

From b56d284bcbb50ddece287bde845145e6481e4d39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 298/872] python3-matplotlib: rebuild for Python 3.8.

---
 srcpkgs/python3-matplotlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template
index 857ba17cacf..be02817a4d3 100644
--- a/srcpkgs/python3-matplotlib/template
+++ b/srcpkgs/python3-matplotlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-matplotlib'
 pkgname=python3-matplotlib
 version=3.1.1
-revision=1
+revision=2
 wrksrc="matplotlib-${version}"
 build_style=python3-module
 pycompile_module="matplotlib mpl_toolkits pylab.py"

From 8b3780e8f6f50712735239defc569952763e8894 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 299/872] python-mccabe: rebuild for Python 3.8.

---
 srcpkgs/python-mccabe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mccabe/template b/srcpkgs/python-mccabe/template
index b6a01929540..1e2ed6328b8 100644
--- a/srcpkgs/python-mccabe/template
+++ b/srcpkgs/python-mccabe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mccabe'
 pkgname=python-mccabe
 version=0.6.1
-revision=2
+revision=3
 archs=noarch
 replaces="mccabe>=0"
 wrksrc="mccabe-${version}"

From 954d38992e9a83e3214b79375b895ee1072db4e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 300/872] python-mechanize: rebuild for Python 3.8.

---
 srcpkgs/python-mechanize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mechanize/template b/srcpkgs/python-mechanize/template
index c5b2b5789a7..ca29bbd0d23 100644
--- a/srcpkgs/python-mechanize/template
+++ b/srcpkgs/python-mechanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mechanize'
 pkgname=python-mechanize
 version=0.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="mechanize-${version}"
 build_style=python-module

From e8762f4af80ad5b1cb6a41af3183141ec903485f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 301/872] python3-minidb: rebuild for Python 3.8.

---
 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 50490794600..140964b7a8a 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.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="minidb-${version}"
 build_style=python3-module

From 93febdb59f89cf4939f3684acd832f879fc774d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 302/872] python-miniupnpc: rebuild for Python 3.8.

---
 srcpkgs/python-miniupnpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-miniupnpc/template b/srcpkgs/python-miniupnpc/template
index 500c217c78e..f7892bab073 100644
--- a/srcpkgs/python-miniupnpc/template
+++ b/srcpkgs/python-miniupnpc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-miniupnpc'
 pkgname=python-miniupnpc
 version=2.0.2
-revision=2
+revision=3
 wrksrc="${pkgname#python-}-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ab280bf26207a66e5e3f418768bf3358cc2c76ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 303/872] python-mistune: rebuild for Python 3.8.

---
 srcpkgs/python-mistune/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mistune/template b/srcpkgs/python-mistune/template
index 0ee8dfde5b1..ef5c054ba75 100644
--- a/srcpkgs/python-mistune/template
+++ b/srcpkgs/python-mistune/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mistune'
 pkgname=python-mistune
 version=0.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="mistune-${version}"
 build_style=python-module

From 05abf67487f6ac161862195dfb2069fade248fbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 304/872] python3-more-itertools: rebuild for Python 3.8.

---
 srcpkgs/python3-more-itertools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-more-itertools/template b/srcpkgs/python3-more-itertools/template
index b089992f84e..a765da98495 100644
--- a/srcpkgs/python3-more-itertools/template
+++ b/srcpkgs/python3-more-itertools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-more-itertools'
 pkgname=python3-more-itertools
 version=7.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python3-module

From efcbd7f439e04ca5dc43be057047c93f1051b5cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 305/872] python-mpd2: rebuild for Python 3.8.

---
 srcpkgs/python-mpd2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template
index 682d9a85f5e..0389f8c2a28 100644
--- a/srcpkgs/python-mpd2/template
+++ b/srcpkgs/python-mpd2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpd2'
 pkgname=python-mpd2
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mpd"

From 507a89e7a29ba5dd81f66830577542bb3a098780 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 306/872] python3-mpi4py: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-mpi4py/template | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/python3-mpi4py/template b/srcpkgs/python3-mpi4py/template
index 94a83b688f2..8f9e76867cc 100644
--- a/srcpkgs/python3-mpi4py/template
+++ b/srcpkgs/python3-mpi4py/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpi4py'
 pkgname=python3-mpi4py
 version=3.0.2
-revision=1
+revision=2
 wrksrc="mpi4py-${version}"
 build_style=python3-module
 pycompile_module="mpi4py"
@@ -15,6 +15,12 @@ homepage="https://bitbucket.org/mpi4py/mpi4py"
 distfiles="$PYPI_SITE/m/mpi4py/mpi4py-${version}.tar.gz"
 checksum=f8d629d1e3e3b7b89cb99d0e3bc5505e76cc42089829807950d5c56606ed48e0
 
+post_extract() {
+	# recythonize
+	rm src/mpi4py/include/mpi4py/mpi4py.MPI.h \
+		src/mpi4py/include/mpi4py/mpi4py.MPI_api.h \
+		src/mpi4py.MPI.c
+}
 post_install() {
 	vlicense LICENSE.rst
 }

From d71d04b6dbfad4ce9460041fe001aab7c4cab301 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 307/872] python-mpmath: rebuild for Python 3.8.

---
 srcpkgs/python-mpmath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpmath/template b/srcpkgs/python-mpmath/template
index b0a38c01514..8fd4873dd62 100644
--- a/srcpkgs/python-mpmath/template
+++ b/srcpkgs/python-mpmath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpmath'
 pkgname=python-mpmath
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="mpmath-${version}"
 build_style=python-module

From f050643cc3d8a1927b2b43a4d6bc3a47fce265d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 308/872] python3-mpv: rebuild for Python 3.8.

---
 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 2780c02610b..1910a4d231d 100644
--- a/srcpkgs/python3-mpv/template
+++ b/srcpkgs/python3-mpv/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpv'
 pkgname=python3-mpv
 version=0.3.9
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-mpv-${version}"
 build_style=python3-module

From 076ab982ba68fae19b6a637c3190d501b6f11afb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 309/872] python-msgpack: rebuild for Python 3.8.

---
 srcpkgs/python-msgpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-msgpack/template b/srcpkgs/python-msgpack/template
index 395d854d638..59571d6a208 100644
--- a/srcpkgs/python-msgpack/template
+++ b/srcpkgs/python-msgpack/template
@@ -2,7 +2,7 @@
 pkgname=python-msgpack
 reverts="0.6.0_1"
 version=0.5.6
-revision=3
+revision=4
 wrksrc="msgpack-${version}"
 build_style=python-module
 pycompile_module="msgpack"

From c0b498d4aabae1c0cc1564a796b43c28045b08f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 310/872] python3-msoffcrypto-tool: rebuild for Python 3.8.

---
 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 5996d3bf355..d1b369fc773 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=4.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="msoffcrypto-tool-${version}"
 build_style=python3-module

From a02ae9dc7e657d6823c09d222a46aaaad0b52e6e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 311/872] python-mtranslate: rebuild for Python 3.8.

---
 srcpkgs/python-mtranslate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mtranslate/template b/srcpkgs/python-mtranslate/template
index d56fa18f0f0..992c7b76fe9 100644
--- a/srcpkgs/python-mtranslate/template
+++ b/srcpkgs/python-mtranslate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mtranslate'
 pkgname=python-mtranslate
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="mtranslate-${version}"
 build_style=python-module

From 1db5126bddf0129431159c083c0e8c7feeda0e24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 312/872] python3-multidict: rebuild for Python 3.8.

---
 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 82888db842f..62054db71f1 100644
--- a/srcpkgs/python3-multidict/template
+++ b/srcpkgs/python3-multidict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-multidict'
 pkgname=python3-multidict
 version=4.5.2
-revision=2
+revision=3
 wrksrc="multidict-${version}"
 build_style=python3-module
 pycompile_module="multidict"

From db397601599182d62444486443fe7887f1bf0869 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 313/872] python3-munkres: rebuild for Python 3.8.

---
 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 15767afe3fe..d0d0a013e80 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python3-module

From f6bec8102ac4a1433f716928258d680f0546e9f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 314/872] python-musicbrainzngs: rebuild for Python 3.8.

---
 srcpkgs/python-musicbrainzngs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-musicbrainzngs/template b/srcpkgs/python-musicbrainzngs/template
index 588c25f7cd8..3d738f0c3c0 100644
--- a/srcpkgs/python-musicbrainzngs/template
+++ b/srcpkgs/python-musicbrainzngs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-musicbrainzngs'
 pkgname=python-musicbrainzngs
 version=0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="musicbrainzngs-${version}"
 build_style="python-module"

From 59d602d19ea627b5ddd3ac33170326df511f1b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 315/872] python3-musicpd: rebuild for Python 3.8.

---
 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 3328b2f4bbf..8c6ba2fb451 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=1
+revision=2
 archs=noarch
 wrksrc="python-musicpd-${version}"
 build_style=python3-module

From e4271deae6b4b0258165475e34a0174f837576d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 316/872] mutagen: rebuild for Python 3.8.

---
 srcpkgs/mutagen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mutagen/template b/srcpkgs/mutagen/template
index cbf05ea8583..8b24cc82dc8 100644
--- a/srcpkgs/mutagen/template
+++ b/srcpkgs/mutagen/template
@@ -1,7 +1,7 @@
 # Template file for 'mutagen'
 pkgname=mutagen
 version=1.42.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mutagen"

From c726c7e86676ccc5612045570a6821438d6541cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 317/872] python-mygpoclient: rebuild for Python 3.8.

---
 srcpkgs/python-mygpoclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mygpoclient/template b/srcpkgs/python-mygpoclient/template
index 3f85c72cc0c..ffad63a70a1 100644
--- a/srcpkgs/python-mygpoclient/template
+++ b/srcpkgs/python-mygpoclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mygpoclient'
 pkgname=python-mygpoclient
 version=1.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="mygpoclient-${version}"
 build_style=python-module

From 1d17c7a2672083ac8c194b767f1be1d8778d6f42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 318/872] python3-mypy: rebuild for Python 3.8.

---
 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 37ecd732c06..564c0a4d47c 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.730
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy-${version}"
 build_style=python3-module

From d44ba12caf9958f6f6d708b0e5061d3ca01990e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 319/872] python3-mypy_extensions: rebuild for Python 3.8.

---
 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 2761924248e..25de48ea141 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy_extensions-${version}"
 build_style=python3-module

From 8c03f1eb83b224187a7b0fb11b5c780c96875438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 320/872] python-mysqlclient: rebuild for Python 3.8.

---
 srcpkgs/python-mysqlclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mysqlclient/template b/srcpkgs/python-mysqlclient/template
index 43fed28d4f0..079666a6dab 100644
--- a/srcpkgs/python-mysqlclient/template
+++ b/srcpkgs/python-mysqlclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mysqlclient'
 pkgname=python-mysqlclient
 version=1.3.14
-revision=2
+revision=3
 wrksrc="mysqlclient-${version}"
 build_style=python-module
 pycompile_module="MySQLdb _mysql_exceptions.py"

From 8b80cedc0b4331f2c1827c959c67be32d904a6b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 321/872] python3-nacl: rebuild for Python 3.8.

---
 srcpkgs/python3-nacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-nacl/template b/srcpkgs/python3-nacl/template
index 5dd6a71ad6a..b59ea0196ac 100644
--- a/srcpkgs/python3-nacl/template
+++ b/srcpkgs/python3-nacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-nacl'
 pkgname=python3-nacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python3-module
 pycompile_module="nacl"

From 4b93d8f922559d3f9f9693969307cdb0dedd22c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 322/872] python-namedlist: rebuild for Python 3.8.

---
 srcpkgs/python-namedlist/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-namedlist/template b/srcpkgs/python-namedlist/template
index 4c6e6f1f3d5..75626b9f6d5 100644
--- a/srcpkgs/python-namedlist/template
+++ b/srcpkgs/python-namedlist/template
@@ -1,7 +1,7 @@
 # Template file for 'python-namedlist'
 pkgname=python-namedlist
 version=1.7
-revision=5
+revision=6
 archs=noarch
 wrksrc="namedlist-${version}"
 build_style=python-module

From 643225c4205051b03e6b58dd88dd0fe79a960880 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 323/872] python-natsort: rebuild for Python 3.8.

---
 srcpkgs/python-natsort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-natsort/template b/srcpkgs/python-natsort/template
index 754ac50c419..7101e297aad 100644
--- a/srcpkgs/python-natsort/template
+++ b/srcpkgs/python-natsort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-natsort'
 pkgname=python-natsort
 version=6.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="natsort-${version}"
 build_style=python-module

From 1b4401089b676f8d76d5cbdf86f7cff95a90063f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 324/872] python-nbxmpp: rebuild for Python 3.8.

---
 srcpkgs/python-nbxmpp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nbxmpp/template b/srcpkgs/python-nbxmpp/template
index 4952ee1e102..8c39a93bca7 100644
--- a/srcpkgs/python-nbxmpp/template
+++ b/srcpkgs/python-nbxmpp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nbxmpp'
 pkgname=python-nbxmpp
 version=0.6.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 1ee192bdc19afbca9bbbc456945aaed8e882dc3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 325/872] python-ndg_httpsclient: rebuild for Python 3.8.

---
 srcpkgs/python-ndg_httpsclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ndg_httpsclient/template b/srcpkgs/python-ndg_httpsclient/template
index 908d7137391..54b653f68a9 100644
--- a/srcpkgs/python-ndg_httpsclient/template
+++ b/srcpkgs/python-ndg_httpsclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ndg_httpsclient'
 pkgname=python-ndg_httpsclient
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ndg_httpsclient-${version}"
 build_style=python-module

From 37b5c7920c617c4f55d5abe58df690c621598a93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 326/872] python3-neovim: rebuild for Python 3.8.

---
 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 44068f17b66..2730cd1b92b 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.3.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="pynvim-${version}"
 build_style="python3-module"

From 8136ec791e98badf101712f4f44830a6721d4849 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 327/872] python-netaddr: rebuild for Python 3.8.

---
 srcpkgs/python-netaddr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netaddr/template b/srcpkgs/python-netaddr/template
index 851095a3c7c..20cc1c93134 100644
--- a/srcpkgs/python-netaddr/template
+++ b/srcpkgs/python-netaddr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netaddr'
 pkgname=python-netaddr
 version=0.7.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="netaddr-${version}"
 build_style=python-module

From ebe247f557b410a62febae438785f8f011964023 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 328/872] python-netifaces: rebuild for Python 3.8.

---
 srcpkgs/python-netifaces/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netifaces/template b/srcpkgs/python-netifaces/template
index b8d6e505879..760f657aaba 100644
--- a/srcpkgs/python-netifaces/template
+++ b/srcpkgs/python-netifaces/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netifaces'
 pkgname=python-netifaces
 version=0.10.9
-revision=1
+revision=2
 wrksrc="netifaces-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 07d0e05094764c4ef127de2a4d489537d8ab5708 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 329/872] python3-networkx: rebuild for Python 3.8.

---
 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 eae29038d94..84acd3e929c 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.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="networkx-${version}"
 build_style=python3-module

From 8a3aeb59a75fbf1b7f0394b94c325ef8827b6b5d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 330/872] python-nose: rebuild for Python 3.8.

---
 srcpkgs/python-nose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose/template b/srcpkgs/python-nose/template
index c9fbe9d28d3..f2cd7fe5c3f 100644
--- a/srcpkgs/python-nose/template
+++ b/srcpkgs/python-nose/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose'
 pkgname=python-nose
 version=1.3.7
-revision=3
+revision=4
 archs=noarch
 wrksrc="nose-${version}"
 build_style=python-module

From f86abdbaaaa9e7e8236c4d39cd7e46a733425805 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 331/872] python-nose2: rebuild for Python 3.8.

---
 srcpkgs/python-nose2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose2/template b/srcpkgs/python-nose2/template
index a9ddf5969a1..058abbd4253 100644
--- a/srcpkgs/python-nose2/template
+++ b/srcpkgs/python-nose2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose2'
 pkgname=python-nose2
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 18b92c10ef3291636c1e7e28d721c5e994bf6302 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 332/872] python-npyscreen: rebuild for Python 3.8.

---
 srcpkgs/python-npyscreen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-npyscreen/template b/srcpkgs/python-npyscreen/template
index 0457fa1aaed..2223850f22e 100644
--- a/srcpkgs/python-npyscreen/template
+++ b/srcpkgs/python-npyscreen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-npyscreen'
 pkgname=python-npyscreen
 version=4.10.5.1
-revision=1
+revision=2
 wrksrc="npyscreen-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 9ea98fac2c37960db9a7b76cea2be115e8a2bed7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 333/872] python-ntplib: rebuild for Python 3.8.

---
 srcpkgs/python-ntplib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ntplib/template b/srcpkgs/python-ntplib/template
index 81bac24971e..0582fb326c1 100644
--- a/srcpkgs/python-ntplib/template
+++ b/srcpkgs/python-ntplib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ntplib'
 pkgname=python-ntplib
 version=0.3.3
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 wrksrc="ntplib-${version}"

From 42e7c3606ad17794721afef48ff01de438abbfde Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 334/872] python-numexpr: rebuild for Python 3.8.

---
 srcpkgs/python-numexpr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numexpr/template b/srcpkgs/python-numexpr/template
index 1db40092411..baf91175a33 100644
--- a/srcpkgs/python-numexpr/template
+++ b/srcpkgs/python-numexpr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numexpr'
 pkgname=python-numexpr
 version=2.7.0
-revision=1
+revision=2
 wrksrc="numexpr-${version}"
 build_style=python-module
 pycompile_module="numexpr"

From 30d9e4a8b4a096dfdf5ebfa58ffcadefb1dc1208 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 335/872] python3-numpy: rebuild for Python 3.8.

---
 srcpkgs/python3-numpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-numpy/template b/srcpkgs/python3-numpy/template
index c4c1936cc0d..f5e8ce2cc32 100644
--- a/srcpkgs/python3-numpy/template
+++ b/srcpkgs/python3-numpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-numpy'
 pkgname=python3-numpy
 version=1.17.2
-revision=1
+revision=2
 wrksrc="numpy-${version}"
 build_style=python3-module
 pycompile_module="numpy"

From 0172497dfdbc4c61b890a5cb33fdf7a4c4f8d99a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 336/872] python-numpy-stl: rebuild for Python 3.8.

---
 srcpkgs/python-numpy-stl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numpy-stl/template b/srcpkgs/python-numpy-stl/template
index 3eed838e4f6..cce1a8ead1f 100644
--- a/srcpkgs/python-numpy-stl/template
+++ b/srcpkgs/python-numpy-stl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numpy-stl'
 pkgname=python-numpy-stl
 version=2.10.1
-revision=1
+revision=2
 wrksrc="numpy-stl-v${version}"
 build_style=python-module
 pycompile_module="stl"

From f24b29a48d74aeaddb7b697a5daffdddbd861096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 337/872] python-oauth2client: rebuild for Python 3.8.

---
 srcpkgs/python-oauth2client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauth2client/template b/srcpkgs/python-oauth2client/template
index fd135e4e98f..2398adba276 100644
--- a/srcpkgs/python-oauth2client/template
+++ b/srcpkgs/python-oauth2client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauth2client'
 pkgname=python-oauth2client
 version=4.1.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 4c0ff2a063a36adf86c97b9d4c835ca20b5edfc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 338/872] python-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauthlib/template b/srcpkgs/python-oauthlib/template
index 5bbaa7df29b..036f1b31c92 100644
--- a/srcpkgs/python-oauthlib/template
+++ b/srcpkgs/python-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauthlib'
 pkgname=python-oauthlib
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 661bc27cfe08965221daa2747362d72e4fc27178 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 339/872] python-olefile: rebuild for Python 3.8.

---
 srcpkgs/python-olefile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-olefile/template b/srcpkgs/python-olefile/template
index 4346cfcf667..803d7b67cd8 100644
--- a/srcpkgs/python-olefile/template
+++ b/srcpkgs/python-olefile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-olefile'
 pkgname=python-olefile
 version=0.46
-revision=1
+revision=2
 archs=noarch
 wrksrc="olefile-${version}"
 build_style=python-module

From 81ad48cc99baa98fff2bb93d2c9ddbfe5bd36422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 340/872] python3-oletools: rebuild for Python 3.8.

---
 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 af9a91ff273..a4fda46427b 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.54.2b
-revision=1
+revision=2
 archs=noarch
 wrksrc="oletools-${version}"
 build_style=python3-module

From 0ae1454dacdb40d36d6c46872241d8b7f943ac15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 341/872] openrazer-meta: rebuild for Python 3.8.

---
 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 d4bd24878b2..112cb9e900b 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=1
+revision=2
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 827b1a86d790e29df3f5448f95b7d7583439ebc7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 342/872] python-openssl: rebuild for Python 3.8.

---
 srcpkgs/python-openssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-openssl/template b/srcpkgs/python-openssl/template
index 94bccaa166f..8aabda074fa 100644
--- a/srcpkgs/python-openssl/template
+++ b/srcpkgs/python-openssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-openssl'
 pkgname=python-openssl
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyOpenSSL-${version}"
 build_style=python-module

From 0b35d1d0b8e9ec0f17cb71edb12538b78cf15fa9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 343/872] python3-orocos-kdl: rebuild for Python 3.8.

---
 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 df3e27d5e7b..85b573b2fa4 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=1
+revision=2
 wrksrc=orocos_kinematics_dynamics-${version}
 build_wrksrc=python_orocos_kdl
 build_style=cmake

From 1f599cbc677804bd62252474063a3f44bab1963f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 344/872] python3-owm: rebuild for Python 3.8.

---
 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 d51e01831e6..acdb960ab45 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=1
+revision=2
 wrksrc="pyowm-${version}"
 build_style=python3-module
 pycompile_module="pyowm"

From 04d5ca1141107a7e08a15eccec26eae0cef6ddfc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 345/872] python-packaging: rebuild for Python 3.8.

---
 srcpkgs/python-packaging/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-packaging/template b/srcpkgs/python-packaging/template
index 505631bb29c..06042d12b90 100644
--- a/srcpkgs/python-packaging/template
+++ b/srcpkgs/python-packaging/template
@@ -1,7 +1,7 @@
 # Template file for 'python-packaging'
 pkgname=python-packaging
 version=19.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="packaging-${version}"
 build_style=python-module

From 3d4f635d1909bcc10be550a6ba92c93bab657d24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 346/872] python-pam: rebuild for Python 3.8.

---
 srcpkgs/python-pam/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pam/template b/srcpkgs/python-pam/template
index e696a05ae7f..28c22cfd6ea 100644
--- a/srcpkgs/python-pam/template
+++ b/srcpkgs/python-pam/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pam'
 pkgname=python-pam
 version=1.8.4
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="pam.py"

From 7906adb846a053b93372b360401c778862703de5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 347/872] python3-pandas: rebuild for Python 3.8.

---
 srcpkgs/python3-pandas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pandas/template b/srcpkgs/python3-pandas/template
index ad282b4d5d4..10f9d5a77d9 100644
--- a/srcpkgs/python3-pandas/template
+++ b/srcpkgs/python3-pandas/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pandas'
 pkgname=python3-pandas
 version=0.25.1
-revision=1
+revision=2
 wrksrc="pandas-${version}"
 build_style=python3-module
 pycompile_module="pandas"

From 5f63764964faf4b0d244098f5f64ba1225e14c5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 348/872] python-pandocfilters: rebuild for Python 3.8.

---
 srcpkgs/python-pandocfilters/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pandocfilters/template b/srcpkgs/python-pandocfilters/template
index a7a3d442052..8650d20256f 100644
--- a/srcpkgs/python-pandocfilters/template
+++ b/srcpkgs/python-pandocfilters/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pandocfilters'
 pkgname=python-pandocfilters
 version=1.4.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="pandocfilters-${version}"
 build_style=python-module

From cedefda1104de9c58b20c6b7e1d8a0f4d5385b24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 349/872] python-paramiko: rebuild for Python 3.8.

---
 srcpkgs/python-paramiko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-paramiko/template b/srcpkgs/python-paramiko/template
index c512ceb951f..d6f75508a03 100644
--- a/srcpkgs/python-paramiko/template
+++ b/srcpkgs/python-paramiko/template
@@ -1,7 +1,7 @@
 # Template file for 'python-paramiko'
 pkgname=python-paramiko
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 6c5cdbb0603a5742137ad2399e1f282d7135ecbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 350/872] python-parse: rebuild for Python 3.8.

---
 srcpkgs/python-parse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parse/template b/srcpkgs/python-parse/template
index 298d0b65e78..ded581b4420 100644
--- a/srcpkgs/python-parse/template
+++ b/srcpkgs/python-parse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parse'
 pkgname=python-parse
 version=1.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="parse-${version}"
 build_style=python-module

From 06c32d13c6ecc8f5c59fd3d28c856cddb7e55b69 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 351/872] python3-parsedatetime: rebuild for Python 3.8.

---
 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 d3ac21d7d34..34e9ba0f416 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="parsedatetime-${version}"
 build_style=python3-module

From 149092afd6b238ec9977aa2ba8d8f244d5357e67 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 352/872] python-parsing: rebuild for Python 3.8.

---
 srcpkgs/python-parsing/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parsing/template b/srcpkgs/python-parsing/template
index 0cc744eaf79..bd6cf2c2238 100644
--- a/srcpkgs/python-parsing/template
+++ b/srcpkgs/python-parsing/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parsing'
 pkgname=python-parsing
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyparsing-pyparsing_${version}"
 build_style=python-module

From c302574bea31ba81d3f2e4d6c1b8b8212592985d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 353/872] python-parso: rebuild for Python 3.8.

---
 srcpkgs/python-parso/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parso/template b/srcpkgs/python-parso/template
index 20e5fe306c0..1959b42622a 100644
--- a/srcpkgs/python-parso/template
+++ b/srcpkgs/python-parso/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parso'
 pkgname=python-parso
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="parso-${version}"
 build_style=python-module

From 6b9c95f942435b16d67021b0ce8f182c24bb943f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 354/872] python-passlib: rebuild for Python 3.8.

---
 srcpkgs/python-passlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-passlib/template b/srcpkgs/python-passlib/template
index 3af12ce7b1b..f46a3e92642 100644
--- a/srcpkgs/python-passlib/template
+++ b/srcpkgs/python-passlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-passlib'
 pkgname=python-passlib
 version=1.7.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="passlib-${version}"
 build_style=python-module

From 49600da0619f7152e3ea828c366d9a4680ebac40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 355/872] python-pathlib2: rebuild for Python 3.8.

---
 srcpkgs/python-pathlib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathlib2/template b/srcpkgs/python-pathlib2/template
index bb7bec778f5..fa600b78fbe 100644
--- a/srcpkgs/python-pathlib2/template
+++ b/srcpkgs/python-pathlib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathlib2'
 pkgname=python-pathlib2
 version=2.3.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pathlib2-${version}"
 build_style=python-module

From a0a108aec87134d5b6d2e03e731f48739e1226c0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 356/872] python-pathspec: rebuild for Python 3.8.

---
 srcpkgs/python-pathspec/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathspec/template b/srcpkgs/python-pathspec/template
index 7c5fe04097a..2fa8fa1a811 100644
--- a/srcpkgs/python-pathspec/template
+++ b/srcpkgs/python-pathspec/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathspec'
 pkgname=python-pathspec
 version=0.5.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathspec-${version}"
 build_style=python-module

From c66de315dc6f359ddb581056e8ef350e92acb135 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 357/872] python-pathtools: rebuild for Python 3.8.

---
 srcpkgs/python-pathtools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathtools/template b/srcpkgs/python-pathtools/template
index 218e6ed2f57..47dc6ef6a71 100644
--- a/srcpkgs/python-pathtools/template
+++ b/srcpkgs/python-pathtools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathtools'
 pkgname=python-pathtools
 version=0.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathtools-${version}"
 build_style=python-module

From d3d8ba877ce3e383a472c68a51b4eb6138da7d25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 358/872] python-pbkdf2: rebuild for Python 3.8.

---
 srcpkgs/python-pbkdf2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pbkdf2/template b/srcpkgs/python-pbkdf2/template
index edc50f824c2..956d0b4cad9 100644
--- a/srcpkgs/python-pbkdf2/template
+++ b/srcpkgs/python-pbkdf2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pbkdf2'
 pkgname=python-pbkdf2
 version=1.3
-revision=3
+revision=4
 archs=noarch
 wrksrc="pbkdf2-${version}"
 build_style=python-module

From 92b150f4aee95d71074c2bc7e253e089372033b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 359/872] python-pbr: rebuild for Python 3.8.

---
 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 7ab0b39539f..9c7216056fe 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.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pbr-${version}"
 build_style=python-module

From a5f7f198ba9557855d1662cf7b3d806286d735b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 360/872] python3-pcodedmp: rebuild for Python 3.8.

---
 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 efe8cc83ee7..eb52c809fae 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=1
+revision=2
 archs=noarch
 wrksrc="pcodedmp-${version}"
 build_style=python3-module

From c6f7d3cab5a62a3302eedc82e3ce1b5af007e967 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 361/872] python-pdfrw: rebuild for Python 3.8.

---
 srcpkgs/python-pdfrw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pdfrw/template b/srcpkgs/python-pdfrw/template
index ddb43b928fc..ef7db98e491 100644
--- a/srcpkgs/python-pdfrw/template
+++ b/srcpkgs/python-pdfrw/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pdfrw'
 pkgname=python-pdfrw
 version=0.4
-revision=2
+revision=3
 archs=noarch
 replaces="python-pdfrw-example<${version}_${revision}"
 wrksrc="${pkgname/python-//}-${version}"

From 8f02a9d6b13212de51e3921f641914d153244a1d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 362/872] python-peewee: rebuild for Python 3.8.

---
 srcpkgs/python-peewee/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-peewee/template b/srcpkgs/python-peewee/template
index 9b07ed413b9..de0068a330e 100644
--- a/srcpkgs/python-peewee/template
+++ b/srcpkgs/python-peewee/template
@@ -1,7 +1,7 @@
 # Template file for 'python-peewee'
 pkgname=python-peewee
 version=3.11.2
-revision=1
+revision=2
 wrksrc="peewee-${version}"
 build_style=python-module
 pycompile_module="playhouse peewee.py pwiz.py"

From 8c541b3666a838b55909e5f7ca46b7318c1e315e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 363/872] python3-pefile: rebuild for Python 3.8.

---
 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 305d64e0758..8791f06640b 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=1
+revision=2
 archs=noarch
 wrksrc="pefile-${version}"
 build_style=python3-module

From edc8e4f2bb803865815c3d0bd64a2e50bfdf5da8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 364/872] python3-pem: rebuild for Python 3.8.

---
 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 3517c80b66a..15417666597 100644
--- a/srcpkgs/python3-pem/template
+++ b/srcpkgs/python3-pem/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pem'
 pkgname=python3-pem
 version=19.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pem-${version}"
 build_style=python3-module

From 164760eb3d8d28400ea4be2967d7678696839866 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 365/872] python-pex: rebuild for Python 3.8.

---
 srcpkgs/python-pex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pex/template b/srcpkgs/python-pex/template
index 4beafcf7b4b..e36ccda8180 100644
--- a/srcpkgs/python-pex/template
+++ b/srcpkgs/python-pex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pex'
 pkgname=python-pex
 version=1.6.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="pex-${version}"
 build_style=python-module

From b4043ec822756e0711d025e31db342f81853fc0b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 366/872] python-pexpect: rebuild for Python 3.8.

---
 srcpkgs/python-pexpect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pexpect/template b/srcpkgs/python-pexpect/template
index 8d03a1945f3..03102c3d294 100644
--- a/srcpkgs/python-pexpect/template
+++ b/srcpkgs/python-pexpect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pexpect'
 pkgname=python-pexpect
 version=4.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pexpect-${version}"
 build_style=python-module

From 50f6291ca752dc88af34a7df4987b99f11369c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 367/872] python-pgmigrate: rebuild for Python 3.8.

---
 srcpkgs/python-pgmigrate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgmigrate/template b/srcpkgs/python-pgmigrate/template
index b441ba2a89f..767b6cf8921 100644
--- a/srcpkgs/python-pgmigrate/template
+++ b/srcpkgs/python-pgmigrate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgmigrate'
 pkgname=python-pgmigrate
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgmigrate-${version}"
 build_style=python-module

From 19bc6f8c731b45f52c358d34830221558e54f36f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 368/872] python-pgpdump: rebuild for Python 3.8.

---
 srcpkgs/python-pgpdump/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgpdump/template b/srcpkgs/python-pgpdump/template
index 58be9116feb..a28b6e209e7 100644
--- a/srcpkgs/python-pgpdump/template
+++ b/srcpkgs/python-pgpdump/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgpdump'
 pkgname=python-pgpdump
 version=1.5
-revision=5
+revision=6
 archs=noarch
 build_style=python-module
 pycompile_module="pgpdump"

From d3bc17a7484bd198f2f0e5d449b183920ca6ef9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 369/872] python3-pgspecial: rebuild for Python 3.8.

---
 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 dc52d12c214..c4f67a707f1 100644
--- a/srcpkgs/python3-pgspecial/template
+++ b/srcpkgs/python3-pgspecial/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pgspecial'
 pkgname=python3-pgspecial
 version=1.11.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgspecial-${version}"
 build_style=python3-module

From 630e0f8ca443d21d7a84c4cb44ab119db356b6fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 370/872] python3-pgzero: rebuild for Python 3.8.

---
 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 9653505acda..8b8f477112d 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgzero-${version}"
 build_style=python3-module

From b39841f2f8458d2865aac460282b318538b727c4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 371/872] python3-phonenumbers: rebuild for Python 3.8.

---
 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 ebf33f226e4..7b4e889fd8d 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.10.20
-revision=1
+revision=2
 archs=noarch
 wrksrc="phonenumbers-${version}"
 build_style=python3-module

From c4dbacfe25a16b0526190c66a838b7e407125426 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 372/872] python-picamera: rebuild for Python 3.8.

---
 srcpkgs/python-picamera/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-picamera/template b/srcpkgs/python-picamera/template
index 92bc2a57a6d..e3c9a17bfdc 100644
--- a/srcpkgs/python-picamera/template
+++ b/srcpkgs/python-picamera/template
@@ -1,7 +1,7 @@
 # Template file for 'python-picamera'
 pkgname=python-picamera
 version=1.13
-revision=1
+revision=2
 archs=noarch
 wrksrc="picamera-${version}"
 build_style=python-module

From 29473c016c6cd2d720c417714e89e9eaba3b321e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 373/872] python-pickleshare: rebuild for Python 3.8.

---
 srcpkgs/python-pickleshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pickleshare/template b/srcpkgs/python-pickleshare/template
index 2485c95230a..c1d86826c15 100644
--- a/srcpkgs/python-pickleshare/template
+++ b/srcpkgs/python-pickleshare/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pickleshare'
 pkgname=python-pickleshare
 version=0.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pickleshare-${version}"
 build_style=python-module

From 7c358da397b1273369bbeb98240a250157d4fe9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 374/872] python3-pillow-simd: rebuild for Python 3.8.

---
 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 7bab9fb20c3..4c756b07c79 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=5.3.0.post1
-revision=1
+revision=2
 archs="x86_64*"
 wrksrc="pillow-simd-${version}"
 build_style=python3-module

From 06b38c4e7a2c4a5ec22c8a9c530dbe56d846260f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 375/872] python-pip: rebuild for Python 3.8.

---
 srcpkgs/python-pip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pip/template b/srcpkgs/python-pip/template
index 75f11561816..9d4607095c7 100644
--- a/srcpkgs/python-pip/template
+++ b/srcpkgs/python-pip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pip'
 pkgname=python-pip
 version=19.2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pip-${version}"
 build_style=python-module

From 16067b9358434ea80b4b86a4dcd5a60f6b9e575b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 376/872] python-pipenv: rebuild for Python 3.8.

---
 srcpkgs/python-pipenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pipenv/template b/srcpkgs/python-pipenv/template
index e7ce3922875..210a0813673 100644
--- a/srcpkgs/python-pipenv/template
+++ b/srcpkgs/python-pipenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pipenv'
 pkgname=python-pipenv
 version=2018.11.26
-revision=3
+revision=4
 archs=noarch
 wrksrc="pipenv-${version}"
 build_style=python-module

From cb995aed1307a20f4ffe7746dbe54e4099ce9670 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 377/872] python-pkgconfig: rebuild for Python 3.8.

---
 srcpkgs/python-pkgconfig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pkgconfig/template b/srcpkgs/python-pkgconfig/template
index 13e1dcd3bf7..e9e5480907d 100644
--- a/srcpkgs/python-pkgconfig/template
+++ b/srcpkgs/python-pkgconfig/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pkgconfig'
 pkgname=python-pkgconfig
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pkgconfig-${version}"
 build_style=python-module

From f284340f35211b5c0879b7a5338c325e6cfe62da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 378/872] python-plotly: rebuild for Python 3.8.

---
 srcpkgs/python-plotly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-plotly/template b/srcpkgs/python-plotly/template
index fbbb3a3a520..1593b108f7a 100644
--- a/srcpkgs/python-plotly/template
+++ b/srcpkgs/python-plotly/template
@@ -1,7 +1,7 @@
 # Template file for 'python-plotly'
 pkgname=python-plotly
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 #wrksrc="${pkgname#*-}-${version}"
 wrksrc="plotly.py-${version}"

From ee0d515dc265db17d6c90029fc5ffad4fbfb17ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 379/872] python3-pluggy: rebuild for Python 3.8.

---
 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 37ebc2dae40..6f97cb25f21 100644
--- a/srcpkgs/python3-pluggy/template
+++ b/srcpkgs/python3-pluggy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pluggy'
 pkgname=python3-pluggy
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python3-module

From 60f109b4924812d3cbb6107b8d070a2fdb642962 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 380/872] python-ply: rebuild for Python 3.8.

---
 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 034fbcfa531..04a3defa6aa 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=1
+revision=2
 archs=noarch
 wrksrc="ply-${version}"
 build_style=python-module

From 95b0bc668a60a91dbbd68944bdc712d271e93723 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 381/872] python3-pmw: rebuild for Python 3.8.

---
 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 646e7129443..289b5ef1d0d 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=1
+revision=2
 archs=noarch
 short_desc="Python 3 Tkinter widget toolkit"
 homepage="http://pmw.sourceforge.net/"

From 760b2aa66f385f882c6da4545bc93c906a387d73 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 382/872] python-podcastparser: rebuild for Python 3.8.

---
 srcpkgs/python-podcastparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-podcastparser/template b/srcpkgs/python-podcastparser/template
index e4847d3ed65..61702f0d28b 100644
--- a/srcpkgs/python-podcastparser/template
+++ b/srcpkgs/python-podcastparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-podcastparser'
 pkgname=python-podcastparser
 version=0.6.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="podcastparser-${version}"
 build_style=python-module

From e0ad0641945e1dea937fb2ca555a61603e4560b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 383/872] python-polib: rebuild for Python 3.8.

---
 srcpkgs/python-polib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-polib/template b/srcpkgs/python-polib/template
index b0ade05d90d..8b8d4b66c68 100644
--- a/srcpkgs/python-polib/template
+++ b/srcpkgs/python-polib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-polib'
 pkgname=python-polib
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="polib-${version}"
 build_style=python-module

From 0030be5c9ea47539a72b9d5b5131abeac8412e47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 384/872] python-portend: rebuild for Python 3.8.

---
 srcpkgs/python-portend/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python-portend/template b/srcpkgs/python-portend/template
index 216ae413d09..0538f68083f 100644
--- a/srcpkgs/python-portend/template
+++ b/srcpkgs/python-portend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-portend'
 pkgname=python-portend
 version=2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="portend-${version}"
 build_style=python-module
@@ -14,7 +14,7 @@ license="MIT"
 homepage="https://github.com/jaraco/portend"
 changelog="https://github.com/jaraco/portend/blob/master/CHANGES.rst"
 distfiles="https://github.com/jaraco/portend/archive/${version}.tar.gz"
-checksum=61aa1a8fd76d64bd6093e4151a2bfeda177d5083bf2e2bcc92a053bd2104fde3
+checksum=c0740375a19168e117d291e7ed307e985d2c0e2dc732ca97444bc58a28076dfa
 
 pre_build() {
 	sed -i setup.py \

From 86c2211e1837e156275077b9efe1e25572514867 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 385/872] python-prctl: rebuild for Python 3.8.

---
 srcpkgs/python-prctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prctl/template b/srcpkgs/python-prctl/template
index 2b420d655cf..e8bf54b98fd 100644
--- a/srcpkgs/python-prctl/template
+++ b/srcpkgs/python-prctl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prctl'
 pkgname=python-prctl
 version=1.7
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="prctl.py"
 hostmakedepends="python-setuptools python3-setuptools libcap-devel"

From e7c53afc196d066076f9117158bd6a0b7b28bf52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 386/872] python3-precis-i18n: rebuild for Python 3.8.

---
 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 19612bc818b..be7bb0b0b56 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=1
+revision=2
 archs=noarch
 wrksrc="precis_i18n-${version}"
 build_style=python3-module

From fc6a6a6ae9e2454bc6e5aa117ab2f5f747f1c3d2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 387/872] python-pretend: rebuild for Python 3.8.

---
 srcpkgs/python-pretend/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pretend/template b/srcpkgs/python-pretend/template
index 9a647271b57..6d8063fc43a 100644
--- a/srcpkgs/python-pretend/template
+++ b/srcpkgs/python-pretend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pretend'
 pkgname=python-pretend
 version=1.0.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pretend-${version}"
 build_style=python-module

From 990266b8ce207f64d2a8e2f2f2c11473236e4a2d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 388/872] python-progress: rebuild for Python 3.8.

---
 srcpkgs/python-progress/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-progress/template b/srcpkgs/python-progress/template
index 7d3924e3618..0d6bd1db69d 100644
--- a/srcpkgs/python-progress/template
+++ b/srcpkgs/python-progress/template
@@ -1,7 +1,7 @@
 # Template file for 'python-progress'
 pkgname=python-progress
 version=1.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="progress-${version}"
 build_style=python-module

From 1259abece823637c18eaca058493cebdf15842ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 389/872] python-prometheus_client: rebuild for Python 3.8.

---
 srcpkgs/python-prometheus_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prometheus_client/template b/srcpkgs/python-prometheus_client/template
index 46df561f7d4..7b71fbeffc2 100644
--- a/srcpkgs/python-prometheus_client/template
+++ b/srcpkgs/python-prometheus_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prometheus_client'
 pkgname=python-prometheus_client
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="prometheus_client-${version}"
 build_style=python-module

From 67527aa7cf723b45f2c49017717337d56884bf4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 390/872] python-prompt_toolkit1: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit1/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit1/template b/srcpkgs/python-prompt_toolkit1/template
index d117d620ba5..7afe6179f33 100644
--- a/srcpkgs/python-prompt_toolkit1/template
+++ b/srcpkgs/python-prompt_toolkit1/template
@@ -2,7 +2,7 @@
 pkgname=python-prompt_toolkit1
 reverts="2.0.9_1"
 version=1.0.15
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From ad672131c8ab27e3e4dfa04ab7264c23d46f206e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 391/872] python-prompt_toolkit2: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit2/template b/srcpkgs/python-prompt_toolkit2/template
index 0fa71fa06dc..d7f2fd11e14 100644
--- a/srcpkgs/python-prompt_toolkit2/template
+++ b/srcpkgs/python-prompt_toolkit2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prompt_toolkit2'
 pkgname=python-prompt_toolkit2
 version=2.0.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From 2d3dfe28989a26dbea6bd90097a7a4046839373e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 392/872] python-proselint: rebuild for Python 3.8.

---
 srcpkgs/python-proselint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-proselint/template b/srcpkgs/python-proselint/template
index c017c497386..b1da90de474 100644
--- a/srcpkgs/python-proselint/template
+++ b/srcpkgs/python-proselint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-proselint'
 pkgname=python-proselint
 version=0.10.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="proselint-${version}"
 build_style=python-module

From 3dceefa27e529cfd28f51c8b96cec007bd4464e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 393/872] python-protobuf: rebuild for Python 3.8.

---
 srcpkgs/python-protobuf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-protobuf/template b/srcpkgs/python-protobuf/template
index 4b736f1e7af..7dbed97fb76 100644
--- a/srcpkgs/python-protobuf/template
+++ b/srcpkgs/python-protobuf/template
@@ -1,7 +1,7 @@
 # Template file for 'python-protobuf'
 pkgname=python-protobuf
 version=3.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="protobuf-${version}"
 build_style=python-module

From abc13cfff04878580efaf4333ca9548112b11049 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 394/872] python-psutil: rebuild for Python 3.8.

---
 srcpkgs/python-psutil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psutil/template b/srcpkgs/python-psutil/template
index 96cbb3c399f..11353ed2179 100644
--- a/srcpkgs/python-psutil/template
+++ b/srcpkgs/python-psutil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psutil'
 pkgname=python-psutil
 version=5.6.3
-revision=1
+revision=2
 wrksrc="psutil-${version}"
 build_style=python-module
 pycompile_module="psutil"

From 970bcf29dafb825894593f644c2fb7b4f1b86aff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 395/872] python-psycopg2: rebuild for Python 3.8.

---
 srcpkgs/python-psycopg2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psycopg2/template b/srcpkgs/python-psycopg2/template
index f41de2880e6..14b28b8aed1 100644
--- a/srcpkgs/python-psycopg2/template
+++ b/srcpkgs/python-psycopg2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psycopg2'
 pkgname=python-psycopg2
 version=2.8.3
-revision=1
+revision=2
 wrksrc="psycopg2-${version}"
 build_style=python-module
 pycompile_module="psycopg2"

From f987fad321d899f07d159588838ad3f3bfd1eb12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 396/872] python-ptyprocess: rebuild for Python 3.8.

---
 srcpkgs/python-ptyprocess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ptyprocess/template b/srcpkgs/python-ptyprocess/template
index 04c4cf89391..fd2e51fa3ac 100644
--- a/srcpkgs/python-ptyprocess/template
+++ b/srcpkgs/python-ptyprocess/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ptyprocess'
 pkgname=python-ptyprocess
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ptyprocess-${version}"
 build_style=python-module

From 6854ff4b103875e8ed393d695b71afd7a2589626 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 397/872] python3-pulsectl: rebuild for Python 3.8.

---
 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 429dd1abe45..045afdb411b 100644
--- a/srcpkgs/python3-pulsectl/template
+++ b/srcpkgs/python3-pulsectl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pulsectl'
 pkgname=python3-pulsectl
 version=19.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pulsectl-${version}"
 build_style=python3-module

From e8331ef1c889bc2b1756c6ed55a1cc93186445af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 398/872] python-py: rebuild for Python 3.8.

---
 srcpkgs/python-py/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-py/template b/srcpkgs/python-py/template
index 99644bc228a..07a1ae2a21b 100644
--- a/srcpkgs/python-py/template
+++ b/srcpkgs/python-py/template
@@ -1,7 +1,7 @@
 # Template file for 'python-py'
 pkgname=python-py
 version=1.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="py-${version}"
 build_style=python-module

From 1f71c5025d9cb40d86e4245b6a90731b3f25c6fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 399/872] python-pyPEG2: rebuild for Python 3.8.

---
 srcpkgs/python-pyPEG2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyPEG2/template b/srcpkgs/python-pyPEG2/template
index 113948af730..6ba175687f1 100644
--- a/srcpkgs/python-pyPEG2/template
+++ b/srcpkgs/python-pyPEG2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyPEG2'
 pkgname=python-pyPEG2
 version=2.15.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 3f82483327ba7958b0a6f8b67e63abf009c360ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 400/872] python-pyacoustid: rebuild for Python 3.8.

---
 srcpkgs/python-pyacoustid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyacoustid/template b/srcpkgs/python-pyacoustid/template
index 068d3d52649..d5b2d967f4e 100644
--- a/srcpkgs/python-pyacoustid/template
+++ b/srcpkgs/python-pyacoustid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyacoustid'
 pkgname=python-pyacoustid
 version=1.1.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyacoustid-${version}"
 build_style=python-module

From da477a37411d7cf0d00da2dea60d734072705be7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 401/872] python-pyaes: rebuild for Python 3.8.

---
 srcpkgs/python-pyaes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyaes/template b/srcpkgs/python-pyaes/template
index a8c812a9e01..d31766d0481 100644
--- a/srcpkgs/python-pyaes/template
+++ b/srcpkgs/python-pyaes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyaes'
 pkgname=python-pyaes
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyaes-${version}"
 build_style=python-module

From 9e2b6fe7e7b67777d70eb25705c27d4ed6462a3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 402/872] python-pyasn1: rebuild for Python 3.8.

---
 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 510dfa09816..fcddad43633 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyasn1-${version}"
 build_style=python-module

From 712c6a81632d8741a302138a46ffd3b1c8fb079f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 403/872] python-pyasn1-modules: rebuild for Python 3.8.

---
 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 bc19e4940ed..b142819a272 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 989e8e1bc0a51f2fa1a88ec8f99eae20dd3e21ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 404/872] python3-pycares: rebuild for Python 3.8.

---
 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 c52702904b4..ed82808bada 100644
--- a/srcpkgs/python3-pycares/template
+++ b/srcpkgs/python3-pycares/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pycares'
 pkgname=python3-pycares
 version=2.3.0
-revision=2
+revision=3
 wrksrc="pycares-${version}"
 build_style=python3-module
 pycompile_module="pycares"

From 0885c6a30ff0765b465e0e4c84803b48b9090dc5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 405/872] python-pycodestyle: rebuild for Python 3.8.

---
 srcpkgs/python-pycodestyle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycodestyle/template b/srcpkgs/python-pycodestyle/template
index ca20d8e0c97..08bc8c8bec7 100644
--- a/srcpkgs/python-pycodestyle/template
+++ b/srcpkgs/python-pycodestyle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycodestyle'
 pkgname=python-pycodestyle
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycodestyle-${version}"
 build_style=python-module

From 61d0268320bb8306c2b2823a663588c885a01df6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 406/872] python-pycountry: rebuild for Python 3.8.

---
 srcpkgs/python-pycountry/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycountry/template b/srcpkgs/python-pycountry/template
index 88a0025f258..205db6240b7 100644
--- a/srcpkgs/python-pycountry/template
+++ b/srcpkgs/python-pycountry/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycountry'
 pkgname=python-pycountry
 version=18.12.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycountry-${version}"
 build_style=python-module

From e3a689e939cf482e09d50cf25b8f244cbec3dc12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 407/872] python-pycparser: rebuild for Python 3.8.

---
 srcpkgs/python-pycparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycparser/template b/srcpkgs/python-pycparser/template
index a521b3494ab..d2e83aa79b2 100644
--- a/srcpkgs/python-pycparser/template
+++ b/srcpkgs/python-pycparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycparser'
 pkgname=python-pycparser
 version=2.19
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycparser-${version}"
 build_style=python-module

From a86a5e2a75c91a868bf9b10f7ad9d86ca4df85d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 408/872] python-pycryptodome: rebuild for Python 3.8.

---
 srcpkgs/python-pycryptodome/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycryptodome/template b/srcpkgs/python-pycryptodome/template
index f01b5731c45..a4368d61b39 100644
--- a/srcpkgs/python-pycryptodome/template
+++ b/srcpkgs/python-pycryptodome/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycryptodome'
 pkgname=python-pycryptodome
 version=3.9.0
-revision=1
+revision=2
 wrksrc="pycryptodome-${version}"
 build_style=python-module
 pycompile_module="Crypto"

From 0cd2d63524942e2cfe5220436720dab24ef75308 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 409/872] python-pyelftools: rebuild for Python 3.8.

---
 srcpkgs/python-pyelftools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyelftools/template b/srcpkgs/python-pyelftools/template
index a6e9e9b644e..193650442fc 100644
--- a/srcpkgs/python-pyelftools/template
+++ b/srcpkgs/python-pyelftools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyelftools'
 pkgname=python-pyelftools
 version=0.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyelftools-${version}"
 build_style=python-module

From 61ae993767f544e608a601e6727e58b8c73400fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 410/872] python3-pyfiglet: rebuild for Python 3.8.

---
 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 d00b4fda62a..a4a67b12d42 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=1
+revision=2
 archs=noarch
 wrksrc="pyfiglet-${version}"
 build_style="python3-module"

From 7f5bd3a27f56badc9d95d3b2b7a684604262af1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 411/872] python-pyflakes: rebuild for Python 3.8.

---
 srcpkgs/python-pyflakes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyflakes/template b/srcpkgs/python-pyflakes/template
index 86d477c47f2..19229ebb3a4 100644
--- a/srcpkgs/python-pyflakes/template
+++ b/srcpkgs/python-pyflakes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyflakes'
 pkgname=python-pyflakes
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyflakes-${version}"
 build_style=python-module

From a811c56d34b1f53ac8aeca03f5247410137fe8d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 412/872] python-pygame: rebuild for Python 3.8.

---
 srcpkgs/python-pygame/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pygame/template b/srcpkgs/python-pygame/template
index a510333df6e..a900d62dbe3 100644
--- a/srcpkgs/python-pygame/template
+++ b/srcpkgs/python-pygame/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pygame'
 pkgname=python-pygame
 version=1.9.4
-revision=2
+revision=3
 wrksrc="pygame-${version}"
 build_style=python-module
 pycompile_module="pygame"

From e62822b2e5fa56868e80f10a019c7a0d66abbcbd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 413/872] python-pyglet: rebuild for Python 3.8.

---
 srcpkgs/python-pyglet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyglet/template b/srcpkgs/python-pyglet/template
index f8315bdf616..ee6ed16064c 100644
--- a/srcpkgs/python-pyglet/template
+++ b/srcpkgs/python-pyglet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyglet'
 pkgname=python-pyglet
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyglet-${version}"
 build_style=python-module

From 1f0bf2cea3a10c9982132fbe81c5ebd884defa35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 414/872] python3-pykeepass: rebuild for Python 3.8.

---
 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 c0e0fd4db41..135da6fea65 100644
--- a/srcpkgs/python3-pykeepass/template
+++ b/srcpkgs/python3-pykeepass/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pykeepass'
 pkgname=python3-pykeepass
 version=3.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="pykeepass-${version}"
 build_style=python3-module

From f2d7f9a6199d6780975ad9efb639642e96acc8c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 415/872] python3-pykwalify: rebuild for Python 3.8.

---
 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 27bc0c37355..b3727aba651 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pykwalify-${version}"
 build_style=python3-module

From cb348b8cc013bee10cb1adcdd5b9dac8e8f37a83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 416/872] python3-pylast: rebuild for Python 3.8.

---
 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 187b51943a8..60184348d80 100644
--- a/srcpkgs/python3-pylast/template
+++ b/srcpkgs/python3-pylast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylast'
 pkgname=python3-pylast
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylast-${version}"
 build_style=python3-module

From 6629ec0088134c22cfb115f29fd4a90a9b38e7a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 417/872] python3-pylibgen: rebuild for Python 3.8.

---
 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 641bf649c17..540ccb32790 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylibgen-${version}"
 build_style=python3-module

From 953751fa6deeafefea78df4f5ec27ee5c5c9902d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 418/872] python3-pylint: rebuild for Python 3.8.

---
 srcpkgs/python3-pylint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pylint/template b/srcpkgs/python3-pylint/template
index 6c8800069f0..315dbffb3fc 100644
--- a/srcpkgs/python3-pylint/template
+++ b/srcpkgs/python3-pylint/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylint'
 pkgname=python3-pylint
 version=2.3.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="pylint-${version}"
 build_style=python3-module

From 96bc4e17e1f144c3528e0ec3b455d501c2c3efdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 419/872] python-pynacl: rebuild for Python 3.8.

---
 srcpkgs/python-pynacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pynacl/template b/srcpkgs/python-pynacl/template
index 6ead91820b1..7a7fe246821 100644
--- a/srcpkgs/python-pynacl/template
+++ b/srcpkgs/python-pynacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pynacl'
 pkgname=python-pynacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python-module
 pycompile_module="nacl"

From ec1da9dfd353e059b23780a676ef1561f56f9b2e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 420/872] python-pyotp: rebuild for Python 3.8.

---
 srcpkgs/python-pyotp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyotp/template b/srcpkgs/python-pyotp/template
index 54714ee2ebb..b70bd73d4aa 100644
--- a/srcpkgs/python-pyotp/template
+++ b/srcpkgs/python-pyotp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyotp'
 pkgname=python-pyotp
 version=2.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyotp-${version}"
 build_style=python-module

From 3c83515599af94f7483a3e165f03547f9daa2835 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 421/872] python-pyperclip: rebuild for Python 3.8.

---
 srcpkgs/python-pyperclip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyperclip/template b/srcpkgs/python-pyperclip/template
index 512dc8d3dfb..b173f1479a5 100644
--- a/srcpkgs/python-pyperclip/template
+++ b/srcpkgs/python-pyperclip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyperclip'
 pkgname=python-pyperclip
 version=1.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=pyperclip-${version}
 build_style=python-module

From 6d17f7510d6ce4ec430e8bf72567fecdbd521681 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 422/872] python-pyqtgraph: rebuild for Python 3.8.

---
 srcpkgs/python-pyqtgraph/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyqtgraph/template b/srcpkgs/python-pyqtgraph/template
index f90e2b15319..1bea9c2ffdf 100644
--- a/srcpkgs/python-pyqtgraph/template
+++ b/srcpkgs/python-pyqtgraph/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyqtgraph'
 pkgname=python-pyqtgraph
 version=0.10.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${pkgname#*-}-${version}"
 build_style=python-module

From fff21c3dd38242e2992b276e00f6970f96a34293 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 423/872] python-pyrfc3339: rebuild for Python 3.8.

---
 srcpkgs/python-pyrfc3339/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyrfc3339/template b/srcpkgs/python-pyrfc3339/template
index 618e46d1c4b..cd81c4d0624 100644
--- a/srcpkgs/python-pyrfc3339/template
+++ b/srcpkgs/python-pyrfc3339/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyrfc3339'
 pkgname=python-pyrfc3339
 version=1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="pyrfc3339"

From bdfc6ef4d47bd373ff649510c96f640b48da738a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 424/872] python-pyscss: rebuild for Python 3.8.

---
 srcpkgs/python-pyscss/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyscss/template b/srcpkgs/python-pyscss/template
index 1f7d8b7d8cd..1a8e9c44d7d 100644
--- a/srcpkgs/python-pyscss/template
+++ b/srcpkgs/python-pyscss/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyscss'
 pkgname=python-pyscss
 version=1.3.5
-revision=6
+revision=7
 wrksrc="pyScss-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pcre-devel"

From 6bdfad32f6894df0a7f3eb185662fa32228408ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 425/872] python3-pysdl2: rebuild for Python 3.8.

---
 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 d59ea7d7fa2..3efdca5b667 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=1
+revision=2
 archs=noarch
 wrksrc="py-sdl2-rel_${version//./_}"
 build_style=python3-module

From 67dab081767478a600fbc44d5333dc2746a683ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 426/872] python-pyserial: rebuild for Python 3.8.

---
 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 8808e76d206..354be493b16 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=2
+revision=3
 archs=noarch
 wrksrc="pyserial-${version}"
 build_style=python-module

From a6914f6aa35af001fd954260658bed6e1e5df2bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 427/872] python3-pyside2: rebuild for Python 3.8.

---
 srcpkgs/python3-pyside2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pyside2/template b/srcpkgs/python3-pyside2/template
index a5d60b17568..1da3400f239 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.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From deee942f64ef5e0e70f6a45a7f9e3a2593d53add Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 428/872] python3-pysigset: rebuild for Python 3.8.

---
 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 8de87145a09..50d9162ea70 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.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysigset-${version}"
 build_style=python3-module

From 913752d5b84f0054c829fc060939c366bf5b28cb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 429/872] python-pysocks: rebuild for Python 3.8.

---
 srcpkgs/python-pysocks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysocks/template b/srcpkgs/python-pysocks/template
index 68a27819e3d..d9b216aeab8 100644
--- a/srcpkgs/python-pysocks/template
+++ b/srcpkgs/python-pysocks/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysocks'
 pkgname=python-pysocks
 version=1.6.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="PySocks-${version}"
 build_style=python-module

From e256b35c573b66ccaaffbf92ee92ecad250db3c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 430/872] python3-pysol_cards: rebuild for Python 3.8.

---
 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 e03d92fe077..a37429754a2 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.8.6
-revision=1
+revision=2
 wrksrc="pysol_cards-${version}"
 build_style=python3-module
 pycompile_module="pysol_cards"

From d29dab0ddee296649a1f4ace5c33678cc349d6ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 431/872] python-pysrt: rebuild for Python 3.8.

---
 srcpkgs/python-pysrt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysrt/template b/srcpkgs/python-pysrt/template
index 061435a52c7..7e154825bef 100644
--- a/srcpkgs/python-pysrt/template
+++ b/srcpkgs/python-pysrt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysrt'
 pkgname=python-pysrt
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysrt-${version}"
 build_style=python-module

From 4ba7eb802460f8e4e15f1389bebd64237c6f1aec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 432/872] python-pystache: rebuild for Python 3.8.

---
 srcpkgs/python-pystache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pystache/template b/srcpkgs/python-pystache/template
index 13f8b04aa88..c1a5bcd57d9 100644
--- a/srcpkgs/python-pystache/template
+++ b/srcpkgs/python-pystache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pystache'
 pkgname=python-pystache
 version=0.5.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pystache-${version}"
 build_style=python-module

From a6a1d8010f3909cc551f70485efc660b22168f46 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 433/872] python-pyte: rebuild for Python 3.8.

---
 srcpkgs/python-pyte/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyte/template b/srcpkgs/python-pyte/template
index 43b708adc66..76efbec91d1 100644
--- a/srcpkgs/python-pyte/template
+++ b/srcpkgs/python-pyte/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyte'
 pkgname=python-pyte
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyte-${version}"
 build_style=python-module

From 03679e357b0bdbd90ddbb6deba5693594ef9d592 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 434/872] python-pytest: rebuild for Python 3.8.

---
 srcpkgs/python-pytest/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest/template b/srcpkgs/python-pytest/template
index 6481f21e677..d5c246599c6 100644
--- a/srcpkgs/python-pytest/template
+++ b/srcpkgs/python-pytest/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest'
 pkgname=python-pytest
 version=3.7.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From d8ff8818fa4f90c63cf468feb2bba5d8b9dca026 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 435/872] python3-pytest-asyncio: rebuild for Python 3.8.

---
 srcpkgs/python3-pytest-asyncio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template
index bd104f99e2c..0c90d33a9e5 100644
--- a/srcpkgs/python3-pytest-asyncio/template
+++ b/srcpkgs/python3-pytest-asyncio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pytest-asyncio'
 pkgname=python3-pytest-asyncio
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytest-asyncio-${version}"
 build_style=python3-module

From 8bdff4905b1d2e832656b8dde532b566e516752c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 436/872] python-pytest-fixture-config: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-fixture-config/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-fixture-config/template b/srcpkgs/python-pytest-fixture-config/template
index cd3e38a592a..14255af8a35 100644
--- a/srcpkgs/python-pytest-fixture-config/template
+++ b/srcpkgs/python-pytest-fixture-config/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-fixture-config'
 pkgname=python-pytest-fixture-config
 version=1.3.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 89c93c6cebe4d9e57d61a6e1c0d1782514496073 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 437/872] python-pytest-mock: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-mock/template b/srcpkgs/python-pytest-mock/template
index f3dc85810b6..240e8773aaa 100644
--- a/srcpkgs/python-pytest-mock/template
+++ b/srcpkgs/python-pytest-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-mock'
 pkgname=python-pytest-mock
 version=1.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From e10ffc843814c368a7fd76e24e6afa8512ce198c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 438/872] python-pytz: rebuild for Python 3.8.

---
 srcpkgs/python-pytz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytz/template b/srcpkgs/python-pytz/template
index d6becf829a7..40f582962c8 100644
--- a/srcpkgs/python-pytz/template
+++ b/srcpkgs/python-pytz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytz'
 pkgname=python-pytz
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytz-${version}"
 build_style=python-module

From 562767d788b8e163bcde2dbd45de9eca2899bd90 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 439/872] python-pyudev: rebuild for Python 3.8.

---
 srcpkgs/python-pyudev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyudev/template b/srcpkgs/python-pyudev/template
index d059b7882a2..2ec53088636 100644
--- a/srcpkgs/python-pyudev/template
+++ b/srcpkgs/python-pyudev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyudev'
 pkgname=python-pyudev
 version=0.21.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyudev-${version}"
 build_style=python-module

From bb91a3d4616a0e9dbf1a34b271d62527a455f4ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 440/872] python3-pyx: rebuild for Python 3.8.

---
 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 87608c43428..89963bed89f 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.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="PyX-${version}"
 build_style=python3-module

From caa3ad83cde6d2b66687ae0ac2bb87dfd8eb100f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 441/872] python-pyzbar: rebuild for Python 3.8.

---
 srcpkgs/python-pyzbar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzbar/template b/srcpkgs/python-pyzbar/template
index 06ae37a5708..35b568eb4e6 100644
--- a/srcpkgs/python-pyzbar/template
+++ b/srcpkgs/python-pyzbar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzbar'
 pkgname=python-pyzbar
 version=0.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyzbar-${version}"
 build_style=python-module

From 83e0ba8fd12c3f07b4f3c2f8109ff0cd9a69353b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 442/872] python-pyzmq: rebuild for Python 3.8.

---
 srcpkgs/python-pyzmq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzmq/template b/srcpkgs/python-pyzmq/template
index 859aab5983d..27dbe29e516 100644
--- a/srcpkgs/python-pyzmq/template
+++ b/srcpkgs/python-pyzmq/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzmq'
 pkgname=python-pyzmq
 version=18.0.1
-revision=1
+revision=2
 wrksrc="pyzmq-${version}"
 build_style=python-module
 make_build_args="--zmq=${XBPS_CROSS_BASE}/usr"

From 2d71150f372801e322d8ee5f31b2bc67795fc3a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 443/872] python-qrcode: rebuild for Python 3.8.

---
 srcpkgs/python-qrcode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-qrcode/template b/srcpkgs/python-qrcode/template
index 9deb485855f..bf35c82757e 100644
--- a/srcpkgs/python-qrcode/template
+++ b/srcpkgs/python-qrcode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-qrcode'
 pkgname=python-qrcode
 version=6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="qrcode-${version}"
 build_style=python-module

From 55eeefa7bb378b38024ce5c57d228c5d2c24875f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 444/872] python-random2: rebuild for Python 3.8.

---
 srcpkgs/python-random2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-random2/template b/srcpkgs/python-random2/template
index 92f36fee139..2603cae3584 100644
--- a/srcpkgs/python-random2/template
+++ b/srcpkgs/python-random2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-random2'
 pkgname=python-random2
 version=1.0.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="random2-${version}"
 build_style=python-module

From 4aa520f994404a836b859a95bf53280ec662d779 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 445/872] python-rarfile: rebuild for Python 3.8.

---
 srcpkgs/python-rarfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rarfile/template b/srcpkgs/python-rarfile/template
index e0c597c1fb1..e3b6f3e2887 100644
--- a/srcpkgs/python-rarfile/template
+++ b/srcpkgs/python-rarfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rarfile'
 pkgname=python-rarfile
 version=3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="rarfile-${version}"
 build_style=python-module

From 77edc413dd0a2b7d7423d47946137d1db7452b91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 446/872] python-raven: rebuild for Python 3.8.

---
 srcpkgs/python-raven/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-raven/template b/srcpkgs/python-raven/template
index eec4e5f49b6..87382c21602 100644
--- a/srcpkgs/python-raven/template
+++ b/srcpkgs/python-raven/template
@@ -1,7 +1,7 @@
 # Template file for 'python-raven'
 pkgname=python-raven
 version=6.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="raven-${version}"
 build_style=python-module

From 0fd244bc29d49109b475295b68c11c496626bd43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 447/872] python-rdflib: rebuild for Python 3.8.

---
 srcpkgs/python-rdflib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rdflib/template b/srcpkgs/python-rdflib/template
index 0512abb0e5a..f676dedfb2f 100644
--- a/srcpkgs/python-rdflib/template
+++ b/srcpkgs/python-rdflib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rdflib'
 pkgname=python-rdflib
 version=4.2.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="rdflib-${version}"
 build_style=python-module

From 52682c54b0a7808306dcb6c0c9af5436d056d6a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 448/872] python-readability-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-readability-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-readability-lxml/template b/srcpkgs/python-readability-lxml/template
index ddf0602b730..19dadaa336f 100644
--- a/srcpkgs/python-readability-lxml/template
+++ b/srcpkgs/python-readability-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-readability-lxml'
 pkgname=python-readability-lxml
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="readability-lxml-${version}"
 build_style=python-module

From 5b239aeb5613465b0d414e14b8b37a83f65232fc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 449/872] python3-readlike: rebuild for Python 3.8.

---
 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 cbba969b076..43159962442 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=1
+revision=2
 archs=noarch
 wrksrc=readlike-${version}
 build_style=python3-module

From 10ff7da432e0f1563ed8c4feb921648f20e75246 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 450/872] python-rebulk: rebuild for Python 3.8.

---
 srcpkgs/python-rebulk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rebulk/template b/srcpkgs/python-rebulk/template
index 1cf6cf623c8..8f9c2621304 100644
--- a/srcpkgs/python-rebulk/template
+++ b/srcpkgs/python-rebulk/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rebulk'
 pkgname=python-rebulk
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rebulk-${version}"
 build_style=python-module

From b720f89f9fb6ecb79aa43ff92f151239049cb9c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 451/872] python-redis: rebuild for Python 3.8.

---
 srcpkgs/python-redis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-redis/template b/srcpkgs/python-redis/template
index f57c0d841b3..b7e773fde54 100644
--- a/srcpkgs/python-redis/template
+++ b/srcpkgs/python-redis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-redis'
 pkgname=python-redis
 version=2.10.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="redis-${version}"
 build_style=python-module

From 90d47f03a3f7a55f623c0b5019b0b58b6169aae5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 452/872] python-regex: rebuild for Python 3.8.

---
 srcpkgs/python-regex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-regex/template b/srcpkgs/python-regex/template
index 33e99b0127b..7a624db9477 100644
--- a/srcpkgs/python-regex/template
+++ b/srcpkgs/python-regex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-regex'
 pkgname=python-regex
 version=2019.08.19
-revision=1
+revision=2
 wrksrc="regex-${version}"
 build_style=python-module
 pycompile_module="_regex_core.py regex.py test_regex.py"

From e132fc559392a2f2a5268100218ef2061759c476 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 453/872] python-rencode: rebuild for Python 3.8.

---
 srcpkgs/python-rencode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rencode/template b/srcpkgs/python-rencode/template
index 7176038a60a..021e1d414b8 100644
--- a/srcpkgs/python-rencode/template
+++ b/srcpkgs/python-rencode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rencode'
 pkgname=python-rencode
 version=1.0.6
-revision=2
+revision=3
 wrksrc="rencode-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"

From 635743944483bd5fdbf4a909ef4874532f1035b9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 454/872] python-reportlab: rebuild for Python 3.8.

---
 srcpkgs/python-reportlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-reportlab/template b/srcpkgs/python-reportlab/template
index 7f153d65a2a..3915767b6d3 100644
--- a/srcpkgs/python-reportlab/template
+++ b/srcpkgs/python-reportlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-reportlab'
 pkgname=python-reportlab
 version=3.5.23
-revision=1
+revision=2
 wrksrc="reportlab-${version}"
 build_style=python-module
 pycompile_module="reportlab"

From 4a6d7b1e5e0d64a6834cc210da11806cbe217453 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 455/872] python-requests: rebuild for Python 3.8.

---
 srcpkgs/python-requests/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests/template b/srcpkgs/python-requests/template
index fc806b611e9..73d2d5945ef 100644
--- a/srcpkgs/python-requests/template
+++ b/srcpkgs/python-requests/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests'
 pkgname=python-requests
 version=2.22.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-${version}"
 build_style=python-module

From 61f6560b710773eab8296ef28bd943f5dc0d290d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 456/872] python-requests-mock: rebuild for Python 3.8.

---
 srcpkgs/python-requests-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-mock/template b/srcpkgs/python-requests-mock/template
index 5b89b5ed3b8..2d1410fcd1b 100644
--- a/srcpkgs/python-requests-mock/template
+++ b/srcpkgs/python-requests-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-mock'
 pkgname=python-requests-mock
 version=1.5.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="requests-mock-${version}"
 build_style=python-module

From f4f04d85ce7abb39fbbf306bc3c1dcfc467cdf14 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 457/872] python-requests-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-requests-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-oauthlib/template b/srcpkgs/python-requests-oauthlib/template
index b011ea17a36..8cd838090a7 100644
--- a/srcpkgs/python-requests-oauthlib/template
+++ b/srcpkgs/python-requests-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-oauthlib'
 pkgname=python-requests-oauthlib
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5853f21b57bde4c4e66293b132fba4fc03804518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 458/872] python-requests-toolbelt: rebuild for Python 3.8.

---
 srcpkgs/python-requests-toolbelt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-toolbelt/template b/srcpkgs/python-requests-toolbelt/template
index 3ba66a0a007..13a81586221 100644
--- a/srcpkgs/python-requests-toolbelt/template
+++ b/srcpkgs/python-requests-toolbelt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-toolbelt'
 pkgname=python-requests-toolbelt
 version=0.9.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 14171483829854051f0c8030562c1052094d78c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 459/872] python3-requests-unixsocket: rebuild for Python 3.8.

---
 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 ec9e1074566..fd389ec2d13 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-unixsocket-${version}"
 build_style=python3-module

From 9b589212b423bd7e2dfbb7ab7ef63c65b9dd07cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 460/872] python-rfc6555: rebuild for Python 3.8.

---
 srcpkgs/python-rfc6555/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rfc6555/template b/srcpkgs/python-rfc6555/template
index c3babc25b93..2522872cc32 100644
--- a/srcpkgs/python-rfc6555/template
+++ b/srcpkgs/python-rfc6555/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rfc6555'
 pkgname=python-rfc6555
 version=0.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rfc6555-${version}"
 build_style=python-module

From a399a96d8293a9387f5648001a03178d2550059b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 461/872] python-ripe-atlas-cousteau: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-cousteau/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-cousteau/template b/srcpkgs/python-ripe-atlas-cousteau/template
index ac16300fe3d..72f32a9da0d 100644
--- a/srcpkgs/python-ripe-atlas-cousteau/template
+++ b/srcpkgs/python-ripe-atlas-cousteau/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-cousteau'
 pkgname=python-ripe-atlas-cousteau
 version=1.4.2
-revision=1
+revision=2
 build_style=python-module
 archs=noarch
 pycompile_module="ripe/atlas/cousteau"

From 4c2ddc085f45f52b438013ad3d494f8f59859504 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 462/872] python-ripe-atlas-sagan: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-sagan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-sagan/template b/srcpkgs/python-ripe-atlas-sagan/template
index 60a9b883b93..22abb48af46 100644
--- a/srcpkgs/python-ripe-atlas-sagan/template
+++ b/srcpkgs/python-ripe-atlas-sagan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-sagan'
 pkgname=python-ripe-atlas-sagan
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ripe.atlas.sagan-${version}"
 build_style=python-module

From 10e7db3d51d8370e317d667edc372d0fcfd5bad9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 463/872] python-rsa: rebuild for Python 3.8.

---
 srcpkgs/python-rsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rsa/template b/srcpkgs/python-rsa/template
index a4ae59846ff..11e9bf2c60d 100644
--- a/srcpkgs/python-rsa/template
+++ b/srcpkgs/python-rsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rsa'
 pkgname=python-rsa
 version=4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a3bbda3918c5b4bb668860ba5bbd81f83f1a4925 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 464/872] python3-rsistent: rebuild for Python 3.8.

---
 srcpkgs/python3-rsistent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-rsistent/template b/srcpkgs/python3-rsistent/template
index 13019f472cd..7897e107b2b 100644
--- a/srcpkgs/python3-rsistent/template
+++ b/srcpkgs/python3-rsistent/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-rsistent'
 pkgname=python3-rsistent
 version=0.15.4
-revision=1
+revision=2
 wrksrc="pyrsistent-${version}"
 build_style=python3-module
 pycompile_module="pyrsistent"

From 7d4c9082b7051c6ce978ca21f34f138189c7f2d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 465/872] python3-rss2email: rebuild for Python 3.8.

---
 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 d07984d33d8..34e7d4e65a6 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.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="rss2email-${version}"
 build_style=python3-module

From a0a5e6df8a02d98f37c3c22c043adb325c8a8a62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 466/872] python-ruamel.yaml: rebuild for Python 3.8.

---
 srcpkgs/python-ruamel.yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ruamel.yaml/template b/srcpkgs/python-ruamel.yaml/template
index d86ddfc67c9..789f8a7acd2 100644
--- a/srcpkgs/python-ruamel.yaml/template
+++ b/srcpkgs/python-ruamel.yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ruamel.yaml'
 pkgname=python-ruamel.yaml
 version=0.15.92
-revision=1
+revision=2
 wrksrc="ruamel.yaml-${version}"
 build_style=python-module
 pycompile_module="ruamel/yaml"

From 6b579f083949bbd67a78d66ae983de1f36f03a82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 467/872] python3-s-tui: rebuild for Python 3.8.

---
 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 4c7db6ff3c9..85a945b1b09 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=0.8.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="s-tui-${version}"
 build_style=python3-module

From 5cc92799a690ba40dd26192e3f0182e07089683a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 468/872] python-s3transfer: rebuild for Python 3.8.

---
 srcpkgs/python-s3transfer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-s3transfer/template b/srcpkgs/python-s3transfer/template
index e306c3c3b1a..dd92eeff657 100644
--- a/srcpkgs/python-s3transfer/template
+++ b/srcpkgs/python-s3transfer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-s3transfer'
 pkgname=python-s3transfer
 version=0.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="s3transfer-${version}"
 build_style=python-module

From 2ec5386706a289e510b5b03e33cf74e0a23596a6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 469/872] python3-saml2: rebuild for Python 3.8.

---
 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 e94602a82ea..c0dabb5e9d0 100644
--- a/srcpkgs/python3-saml2/template
+++ b/srcpkgs/python3-saml2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-saml2'
 pkgname=python3-saml2
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysaml2-${version}"
 build_style=python3-module

From e856d28eb580f0af5442d11d24ffacdd7fade12b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 470/872] python-scandir: rebuild for Python 3.8.

---
 srcpkgs/python-scandir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scandir/template b/srcpkgs/python-scandir/template
index 774fac91b8f..b02fe6d0281 100644
--- a/srcpkgs/python-scandir/template
+++ b/srcpkgs/python-scandir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scandir'
 pkgname=python-scandir
 version=1.10.0
-revision=2
+revision=3
 wrksrc="scandir-${version}"
 build_style=python-module
 pycompile_module="scandir.py"

From 3b5e1eeb2ce0519b51592cebffc1bd89dce0f96c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 471/872] python3-scard: rebuild for Python 3.8.

---
 srcpkgs/python3-scard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scard/template b/srcpkgs/python3-scard/template
index 793f144a74b..279419ac3e3 100644
--- a/srcpkgs/python3-scard/template
+++ b/srcpkgs/python3-scard/template
@@ -2,7 +2,7 @@
 pkgname=python3-scard
 _pkgname=pyscard
 version=1.9.8
-revision=1
+revision=2
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module
 pycompile_module=smartcard

From f62ba61eaebce26c267e2d453d8e0ea6e005a285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 472/872] python3-scikit-learn: rebuild for Python 3.8.

---
 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 73799b9f420..8ac82167832 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.20.4
-revision=1
+revision=2
 wrksrc="scikit-learn-${version}"
 build_style=python3-module
 pycompile_module="sklearn"

From ccf4f6aa1bd0ba8aaf9499dcacb1320a77221004 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 473/872] python3-scipy: rebuild for Python 3.8.

---
 srcpkgs/python3-scipy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scipy/template b/srcpkgs/python3-scipy/template
index 291ac3734f1..2cef9ac33e1 100644
--- a/srcpkgs/python3-scipy/template
+++ b/srcpkgs/python3-scipy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-scipy'
 pkgname=python3-scipy
 version=1.3.1
-revision=1
+revision=2
 wrksrc="scipy-${version}"
 build_style=python3-module
 pycompile_module="scipy"

From 04cbe0c6403a4ecd9cda36e10bba5d06e472823d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 474/872] python-scour: rebuild for Python 3.8.

---
 srcpkgs/python-scour/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scour/template b/srcpkgs/python-scour/template
index b78cf37f057..0db5b157ce1 100644
--- a/srcpkgs/python-scour/template
+++ b/srcpkgs/python-scour/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scour'
 pkgname=python-scour
 version=0.37
-revision=1
+revision=2
 archs=noarch
 wrksrc="scour-${version}"
 build_style=python-module

From 0fd08871993ece59d562feb8472d05249ae1d76a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 475/872] python3-scruffy: rebuild for Python 3.8.

---
 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 e797b110f42..62a21a74eca 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="scruffy-${version}"
 build_style=python3-module

From 65cb259cf8f67f78fe484e4423fe0006aae17045 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 476/872] python-send2trash: rebuild for Python 3.8.

---
 srcpkgs/python-send2trash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-send2trash/template b/srcpkgs/python-send2trash/template
index 49c3a2b3d77..94f56545695 100644
--- a/srcpkgs/python-send2trash/template
+++ b/srcpkgs/python-send2trash/template
@@ -1,7 +1,7 @@
 # Template file for 'python-send2trash'
 pkgname=python-send2trash
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="send2trash-${version}"
 build_style=python-module

From 04a4413d706d49df8a415b9714091b0e4bb0fdfa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 477/872] python-serpent: rebuild for Python 3.8.

---
 srcpkgs/python-serpent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-serpent/template b/srcpkgs/python-serpent/template
index b60d390c1ab..a40f0d44515 100644
--- a/srcpkgs/python-serpent/template
+++ b/srcpkgs/python-serpent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-serpent'
 pkgname=python-serpent
 version=1.28
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38131f811a874463c71c55408ef6e629166a5b8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 478/872] python-service_identity: rebuild for Python 3.8.

---
 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 eae084c858f..e21a1520a75 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=1
+revision=2
 archs=noarch
 wrksrc="service_identity-${version}"
 build_style=python-module

From 9a538d41d8b848da9da43cd5d6f80428b7208be8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 479/872] setconf: rebuild for Python 3.8.

---
 srcpkgs/setconf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/setconf/template b/srcpkgs/setconf/template
index a3d22376a5b..1911c558c77 100644
--- a/srcpkgs/setconf/template
+++ b/srcpkgs/setconf/template
@@ -1,7 +1,7 @@
 # Template file for 'setconf'
 pkgname=setconf
 version=0.7.6
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="setconf.py"

From aacff3894cc42a49ab1becc06f64f23197302443 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 480/872] python-setproctitle: rebuild for Python 3.8.

---
 srcpkgs/python-setproctitle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setproctitle/template b/srcpkgs/python-setproctitle/template
index d0d41ae888d..c47e3a9db53 100644
--- a/srcpkgs/python-setproctitle/template
+++ b/srcpkgs/python-setproctitle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setproctitle'
 pkgname=python-setproctitle
 version=1.1.10
-revision=5
+revision=6
 wrksrc="setproctitle-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e2b8c2ac8d355cdb0f221b80ab39e2ef92beb3e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 481/872] python-setuptools: rebuild for Python 3.8.

---
 srcpkgs/python-setuptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setuptools/template b/srcpkgs/python-setuptools/template
index 382a9b45bcd..a172f8e8e09 100644
--- a/srcpkgs/python-setuptools/template
+++ b/srcpkgs/python-setuptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setuptools'
 pkgname=python-setuptools
 version=41.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python-module

From 5feb793ba33633318f41644f84b5ffd5428e2d4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 482/872] python-sh: rebuild for Python 3.8.

---
 srcpkgs/python-sh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sh/template b/srcpkgs/python-sh/template
index 1826986b25c..76985dc1f01 100644
--- a/srcpkgs/python-sh/template
+++ b/srcpkgs/python-sh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sh'
 pkgname=python-sh
 version=1.12.14
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From f0cfe151eea6fcf86d1196385a1ac0057a65ab48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 483/872] python-shapely: rebuild for Python 3.8.

---
 srcpkgs/python-shapely/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-shapely/template b/srcpkgs/python-shapely/template
index 25cc875a02c..114726838f9 100644
--- a/srcpkgs/python-shapely/template
+++ b/srcpkgs/python-shapely/template
@@ -1,7 +1,7 @@
 # Template file for 'python-shapely'
 pkgname=python-shapely
 version=1.7a1
-revision=2
+revision=3
 wrksrc="Shapely-${version}"
 build_style=python-module
 pycompile_module="shapely"

From 0908618383925caf43243de8097dbf6491149f8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 484/872] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index d552ce8432d..1f9c8043b46 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=4
+revision=5
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From 14af86f199e28c6eae170b10c1c662bd0184b73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 485/872] shiboken2: rebuild for Python 3.8.

---
 srcpkgs/shiboken2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken2/template b/srcpkgs/shiboken2/template
index 394d9ba4f94..a08edf3f2a0 100644
--- a/srcpkgs/shiboken2/template
+++ b/srcpkgs/shiboken2/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken2'
 pkgname=shiboken2
 version=5.11.2
-revision=2
+revision=3
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From 9ea535c3baf70c69a2bbe07d057742af1877d648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 486/872] python3-shodan: rebuild for Python 3.8.

---
 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 858a0b921f8..033b5a269ff 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.19.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="shodan-python-${version}"
 build_style=python3-module

From 76805ea236fc7f4ecd5948a492413602efff91e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 487/872] python3-signedjson: rebuild for Python 3.8.

---
 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 6f6fb339fd2..d8f9b06b22f 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-signedjson-${version}"
 build_style=python3-module

From 12e9d209470a13cdd9063e5544ffd00c5952138e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 488/872] python-simplebayes: rebuild for Python 3.8.

---
 srcpkgs/python-simplebayes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplebayes/template b/srcpkgs/python-simplebayes/template
index e76b94ad549..6c95222fa7e 100644
--- a/srcpkgs/python-simplebayes/template
+++ b/srcpkgs/python-simplebayes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplebayes'
 pkgname=python-simplebayes
 version=1.5.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="simplebayes-${version}"
 build_style=python-module

From d1ad830144a3e370bbac6e82affb1d06805dfdbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 489/872] python-simplegeneric: rebuild for Python 3.8.

---
 srcpkgs/python-simplegeneric/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplegeneric/template b/srcpkgs/python-simplegeneric/template
index 3dc4e1dda94..f352387fa1f 100644
--- a/srcpkgs/python-simplegeneric/template
+++ b/srcpkgs/python-simplegeneric/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplegeneric'
 pkgname=python-simplegeneric
 version=0.8.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="simplegeneric-${version}"
 build_style=python-module

From f6d990c1a1436b305f8b5af6f58c1f6430d96dc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 490/872] python-simplejson: rebuild for Python 3.8.

---
 srcpkgs/python-simplejson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplejson/template b/srcpkgs/python-simplejson/template
index b453ae952ba..1b8523d0d46 100644
--- a/srcpkgs/python-simplejson/template
+++ b/srcpkgs/python-simplejson/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplejson'
 pkgname=python-simplejson
 version=3.16.1
-revision=2
+revision=3
 wrksrc="simplejson-${version}"
 build_style=python-module
 pycompile_module="simplejson"

From b6f0878a2894ffdd731251a64a26cb1ddf40038a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 491/872] sip: rebuild for Python 3.8.

---
 srcpkgs/sip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sip/template b/srcpkgs/sip/template
index 9d09b823bb6..0e8a81000b1 100644
--- a/srcpkgs/sip/template
+++ b/srcpkgs/sip/template
@@ -1,7 +1,7 @@
 # Template file for 'sip'
 pkgname=sip
 version=4.19.18
-revision=1
+revision=2
 wrksrc="sip-${version}"
 hostmakedepends="python-devel python3-devel"
 makedepends="${hostmakedepends}"

From 5f24e47fb2b044495bbf0ee108d18220ad3b3bd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 492/872] python-six: rebuild for Python 3.8.

---
 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 c6d91f5ece9..a25323caa2a 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.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="six-${version}"
 build_style=python-module

From 09784cf129c5a66b731964fcda119a53dd9dbb7b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 493/872] python3-slixmpp: rebuild for Python 3.8.

---
 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 db367c3d0ab..cbbde6f394b 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.4.2
-revision=1
+revision=2
 wrksrc="slixmpp-${version}"
 build_style=python3-module
 pycompile_module="slixmpp"

From 5e4eb88ccd16957dc33f6923ae3a72151385e9ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 494/872] python3-slugify: rebuild for Python 3.8.

---
 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 44d37f2aed7..012bb98f063 100644
--- a/srcpkgs/python3-slugify/template
+++ b/srcpkgs/python3-slugify/template
@@ -3,7 +3,7 @@ pkgname=python3-slugify
 # Please don't update. Only required by Transifx-client,
 # doesn't work with newer versions
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-slugify-${version}"
 build_style=python3-module

From 3673d2d0b57421bb69e3ed7407630c26169fab96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 495/872] python-smbc: rebuild for Python 3.8.

---
 srcpkgs/python-smbc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smbc/template b/srcpkgs/python-smbc/template
index abc745f8982..6a280139a25 100644
--- a/srcpkgs/python-smbc/template
+++ b/srcpkgs/python-smbc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smbc'
 pkgname=python-smbc
 version=1.0.16
-revision=1
+revision=2
 wrksrc="pysmbc-${version}"
 build_style=python-module
 pycompile_module="smbc"

From 2e7eca88dff9a562419fb01bfafbdaf55a6c2bd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 496/872] python-smmap: rebuild for Python 3.8.

---
 srcpkgs/python-smmap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smmap/template b/srcpkgs/python-smmap/template
index 4aa0c37ff40..8c8ea952285 100644
--- a/srcpkgs/python-smmap/template
+++ b/srcpkgs/python-smmap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smmap'
 pkgname=python-smmap
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="smmap-${version}"
 build_style=python-module

From fd787d6092a892885c1a37ff836d919c3268746b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 497/872] python-snakeoil: rebuild for Python 3.8.

---
 srcpkgs/python-snakeoil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snakeoil/template b/srcpkgs/python-snakeoil/template
index 9c98461c555..79e964d9254 100644
--- a/srcpkgs/python-snakeoil/template
+++ b/srcpkgs/python-snakeoil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snakeoil'
 pkgname=python-snakeoil
 version=0.7.5
-revision=2
+revision=3
 wrksrc="snakeoil-${version}"
 build_style=python-module
 pycompile_module="snakeoil"

From c023c48bda41f4e9b16718923037b0abc4c9cc57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 498/872] python-snappy: rebuild for Python 3.8.

---
 srcpkgs/python-snappy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snappy/template b/srcpkgs/python-snappy/template
index ac386f64fae..b1870cbe681 100644
--- a/srcpkgs/python-snappy/template
+++ b/srcpkgs/python-snappy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snappy'
 pkgname=python-snappy
 version=0.5.4
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="snappy"
 hostmakedepends="python-setuptools python3-setuptools"

From cf3b5c203b490e3aa45e74d0cef8b0d0c4d9cbd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 499/872] python-snowballstemmer: rebuild for Python 3.8.

---
 srcpkgs/python-snowballstemmer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snowballstemmer/template b/srcpkgs/python-snowballstemmer/template
index 6c21632cffa..221478860e5 100644
--- a/srcpkgs/python-snowballstemmer/template
+++ b/srcpkgs/python-snowballstemmer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snowballstemmer'
 pkgname=python-snowballstemmer
 version=1.2.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="snowballstemmer-${version}"
 build_style=python-module

From ebbd083848ced4227417bedacb81db1e46b3b0d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 500/872] python-socketIO-client: rebuild for Python 3.8.

---
 srcpkgs/python-socketIO-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-socketIO-client/template b/srcpkgs/python-socketIO-client/template
index 32fdac4117d..9495d7cf40b 100644
--- a/srcpkgs/python-socketIO-client/template
+++ b/srcpkgs/python-socketIO-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-socketIO-client'
 pkgname=python-socketIO-client
 version=0.7.2
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="socketIO_client"

From bf4912c1b4d342f253c99ee2ff30408cc72ef150 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 501/872] python3-sortedcontainers: rebuild for Python 3.8.

---
 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 2b531ded9b6..41d87d4ebd0 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.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="sortedcontainers-${version}"
 build_style=python3-module

From d111b9221a51cf160ffadb598d8ab186bac3562f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 502/872] python-soupsieve: rebuild for Python 3.8.

---
 srcpkgs/python-soupsieve/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-soupsieve/template b/srcpkgs/python-soupsieve/template
index 586553ca759..63b65c5910f 100644
--- a/srcpkgs/python-soupsieve/template
+++ b/srcpkgs/python-soupsieve/template
@@ -1,7 +1,7 @@
 # Template file for 'python-soupsieve'
 pkgname=python-soupsieve
 version=1.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="soupsieve-${version}"
 build_style=python-module

From 505955408532e39107891c66bb40c986d8a5da3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 503/872] python3-spake2: rebuild for Python 3.8.

---
 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 ff83afed1d6..dc0cdced747 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=1
+revision=2
 archs=noarch
 wrksrc="python-spake2-${version}"
 build_style=python3-module

From ed28cd6c33b5a607891182e27d4edc4b33e42c75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 504/872] python-sphinx_rtd_theme: rebuild for Python 3.8.

---
 srcpkgs/python-sphinx_rtd_theme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinx_rtd_theme/template b/srcpkgs/python-sphinx_rtd_theme/template
index 90def1c9d1d..ebd4f13da8f 100644
--- a/srcpkgs/python-sphinx_rtd_theme/template
+++ b/srcpkgs/python-sphinx_rtd_theme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinx_rtd_theme'
 pkgname=python-sphinx_rtd_theme
 version=0.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinx_rtd_theme-${version}"
 build_style=python-module

From dc5c184f3eb8653ed7620ead5c8c28a67daed07d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 505/872] python-sphinxcontrib: rebuild for Python 3.8.

---
 srcpkgs/python-sphinxcontrib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib/template b/srcpkgs/python-sphinxcontrib/template
index ce3befc56d7..c6789cc77f5 100644
--- a/srcpkgs/python-sphinxcontrib/template
+++ b/srcpkgs/python-sphinxcontrib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib'
 pkgname=python-sphinxcontrib
 version=1.0
-revision=2
+revision=3
 archs=noarch
 create_wrksrc=yes
 pycompile_module="sphinxcontrib"

From 044129ada15eeb9695b554976702e8af049dcfd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 506/872] python-sphinxcontrib-websupport: rebuild for Python
 3.8.

---
 srcpkgs/python-sphinxcontrib-websupport/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib-websupport/template b/srcpkgs/python-sphinxcontrib-websupport/template
index 2236e50b25b..5387dec6519 100644
--- a/srcpkgs/python-sphinxcontrib-websupport/template
+++ b/srcpkgs/python-sphinxcontrib-websupport/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib-websupport'
 pkgname=python-sphinxcontrib-websupport
 version=1.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinxcontrib-websupport-${version}"
 build_style=python-module

From d4fb3b78447ca7349e0a94033b436c3e0caa5dc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 507/872] python-sqlalchemy-migrate: rebuild for Python 3.8.

---
 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 cfdf6166695..bb002660c0f 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=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 863a48d9543b2461c699350ad32bb2ae925e30c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 508/872] python-sqlparse: rebuild for Python 3.8.

---
 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 29a477db392..0f8c6f8ea2e 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=1
+revision=2
 archs=noarch
 wrksrc="sqlparse-${version}"
 build_style=python-module

From b477355bf26b723b8ab7cab61902be1e4aaee7bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 509/872] python-stem: rebuild for Python 3.8.

---
 srcpkgs/python-stem/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index e04ae0a848c..e16e79d84bb 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stem'
 pkgname=python-stem
 version=1.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stem-${version/b/}"
 build_style=python-module

From 82d435bdfc12ea7b4a3dabd17da5113470bffe26 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 510/872] python-stevedore: rebuild for Python 3.8.

---
 srcpkgs/python-stevedore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stevedore/template b/srcpkgs/python-stevedore/template
index 281538211af..4f781304d3f 100644
--- a/srcpkgs/python-stevedore/template
+++ b/srcpkgs/python-stevedore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stevedore'
 pkgname=python-stevedore
 version=1.30.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stevedore-${version}"
 build_style=python-module

From 2afe8f7a4ce71437484d9258f44ead34ae2f6647 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 511/872] python-stormssh: rebuild for Python 3.8.

---
 srcpkgs/python-stormssh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stormssh/template b/srcpkgs/python-stormssh/template
index 250e838e582..11f63f67bba 100644
--- a/srcpkgs/python-stormssh/template
+++ b/srcpkgs/python-stormssh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stormssh'
 pkgname=python-stormssh
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=storm-${version}
 build_style=python-module

From 754addaa6845cd505b5d744fa4e54a66dba9c4ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 512/872] python-subliminal: rebuild for Python 3.8.

---
 srcpkgs/python-subliminal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-subliminal/template b/srcpkgs/python-subliminal/template
index 035ca844880..216c11bb4c0 100644
--- a/srcpkgs/python-subliminal/template
+++ b/srcpkgs/python-subliminal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-subliminal'
 pkgname=python-subliminal
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="subliminal-${version}"
 build_style=python-module

From da488d7b04fb3b00046be4293c33ae0809dad8e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 513/872] python-sympy: rebuild for Python 3.8.

---
 srcpkgs/python-sympy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sympy/template b/srcpkgs/python-sympy/template
index 21d8cf69840..d41c8a392b0 100644
--- a/srcpkgs/python-sympy/template
+++ b/srcpkgs/python-sympy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sympy'
 pkgname=python-sympy
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="sympy-${version}"
 build_style=python-module

From 78857098e3058d7f0df7ece8be24b84196d16921 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 514/872] python-tables: rebuild for Python 3.8.

---
 srcpkgs/python-tables/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tables/template b/srcpkgs/python-tables/template
index 644ae3d1a35..5f61fe8fb88 100644
--- a/srcpkgs/python-tables/template
+++ b/srcpkgs/python-tables/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tables'
 pkgname=python-tables
 version=3.5.2
-revision=1
+revision=2
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="tables"

From 45955cd565bccabbc642dce6684af05ad7651ba5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 515/872] python3-tabulate: rebuild for Python 3.8.

---
 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 19b61edd88c..6f142077300 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="tabulate-${version}"
 build_style=python3-module

From 285f369cadcf0d14f66db8045bb3fb979e69937f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 516/872] python-tempita: rebuild for Python 3.8.

---
 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 9e7123fbd9d..c1c75ee1cac 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=3
+revision=4
 archs=noarch
 wrksrc="Tempita-${version}"
 build_style=python-module

From efa04f85df83993e48813e00587c05cd6c722387 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 517/872] python-tempora: rebuild for Python 3.8.

---
 srcpkgs/python-tempora/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tempora/template b/srcpkgs/python-tempora/template
index fa1cbd4fbd1..866d163f367 100644
--- a/srcpkgs/python-tempora/template
+++ b/srcpkgs/python-tempora/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tempora'
 pkgname=python-tempora
 version=1.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tempora-${version}"
 build_style=python-module

From 783b09196fc04d62a7e7a220ffffc941acedfeeb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 518/872] python-termcolor: rebuild for Python 3.8.

---
 srcpkgs/python-termcolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-termcolor/template b/srcpkgs/python-termcolor/template
index 877e5e59d9b..73c18fc79eb 100644
--- a/srcpkgs/python-termcolor/template
+++ b/srcpkgs/python-termcolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-termcolor'
 pkgname=python-termcolor
 version=1.1.0
-revision=5
+revision=6
 archs=noarch
 wrksrc="termcolor-${version}"
 build_style=python-module

From 469ef1b462bbb9fb2d5d97b38e357b662f5009d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 519/872] python-terminado: rebuild for Python 3.8.

---
 srcpkgs/python-terminado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-terminado/template b/srcpkgs/python-terminado/template
index cdfe6163991..d649364d88d 100644
--- a/srcpkgs/python-terminado/template
+++ b/srcpkgs/python-terminado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-terminado'
 pkgname=python-terminado
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="terminado-${version}"
 build_style=python-module

From ced3b80cce126ab9d23dd2a4bc9505e23b5a4888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 520/872] python3-terminaltables: rebuild for Python 3.8.

---
 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 60ada7ffcb6..4f781eab76d 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=1
+revision=2
 archs=noarch
 wrksrc="terminaltables-${version}"
 build_style=python3-module

From 7a90fec1dbe0347ede0762e747d8edf378bd497c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 521/872] python-testpath: rebuild for Python 3.8.

---
 srcpkgs/python-testpath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-testpath/template b/srcpkgs/python-testpath/template
index bac7270fd40..abfc59900c0 100644
--- a/srcpkgs/python-testpath/template
+++ b/srcpkgs/python-testpath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-testpath'
 pkgname=python-testpath
 version=0.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="testpath-${version}"
 build_style=python-module

From f8761f2f7116f9b2691807d35d9836a34fbbbf32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 522/872] python3-text-unidecode: rebuild for Python 3.8.

---
 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 77163d9e0b6..b3b5aa95575 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="text-unidecode-${version}"
 build_style=python3-module

From 2d2f99664b0644e22e4876b9d54048008a392289 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 523/872] python-texttable: rebuild for Python 3.8.

---
 srcpkgs/python-texttable/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-texttable/template b/srcpkgs/python-texttable/template
index a9c5ec66db1..24bac87af6a 100644
--- a/srcpkgs/python-texttable/template
+++ b/srcpkgs/python-texttable/template
@@ -1,7 +1,7 @@
 # Template file for 'python-texttable'
 pkgname=python-texttable
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="texttable-${version}"
 build_style=python-module

From c671c144e8fe81895f6995347d19725f72165b25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 524/872] python3-tinycss: rebuild for Python 3.8.

---
 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 91fda6f808d..3b4717c234e 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=1
+revision=2
 archs=noarch
 wrksrc=tinycss-${version}
 build_style=python3-module

From 9aa3e8105128dc5e3b86a83bd0ae76e7d9c9cf86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 525/872] python-tmuxp: rebuild for Python 3.8.

---
 srcpkgs/python-tmuxp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tmuxp/template b/srcpkgs/python-tmuxp/template
index 00c86730cbe..45b4a9772b2 100644
--- a/srcpkgs/python-tmuxp/template
+++ b/srcpkgs/python-tmuxp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tmuxp'
 pkgname=python-tmuxp
 version=1.5.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="tmuxp-${version}"
 build_style=python-module

From 995158f34c29d704b44eae2b32df801023781096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 526/872] python-toml: rebuild for Python 3.8.

---
 srcpkgs/python-toml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-toml/template b/srcpkgs/python-toml/template
index 0eee1b0b2c3..2fd6eaa0cea 100644
--- a/srcpkgs/python-toml/template
+++ b/srcpkgs/python-toml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-toml'
 pkgname=python-toml
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="toml-${version}"
 build_style=python-module

From 6270afd962719dd0e9b876b40ab7bf9be9936cf5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 527/872] python-tornado: rebuild for Python 3.8.

---
 srcpkgs/python-tornado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tornado/template b/srcpkgs/python-tornado/template
index 7e5700177f5..bd558d251f5 100644
--- a/srcpkgs/python-tornado/template
+++ b/srcpkgs/python-tornado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tornado'
 pkgname=python-tornado
 version=5.1.1
-revision=1
+revision=2
 wrksrc="tornado-${version}"
 build_style=python-module
 pycompile_module="tornado"

From cd9e416288ae101465f91c75453326fdead7d148 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 528/872] python-tqdm: rebuild for Python 3.8.

---
 srcpkgs/python-tqdm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tqdm/template b/srcpkgs/python-tqdm/template
index 69369bfd6b9..ef1f07127ad 100644
--- a/srcpkgs/python-tqdm/template
+++ b/srcpkgs/python-tqdm/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tqdm'
 pkgname=python-tqdm
 version=4.36.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tqdm-${version}"
 build_style=python-module

From 4ef8d34c3ab05cf43591d92220fc001007644a6d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 529/872] python-traitlets: rebuild for Python 3.8.

---
 srcpkgs/python-traitlets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-traitlets/template b/srcpkgs/python-traitlets/template
index d2d1b85edb6..797dd0268da 100644
--- a/srcpkgs/python-traitlets/template
+++ b/srcpkgs/python-traitlets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-traitlets'
 pkgname=python-traitlets
 version=4.3.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="traitlets-${version}"
 build_style=python-module

From f41edcb16535bb92b415439644ee01a61da14478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 530/872] python3-transifex-client: rebuild for Python 3.8.

---
 srcpkgs/python3-transifex-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-transifex-client/template b/srcpkgs/python3-transifex-client/template
index 77ca15313e0..5ea767b5a7d 100644
--- a/srcpkgs/python3-transifex-client/template
+++ b/srcpkgs/python3-transifex-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-transifex-client'
 pkgname=python3-transifex-client
 version=0.13.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="transifex-client-${version}"
 build_style=python3-module

From d2c27a7fe61e206ccbf655146feec32e4b13cfc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 531/872] python3-treq: rebuild for Python 3.8.

---
 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 8f210d13489..e46e1e7e7a5 100644
--- a/srcpkgs/python3-treq/template
+++ b/srcpkgs/python3-treq/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-treq'
 pkgname=python3-treq
 version=18.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="treq-${version}"
 build_style=python3-module

From 26b5427ba0e26d8712ebe081a774396e3ea39d76 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 532/872] python-ttystatus: rebuild for Python 3.8.

---
 srcpkgs/python-ttystatus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ttystatus/template b/srcpkgs/python-ttystatus/template
index 9fbefad3461..43e87ddcdf0 100644
--- a/srcpkgs/python-ttystatus/template
+++ b/srcpkgs/python-ttystatus/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ttystatus'
 pkgname=python-ttystatus
 version=0.38
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="ttystatus"

From dbf349fac2110dc33ad6d676748e46240dec1fbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 533/872] python-twitter: rebuild for Python 3.8.

---
 srcpkgs/python-twitter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-twitter/template b/srcpkgs/python-twitter/template
index c299b28dedf..e5e7194078a 100644
--- a/srcpkgs/python-twitter/template
+++ b/srcpkgs/python-twitter/template
@@ -1,7 +1,7 @@
 # Template file for 'python-twitter'
 pkgname=python-twitter
 version=3.5
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="twitter"

From 58eab12e88f689c694ef474e09d2266b77b5bcc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 534/872] python3-txacme: rebuild for Python 3.8.

---
 srcpkgs/python3-txacme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-txacme/template b/srcpkgs/python3-txacme/template
index e6becf593e7..c678addda4d 100644
--- a/srcpkgs/python3-txacme/template
+++ b/srcpkgs/python3-txacme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txacme'
 pkgname=python3-txacme
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="txacme-${version}"
 build_style=python3-module

From a1a3464258c255e0b73cbdb47e0337d3b8af473e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 535/872] python3-txaio: rebuild for Python 3.8.

---
 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 fa13338cd30..8163f5c90fd 100644
--- a/srcpkgs/python3-txaio/template
+++ b/srcpkgs/python3-txaio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txaio'
 pkgname=python3-txaio
 version=18.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="txaio-${version}"
 build_style=python3-module

From 66d08c9f4945499ccd01b127d7ec1f8cfd468dd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 536/872] python3-txtorcon: rebuild for Python 3.8.

---
 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 3018a65e457..a10ab59c582 100644
--- a/srcpkgs/python3-txtorcon/template
+++ b/srcpkgs/python3-txtorcon/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txtorcon'
 pkgname=python3-txtorcon
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="txtorcon-${version}"
 build_style=python3-module

From f3bf9db3f8b699c67eebc7fa0278fca9de892d75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 537/872] python3-typed-ast: update to 1.4.0.

---
 srcpkgs/python3-typed-ast/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-typed-ast/template b/srcpkgs/python3-typed-ast/template
index ec5b5b9df11..b38f0fe065c 100644
--- a/srcpkgs/python3-typed-ast/template
+++ b/srcpkgs/python3-typed-ast/template
@@ -1,8 +1,8 @@
 # Template file for 'python3-typed-ast'
 pkgname=python3-typed-ast
-version=1.3.4
+version=1.4.0
 revision=1
-wrksrc="typed-ast-${version}"
+wrksrc="typed_ast-${version}"
 build_style=python3-module
 pycompile_module="typed_ast"
 hostmakedepends="python3-devel python3-setuptools"
@@ -11,6 +11,6 @@ short_desc="Ast module with type comment support"
 maintainer="whoami <whoami@systemli.org>"
 license="Apache-2.0"
 homepage="https://github.com/python/typed_ast"
-distfiles="${PYPI_SITE}/t/typed-ast/typed-ast-${version}.tar.gz"
-checksum=68c362848d9fb71d3c3e5f43c09974a0ae319144634e7a47db62f0f2a54a7fa7
+distfiles="${PYPI_SITE}/t/typed-ast/typed_ast-${version}.tar.gz"
+checksum=66480f95b8167c9c5c5c87f32cf437d585937970f3fc24386f313a4c97b44e34
 nocross="https://travis-ci.org/void-linux/void-packages/jobs/509366923#L1009"

From d977434aa35e2c6bc03c5db7514f5409eb21a2a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 538/872] python3-typing_extensions: rebuild for Python 3.8.

---
 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 ab96df4eb2d..605af46216d 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=3.6.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module

From d1368b489e196a385edf9b15df4da773505f8a5e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 539/872] python-tzlocal: rebuild for Python 3.8.

---
 srcpkgs/python-tzlocal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tzlocal/template b/srcpkgs/python-tzlocal/template
index 396eada3982..684d2a21b40 100644
--- a/srcpkgs/python-tzlocal/template
+++ b/srcpkgs/python-tzlocal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tzlocal'
 pkgname=python-tzlocal
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tzlocal-${version}"
 build_style=python-module

From 0ec72579de99edead05daf85e7cac5e0e2ab641b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 540/872] python-unittest-mixins: rebuild for Python 3.8.

---
 srcpkgs/python-unittest-mixins/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-unittest-mixins/template b/srcpkgs/python-unittest-mixins/template
index 6f7c7204112..2ff5c497523 100644
--- a/srcpkgs/python-unittest-mixins/template
+++ b/srcpkgs/python-unittest-mixins/template
@@ -1,7 +1,7 @@
 # Template file for 'python-unittest-mixins'
 pkgname=python-unittest-mixins
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From a5e3289470d7f0e25e09237aa9463d28817818c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 541/872] python3-unpaddedbase64: rebuild for Python 3.8.

---
 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 37df2c1d642..06a47db3b64 100644
--- a/srcpkgs/python3-unpaddedbase64/template
+++ b/srcpkgs/python3-unpaddedbase64/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-unpaddedbase64'
 pkgname=python3-unpaddedbase64
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-unpaddedbase64-${version}"
 build_style=python3-module

From 13043751d10b741546f419a7e9089a5b252fd5c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 542/872] python-urbandict: rebuild for Python 3.8.

---
 srcpkgs/python-urbandict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urbandict/template b/srcpkgs/python-urbandict/template
index ff09e963fa7..ed359c744be 100644
--- a/srcpkgs/python-urbandict/template
+++ b/srcpkgs/python-urbandict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urbandict'
 pkgname=python-urbandict
 version=0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="urbandict-${version}"
 build_style=python-module

From a15bf0893e7a65a070751099b3ddca9172b49912 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 543/872] python-uritemplate: rebuild for Python 3.8.

---
 srcpkgs/python-uritemplate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-uritemplate/template b/srcpkgs/python-uritemplate/template
index 7a530fee03b..cdcda419efe 100644
--- a/srcpkgs/python-uritemplate/template
+++ b/srcpkgs/python-uritemplate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-uritemplate'
 pkgname=python-uritemplate
 version=3.0.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 43c97a015ea83b2b0934ea864a84b324ec83f31a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 544/872] python3-urlgrabber: rebuild for Python 3.8.

---
 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 087087d5ed1..eef67c8e13c 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=1
+revision=2
 archs=noarch
 wrksrc="urlgrabber-${version}"
 build_style=python3-module

From 016dbcff2bb0c1709814f4da4fe214d551e3d4cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 545/872] python-urllib3: rebuild for Python 3.8.

---
 srcpkgs/python-urllib3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urllib3/template b/srcpkgs/python-urllib3/template
index 8056518c9c1..1ff21f7555d 100644
--- a/srcpkgs/python-urllib3/template
+++ b/srcpkgs/python-urllib3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urllib3'
 pkgname=python-urllib3
 version=1.25.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="urllib3-${version}"
 build_style=python-module

From 9629da352be38a0f14bcb680c7fc05dd1d1167f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 546/872] python-urwid: rebuild for Python 3.8.

---
 srcpkgs/python-urwid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwid/template b/srcpkgs/python-urwid/template
index ae6722b1135..7adf8b76b96 100644
--- a/srcpkgs/python-urwid/template
+++ b/srcpkgs/python-urwid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwid'
 pkgname=python-urwid
 version=2.0.1
-revision=2
+revision=3
 wrksrc="urwid-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"

From 4be978b1173afce93e7ff39f6e577059f4c7dd4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 547/872] python-urwidtrees: rebuild for Python 3.8.

---
 srcpkgs/python-urwidtrees/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwidtrees/template b/srcpkgs/python-urwidtrees/template
index be0e906addf..62d214489e2 100644
--- a/srcpkgs/python-urwidtrees/template
+++ b/srcpkgs/python-urwidtrees/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwidtrees'
 pkgname=python-urwidtrees
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="urwidtrees-${version}"
 build_style=python-module

From c9f3ad0ed793593060952aa365e888244dfd07e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 548/872] python3-usb: rebuild for Python 3.8.

---
 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 a081ee5ba76..d26c24df669 100644
--- a/srcpkgs/python3-usb/template
+++ b/srcpkgs/python3-usb/template
@@ -2,7 +2,7 @@
 pkgname=python3-usb
 _pkgname=pyusb
 version=1.0.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From 454ef49754696a81de599e7fa6cf9cab31ccbc31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 549/872] python-utils: rebuild for Python 3.8.

---
 srcpkgs/python-utils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-utils/template b/srcpkgs/python-utils/template
index e881e70c0f0..6745df121a6 100644
--- a/srcpkgs/python-utils/template
+++ b/srcpkgs/python-utils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-utils'
 pkgname=python-utils
 version=2.3.0
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 wrksrc="python-utils-${version}"

From eef5c75b93453defdcb8def5b34c20f20cda0fc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 550/872] python3-validators: rebuild for Python 3.8.

---
 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 29b9fc74c30..6d9da94c4bb 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.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="validators-${version}"
 build_style=python3-module

From 53ce0ff21de84f26405d0314002bb11e85903128 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 551/872] python3-vdf: rebuild for Python 3.8.

---
 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 44c635ecdd6..88bd521beaa 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.2
-revision=1
+revision=2
 wrksrc=vdf-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From f720d6ed8267fa4b27a7ce83dd3a265a18cd13b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 552/872] python-vint: rebuild for Python 3.8.

---
 srcpkgs/python-vint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vint/template b/srcpkgs/python-vint/template
index 4ca693f7eb2..62c663bf18e 100644
--- a/srcpkgs/python-vint/template
+++ b/srcpkgs/python-vint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vint'
 pkgname=python-vint
 version=0.3.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="vim-vint-${version}"
 build_style=python-module

From 573eadbcb861065b712050cf6e7fd200c33a73b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 553/872] python-virtualenv: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv/template b/srcpkgs/python-virtualenv/template
index 1f9166e79a2..cdeda28c53e 100644
--- a/srcpkgs/python-virtualenv/template
+++ b/srcpkgs/python-virtualenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv'
 pkgname=python-virtualenv
 version=16.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="virtualenv-${version}"
 build_style=python-module

From 25eda2949787b488dfc7cfc6512d02a4971d4f96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 554/872] python-virtualenv-clone: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv-clone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv-clone/template b/srcpkgs/python-virtualenv-clone/template
index 3c9f601bc6e..273b9ddf6d3 100644
--- a/srcpkgs/python-virtualenv-clone/template
+++ b/srcpkgs/python-virtualenv-clone/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv-clone'
 pkgname=python-virtualenv-clone
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5a922ea064a496fb01ff970e45a43ef51561b373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 555/872] python3-virustotal-api: rebuild for Python 3.8.

---
 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 2bc6592c91f..fc362c03b39 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=1
+revision=2
 archs=noarch
 wrksrc="virustotal-api-${version}"
 build_style=python3-module

From 65deaff01a3a9a5d82641fe121fdb2964b75346f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 556/872] python-vispy: rebuild for Python 3.8.

---
 srcpkgs/python-vispy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vispy/template b/srcpkgs/python-vispy/template
index b757e5a271f..624ade6f12b 100644
--- a/srcpkgs/python-vispy/template
+++ b/srcpkgs/python-vispy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vispy'
 pkgname=python-vispy
 version=0.6.1
-revision=1
+revision=2
 wrksrc="vispy-${version}"
 build_style=python-module
 pycompile_module="vispy"

From 5e47d846dedfdbef61bd10a33928ce13b600c648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 557/872] python-vobject: rebuild for Python 3.8.

---
 srcpkgs/python-vobject/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vobject/template b/srcpkgs/python-vobject/template
index 54f575aa1a1..2c1c215527c 100644
--- a/srcpkgs/python-vobject/template
+++ b/srcpkgs/python-vobject/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vobject'
 pkgname=python-vobject
 version=0.9.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="vobject-${version}"
 build_style=python-module

From 8125ffd3d4822ca6bf81508ed8b859e079cd9437 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 558/872] python-voluptuous: rebuild for Python 3.8.

---
 srcpkgs/python-voluptuous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-voluptuous/template b/srcpkgs/python-voluptuous/template
index fd44ae2e324..1dd5de27491 100644
--- a/srcpkgs/python-voluptuous/template
+++ b/srcpkgs/python-voluptuous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-voluptuous'
 pkgname=python-voluptuous
 version=0.11.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="voluptuous-${version}"
 build_style=python-module

From 608126ee8043f8d45a8e56608f99e0df6cc2ee9e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 559/872] python-watchdog: rebuild for Python 3.8.

---
 srcpkgs/python-watchdog/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchdog/template b/srcpkgs/python-watchdog/template
index f6027c3b5ca..2eea6397f00 100644
--- a/srcpkgs/python-watchdog/template
+++ b/srcpkgs/python-watchdog/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchdog'
 pkgname=python-watchdog
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="watchdog-${version}"
 build_style=python-module

From a54fc09b58f905a0ed5cd5892db67b7c4ea6ae9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 560/872] python-watchman: rebuild for Python 3.8.

---
 srcpkgs/python-watchman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchman/template b/srcpkgs/python-watchman/template
index 4c41c275ca2..97400668d64 100644
--- a/srcpkgs/python-watchman/template
+++ b/srcpkgs/python-watchman/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchman'
 pkgname=python-watchman
 version=1.4.1
-revision=2
+revision=3
 wrksrc="pywatchman-${version}"
 build_style=python-module
 pycompile_module="pywatchman"

From 4dd6084e6c30a25fb4ff3c44bf2c751eaab07715 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 561/872] python-wcwidth: rebuild for Python 3.8.

---
 srcpkgs/python-wcwidth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wcwidth/template b/srcpkgs/python-wcwidth/template
index 34bc22cbcb6..8ec6d17450c 100644
--- a/srcpkgs/python-wcwidth/template
+++ b/srcpkgs/python-wcwidth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wcwidth'
 pkgname=python-wcwidth
 version=0.1.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="wcwidth-${version}"
 build_style=python-module

From cafaf5868e58cb26c2cdd29d0d1b52f9cf1e31ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 562/872] python-webassets: rebuild for Python 3.8.

---
 srcpkgs/python-webassets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webassets/template b/srcpkgs/python-webassets/template
index 3ad5475bd17..789be9684f7 100644
--- a/srcpkgs/python-webassets/template
+++ b/srcpkgs/python-webassets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webassets'
 pkgname=python-webassets
 version=0.12.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 88d8fa4eb1ca72857d5a1cab8a4f7495a9af1595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 563/872] python-webencodings: rebuild for Python 3.8.

---
 srcpkgs/python-webencodings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webencodings/template b/srcpkgs/python-webencodings/template
index 5a05af10835..f047a9e3c52 100644
--- a/srcpkgs/python-webencodings/template
+++ b/srcpkgs/python-webencodings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webencodings'
 pkgname=python-webencodings
 version=0.5.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="webencodings-${version}"
 build_style=python-module

From 81c9d07c0e756cc87a6cd2c444c0b2f0987463da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 564/872] python-websocket-client: rebuild for Python 3.8.

---
 srcpkgs/python-websocket-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-websocket-client/template b/srcpkgs/python-websocket-client/template
index 8aa276655cb..3df8ab42b36 100644
--- a/srcpkgs/python-websocket-client/template
+++ b/srcpkgs/python-websocket-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-websocket-client'
 pkgname=python-websocket-client
 version=0.56.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="websocket_client-${version}"
 build_style=python-module

From 97fc927913b3f2682b7ddf73982008e9fdc1e42d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 565/872] python-wheel: rebuild for Python 3.8.

---
 srcpkgs/python-wheel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wheel/template b/srcpkgs/python-wheel/template
index 11c50bd65e6..11aeaf42316 100644
--- a/srcpkgs/python-wheel/template
+++ b/srcpkgs/python-wheel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wheel'
 pkgname=python-wheel
 version=0.32.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="wheel-${version}"
 build_style=python-module

From 861d20f2f112cd829f2f06f746680e2c034a812f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 566/872] python-wikipedia: rebuild for Python 3.8.

---
 srcpkgs/python-wikipedia/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wikipedia/template b/srcpkgs/python-wikipedia/template
index e6ebf65f7c2..f8a69755b74 100644
--- a/srcpkgs/python-wikipedia/template
+++ b/srcpkgs/python-wikipedia/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wikipedia'
 pkgname=python-wikipedia
 version=1.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="wikipedia-${version}"
 build_style=python-module

From c58e9b08de69bd19aa3bcf91ec42d1b626a2a6bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 567/872] python-wrapt: rebuild for Python 3.8.

---
 srcpkgs/python-wrapt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wrapt/template b/srcpkgs/python-wrapt/template
index a3a237aa08d..c2d2850bf5a 100644
--- a/srcpkgs/python-wrapt/template
+++ b/srcpkgs/python-wrapt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wrapt'
 pkgname=python-wrapt
 version=1.10.11
-revision=3
+revision=4
 wrksrc="wrapt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From f65cbaf6b92acb78d54d3b498924285bce64fb66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 568/872] python-wsproto: rebuild for Python 3.8.

---
 srcpkgs/python-wsproto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wsproto/template b/srcpkgs/python-wsproto/template
index 88b08f796d4..a93a799be0a 100644
--- a/srcpkgs/python-wsproto/template
+++ b/srcpkgs/python-wsproto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wsproto'
 pkgname=python-wsproto
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="wsproto-${version}"
 build_style=python-module

From 1b60fb796f8ac377a2e31dc0503df215c27fc59e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 569/872] python-xapp: rebuild for Python 3.8.

---
 srcpkgs/python-xapp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xapp/template b/srcpkgs/python-xapp/template
index 9b6938113f2..798041eb946 100644
--- a/srcpkgs/python-xapp/template
+++ b/srcpkgs/python-xapp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xapp'
 pkgname=python-xapp
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="xapp"

From 415bec8de0abe2772c407df9db650bd06ba122ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 570/872] python-xdg: rebuild for Python 3.8.

---
 srcpkgs/python-xdg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xdg/template b/srcpkgs/python-xdg/template
index afa6c180043..4e819c8bec7 100644
--- a/srcpkgs/python-xdg/template
+++ b/srcpkgs/python-xdg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xdg'
 pkgname=python-xdg
 version=0.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyxdg-${version}"
 build_style=python-module

From 4518feeb499caa6631ef29ead0439c5bcc67a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 571/872] python-xlib: rebuild for Python 3.8.

---
 srcpkgs/python-xlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xlib/template b/srcpkgs/python-xlib/template
index 1f97c4117d4..e67d1d82e73 100644
--- a/srcpkgs/python-xlib/template
+++ b/srcpkgs/python-xlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xlib'
 pkgname=python-xlib
 version=0.25
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="Xlib"

From 1cef928049b5216468e701acce714fc14d79694f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 572/872] python-xmldiff: rebuild for Python 3.8.

---
 srcpkgs/python-xmldiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmldiff/template b/srcpkgs/python-xmldiff/template
index a0a8004ea7b..4f3cc2d27b7 100644
--- a/srcpkgs/python-xmldiff/template
+++ b/srcpkgs/python-xmldiff/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmldiff'
 pkgname=python-xmldiff
 version=2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmldiff-${version}"
 build_style=python-module

From cefcbea2ec7904b0c1ad16ec32963bf430b27c4a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 573/872] python-xmltodict: rebuild for Python 3.8.

---
 srcpkgs/python-xmltodict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmltodict/template b/srcpkgs/python-xmltodict/template
index a48e6d46aa6..b3d7ef042e8 100644
--- a/srcpkgs/python-xmltodict/template
+++ b/srcpkgs/python-xmltodict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmltodict'
 pkgname=python-xmltodict
 version=0.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmltodict-${version}"
 build_style=python-module

From 889d5fe9fe9f1830bec336ac52bd8bd32f47f0a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 574/872] python-yaml: rebuild for Python 3.8.

---
 srcpkgs/python-yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yaml/template b/srcpkgs/python-yaml/template
index 8a7caf1d99e..e3bad0ae59b 100644
--- a/srcpkgs/python-yaml/template
+++ b/srcpkgs/python-yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yaml'
 pkgname=python-yaml
 version=5.1.2
-revision=1
+revision=2
 wrksrc="PyYAML-${version}"
 build_style=python-module
 pycompile_module="yaml"

From 1b3e89ca272ae28a62064bf83eaff84332307682 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 575/872] python-yamllint: rebuild for Python 3.8.

---
 srcpkgs/python-yamllint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yamllint/template b/srcpkgs/python-yamllint/template
index 1a05e1043bb..d0b51ba637a 100644
--- a/srcpkgs/python-yamllint/template
+++ b/srcpkgs/python-yamllint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yamllint'
 pkgname=python-yamllint
 version=1.15.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="yamllint-${version}"
 build_style=python-module

From b233bcb50542e39ba02899ef3d1b833e385204e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 576/872] python3-yarl: rebuild for Python 3.8.

---
 srcpkgs/python3-yarl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-yarl/template b/srcpkgs/python3-yarl/template
index 222f176cfcf..ecb79a3cc9c 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.3.0
-revision=2
+revision=3
 wrksrc="yarl-${version}"
 build_style=python3-module
 pycompile_module="yarl"

From 484c2559f18644c63342db467c703e2e998e89b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 577/872] python-zc.lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-zc.lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zc.lockfile/template b/srcpkgs/python-zc.lockfile/template
index cb0bee99506..b77071af04f 100644
--- a/srcpkgs/python-zc.lockfile/template
+++ b/srcpkgs/python-zc.lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zc.lockfile'
 pkgname=python-zc.lockfile
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 364e398c8dd7e3dd141ceb1c22626ecf2a5b9b32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 578/872] python3-zeroconf: rebuild for Python 3.8.

---
 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 497a8bc6b69..dda37bd3dc4 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.23.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-zeroconf-${version}"
 build_style=python3-module

From 22b5d6236d8f0ff0050135b2e77eca608519b1ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 579/872] python3-zipp: rebuild for Python 3.8.

---
 srcpkgs/python3-zipp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-zipp/template b/srcpkgs/python3-zipp/template
index 8445c10825c..ba682915beb 100644
--- a/srcpkgs/python3-zipp/template
+++ b/srcpkgs/python3-zipp/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-zipp'
 pkgname=python3-zipp
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="zipp-${version}"
 build_style=python3-module

From c5c37d6e890a553e458333e610ab56b1a5c9b516 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 580/872] python-zipstream: rebuild for Python 3.8.

---
 srcpkgs/python-zipstream/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zipstream/template b/srcpkgs/python-zipstream/template
index 89079e21b22..2c7390127ac 100644
--- a/srcpkgs/python-zipstream/template
+++ b/srcpkgs/python-zipstream/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zipstream'
 pkgname=python-zipstream
 version=1.1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="python-zipstream-${version}"
 build_style=python-module

From bc31e25a00839c9d3cc5ac70edf0485ee4b21d4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 581/872] python3-zope.cachedescriptors: rebuild for Python
 3.8.

---
 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 bdd5ef41e21..1f1fae5b27b 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.3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="zope.cachedescriptors-${version}"
 build_style=python3-module

From 40a63988f3c2db41391f0a7ab6cde24a9b79ed05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 582/872] python-zope.component: rebuild for Python 3.8.

---
 srcpkgs/python-zope.component/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.component/template b/srcpkgs/python-zope.component/template
index 7cea5b9d71d..66ef109a4aa 100644
--- a/srcpkgs/python-zope.component/template
+++ b/srcpkgs/python-zope.component/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.component'
 pkgname=python-zope.component
 version=4.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 799496c35db93c88e6d00e4b41eeca8b4af5b188 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 583/872] python-zope.event: rebuild for Python 3.8.

---
 srcpkgs/python-zope.event/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.event/template b/srcpkgs/python-zope.event/template
index 3c7fb8dfd6e..6518cb4529b 100644
--- a/srcpkgs/python-zope.event/template
+++ b/srcpkgs/python-zope.event/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.event'
 pkgname=python-zope.event
 version=4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d77b16ecad39877131af8a9c01ea925b33737b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 584/872] python-zope.interface: rebuild for Python 3.8.

---
 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 d3c57be85f7..1dbcbecd377 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=4.6.0
-revision=2
+revision=3
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="zope"

From e5cb80612a71c54facf607c52c7a385badeba668 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 585/872] python3-pivy: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-pivy/patches/73cd928f.patch | 36 +++++++++++++++++++++
 srcpkgs/python3-pivy/template               |  2 +-
 2 files changed, 37 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/python3-pivy/patches/73cd928f.patch

diff --git a/srcpkgs/python3-pivy/patches/73cd928f.patch b/srcpkgs/python3-pivy/patches/73cd928f.patch
new file mode 100644
index 00000000000..edff803822a
--- /dev/null
+++ b/srcpkgs/python3-pivy/patches/73cd928f.patch
@@ -0,0 +1,36 @@
+From 73cd928fe1a9c2abbe6f28844a7fc695ad11d7cf Mon Sep 17 00:00:00 2001
+From: Peter Lama <peterldev94@gmail.com>
+Date: Fri, 24 Aug 2018 17:25:47 -0700
+Subject: [PATCH] Fix issue #39: PyUnicode_AsUTF8 returns const char*
+
+Even with python 2, it doesn't seem like char* is needed
+
+--- Inventor/nodes/SoMarkerSet.i
++++ Inventor/nodes/SoMarkerSet.i
+@@ -5,7 +5,7 @@
+         short WIDTH, HEIGHT;
+         size.getValue(WIDTH, HEIGHT);
+         short BYTEWIDTH = (WIDTH + 7) / 2;
+-        char* coin_marker;
++        const char* coin_marker;
+ #ifdef PY_2
+         if (PyString_Check(string))
+         {
+@@ -49,4 +49,4 @@
+         delete[] bitmapbytes;
+         bitmapbytes = NULL;
+     }
+-}
+\ No newline at end of file
++}
+--- Inventor/sensors/SoSensor.i
++++ Inventor/sensors/SoSensor.i
+@@ -4,7 +4,7 @@ SoSensorPythonCB(void * data, SoSensor * sensor)
+ {
+   PyGILState_STATE gil = PyGILState_Ensure();
+   swig_type_info * swig_type = 0;
+-  char * sensor_cast_name = NULL;
++  const char * sensor_cast_name = NULL;
+   PyObject * func, * arglist;
+   PyObject * result, * pysensor;
+ 
diff --git a/srcpkgs/python3-pivy/template b/srcpkgs/python3-pivy/template
index 4a733e805e3..9caa13837e2 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.4
-revision=1
+revision=2
 wrksrc="Coin3D-${pkgname#python3-}-a84100beff22"
 build_style=python3-module
 pycompile_module="pivy"

From 7d8cfe1721327d4b8695c6abc56d012b27989c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 586/872] python-tweepy: update to 3.8.0.

---
 srcpkgs/python-tweepy/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python-tweepy/template b/srcpkgs/python-tweepy/template
index ef61039dac5..4605bbf83ea 100644
--- a/srcpkgs/python-tweepy/template
+++ b/srcpkgs/python-tweepy/template
@@ -1,6 +1,6 @@
 # Template file for 'python-tweepy'
 pkgname=python-tweepy
-version=3.7.0
+version=3.8.0
 revision=1
 archs=noarch
 wrksrc="tweepy-${version}"
@@ -14,8 +14,8 @@ license="MIT"
 homepage="https://github.com/tweepy/tweepy"
 distfiles="${PYPI_SITE}/t/tweepy/tweepy-${version}.tar.gz
  https://raw.githubusercontent.com/tweepy/tweepy/master/LICENSE>LICENSE.txt"
-checksum="fe85a79f58a01dd335968523b91c5fce760e7fe78bf25a6e71c72204fe499d0b
- deeeae0dcc22dbf108a801b8dc4e484bcc1bfb541b1a4f4615ab3e61def44fb5"
+checksum="8abd828ba51a85a2b5bb7373715d6d3bb32d18ac624e3a4db02e4ef8ab48316b
+ bf9bc5b9dcb8421bb3c342bb7fd29194688e1262b50766bd71b21a07461e74b7"
 
 post_install() {
 	vlicense ../LICENSE.txt

From 5f654f2f6a7eca9a50adb53af9037466723dd82c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 587/872] Electron-Cash: rebuild for Python 3.8.

---
 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 2db05c94832..08670c5f08d 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.0.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electroncash electroncash_gui electroncash_plugins"

From 931f125f8699e33cb16c8ed43a5e910d0056db6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 588/872] OpenLP: rebuild for Python 3.8.

---
 srcpkgs/OpenLP/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/OpenLP/template b/srcpkgs/OpenLP/template
index fb417f8d05e..ccae6d0282e 100644
--- a/srcpkgs/OpenLP/template
+++ b/srcpkgs/OpenLP/template
@@ -1,7 +1,7 @@
 # Template file for 'OpenLP'
 pkgname=OpenLP
 version=2.4.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="openlp"

From 21b02367e81c8635c88830fd008c0ba44ffcccff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 589/872] PhotoCollage: rebuild for Python 3.8.

---
 srcpkgs/PhotoCollage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/PhotoCollage/template b/srcpkgs/PhotoCollage/template
index 2c55ca87ce0..9997d1e7d98 100644
--- a/srcpkgs/PhotoCollage/template
+++ b/srcpkgs/PhotoCollage/template
@@ -1,7 +1,7 @@
 # Template file for 'PhotoCollage'
 pkgname=PhotoCollage
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="photocollage"

From 49dffe4070ca7dff3c38379b8df9d9b0d04395ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 590/872] ReText: rebuild for Python 3.8.

---
 srcpkgs/ReText/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ReText/template b/srcpkgs/ReText/template
index cc092ee6a36..a6551fbdf7c 100644
--- a/srcpkgs/ReText/template
+++ b/srcpkgs/ReText/template
@@ -1,7 +1,7 @@
 # Template file for 'ReText'
 pkgname=ReText
 version=7.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ReText"

From 225e30aaea5daebb0d4fc36c6d73424ad6fb1ec5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 591/872] SoapySDR: rebuild for Python 3.8.

---
 srcpkgs/SoapySDR/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/SoapySDR/template b/srcpkgs/SoapySDR/template
index 1bb66ce0689..bcfe45dc78a 100644
--- a/srcpkgs/SoapySDR/template
+++ b/srcpkgs/SoapySDR/template
@@ -1,7 +1,7 @@
 # Template file for 'SoapySDR'
 pkgname=SoapySDR
 version=0.7.1
-revision=1
+revision=2
 wrksrc="${pkgname}-soapy-sdr-${version}"
 build_style=cmake
 pycompile_module="SoapySDR.py"

From 2e64750e75e61296567ebb0053c46081cbab8e13 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 592/872] Solaar: rebuild for Python 3.8.

---
 srcpkgs/Solaar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Solaar/template b/srcpkgs/Solaar/template
index 2e8f4112e0e..86cab83d497 100644
--- a/srcpkgs/Solaar/template
+++ b/srcpkgs/Solaar/template
@@ -1,7 +1,7 @@
 # Template file for 'Solaar'
 pkgname=Solaar
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="hidapi logitech_receiver solaar"

From 21eb59c332d0765268a9b3a5442e4e265144a4ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 593/872] Trimage: rebuild for Python 3.8.

---
 srcpkgs/Trimage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Trimage/template b/srcpkgs/Trimage/template
index 14fc1d1bd1c..c9f4b047ccd 100644
--- a/srcpkgs/Trimage/template
+++ b/srcpkgs/Trimage/template
@@ -1,7 +1,7 @@
 # Template file for 'Trimage'
 pkgname=Trimage
 version=1.0.6
-revision=1
+revision=2
 wrksrc="Trimage-${version}"
 build_style=python3-module
 hostmakedepends="python3"

From 51428dec66979d2e47361fb2af5e7ad35acbe530 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 594/872] TwitchNotifier: rebuild for Python 3.8.

---
 srcpkgs/TwitchNotifier/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/TwitchNotifier/template b/srcpkgs/TwitchNotifier/template
index 01153bcc710..3bbba11db49 100644
--- a/srcpkgs/TwitchNotifier/template
+++ b/srcpkgs/TwitchNotifier/template
@@ -1,7 +1,7 @@
 # Template file for 'TwitchNotifier'
 pkgname=TwitchNotifier
 version=0.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-devel"
 makedepends="python3-devel"

From 18ad02f16088cf17e66f60da882ead88b4872617 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 595/872] Uranium: rebuild for Python 3.8.

---
 srcpkgs/Uranium/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Uranium/template b/srcpkgs/Uranium/template
index 193d5e211df..7a9509c2079 100644
--- a/srcpkgs/Uranium/template
+++ b/srcpkgs/Uranium/template
@@ -1,7 +1,7 @@
 # Template file for 'Uranium'
 pkgname=Uranium
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=cmake
 pycompile_module="UM"

From 1bfabd6cc63a8b03b99500dc59e362061f7549e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 596/872] afew: rebuild for Python 3.8.

---
 srcpkgs/afew/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/afew/template b/srcpkgs/afew/template
index a9156bbc902..f4b10098e66 100644
--- a/srcpkgs/afew/template
+++ b/srcpkgs/afew/template
@@ -1,7 +1,7 @@
 # Template file for 'afew'
 pkgname=afew
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="afew"

From f0695c0a0e527ead9d61cbbd52e872f5a6e7f422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 597/872] alot: rebuild for Python 3.8.

---
 srcpkgs/alot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/alot/template b/srcpkgs/alot/template
index 4ff75637282..c8e29e36297 100644
--- a/srcpkgs/alot/template
+++ b/srcpkgs/alot/template
@@ -1,7 +1,7 @@
 # Template file for 'alot'
 pkgname=alot
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="alot"

From ec032cb507b4dca0034eab7e0281dedd3b7dc418 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 598/872] ansible: rebuild for Python 3.8.

---
 srcpkgs/ansible/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ansible/template b/srcpkgs/ansible/template
index 413e6f8803e..773f890e114 100644
--- a/srcpkgs/ansible/template
+++ b/srcpkgs/ansible/template
@@ -1,7 +1,7 @@
 # Template file for 'ansible'
 pkgname=ansible
 version=2.8.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ansible"

From a97554cec966a402d73b894865fe2d37f1833cec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 599/872] apparmor: rebuild for Python 3.8.

---
 srcpkgs/apparmor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/apparmor/template b/srcpkgs/apparmor/template
index c0ef28bae03..e4f8e3fb3ae 100644
--- a/srcpkgs/apparmor/template
+++ b/srcpkgs/apparmor/template
@@ -1,7 +1,7 @@
 # Template file for 'apparmor'
 pkgname=apparmor
 version=2.13.3
-revision=1
+revision=2
 wrksrc="${pkgname}-v${version}"
 build_wrksrc=libraries/libapparmor
 build_style=gnu-configure

From 57116ea3c564f2a1852b8583df85c35aefe177a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 600/872] arandr: rebuild for Python 3.8.

---
 srcpkgs/arandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/arandr/template b/srcpkgs/arandr/template
index 71c8cbcd6ed..610dbc28bca 100644
--- a/srcpkgs/arandr/template
+++ b/srcpkgs/arandr/template
@@ -1,7 +1,7 @@
 # Template file for 'arandr'
 pkgname=arandr
 version=0.1.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenlayout"

From 4dbfc32dae63dc77f95207dc5aa5a79d26d2c9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 601/872] asciinema: rebuild for Python 3.8.

---
 srcpkgs/asciinema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/asciinema/template b/srcpkgs/asciinema/template
index 961b2756301..38b8871753c 100644
--- a/srcpkgs/asciinema/template
+++ b/srcpkgs/asciinema/template
@@ -1,7 +1,7 @@
 # Template file for 'asciinema'
 pkgname=asciinema
 version=2.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="asciinema"

From 956b672f4c6db0ea67d9ad05a8308ec5ea193930 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 602/872] attic: rebuild for Python 3.8.

---
 srcpkgs/attic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/attic/template b/srcpkgs/attic/template
index 533ef7377bc..ed454302ce4 100644
--- a/srcpkgs/attic/template
+++ b/srcpkgs/attic/template
@@ -1,7 +1,7 @@
 # Template file for 'attic'
 pkgname=attic
 version=0.16
-revision=14
+revision=15
 wrksrc="Attic-$version"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel python3-Sphinx"

From 3a21ab47b75c96c91b8447979356e5d4d4027fd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 603/872] autorandr: rebuild for Python 3.8.

---
 srcpkgs/autorandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/autorandr/template b/srcpkgs/autorandr/template
index bf38b833632..7f9796be18f 100644
--- a/srcpkgs/autorandr/template
+++ b/srcpkgs/autorandr/template
@@ -1,7 +1,7 @@
 # Template file for 'autorandr'
 pkgname=autorandr
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="autorandr.py"

From ca443f3bf2b2ea4c91fa81f47ea823293476950b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 604/872] avideo: rebuild for Python 3.8.

---
 srcpkgs/avideo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/avideo/template b/srcpkgs/avideo/template
index e4d004aafff..6430d391286 100644
--- a/srcpkgs/avideo/template
+++ b/srcpkgs/avideo/template
@@ -1,7 +1,7 @@
 # Template file for 'avideo'
 pkgname=avideo
 version=2017.9.27
-revision=3
+revision=4
 archs=noarch
 wrksrc="avideo"
 build_style=python3-module

From b1abf9d1270b34913e7bd6dbfcd004dba8a8c5ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 605/872] aws-cli: rebuild for Python 3.8.

---
 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 4e5e200e3f9..4328e203c3c 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.16.253
-revision=1
+revision=2
 archs=noarch
 wrksrc="aws-cli-${version}"
 build_style=python3-module

From af6fd86e4f623114e23d8cd19217a8ba196231c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 606/872] bandit: rebuild for Python 3.8.

---
 srcpkgs/bandit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bandit/template b/srcpkgs/bandit/template
index e6c1aa52d7c..d29873ecf61 100644
--- a/srcpkgs/bandit/template
+++ b/srcpkgs/bandit/template
@@ -1,7 +1,7 @@
 # Template file for 'bandit'
 pkgname=bandit
 version=1.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="bandit"

From acb296380ef65f2682ec382f88706be8dc3bf79f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 607/872] beancount: rebuild for Python 3.8.

---
 srcpkgs/beancount/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beancount/template b/srcpkgs/beancount/template
index b1e2a121668..0ba68fc8f4e 100644
--- a/srcpkgs/beancount/template
+++ b/srcpkgs/beancount/template
@@ -1,7 +1,7 @@
 # Template file for 'beancount'
 pkgname=beancount
 version=2.2.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="beancount"
 hostmakedepends="python3-setuptools"

From 4d085c5998e4472b4e7b4fceabecba11440daceb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 608/872] beets: rebuild for Python 3.8.

---
 srcpkgs/beets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beets/template b/srcpkgs/beets/template
index 7dab56ceef8..975e6ec9f86 100644
--- a/srcpkgs/beets/template
+++ b/srcpkgs/beets/template
@@ -1,7 +1,7 @@
 # Template file for 'beets'
 pkgname=beets
 version=1.4.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="beets beetsplug"

From 1640cb62a84da8a46aff2a9c6ee5f75c0ab73224 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 609/872] black: rebuild for Python 3.8.

---
 srcpkgs/black/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/black/template b/srcpkgs/black/template
index f6d433038b9..38498a1db07 100644
--- a/srcpkgs/black/template
+++ b/srcpkgs/black/template
@@ -1,7 +1,7 @@
 # Template file for 'black'
 pkgname=black
 version=19.3b0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="black.py blib2to3"

From 5939f3d169c384cfe92957888f7b53678a69e770 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 610/872] blueman: rebuild for Python 3.8.

---
 srcpkgs/blueman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blueman/template b/srcpkgs/blueman/template
index 83f9b899583..3616aee7da3 100644
--- a/srcpkgs/blueman/template
+++ b/srcpkgs/blueman/template
@@ -1,7 +1,7 @@
 # Template file for 'blueman'
 pkgname=blueman
 version=2.1.1
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="blueman"
 configure_args="--disable-static"

From 325ad86e9fdcfc900e695cdcb3b40bc448b85d06 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 611/872] borg: rebuild for Python 3.8.

---
 srcpkgs/borg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borg/template b/srcpkgs/borg/template
index 520b1b2f65a..b69c7d3418e 100644
--- a/srcpkgs/borg/template
+++ b/srcpkgs/borg/template
@@ -1,7 +1,7 @@
 # Template file for 'borg'
 pkgname=borg
 version=1.1.10
-revision=2
+revision=3
 wrksrc="borgbackup-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel"

From 73a17277e22d3252a93a66237bf81a04393fc244 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 612/872] borgmatic: rebuild for Python 3.8.

---
 srcpkgs/borgmatic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borgmatic/template b/srcpkgs/borgmatic/template
index 8ef7c0568a6..bdc6446243c 100644
--- a/srcpkgs/borgmatic/template
+++ b/srcpkgs/borgmatic/template
@@ -1,7 +1,7 @@
 # Template file for 'borgmatic'
 pkgname=borgmatic
 version=1.3.24
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="borgmatic"

From 482c5d69113ad10842dfe91f0ac4a0631660ac77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 613/872] btrfs-backup: rebuild for Python 3.8.

---
 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 07d08a1b62b..55a3800a857 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=1
+revision=2
 wrksrc="${pkgname/-/_}-${version}"
 archs=noarch
 build_style=python3-module

From 4fce3c4f00a44852e3f9fcab80a10d4acfc04ad6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 614/872] bum: rebuild for Python 3.8.

---
 srcpkgs/bum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bum/template b/srcpkgs/bum/template
index 58d0bb2b7f7..20f200e74d6 100644
--- a/srcpkgs/bum/template
+++ b/srcpkgs/bum/template
@@ -1,7 +1,7 @@
 # Template file for 'bum'
 pkgname=bum
 version=0.1.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="bum"

From a384e5462965e984f1abca2ca12b7f62b1a415d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 615/872] caffeine-ng: rebuild for Python 3.8.

---
 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 36287fbef5b..455b2f225c4 100644
--- a/srcpkgs/caffeine-ng/template
+++ b/srcpkgs/caffeine-ng/template
@@ -1,7 +1,7 @@
 # Template file for 'caffeine-ng'
 pkgname=caffeine-ng
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="caffeine"

From b857565a7a7fddfbffbcf40b9e784593d099a0a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 616/872] cairo-dock-plugins: rebuild for Python 3.8.

---
 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 9e6149c617f..0c23a7f6928 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=11
+revision=12
 build_style=cmake
 hostmakedepends="pkg-config"
 # XXX libetpan, libdbusmenu, etc

From c0c15488d9189a782c2ab6436de598620d4d2435 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 617/872] canto-curses: rebuild for Python 3.8.

---
 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 0905972b480..4270d61c2e0 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=4
+revision=5
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel ncurses-devel readline-devel"

From a821add22450c016c7b851ee1a0309da5b5d83af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 618/872] canto-next: rebuild for Python 3.8.

---
 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 fff7e82e238..fa28bde891b 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.7
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From fa2afe1224ee7d1e031e769bf84bd596e5ac6de2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 619/872] capstone: rebuild for Python 3.8.

---
 srcpkgs/capstone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/capstone/template b/srcpkgs/capstone/template
index e13c7666ed1..fded7c7157e 100644
--- a/srcpkgs/capstone/template
+++ b/srcpkgs/capstone/template
@@ -1,7 +1,7 @@
 # Template file for 'capstone'
 pkgname=capstone
 version=4.0.1
-revision=1
+revision=2
 build_style=gnu-makefile
 make_use_env=1
 hostmakedepends="python-setuptools python3-setuptools"

From 923fca0cf844d03c602bbae81add86e8be495762 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 620/872] catfish: rebuild for Python 3.8.

---
 srcpkgs/catfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/catfish/template b/srcpkgs/catfish/template
index 1b28ffcafff..b53de6b8ea6 100644
--- a/srcpkgs/catfish/template
+++ b/srcpkgs/catfish/template
@@ -1,7 +1,7 @@
 # Template file for 'catfish'
 pkgname=catfish
 version=1.4.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="catfish catfish_lib"

From fb71b3b941c7341384c307ef6e1654b8d0b54a3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 621/872] ccsm: rebuild for Python 3.8.

---
 srcpkgs/ccsm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ccsm/template b/srcpkgs/ccsm/template
index 0421e587b23..3067003017f 100644
--- a/srcpkgs/ccsm/template
+++ b/srcpkgs/ccsm/template
@@ -1,7 +1,7 @@
 # Template file for 'ccsm'
 pkgname=ccsm
 version=0.8.16
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 hostmakedepends="automake intltool libtool pkg-config python3"

From f4212d55b3ec84e188189bc74a572c728a37c66a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 622/872] cheat: rebuild for Python 3.8.

---
 srcpkgs/cheat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cheat/template b/srcpkgs/cheat/template
index b60b4ba53b2..f1e419c3c5a 100644
--- a/srcpkgs/cheat/template
+++ b/srcpkgs/cheat/template
@@ -1,7 +1,7 @@
 # Template file for 'cheat'
 pkgname=cheat
 version=2.5.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="cheat"
 conf_files="/etc/cheat"

From eb72b0be44091e56a3e5b73cdf6d11ff80ecb8ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 623/872] clearine: rebuild for Python 3.8.

---
 srcpkgs/clearine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/clearine/template b/srcpkgs/clearine/template
index 419bb3c4550..539d494b79b 100644
--- a/srcpkgs/clearine/template
+++ b/srcpkgs/clearine/template
@@ -1,7 +1,7 @@
 # Template file for 'clearine'
 pkgname=clearine
 version=0.7
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="Clearine"
 hostmakedepends="python3-setuptools"

From ca7e63827b68cba4586e81da6e622e70addc8b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 624/872] coccigrep: rebuild for Python 3.8.

---
 srcpkgs/coccigrep/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/coccigrep/template b/srcpkgs/coccigrep/template
index 736f16a458e..a02c2f78bb2 100644
--- a/srcpkgs/coccigrep/template
+++ b/srcpkgs/coccigrep/template
@@ -1,7 +1,7 @@
 # Template file for 'coccigrep'
 pkgname=coccigrep
 version=1.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coccigrep"

From 8b0269365914ae7e030b07b30f4a76f2f1726270 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 625/872] compizconfig-python: rebuild for Python 3.8.

---
 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 b9d9ce2892b..77d53c97f46 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.16
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static"
 hostmakedepends="automake intltool libtool pkg-config glib-devel gettext-devel python3-Cython"

From c7955381746f2b68e5bb140afe81526fd62a2d16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 626/872] coursera-dl: rebuild for Python 3.8.

---
 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 0dfdd73083f..2b09e53d836 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.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coursera"

From 1bf8d7143694f636186cfbdcf357f9b86f5a635b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 627/872] cozy: rebuild for Python 3.8.

---
 srcpkgs/cozy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cozy/template b/srcpkgs/cozy/template
index a35aff61f37..2515388da18 100644
--- a/srcpkgs/cozy/template
+++ b/srcpkgs/cozy/template
@@ -1,7 +1,7 @@
 # Template file for 'cozy'
 pkgname=cozy
 version=0.6.8
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 pycompile_module="cozy"

From 7b58e6f69ae54c84b50dfe4d6041cf861a698c60 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 628/872] cpuset: rebuild for Python 3.8.

---
 srcpkgs/cpuset/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cpuset/template b/srcpkgs/cpuset/template
index cf3910d2304..12b54631617 100644
--- a/srcpkgs/cpuset/template
+++ b/srcpkgs/cpuset/template
@@ -1,7 +1,7 @@
 # Template file for 'cpuset'
 pkgname=cpuset
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="cpuset"

From a542aca478f0e84bbc23d3fd91a236635712a9f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 629/872] ctop: rebuild for Python 3.8.

---
 srcpkgs/ctop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ctop/template b/srcpkgs/ctop/template
index b8ea58515b2..5231b4a4cb3 100644
--- a/srcpkgs/ctop/template
+++ b/srcpkgs/ctop/template
@@ -1,7 +1,7 @@
 # Template file for 'ctop'
 pkgname=ctop
 version=1.0.0
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="cgroup_top.py"

From b3065c411c5e0b3e48432c6901e1e7fb20eb00d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 630/872] cura: rebuild for Python 3.8.

---
 srcpkgs/cura/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cura/template b/srcpkgs/cura/template
index 31318e5aecf..ab5cd315f21 100644
--- a/srcpkgs/cura/template
+++ b/srcpkgs/cura/template
@@ -1,7 +1,7 @@
 # Template file for 'cura'
 pkgname=cura
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Cura-${version}"
 build_style=cmake

From 9f4eb67830feb2103a78edc7651e1f73cc606074 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 631/872] curseradio: rebuild for Python 3.8.

---
 srcpkgs/curseradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/curseradio/template b/srcpkgs/curseradio/template
index 4fe2306364a..f5afe3bba34 100644
--- a/srcpkgs/curseradio/template
+++ b/srcpkgs/curseradio/template
@@ -1,7 +1,7 @@
 # Template file for 'curseradio'
 pkgname=curseradio
 version=0.0.20171017
-revision=3
+revision=4
 archs=noarch
 _commit=1bd4bd0faeec675e0647bac9a100b526cba19f8d
 wrksrc="curseradio-${_commit}"

From fa4e6156adf5c317bb85ee1d8271c9e6ce57b3e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 632/872] d-feet: rebuild for Python 3.8.

---
 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 6930eddf582..7f7d593f30a 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.15
-revision=1
+revision=2
 build_style=meson
 maintainer="Enno Boland <gottox@voidlinux.org>"
 hostmakedepends="pkg-config intltool itstool python3-pycodestyle"

From d6145053ac873c90f6383dee8ec4d696463928f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 633/872] deluge: rebuild for Python 3.8.

---
 srcpkgs/deluge/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/deluge/template b/srcpkgs/deluge/template
index 6dc7f26184d..8148c68033c 100644
--- a/srcpkgs/deluge/template
+++ b/srcpkgs/deluge/template
@@ -1,7 +1,7 @@
 # Template file for 'deluge'
 pkgname=deluge
 version=2.0.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="deluge"

From 0b2691a90e5de63e49a3c3f3adfa709d618b0a05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 634/872] devedeng: rebuild for Python 3.8.

---
 srcpkgs/devedeng/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/devedeng/template b/srcpkgs/devedeng/template
index d971b2e207b..2d0516cedd3 100644
--- a/srcpkgs/devedeng/template
+++ b/srcpkgs/devedeng/template
@@ -1,7 +1,7 @@
 # Template file for 'devedeng'
 pkgname=devedeng
 version=4.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="devedeng"

From 8b7c3bcfced7b21089b0a64ac1c375eb973af343 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 635/872] distcc: rebuild for Python 3.8.

---
 srcpkgs/distcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/distcc/template b/srcpkgs/distcc/template
index ded4255becd..4d6a450533f 100644
--- a/srcpkgs/distcc/template
+++ b/srcpkgs/distcc/template
@@ -1,7 +1,7 @@
 # Template file for 'distcc'
 pkgname=distcc
 version=3.3.3
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-Werror --with-gtk"
 conf_files="

From 98151a807bebdc6d5e41e0b6a1bd0d65659fbb7e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 636/872] docker-compose: rebuild for Python 3.8.

---
 srcpkgs/docker-compose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/docker-compose/template b/srcpkgs/docker-compose/template
index c3383fdf1ad..f4a34005c83 100644
--- a/srcpkgs/docker-compose/template
+++ b/srcpkgs/docker-compose/template
@@ -1,7 +1,7 @@
 # Template file for 'docker-compose'
 pkgname=docker-compose
 version=1.24.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="compose-${version}"
 build_style=python3-module

From 9dc2f62edc54b5e314c24fe7bb303496223adb45 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 637/872] edx-dl: rebuild for Python 3.8.

---
 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 209884640c6..a51c917d606 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.10
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="edx_dl"

From 6a769ff00b2fc959627e96d44172f8a656548751 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 638/872] electrum: rebuild for Python 3.8.

---
 srcpkgs/electrum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template
index 3861becdda9..7525e08e9e2 100644
--- a/srcpkgs/electrum/template
+++ b/srcpkgs/electrum/template
@@ -1,7 +1,7 @@
 # Template file for 'electrum'
 pkgname=electrum
 version=3.3.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electrum electrum_gui electrum_plugins"

From be52dccd4b30af3377095664bf239767a0f7be39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 639/872] electrum-ltc: rebuild for Python 3.8.

---
 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 ad6f745e152..cf7265fbec8 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.6.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"

From 45951afeb4bab3066e0459cf1441d9c3570c85dc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 640/872] eolie: rebuild for Python 3.8.

---
 srcpkgs/eolie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eolie/template b/srcpkgs/eolie/template
index b3da3dcd829..94514510c98 100644
--- a/srcpkgs/eolie/template
+++ b/srcpkgs/eolie/template
@@ -1,7 +1,7 @@
 # Template file for 'eolie'
 pkgname=eolie
 version=0.9.62
-revision=1
+revision=2
 _eolie_hash=bb4aad19272cc636bd17f2f6602127fe
 build_style=meson
 pycompile_module="eolie"

From ad02dba2226dbfc6b1fb5e715af8b58821cd8c07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 641/872] eyeD3: rebuild for Python 3.8.

---
 srcpkgs/eyeD3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eyeD3/template b/srcpkgs/eyeD3/template
index 7be047810bd..211553f0adb 100644
--- a/srcpkgs/eyeD3/template
+++ b/srcpkgs/eyeD3/template
@@ -1,7 +1,7 @@
 # Template file for 'eyeD3'
 pkgname=eyeD3
 version=0.8.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="eyed3"

From 5333d561e8831b7103f00f5e4564ce20bc26e9b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 642/872] fail2ban: rebuild for Python 3.8.

---
 srcpkgs/fail2ban/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 829e93385dc..361bcd12edd 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,7 +1,7 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
 version=0.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From 6ed6f50c8422b21b0f8244e983014120a3467562 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 643/872] fava: rebuild for Python 3.8.

---
 srcpkgs/fava/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fava/template b/srcpkgs/fava/template
index 24e66cac45b..890858b095b 100644
--- a/srcpkgs/fava/template
+++ b/srcpkgs/fava/template
@@ -1,7 +1,7 @@
 # Template file for 'fava'
 pkgname=fava
 version=1.11
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fava"

From cfe04c8e627d5d3626d852a05f3a87ecf053557f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 644/872] fierce: rebuild for Python 3.8.

---
 srcpkgs/fierce/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fierce/template b/srcpkgs/fierce/template
index 86dedb39ad2..86692c6457b 100644
--- a/srcpkgs/fierce/template
+++ b/srcpkgs/fierce/template
@@ -1,7 +1,7 @@
 # Template file for 'fierce'
 pkgname=fierce
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fierce"

From c67a6380bd6f21a660d10cde09cb2930536faee5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 645/872] fifengine: rebuild for Python 3.8.

---
 srcpkgs/fifengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fifengine/template b/srcpkgs/fifengine/template
index 1d4bcbb9297..871c94ad7e0 100644
--- a/srcpkgs/fifengine/template
+++ b/srcpkgs/fifengine/template
@@ -1,7 +1,7 @@
 # Template file for 'fifengine'
 pkgname=fifengine
 version=0.4.2
-revision=1
+revision=2
 build_style=cmake
 pycompile_module="fife"
 hostmakedepends="swig python3"

From 407bb3354f4705ac3e7d9c40479ff7272cbf5478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 646/872] flake8: rebuild for Python 3.8.

---
 srcpkgs/flake8/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/flake8/template b/srcpkgs/flake8/template
index d8f2b095644..4d7ebeba176 100644
--- a/srcpkgs/flake8/template
+++ b/srcpkgs/flake8/template
@@ -1,7 +1,7 @@
 # Template file for 'flake8'
 pkgname=flake8
 version=3.7.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="flake8"

From 770a2460b2b1f167fe87687c22ab0ff3d925964d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 647/872] fontforge: fix and rebuild for Python 3.8.

---
 srcpkgs/fontforge/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/fontforge/template b/srcpkgs/fontforge/template
index 7fb02d7e371..2893bc52cfb 100644
--- a/srcpkgs/fontforge/template
+++ b/srcpkgs/fontforge/template
@@ -1,7 +1,7 @@
 # Template file for 'fontforge'
 pkgname=fontforge
 version=20190801
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake ca-certificates git libltdl-devel libtool m4
  pkg-config python3"
@@ -20,6 +20,7 @@ checksum="e4501de5bd8e7f6c68fe7d3abd4667bf44a07b981d342ffa00e8f42e155ce633
  1bf9c7eb8835e6ed94e62cb49f1141bc046c562849e52e6c3c7f1d7cfc95c7b3"
 
 pre_configure() {
+        sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION}/&-embed/g' m4/fontforge_arg_enable.m4
 	./bootstrap
 }
 

From b878e1d66ee439999393e2aa55941b07f8e6c745 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 648/872] gajim: rebuild for Python 3.8.

---
 srcpkgs/gajim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gajim/template b/srcpkgs/gajim/template
index 8c49c0cf6ef..e81015b3906 100644
--- a/srcpkgs/gajim/template
+++ b/srcpkgs/gajim/template
@@ -1,7 +1,7 @@
 # Template file for 'gajim'
 pkgname=gajim
 version=1.1.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gajim"

From e0ad178e264be367206a16d9b96524e6d37e4b22 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 649/872] gajim-omemo: rebuild for Python 3.8.

---
 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 803f94713be..64d47228496 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.6.29
-revision=1
+revision=2
 wrksrc="omemo"
 hostmakedepends="unzip"
 depends="python3 python3-setuptools python3-cryptography python3-axolotl python3-qrcode"

From 4988da06fe14563631406801f6b22795355576a4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 650/872] gallery-dl: rebuild for Python 3.8.

---
 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 a1e8c633fe3..62b338a32e3 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.10.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gallery_dl"

From 7d5c0c0d7a1dcc5f3c504ed769a3730c7d688ed3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 651/872] gandi-cli: rebuild for Python 3.8.

---
 srcpkgs/gandi-cli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gandi-cli/template b/srcpkgs/gandi-cli/template
index c5e805a09fd..4193bfe4638 100644
--- a/srcpkgs/gandi-cli/template
+++ b/srcpkgs/gandi-cli/template
@@ -1,7 +1,7 @@
 # Template file for 'gandi-cli'
 pkgname=gandi-cli
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="gandi.cli-${version}"
 build_style=python3-module

From 7ae81741d5a1d24c19e0950a8631b2afb2f66301 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 652/872] gcovr: rebuild for Python 3.8.

---
 srcpkgs/gcovr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gcovr/template b/srcpkgs/gcovr/template
index 2b9ff94bf2a..0d4addfc8a7 100644
--- a/srcpkgs/gcovr/template
+++ b/srcpkgs/gcovr/template
@@ -1,7 +1,7 @@
 # Template file for 'gcovr'
 pkgname=gcovr
 version=4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gcovr"

From ff745f27bbeb2148c202a6cfde42c27c27ffb081 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 653/872] gedit: rebuild for Python 3.8.

---
 srcpkgs/gedit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gedit/template b/srcpkgs/gedit/template
index 904d3b7c3c4..6666c331c52 100644
--- a/srcpkgs/gedit/template
+++ b/srcpkgs/gedit/template
@@ -1,7 +1,7 @@
 # Template file for 'gedit'
 pkgname=gedit
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gi/overrides"

From 6d37a1560ee94e42e383c5bc4cba87d59366a1bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 654/872] geis: rebuild for Python 3.8.

---
 srcpkgs/geis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/geis/template b/srcpkgs/geis/template
index fe31a3d2aeb..20afe76b0d8 100644
--- a/srcpkgs/geis/template
+++ b/srcpkgs/geis/template
@@ -1,7 +1,7 @@
 # Template file for 'geis'
 pkgname=geis
 version=2.2.17
-revision=4
+revision=5
 hostmakedepends="pkg-config python3-devel"
 makedepends="dbus-devel grail-devel frame-devel libXi-devel python3-devel xorg-server-devel"
 build_style="gnu-configure"

From 83ad8dc7e8dc71c64a9004e04aba36ca30c051fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 655/872] git-cola: rebuild for Python 3.8.

---
 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 7eaba90f3be..fd0bbf971d3 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.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/share/git-cola/lib"

From 69e4bac4c10842ce70ce2a1db26f883af407e79c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 656/872] git-review: rebuild for Python 3.8.

---
 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 d999dc87b16..c180cc60780 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="git_review"

From 7c0a260d7120bd5e0e4e27c6b30b83e9dfe60359 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 657/872] git-revise: rebuild for Python 3.8.

---
 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 4179a52bddc..a1bf51dc447 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.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gitrevise"

From 49a8265f4cd71c84814307928cbbd2eb33c4bbad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 658/872] gitg: rebuild for Python 3.8.

---
 srcpkgs/gitg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gitg/template b/srcpkgs/gitg/template
index e0da8e9490d..a3381fdb3a7 100644
--- a/srcpkgs/gitg/template
+++ b/srcpkgs/gitg/template
@@ -1,7 +1,7 @@
 # Template file for 'gitg'
 pkgname=gitg
 version=3.32.1
-revision=1
+revision=2
 build_style=meson
 hostmakedepends="intltool pkg-config gobject-introspection vala glib-devel"
 makedepends="gtksourceview-devel libgit2-glib-devel libgee08-devel gtkspell3-devel

From 5b5919636d70cb1259ebd7740e9b55936a7c29f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 659/872] glances: rebuild for Python 3.8.

---
 srcpkgs/glances/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glances/template b/srcpkgs/glances/template
index 6d4766493c3..753d9e20c92 100644
--- a/srcpkgs/glances/template
+++ b/srcpkgs/glances/template
@@ -1,7 +1,7 @@
 # Template file for 'glances'
 pkgname=glances
 version=3.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Glances-${version}"
 build_style=python3-module

From 8b16492c679f3eb6c6ae2d4573f9adeb356715be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 660/872] glusterfs: rebuild for Python 3.8.

---
 srcpkgs/glusterfs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glusterfs/template b/srcpkgs/glusterfs/template
index a1304e266fe..90093864286 100644
--- a/srcpkgs/glusterfs/template
+++ b/srcpkgs/glusterfs/template
@@ -1,7 +1,7 @@
 # Template file for 'glusterfs'
 pkgname=glusterfs
 version=6.5
-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 22925c23326876f7422d67e1f21f0e629b9c7ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 661/872] gnome-authenticator: rebuild for Python 3.8.

---
 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 52d161897c7..ab7c505c0fe 100644
--- a/srcpkgs/gnome-authenticator/template
+++ b/srcpkgs/gnome-authenticator/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-authenticator'
 pkgname=gnome-authenticator
 version=0.2.4
-revision=2
+revision=3
 _libgd_hash=7ae254bfc5f641c60566614e08245176f7bc5aa8
 wrksrc="Authenticator-${version}"
 build_style=meson

From 4130139a7454a2050f48c6feac4f9312c50219d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 662/872] gnome-music: rebuild for Python 3.8.

---
 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 bceb7c369c8..e2fbbcbdeca 100644
--- a/srcpkgs/gnome-music/template
+++ b/srcpkgs/gnome-music/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-music'
 pkgname=gnome-music
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gnomemusic"

From 94b0589cc1f42f2505ac86d6596ab748ab75e02f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 663/872] gnome-passbook: rebuild for Python 3.8.

---
 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 54035dc920b..89047338503 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.1
-revision=1
+revision=2
 _release_hash=0a227cfdf706f4bfcc0b782026f1aeb2
 wrksrc="passbook-${version}"
 build_style=meson

From 76dae990f2ec69291f7826391c7a375014867fb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 664/872] gnome-passwordsafe: rebuild for Python 3.8.

---
 srcpkgs/gnome-passwordsafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnome-passwordsafe/template b/srcpkgs/gnome-passwordsafe/template
index f310ce03a08..8f1f19174d2 100644
--- a/srcpkgs/gnome-passwordsafe/template
+++ b/srcpkgs/gnome-passwordsafe/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-passwordsafe'
 pkgname=gnome-passwordsafe
 version=3.32.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="PasswordSafe-${version}"
 build_style=meson

From ebb227d14a2271cc033506f2dd54957eecc5b719 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 665/872] gns3-gui: rebuild for Python 3.8.

---
 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 38751dea59b..f4318dc6afc 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.1.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3"

From b44e9cf882e059036ed7e3834cafdf689c956e32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 666/872] gns3-net-converter: rebuild for Python 3.8.

---
 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 b9b7403e8a6..70b6c90e8c8 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=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3converter"

From eaf37536ad96d1421cc95823589d2cd21779089d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 667/872] gns3-server: rebuild for Python 3.8.

---
 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 6bd9c067b20..739c584cb7c 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.1.21
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="gns3server"
 hostmakedepends="python3-setuptools"

From 3a2540b9e2143af7b07dcaee0ed3930b9016dc1e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 668/872] gnucash: rebuild for Python 3.8.

---
 srcpkgs/gnucash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnucash/template b/srcpkgs/gnucash/template
index 68bb811fc42..d8ff0a8ec86 100644
--- a/srcpkgs/gnucash/template
+++ b/srcpkgs/gnucash/template
@@ -1,7 +1,7 @@
 # Template file for 'gnucash'
 pkgname=gnucash
 version=3.7
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DWITH_SQL=0 -DWITH_PYTHON=1"
 hostmakedepends="pkg-config guile python3 libxslt perl"

From c1420969fc916318d29dfdc3836adf0580095969 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 669/872] gom: rebuild for Python 3.8.

---
 srcpkgs/gom/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gom/template b/srcpkgs/gom/template
index 6ec2a5e338f..0b45e19def4 100644
--- a/srcpkgs/gom/template
+++ b/srcpkgs/gom/template
@@ -1,7 +1,7 @@
 # Template file for 'gom'
 pkgname=gom
 version=0.3.3
-revision=3
+revision=4
 build_style=meson
 build_helper="gir"
 configure_args="-Denable-introspection=$(vopt_if gir true false)

From e55d5d66739df70ca67793cbca3b12aa5f01e751 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 670/872] gpodder: rebuild for Python 3.8.

---
 srcpkgs/gpodder/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gpodder/template b/srcpkgs/gpodder/template
index 7c7414e19cd..5cc63ab4205 100644
--- a/srcpkgs/gpodder/template
+++ b/srcpkgs/gpodder/template
@@ -1,7 +1,7 @@
 # Template file for 'gpodder'
 pkgname=gpodder
 version=3.10.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="gpodder-${version}"
 make_check_target=unittest

From d91d30f5f2b0b5e6323da1f35eaf923fed0a111f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 671/872] gramps: rebuild for Python 3.8.

---
 srcpkgs/gramps/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gramps/template b/srcpkgs/gramps/template
index 9d1d1a4616a..5d40aeefb49 100644
--- a/srcpkgs/gramps/template
+++ b/srcpkgs/gramps/template
@@ -1,7 +1,7 @@
 # Template file for 'gramps'
 pkgname=gramps
 version=5.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gramps"

From bb3e960f11dda36c822c8bd1e8575b2a69ce9a66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 672/872] greg: rebuild for Python 3.8.

---
 srcpkgs/greg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/greg/template b/srcpkgs/greg/template
index 9c15ba82f4b..d898d5fdf61 100644
--- a/srcpkgs/greg/template
+++ b/srcpkgs/greg/template
@@ -1,7 +1,7 @@
 # Template file for 'greg'
 pkgname=greg
 version=0.4.7
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 pycompile_module="greg"

From be202bce8c20fb165e811e32683e96aae42b1452 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 673/872] gst1-python3: rebuild for Python 3.8.

---
 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 6f02f19aca3..bf946f6a8bf 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.16.1
-revision=1
+revision=2
 wrksrc="gst-python-${version}"
 build_style=meson
 pycompile_module="gi/overrides"

From b9ef9fe5fb2d7b03831106592cfae54a25c41a0f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 674/872] guake: rebuild for Python 3.8.

---
 srcpkgs/guake/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/guake/template b/srcpkgs/guake/template
index 86eaba649a7..d92fdf89355 100644
--- a/srcpkgs/guake/template
+++ b/srcpkgs/guake/template
@@ -1,7 +1,7 @@
 # Template file for 'guake'
 pkgname=guake
 version=3.6.3
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 wrksrc="Guake-${version}"

From a53d49cbf26761960b1d159a12df007b627e7650 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 675/872] gufw: rebuild for Python 3.8.

---
 srcpkgs/gufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gufw/template b/srcpkgs/gufw/template
index d2b8a4b025d..a4e7d861d71 100644
--- a/srcpkgs/gufw/template
+++ b/srcpkgs/gufw/template
@@ -1,7 +1,7 @@
 # Template file for 'gufw'
 pkgname=gufw
 version=19.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="gui-ufw-${version}"
 build_style=python3-module

From 165d3546e52431e5cb6d8f7534344eb7da2982a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 676/872] hamlib: rebuild for Python 3.8.

---
 srcpkgs/hamlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hamlib/template b/srcpkgs/hamlib/template
index c28a069cd6f..d52436c0893 100644
--- a/srcpkgs/hamlib/template
+++ b/srcpkgs/hamlib/template
@@ -1,7 +1,7 @@
 # Template file for 'hamlib'
 pkgname=hamlib
 version=3.3
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static --with-perl-binding --with-python-binding
  --with-tcl-binding --with-xml-support"

From fe67c3b8e01dac359eba93dada80286f4b7bd546 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 677/872] hangups: rebuild for Python 3.8.

---
 srcpkgs/hangups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hangups/template b/srcpkgs/hangups/template
index 0a2f2db16b4..0837a2c47c3 100644
--- a/srcpkgs/hangups/template
+++ b/srcpkgs/hangups/template
@@ -1,7 +1,7 @@
 # Template file for 'hangups'
 pkgname=hangups
 version=0.4.9
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="hangups"
 hostmakedepends="python3-setuptools"

From 54c05618d6ea2a636e7649b6dfb4df7e9097df99 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 678/872] hplip: rebuild for Python 3.8.

---
 srcpkgs/hplip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hplip/template b/srcpkgs/hplip/template
index 07a707569f6..3ef76e4591b 100644
--- a/srcpkgs/hplip/template
+++ b/srcpkgs/hplip/template
@@ -1,7 +1,7 @@
 # Template file for 'hplip'
 pkgname=hplip
 version=3.19.8
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="usr/share/hplip"
 configure_args="

From b9133921feebbc073c9d3cecdc138c34dd553caa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 679/872] httpie: rebuild for Python 3.8.

---
 srcpkgs/httpie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/httpie/template b/srcpkgs/httpie/template
index 387af8ebf05..61fc1499d35 100644
--- a/srcpkgs/httpie/template
+++ b/srcpkgs/httpie/template
@@ -1,7 +1,7 @@
 # Template file for 'httpie'
 pkgname=httpie
 version=1.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="httpie"

From 6c6626a47930ae266d4f95bc011f99e15b7237a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 680/872] ibus: rebuild for Python 3.8.

---
 srcpkgs/ibus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ibus/template b/srcpkgs/ibus/template
index 4875c7535d6..d3c35d786a4 100644
--- a/srcpkgs/ibus/template
+++ b/srcpkgs/ibus/template
@@ -1,7 +1,7 @@
 # Template file for 'ibus'
 pkgname=ibus
 version=1.5.20
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 configure_args="--enable-ui --enable-gtk3 --disable-tests

From ad8f78bd52e9d9925d746e1bbca9a926040dc866 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 681/872] iotop: rebuild for Python 3.8.

---
 srcpkgs/iotop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template
index 146a9e97791..522bf32a7c2 100644
--- a/srcpkgs/iotop/template
+++ b/srcpkgs/iotop/template
@@ -1,7 +1,7 @@
 # Template file for 'iotop'
 pkgname=iotop
 version=0.6
-revision=5
+revision=6
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From bf6b1d411e5f8d2459161a4599d66d7148220c48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 682/872] jrnl: rebuild for Python 3.8.

---
 srcpkgs/jrnl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template
index 3d08f129885..b184ef09508 100644
--- a/srcpkgs/jrnl/template
+++ b/srcpkgs/jrnl/template
@@ -1,7 +1,7 @@
 # Template file for 'jrnl'
 pkgname=jrnl
 version=1.9.8
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="jrnl"

From 3262fda476f3282359c09dd2902deac5997a3394 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 683/872] khal: rebuild for Python 3.8.

---
 srcpkgs/khal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khal/template b/srcpkgs/khal/template
index 39d08a66ba8..a73516695bf 100644
--- a/srcpkgs/khal/template
+++ b/srcpkgs/khal/template
@@ -1,7 +1,7 @@
 # Template file for 'khal'
 pkgname=khal
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khal"

From be7f25caca1d74c5f9f58c4cc40c3f3f889971d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 684/872] khard: rebuild for Python 3.8.

---
 srcpkgs/khard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khard/template b/srcpkgs/khard/template
index 6c6f3024be1..3ec9f398d99 100644
--- a/srcpkgs/khard/template
+++ b/srcpkgs/khard/template
@@ -1,7 +1,7 @@
 # Template file for 'khard'
 pkgname=khard
 version=0.14.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khard"

From 0509f15447526a6132348baf9eb600d22a0c20f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 685/872] lfm: rebuild for Python 3.8.

---
 srcpkgs/lfm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lfm/template b/srcpkgs/lfm/template
index 0a0a3b4f563..1e0e7cf29fa 100644
--- a/srcpkgs/lfm/template
+++ b/srcpkgs/lfm/template
@@ -1,7 +1,7 @@
 # Template file for 'lfm'
 pkgname=lfm
 version=3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 9ac423037b0a4806134116f0b6501d27f2bb3047 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 686/872] libArcus: rebuild for Python 3.8.

---
 srcpkgs/libArcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libArcus/template b/srcpkgs/libArcus/template
index 8e6c97ada21..d2ffda576d4 100644
--- a/srcpkgs/libArcus/template
+++ b/srcpkgs/libArcus/template
@@ -1,7 +1,7 @@
 # Template file for 'libArcus'
 pkgname=libArcus
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DBUILD_EXAMPLES=OFF"
 hostmakedepends="protobuf python3-sip-devel"

From 8a5c0bc1b4d750fbb633dcfb68645bdb8e23ac37 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 687/872] libSavitar: rebuild for Python 3.8.

---
 srcpkgs/libSavitar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libSavitar/template b/srcpkgs/libSavitar/template
index a9d3020158f..213f02f4d65 100644
--- a/srcpkgs/libSavitar/template
+++ b/srcpkgs/libSavitar/template
@@ -1,7 +1,7 @@
 # Template file for 'libSavitar'
 pkgname=libSavitar
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 hostmakedepends="python3"
 makedepends="python3-sip-devel python3-devel pugixml-devel"

From 888da49c1bb8061c80359b4015485b151f0d74d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 688/872] libaccounts-glib: rebuild for Python 3.8.

---
 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 717be24f209..239f9307261 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=2
+revision=3
 wrksrc="${pkgname}-VERSION_${version}-8948717702424ce15f4e23e5db2c8ce0799ec120"
 build_style=meson
 hostmakedepends="gtk-doc pkg-config glib-devel gobject-introspection vala"

From bd98c3c06982e10c3f9df1df66d5b04f1a5ef434 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 689/872] libblockdev: rebuild for Python 3.8.

---
 srcpkgs/libblockdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libblockdev/template b/srcpkgs/libblockdev/template
index 1df156e3c5b..ff20fc70618 100644
--- a/srcpkgs/libblockdev/template
+++ b/srcpkgs/libblockdev/template
@@ -1,7 +1,7 @@
 # Template file for 'libblockdev'
 pkgname=libblockdev
 version=2.21
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="cryptsetup-devel device-mapper-devel dmraid-devel libbytesize-devel

From 41b298fd633e7e588071f06e8d421ed9b2c21a8c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 690/872] libbytesize: rebuild for Python 3.8.

---
 srcpkgs/libbytesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libbytesize/template b/srcpkgs/libbytesize/template
index ee1862d889d..e07cdf29a82 100644
--- a/srcpkgs/libbytesize/template
+++ b/srcpkgs/libbytesize/template
@@ -1,7 +1,7 @@
 # Template file for 'libbytesize'
 pkgname=libbytesize
 version=1.4
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python3"
 makedepends="mpfr-devel pcre-devel"

From bdb495aaf63cb8b79a83eda9623e54e67de33d75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 691/872] libcap-ng: rebuild for Python 3.8.

---
 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 f462636c4c1..c6ec4f0a216 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.7.10
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-python --without-python3"
 short_desc="Alternate POSIX capabilities library"

From 64a29440ad0bb81db7db97e461b4b68478993d17 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 692/872] libffado: rebuild for Python 3.8.

---
 srcpkgs/libffado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libffado/template b/srcpkgs/libffado/template
index a9b6a5ec6a8..d566806bd82 100644
--- a/srcpkgs/libffado/template
+++ b/srcpkgs/libffado/template
@@ -1,7 +1,7 @@
 # Template file for 'libffado'
 pkgname=libffado
 version=2.4.1
-revision=1
+revision=2
 build_style=scons
 make_build_args="PREFIX=/usr MANDIR=/usr/share/man
  UDEVDIR=/usr/lib/udev/rules.d CUSTOM_ENV=1 BUILD_TESTS=0

From 3ac32b19e51680d2330b26da6cb8d640904fcb75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 693/872] libgit2-glib: rebuild for Python 3.8.

---
 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 05389a18258..ce68cb35d66 100644
--- a/srcpkgs/libgit2-glib/template
+++ b/srcpkgs/libgit2-glib/template
@@ -1,7 +1,7 @@
 # Template file for 'libgit2-glib'
 pkgname=libgit2-glib
 version=0.28.0.1
-revision=1
+revision=2
 build_style=meson
 build_helper="gir"
 configure_args="-Dintrospection=$(vopt_if gir true false)

From 6950f9e7571c268c087d93d7e94d169a8fb8291b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 694/872] libixion: rebuild for Python 3.8.

---
 srcpkgs/libixion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libixion/template b/srcpkgs/libixion/template
index 5d2c58ee7c0..dbc05d8b9c1 100644
--- a/srcpkgs/libixion/template
+++ b/srcpkgs/libixion/template
@@ -2,7 +2,7 @@
 pkgname=libixion
 reverts="0.15.0_1"
 version=0.14.1
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="boost-devel mdds python3-devel"

From 45a847c34a550d9cc64985d24ef9b306aade5790 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 695/872] liblouis: rebuild for Python 3.8.

---
 srcpkgs/liblouis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liblouis/template b/srcpkgs/liblouis/template
index 77194ad8820..13c29b62b21 100644
--- a/srcpkgs/liblouis/template
+++ b/srcpkgs/liblouis/template
@@ -1,7 +1,7 @@
 # Template file for 'liblouis'
 pkgname=liblouis
 version=3.9.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--enable-ucs4"
 pycompile_module="louis"

From f79d54ca6d5162f4f17a9cae76f0bd941deaf438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 696/872] opencv: rebuild for Python 3.8.

---
 srcpkgs/opencv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/opencv/template b/srcpkgs/opencv/template
index fcc38299f23..474b77be181 100644
--- a/srcpkgs/opencv/template
+++ b/srcpkgs/opencv/template
@@ -1,7 +1,7 @@
 # Template file for 'opencv'
 pkgname=opencv
 version=3.4.5
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_PRECOMPILED_HEADERS=OFF -DWITH_OPENMP=ON
  -DWITH_OPENCL=ON -DENABLE_CXX11=ON -DOPENCV_SKIP_PYTHON_LOADER=ON

From f3399fca6f67a8990fa1adc144bd949c0a5c66c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 697/872] libopenshot: rebuild for Python 3.8.

---
 srcpkgs/libopenshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libopenshot/template b/srcpkgs/libopenshot/template
index e1ac18faf93..dab1f2ae1e3 100644
--- a/srcpkgs/libopenshot/template
+++ b/srcpkgs/libopenshot/template
@@ -1,7 +1,7 @@
 # Template file for 'libopenshot'
 pkgname=libopenshot
 version=0.2.3
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 build_style=cmake
 pycompile_module="openshot.py"

From c7902fc599bfc61c600307df6f75acfadf8e612e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 698/872] liborcus: rebuild for Python 3.8.

---
 srcpkgs/liborcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liborcus/template b/srcpkgs/liborcus/template
index 3523d7830d8..e7704c43974 100644
--- a/srcpkgs/liborcus/template
+++ b/srcpkgs/liborcus/template
@@ -2,7 +2,7 @@
 pkgname=liborcus
 reverts="0.15.0_1"
 version=0.14.1
-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 aec13b74f5953d86ed1dab8574a9bb836924a3da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 699/872] libpwquality: rebuild for Python 3.8.

---
 srcpkgs/libpwquality/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpwquality/template b/srcpkgs/libpwquality/template
index e5a656236d7..6c2209155a3 100644
--- a/srcpkgs/libpwquality/template
+++ b/srcpkgs/libpwquality/template
@@ -1,7 +1,7 @@
 # Template file for 'libpwquality'
 pkgname=libpwquality
 version=1.4.1
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static --enable-pam --with-securedir=/usr/lib/security"
 hostmakedepends="libtool automake gettext-devel"

From a5604d1184badc5a3b5afb2426bc910d703ee0f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 700/872] libsearpc: rebuild for Python 3.8.

---
 srcpkgs/libsearpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsearpc/template b/srcpkgs/libsearpc/template
index 61f68e5e7de..a7e0b9ce05c 100644
--- a/srcpkgs/libsearpc/template
+++ b/srcpkgs/libsearpc/template
@@ -1,7 +1,7 @@
 # Template file for 'libsearpc'
 pkgname=libsearpc
 version=3.1.0
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="pysearpc"
 configure_args="PYTHON=python3 --disable-static --disable-compile-demo"

From 5aaa024e287c3460065dbe861abc25499a281e07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 701/872] libtorrent-rasterbar: fix and rebuild for Python 3.8.

---
 srcpkgs/libtorrent-rasterbar/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libtorrent-rasterbar/template b/srcpkgs/libtorrent-rasterbar/template
index 118108c6184..51b7175fb81 100644
--- a/srcpkgs/libtorrent-rasterbar/template
+++ b/srcpkgs/libtorrent-rasterbar/template
@@ -1,9 +1,9 @@
 # Template file for 'libtorrent-rasterbar'
 pkgname=libtorrent-rasterbar
 version=1.1.13
-revision=3
+revision=4
 build_style=gnu-configure
-configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=boost_python36"
+configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=libboost_python${py3_ver/./}"
 hostmakedepends="automake pkg-config intltool libtool python3-devel"
 makedepends="libressl-devel boost-devel geoip-devel python3-devel"
 short_desc="C++ bittorrent library by Rasterbar Software"
@@ -14,9 +14,9 @@ distfiles="https://github.com/arvidn/libtorrent/releases/download/libtorrent-${v
 checksum=30040719858e3c06634764e0c1778738eb42ecd0b45e814afa746329a948ead7
 
 pre_configure() {
-	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython3.6m"
+	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython${py3_ver}${py3_abiver}"
 	autoreconf -fi
 }
 

From 75ce8cab25904eeb4975663fb77b4f29c10c1dbe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 702/872] libvirt-python: rebuild for Python 3.8.

---
 srcpkgs/libvirt-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvirt-python/template b/srcpkgs/libvirt-python/template
index a2f0e038166..56253c9d3b0 100644
--- a/srcpkgs/libvirt-python/template
+++ b/srcpkgs/libvirt-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libvirt-python'
 pkgname=libvirt-python
 version=5.8.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="libvirt.py libvirt_lxc.py libvirt_qemu.py"
 hostmakedepends="pkg-config python-devel python3-devel libvirt-devel"

From 5e9842585a68fb832637cdd1b5adcd50bc48841b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 703/872] libvoikko: rebuild for Python 3.8.

---
 srcpkgs/libvoikko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvoikko/template b/srcpkgs/libvoikko/template
index 8d21b0f9c71..ba8eef837ee 100644
--- a/srcpkgs/libvoikko/template
+++ b/srcpkgs/libvoikko/template
@@ -1,7 +1,7 @@
 # Template file for 'libvoikko'
 pkgname=libvoikko
 version=4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-hfst=false --with-dictionary-path=/usr/share/voikko"
 pycompile_module="libvoikko.py"

From 8141b26019c7a2414b15fcf8b8672eb24047f49d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 704/872] libxml2-python: rebuild for Python 3.8.

---
 srcpkgs/libxml2-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libxml2-python/template b/srcpkgs/libxml2-python/template
index a80208823c2..5514ed43437 100644
--- a/srcpkgs/libxml2-python/template
+++ b/srcpkgs/libxml2-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libxml2-python'
 pkgname=libxml2-python
 version=2.9.9
-revision=3
+revision=4
 wrksrc="${pkgname%-python}-${version}"
 build_wrksrc=python
 build_style=python-module

From 70f5881f1b341100ddc517ba0f4b54e161303165 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 705/872] lightdm-gtk-greeter-settings: rebuild for Python 3.8.

---
 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 715f41bbef4..76a25b91e4c 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=1
+revision=2
 build_style=python3-module
 pycompile_module="lightdm_gtk_greeter_settings"
 hostmakedepends="python3-distutils-extra intltool"

From 04c380043914f79a0c6cd3199748bb0fb2e37967 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 706/872] llvm9: rebuild for Python 3.8.

---
 srcpkgs/llvm9/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/llvm9/template b/srcpkgs/llvm9/template
index 3c1a1a3451b..890a93855d8 100644
--- a/srcpkgs/llvm9/template
+++ b/srcpkgs/llvm9/template
@@ -1,7 +1,7 @@
 # Template file for 'llvm9'
 pkgname=llvm9
 version=9.0.0
-revision=2
+revision=3
 wrksrc="llvm-${version}.src"
 build_style=cmake
 configure_args="

From 4778e7a0c73ffa2fae833fee20ac790fef99fff9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 707/872] lollypop: rebuild for Python 3.8.

---
 srcpkgs/lollypop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lollypop/template b/srcpkgs/lollypop/template
index 56ace773bf3..3bd13c0d387 100644
--- a/srcpkgs/lollypop/template
+++ b/srcpkgs/lollypop/template
@@ -1,7 +1,7 @@
 # Template file for 'lollypop'
 pkgname=lollypop
 version=1.1.4.16
-revision=1
+revision=2
 # Gitlab upload tag hash
 _uhash=6b4e4e7a2c17f0770c1e2b3354ae5a3a
 archs=noarch

From 6041a22c11224f7e771c92e9f61adf7eaf37450a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 708/872] lutris: rebuild for Python 3.8.

---
 srcpkgs/lutris/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lutris/template b/srcpkgs/lutris/template
index 8f54d693a12..75be521cc7c 100644
--- a/srcpkgs/lutris/template
+++ b/srcpkgs/lutris/template
@@ -1,7 +1,7 @@
 # Template file for 'lutris'
 pkgname=lutris
 version=0.5.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 build_helper="gir"

From 768559bee2d66197ffebf07de70d31e1098fe2a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 709/872] magic-wormhole: rebuild for Python 3.8.

---
 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 c07753ce6ad..d93a1bbe1fc 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.11.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wormhole"

From 2a5b126fdf712642756c4d70a6a679f4479b504c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 710/872] mate-tweak: rebuild for Python 3.8.

---
 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 85b829e85e8..76b79524269 100644
--- a/srcpkgs/mate-tweak/template
+++ b/srcpkgs/mate-tweak/template
@@ -1,7 +1,7 @@
 # Template file for 'mate-tweak'
 pkgname=mate-tweak
 version=19.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-pbr python3-setuptools"

From 2717d85b6903ce0f45484d5f051e477d27e68ff3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 711/872] med: rebuild for Python 3.8.

---
 srcpkgs/med/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/med/template b/srcpkgs/med/template
index 34dd6d006d6..acd79293246 100644
--- a/srcpkgs/med/template
+++ b/srcpkgs/med/template
@@ -1,7 +1,7 @@
 # Template file for 'med'
 pkgname=med
 version=4.0.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--with-swig=yes --includedir=/usr/include/med"
 pycompile_module=med

From e6073b9b26be31845b922008dc6d5083ec2516e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 712/872] meld: rebuild for Python 3.8.

---
 srcpkgs/meld/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meld/template b/srcpkgs/meld/template
index 9ed6114299e..7cbac065ce6 100644
--- a/srcpkgs/meld/template
+++ b/srcpkgs/meld/template
@@ -1,7 +1,7 @@
 # Template file for 'meld'
 pkgname=meld
 version=3.20.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="meld"

From 30bbbb75eda44c4dfeac15c27223fe671d4703ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 713/872] menulibre: rebuild for Python 3.8.

---
 srcpkgs/menulibre/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/menulibre/template b/srcpkgs/menulibre/template
index 64311115bec..f16c5f64337 100644
--- a/srcpkgs/menulibre/template
+++ b/srcpkgs/menulibre/template
@@ -1,7 +1,7 @@
 # Template file for 'menulibre'
 pkgname=menulibre
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="menulibre menulibre_lib"

From 7f5fb6f6a41e18474dce397f36f38f5cce8f9eca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 714/872] meson-cmake-wrapper: rebuild for Python 3.8.

---
 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 ca14e533431..57eea159ca8 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mcw"

From 2c4c7008df31cd5ec9699fe3aba2f53facd423e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 715/872] mimeo: rebuild for Python 3.8.

---
 srcpkgs/mimeo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mimeo/template b/srcpkgs/mimeo/template
index bef8dcde863..991c61d9df8 100644
--- a/srcpkgs/mimeo/template
+++ b/srcpkgs/mimeo/template
@@ -1,7 +1,7 @@
 # Template file for 'mimeo'
 pkgname=mimeo
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="Mimeo.py"

From 533400db8d1d7673cb8a5b187cf4510495a5d6fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 716/872] mozo: rebuild for Python 3.8.

---
 srcpkgs/mozo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template
index 041f2454c3d..7bc18f017c7 100644
--- a/srcpkgs/mozo/template
+++ b/srcpkgs/mozo/template
@@ -1,7 +1,7 @@
 # Template file for 'mozo'
 pkgname=mozo
 version=1.22.2
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="Mozo"

From 79476ba290c89d038ce38a9ed875bed6b5bf69e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 717/872] mpd-sima: rebuild for Python 3.8.

---
 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 fb72f0d2632..831fec709b7 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=1
+revision=2
 archs=noarch
 wrksrc="MPD_sima-${version}"
 build_style=python3-module

From 9d547673ab95e2aeb2d2405f6fff480cbd9afa5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 718/872] mps-youtube: rebuild for Python 3.8.

---
 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 7b104aa706f..2141b3e627d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mps_youtube"

From 8e1db2d48466dc2bdc06e1330eeefaa727da6356 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 719/872] mugshot: rebuild for Python 3.8.

---
 srcpkgs/mugshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mugshot/template b/srcpkgs/mugshot/template
index cf27b30acac..1e695654a86 100644
--- a/srcpkgs/mugshot/template
+++ b/srcpkgs/mugshot/template
@@ -1,7 +1,7 @@
 # Template file for 'mugshot'
 pkgname=mugshot
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra"

From dd0ad3b8c52088d1809fd214b32ed7b0acdd2f66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 720/872] multibootusb: rebuild for Python 3.8.

---
 srcpkgs/multibootusb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/multibootusb/template b/srcpkgs/multibootusb/template
index 049b641c5fd..70cb07a85ac 100644
--- a/srcpkgs/multibootusb/template
+++ b/srcpkgs/multibootusb/template
@@ -1,7 +1,7 @@
 # Template file for 'multibootusb'
 pkgname=multibootusb
 version=9.2.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="scripts"

From 85356b30501f219e78afd8cb95f1a6cb09193ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 721/872] mymcplus: rebuild for Python 3.8.

---
 srcpkgs/mymcplus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mymcplus/template b/srcpkgs/mymcplus/template
index 369ac8048ed..f30c62b09f4 100644
--- a/srcpkgs/mymcplus/template
+++ b/srcpkgs/mymcplus/template
@@ -1,7 +1,7 @@
 # Template file for 'mymcplus'
 pkgname=mymcplus
 version=3.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mymcplus"

From f10ceae15759ab2c42d786a23926a759967abb41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 722/872] nagstamon: fix and rebuild for Python 3.8.

---
 srcpkgs/nagstamon/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/nagstamon/template b/srcpkgs/nagstamon/template
index 3a63bb5f1d9..0eb5bc75d27 100644
--- a/srcpkgs/nagstamon/template
+++ b/srcpkgs/nagstamon/template
@@ -1,7 +1,7 @@
 # Template file for 'nagstamon'
 pkgname=nagstamon
 version=3.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=Nagstamon
 build_style=python3-module
@@ -16,6 +16,10 @@ homepage="https://nagstamon.ifw-dresden.de"
 distfiles="https://nagstamon.ifw-dresden.de/files/stable/Nagstamon-${version}.tar.gz"
 checksum=a834460e78dc01f62171a83c4a11d890702264ed662863dff39edaf14ae98880
 
+post_extract() {
+	# Gone in python 3.8, but these where the python 3.6 values.  ;)
+	vsed -i -e 's/platform.dist()/("","","")/g' setup.py
+}
 post_install() {
 	chmod 644 ${DESTDIR}/usr/share/pixmaps/nagstamon.svg
 	mv -v ${DESTDIR}/usr/bin/nagstamon.py ${DESTDIR}/usr/bin/nagstamon

From 52acf83950d25bcf72b3fc81796436543c409ce8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 723/872] neovim-remote: rebuild for Python 3.8.

---
 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 d8473bf0521..7391f9df2ee 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.2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nvr"

From ae77cba0468f1ab1fe3e89bf758d2d153c6b8725 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 724/872] newt: rebuild for Python 3.8.

---
 srcpkgs/newt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/newt/template b/srcpkgs/newt/template
index 3971bbfdbf7..25ccc946f51 100644
--- a/srcpkgs/newt/template
+++ b/srcpkgs/newt/template
@@ -1,7 +1,7 @@
 # Template file for 'newt'
 pkgname=newt
 version=0.52.21
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python-devel python3-devel"
 makedepends="slang-devel popt-devel python3-devel python-devel"

From 5d77f30f98b4d84c2807418deb840acda4016790 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 725/872] notmuch: rebuild for Python 3.8.

---
 srcpkgs/notmuch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/notmuch/template b/srcpkgs/notmuch/template
index ced670a59d4..a3085fd4c27 100644
--- a/srcpkgs/notmuch/template
+++ b/srcpkgs/notmuch/template
@@ -1,7 +1,7 @@
 # Template file for 'notmuch'
 pkgname=notmuch
 version=0.29.1
-revision=1
+revision=2
 hostmakedepends="perl pkg-config python-devel python3-Sphinx python3-devel"
 makedepends="bash-completion gmime3-devel talloc-devel xapian-core-devel"
 short_desc="Thread-based email index, search, and tagging"

From 2a004663318b9be9e0b13e69c2f89b9682ece8e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 726/872] nyx: rebuild for Python 3.8.

---
 srcpkgs/nyx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/nyx/template b/srcpkgs/nyx/template
index 201ab5856ff..4b265771793 100644
--- a/srcpkgs/nyx/template
+++ b/srcpkgs/nyx/template
@@ -1,7 +1,7 @@
 # Template file for 'nyx'
 pkgname=nyx
 version=2.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nyx"

From 9ff1df8e1d687a5a38d373d51d32e4e428dbe286 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 727/872] olm-python: rebuild for Python 3.8.

---
 srcpkgs/olm-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/olm-python/template b/srcpkgs/olm-python/template
index 57ac1cfa01b..0141611ea3f 100644
--- a/srcpkgs/olm-python/template
+++ b/srcpkgs/olm-python/template
@@ -1,7 +1,7 @@
 # Template file for 'olm-python'
 pkgname=olm-python
 version=3.1.4
-revision=1
+revision=2
 wrksrc="olm-${version}"
 build_wrksrc=python
 build_style=python-module

From b5b9070e7d35511535cee5a401bcdb4ea6359959 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 728/872] onboard: rebuild for Python 3.8.

---
 srcpkgs/onboard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onboard/template b/srcpkgs/onboard/template
index 844744038d8..467ed8f0ea5 100644
--- a/srcpkgs/onboard/template
+++ b/srcpkgs/onboard/template
@@ -1,7 +1,7 @@
 # Template file for 'onboard'
 pkgname=onboard
 version=1.4.1
-revision=4
+revision=5
 build_style=python3-module
 pycompile_module="Onboard"
 patch_args="-Np1"

From c23e1317c4a493f2967ade1da8cf6eb9806b2066 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 729/872] openrazer-meta: rebuild for Python 3.8.

---
 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 112cb9e900b..60dc8212a73 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=2
+revision=3
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 0c8dabe0616d85f801dfefea1b22748ee6055bdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 730/872] openshot: rebuild for Python 3.8.

---
 srcpkgs/openshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/openshot/template b/srcpkgs/openshot/template
index 605ea7305c2..d71b4d09fae 100644
--- a/srcpkgs/openshot/template
+++ b/srcpkgs/openshot/template
@@ -1,7 +1,7 @@
 # Template file for 'openshot'
 pkgname=openshot
 version=2.4.4
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 wrksrc="${pkgname}-qt-${version}"
 build_style=python3-module

From e14cf6e0c5c985078aade34a1f21446e153dbeed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 731/872] orca: rebuild for Python 3.8.

---
 srcpkgs/orca/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/orca/template b/srcpkgs/orca/template
index ac1c0e1dc0e..57d1495c10a 100644
--- a/srcpkgs/orca/template
+++ b/srcpkgs/orca/template
@@ -1,7 +1,7 @@
 # Template file for 'orca'
 pkgname=orca
 version=3.34.0
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="orca"

From ef83881d95547fbaa4f216958aa7f49b0b2c98b3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 732/872] papis: rebuild for Python 3.8.

---
 srcpkgs/papis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/papis/template b/srcpkgs/papis/template
index 95044b2a6a4..d99f358fc0d 100644
--- a/srcpkgs/papis/template
+++ b/srcpkgs/papis/template
@@ -1,7 +1,7 @@
 # Template file for 'papis'
 pkgname=papis
 version=0.8
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-requests python3-yaml python3-chardet python3-BeautifulSoup4

From f4cf98a67a63c679f47a66c6b67ab7309b5769f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 733/872] paraview: rebuild for Python 3.8.

---
 srcpkgs/paraview/template | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/paraview/template b/srcpkgs/paraview/template
index 3b721b1833a..d928a5ea095 100644
--- a/srcpkgs/paraview/template
+++ b/srcpkgs/paraview/template
@@ -1,7 +1,7 @@
 # Template file for 'paraview'
 pkgname=paraview
 version=5.6.1
-revision=1
+revision=2
 wrksrc=ParaView-v${version}
 build_style=cmake
 configure_args="-DPARAVIEW_ENABLE_FFMPEG=ON
@@ -58,6 +58,11 @@ checksum=50ef01f54db6358b402e50d1460ef47c04d675bf26f250c6937737169f1e6612
 CFLAGS="-D_GNU_SOURCE"
 CXXFLAGS="-D_GNU_SOURCE"
 
+post_extract() {
+	# Python 3.8 API change: https://docs.python.org/3/c-api/typeobj.html
+	sed -i '/\/\/ tp_print/s/nullptr/0/' \
+		VTK/Wrapping/Tools/*.c VTK/Wrapping/PythonCore/*.cxx
+}
 post_install() {
 	vlicense Copyright.txt
 }

From 726b01acdb0c9e145291f4e36011c0aaa709684d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 734/872] pass-git-helper: rebuild for Python 3.8.

---
 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 dfeed3ba4f0..6d7f25bd8a7 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.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 78ecdb2c1a4374ceaca2d5093af3a91996be3350 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 735/872] peframe: rebuild for Python 3.8.

---
 srcpkgs/peframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peframe/template b/srcpkgs/peframe/template
index b9d64f7a5a6..5ecede6cf56 100644
--- a/srcpkgs/peframe/template
+++ b/srcpkgs/peframe/template
@@ -1,7 +1,7 @@
 # Template file for 'peframe'
 pkgname=peframe
 version=6.0.3
-revision=1
+revision=2
 archs=noarch
 build_style="python3-module"
 pycompile_module="peframe"

From 78841509335c273af19896de5b79ea31c3168e1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 736/872] peru: rebuild for Python 3.8.

---
 srcpkgs/peru/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peru/template b/srcpkgs/peru/template
index 682440f0b50..10d4689338d 100644
--- a/srcpkgs/peru/template
+++ b/srcpkgs/peru/template
@@ -1,7 +1,7 @@
 # Template file for 'peru'
 pkgname=peru
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="peru"

From 9513806ce9175a7e7f042c9a8aa445525747c64b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 737/872] pgcli: rebuild for Python 3.8.

---
 srcpkgs/pgcli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index b967287e9cb..b187a0a4440 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,7 +1,7 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pgcli"

From 9b06f6f2643e97359ce83918b636d83617530e9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 738/872] picard: rebuild for Python 3.8.

---
 srcpkgs/picard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/picard/template b/srcpkgs/picard/template
index 1bae142434a..08404a88475 100644
--- a/srcpkgs/picard/template
+++ b/srcpkgs/picard/template
@@ -1,7 +1,7 @@
 # Template file for 'picard'
 pkgname=picard
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname}-release-${version}"
 build_style=python3-module

From f046b5d0d02d0350b9b4b0d012941d73a64d7674 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 739/872] piper: rebuild for Python 3.8.

---
 srcpkgs/piper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/piper/template b/srcpkgs/piper/template
index af8cc854991..91a31131f84 100644
--- a/srcpkgs/piper/template
+++ b/srcpkgs/piper/template
@@ -1,7 +1,7 @@
 # Template file for 'piper'
 pkgname=piper
 version=0.2.904
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 hostmakedepends="libratbag pkg-config glib-devel"

From 35264de163d55cc30160d954c08f635a5fa12285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 740/872] playitslowly: rebuild for Python 3.8.

---
 srcpkgs/playitslowly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/playitslowly/template b/srcpkgs/playitslowly/template
index d26cea3510a..6d3483ae251 100644
--- a/srcpkgs/playitslowly/template
+++ b/srcpkgs/playitslowly/template
@@ -1,7 +1,7 @@
 # Template file for 'playitslowly'
 pkgname=playitslowly
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From e81422f6d1d5c7623368d70897172c813b3de9b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 741/872] pmbootstrap: rebuild for Python 3.8.

---
 srcpkgs/pmbootstrap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pmbootstrap/template b/srcpkgs/pmbootstrap/template
index 1bfa8183a84..15e606439c2 100644
--- a/srcpkgs/pmbootstrap/template
+++ b/srcpkgs/pmbootstrap/template
@@ -1,7 +1,7 @@
 # Template file for 'pmbootstrap'
 pkgname=pmbootstrap
 version=1.9.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pmb"

From 527e6a4630f16baca7fc343a5a1d9a05342d82ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 742/872] pockyt: fix and rebuild for Python 3.8.

---
 srcpkgs/pockyt/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/pockyt/template b/srcpkgs/pockyt/template
index 760573904b1..ff12361d443 100644
--- a/srcpkgs/pockyt/template
+++ b/srcpkgs/pockyt/template
@@ -1,7 +1,7 @@
 # Template file for 'pockyt'
 pkgname=pockyt
 version=1.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -13,3 +13,7 @@ license="GPL-3.0-or-later"
 homepage="https://github.com/arvindch/pockyt"
 distfiles="${homepage}/archive/${version}.tar.gz"
 checksum=cd9561e126a6a01c73762639eb7e38b8c509ed1412f72fcc4729b12565b9962c
+
+post_extract() {
+	sed -i 's/(3, 7)/&, (3, 8)/' setup.py
+}

From b17ef4dbbbef2220a50989dc81f76cba0decd84a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 743/872] poezio: rebuild for Python 3.8.

---
 srcpkgs/poezio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/poezio/template b/srcpkgs/poezio/template
index 56f8138bb5e..4b318419dab 100644
--- a/srcpkgs/poezio/template
+++ b/srcpkgs/poezio/template
@@ -1,7 +1,7 @@
 # Template file for 'poezio'
 pkgname=poezio
 version=0.12.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="poezio poezio_plugins poezio_themes"
 hostmakedepends="python3-setuptools pkg-config"

From 3b5be45e96733313ad2473bc51a7d8eee1702577 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 744/872] protontricks: rebuild for Python 3.8.

---
 srcpkgs/protontricks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/protontricks/template b/srcpkgs/protontricks/template
index a32f51c4845..dc003b63690 100644
--- a/srcpkgs/protontricks/template
+++ b/srcpkgs/protontricks/template
@@ -1,7 +1,7 @@
 # Template file for 'protontricks'
 pkgname=protontricks
 version=1.2.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-setuptools"

From 6b17e630c97868c3510f8e786c4c0a4d3b250ecf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 745/872] pulseaudio-equalizer-ladspa: rebuild for Python 3.8.

---
 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 62d7eef2a65..10198de2c08 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=1
+revision=2
 wrksrc="equalizer-${version}"
 build_style=meson
 pycompile_module="pulseeq"

From 70dbb53c2ba650d2fc146e7837f700dec9df6062 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 746/872] pulseeffects: rebuild for Python 3.8.

---
 srcpkgs/pulseeffects/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pulseeffects/template b/srcpkgs/pulseeffects/template
index 7fc44f938d9..dc9044cad32 100644
--- a/srcpkgs/pulseeffects/template
+++ b/srcpkgs/pulseeffects/template
@@ -2,7 +2,7 @@
 pkgname=pulseeffects
 reverts="4.3.4_1"
 version=3.2.3
-revision=3
+revision=4
 build_style=meson
 pycompile_module="PulseEffects PulseEffectsTest"
 hostmakedepends="pkg-config"

From b1dc43e0f84322bbc809630267fe0e51c5e1b41e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 747/872] py3status: rebuild for Python 3.8.

---
 srcpkgs/py3status/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/py3status/template b/srcpkgs/py3status/template
index b7a263270e4..01709cfd14d 100644
--- a/srcpkgs/py3status/template
+++ b/srcpkgs/py3status/template
@@ -1,7 +1,7 @@
 # Template file for 'py3status'
 pkgname=py3status
 version=3.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="py3status"

From 0644b2ee33752b76bc1875c86123ab77a073fc53 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 748/872] pychess: rebuild for Python 3.8.

---
 srcpkgs/pychess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pychess/template b/srcpkgs/pychess/template
index 2c6ecef7bf9..d0594aa77f4 100644
--- a/srcpkgs/pychess/template
+++ b/srcpkgs/pychess/template
@@ -1,7 +1,7 @@
 # Template file for 'pychess'
 pkgname=pychess
 version=0.12.4
-revision=2
+revision=3
 build_style=python3-module
 pycompile_module="pychess"
 archs=noarch

From 5cf19da1be32229c7b04dffba15cd724042a2e9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 749/872] pycp: rebuild for Python 3.8.

---
 srcpkgs/pycp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pycp/template b/srcpkgs/pycp/template
index 770eb50d3f4..c9066259862 100644
--- a/srcpkgs/pycp/template
+++ b/srcpkgs/pycp/template
@@ -1,7 +1,7 @@
 # Template file for 'pycp'
 pkgname=pycp
 version=8.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pycp"

From d88382e9fb382116d88e9ccd60e69a7320462f5c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 750/872] pymol: rebuild for Python 3.8.

---
 srcpkgs/pymol/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pymol/template b/srcpkgs/pymol/template
index 428ba7a6deb..e1031f325c0 100644
--- a/srcpkgs/pymol/template
+++ b/srcpkgs/pymol/template
@@ -1,7 +1,7 @@
 # Template file for 'pymol'
 pkgname=pymol
 version=2.3.0
-revision=1
+revision=2
 wrksrc=${pkgname}-open-source-${version}
 build_style="python3-module"
 makedepends="msgpack-devel python3-numpy freetype-devel libfreeglut-devel glew-devel

From 1245dfb2ab23badf279042adca4caff2deba10a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 751/872] pyradio: rebuild for Python 3.8.

---
 srcpkgs/pyradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyradio/template b/srcpkgs/pyradio/template
index 10d7d8c6fbb..d2d5feddbdd 100644
--- a/srcpkgs/pyradio/template
+++ b/srcpkgs/pyradio/template
@@ -1,7 +1,7 @@
 # Template file for 'pyradio'
 pkgname=pyradio
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pyradio"

From f677cdf12f3d405d1bcb43aab8dd1fc258ee91d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 752/872] pyside2-tools: rebuild for Python 3.8.

---
 srcpkgs/pyside2-tools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyside2-tools/template b/srcpkgs/pyside2-tools/template
index 4ba0044452d..0a153de8c15 100644
--- a/srcpkgs/pyside2-tools/template
+++ b/srcpkgs/pyside2-tools/template
@@ -1,7 +1,7 @@
 # Template file for 'pyside2-tools'
 pkgname=pyside2-tools
 version=5.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release

From 727e69b5ed47b99d25354a6a6d6f42b907a7b696 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 753/872] pysolfc: rebuild for Python 3.8.

---
 srcpkgs/pysolfc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pysolfc/template b/srcpkgs/pysolfc/template
index 62eb90009af..1631e9619d3 100644
--- a/srcpkgs/pysolfc/template
+++ b/srcpkgs/pysolfc/template
@@ -1,7 +1,7 @@
 # Template file for 'pysolfc'
 pkgname=pysolfc
 version=2.6.4
-revision=2
+revision=3
 archs="noarch"
 wrksrc="PySolFC-${pkgname}-${version}"
 build_style=python3-module

From 837440a9d7d89a3bcfe00ffd798f18212ea374e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 754/872] pywal: rebuild for Python 3.8.

---
 srcpkgs/pywal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pywal/template b/srcpkgs/pywal/template
index 214a36698f2..98c4e1581e4 100644
--- a/srcpkgs/pywal/template
+++ b/srcpkgs/pywal/template
@@ -1,7 +1,7 @@
 # Template file for 'pywal'
 pkgname=pywal
 version=3.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pywal"

From 168ac3cd6bd43efb1d6d4192cd9b426cffb66930 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 755/872] qomui: rebuild for Python 3.8.

---
 srcpkgs/qomui/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qomui/template b/srcpkgs/qomui/template
index 4e68864252d..8063350ba06 100644
--- a/srcpkgs/qomui/template
+++ b/srcpkgs/qomui/template
@@ -1,7 +1,7 @@
 # Template file for 'qomui'
 pkgname=qomui
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qomui"

From 26a0119ac8b90d7cd7d6f2c49b3d1c927325b552 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 756/872] quodlibet: rebuild for Python 3.8.

---
 srcpkgs/quodlibet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/quodlibet/template b/srcpkgs/quodlibet/template
index 53f6e926315..4b0c4ba0de5 100644
--- a/srcpkgs/quodlibet/template
+++ b/srcpkgs/quodlibet/template
@@ -1,7 +1,7 @@
 # Template file for 'quodlibet'
 pkgname=quodlibet
 version=4.2.1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="quodlibet"

From c8788e4bb387cdc48040e3af5663a0a23e068ed2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 757/872] qutebrowser: rebuild for Python 3.8.

---
 srcpkgs/qutebrowser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qutebrowser/template b/srcpkgs/qutebrowser/template
index 11b74e4445d..07257c2d84b 100644
--- a/srcpkgs/qutebrowser/template
+++ b/srcpkgs/qutebrowser/template
@@ -1,7 +1,7 @@
 # Template file for 'qutebrowser'
 pkgname=qutebrowser
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qutebrowser"

From 2a2f8aeebe7cb2c4d3783dcdf5725f4c8e717d03 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 758/872] r128gain: rebuild for Python 3.8.

---
 srcpkgs/r128gain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/r128gain/template b/srcpkgs/r128gain/template
index cdea955828e..1cb30c786f8 100644
--- a/srcpkgs/r128gain/template
+++ b/srcpkgs/r128gain/template
@@ -1,7 +1,7 @@
 # Template file for 'r128gain'
 pkgname=r128gain
 version=0.9.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="r128gain"
 hostmakedepends="python3-setuptools"

From b923fdcd9bc9204affa69740d34e582e6712ed4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 759/872] radicale2: rebuild for Python 3.8.

---
 srcpkgs/radicale2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/radicale2/template b/srcpkgs/radicale2/template
index 0d8a27d89f3..310bc8cb3cf 100644
--- a/srcpkgs/radicale2/template
+++ b/srcpkgs/radicale2/template
@@ -1,7 +1,7 @@
 # Template file for 'radicale2'
 pkgname=radicale2
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module

From befc14e8b9ff96c37104bf2441216707df5bcc8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 760/872] ranger: rebuild for Python 3.8.

---
 srcpkgs/ranger/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template
index a387eac4ed7..a49716971a5 100644
--- a/srcpkgs/ranger/template
+++ b/srcpkgs/ranger/template
@@ -1,7 +1,7 @@
 # Template file for 'ranger'
 pkgname=ranger
 version=1.9.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ranger"

From d490364b5c373b46163f36731a39754e04556e98 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 761/872] rednotebook: rebuild for Python 3.8.

---
 srcpkgs/rednotebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rednotebook/template b/srcpkgs/rednotebook/template
index ac870a7a992..af7dea12fd5 100644
--- a/srcpkgs/rednotebook/template
+++ b/srcpkgs/rednotebook/template
@@ -1,7 +1,7 @@
 # Template file for 'rednotebook'
 pkgname=rednotebook
 version=2.11.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rednotebook"

From 44a5a4b73859a74fb915e7613fce5caeabd8acf1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 762/872] redshift: rebuild for Python 3.8.

---
 srcpkgs/redshift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/redshift/template b/srcpkgs/redshift/template
index bb31e7cec05..c58b8daeb76 100644
--- a/srcpkgs/redshift/template
+++ b/srcpkgs/redshift/template
@@ -1,7 +1,7 @@
 # Template file for 'redshift'
 pkgname=redshift
 version=1.12
-revision=1
+revision=2
 build_style=gnu-configure
 build_options="geoclue2"
 configure_args="--enable-gui --disable-geoclue $(vopt_enable geoclue2)"

From c0649b58de59e8a68aff332807f3240430e3ee7c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 763/872] ripe-atlas-tools: rebuild for Python 3.8.

---
 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 c8eef786962..c5e21c4b8dc 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=2.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ripe/atlas/tools"

From 8af034434b8588027b9c7e0f1b0abc587ad462bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 764/872] rmlint: rebuild for Python 3.8.

---
 srcpkgs/rmlint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rmlint/template b/srcpkgs/rmlint/template
index dc8d904d0c2..894a9a1dd01 100644
--- a/srcpkgs/rmlint/template
+++ b/srcpkgs/rmlint/template
@@ -1,7 +1,7 @@
 # Template file for 'rmlint'
 pkgname=rmlint
 version=2.9.0
-revision=1
+revision=2
 build_style=scons
 hostmakedepends="pkg-config python3-Sphinx glib-devel"
 makedepends="libblkid-devel elfutils-devel json-glib-devel"

From 04462f15c08bdd92062a53e420054fdfd65da92b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 765/872] rtv: rebuild for Python 3.8.

---
 srcpkgs/rtv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rtv/template b/srcpkgs/rtv/template
index 1a089e3e88d..1fc137b2e5b 100644
--- a/srcpkgs/rtv/template
+++ b/srcpkgs/rtv/template
@@ -1,7 +1,7 @@
 # Template file for 'rtv'
 pkgname=rtv
 version=1.27.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rtv"

From deb18b1928007c6e0a1042dab8adfe94a801bc28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 766/872] rubber: rebuild for Python 3.8.

---
 srcpkgs/rubber/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rubber/template b/srcpkgs/rubber/template
index cf668638cef..c7fe4cbbd06 100644
--- a/srcpkgs/rubber/template
+++ b/srcpkgs/rubber/template
@@ -1,7 +1,7 @@
 # Template file for 'rubber'
 pkgname=rubber
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From d19b0a94a22decc29f95aa94f2398a30133f2211 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 767/872] safeeyes: rebuild for Python 3.8.

---
 srcpkgs/safeeyes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/safeeyes/template b/srcpkgs/safeeyes/template
index bc35f302011..e7019662316 100644
--- a/srcpkgs/safeeyes/template
+++ b/srcpkgs/safeeyes/template
@@ -1,7 +1,7 @@
 # Template file for 'safeeyes'
 pkgname=safeeyes
 version=2.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="safeeyes"

From c2dacb3fb6e6380df395bffb3460d67524ddf348 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 768/872] scapy: rebuild for Python 3.8.

---
 srcpkgs/scapy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scapy/template b/srcpkgs/scapy/template
index 65242f332a8..36972bfd461 100644
--- a/srcpkgs/scapy/template
+++ b/srcpkgs/scapy/template
@@ -1,7 +1,7 @@
 # Template file for 'scapy'
 pkgname=scapy
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="scapy"

From 6b1ebeaf3648f62790dbf2c394c4060d12cb23d0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 769/872] screenplain: rebuild for Python 3.8.

---
 srcpkgs/screenplain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/screenplain/template b/srcpkgs/screenplain/template
index 8410ab45e40..8eb759ae6a6 100644
--- a/srcpkgs/screenplain/template
+++ b/srcpkgs/screenplain/template
@@ -1,7 +1,7 @@
 # Template file for 'screenplain'
 pkgname=screenplain
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenplain"

From 483229f73350818a1571180552a37954f26fe29d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 770/872] scudcloud: rebuild for Python 3.8.

---
 srcpkgs/scudcloud/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
index 1b9f5f27d8a..1ab2618066e 100644
--- a/srcpkgs/scudcloud/template
+++ b/srcpkgs/scudcloud/template
@@ -1,7 +1,7 @@
 # Template file for 'scudcloud'
 pkgname=scudcloud
 version=1.65
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="scudcloud"
 hostmakedepends="python3-setuptools"

From 123ca799b85c1e8c6cb93162214eead9f92e0baa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 771/872] seafile-libclient: rebuild for Python 3.8.

---
 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 47c49d5ceb2..5eda59c1041 100644
--- a/srcpkgs/seafile-libclient/template
+++ b/srcpkgs/seafile-libclient/template
@@ -1,7 +1,7 @@
 # Template file for 'seafile-libclient'
 pkgname=seafile-libclient
 version=7.0.2
-revision=1
+revision=2
 _distname="${pkgname/-libclient/}"
 wrksrc="${_distname}-${version}"
 build_style=gnu-configure

From dadf6fedad6d6851a5b944f873d4d86cd36ed505 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 772/872] sonata: rebuild for Python 3.8.

---
 srcpkgs/sonata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template
index 3e07610d1e5..fc2d86e6c1a 100644
--- a/srcpkgs/sonata/template
+++ b/srcpkgs/sonata/template
@@ -1,7 +1,7 @@
 # Template file for 'sonata'
 pkgname=sonata
 version=1.7b1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="sonata"

From 430726310d4a2c6f4487784216744a0ba8d42a97 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 773/872] speech-dispatcher: rebuild for Python 3.8.

---
 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 0c27951586a..39cebf1f320 100644
--- a/srcpkgs/speech-dispatcher/template
+++ b/srcpkgs/speech-dispatcher/template
@@ -1,7 +1,7 @@
 # Template build file for 'speech-dispatcher'.
 pkgname=speech-dispatcher
 version=0.8.8
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static"
 short_desc="High-level device independent layer for speech synthesis interface"

From 4bea1bb7754629dcc5164d4be09697dacdc27f52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 774/872] speedtest-cli: rebuild for Python 3.8.

---
 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 6746ea3a35e..c65d9fd631d 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.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="speedtest.py"

From b24b9d876eb69c9d222b4115f375b535b41d8e34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 775/872] sshuttle: rebuild for Python 3.8.

---
 srcpkgs/sshuttle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sshuttle/template b/srcpkgs/sshuttle/template
index e74d90171f2..04bae9a15c3 100644
--- a/srcpkgs/sshuttle/template
+++ b/srcpkgs/sshuttle/template
@@ -1,7 +1,7 @@
 # Template file for 'sshuttle'
 pkgname=sshuttle
 version=0.78.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="sshuttle"

From a94cf196bb0163b8ceac1e90b0c8aacf242262a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 776/872] sssd: rebuild for Python 3.8.

---
 srcpkgs/sssd/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sssd/template b/srcpkgs/sssd/template
index 2ea28d21bee..13d0da0ba99 100644
--- a/srcpkgs/sssd/template
+++ b/srcpkgs/sssd/template
@@ -1,7 +1,7 @@
 # Template file for 'sssd'
 pkgname=sssd
 version=2.0.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-selinux --without-semanage
  --disable-cifs-idmap-plugin --without-samba --with-os=fedora

From 70d497d5a57f21eb299193883523ee44fa71ea5a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 777/872] stcgal: rebuild for Python 3.8.

---
 srcpkgs/stcgal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stcgal/template b/srcpkgs/stcgal/template
index 3410ccf8678..d75e88837cc 100644
--- a/srcpkgs/stcgal/template
+++ b/srcpkgs/stcgal/template
@@ -1,7 +1,7 @@
 # Template file for 'stcgal'
 pkgname=stcgal
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="stcgal"

From cdf4a89e4e281111a817c4c7113ad77d40c5c6be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 778/872] stig: rebuild for Python 3.8.

---
 srcpkgs/stig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stig/template b/srcpkgs/stig/template
index 0777c5f0cc2..abe5f3b563c 100644
--- a/srcpkgs/stig/template
+++ b/srcpkgs/stig/template
@@ -1,7 +1,7 @@
 # Template file for 'stig'
 pkgname=stig
 version=0.10.1a
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 930f6e549836c3d39fd851a831e39a14e72633bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 779/872] streamlink: rebuild for Python 3.8.

---
 srcpkgs/streamlink/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/streamlink/template b/srcpkgs/streamlink/template
index abcdc12c4ac..59caa85dc8a 100644
--- a/srcpkgs/streamlink/template
+++ b/srcpkgs/streamlink/template
@@ -1,7 +1,7 @@
 # Template file for 'streamlink'
 pkgname=streamlink
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="streamlink streamlink_cli"

From ba9febf35412930fc49b70b49d56a17aa23ec4db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 780/872] subuser: rebuild for Python 3.8.

---
 srcpkgs/subuser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/subuser/template b/srcpkgs/subuser/template
index 50444246b29..0bc3e71db36 100644
--- a/srcpkgs/subuser/template
+++ b/srcpkgs/subuser/template
@@ -1,7 +1,7 @@
 # Template file for 'subuser'
 pkgname=subuser
 version=0.6.2
-revision=2
+revision=3
 archs="x86_64*"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From e15b7d83da234e08cd82b0718dee84173dfe4966 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 781/872] synapse: rebuild for Python 3.8.

---
 srcpkgs/synapse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template
index daae80e5792..0c0fd6841fb 100644
--- a/srcpkgs/synapse/template
+++ b/srcpkgs/synapse/template
@@ -1,7 +1,7 @@
 # Template file for 'synapse'
 pkgname=synapse
 version=1.3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From b4a3fa9e78a0b408df1d5ebbe41cd3ac56907dc4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 782/872] tekaim: rebuild for Python 3.8.

---
 srcpkgs/tekaim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tekaim/template b/srcpkgs/tekaim/template
index e3cc5335ecc..bd60dcc57a6 100644
--- a/srcpkgs/tekaim/template
+++ b/srcpkgs/tekaim/template
@@ -1,7 +1,7 @@
 # Template file for 'tekaim'
 pkgname=tekaim
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From 7224199b765cb4f2b66887ffe6244532da34b988 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 783/872] telepresence: rebuild for Python 3.8.

---
 srcpkgs/telepresence/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/telepresence/template b/srcpkgs/telepresence/template
index 17300f3b548..fa7f916f66f 100644
--- a/srcpkgs/telepresence/template
+++ b/srcpkgs/telepresence/template
@@ -1,7 +1,7 @@
 # Template file for 'telepresence'
 pkgname=telepresence
 version=0.102
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="telepresence"

From f585c9fe61cb8e3a7275817bb40e60bd92406046 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 784/872] termdown: rebuild for Python 3.8.

---
 srcpkgs/termdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/termdown/template b/srcpkgs/termdown/template
index 90a4a894d42..299de920389 100644
--- a/srcpkgs/termdown/template
+++ b/srcpkgs/termdown/template
@@ -1,7 +1,7 @@
 # Template file for 'termdown'
 pkgname=termdown
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="termdown.py"

From 52c4dcee8ca0ed8b268907b88b218d7b8e6f9593 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 785/872] terminal_markdown_viewer: rebuild for Python 3.8.

---
 srcpkgs/terminal_markdown_viewer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/terminal_markdown_viewer/template b/srcpkgs/terminal_markdown_viewer/template
index e5d0f38aae2..ba3fcfdc8d6 100644
--- a/srcpkgs/terminal_markdown_viewer/template
+++ b/srcpkgs/terminal_markdown_viewer/template
@@ -1,7 +1,7 @@
 # Template file for 'terminal_markdown_viewer'
 pkgname=terminal_markdown_viewer
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mdv"

From c4298b68d0f7694e8a23e689420f2a3d1f085606 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 786/872] thefuck: rebuild for Python 3.8.

---
 srcpkgs/thefuck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thefuck/template b/srcpkgs/thefuck/template
index 714cd7982c7..a0de1c7b6a3 100644
--- a/srcpkgs/thefuck/template
+++ b/srcpkgs/thefuck/template
@@ -1,7 +1,7 @@
 # Template file for 'thefuck'
 pkgname=thefuck
 version=3.29
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="thefuck"

From b18d19065aa9bd9b335b3ee939bb0bd64efade58 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 787/872] thinkpad-scripts: rebuild for Python 3.8.

---
 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 8d26cf23e77..855d42492fb 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tps"

From 1770ed9b1c9c751304b91a6f6e53da7de1648214 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 788/872] thrift: rebuild for Python 3.8.

---
 srcpkgs/thrift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thrift/template b/srcpkgs/thrift/template
index 73b0f59d4f6..e379ac35a09 100644
--- a/srcpkgs/thrift/template
+++ b/srcpkgs/thrift/template
@@ -1,7 +1,7 @@
 # Template file for 'thrift'
 pkgname=thrift
 version=0.12.0
-revision=2
+revision=3
 build_style=gnu-configure
 makedepends="boost-devel libressl-devel"
 short_desc="Apache Thrift compiler"

From 524283aef8b8fdd32035330913bfd16958f21979 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 789/872] todoman: rebuild for Python 3.8.

---
 srcpkgs/todoman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/todoman/template b/srcpkgs/todoman/template
index 2e0489ff49e..676412b8d0b 100644
--- a/srcpkgs/todoman/template
+++ b/srcpkgs/todoman/template
@@ -1,7 +1,7 @@
 # Template file for 'todoman'
 pkgname=todoman
 version=3.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="todoman"

From 7180afa5a1715531304f6a36a9eac431039f64f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 790/872] toot: rebuild for Python 3.8.

---
 srcpkgs/toot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template
index b6dcdc9ede6..7f9fac6ca01 100644
--- a/srcpkgs/toot/template
+++ b/srcpkgs/toot/template
@@ -1,7 +1,7 @@
 # Template file for 'toot'
 pkgname=toot
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="toot"

From d56207a1678134019b4f169934f0c50a78cf7588 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 791/872] torbrowser-launcher: fix and rebuild for Python 3.8.

---
 srcpkgs/torbrowser-launcher/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/torbrowser-launcher/template b/srcpkgs/torbrowser-launcher/template
index a4aa707495c..4986b6b3240 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.2
-revision=1
+revision=2
 archs="i686 x86_64" # limited by Tor Browser itself
 build_style=python3-module
 pycompile_module="torbrowser_launcher"
@@ -15,6 +15,10 @@ changelog="https://raw.githubusercontent.com/micahflee/torbrowser-launcher/maste
 distfiles="https://github.com/micahflee/torbrowser-launcher/archive/v${version}.tar.gz"
 checksum=25ad4b0c70579628bf18f4cdcd18ac303fe4f7f1c590cc48df2a87651c92991c
 
+post_extract() { 
+	# Python 3.8 removed platform.dist()
+	sed -i 's/distro =.*/distro = "Void"/' setup.py
+}
 post_install() {
 	vlicense LICENSE
 	rm ${DESTDIR}/usr/share/locale/torbrowser-launcher.mo # installed twice

From c66dda5131119abe071425664238ca389de34d8f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 792/872] tox: rebuild for Python 3.8.

---
 srcpkgs/tox/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tox/template b/srcpkgs/tox/template
index 8c6b63a3cb1..908cb86bb38 100644
--- a/srcpkgs/tox/template
+++ b/srcpkgs/tox/template
@@ -1,7 +1,7 @@
 # Template file for 'tox'
 pkgname=tox
 version=3.14.0
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="tox"
 hostmakedepends="python3-setuptools"

From c37ef482e10fb14da3d6cb396c8904257dc2c7c0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 793/872] trackma: rebuild for Python 3.8.

---
 srcpkgs/trackma/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/trackma/template b/srcpkgs/trackma/template
index 96833382346..4c29bb8a35d 100644
--- a/srcpkgs/trackma/template
+++ b/srcpkgs/trackma/template
@@ -1,7 +1,7 @@
 # Template file for 'trackma'
 pkgname=trackma
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 0a1f54dd6467927b77f9371a41381a01608228e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 794/872] trash-cli: rebuild for Python 3.8.

---
 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 2a08548c7c8..4ab724d8cb1 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.17.1.14
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3"

From 58a2a91ed22dcbe5fab5c49b6cb5b04cacb0bec6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 795/872] tryton: rebuild for Python 3.8.

---
 srcpkgs/tryton/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tryton/template b/srcpkgs/tryton/template
index 196033361f6..61e0f733dc9 100644
--- a/srcpkgs/tryton/template
+++ b/srcpkgs/tryton/template
@@ -1,7 +1,7 @@
 # Template file for 'tryton'
 pkgname=tryton
 version=5.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tryton"

From 0334c761ba939e24db0b4c619858a9e37a119b2d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 796/872] tuimoji: rebuild for Python 3.8.

---
 srcpkgs/tuimoji/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuimoji/template b/srcpkgs/tuimoji/template
index 71e0bf540c0..73f5cff281f 100644
--- a/srcpkgs/tuimoji/template
+++ b/srcpkgs/tuimoji/template
@@ -1,7 +1,7 @@
 # Template file for 'tuimoji'
 pkgname=tuimoji
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tuimoji"

From 7c8600b2683e37b9ae3b8d28fdf26fda4c4f5c41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 797/872] tuir: rebuild for Python 3.8.

---
 srcpkgs/tuir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuir/template b/srcpkgs/tuir/template
index dfc0b15c535..a98f4484544 100644
--- a/srcpkgs/tuir/template
+++ b/srcpkgs/tuir/template
@@ -1,7 +1,7 @@
 # Template file for 'tuir'
 pkgname=tuir
 version=1.28.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=python3-module

From fa94d7c83f3c15bf441526ff78dcfaa2e1a0e4fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 798/872] tzupdate: rebuild for Python 3.8.

---
 srcpkgs/tzupdate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tzupdate/template b/srcpkgs/tzupdate/template
index 9531f0f7540..de2217476bd 100644
--- a/srcpkgs/tzupdate/template
+++ b/srcpkgs/tzupdate/template
@@ -1,7 +1,7 @@
 # Template file for 'tzupdate'
 pkgname=tzupdate
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tzupdate.py"

From 8246b4d5c37f08891fb4b91655ad97e368d4b404 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 799/872] udiskie: rebuild for Python 3.8.

---
 srcpkgs/udiskie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/udiskie/template b/srcpkgs/udiskie/template
index 536f4d5609d..06d58236046 100644
--- a/srcpkgs/udiskie/template
+++ b/srcpkgs/udiskie/template
@@ -1,7 +1,7 @@
 # Template file for 'udiskie'
 pkgname=udiskie
 version=1.7.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="udiskie"

From c58f7d10a7748b8cf418991f3d804ce8631a137e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 800/872] ueberzug: rebuild for Python 3.8.

---
 srcpkgs/ueberzug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ueberzug/template b/srcpkgs/ueberzug/template
index e0c474ff63e..dfa1ab29d96 100644
--- a/srcpkgs/ueberzug/template
+++ b/srcpkgs/ueberzug/template
@@ -1,7 +1,7 @@
 # Template file for 'ueberzug'
 pkgname=ueberzug
 version=18.1.3
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel libX11-devel libXext-devel"

From e6ca68fa761e2b3df26f06a7b44e30331de08220 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 801/872] ufw: rebuild for Python 3.8.

---
 srcpkgs/ufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ufw/template b/srcpkgs/ufw/template
index ac7dfa45cdd..0bf2a3a0b76 100644
--- a/srcpkgs/ufw/template
+++ b/srcpkgs/ufw/template
@@ -1,7 +1,7 @@
 # Template file for 'ufw'
 pkgname=ufw
 version=0.36
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="ufw"

From 14dcd23aa719947cc774b71ef0820127a4865ef0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 802/872] unicorn: rebuild for Python 3.8.

---
 srcpkgs/unicorn/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/unicorn/template b/srcpkgs/unicorn/template
index 317e261ae88..971d44752ca 100644
--- a/srcpkgs/unicorn/template
+++ b/srcpkgs/unicorn/template
@@ -1,7 +1,7 @@
 # Template file for 'unicorn'
 pkgname=unicorn
 version=1.0.1
-revision=2
+revision=3
 archs="x86_64* i686*"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"
 short_desc="Lightweight multi-platform, multi-architecture CPU emulator framework"

From 1ae8d35f7645adeab1e7f8afafd996c92f0c08b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 803/872] unknown-horizons: rebuild for Python 3.8.

---
 srcpkgs/unknown-horizons/patches/py38.patch | 14 ++++++++++++++
 srcpkgs/unknown-horizons/template           |  2 +-
 2 files changed, 15 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/unknown-horizons/patches/py38.patch

diff --git a/srcpkgs/unknown-horizons/patches/py38.patch b/srcpkgs/unknown-horizons/patches/py38.patch
new file mode 100644
index 00000000000..59194750cd1
--- /dev/null
+++ b/srcpkgs/unknown-horizons/patches/py38.patch
@@ -0,0 +1,14 @@
+--- setup.py.orig
++++ setup.py
+@@ -39,10 +39,7 @@
+ # Ensure we are in the correct directory
+ os.chdir(os.path.realpath(os.path.dirname(__file__)))
+ 
+-if platform.dist()[0].lower() in ('debian', 'ubuntu'):
+-	executable_path = 'games'
+-else:
+-	executable_path = 'bin'
++executable_path = 'bin'
+ 
+ 
+ # this trick is for setting RELEASE_VERSION if the code is cloned from git repository
diff --git a/srcpkgs/unknown-horizons/template b/srcpkgs/unknown-horizons/template
index b5fc593b744..6e81970800d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3 intltool git python3-Pillow"

From 615d1baa489feab3864039bee37dad2e1ba9977d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 804/872] urh: rebuild for Python 3.8.

---
 srcpkgs/urh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urh/template b/srcpkgs/urh/template
index 2cec83082fd..31f28bb366b 100644
--- a/srcpkgs/urh/template
+++ b/srcpkgs/urh/template
@@ -1,7 +1,7 @@
 # Template file for 'urh'
 pkgname=urh
 version=2.7.5
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="urh"
 hostmakedepends="python3-setuptools python3-Cython"

From da0ab011d8839f3a6ddc2367fc8e1c879825ec29 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 805/872] urlscan: rebuild for Python 3.8.

---
 srcpkgs/urlscan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlscan/template b/srcpkgs/urlscan/template
index f6f0d1db07b..2bb1688dad7 100644
--- a/srcpkgs/urlscan/template
+++ b/srcpkgs/urlscan/template
@@ -1,7 +1,7 @@
 # Template file for 'urlscan'
 pkgname=urlscan
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlscan"

From d23be20fa55a06ffcdf1acd3d7018f833d4337c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 806/872] urlwatch: rebuild for Python 3.8.

---
 srcpkgs/urlwatch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlwatch/template b/srcpkgs/urlwatch/template
index e8a5e403c92..1166fe101a7 100644
--- a/srcpkgs/urlwatch/template
+++ b/srcpkgs/urlwatch/template
@@ -1,7 +1,7 @@
 # Template file for 'urlwatch'
 pkgname=urlwatch
 version=2.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlwatch"

From 758ae9723decfd1886b28f363eb103c16dbaa04b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 807/872] vapoursynth: fix and rebuild for Python 3.8.

---
 srcpkgs/vapoursynth/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/vapoursynth/template b/srcpkgs/vapoursynth/template
index dd85e8b39dc..1c417a624c3 100644
--- a/srcpkgs/vapoursynth/template
+++ b/srcpkgs/vapoursynth/template
@@ -1,7 +1,7 @@
 # Template file for 'vapoursynth'
 pkgname=vapoursynth
 version=R47.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake pkg-config libtool nasm python3-Cython"
 makedepends="python3-devel zimg-devel libmagick-devel libass-devel ffmpeg-devel
@@ -21,6 +21,7 @@ case $XBPS_TARGET_MACHINE in
 esac
 
 pre_configure() {
+	sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION/&-embed/g' configure.ac
 	./autogen.sh
 	case $XBPS_TARGET_MACHINE in
 		arm*musl)

From 2765c9f1b1e0d4395e629f6ff66e1003221cbb27 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 808/872] variety: rebuild for Python 3.8.

---
 srcpkgs/variety/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/variety/template b/srcpkgs/variety/template
index b4ea756c0c9..4d327a830f8 100644
--- a/srcpkgs/variety/template
+++ b/srcpkgs/variety/template
@@ -1,7 +1,7 @@
 # Template file for 'variety'
 pkgname=variety
 version=0.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="jumble variety variety_lib"

From 090c4bfcfc2db73eba64fcab8dec459707ad2676 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 809/872] vdirsyncer: rebuild for Python 3.8.

---
 srcpkgs/vdirsyncer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vdirsyncer/template b/srcpkgs/vdirsyncer/template
index 24080413456..708204afda2 100644
--- a/srcpkgs/vdirsyncer/template
+++ b/srcpkgs/vdirsyncer/template
@@ -1,7 +1,7 @@
 # Template file for 'vdirsyncer'
 pkgname=vdirsyncer
 version=0.16.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="vdirsyncer"

From fb3a977a1a5a3fd2be779201a4dd819512a4351a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 810/872] vidcutter: rebuild for Python 3.8.

---
 srcpkgs/vidcutter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vidcutter/template b/srcpkgs/vidcutter/template
index 4f30b888805..6ca85d4e766 100644
--- a/srcpkgs/vidcutter/template
+++ b/srcpkgs/vidcutter/template
@@ -1,7 +1,7 @@
 # Template file for 'vidcutter'
 pkgname=vidcutter
 version=6.0.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="vidcutter"

From 0addee01c86811593babb5238c415197cb01b03e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 811/872] vimiv: rebuild for Python 3.8.

---
 srcpkgs/vimiv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vimiv/template b/srcpkgs/vimiv/template
index 20fcbe7a03f..a560d4c9d81 100644
--- a/srcpkgs/vimiv/template
+++ b/srcpkgs/vimiv/template
@@ -1,7 +1,7 @@
 # Template file for 'vimiv'
 pkgname="vimiv"
 version=0.9.1
-revision=2
+revision=3
 build_style=gnu-makefile
 pycompile_module=vimiv
 hostmakedepends="python3-setuptools python3-devel"

From 0e236f27837583bf861e3984a19f4cf7827cbac1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 812/872] virtme: rebuild for Python 3.8.

---
 srcpkgs/virtme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtme/template b/srcpkgs/virtme/template
index 3905cb24b1d..30035a734f3 100644
--- a/srcpkgs/virtme/template
+++ b/srcpkgs/virtme/template
@@ -1,7 +1,7 @@
 # Template file for 'virtme'
 pkgname=virtme
 version=0.0.3.20180725
-revision=1
+revision=2
 archs=noarch
 _commit=60100bea82183b5d32ed9fca6534cd0fc60d5eb2
 wrksrc="${_commit}"

From 977bedee2b9cf218b33b79b6a30d782088e693be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 813/872] virtualenvwrapper: rebuild for Python 3.8.

---
 srcpkgs/virtualenvwrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtualenvwrapper/template b/srcpkgs/virtualenvwrapper/template
index 6007cc5d2ed..1f0c2efee86 100644
--- a/srcpkgs/virtualenvwrapper/template
+++ b/srcpkgs/virtualenvwrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'virtualenvwrapper'
 pkgname=virtualenvwrapper
 version=4.8.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="virtualenvwrapper"

From 13d514ee50452908bb52a5f4c379b8543e8aae2e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 814/872] visidata: rebuild for Python 3.8.

---
 srcpkgs/visidata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/visidata/template b/srcpkgs/visidata/template
index 715896e5f7c..c5c3ae7c82e 100644
--- a/srcpkgs/visidata/template
+++ b/srcpkgs/visidata/template
@@ -1,7 +1,7 @@
 # Template file for 'visidata'
 pkgname=visidata
 version=1.5.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="visidata"

From 9ed4ec9bfee68875daad74ea3f07f0378d1b0009 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 815/872] volctl: rebuild for Python 3.8.

---
 srcpkgs/volctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template
index 2b01750b9eb..585aabd2495 100644
--- a/srcpkgs/volctl/template
+++ b/srcpkgs/volctl/template
@@ -1,7 +1,7 @@
 # Template file for 'volctl'
 pkgname=volctl
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="volctl"

From 0db272695e88b29ee9216db4cc2572e0020b4df0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 816/872] voltron: rebuild for Python 3.8.

---
 srcpkgs/voltron/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/voltron/template b/srcpkgs/voltron/template
index c258bb9bab9..38f47a824e3 100644
--- a/srcpkgs/voltron/template
+++ b/srcpkgs/voltron/template
@@ -1,7 +1,7 @@
 # Template file for 'voltron'
 pkgname=voltron
 version=0.1.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="voltron"

From 12dedac32ff8a0f576ad19fc3147b4b386831c3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 817/872] volume_key: rebuild for Python 3.8.

---
 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 11d7b16bed8..14431cb70e9 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=1
+revision=2
 build_style=gnu-configure
 make_build_args="PYTHON3_CFLAGS=-I${XBPS_CROSS_BASE}/${py3_inc}
  PYTHON_CFLAGS=-I${XBPS_CROSS_BASE}/${py2_inc}"

From 3ce63c210ee385583504492fdf75f2ae859f05a4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 818/872] weather: rebuild for Python 3.8.

---
 srcpkgs/weather/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weather/template b/srcpkgs/weather/template
index ffa8a828b36..3ac33bfac15 100644
--- a/srcpkgs/weather/template
+++ b/srcpkgs/weather/template
@@ -1,7 +1,7 @@
 # Template file for 'weather'
 pkgname=weather
 version=2.3
-revision=2
+revision=3
 archs=noarch
 hostmakedepends="python3"
 depends="python3"

From 6b24b9871b5a34bb13b50f506793021986de04d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 819/872] wfuzz: rebuild for Python 3.8.

---
 srcpkgs/wfuzz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wfuzz/template b/srcpkgs/wfuzz/template
index b03c1f28add..4a88ab67407 100644
--- a/srcpkgs/wfuzz/template
+++ b/srcpkgs/wfuzz/template
@@ -1,7 +1,7 @@
 # Template file for 'wfuzz'
 pkgname=wfuzz
 version=2.4
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="wfuzz"

From ffffd630d47635e9948e7264798154dcf5cf4862 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 820/872] wpgtk: rebuild for Python 3.8.

---
 srcpkgs/wpgtk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpgtk/template b/srcpkgs/wpgtk/template
index 7e9d52b4f81..a722da58f22 100644
--- a/srcpkgs/wpgtk/template
+++ b/srcpkgs/wpgtk/template
@@ -1,7 +1,7 @@
 # Template file for 'wpgtk'
 pkgname=wpgtk
 version=6.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpgtk"

From ad6d5b938b34863f749429277206983bd33a9592 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 821/872] wpull: rebuild for Python 3.8.

---
 srcpkgs/wpull/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpull/template b/srcpkgs/wpull/template
index 5e9b9dcc641..621e1c85428 100644
--- a/srcpkgs/wpull/template
+++ b/srcpkgs/wpull/template
@@ -1,7 +1,7 @@
 # Template file for 'wpull'
 pkgname=wpull
 version=2.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpull"

From c0ba430699f94546d60abaeba6f248ef6d36ef84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 822/872] wxPython4: rebuild for Python 3.8.

---
 srcpkgs/wxPython4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wxPython4/template b/srcpkgs/wxPython4/template
index 2aa7117d5e0..b65e0b2ffe1 100644
--- a/srcpkgs/wxPython4/template
+++ b/srcpkgs/wxPython4/template
@@ -1,7 +1,7 @@
 # Template file for 'wxPython4'
 pkgname=wxPython4
 version=4.0.6
-revision=2
+revision=3
 wrksrc="wxPython-${version}"
 build_style=python3-module
 pycompile_module="wx"

From eae81cc7d657c1f863b8ae9a32aa075cc25328f4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 823/872] xcb-proto: rebuild for Python 3.8.

---
 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 1b26ecd73f3..020524bda87 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.13
-revision=2
+revision=3
 archs=noarch
 build_style=gnu-configure
 pycompile_module="xcbgen"

From c879f24aa56efd90bcd1b2031c3a7e194ee93abb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 824/872] xdot: rebuild for Python 3.8.

---
 srcpkgs/xdot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xdot/template b/srcpkgs/xdot/template
index 23f7b1f17e0..f7507ffb8c5 100644
--- a/srcpkgs/xdot/template
+++ b/srcpkgs/xdot/template
@@ -1,7 +1,7 @@
 # Template file for 'xdot'
 pkgname=xdot
 version=1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="xdot.py-${version}"
 build_style=python3-module

From ba48e65ee5332c30c40c9015ffd4f97f902bdcc1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 825/872] xkcdpass: rebuild for Python 3.8.

---
 srcpkgs/xkcdpass/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xkcdpass/template b/srcpkgs/xkcdpass/template
index 46b4a9635f9..37fb6872079 100644
--- a/srcpkgs/xkcdpass/template
+++ b/srcpkgs/xkcdpass/template
@@ -1,7 +1,7 @@
 # Template file for 'xkcdpass'
 pkgname=xkcdpass
 version=1.17.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="XKCD-password-generator-xkcdpass-${version}"
 build_style=python3-module

From f604c57acf10fb9091080955e88a704447aab0cb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 826/872] xonsh: rebuild for Python 3.8.

---
 srcpkgs/xonsh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xonsh/template b/srcpkgs/xonsh/template
index 768ebf36022..2dca267d0d1 100644
--- a/srcpkgs/xonsh/template
+++ b/srcpkgs/xonsh/template
@@ -1,7 +1,7 @@
 # Template file for 'xonsh'
 pkgname=xonsh
 version=0.9.12
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="xonsh xontrib"

From 8cdb99abdc99eefcc53ff3ab7418d4d830558c63 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 827/872] yq: rebuild for Python 3.8.

---
 srcpkgs/yq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yq/template b/srcpkgs/yq/template
index 7c3af7f43c2..dda886c6c40 100644
--- a/srcpkgs/yq/template
+++ b/srcpkgs/yq/template
@@ -1,7 +1,7 @@
 # Template file for 'yq'
 pkgname=yq
 version=2.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 6e757a227ac3953cc8567422ce6b473e6df30cc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 828/872] ytcc: rebuild for Python 3.8.

---
 srcpkgs/ytcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ytcc/template b/srcpkgs/ytcc/template
index feafa404b75..df4195758c7 100644
--- a/srcpkgs/ytcc/template
+++ b/srcpkgs/ytcc/template
@@ -1,7 +1,7 @@
 # Template file for 'ytcc'
 pkgname=ytcc
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ytcc"

From 1742b15ff06a60216eae8f7a016b441d18572e03 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 829/872] yturl: rebuild for Python 3.8.

---
 srcpkgs/yturl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yturl/template b/srcpkgs/yturl/template
index 6fa3e9872ee..ee14b77b5a0 100644
--- a/srcpkgs/yturl/template
+++ b/srcpkgs/yturl/template
@@ -1,7 +1,7 @@
 # Template file for 'yturl'
 pkgname=yturl
 version=2.0.2
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From b6302f7cf81ad28b08db1f9b8e986b9a6c3d59c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 830/872] yubikey-manager: rebuild for Python 3.8.

---
 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 af0330e8e15..fcc7b7cb737 100644
--- a/srcpkgs/yubikey-manager/template
+++ b/srcpkgs/yubikey-manager/template
@@ -1,7 +1,7 @@
 # Template file for 'yubikey-manager'
 pkgname=yubikey-manager
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 87bab1c9de0d25f72a5520b2adcd72c53599a433 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 831/872] z3: rebuild for Python 3.8.

---
 srcpkgs/z3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/z3/template b/srcpkgs/z3/template
index d632a285019..e054915df91 100644
--- a/srcpkgs/z3/template
+++ b/srcpkgs/z3/template
@@ -1,7 +1,7 @@
 # Template file for 'z3'
 pkgname=z3
 version=4.8.6
-revision=2
+revision=3
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=configure
 configure_args="--prefix=/usr -g --python $(vopt_if ocaml --ml)"

From 08edebe2ef2c613536937e6ee2d3fc6e9f067b72 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 832/872] zim: rebuild for Python 3.8.

---
 srcpkgs/zim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/zim/template b/srcpkgs/zim/template
index 45b9df5357c..dff4ad22081 100644
--- a/srcpkgs/zim/template
+++ b/srcpkgs/zim/template
@@ -1,7 +1,7 @@
 # Template file for 'zim'
 pkgname=zim
 version=0.71.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="zim"

From b4ef921e58656c77eb688ee4e2af7b20b3c8bfd2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 833/872] python3-pafy: rebuild for Python 3.8.

---
 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 ce26f770c69..b59c9a0adff 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.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pafy-${version}"
 build_style=python3-module

From bf4e7780fb8dcc15680cd79ddef83f8183bb3375 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 834/872] python3-perf: rebuild for Python 3.8.

---
 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 a03251f97e8..3d57ddb1c1a 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.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyperf-${version}"
 build_style=python3-module

From 80bbe375d025a8f2df0fa0878b5089c83f181e95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 835/872] python3-yara: rebuild for Python 3.8.

---
 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 4a6c56dd083..3bdff14a0da 100644
--- a/srcpkgs/python3-yara/template
+++ b/srcpkgs/python3-yara/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-yara'
 pkgname=python3-yara
 version=3.11.0
-revision=1
+revision=2
 wrksrc="yara-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From dfbf656d20e2c60d70d38432d72796e45a07530a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:31 +0200
Subject: [PATCH 836/872] azote: rebuild for Python 3.8.

---
 srcpkgs/azote/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/azote/template b/srcpkgs/azote/template
index 0a23c209551..2748cb98733 100644
--- a/srcpkgs/azote/template
+++ b/srcpkgs/azote/template
@@ -1,7 +1,7 @@
 # Template file for 'azote'
 pkgname=azote
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="azote"

From 6f9b552c053623ad5214d1b8401f41cb4e56734c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 837/872] binwalk: rebuild for Python 3.8.

---
 srcpkgs/binwalk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/binwalk/template b/srcpkgs/binwalk/template
index 461ea4b547a..fccd523d584 100644
--- a/srcpkgs/binwalk/template
+++ b/srcpkgs/binwalk/template
@@ -1,7 +1,7 @@
 # Template file for 'binwalk'
 pkgname=binwalk
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="binwalk"

From cdf9d0c94b7363a5bab761faa1a5119852db14c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 838/872] gnome-builder: rebuild for Python 3.8.

---
 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 9ae9ff9d94c..85aeeee9a15 100644
--- a/srcpkgs/gnome-builder/template
+++ b/srcpkgs/gnome-builder/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-builder'
 pkgname=gnome-builder
 version=3.34.1
-revision=1
+revision=2
 build_style=meson
 configure_args="-Dwith_webkit=true -Dwith_sysprof=true -Dhelp=true"
 hostmakedepends="appdata-tools desktop-file-utils flex gobject-introspection

From c0bccc27652b15e34572ed02503df5ae7b1dbebb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 839/872] gnome-tweaks: rebuild for Python 3.8.

---
 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 ac1f8bdb873..d0879253ac5 100644
--- a/srcpkgs/gnome-tweaks/template
+++ b/srcpkgs/gnome-tweaks/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-tweaks'
 pkgname=gnome-tweaks
 version=3.34.0
-revision=2
+revision=3
 archs=noarch
 build_style=meson
 pycompile_module="gtweak"

From c86e2d08bfa3e52c769e2b8c76e993af14c698bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 840/872] meson: rebuild for Python 3.8.

---
 srcpkgs/meson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meson/template b/srcpkgs/meson/template
index 315a0f27a92..76791451681 100644
--- a/srcpkgs/meson/template
+++ b/srcpkgs/meson/template
@@ -2,7 +2,7 @@
 pkgname=meson
 reverts="0.52.0_1 0.52.0_2"
 version=0.51.2
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mesonbuild"

From 1259e701609ac87f299b515b612f6b5589a6a5e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 841/872] onionshare: rebuild for Python 3.8.

---
 srcpkgs/onionshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onionshare/template b/srcpkgs/onionshare/template
index c585ae6101e..c37c5962736 100644
--- a/srcpkgs/onionshare/template
+++ b/srcpkgs/onionshare/template
@@ -1,7 +1,7 @@
 # Template file for 'onionshare'
 pkgname=onionshare
 version=2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="onionshare"

From e24fbb347a50db8d9adc3c2e21abfa2926516285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 842/872] portage: rebuild for Python 3.8.

---
 srcpkgs/portage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/portage/template b/srcpkgs/portage/template
index b0f34731035..9610428bbf4 100644
--- a/srcpkgs/portage/template
+++ b/srcpkgs/portage/template
@@ -1,7 +1,7 @@
 # Template file for 'portage'
 pkgname=portage
 version=2.3.77
-revision=1
+revision=2
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=python3-module
 pycompile_module="portage _emerge"

From 3d8944805a3fcbe269c633fd504f8156014b9743 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 843/872] rpm: fix and rebuild for Python 3.8.

---
 srcpkgs/rpm/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/rpm/template b/srcpkgs/rpm/template
index 98e35930c4c..695195323fd 100644
--- a/srcpkgs/rpm/template
+++ b/srcpkgs/rpm/template
@@ -1,7 +1,7 @@
 # Template file for 'rpm'
 pkgname=rpm
 version=4.15.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--with-lua --with-cap --with-acl --with-external-db
  --enable-python PYTHON=python3"
@@ -18,7 +18,7 @@ distfiles="http://ftp.rpm.org/releases/rpm-4.15.x/rpm-${version}.tar.bz2"
 checksum=1e06723b13591e57c99ebe2006fb8daddc4cf72efb366a64a34673ba5f61c201
 conflicts="rpmextract>=0" # Both provide rpm2cpio
 
-CFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6"
+CFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nss"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nspr"
 

From 72f86e0f7af627c04b12bdf23f9811e4ae8da247 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 844/872] youtube-dl: rebuild for Python 3.8.

---
 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 d6596b80bd3..f1ae3aa1a74 100644
--- a/srcpkgs/youtube-dl/template
+++ b/srcpkgs/youtube-dl/template
@@ -1,7 +1,7 @@
 # Template file for 'youtube-dl'
 pkgname=youtube-dl
 version=2019.10.16
-revision=1
+revision=2
 archs=noarch
 wrksrc=youtube-dl
 build_style=python3-module

From fb04151cb309fc8ff7a84dfe9204c113fb159d19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 845/872] blender: rebuild for Python 3.8.

---
 srcpkgs/blender/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template
index 758d1235185..47cb8f8ad13 100644
--- a/srcpkgs/blender/template
+++ b/srcpkgs/blender/template
@@ -1,7 +1,7 @@
 # Template file for 'blender'
 pkgname=blender
 version=2.79b
-revision=9
+revision=10
 build_style="cmake"
 makedepends="
  libgomp-devel libpng-devel tiff-devel python3-devel glu-devel

From 7a05e07582c4f2dad1e5ce7b472de4dd50f5ffc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 846/872] freecad: fix and rebuild for Python 3.8.

---
 srcpkgs/freecad/patches/090-py38.patch | 22 ++++++++++++++++++++++
 srcpkgs/freecad/template               |  2 +-
 2 files changed, 23 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/freecad/patches/090-py38.patch

diff --git a/srcpkgs/freecad/patches/090-py38.patch b/srcpkgs/freecad/patches/090-py38.patch
new file mode 100644
index 00000000000..92566df9df3
--- /dev/null
+++ b/srcpkgs/freecad/patches/090-py38.patch
@@ -0,0 +1,22 @@
+From 174011749d836f3b6c6ae2630f53b2f4c1f9d3fc Mon Sep 17 00:00:00 2001
+From: Richard <hobbes1069@gmail.com>
+Date: Thu, 17 Oct 2019 11:20:10 -0500
+Subject: [PATCH] Update swigpyrun.in for Python 3.8
+
+In Python 3.8 some functions related to thread state were intentionally made private.
+
+This fix (specific to FreeCAD) was suggested here:
+
+https://bugs.python.org/issue35886
+
+--- src/Base/swigpyrun.inl
++++ src/Base/swigpyrun.inl
+@@ -72,7 +72,7 @@ void cleanupSWIG_T(const char* TypeName)
+ 
+     PyObject *module, *dict;
+     PyInterpreterState *interp = PyThreadState_GET()->interp;
+-    PyObject *modules = interp->modules;
++    PyObject *modules = PyImport_GetModuleDict();
+     module = PyDict_GetItemString(modules, "__builtin__");
+     if (module != NULL && PyModule_Check(module)) {
+         dict = PyModule_GetDict(module);
diff --git a/srcpkgs/freecad/template b/srcpkgs/freecad/template
index 9e9375c4444..26bf34702a2 100644
--- a/srcpkgs/freecad/template
+++ b/srcpkgs/freecad/template
@@ -1,7 +1,7 @@
 # Template file for 'freecad'
 pkgname=freecad
 version=0.18.3
-revision=2
+revision=3
 wrksrc="FreeCAD-${version}"
 build_style=cmake
 

From 718d5c572ffaa708c4160791eb058eabf0caf143 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 847/872] gdb: rebuild for Python 3.8.

---
 srcpkgs/gdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gdb/template b/srcpkgs/gdb/template
index 9f84e4869e9..39aab79d08a 100644
--- a/srcpkgs/gdb/template
+++ b/srcpkgs/gdb/template
@@ -1,7 +1,7 @@
 # Template file for 'gdb'
 pkgname=gdb
 version=8.3.1
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="/usr/share/gdb"
 configure_args="--disable-werror --disable-nls --with-system-readline

From e89ecd13e39e0d4ffa50beaae64ee63aa2febcdc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 848/872] hexchat: rebuild for Python 3.8.

---
 srcpkgs/hexchat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hexchat/template b/srcpkgs/hexchat/template
index fbeaf28ae8a..9f7d7957b76 100644
--- a/srcpkgs/hexchat/template
+++ b/srcpkgs/hexchat/template
@@ -1,7 +1,7 @@
 # Template file for 'hexchat'
 pkgname=hexchat
 version=2.14.2
-revision=6
+revision=7
 build_style=meson
 configure_args="-Dwith-dbus=true -Dwith-ssl=true -Dwith-text=false
  -Dwith-perl=/usr/bin/perl -Dwith-python=python3

From 295d2fcdb8e6c8981469ea3f0881d7acc0d7a5a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 849/872] hyperion: rebuild for Python 3.8.

---
 srcpkgs/hyperion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hyperion/template b/srcpkgs/hyperion/template
index 0befdbe7064..7ce415e929e 100644
--- a/srcpkgs/hyperion/template
+++ b/srcpkgs/hyperion/template
@@ -1,7 +1,7 @@
 # Template file for 'hyperion'
 pkgname=hyperion
 version=1.03.2
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DUSE_SYSTEM_PROTO_LIBS=ON -DENABLE_QT5=ON
  -DPROTOBUF_PROTOC_EXECUTABLE=/usr/bin/protoc -DENABLE_AMLOGIC=ON

From c6846e2a15765deae100b5a9a32307270668a58c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 850/872] kdevelop-python: rebuild for Python 3.8.

---
 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 0265916a3d0..a306eb8f442 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.4.2
-revision=1
+revision=2
 wrksrc="kdev-python-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/kdevpythonsupport"

From a61462c12e1549e93d89a2be3d1fbc1c899f8fc7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 851/872] kitty: rebuild for Python 3.8.

---
 srcpkgs/kitty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/kitty/template b/srcpkgs/kitty/template
index d79bcc4acce..54cd08c23ec 100644
--- a/srcpkgs/kitty/template
+++ b/srcpkgs/kitty/template
@@ -1,7 +1,7 @@
 # Template file for 'kitty'
 pkgname=kitty
 version=0.14.6
-revision=1
+revision=2
 pycompile_dirs="usr/lib/kitty"
 hostmakedepends="ncurses pkg-config python3 wayland-devel wayland-protocols"
 makedepends="gettext-devel glfw-devel harfbuzz-devel libxkbcommon-devel

From eb1971689e3b6e8804a1e503f9487d80a97a132a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 852/872] krita: rebuild for Python 3.8, fix sha256sum.

Tarball was yanked for trivial fix.
---
 srcpkgs/krita/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/krita/template b/srcpkgs/krita/template
index 7a59fc9ac58..67f128c61ce 100644
--- a/srcpkgs/krita/template
+++ b/srcpkgs/krita/template
@@ -1,7 +1,7 @@
 # Template file for 'krita'
 pkgname=krita
 version=4.2.7.1
-revision=1
+revision=2
 build_style=cmake
 configure_args="-Wno-dev -DBUILD_TESTING=OFF"
 hostmakedepends="extra-cmake-modules pkg-config python3"
@@ -18,6 +18,6 @@ license="GPL-3.0-only"
 homepage="https://krita.org/"
 KDE_SITE="http://ftp5.gwdg.de/pub/linux/kde/stable/"
 distfiles="${KDE_SITE}/krita/${version}/krita-${version}.tar.gz"
-checksum=28218030edca9dfa1c7e255401ca6fc8fe0e5329f7611cfc196e35746d312086
+checksum=3ed29fd9d8e067def55e703fc55312815c21041d274727e228bdbe0478c09c3d
 nocross=yes
 replaces="calligra-krita>=0"

From 221123967fa111191496b9e08e2c9c76756c13b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:26:38 +0200
Subject: [PATCH 853/872] libpeas: rebuild for Python 3.8.

---
 srcpkgs/libpeas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index a69238bf823..d4dcf8b5941 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,7 +1,7 @@
 # Template file for 'libpeas'
 pkgname=libpeas
 version=1.22.0
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"

From 365648c1fccc0285703eeddac9324f2f4a91218f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 854/872] libreoffice: rebuild for Python 3.8.

---
 srcpkgs/libreoffice/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template
index 6e8685ac0fd..98f04a40304 100644
--- a/srcpkgs/libreoffice/template
+++ b/srcpkgs/libreoffice/template
@@ -1,7 +1,7 @@
 # Template file for 'libreoffice'
 pkgname=libreoffice
 version=6.2.5.2
-revision=2
+revision=3
 build_style=meta
 make_build_args="build-nocheck"
 nocross=yes

From 1c313604728a7106e5854243e06f9cb65c997436 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 855/872] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index 1f9c8043b46..34174be7535 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=5
+revision=6
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From aef507d5b726f510663f6e9c2bfd9f7eb3eeab4e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 856/872] libsigrokdecode: rebuild for Python 3.8.

---
 srcpkgs/libsigrokdecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsigrokdecode/template b/srcpkgs/libsigrokdecode/template
index 59e15dd61b9..cc9d9a10367 100644
--- a/srcpkgs/libsigrokdecode/template
+++ b/srcpkgs/libsigrokdecode/template
@@ -1,7 +1,7 @@
 # Template file for 'libsigrokdecode'
 pkgname=libsigrokdecode
 version=0.5.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="glib-devel python3-devel"

From ca583906dfd0c97c9a4c36d862bf85a55ad07f90 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 857/872] luxrays: rebuild for Python 3.8.

---
 srcpkgs/luxrays/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/luxrays/template b/srcpkgs/luxrays/template
index c783e9fe3e5..58037fbfc05 100644
--- a/srcpkgs/luxrays/template
+++ b/srcpkgs/luxrays/template
@@ -1,7 +1,7 @@
 # Template file for 'luxrays'
 pkgname=luxrays
 version=3.1
-revision=13
+revision=14
 build_style=cmake
 configure_args="-DLUXRAYS_DISABLE_OPENCL=OFF -DCMAKE_SKIP_RPATH=ON"
 hostmakedepends="flex bison boost-devel"

From ef66922c11033d027b7badec1e15a0a0fb3aacbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 858/872] navit: rebuild for Python 3.8.

---
 srcpkgs/navit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/navit/template b/srcpkgs/navit/template
index 461689a3c73..24cd151c64b 100644
--- a/srcpkgs/navit/template
+++ b/srcpkgs/navit/template
@@ -1,7 +1,7 @@
 # Template file for 'navit'
 pkgname=navit
 version=0.5.3
-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 f8cae9038ecc7f293e820f51664bfd59aac52b73 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 859/872] obs: rebuild for Python 3.8.

---
 srcpkgs/obs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/obs/template b/srcpkgs/obs/template
index 3ed426b1583..45bf81803e4 100644
--- a/srcpkgs/obs/template
+++ b/srcpkgs/obs/template
@@ -1,7 +1,7 @@
 # Template file for 'obs'
 pkgname=obs
 version=24.0.1
-revision=1
+revision=2
 _commit_hash_obs_browser="693498b518cf893876f454ef581e13106e8370ec"
 _commit_hash_obs_vst="fde438f7a8afdf41a7ab386a0aa1a61175fc8427"
 _commit_hash_ftl_sdk="98289f7c2ed754c647d451899b3356850c0c1fa3"

From dbfccd5a0bab2df75f326e85613243fa4867cd8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 860/872] renderdoc: fix and rebuild for Python 3.8.

---
 srcpkgs/renderdoc/files/swig-py38.patch    | 28 +++++++++++++
 srcpkgs/renderdoc/patches/cmake-py38.patch | 48 ++++++++++++++++++++++
 srcpkgs/renderdoc/template                 |  8 ++--
 3 files changed, 81 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/renderdoc/files/swig-py38.patch
 create mode 100644 srcpkgs/renderdoc/patches/cmake-py38.patch

diff --git a/srcpkgs/renderdoc/files/swig-py38.patch b/srcpkgs/renderdoc/files/swig-py38.patch
new file mode 100644
index 00000000000..0595599c658
--- /dev/null
+++ b/srcpkgs/renderdoc/files/swig-py38.patch
@@ -0,0 +1,28 @@
+From dbe955dd0300d55a32fd73a4eef730b3e30ed5c4 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 20:32:03 +0200
+Subject: [PATCH] swig: avoid use of _PyObject_GC_UNTRACK
+
+It is deprecated[1]. Use PyObject_GC_UnTrack instead.
+
+[1] https://docs.python.org/3/c-api/gcsupport.html#c._PyObject_GC_UNTRACK
+---
+ Lib/python/builtin.swg | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Lib/python/builtin.swg b/Lib/python/builtin.swg
+index 9597653b7..6af45a9d1 100644
+--- a/Lib/python/builtin.swg
++++ b/Lib/python/builtin.swg
+@@ -120,7 +120,7 @@ SwigPyBuiltin_FunpackSetterClosure (PyObject *obj, PyObject *val, void *closure)
+ 
+ SWIGINTERN void
+ SwigPyStaticVar_dealloc(PyDescrObject *descr) {
+-  _PyObject_GC_UNTRACK(descr);
++  PyObject_GC_UnTrack(descr);
+   Py_XDECREF(PyDescr_TYPE(descr));
+   Py_XDECREF(PyDescr_NAME(descr));
+   PyObject_GC_Del(descr);
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/patches/cmake-py38.patch b/srcpkgs/renderdoc/patches/cmake-py38.patch
new file mode 100644
index 00000000000..fc1adb9ddbc
--- /dev/null
+++ b/srcpkgs/renderdoc/patches/cmake-py38.patch
@@ -0,0 +1,48 @@
+From 56769d3e2cc12670b73a1ddd9dfaab959340c2e2 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 21:27:02 +0200
+Subject: [PATCH] CMake: py3.8 support, ability to patch swig
+
+Add 3.8 to list of python versions and ability to patch the custom
+swig, also needed for 3.8
+---
+ CMakeLists.txt            | 2 +-
+ qrenderdoc/CMakeLists.txt | 2 ++
+ 2 files changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 13818e5b8..00feda2ad 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -308,7 +308,7 @@ add_subdirectory(renderdoc)
+ # are handled in common
+ if(ENABLE_QRENDERDOC OR ENABLE_PYRENDERDOC)
+     # Make sure Python 3 is found
+-    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7)
++    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7 3.8)
+     find_package(PythonInterp 3 REQUIRED)
+     find_package(PythonLibs 3 REQUIRED)
+     # we also need python3-config for swig
+diff --git a/qrenderdoc/CMakeLists.txt b/qrenderdoc/CMakeLists.txt
+index 9fd65b2d3..1ef284349 100644
+--- a/qrenderdoc/CMakeLists.txt
++++ b/qrenderdoc/CMakeLists.txt
+@@ -7,6 +7,7 @@ endif()
+ 
+ set(QMAKE_QT5_COMMAND ${QT_QMAKE_EXECUTABLE} CACHE STRING "Command to run to invoke Qt5's qmake. Normally this is qmake, possibly with qtchooser, but might be qmake-qt5")
+ set(RENDERDOC_SWIG_PACKAGE https://github.com/baldurk/swig/archive/renderdoc-modified-6.zip CACHE STRING "The location where RenderDoc's swig fork source can be found. By default points to the URL on github but can be pointed to a local file.")
++set(RENDERDOC_SWIG_PATCH "" CACHE STRING "The location for the patch to apply to swig.")
+ 
+ set(QMAKE_CONFIG "debug")
+ set(QMAKE_LDFLAGS "")
+@@ -99,6 +100,7 @@ ExternalProject_Add(custom_swig
+     # using an URL to a zip directly so we don't clone the history etc
+     URL ${RENDERDOC_SWIG_PACKAGE}
+     BUILD_IN_SOURCE 1
++    PATCH_COMMAND patch -p1 -i ${RENDERDOC_SWIG_PATCH} > /dev/null
+     CONFIGURE_COMMAND ./autogen.sh > /dev/null 2>&1
+     COMMAND CC=${SWIG_CONFIGURE_CC} CXX=${SWIG_CONFIGURE_CXX} CFLAGS=-fPIC CXXFLAGS=-fPIC ./configure --with-pcre=yes --prefix=${CMAKE_BINARY_DIR} > /dev/null
+     BUILD_COMMAND ${GENERATOR_MAKE} > /dev/null 2>&1
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/template b/srcpkgs/renderdoc/template
index 32d051864d3..9972d9435b0 100644
--- a/srcpkgs/renderdoc/template
+++ b/srcpkgs/renderdoc/template
@@ -1,11 +1,13 @@
 # Template file for 'renderdoc'
 pkgname=renderdoc
 version=1.4
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DENABLE_GL=ON -DENABLE_GLES=ON -DENABLE_QRENDERDOC=ON
  -DENABLE_RENDERDOCCMD=ON -DENABLE_VULKAN=ON -DENABLE_XCB=ON -DENABLE_XLIB=ON
- -DENABLE_PYRENDERDOC=ON"
+ -DENABLE_PYRENDERDOC=ON
+ -DRENDERDOC_SWIG_PATCH=${XBPS_SRCPKGDIR}/${pkgname}/files/swig-py38.patch"
+patch_args="-p1"
 hostmakedepends="bison autoconf automake pkg-config python3"
 makedepends="libX11-devel libxcb-devel xcb-util-keysyms-devel libGL qt5-devel
  qt5-svg-devel qt5-x11extras-devel pcre-devel python3-devel"
@@ -17,7 +19,7 @@ distfiles="https://github.com/baldurk/${pkgname}/archive/v${version}.tar.gz"
 checksum=9a78951f386fb7c3ecf7df6919d300db59719d14f0621438963ae30a75d33677
 
 case "$XBPS_TARGET_MACHINE" in
-	*-musl) broken="This package uses execnfo.h which is not available on musl"
+	*-musl) broken="This package uses execinfo.h which is not available on musl"
 esac
 
 if [ "$CROSS_BUILD" ]; then

From 459b63795ca01a8fe746aec6d9f97141bdc3fc35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 861/872] sigil: rebuild for Python 3.8.

---
 srcpkgs/sigil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sigil/template b/srcpkgs/sigil/template
index 4a90ef95798..1d577ee3487 100644
--- a/srcpkgs/sigil/template
+++ b/srcpkgs/sigil/template
@@ -1,7 +1,7 @@
 # Template file for 'sigil'
 pkgname=sigil
 version=0.9.13
-revision=1
+revision=2
 wrksrc="Sigil-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/sigil/python3lib"

From eb0492cef63d32f08e51495ae261b150a7b3f1b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 862/872] uwsgi: rebuild for Python 3.8.

---
 srcpkgs/uwsgi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/uwsgi/template b/srcpkgs/uwsgi/template
index 2e96cd2e38e..e283d6bc357 100644
--- a/srcpkgs/uwsgi/template
+++ b/srcpkgs/uwsgi/template
@@ -1,7 +1,7 @@
 # Template file for 'uwsgi'
 pkgname=uwsgi
 version=2.0.18
-revision=1
+revision=2
 hostmakedepends="python python3"
 makedepends="python-devel python3-devel"
 short_desc="Fast, self-healing application container server"

From 107450e305e9c38e02604604d47fd38619481bc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 863/872] vim: rebuild for Python 3.8.

---
 srcpkgs/vim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vim/template b/srcpkgs/vim/template
index 8f543069d19..7c7fd4a30f7 100644
--- a/srcpkgs/vim/template
+++ b/srcpkgs/vim/template
@@ -1,7 +1,7 @@
 # Template file for 'vim'
 pkgname=vim
 version=8.1.2021
-revision=3
+revision=4
 hostmakedepends="glib-devel pkg-config"
 makedepends="acl-devel gtk+3-devel libXt-devel lua-devel ncurses-devel
  perl python-devel python3-devel ruby-devel"

From e5c9ab9b7773855271a75cfe5d4dc6cc5d230b59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 864/872] weechat: rebuild for Python 3.8.

---
 srcpkgs/weechat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weechat/template b/srcpkgs/weechat/template
index 19f8af4fd8f..14c3e2360f5 100644
--- a/srcpkgs/weechat/template
+++ b/srcpkgs/weechat/template
@@ -1,7 +1,7 @@
 # Template file for 'weechat'
 pkgname=weechat
 version=2.6
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_MAN=ON -DENABLE_ENCHANT=ON -DENABLE_PERL=ON
  -DENABLE_LUA=ON -DENABLE_RUBY=ON -DENABLE_SPELL=ON

From a86ea0eef792b9b5666ffe67d6f3c6549467f704 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 865/872] znc: rebuild for Python 3.8.

---
 srcpkgs/znc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/znc/template b/srcpkgs/znc/template
index 8af8f23a145..696b59133c8 100644
--- a/srcpkgs/znc/template
+++ b/srcpkgs/znc/template
@@ -1,7 +1,7 @@
 # Template file for 'znc'
 pkgname=znc
 version=1.7.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="
  --enable-python

From 2cfcf24e55b5aae1d192c7345b5ede0401a4486b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:18:51 +0200
Subject: [PATCH 866/872] boost: rebuild for Python 3.8.

---
 srcpkgs/boost/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 40a4fe67730..1fb0e8ed519 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=5
+revision=6
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"

From dab8bf9a36920b36c01351b0e78a3d894d95e438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:10 +0200
Subject: [PATCH 867/872] python-pyside: remove, obsolete.

---
 srcpkgs/python-pyside/INSTALL.msg | 1 -
 srcpkgs/python-pyside/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/python-pyside/INSTALL.msg
 delete mode 100644 srcpkgs/python-pyside/template

diff --git a/srcpkgs/python-pyside/INSTALL.msg b/srcpkgs/python-pyside/INSTALL.msg
deleted file mode 100644
index 6de207b7aa2..00000000000
--- a/srcpkgs/python-pyside/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-python-pyside is no longer provided by Void Linux, and will be fully removed from the repos on 2019-07-17
diff --git a/srcpkgs/python-pyside/template b/srcpkgs/python-pyside/template
deleted file mode 100644
index 7053f0e7fc3..00000000000
--- a/srcpkgs/python-pyside/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'python-pyside'
-pkgname=python-pyside
-version=1.2.2
-revision=7
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="http://www.pyside.org/"

From 56c4a66cb73f8c03aa1d75d0f3aeffc5558c4047 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:52 +0200
Subject: [PATCH 868/872] pyside-tools: remove, obsolete.

---
 srcpkgs/pyside-tools/INSTALL.msg | 1 -
 srcpkgs/pyside-tools/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/pyside-tools/INSTALL.msg
 delete mode 100644 srcpkgs/pyside-tools/template

diff --git a/srcpkgs/pyside-tools/INSTALL.msg b/srcpkgs/pyside-tools/INSTALL.msg
deleted file mode 100644
index fdb45eb0f42..00000000000
--- a/srcpkgs/pyside-tools/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-pyside-tools is no longer provided by Void Linux, and will be fully removed from the repos on 2019-10-30
diff --git a/srcpkgs/pyside-tools/template b/srcpkgs/pyside-tools/template
deleted file mode 100644
index 27cfc18eea4..00000000000
--- a/srcpkgs/pyside-tools/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'pyside-tools'
-pkgname=pyside-tools
-version=0.2.15
-revision=2
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="https://wiki.qt.io/"

From a4caf17102b2a8d6832ab3be41174a163b7a0573 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:22:03 +0200
Subject: [PATCH 869/872] shiboken: remove, obsolete.

---
 srcpkgs/shiboken/patches/python3.6.patch |  11 ---
 srcpkgs/shiboken/template                | 110 -----------------------
 2 files changed, 121 deletions(-)
 delete mode 100644 srcpkgs/shiboken/patches/python3.6.patch
 delete mode 100644 srcpkgs/shiboken/template

diff --git a/srcpkgs/shiboken/patches/python3.6.patch b/srcpkgs/shiboken/patches/python3.6.patch
deleted file mode 100644
index 7145fb4308b..00000000000
--- a/srcpkgs/shiboken/patches/python3.6.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- cmake/Modules/FindPython3Libs.cmake.orig
-+++ cmake/Modules/FindPython3Libs.cmake
-@@ -27,7 +27,7 @@
- # Search for the python framework on Apple.
- # CMAKE_FIND_FRAMEWORKS(Python)
- 
--FOREACH(_CURRENT_VERSION 3.4 3.3 3.2 3.1 3.0)
-+FOREACH(_CURRENT_VERSION 3.6 3.5 3.4 3.3 3.2 3.1 3.0)
-   IF(_CURRENT_VERSION GREATER 3.1)
-       SET(_32FLAGS "m" "u" "mu" "dm" "du" "dmu" "")
-   ELSE()
diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
deleted file mode 100644
index 34174be7535..00000000000
--- a/srcpkgs/shiboken/template
+++ /dev/null
@@ -1,110 +0,0 @@
-# Template file for 'shiboken'
-pkgname=shiboken
-version=1.2.2
-revision=6
-wrksrc="shiboken-${version}"
-hostmakedepends="cmake"
-makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"
-short_desc="CPython bindings generator for C++ libraries"
-maintainer="Enno Boland <gottox@voidlinux.org>"
-homepage="http://www.pyside.org"
-license="LGPL-2.1"
-distfiles="https://download.qt.io/official_releases/pyside/shiboken-${version}.tar.bz2"
-checksum=7625bbcf1fe313fd910c6b8c9cf49ac5495499f9d00867115a2f1f2a69fce5c4
-
-nocross="https://travis-ci.org/voidlinux/void-packages/jobs/269193001#L906"
-
-pre_build() {
-	# Fix inconsistent naming of libshiboken.so and ShibokenConfig.cmake
-	sed -i "/get_config_var('SOABI')/d" cmake/Modules/FindPython3InterpWithDebug.cmake
-}
-do_build() {
-	local args= configure_args="
-		-DCMAKE_INSTALL_PREFIX=/usr \
-		-DCMAKE_BUILD_TYPE=Release \
-		-DBUILD_TESTS=OFF"
-
-	for pyver in $py2_ver $py3_ver; do
-		args=
-		if [ "$pyver" = "$py2_ver" ]; then
-			args="-DPYTHON_SUFFIX=-python$py2_ver"
-		else
-			args="-DUSE_PYTHON3=yes"
-		fi
-
-		[ ! -d build-${pyver} ] && mkdir build-${pyver}
-		pushd build-${pyver}
-		cmake .. ${configure_args} ${args}
-		make ${makejobs}
-		popd
-	done
-}
-do_install() {
-	for pyver in $py2_ver $py3_ver; do
-		make -C build-${pyver} DESTDIR=${DESTDIR} install
-	done
-}
-post_install() {
-	# Fix conflict between .pc files
-	rm -f ${DESTDIR}/usr/lib/pkgconfig/*
-	for pyver in $py2_ver $py3_ver; do
-		vinstall build-${pyver}/data/shiboken.pc 644 \
-			usr/lib/pkgconfig shiboken-python${pyver}.pc
-	done
-}
-
-libshiboken-common-devel_package() {
-	depends="${sourcepkg}-${version}_${revision}"
-	short_desc+=" - common development files"
-	pkg_install() {
-		vmove usr/include
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig.cmake
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfigVersion.cmake
-	}
-}
-libshiboken-python-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python-${version}_${revision}"
-	short_desc="Python2 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py2_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py2_ver}.pc
-		vmove usr/lib/libshiboken-python${py2_ver}.so
-	}
-}
-libshiboken-python_package() {
-	short_desc="Python2 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version}
-	}
-}
-python-shiboken_package() {
-	short_desc="Python2 shiboken bindings"
-	pkg_install() {
-		vmove ${py2_sitelib}/shiboken.so
-	}
-}
-libshiboken-python3-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python3-${version}_${revision}"
-	short_desc="Python3 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py3_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py3_ver}.pc
-		vmove usr/lib/libshiboken-python${py3_ver}.so
-	}
-}
-libshiboken-python3_package() {
-	short_desc="Python3 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version}
-	}
-}
-python3-shiboken_package() {
-	short_desc="Python3 shiboken bindings"
-	pkg_install() {
-		vmove ${py3_sitelib}/shiboken.so
-	}
-}

From b8a76a958a1e28d96f0bf8a93acb982d756937b3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:34:00 +0200
Subject: [PATCH 870/872] boost: rebuild for Python 3.8.

Also ensure bjam is called with the same parameters, to avoid
a full rebuild with -j1 in do_install.
---
 common/shlibs          |  2 +-
 srcpkgs/boost/template | 13 +++++++------
 2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/common/shlibs b/common/shlibs
index f5133935773..92dae1c282c 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -683,7 +683,7 @@ libboost_stacktrace_noop.so.1.69.0 libboost_stacktrace_noop1.69-1.69.0_1<1.70.0
 libboost_stacktrace_addr2line.so.1.69.0 libboost_stacktrace_addr2line1.69-1.69.0_1<1.70.0
 libboost_stacktrace_basic.so.1.69.0 libboost_stacktrace_basic1.69-1.69.0_1<1.70.0
 libboost_python27.so.1.69.0 boost-python1.69-1.69.0_1<1.70.0
-libboost_python36.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
+libboost_python38.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
 libexempi.so.8 exempi-2.5.0_1
 libatasmart.so.4 libatasmart-0.17_1
 libsgutils2.so.2 libsgutils-1.42_1
diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 1fb0e8ed519..b516b348b14 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=6
+revision=7
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"
@@ -60,9 +60,9 @@ do_build() {
 	using python : ${py3_ver} : ${XBPS_CROSS_BASE}/usr/bin/python3 : ${XBPS_CROSS_BASE}${py3_inc} : ${XBPS_CROSS_BASE}${py3_lib} ;
 
 	__EOF
-	./bjam ${makejobs} \
+	./bjam ${makejobs} --prefix=${DESTDIR}/usr \
 		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam --debug-building \
+		--user-config=${wrksrc}/user-config.jam \
 		python=2.7,${py3_ver}
 }
 do_install() {
@@ -72,9 +72,10 @@ do_install() {
 	done
 
 	# Install headers/libs
-	./bjam --prefix=${DESTDIR}/usr abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam python=2.7,${py3_ver} install
-
+	./bjam --prefix=${DESTDIR}/usr \
+		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
+		--user-config=${wrksrc}/user-config.jam \
+		python=2.7,${py3_ver} install
 	# Install Boost.Build stuff.
 	vmkdir usr/share/boost-build
 	cd ${wrksrc}/tools/build && cp -a . ${DESTDIR}/usr/share/boost-build

From 4c0b1ce20aabdbed98b49e903ea6d0c9f531ad2f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 19:40:03 +0200
Subject: [PATCH 871/872] libpeas: update to 1.24.0.

---
 srcpkgs/libpeas/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index d4dcf8b5941..1ff2598c527 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,8 +1,8 @@
 # Template file for 'libpeas'
 pkgname=libpeas
-version=1.22.0
-revision=6
-build_style=gnu-configure
+version=1.24.0
+revision=1
+build_style=meson
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"
 makedepends="vala-devel gtk+3-devel python3-gobject-devel
@@ -13,7 +13,7 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://wiki.gnome.org/Projects/Libpeas"
 distfiles="${GNOME_SITE}/${pkgname}/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=5b2fc0f53962b25bca131a5ec0139e6fef8e254481b6e777975f7a1d2702a962
+checksum=0b9a00138c129a663de3eef5569b00ace03ce31d345f7af783768e9f35c8e6f9
 
 pre_build() {
 	if [ "$CROSS_BUILD" ]; then
@@ -35,7 +35,6 @@ libpeas-devel_package() {
 		vmove usr/lib/pkgconfig
 		vmove "usr/lib/*.so"
 		vmove usr/share/gir-1.0
-		vmove usr/share/gtk-doc
 		vmove usr/share/glade
 	}
 }

From 2be9ae0e45df517724574e5d873706b5377a17af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 20:33:53 +0200
Subject: [PATCH 872/872] scudcloud: upstream dead.

---
 srcpkgs/scudcloud/template | 21 ---------------------
 1 file changed, 21 deletions(-)
 delete mode 100644 srcpkgs/scudcloud/template

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
deleted file mode 100644
index 1ab2618066e..00000000000
--- a/srcpkgs/scudcloud/template
+++ /dev/null
@@ -1,21 +0,0 @@
-# Template file for 'scudcloud'
-pkgname=scudcloud
-version=1.65
-revision=2
-build_style=python3-module
-pycompile_module="scudcloud"
-hostmakedepends="python3-setuptools"
-makedepends="python3-setuptools python-PyQt5 python-dbus python3-PyQt5-dbus"
-depends="python3-setuptools python-PyQt5 python3-PyQt5-dbus
- python3-PyQt5-webkit xdg-utils"
-short_desc="Non official desktop client app for Slack"
-archs=noarch
-maintainer="Gurpreet Singh <gurpreet@mailfence.com>"
-license="MIT"
-homepage="https://launchpad.net/~rael-gc/+archive/ubuntu/scudcloud"
-distfiles="https://github.com/raelgc/${pkgname}/archive/v${version}.tar.gz"
-checksum=1b5420a868a37e181655e9799a3d1fcbbc0b0112349c44ac3d7936b626334791
-
-post_install() {
-	vlicense LICENSE
-}

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (11 preceding siblings ...)
  2019-10-19 21:36 ` voidlinux-github
@ 2019-10-19 22:15 ` voidlinux-github
  2019-10-20 15:23 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (19 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-10-19 22:15 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 274 bytes --]

New comment by jnbr on void-packages repository

https://github.com/void-linux/void-packages/pull/15623#issuecomment-544201622

Comment:
libreoffice needs a similar patch: https://cgit.freedesktop.org/libreoffice/core/patch/pyuno?id=2bd585f31d7abb066e3f53d9b29c822af20aea69

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PR PATCH] [Updated] [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (13 preceding siblings ...)
  2019-10-20 15:23 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-10-20 15:23 ` voidlinux-github
  2019-10-21 10:49 ` voidlinux-github
                   ` (17 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-10-20 15:23 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1067 bytes --]

There is an updated pull request by leahneukirchen against master on the void-packages repository

https://github.com/leahneukirchen/void-packages python38
https://github.com/void-linux/void-packages/pull/15623

[WIP] Python 3.8
This huge PR tries to bump all packages that either shlib-require
libpython3.6m.so.1.0 or put files into /usr/lib/python3.6/site-packages.

Broken packages (on x86_64):

- [ ] attic -> upstream dead, remove?
- [ ] blender -> update to 2.80
- [ ] eolie -> meson
- [x] fontforge
- [x] freecad
- [ ] gst1-python -> meson
- [ ] libopenshot -> gcc9 issue, but supposedly fixed? @Spencer-H 
- [x] libpeas
- [x] nagstamon
- [x] paraview
- [x] pockyt
- [x] ~~scudcloud~~
- [x] torbrowser-launcher
- [x] unknown-horizons
- [x] vapoursynth
- [x] variety
- [ ] kdevelop-python -> upstream: https://bugs.kde.org/show_bug.cgi?id=411956
- [x] krita: SHA256 mismatch
- [x] ~~shiboken~~
- [x] renderdoc

Untested:

- [ ] libreoffice


A patch file from https://github.com/void-linux/void-packages/pull/15623.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python38-15623.patch --]
[-- Type: text/x-diff, Size: 653660 bytes --]

From 9907b26ec9aacb2c9c990c665c32502ef0f7c808 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:06:59 +0200
Subject: [PATCH 001/873] python3: update to 3.8.0.

---
 common/shlibs                                 |  3 ++-
 .../python3/patches/fix-xattrs-glibc.patch    | 13 ----------
 srcpkgs/python3/patches/libressl-2.6.patch    | 26 -------------------
 srcpkgs/python3/template                      | 23 ++++++++--------
 4 files changed, 13 insertions(+), 52 deletions(-)
 delete mode 100644 srcpkgs/python3/patches/fix-xattrs-glibc.patch
 delete mode 100644 srcpkgs/python3/patches/libressl-2.6.patch

diff --git a/common/shlibs b/common/shlibs
index cc3fd8383d8..f5133935773 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1698,8 +1698,9 @@ libefiboot.so.1 libefivar-31_1
 libportaudio.so.2 portaudio-19.20140130_1
 libportaudiocpp.so.0 portaudio-cpp-19.20140130_1
 libdar.so.5000 libdar-2.4.14_1
-libpython3.so python3-3.6.2_1
 libpython3.6m.so.1.0 python3-3.6.2_1
+libpython3.so python3-3.8.0_1
+libpython3.8.so.1.0 python3-3.8.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.25.28_1
diff --git a/srcpkgs/python3/patches/fix-xattrs-glibc.patch b/srcpkgs/python3/patches/fix-xattrs-glibc.patch
deleted file mode 100644
index 909901293d5..00000000000
--- a/srcpkgs/python3/patches/fix-xattrs-glibc.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- Modules/posixmodule.c.orig
-+++ Modules/posixmodule.c
-@@ -103,8 +103,9 @@ corresponding Unix manual entries for more information on calls.");
- #undef HAVE_SCHED_SETAFFINITY
- #endif
- 
--#if defined(HAVE_SYS_XATTR_H) && defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
-+#if defined(HAVE_SYS_XATTR_H) && defined(__linux__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
- #define USE_XATTRS
-+#include <linux/limits.h>
- #endif
- 
- #ifdef USE_XATTRS
diff --git a/srcpkgs/python3/patches/libressl-2.6.patch b/srcpkgs/python3/patches/libressl-2.6.patch
deleted file mode 100644
index 92dcf1ef06e..00000000000
--- a/srcpkgs/python3/patches/libressl-2.6.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-https://github.com/python/cpython/pull/4930
-
---- Lib/test/test_ssl.py.orig
-+++ Lib/test/test_ssl.py
-@@ -29,6 +29,12 @@
- PROTOCOLS = sorted(ssl._PROTOCOL_NAMES)
- HOST = support.HOST
- IS_LIBRESSL = ssl.OPENSSL_VERSION.startswith('LibreSSL')
-+if IS_LIBRESSL:
-+    LIBRESSL_VERSION = tuple(
-+        int(s) for s in ssl.OPENSSL_VERSION.rsplit(' ')[-1].split('.')
-+    )
-+else:
-+    LIBRESSL_VERSION = ()
- IS_OPENSSL_1_1 = not IS_LIBRESSL and ssl.OPENSSL_VERSION_INFO >= (1, 1, 0)
- 
- 
-@@ -3392,6 +3398,8 @@ def test_selected_npn_protocol(self):
-                                        chatty=True, connectionchatty=True)
-             self.assertIs(stats['client_npn_protocol'], None)
- 
-+        @unittest.skipIf(IS_LIBRESSL and LIBRESSL_VERSION >= (2, 6, 1),
-+                         "LibreSSL 2.6.1+ has broken NPN support")
-         @unittest.skipUnless(ssl.HAS_NPN, "NPN support needed for this test")
-         def test_npn_protocols(self):
-             server_protocols = ['http/1.1', 'spdy/2']
diff --git a/srcpkgs/python3/template b/srcpkgs/python3/template
index 60bd4411ba8..b03a59beea8 100644
--- a/srcpkgs/python3/template
+++ b/srcpkgs/python3/template
@@ -3,7 +3,7 @@
 # THIS PKG MUST BE SYNCHRONIZED WITH "srcpkgs/python3-tkinter".
 #
 pkgname=python3
-version=3.6.9
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 short_desc="Interpreted, interactive, object-oriented programming language (${version%.*} series)"
@@ -11,7 +11,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=5e2f5f554e3f8f7f0296f7e73d8600c4e9acbaee6b2555b83206edf5153870da
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pycompile_dirs="usr/lib/python${version%.*}"
 hostmakedepends="pkg-config"
@@ -27,8 +27,7 @@ alternatives="
  python:python.1:/usr/share/man/man1/python${version%.*}.1"
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,13 +71,13 @@ do_install() {
 	rm -rf ${DESTDIR}/usr/lib/python${version%.*}/lib2to3/tests
 	# Remove references to the install(1) wrapper.
 	sed -e "s,${XBPS_WRAPPERDIR},/usr/bin,g" -i \
-		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/Makefile
 	if [ "$CROSS_BUILD" ]; then
 		# Remove references to cross toolchain.
 		sed -i "s/$XBPS_CROSS_TRIPLET-//g" \
-			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}/Makefile
 	fi
 }
 
@@ -89,10 +88,10 @@ python3-devel_package() {
 		vmove usr/bin/python*-config
 		vmove usr/lib/pkgconfig
 		vmove usr/include
-		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/libpython${version%.*}m.a \
+		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/libpython${version%.*}*.a \
 			${PKGDESTDIR}/usr/lib
-		mkdir -p ${DESTDIR}/usr/include/python${version%.*}m
-		mv ${PKGDESTDIR}/usr/include/python${version%.*}m/pyconfig.h \
-			${DESTDIR}/usr/include/python${version%.*}m
+		mkdir -p ${DESTDIR}/usr/include/python${version%.*}
+		mv ${PKGDESTDIR}/usr/include/python${version%.*}/pyconfig.h \
+			${DESTDIR}/usr/include/python${version%.*}
 	}
 }

From 82deb1f06d09e93aabaa46495a066cec2647de81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 17:09:57 +0200
Subject: [PATCH 002/873] python3-tkinter: update to 3.8.0.

---
 srcpkgs/python3-tkinter/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template
index 83906219af8..874be51ebdf 100644
--- a/srcpkgs/python3-tkinter/template
+++ b/srcpkgs/python3-tkinter/template
@@ -7,7 +7,7 @@
 _desc="Interpreted, interactive, object-oriented programming language"
 
 pkgname=python3-tkinter
-version=3.6.8
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 pycompile_dirs="
@@ -22,11 +22,10 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=35446241e995773b1bed7d196f4b624dadcadc8429f26282e756b2fb8a351193
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used.
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used.
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,7 +71,7 @@ do_install() {
 		mv ${wrksrc}/${pkgname}-${version}-install/usr/lib/python${version%.*}/${lib} \
 			${DESTDIR}/usr/lib/python${version%.*}/
 	done
-	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*m*.so \
+	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*.so \
 		${DESTDIR}/usr/lib/python${version%.*}/lib-dynload/
 	ln -sf idle${version%.*} ${DESTDIR}/usr/bin/idle3
 }

From 8bb33f77d591103b56f40685a4b61f57b43219cd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:42:15 +0200
Subject: [PATCH 003/873] common/environment/setup/python.sh: update to Python
 3.8.

---
 common/build-style/python-module.sh | 14 ++++----------
 common/environment/setup/python.sh  |  4 ++--
 2 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/common/build-style/python-module.sh b/common/build-style/python-module.sh
index da6ed586cff..ff8f107745f 100644
--- a/common/build-style/python-module.sh
+++ b/common/build-style/python-module.sh
@@ -4,7 +4,7 @@
 
 do_build() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
+	local pyver= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
@@ -12,10 +12,7 @@ do_build() {
 			LDFLAGS="$tmp_ldflags"
 
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
@@ -49,15 +46,12 @@ do_check() {
 
 do_install() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx=
+	local pyver=
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
diff --git a/common/environment/setup/python.sh b/common/environment/setup/python.sh
index d1f4d49a10a..ba181d45361 100644
--- a/common/environment/setup/python.sh
+++ b/common/environment/setup/python.sh
@@ -10,8 +10,8 @@ py2_lib="/usr/lib/python${py2_ver}"
 py2_sitelib="${py2_lib}/site-packages"
 py2_inc="/usr/include/python${py2_ver}"
 
-py3_ver="3.6"
-py3_abiver="m"
+py3_ver="3.8"
+py3_abiver=""
 py3_lib="/usr/lib/python${py3_ver}"
 py3_sitelib="${py3_lib}/site-packages"
 py3_inc="/usr/include/python${py3_ver}${py3_abiver}"

From 75fdcb94c7c7be7dc2c232d271de721d74dc1a6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 004/873] python3-3to2: rebuild for Python 3.8.

---
 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 b6ab94fe7c9..38558f1fcff 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=1
+revision=2
 archs=noarch
 wrksrc="3to2-${version}"
 build_style=python3-module

From 043957a8bcc69ef2ef270f7acd2753a544054759 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 005/873] python-Arrow: rebuild for Python 3.8.

---
 srcpkgs/python-Arrow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Arrow/template b/srcpkgs/python-Arrow/template
index 456e3776188..a3785d60075 100644
--- a/srcpkgs/python-Arrow/template
+++ b/srcpkgs/python-Arrow/template
@@ -2,7 +2,7 @@
 pkgname=python-Arrow
 reverts=0.13.1_1
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="arrow-${version}"
 build_style=python-module

From 5d1bc07743d348083ebd7dfbd1a4ece4913e6a70 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 006/873] python-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Babel/template b/srcpkgs/python-Babel/template
index 34d7a7728ce..619ae432ba4 100644
--- a/srcpkgs/python-Babel/template
+++ b/srcpkgs/python-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Babel'
 pkgname=python-Babel
 version=2.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38e28e565317345549892f5b8da9e3ab1cc3d513 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 007/873] python-BeautifulSoup4: rebuild for Python 3.8.

---
 srcpkgs/python-BeautifulSoup4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-BeautifulSoup4/template b/srcpkgs/python-BeautifulSoup4/template
index 70e4f8a58da..1f6074230c2 100644
--- a/srcpkgs/python-BeautifulSoup4/template
+++ b/srcpkgs/python-BeautifulSoup4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-BeautifulSoup4'
 pkgname=python-BeautifulSoup4
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="beautifulsoup4-${version}"
 build_style=python-module

From 193dc4fe709e1bccd18b84a58f880fde1e4394e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 008/873] python-Bottleneck: rebuild for Python 3.8.

---
 srcpkgs/python-Bottleneck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Bottleneck/template b/srcpkgs/python-Bottleneck/template
index 0c308d5dbb5..28195e99bca 100644
--- a/srcpkgs/python-Bottleneck/template
+++ b/srcpkgs/python-Bottleneck/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Bottleneck'
 pkgname=python-Bottleneck
 version=1.2.1
-revision=4
+revision=5
 wrksrc="Bottleneck-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ff4c422045070300d874353cc6c9750143422e2b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 009/873] python-Cheroot: rebuild for Python 3.8.

---
 srcpkgs/python-Cheroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Cheroot/template b/srcpkgs/python-Cheroot/template
index fcfdf76e69d..7a5375258f4 100644
--- a/srcpkgs/python-Cheroot/template
+++ b/srcpkgs/python-Cheroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Cheroot'
 pkgname=python-Cheroot
 version=8.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cheroot-${version}"
 build_style=python-module

From 6eb51b02b428d8054b1d3a3aa21e6bdcde31cf9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 010/873] python3-CherryPy: rebuild for Python 3.8.

---
 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 b78c01eba2c..450e5791508 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.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python3-module

From 8522b77c798415c2f59fc3b26adc757f66aa0fa7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 011/873] python-ConfigArgParse: rebuild for Python 3.8.

---
 srcpkgs/python-ConfigArgParse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ConfigArgParse/template b/srcpkgs/python-ConfigArgParse/template
index c9a00a04508..d90ca739aee 100644
--- a/srcpkgs/python-ConfigArgParse/template
+++ b/srcpkgs/python-ConfigArgParse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ConfigArgParse'
 pkgname=python-ConfigArgParse
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ConfigArgParse-${version}"
 build_style=python-module

From 3dcbda27301f3e918539317bc411ff556115ef1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 012/873] python-Cython: rebuild for Python 3.8.

---
 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 dc39d54e9c2..675160b3744 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.13
-revision=1
+revision=2
 wrksrc="Cython-${version}"
 build_style=python-module
 pycompile_module="Cython pyximport cython.py"

From 7c69ef59e0a628c13ece955c9f7322631824adca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 013/873] python-Django: rebuild for Python 3.8.

---
 srcpkgs/python-Django/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Django/template b/srcpkgs/python-Django/template
index 21aa405fba1..65a98e41032 100644
--- a/srcpkgs/python-Django/template
+++ b/srcpkgs/python-Django/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Django'
 pkgname=python-Django
 version=1.11.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="Django-${version}"
 build_style=python-module

From 33b250adb0abf2e46663f0a05749097633fce228 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 014/873] python-Flask: rebuild for Python 3.8.

---
 srcpkgs/python-Flask/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask/template b/srcpkgs/python-Flask/template
index 149a76c077e..b75b306701b 100644
--- a/srcpkgs/python-Flask/template
+++ b/srcpkgs/python-Flask/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask'
 pkgname=python-Flask
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9167e534992bd8d17a79a70e22a3b06c68c9762b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 015/873] python-Flask-Assets: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Assets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Assets/template b/srcpkgs/python-Flask-Assets/template
index 339f629f77a..eb81201396b 100644
--- a/srcpkgs/python-Flask-Assets/template
+++ b/srcpkgs/python-Flask-Assets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Assets'
 pkgname=python-Flask-Assets
 version=0.12
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c65d524eb8ee83f7c8eae3ca16878857a374e06c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 016/873] python-Flask-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Babel/template b/srcpkgs/python-Flask-Babel/template
index 3028d15d7bd..b3cc35f230e 100644
--- a/srcpkgs/python-Flask-Babel/template
+++ b/srcpkgs/python-Flask-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Babel'
 pkgname=python-Flask-Babel
 version=0.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From d52f7742820844af3ec25f4b6d4d6d58b19ad722 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 017/873] python-Flask-Login: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Login/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Login/template b/srcpkgs/python-Flask-Login/template
index 8fecf240963..ccaab92d857 100644
--- a/srcpkgs/python-Flask-Login/template
+++ b/srcpkgs/python-Flask-Login/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Login'
 pkgname=python-Flask-Login
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 112c53663ece086d477e4d4fcbc667ae6a2fb518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 018/873] python-Flask-OAuthlib: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-OAuthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-OAuthlib/template b/srcpkgs/python-Flask-OAuthlib/template
index d53157e37b2..958f05a836c 100644
--- a/srcpkgs/python-Flask-OAuthlib/template
+++ b/srcpkgs/python-Flask-OAuthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-OAuthlib'
 pkgname=python-Flask-OAuthlib
 version=0.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From aca82b53b5330ee4a154f2246569006b2d3a38c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 019/873] python3-Flask-RESTful: rebuild for Python 3.8.

---
 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 d0ed467f666..5a05eed0e93 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.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="flask-restful-${version}"
 build_style=python3-module

From 3121295fb06a2b12c0e42b9a6412c1fa52bb86fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 020/873] python-Flask-Script: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Script/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Script/template b/srcpkgs/python-Flask-Script/template
index 19d13887b8e..41312eae57f 100644
--- a/srcpkgs/python-Flask-Script/template
+++ b/srcpkgs/python-Flask-Script/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Script'
 pkgname=python-Flask-Script
 version=2.0.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From cfadd6a4c47e4e611c9d739113006da88f9cb8e7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 021/873] python-Flask-WTF: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-WTF/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-WTF/template b/srcpkgs/python-Flask-WTF/template
index 8edb1d39e35..b2be1e630fb 100644
--- a/srcpkgs/python-Flask-WTF/template
+++ b/srcpkgs/python-Flask-WTF/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-WTF'
 pkgname=python-Flask-WTF
 version=0.14.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 11896d4bd9e1767f6ad8b10e737f0e6a0f5df44f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 022/873] python-GitPython: rebuild for Python 3.8.

---
 srcpkgs/python-GitPython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-GitPython/template b/srcpkgs/python-GitPython/template
index 0edb43cc811..232429265f1 100644
--- a/srcpkgs/python-GitPython/template
+++ b/srcpkgs/python-GitPython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-GitPython'
 pkgname=python-GitPython
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="GitPython-${version}"
 build_style=python-module

From 7008fe32294cead7ef25084a09f874e87cad05e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 023/873] python-IPy: rebuild for Python 3.8.

---
 srcpkgs/python-IPy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-IPy/template b/srcpkgs/python-IPy/template
index d28276383ce..aaae9fcd002 100644
--- a/srcpkgs/python-IPy/template
+++ b/srcpkgs/python-IPy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-IPy'
 pkgname=python-IPy
 version=1.00
-revision=1
+revision=2
 archs=noarch
 wrksrc="IPy-${version}"
 build_style=python-module

From 4ee5b9129c818c4db475e75f899f1f21eb9c312c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 024/873] python3-Inflector: rebuild for Python 3.8.

---
 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 1bfe9ccef7c..e9ee0ffe8d1 100644
--- a/srcpkgs/python3-Inflector/template
+++ b/srcpkgs/python3-Inflector/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-Inflector'
 pkgname=python3-Inflector
 version=2.0.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="Inflector-${version}"
 build_style=python3-module

From 631236d908cbeed8345c2fb159c73e7c54fe1571 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 025/873] python-Jinja2: rebuild for Python 3.8.

---
 srcpkgs/python-Jinja2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Jinja2/template b/srcpkgs/python-Jinja2/template
index c67e6f47f06..3fcd44dc198 100644
--- a/srcpkgs/python-Jinja2/template
+++ b/srcpkgs/python-Jinja2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Jinja2'
 pkgname=python-Jinja2
 version=2.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Jinja2-${version}"
 build_style=python-module

From 3a7808b9f47226adec7dd1e59bef222cf38d7e9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 026/873] python-Levenshtein: rebuild for Python 3.8.

---
 srcpkgs/python-Levenshtein/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Levenshtein/template b/srcpkgs/python-Levenshtein/template
index 26f57d90e70..7d97147ccc8 100644
--- a/srcpkgs/python-Levenshtein/template
+++ b/srcpkgs/python-Levenshtein/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Levenshtein'
 pkgname=python-Levenshtein
 version=0.12.0
-revision=2
+revision=3
 build_style=python-module
 pycompile_module="Levenshtein"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"

From 6d2a898ccc971553cf9dab7239daf8d626350b19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 027/873] python-M2Crypto: rebuild for Python 3.8.

---
 srcpkgs/python-M2Crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-M2Crypto/template b/srcpkgs/python-M2Crypto/template
index 102dbb7261e..6febd5a9ea1 100644
--- a/srcpkgs/python-M2Crypto/template
+++ b/srcpkgs/python-M2Crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-M2Crypto'
 pkgname=python-M2Crypto
 version=0.35.2
-revision=1
+revision=2
 wrksrc="M2Crypto-${version}"
 build_style=python-module
 pycompile_module="M2Crypto"

From 3597aa866d7cb1ff4d5316a0cfe52c8aa8ab717c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 028/873] python-Mako: rebuild for Python 3.8.

---
 srcpkgs/python-Mako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Mako/template b/srcpkgs/python-Mako/template
index e5c3c76170c..f0184179b83 100644
--- a/srcpkgs/python-Mako/template
+++ b/srcpkgs/python-Mako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Mako'
 pkgname=python-Mako
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Mako-${version}"
 build_style=python-module

From 164d5bbfa645fb7b1ddbfbccebb7b85e407c578f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 029/873] python-Markdown: rebuild for Python 3.8.

---
 srcpkgs/python-Markdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markdown/template b/srcpkgs/python-Markdown/template
index 935dcc12bca..03a0d18e23b 100644
--- a/srcpkgs/python-Markdown/template
+++ b/srcpkgs/python-Markdown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markdown'
 pkgname=python-Markdown
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python-module

From c5fcb10688938a17e3acb9f9c630c300f5fe9672 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 030/873] python-MarkupSafe: rebuild for Python 3.8.

---
 srcpkgs/python-MarkupSafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MarkupSafe/template b/srcpkgs/python-MarkupSafe/template
index c12dbb7e656..ae22857aa7a 100644
--- a/srcpkgs/python-MarkupSafe/template
+++ b/srcpkgs/python-MarkupSafe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MarkupSafe'
 pkgname=python-MarkupSafe
 version=1.1.1
-revision=1
+revision=2
 wrksrc="MarkupSafe-${version}"
 build_style=python-module
 pycompile_module="markupsafe"

From b7a4bc0f45110c5c3bd019a437078724336d1888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 031/873] python-Markups: rebuild for Python 3.8.

---
 srcpkgs/python-Markups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markups/template b/srcpkgs/python-Markups/template
index d4817feb430..02ba25ee05c 100644
--- a/srcpkgs/python-Markups/template
+++ b/srcpkgs/python-Markups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markups'
 pkgname=python-Markups
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markups-${version}"
 build_style=python-module

From af8fe2e4b17c908737f599cc43d860493f7da689 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 032/873] python3-MechanicalSoup: rebuild for Python 3.8.

---
 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 b1bbfa4184c..5a3b0b3eb03 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=1
+revision=2
 archs=noarch
 wrksrc=MechanicalSoup-${version}
 build_style=python3-module

From 4d05157344a63fb3d617b00a4268732231187cb4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 033/873] python-MiniMock: rebuild for Python 3.8.

---
 srcpkgs/python-MiniMock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MiniMock/template b/srcpkgs/python-MiniMock/template
index 38c0723f374..8b8c4f5f1e6 100644
--- a/srcpkgs/python-MiniMock/template
+++ b/srcpkgs/python-MiniMock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MiniMock'
 pkgname=python-MiniMock
 version=1.2.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 25b62a34488966009bf8450b60653f01872e2310 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 034/873] python-Pillow: rebuild for Python 3.8.

---
 srcpkgs/python-Pillow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pillow/template b/srcpkgs/python-Pillow/template
index e43d22b8f62..f1791b46d79 100644
--- a/srcpkgs/python-Pillow/template
+++ b/srcpkgs/python-Pillow/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pillow'
 pkgname=python-Pillow
 version=6.2.0
-revision=1
+revision=2
 wrksrc="Pillow-${version}"
 build_style=python-module
 pycompile_module="PIL"

From f79ffe3fe477b7fff206250125a96da96c80c086 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 035/873] python-PyAudio: rebuild for Python 3.8.

---
 srcpkgs/python-PyAudio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyAudio/template b/srcpkgs/python-PyAudio/template
index 5c3286caae0..2e84cf5cc8f 100644
--- a/srcpkgs/python-PyAudio/template
+++ b/srcpkgs/python-PyAudio/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyAudio'
 pkgname=python-PyAudio
 version=0.2.11
-revision=2
+revision=3
 wrksrc="PyAudio-${version}"
 build_style=python-module
 pycompile_module="pyaudio.py"

From 11c99c939a4791ec394842255e6aac23eaae5920 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 036/873] python3-PyBrowserID: rebuild for Python 3.8.

---
 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 abec9dac54e..eefd0175f1b 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=2
+revision=3
 archs=noarch
 wrksrc="PyBrowserID-${version}"
 build_style=python3-module

From d49beb289c07b8d33e8e2f286e068c0e8b3fe4b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 037/873] python3-PyFxA: rebuild for Python 3.8.

---
 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 31175c92435..6fc6791efdd 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=1
+revision=2
 archs=noarch
 wrksrc="PyFxA-${version}"
 build_style=python3-module

From d0eb109c7435d396e67de8f37a376ca0a2958d93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 038/873] python-PyHamcrest: rebuild for Python 3.8.

---
 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 61078241d8a..48f001595aa 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=1
+revision=2
 archs=noarch
 wrksrc="PyHamcrest-${version}"
 build_style=python-module

From 4afc9e488b53ee7025095fe93072953c256fc630 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 039/873] python-PyICU: rebuild for Python 3.8.

---
 srcpkgs/python-PyICU/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyICU/template b/srcpkgs/python-PyICU/template
index be4aaf88639..aab2934cbbd 100644
--- a/srcpkgs/python-PyICU/template
+++ b/srcpkgs/python-PyICU/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyICU'
 pkgname=python-PyICU
 version=2.3.1
-revision=2
+revision=3
 wrksrc="PyICU-${version}"
 build_style=python-module
 pycompile_module="icu PyICU.py"

From a0c3f96b4df2b1efda070832287f3728314c717a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 040/873] python3-PyJWT: rebuild for Python 3.8.

---
 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 6f0830125c1..bf1dda0753e 100644
--- a/srcpkgs/python3-PyJWT/template
+++ b/srcpkgs/python3-PyJWT/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-PyJWT'
 pkgname=python3-PyJWT
 version=1.7.1
-revision=1
+revision=2
 wrksrc="PyJWT-${version}"
 build_style=python3-module
 pycompile_module="PyJWT.py"

From 0355fd4b78af7fbf4ffad4b12dc8e153b70d703d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 041/873] python-PyOpenGL: rebuild for Python 3.8.

---
 srcpkgs/python-PyOpenGL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyOpenGL/template b/srcpkgs/python-PyOpenGL/template
index ec08e0bd667..eafc3be1210 100644
--- a/srcpkgs/python-PyOpenGL/template
+++ b/srcpkgs/python-PyOpenGL/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL'
 pkgname=python-PyOpenGL
 version=3.1.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="PyOpenGL-${version}"
 build_style=python-module

From 1a8da5c4a7dbf53ec6c03efd5387e02d2b0be720 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 17:15:54 +0200
Subject: [PATCH 042/873] python-PyOpenGL-accelerate: update to 3.1.3b1.

---
 srcpkgs/python-PyOpenGL-accelerate/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python-PyOpenGL-accelerate/template b/srcpkgs/python-PyOpenGL-accelerate/template
index 25d84abffcb..5d16a82b845 100644
--- a/srcpkgs/python-PyOpenGL-accelerate/template
+++ b/srcpkgs/python-PyOpenGL-accelerate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL-accelerate'
 pkgname=python-PyOpenGL-accelerate
-version=3.1.0
-revision=5
+version=3.1.3b1
+revision=1
 wrksrc="PyOpenGL-accelerate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"
@@ -9,10 +9,10 @@ makedepends="python-devel python3-devel python-numpy python3-numpy"
 depends="python-numpy"
 short_desc="Acceleration code for PyOpenGL (Python2)"
 maintainer="Alain Kalker <a.c.kalker@gmail.com>"
-license="3-clause-BSD"
+license="BSD-3-Clause"
 homepage="http://pyopengl.sourceforge.net/"
 distfiles="${PYPI_SITE}/P/PyOpenGL-accelerate/PyOpenGL-accelerate-${version}.tar.gz"
-checksum=927f4670b893d46e2f6273ae938bf0a1db27ffae3336eba94813ccef6260c410
+checksum=e687eea7e006d65f531933b49b3b3d2feaaf51279147a904247f9d189762a36f
 
 post_install() {
 	vlicense license.txt LICENSE

From 2f6b6f2c3880b16991df568d3ac18efca5c970c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 043/873] python-PyQt5: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5/template b/srcpkgs/python-PyQt5/template
index 6534d4e22e6..9eba20dc514 100644
--- a/srcpkgs/python-PyQt5/template
+++ b/srcpkgs/python-PyQt5/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5'
 pkgname=python-PyQt5
 version=5.13.0
-revision=1
+revision=2
 _sipver=4.19.18
 lib32disabled=yes
 wrksrc="PyQt5_gpl-${version}"

From cf20a1f23e0c305d2e9672610364b2fd4f566695 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 044/873] python-PyQt5-webengine: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5-webengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5-webengine/template b/srcpkgs/python-PyQt5-webengine/template
index 996ef6b00e2..af7162d20cb 100644
--- a/srcpkgs/python-PyQt5-webengine/template
+++ b/srcpkgs/python-PyQt5-webengine/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5-webengine'
 pkgname=python-PyQt5-webengine
 version=5.13.0
-revision=1
+revision=2
 wrksrc="PyQtWebEngine_gpl-${version}"
 pycompile_module="PyQt5WebEngine"
 hostmakedepends="pkg-config qt5-qmake

From 84502fbd3a591ad0db01072998b5a2b3fcfcf192 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 045/873] python-Pygments: rebuild for Python 3.8.

---
 srcpkgs/python-Pygments/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pygments/template b/srcpkgs/python-Pygments/template
index f5a72ca6cea..8d2214a6bfc 100644
--- a/srcpkgs/python-Pygments/template
+++ b/srcpkgs/python-Pygments/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pygments'
 pkgname=python-Pygments
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Pygments-${version}"
 build_style=python-module

From ef2467b2248b773e2d940058876cf81a2b935043 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 046/873] python-Pyro4: rebuild for Python 3.8.

---
 srcpkgs/python-Pyro4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pyro4/template b/srcpkgs/python-Pyro4/template
index d8925aa141f..0417e9f6a8a 100644
--- a/srcpkgs/python-Pyro4/template
+++ b/srcpkgs/python-Pyro4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pyro4'
 pkgname=python-Pyro4
 version=4.75
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a80785231122d63ad91b973744bf59b0a1b59506 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 047/873] python3-ReParser: rebuild for Python 3.8.

---
 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 5e7b5de3790..5959de9d0e3 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=1
+revision=2
 archs=noarch
 wrksrc=ReParser-${version}
 build_style=python3-module

From 543272b7ff22e6f0642d879c60f19717643fec8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 048/873] python-SPARQLWrapper: rebuild for Python 3.8.

---
 srcpkgs/python-SPARQLWrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-SPARQLWrapper/template b/srcpkgs/python-SPARQLWrapper/template
index d014eb8aab4..8d2db9a02b3 100644
--- a/srcpkgs/python-SPARQLWrapper/template
+++ b/srcpkgs/python-SPARQLWrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'python-SPARQLWrapper'
 pkgname=python-SPARQLWrapper
 version=1.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a01a9e6bc3bd9fddfdd13341f78e625b063be5c8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 049/873] python-SQLAlchemy: rebuild for Python 3.8.

---
 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 7b529ade621..110430ff9f5 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.8
-revision=1
+revision=2
 wrksrc="SQLAlchemy-${version}"
 build_style=python-module
 pycompile_module="sqlalchemy"

From 46382571cad86b54ca46e129f7c2988772d0a48e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 050/873] python3-SecretStorage: rebuild for Python 3.8.

---
 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 8df813ad247..b19d4865f7e 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.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="SecretStorage-${version}"
 build_style=python3-module

From c79427640956f1961211ce3322c3811958e0f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 051/873] python3-SoCo: rebuild for Python 3.8.

---
 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 f0ac9825f57..01ebbeff15a 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="SoCo-${version}"
 build_style=python3-module

From 20a1ac5477ca4a76e0257e06bf6f353835eac7bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 052/873] python-Sphinx: rebuild for Python 3.8.

---
 srcpkgs/python-Sphinx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Sphinx/template b/srcpkgs/python-Sphinx/template
index e70dc9b238e..42969925f9e 100644
--- a/srcpkgs/python-Sphinx/template
+++ b/srcpkgs/python-Sphinx/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Sphinx'
 pkgname=python-Sphinx
 version=1.8.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="Sphinx-${version}"
 build_style=python-module

From 863c01ff80faa4de651a55ba2a354f8da5e6b025 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 053/873] python3-Telethon: rebuild for Python 3.8.

---
 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 b0786559591..d0fa8e34d3f 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.10.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="Telethon-${version}"
 build_style=python3-module

From efc9766b9866c660a4cb508c49be4df48f1e5809 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 054/873] python-Twisted: rebuild for Python 3.8.

---
 srcpkgs/python-Twisted/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Twisted/template b/srcpkgs/python-Twisted/template
index 519a1e251a9..e94e0edf26e 100644
--- a/srcpkgs/python-Twisted/template
+++ b/srcpkgs/python-Twisted/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Twisted'
 pkgname=python-Twisted
 version=18.9.0
-revision=3
+revision=4
 wrksrc="Twisted-${version}"
 build_style=python-module
 pycompile_module="twisted"

From 5fd974f3940d5ee91fe712fef2e93ce539743b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 055/873] python3-TxSNI: rebuild for Python 3.8.

---
 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 403010da5be..d9d7c2a0c83 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.1.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="TxSNI-${version}"
 build_style=python3-module

From 559184031fe43c0ff648fb7fab55ede08fff2c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 056/873] python-Unidecode: rebuild for Python 3.8.

---
 srcpkgs/python-Unidecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Unidecode/template b/srcpkgs/python-Unidecode/template
index 035c5d846be..444eb1427d6 100644
--- a/srcpkgs/python-Unidecode/template
+++ b/srcpkgs/python-Unidecode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Unidecode'
 pkgname=python-Unidecode
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Unidecode-${version}"
 build_style=python-module

From 07f0904b4cb8f2de0b7bc39c0ca28d225c91257d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 057/873] python-WTForms: rebuild for Python 3.8.

---
 srcpkgs/python-WTForms/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-WTForms/template b/srcpkgs/python-WTForms/template
index 06af2366050..98dff7d092f 100644
--- a/srcpkgs/python-WTForms/template
+++ b/srcpkgs/python-WTForms/template
@@ -1,7 +1,7 @@
 # Template file for 'python-WTForms'
 pkgname=python-WTForms
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="WTForms-${version}"
 build_style=python-module

From ec81beba1921fe189a8dd80810da306514a86c1a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 058/873] python3-WebOb: rebuild for Python 3.8.

---
 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 c360542a1f2..53e63879f2c 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=1
+revision=2
 archs=noarch
 wrksrc="WebOb-${version}"
 build_style=python3-module

From 0b7a4a756b3ead4c188a3819311c4471c1b0a21c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 059/873] python-Werkzeug: rebuild for Python 3.8.

---
 srcpkgs/python-Werkzeug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Werkzeug/template b/srcpkgs/python-Werkzeug/template
index 24fff62f1ae..1ca303822e8 100644
--- a/srcpkgs/python-Werkzeug/template
+++ b/srcpkgs/python-Werkzeug/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Werkzeug'
 pkgname=python-Werkzeug
 version=0.15.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c530a6e11127606a3b29b73da4cb31f010d97b5c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 060/873] python-Whoosh: rebuild for Python 3.8.

---
 srcpkgs/python-Whoosh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Whoosh/template b/srcpkgs/python-Whoosh/template
index f2118ed0af2..66856b206a7 100644
--- a/srcpkgs/python-Whoosh/template
+++ b/srcpkgs/python-Whoosh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-whoosh'
 pkgname=python-Whoosh
 version=2.7.4
-revision=1
+revision=2
 wrksrc="Whoosh-${version}"
 archs=noarch
 build_style=python-module

From 3e3ad6526265ded86e6e1b5539061302a3890381 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 061/873] python3-XlsxWriter: rebuild for Python 3.8.

---
 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 ea68ced9a03..b991457e01e 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.1.8
-revision=1
+revision=2
 archs="noarch"
 wrksrc="XlsxWriter-RELEASE_${version}"
 build_style=python3-module

From ed808be70fb42a5a7e827e43a5d8a9954d85823a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 062/873] python-Yapsy: rebuild for Python 3.8.

---
 srcpkgs/python-Yapsy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Yapsy/template b/srcpkgs/python-Yapsy/template
index 9f79423f91d..5ad8b234f5d 100644
--- a/srcpkgs/python-Yapsy/template
+++ b/srcpkgs/python-Yapsy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Yapsy'
 pkgname=python-Yapsy
 version=1.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Yapsy-${version}"
 build_style=python-module

From ef3f8b60f72752d3ec1c7676df4597cc6cfdfb42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 063/873] python-aalib: rebuild for Python 3.8.

---
 srcpkgs/python-aalib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-aalib/template b/srcpkgs/python-aalib/template
index 349b8407343..f9621a9c8dc 100644
--- a/srcpkgs/python-aalib/template
+++ b/srcpkgs/python-aalib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-aalib'
 pkgname=python-aalib
 version=0.3.2
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="aalib.py"
 hostmakedepends="python-setuptools python3-setuptools"

From 1aee008231a9354b62bbf679e89e620deeba0d34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 064/873] python3-acme: rebuild for Python 3.8.

---
 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 d7ef20f2301..844dde9c814 100644
--- a/srcpkgs/python3-acme/template
+++ b/srcpkgs/python3-acme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-acme'
 pkgname=python3-acme
 version=0.39.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="acme-${version}"
 build_style=python3-module

From 877668118087bb2d0bd4b8ebf34db7c6c4308c31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 065/873] python3-aiodns: rebuild for Python 3.8.

---
 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 cca9f45dbf5..8e06ea6e614 100644
--- a/srcpkgs/python3-aiodns/template
+++ b/srcpkgs/python3-aiodns/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiodns'
 pkgname=python3-aiodns
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiodns-${version}"
 build_style=python3-module

From de87766918ac8688cf8992433b56e9b1ad222108 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 066/873] python3-aiohttp: rebuild for Python 3.8.

---
 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 fbe98e07b2b..67e450e6aab 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.5.4
-revision=3
+revision=4
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 0c2d285f8d7edc438e657ec9bc4a2b16982a4a57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 067/873] python3-aiohttp-cors: rebuild for Python 3.8.

---
 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 8a643ca1797..b621716e3cd 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=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 4643a6f9e03d1657e1ac2f5ca93bf616979b58de Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 068/873] python3-aiohttp-cors2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp-cors2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp-cors2/template b/srcpkgs/python3-aiohttp-cors2/template
index 7ff1206538b..f13b0598456 100644
--- a/srcpkgs/python3-aiohttp-cors2/template
+++ b/srcpkgs/python3-aiohttp-cors2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp-cors2'
 pkgname=python3-aiohttp-cors2
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 9db81023f9f60f7a78d62f9f9b8f1fa8afbb9fa8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 069/873] python3-aiohttp2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp2/template b/srcpkgs/python3-aiohttp2/template
index b570043baba..db3704b5700 100644
--- a/srcpkgs/python3-aiohttp2/template
+++ b/srcpkgs/python3-aiohttp2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp2'
 pkgname=python3-aiohttp2
 version=2.3.10
-revision=2
+revision=3
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 9bf56f834aca73a7ea8141ab0c95b4aed0d1f09a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 070/873] python3-aiohttp_socks: rebuild for Python 3.8.

---
 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 93c45ff24c4..10ab967ef76 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.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp_socks-${version}"
 build_style=python3-module

From acad4e265f43c8bc2098168adb1c0442a0c22445 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 071/873] python3-aiorpcx: rebuild for Python 3.8.

---
 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 42b6dc541bf..07922e15ccd 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.17.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiorpcX-${version}"
 build_style=python3-module

From b4945f68890b617f5b513871e533769a2149f07f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 072/873] python-alabaster: rebuild for Python 3.8.

---
 srcpkgs/python-alabaster/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alabaster/template b/srcpkgs/python-alabaster/template
index e4ece5c2991..b33009d5efb 100644
--- a/srcpkgs/python-alabaster/template
+++ b/srcpkgs/python-alabaster/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alabaster'
 pkgname=python-alabaster
 version=0.7.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="alabaster-${version}"
 build_style=python-module

From 04c416b8fb310277c61713ee1b8dd702a970240b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 073/873] python-alembic: rebuild for Python 3.8.

---
 srcpkgs/python-alembic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alembic/template b/srcpkgs/python-alembic/template
index 4011b33c0fa..aecbe10e7d0 100644
--- a/srcpkgs/python-alembic/template
+++ b/srcpkgs/python-alembic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alembic'
 pkgname=python-alembic
 version=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="alembic-${version}"
 build_style=python-module

From 5c2d4bcc3255cb59561524d151fe84b3a70e8ad4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 074/873] python3-altgraph: rebuild for Python 3.8.

---
 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 eff10f7aef4..2bf433edb6e 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.16.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="altgraph-${version}"
 build_style=python3-module

From 3c6234d42f7adffca219ea7f98f11d5283dce900 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 075/873] python3-aniso8601: rebuild for Python 3.8.

---
 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 26540bc8c3f..0253b89b5a3 100644
--- a/srcpkgs/python3-aniso8601/template
+++ b/srcpkgs/python3-aniso8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aniso8601'
 pkgname=python3-aniso8601
 version=8.0.0
-revision=1
+revision=2
 archs=noarch
 _gitver=0ec13b9d81c9
 wrksrc="nielsenb-aniso8601-${_gitver}"

From b4fecde90241517d0629d46de55f99a1ef7edbaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 076/873] python-ansicolor: rebuild for Python 3.8.

---
 srcpkgs/python-ansicolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ansicolor/template b/srcpkgs/python-ansicolor/template
index af18c5b946d..3663a82f0cc 100644
--- a/srcpkgs/python-ansicolor/template
+++ b/srcpkgs/python-ansicolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ansicolor'
 pkgname=python-ansicolor
 version=0.2.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="ansicolor-${version}"
 build_style=python-module

From 3983fbed547fd194f9eefaaf58d10c7770e27350 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 077/873] python3-anytree: rebuild for Python 3.8.

---
 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 5a37dba6581..7368754c426 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.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="anytree-${version}"
 build_style=python3-module

From 6d797f541c2cb160f9cfebd0a3e71dace50cceb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 078/873] python-appdirs: rebuild for Python 3.8.

---
 srcpkgs/python-appdirs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-appdirs/template b/srcpkgs/python-appdirs/template
index fdae1fe184b..15354ec5768 100644
--- a/srcpkgs/python-appdirs/template
+++ b/srcpkgs/python-appdirs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-appdirs'
 pkgname=python-appdirs
 version=1.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 7a7c86554157d7224efc221e706b9aebfc1ff796 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 079/873] python3-applib: rebuild for Python 3.8.

---
 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 95f589dc65a..0fb5a42e618 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=1
+revision=2
 archs=noarch
 wrksrc="applib-${version}"
 build_style=python3-module

From 642416934e5f74b49e1a38fe6e941287cbccbf83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 080/873] python-apsw: rebuild for Python 3.8.

---
 srcpkgs/python-apsw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-apsw/template b/srcpkgs/python-apsw/template
index ed47b4a7803..6146ea639db 100644
--- a/srcpkgs/python-apsw/template
+++ b/srcpkgs/python-apsw/template
@@ -3,7 +3,7 @@ pkgname=python-apsw
 _distver=3.29.0
 _patchver=r1
 version=${_distver}${_patchver}
-revision=1
+revision=2
 wrksrc="apsw-${_distver}-${_patchver}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 765bd2f2b82c6226b12a5d6bbe156b07c03a1bca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 081/873] python-argh: rebuild for Python 3.8.

---
 srcpkgs/python-argh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argh/template b/srcpkgs/python-argh/template
index 4b7aec3b525..656da441757 100644
--- a/srcpkgs/python-argh/template
+++ b/srcpkgs/python-argh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argh'
 pkgname=python-argh
 version=0.26.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="argh-${version}"
 build_style=python-module

From 1f6f709fcbb4353d419be8d129ce581747dae1ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 082/873] python-argon2: rebuild for Python 3.8.

---
 srcpkgs/python-argon2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argon2/template b/srcpkgs/python-argon2/template
index 0b4b132cddd..1b5216cc9c0 100644
--- a/srcpkgs/python-argon2/template
+++ b/srcpkgs/python-argon2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argon2'
 pkgname=python-argon2
 version=18.3.0
-revision=2
+revision=3
 wrksrc="argon2_cffi-${version}"
 build_style=python-module
 pycompile_module="argon2"

From 26f299203792a3fe43e8944054d8c61c83416097 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 083/873] python-arxiv2bib: rebuild for Python 3.8.

---
 srcpkgs/python-arxiv2bib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-arxiv2bib/template b/srcpkgs/python-arxiv2bib/template
index 8bbc6bcf78e..4f245755dcf 100644
--- a/srcpkgs/python-arxiv2bib/template
+++ b/srcpkgs/python-arxiv2bib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-arxiv2bib'
 pkgname=python-arxiv2bib
 version=1.0.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="arxiv2bib-${version}"
 build_style=python-module

From 5d25b8642b8f8043e54a95f2ff5efc880044395a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 084/873] python-asn1crypto: rebuild for Python 3.8.

---
 srcpkgs/python-asn1crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-asn1crypto/template b/srcpkgs/python-asn1crypto/template
index 369c20af98f..e7ffe7415fc 100644
--- a/srcpkgs/python-asn1crypto/template
+++ b/srcpkgs/python-asn1crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-asn1crypto'
 pkgname=python-asn1crypto
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="asn1crypto-${version}"
 build_style=python-module

From c0625af704339d35d7423cd750ef2620c53c39bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 085/873] python-astral: rebuild for Python 3.8.

---
 srcpkgs/python-astral/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-astral/template b/srcpkgs/python-astral/template
index b8fdaee27ac..07aaeee166b 100644
--- a/srcpkgs/python-astral/template
+++ b/srcpkgs/python-astral/template
@@ -1,7 +1,7 @@
 # Template file for 'python-astral'
 pkgname=python-astral
 version=1.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python-}-${version}"
 build_style=python-module

From 6cdbd1584336605868e949368279bb6c2143b1d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 086/873] python3-astroid: rebuild for Python 3.8.

---
 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 28f01bd4445..d964fd2cdf3 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.2.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="astroid-${version}"
 build_style=python3-module

From c0642f6c760884c3209a89e643de35660419627a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 087/873] python3-async-timeout: rebuild for Python 3.8.

---
 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 d949a4fdf9a..854584fb5b2 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=1
+revision=2
 archs=noarch
 wrksrc="async-timeout-${version}"
 build_style=python3-module

From 17cdd1aac68337b8859ce0d970b309f841b8a456 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 088/873] python3-async_generator: rebuild for Python 3.8.

---
 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 c2053d7bf1f..20d9f7ea0d1 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=1
+revision=2
 archs=noarch
 wrksrc="async_generator-${version}"
 build_style=python3-module

From e57ec7e6820968645a23bcc13867add4c9a62399 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 089/873] python-atomicwrites: rebuild for Python 3.8.

---
 srcpkgs/python-atomicwrites/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atomicwrites/template b/srcpkgs/python-atomicwrites/template
index 849272e53f9..ec411d981d4 100644
--- a/srcpkgs/python-atomicwrites/template
+++ b/srcpkgs/python-atomicwrites/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atomicwrites'
 pkgname=python-atomicwrites
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="atomicwrites-${version}"
 build_style=python-module

From 61df9fa27dc05bc6bb5d5a2c5e806fd041d9adb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 090/873] python-atspi: rebuild for Python 3.8.

---
 srcpkgs/python-atspi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atspi/template b/srcpkgs/python-atspi/template
index 4a2007fa319..cfa1ef35377 100644
--- a/srcpkgs/python-atspi/template
+++ b/srcpkgs/python-atspi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atspi'
 pkgname=python-atspi
 version=2.32.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure

From d24c76e2f70e9a9dd9a6aa66a323bf79f37f9110 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 091/873] python-attrs: rebuild for Python 3.8.

---
 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 aaddb13f5be..6e2297a9553 100644
--- a/srcpkgs/python-attrs/template
+++ b/srcpkgs/python-attrs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-attrs'
 pkgname=python-attrs
 version=19.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="attrs-${version}"
 build_style=python-module

From dba37b5f26f28057cb10e86a08a4d2281ee09b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 092/873] python-audioread: rebuild for Python 3.8.

---
 srcpkgs/python-audioread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-audioread/template b/srcpkgs/python-audioread/template
index fc788a2778c..bc878d4b82d 100644
--- a/srcpkgs/python-audioread/template
+++ b/srcpkgs/python-audioread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-audioread'
 pkgname=python-audioread
 version=2.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="audioread-${version}"
 build_style=python-module

From 789a6f2ae1cd503ad69b6a968651c7745f878718 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 093/873] audit: rebuild for Python 3.8.

---
 srcpkgs/audit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/audit/template b/srcpkgs/audit/template
index c624aae0f6d..3e0d21784c0 100644
--- a/srcpkgs/audit/template
+++ b/srcpkgs/audit/template
@@ -1,7 +1,7 @@
 # Template file for 'audit'
 pkgname=audit
 version=2.8.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--libdir=/usr/lib --enable-shared=audit --enable-gssapi-krb5
  --with-apparmor --with-libcap-ng --with-python3"

From e2efc441ba2dda6eac89d6d19f7960be2fb6cb6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 094/873] python3-autobahn: rebuild for Python 3.8.

---
 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 053e45608e5..524ba4b4566 100644
--- a/srcpkgs/python3-autobahn/template
+++ b/srcpkgs/python3-autobahn/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-autobahn'
 pkgname=python3-autobahn
 version=19.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="autobahn-${version}"
 build_style=python3-module

From 9ad07e924752896ad77bccca2019163eb738ebc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 095/873] python-automat: rebuild for Python 3.8.

---
 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 4d0f89a89f5..984f5e9642a 100644
--- a/srcpkgs/python-automat/template
+++ b/srcpkgs/python-automat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-automat'
 pkgname=python-automat
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Automat-${version}"
 build_style=python-module

From a104c6986268b798f373e1fb36de2b20efb9f618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 096/873] python-axolotl: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl/template b/srcpkgs/python-axolotl/template
index cf24db1b6e7..74480b5a9fe 100644
--- a/srcpkgs/python-axolotl/template
+++ b/srcpkgs/python-axolotl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl'
 pkgname=python-axolotl
 version=0.2.3
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="axolotl"

From c0e16521a2125c2ae2c155dd483904a3dce7bd8c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 097/873] python-axolotl-curve25519: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl-curve25519/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl-curve25519/template b/srcpkgs/python-axolotl-curve25519/template
index f7b273b8385..897de4e7cdf 100644
--- a/srcpkgs/python-axolotl-curve25519/template
+++ b/srcpkgs/python-axolotl-curve25519/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl-curve25519'
 pkgname=python-axolotl-curve25519
 version=0.4.1.post2
-revision=2
+revision=3
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 makedepends="python-devel python3-devel"

From 6c250811341de25ed60e2bdfaae58eb8f5a8c159 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 098/873] python-babelfish: rebuild for Python 3.8.

---
 srcpkgs/python-babelfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-babelfish/template b/srcpkgs/python-babelfish/template
index c156255f418..47d5bb176cc 100644
--- a/srcpkgs/python-babelfish/template
+++ b/srcpkgs/python-babelfish/template
@@ -1,7 +1,7 @@
 # Template file for 'python-babelfish'
 pkgname=python-babelfish
 version=0.5.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="babelfish-${version}"
 build_style=python-module

From 3bbb2fa6599ab0470a4209080a69ad4f8476f1ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 099/873] python-backcall: rebuild for Python 3.8.

---
 srcpkgs/python-backcall/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-backcall/template b/srcpkgs/python-backcall/template
index 01dfab9c25d..a55af727ab6 100644
--- a/srcpkgs/python-backcall/template
+++ b/srcpkgs/python-backcall/template
@@ -1,7 +1,7 @@
 # Template file for 'python-backcall'
 pkgname=python-backcall
 version=0.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="backcall-${version}"
 build_style=python-module

From d263efaab1b83cfdc94e9b33011f3cfefc52dcd2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 100/873] bcc: rebuild for Python 3.8.

---
 srcpkgs/bcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template
index a4d32bce7a4..e872cb6a4a8 100644
--- a/srcpkgs/bcc/template
+++ b/srcpkgs/bcc/template
@@ -1,7 +1,7 @@
 # Template file for 'bcc'
 pkgname=bcc
 version=0.11.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DREVISION=${version}"
 hostmakedepends="flex"

From 95aa25d2f02529207de0d9d62aa57353f202d9a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 101/873] python-bcrypt: rebuild for Python 3.8.

---
 srcpkgs/python-bcrypt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bcrypt/template b/srcpkgs/python-bcrypt/template
index 1ccac21ee94..664b5c9df07 100644
--- a/srcpkgs/python-bcrypt/template
+++ b/srcpkgs/python-bcrypt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bcrypt'
 pkgname=python-bcrypt
 version=3.1.7
-revision=1
+revision=2
 wrksrc="bcrypt-${version}"
 build_style=python-module
 pycompile_module="bcrypt"

From 91e29d8f93186f3c597658d4746f864cc6ed9fb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 102/873] python-bibtexparser: rebuild for Python 3.8.

---
 srcpkgs/python-bibtexparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bibtexparser/template b/srcpkgs/python-bibtexparser/template
index 1eff201e6b8..c40115c9fb8 100644
--- a/srcpkgs/python-bibtexparser/template
+++ b/srcpkgs/python-bibtexparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bibtexparser'
 pkgname=python-bibtexparser
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bibtexparser-${version}"
 build_style=python-module

From 6a95de33763230908ad4e9ae408dedcdd2cc431d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 103/873] python-bitarray: rebuild for Python 3.8.

---
 srcpkgs/python-bitarray/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitarray/template b/srcpkgs/python-bitarray/template
index 4f2b4ee392c..f928718a9df 100644
--- a/srcpkgs/python-bitarray/template
+++ b/srcpkgs/python-bitarray/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitarray'
 pkgname=python-bitarray
 version=1.0.1
-revision=1
+revision=2
 wrksrc="bitarray-${version}"
 build_style=python-module
 pycompile_module="bitarray"

From 1f892b7a3495cc0eddd59d14baf8fa6473521ce4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 104/873] python-bitbucket-api: rebuild for Python 3.8.

---
 srcpkgs/python-bitbucket-api/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitbucket-api/template b/srcpkgs/python-bitbucket-api/template
index 27747866baf..448ea60d53d 100644
--- a/srcpkgs/python-bitbucket-api/template
+++ b/srcpkgs/python-bitbucket-api/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitbucket-api'
 pkgname=python-bitbucket-api
 version=0.5.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="bitbucket-api-${version}"
 build_style=python-module

From 9f464ba19a5d403e830d05b84d5b86c6a9bf0209 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 105/873] python-bleach: rebuild for Python 3.8.

---
 srcpkgs/python-bleach/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bleach/template b/srcpkgs/python-bleach/template
index da389c319a5..6e3d4a3bf4c 100644
--- a/srcpkgs/python-bleach/template
+++ b/srcpkgs/python-bleach/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bleach'
 pkgname=python-bleach
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bleach-${version}"
 build_style=python-module

From a79c0811d86d64b345ee5b056c280a062c8e810a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 106/873] python3-blessed: rebuild for Python 3.8.

---
 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 4d494883f9a..8527379351f 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.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessed-${version}"
 build_style=python3-module

From ec38850242ede1700a4b6234199fba116a530b3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 107/873] python-blessings: rebuild for Python 3.8.

---
 srcpkgs/python-blessings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blessings/template b/srcpkgs/python-blessings/template
index f8e396da5c5..baa4938c328 100644
--- a/srcpkgs/python-blessings/template
+++ b/srcpkgs/python-blessings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blessings'
 pkgname=python-blessings
 version=1.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessings-${version}"
 build_style=python-module

From 19252293b6f311e3a280441f83e7ec1589711b77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 108/873] python-blinker: rebuild for Python 3.8.

---
 srcpkgs/python-blinker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blinker/template b/srcpkgs/python-blinker/template
index e34a4a9721a..b6d1d63d19a 100644
--- a/srcpkgs/python-blinker/template
+++ b/srcpkgs/python-blinker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blinker'
 pkgname=python-blinker
 version=1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="blinker-${version}"
 build_style=python-module

From 7cd7b832b55b68ab081454f2b86c254476bd5132 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 109/873] python-bluez: rebuild for Python 3.8.

---
 srcpkgs/python-bluez/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bluez/template b/srcpkgs/python-bluez/template
index 1112352e8ab..4734e47038d 100644
--- a/srcpkgs/python-bluez/template
+++ b/srcpkgs/python-bluez/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bluez'
 pkgname=python-bluez
 version=0.22
-revision=4
+revision=5
 wrksrc="pybluez-${version}"
 build_style=python-module
 pycompile_module="bluetooth"

From 47f9a18cc42f2afe1e8f31696b6928e35b8105c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 110/873] python3-boltons: rebuild for Python 3.8.

---
 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 84a991feef4..1083eb98c51 100644
--- a/srcpkgs/python3-boltons/template
+++ b/srcpkgs/python3-boltons/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-boltons'
 pkgname=python3-boltons
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boltons-${version}"
 build_style=python3-module

From 05f9cb79aa092e2ddeede56d09676742c60cb788 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 111/873] python-boto: rebuild for Python 3.8.

---
 srcpkgs/python-boto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-boto/template b/srcpkgs/python-boto/template
index 40bd3d888b9..684c00feee0 100644
--- a/srcpkgs/python-boto/template
+++ b/srcpkgs/python-boto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-boto'
 pkgname=python-boto
 version=2.49.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boto-${version}"
 build_style=python-module

From ad258b30e35aadb84fd8cd6395bb3d382b429ce9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 112/873] python-botocore: rebuild for Python 3.8.

---
 srcpkgs/python-botocore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-botocore/template b/srcpkgs/python-botocore/template
index ae1a4c17964..0610007f36e 100644
--- a/srcpkgs/python-botocore/template
+++ b/srcpkgs/python-botocore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-botocore'
 pkgname=python-botocore
 version=1.12.243
-revision=1
+revision=2
 archs=noarch
 wrksrc="botocore-${version}"
 build_style=python-module

From 5bc87295c4d5b8af514da116d9b83154488da331 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 113/873] python-bottle: rebuild for Python 3.8.

---
 srcpkgs/python-bottle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bottle/template b/srcpkgs/python-bottle/template
index 8e3a2ad5ad7..0ffc8adfec7 100644
--- a/srcpkgs/python-bottle/template
+++ b/srcpkgs/python-bottle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bottle'
 pkgname=python-bottle
 version=0.12.17
-revision=1
+revision=2
 archs=noarch
 wrksrc="bottle-${version}"
 build_style=python-module

From 86d7964c563357cfa4aec17ced1fefb9e2c974d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 114/873] brltty: rebuild for Python 3.8.

---
 srcpkgs/brltty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/brltty/template b/srcpkgs/brltty/template
index 33f3354a219..a838cd62d55 100644
--- a/srcpkgs/brltty/template
+++ b/srcpkgs/brltty/template
@@ -1,7 +1,7 @@
 # Template file for 'brltty'
 pkgname=brltty
 version=6.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-gpm --with-screen-driver=lx,sc
  --with-tables-directory=/usr/share/brltty PYTHON=/usr/bin/python3"

From 59305e4244220895606aef8a8016d356cee63dff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 115/873] python-bsddb3: rebuild for Python 3.8.

---
 srcpkgs/python-bsddb3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bsddb3/template b/srcpkgs/python-bsddb3/template
index f719a3f9560..1df37cc0e71 100644
--- a/srcpkgs/python-bsddb3/template
+++ b/srcpkgs/python-bsddb3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bsddb3'
 pkgname=python-bsddb3
 version=6.2.6
-revision=2
+revision=3
 wrksrc="bsddb3-${version}"
 build_style=python-module
 make_build_args="--berkeley-db=${XBPS_CROSS_BASE}/usr"

From 8e91ab0e55145cdc83aae10c6f0277d467cb5057 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 116/873] python-cached-property: rebuild for Python 3.8.

---
 srcpkgs/python-cached-property/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cached-property/template b/srcpkgs/python-cached-property/template
index ca2f8536260..16c89346565 100644
--- a/srcpkgs/python-cached-property/template
+++ b/srcpkgs/python-cached-property/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cached-property'
 pkgname=python-cached-property
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cached-property-${version}"
 build_style=python-module

From 3047633291296a9279b5c2a9c0ff04a0cea875f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 117/873] python-cachetools: rebuild for Python 3.8.

---
 srcpkgs/python-cachetools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cachetools/template b/srcpkgs/python-cachetools/template
index ee3ed3a4c94..0f2fdcaed32 100644
--- a/srcpkgs/python-cachetools/template
+++ b/srcpkgs/python-cachetools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cachetools'
 pkgname=python-cachetools
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cachetools-${version}"
 build_style=python-module

From 52e0110b2dc8419583a18babfa62796ef6410ac7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 118/873] python3-cairo: rebuild for Python 3.8.

---
 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 cdde1b83d20..ac158237dd2 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.18.1
-revision=1
+revision=2
 wrksrc="pycairo-${version}"
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From d8f9c3f93f495874237c23477fb548be8b2c0da2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 119/873] python-cairocffi: rebuild for Python 3.8.

---
 srcpkgs/python-cairocffi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cairocffi/template b/srcpkgs/python-cairocffi/template
index baa61334a2a..c057739b03d 100644
--- a/srcpkgs/python-cairocffi/template
+++ b/srcpkgs/python-cairocffi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cairocffi'
 pkgname=python-cairocffi
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cairocffi-${version}"
 build_style=python-module

From bc01f22fb9a5d16bae1b724b675fc57b1f732baa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 120/873] python3-canonicaljson: rebuild for Python 3.8.

---
 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 abc8e95820d..1cbe15f14ae 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.1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="canonicaljson-${version}"
 build_style=python3-module

From e4cba931e3e55f565bc084f8171dea2a8baa9aaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 121/873] python3-casttube: rebuild for Python 3.8.

---
 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 ccd95f3f31c..9e5544b0101 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=1
+revision=2
 archs=noarch
 wrksrc="casttube-${version}"
 build_style=python3-module

From 255661e350728911e6dc85db4bd8a0a0f059b561 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 122/873] python-cffi: rebuild for Python 3.8.

---
 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 27ae03879ac..8501b202bf2 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.12.3
-revision=1
+revision=2
 wrksrc="cffi-${version}"
 build_style=python-module
 pycompile_module="cffi"

From 1b85c0971a1d2d810331d3392d4ecedf140eeb47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 123/873] python3-changelogs: rebuild for Python 3.8.

---
 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 5c2a4889959..d9a7784cf3b 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.14.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="changelogs-${version}"
 build_style=python3-module

From 38e9561402e4ea4c3c4b27c8c747e6b710aec2fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 124/873] python-chardet: rebuild for Python 3.8.

---
 srcpkgs/python-chardet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chardet/template b/srcpkgs/python-chardet/template
index 685d3ab767f..bd502bbbddf 100644
--- a/srcpkgs/python-chardet/template
+++ b/srcpkgs/python-chardet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chardet'
 pkgname=python-chardet
 version=3.0.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="chardet-${version}"
 build_style=python-module

From de1193127ae80857e0f21f1d0499748b6ccafa40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 125/873] python3-cheetah3: rebuild for Python 3.8.

---
 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 40dfee6e322..b2149b2bc22 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.4
-revision=1
+revision=2
 wrksrc="Cheetah3-${version}"
 build_style=python3-module
 pycompile_module="Cheetah"

From 654378c7da0932e5e48085409868c2639efb5294 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 126/873] python3-chess: rebuild for Python 3.8.

---
 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 54b397517cf..e87dab6ca02 100644
--- a/srcpkgs/python3-chess/template
+++ b/srcpkgs/python3-chess/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chess'
 pkgname=python3-chess
 version=0.27.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-chess-${version}"
 build_style=python3-module

From 10db1a1daa9e65a8a20ebc6e20f512884e23f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 127/873] python3-chromecast: rebuild for Python 3.8.

---
 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 16df7502633..cfa41c5dfb5 100644
--- a/srcpkgs/python3-chromecast/template
+++ b/srcpkgs/python3-chromecast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chromecast'
 pkgname=python3-chromecast
 version=4.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychromecast-${version}"
 build_style=python3-module

From 9ff3e7dae7d0ebe28421538f18f150ecd58104e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 128/873] python-chroot: rebuild for Python 3.8.

---
 srcpkgs/python-chroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chroot/template b/srcpkgs/python-chroot/template
index 36853e9f2c0..7faa0f4cce9 100644
--- a/srcpkgs/python-chroot/template
+++ b/srcpkgs/python-chroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chroot'
 pkgname=python-chroot
 version=0.9.18
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychroot-${version}"
 build_style=python-module

From 8d2b57d7f0075beb9134ebd5f7e517ef8a7f20a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 129/873] python3-cli-ui: rebuild for Python 3.8.

---
 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 8303d44eed2..15a9bd32fce 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.9.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-cli-ui-${version}"
 build_style=python3-module

From ecf175e67cdb7bd1e27d29cc47a7e945a6660996 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 130/873] python3-cli_helpers: rebuild for Python 3.8.

---
 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 74b4abf2200..87b284e3cb5 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=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cli_helpers-${version}"
 build_style=python3-module

From aa87c50665110997328e9b80b9b6ba62c47f18bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 131/873] python-click: rebuild for Python 3.8.

---
 srcpkgs/python-click/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click/template b/srcpkgs/python-click/template
index 217e617e73e..4014cb66a83 100644
--- a/srcpkgs/python-click/template
+++ b/srcpkgs/python-click/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click'
 pkgname=python-click
 version=7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Click-${version}"
 build_style="python-module"

From cac08babb361a709a7b7a93c7a825b4682273115 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 132/873] python-click-log: rebuild for Python 3.8.

---
 srcpkgs/python-click-log/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-log/template b/srcpkgs/python-click-log/template
index 37b53f04af0..b57a7a74b4a 100644
--- a/srcpkgs/python-click-log/template
+++ b/srcpkgs/python-click-log/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-log'
 pkgname=python-click-log
 version=0.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-log-${version}"
 build_style="python-module"

From 5a0f06ded0599ac889d808c93865db1723b2ed95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 133/873] python3-click-plugins: rebuild for Python 3.8.

---
 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 cee484018d1..0ef6ce6b248 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=1
+revision=2
 archs=noarch
 wrksrc="click-plugins-${version}"
 build_style=python3-module

From cf104fe4106995307daeb70eb8d34554c238b5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 134/873] python-click-threading: rebuild for Python 3.8.

---
 srcpkgs/python-click-threading/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-threading/template b/srcpkgs/python-click-threading/template
index 76125224992..49b4a4a9aae 100644
--- a/srcpkgs/python-click-threading/template
+++ b/srcpkgs/python-click-threading/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-threading'
 pkgname=python-click-threading
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-threading-${version}"
 build_style="python-module"

From 4bcf653af73bc8e5a6492eee92e5d2826a779d38 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 135/873] python3-cmdln: rebuild for Python 3.8.

---
 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 f00c9a63908..2b7e21f3980 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=1
+revision=2
 archs=noarch
 wrksrc="cmdln-${version}"
 build_style=python3-module

From 52e9257d3be602d0748918c1440a3eae0b6baa51 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 136/873] python-codespell: rebuild for Python 3.8.

---
 srcpkgs/python-codespell/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-codespell/template b/srcpkgs/python-codespell/template
index 92134285a58..211626f33d7 100644
--- a/srcpkgs/python-codespell/template
+++ b/srcpkgs/python-codespell/template
@@ -1,7 +1,7 @@
 # Template file for 'python-codespell'
 pkgname=python-codespell
 version=1.14.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="codespell-${version}"
 build_style=python-module

From 65299f402e3d3a2991e33defee28d85043e0b40f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 137/873] python-colorama: rebuild for Python 3.8.

---
 srcpkgs/python-colorama/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-colorama/template b/srcpkgs/python-colorama/template
index 98ea0d3be78..09562385243 100644
--- a/srcpkgs/python-colorama/template
+++ b/srcpkgs/python-colorama/template
@@ -1,7 +1,7 @@
 # Template file for 'python-colorama'
 pkgname=python-colorama
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="colorama-${version}"
 build_style=python-module

From ec6a8fb7b9e3330e2d7f3fbe139c7a3742013bd8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 138/873] python3-colorclass: rebuild for Python 3.8.

---
 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 4a80f379206..ed8d2d2ea02 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=1
+revision=2
 archs=noarch
 wrksrc="colorclass-${version}"
 build_style=python3-module

From 4b254d3097fa01cb641af24639c6b9a230345954 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 139/873] python-configobj: rebuild for Python 3.8.

---
 srcpkgs/python-configobj/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-configobj/template b/srcpkgs/python-configobj/template
index 95f30d4631a..a8cb5d5d34e 100644
--- a/srcpkgs/python-configobj/template
+++ b/srcpkgs/python-configobj/template
@@ -1,7 +1,7 @@
 # Template file for 'python-configobj'
 pkgname=python-configobj
 version=5.0.6
-revision=5
+revision=6
 archs=noarch
 wrksrc="configobj-${version}"
 build_style=python-module

From 530a6b84ff81274981ed1aa92a2ff85a78dc9775 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 140/873] python-constantly: rebuild for Python 3.8.

---
 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 b5530908ac4..9160aec9edd 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=2
+revision=3
 archs=noarch
 wrksrc="constantly-${version}"
 build_style=python-module

From d2c0a853f5cd6634cca304f7db191fcb1d9a6afa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 141/873] python-construct: rebuild for Python 3.8.

---
 srcpkgs/python-construct/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-construct/template b/srcpkgs/python-construct/template
index 2afe435652c..d6d0b8010e2 100644
--- a/srcpkgs/python-construct/template
+++ b/srcpkgs/python-construct/template
@@ -1,7 +1,7 @@
 # Template file for 'python-construct'
 pkgname=python-construct
 version=2.9.45
-revision=2
+revision=3
 archs=noarch
 wrksrc="construct-${version}"
 build_style=python-module

From 9ba618aa4a4db0062002fcb1ad540bee9b702ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 142/873] python-coverage: rebuild for Python 3.8.

---
 srcpkgs/python-coverage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-coverage/template b/srcpkgs/python-coverage/template
index df6064b9879..1c44b5e18fb 100644
--- a/srcpkgs/python-coverage/template
+++ b/srcpkgs/python-coverage/template
@@ -1,7 +1,7 @@
 # Template file for 'python-coverage'
 pkgname=python-coverage
 version=4.5.4
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="coverage"

From 9adf4621a4960d8a331e1b723971cb326ad2429f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 143/873] python-cram: rebuild for Python 3.8.

---
 srcpkgs/python-cram/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cram/template b/srcpkgs/python-cram/template
index f1fce32149f..8c5d65fe260 100644
--- a/srcpkgs/python-cram/template
+++ b/srcpkgs/python-cram/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cram'
 pkgname=python-cram
 version=0.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="cram-${version}"
 build_style=python-module

From 47ef41a3931be5da08ee8d6fb0ff35b5e1a95d62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 144/873] python3-crcmod: rebuild for Python 3.8.

---
 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 4cd433d2420..9311dedc8ac 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=1
+revision=2
 wrksrc="crcmod-${version}"
 build_style=python3-module
 pycompile_module="crcmod"

From 8b8750f3919e1f23aa6930671f096a365391611a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 145/873] python-cryptography: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography/template b/srcpkgs/python-cryptography/template
index ce3184715dd..39e63d22f7d 100644
--- a/srcpkgs/python-cryptography/template
+++ b/srcpkgs/python-cryptography/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography'
 pkgname=python-cryptography
 version=2.7
-revision=1
+revision=2
 wrksrc="cryptography-${version}"
 build_style=python-module
 pycompile_module="cryptography"

From 676ecf3ea008b8ccabdd3d2798c449a061abb9dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 146/873] python-cryptography_vectors: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography_vectors/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography_vectors/template b/srcpkgs/python-cryptography_vectors/template
index d52e5f5e47c..8fba3a0ce27 100644
--- a/srcpkgs/python-cryptography_vectors/template
+++ b/srcpkgs/python-cryptography_vectors/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography_vectors'
 pkgname=python-cryptography_vectors
 version=2.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="cryptography_vectors-${version}"
 build_style=python-module

From b78a89dedf3b15094ae7febdff460a2cbf547464 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 147/873] python-css-parser: rebuild for Python 3.8.

---
 srcpkgs/python-css-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-css-parser/template b/srcpkgs/python-css-parser/template
index e90b103e4a0..f6d2d0cbf8b 100644
--- a/srcpkgs/python-css-parser/template
+++ b/srcpkgs/python-css-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-css-parser'
 pkgname=python-css-parser
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="css-parser-${version}"
 build_style=python-module

From 036f8b87a68dcb362c7037f58abcffb763571601 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 148/873] python-cssselect: rebuild for Python 3.8.

---
 srcpkgs/python-cssselect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssselect/template b/srcpkgs/python-cssselect/template
index d7dbcebc0ea..c7f43ebca9f 100644
--- a/srcpkgs/python-cssselect/template
+++ b/srcpkgs/python-cssselect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssselect'
 pkgname=python-cssselect
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d4b52974f5f9e8a86060d3dfccc041298c1d666 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 149/873] python-cssutils: rebuild for Python 3.8.

---
 srcpkgs/python-cssutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssutils/template b/srcpkgs/python-cssutils/template
index 648c4754c22..5f08903b9a0 100644
--- a/srcpkgs/python-cssutils/template
+++ b/srcpkgs/python-cssutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssutils'
 pkgname=python-cssutils
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="cssutils-${version}"
 build_style=python-module

From bfb2835290dfefddc0781e2b463d410bf121efa5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 150/873] python-cups: rebuild for Python 3.8.

---
 srcpkgs/python-cups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cups/template b/srcpkgs/python-cups/template
index 2c26e9ef3d0..62c384c9db8 100644
--- a/srcpkgs/python-cups/template
+++ b/srcpkgs/python-cups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cups'
 pkgname=python-cups
 version=1.9.74
-revision=2
+revision=3
 wrksrc="pycups-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 32daac09af71a30483e9985028381670b4ab6245 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 151/873] system-config-printer: rebuild for Python 3.8.

---
 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 e8f8eca46ae..04fe74ff808 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.11
-revision=5
+revision=6
 build_style=gnu-configure
 configure_args="--with-udev-rules"
 make_build_args="udevhelperdir=/usr/lib/udev"

From 582813b2756ce1d1d397113a752b81189680c001 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 152/873] python-curl: rebuild for Python 3.8.

---
 srcpkgs/python-curl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curl/template b/srcpkgs/python-curl/template
index f1f9051d53a..685c63ce68a 100644
--- a/srcpkgs/python-curl/template
+++ b/srcpkgs/python-curl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curl'
 pkgname=python-curl
 version=7.43.0.3
-revision=4
+revision=5
 wrksrc="pycurl-${version}"
 build_style=python-module
 pycompile_module="curl"

From 0eda981910702bfaac2a8af2041fe2c534c13618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 153/873] python-curtsies: rebuild for Python 3.8.

---
 srcpkgs/python-curtsies/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curtsies/template b/srcpkgs/python-curtsies/template
index 158d1c5ce76..6126a11e9b4 100644
--- a/srcpkgs/python-curtsies/template
+++ b/srcpkgs/python-curtsies/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curtsies'
 pkgname=python-curtsies
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="curtsies-${version}"
 build_style=python-module

From 7db16365daaa931d774701441c01b698be457cb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 154/873] python-cycler: rebuild for Python 3.8.

---
 srcpkgs/python-cycler/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cycler/template b/srcpkgs/python-cycler/template
index ee6c985b288..0b53c195dae 100644
--- a/srcpkgs/python-cycler/template
+++ b/srcpkgs/python-cycler/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cycler'
 pkgname=python-cycler
 version=0.10.0
-revision=4
+revision=5
 archs=noarch
 wrksrc="cycler-${version}"
 build_style=python-module

From 2c59e6772ee31b855fe302a27b9b9544cd865e6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 155/873] python-daemonize: rebuild for Python 3.8.

---
 srcpkgs/python-daemonize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-daemonize/template b/srcpkgs/python-daemonize/template
index 699a156b26b..efaf163e573 100644
--- a/srcpkgs/python-daemonize/template
+++ b/srcpkgs/python-daemonize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-daemonize'
 pkgname=python-daemonize
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="daemonize-${version}"
 build_style=python-module

From 84cc63fece0763c8b6920e56e78508551e0fc727 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 156/873] python-dateutil: rebuild for Python 3.8.

---
 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 d9c0f73c883..7675b8f9447 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.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="dateutil"

From 9a19173186ae564f17114f530ac8077484d43c82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 157/873] python-dbus: rebuild for Python 3.8.

---
 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 869c10b2969..3845f6ce34a 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.12
-revision=1
+revision=2
 wrksrc="dbus-python-${version}"
 build_style=gnu-configure
 pycompile_module="dbus"

From 06a9a5b6965485369e669181d99123d7beabf81f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 158/873] python3-dbusmock: rebuild for Python 3.8.

---
 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 67e0ed68078..4abd47843cc 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.18.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-dbusmock-${version}"
 build_style=python3-module

From 694c57d69d63d9f59bef9d31d20a0b16dc73a2a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 159/873] python-decorator: rebuild for Python 3.8.

---
 srcpkgs/python-decorator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-decorator/template b/srcpkgs/python-decorator/template
index 14090c537c9..7f14fef90a6 100644
--- a/srcpkgs/python-decorator/template
+++ b/srcpkgs/python-decorator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-decorator'
 pkgname=python-decorator
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="decorator-${version}"
 build_style=python-module

From 3bd4b100eb970e16e93bbbed8ce2ac91a36e3df5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 160/873] python-defusedxml: rebuild for Python 3.8.

---
 srcpkgs/python-defusedxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-defusedxml/template b/srcpkgs/python-defusedxml/template
index afd62e94414..96234eb18c7 100644
--- a/srcpkgs/python-defusedxml/template
+++ b/srcpkgs/python-defusedxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-defusedxml'
 pkgname=python-defusedxml
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="defusedxml-${version}"
 build_style=python-module

From 442acbe58cd337c55658908f41ec5b6221ca8fcb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 161/873] python3-discid: rebuild for Python 3.8.

---
 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 be5eae1f07f..cc4bc27a1aa 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=1
+revision=2
 archs=noarch
 wrksrc="discid-${version}"
 build_style=python3-module

From 31db2101853fbced7b2655f48906b9054bce07ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 162/873] python-discogs_client: rebuild for Python 3.8.

---
 srcpkgs/python-discogs_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-discogs_client/template b/srcpkgs/python-discogs_client/template
index a27cc50f93c..5af18eda664 100644
--- a/srcpkgs/python-discogs_client/template
+++ b/srcpkgs/python-discogs_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-discogs_client'
 pkgname=python-discogs_client
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="discogs-client-${version}"
 build_style=python-module

From 0aba2b232148b832c27ebd8703c24f42c5018f15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 163/873] python3-distro: rebuild for Python 3.8.

---
 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 86e94572ed7..f1205ace151 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.4.0
-revision=1
+revision=2
 wrksrc=distro-${version}
 build_style=python3-module
 pycompile_module="distro"

From 990a3bd7cef20bd21b781caccd807a7cadf6a0fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 164/873] python-distutils-extra: rebuild for Python 3.8.

---
 srcpkgs/python-distutils-extra/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-distutils-extra/template b/srcpkgs/python-distutils-extra/template
index 9e5728ba08f..46bb0cccc31 100644
--- a/srcpkgs/python-distutils-extra/template
+++ b/srcpkgs/python-distutils-extra/template
@@ -1,7 +1,7 @@
 # Template file for 'python-distutils-extra'
 pkgname=python-distutils-extra
 version=2.39
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 pycompile_module="DistUtilsExtra"

From cc8c6f7c74e5660152cb87b99e7d7b88b5c3d077 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 165/873] python-dkimpy: rebuild for Python 3.8.

---
 srcpkgs/python-dkimpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dkimpy/template b/srcpkgs/python-dkimpy/template
index 4ca5ad386b0..1da26c5de5d 100644
--- a/srcpkgs/python-dkimpy/template
+++ b/srcpkgs/python-dkimpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dkimpy'
 pkgname=python-dkimpy
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="dkimpy-${version}"
 build_style=python-module

From 8560c730ee4396275d04f5b5649fc0b2a1a8819e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 166/873] python-dnspython: rebuild for Python 3.8.

---
 srcpkgs/python-dnspython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dnspython/template b/srcpkgs/python-dnspython/template
index 15d4d7a8a73..66d237e89ee 100644
--- a/srcpkgs/python-dnspython/template
+++ b/srcpkgs/python-dnspython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dnspython'
 pkgname=python-dnspython
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dnspython-${version}"
 build_style=python-module

From c723160d02d838faad8761fcdaa9cfaed2df756f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 167/873] python-docker: rebuild for Python 3.8.

---
 srcpkgs/python-docker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker/template b/srcpkgs/python-docker/template
index b3f8cb2076b..83265bbb606 100644
--- a/srcpkgs/python-docker/template
+++ b/srcpkgs/python-docker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker'
 pkgname=python-docker
 version=3.7.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-${version}"
 build_style=python-module

From 116d9592b10bcde7a5b2f78ed23e0c2e382394da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 168/873] python-docker-pycreds: rebuild for Python 3.8.

---
 srcpkgs/python-docker-pycreds/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker-pycreds/template b/srcpkgs/python-docker-pycreds/template
index c478ded9de6..2224be0d21d 100644
--- a/srcpkgs/python-docker-pycreds/template
+++ b/srcpkgs/python-docker-pycreds/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker-pycreds'
 pkgname=python-docker-pycreds
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-pycreds-${version}"
 build_style=python-module

From 339d2fc160bc67c015b61704b1ade0e15a729050 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 169/873] python-dockerpty: rebuild for Python 3.8.

---
 srcpkgs/python-dockerpty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dockerpty/template b/srcpkgs/python-dockerpty/template
index 78ba5bc3b09..4a0b3a7a33f 100644
--- a/srcpkgs/python-dockerpty/template
+++ b/srcpkgs/python-dockerpty/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dockerpty'
 pkgname=python-dockerpty
 version=0.4.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="dockerpty-${version}"
 build_style=python-module

From 9925e97e6e19313f6899b14640957a47c12c3c6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 170/873] python-docopt: rebuild for Python 3.8.

---
 srcpkgs/python-docopt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docopt/template b/srcpkgs/python-docopt/template
index 4b8661ed2e1..48e5f86c1e0 100644
--- a/srcpkgs/python-docopt/template
+++ b/srcpkgs/python-docopt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docopt'
 pkgname=python-docopt
 version=0.6.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="docopt-${version}"
 build_style=python-module

From b274270fc5a58198a59400d9c8eb825546cf64ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 171/873] python-docutils: rebuild for Python 3.8.

---
 srcpkgs/python-docutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docutils/template b/srcpkgs/python-docutils/template
index 62f080f416a..8fd21a7450b 100644
--- a/srcpkgs/python-docutils/template
+++ b/srcpkgs/python-docutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docutils'
 pkgname=python-docutils
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docutils-${version}"
 build_style=python-module

From 6db8d0a9fb5d7b1cd339f5102d86a29dda19f348 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 172/873] python-dogpile.cache: rebuild for Python 3.8.

---
 srcpkgs/python-dogpile.cache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index f6e106fb4e8..894c6f695bf 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dogpile.cache'
 pkgname=python-dogpile.cache
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dogpile.cache-${version}"
 build_style=python-module

From e603b2f5de239ac8c6e7b8322f560ed5249fe887 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 173/873] python-dominate: rebuild for Python 3.8.

---
 srcpkgs/python-dominate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dominate/template b/srcpkgs/python-dominate/template
index 14ec659bac8..6d6f2caa323 100644
--- a/srcpkgs/python-dominate/template
+++ b/srcpkgs/python-dominate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dominate'
 pkgname=python-dominate
 version=2.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dominate-${version}"
 build_style=python-module

From 2bd7c3e739559614758b25140591fa8bb623a73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 174/873] python-dulwich: rebuild for Python 3.8.

---
 srcpkgs/python-dulwich/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dulwich/template b/srcpkgs/python-dulwich/template
index 0bddda65069..7b8ac45011e 100644
--- a/srcpkgs/python-dulwich/template
+++ b/srcpkgs/python-dulwich/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dulwich'
 pkgname=python-dulwich
 version=0.19.13
-revision=1
+revision=2
 wrksrc="dulwich-${version}"
 build_style=python-module
 pycompile_module="dulwich"

From 9d0b79dad0746da7669be20a38791a7eff4a42dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 175/873] python3-easygui: rebuild for Python 3.8.

---
 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 c1ec4767ae9..a9a2f66d865 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="easygui-${version}"
 build_style=python3-module

From eaa3ee113511523004b2d78a2119becc627b2dcf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 176/873] python-ecdsa: rebuild for Python 3.8.

---
 srcpkgs/python-ecdsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ecdsa/template b/srcpkgs/python-ecdsa/template
index 5e0b217fa73..e6e7d58cd10 100644
--- a/srcpkgs/python-ecdsa/template
+++ b/srcpkgs/python-ecdsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ecdsa'
 pkgname=python-ecdsa
 version=0.13.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 5d7cb5b032b5814415f5b21646b09bceda211fd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 177/873] python-editor: rebuild for Python 3.8.

---
 srcpkgs/python-editor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-editor/template b/srcpkgs/python-editor/template
index 4b86afa6924..3594e407205 100644
--- a/srcpkgs/python-editor/template
+++ b/srcpkgs/python-editor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-editor'
 pkgname=python-editor
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="editor"

From 19c3e09b30ed3cf9c6ffee8cee652d54c672a599 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 178/873] python-efl: rebuild for Python 3.8.

---
 srcpkgs/python-efl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-efl/template b/srcpkgs/python-efl/template
index a49e7d35847..2096f6916da 100644
--- a/srcpkgs/python-efl/template
+++ b/srcpkgs/python-efl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-efl'
 pkgname=python-efl
 version=1.22.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="efl"
 hostmakedepends="pkg-config python-devel python3-devel"

From 82198e93fcca38bb8b5f4f754bcbd6fd7baf59da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 179/873] python3-eliot: rebuild for Python 3.8.

---
 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 15b05dd7331..8453789b688 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="eliot-${version}"
 build_style=python3-module

From bcfe6b0d9db4104d00cb6a16d6012f2258515d59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 180/873] python-empy: rebuild for Python 3.8.

---
 srcpkgs/python-empy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-empy/template b/srcpkgs/python-empy/template
index 97476250cf2..4668a9cc814 100644
--- a/srcpkgs/python-empy/template
+++ b/srcpkgs/python-empy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-empy'
 pkgname=python-empy
 version=3.3.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="empy-${version}"
 build_style=python-module

From 6a91fa7210bd83ced5963d69be69166cd7ad72e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 181/873] python-enchant: rebuild for Python 3.8.

---
 srcpkgs/python-enchant/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enchant/template b/srcpkgs/python-enchant/template
index a443877d821..e499957b47e 100644
--- a/srcpkgs/python-enchant/template
+++ b/srcpkgs/python-enchant/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enchant'
 pkgname=python-enchant
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python-module

From 6ec52886dc67e49d1440bf8d0d1fe8fab07df30a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 182/873] python-entrypoints: rebuild for Python 3.8.

---
 srcpkgs/python-entrypoints/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-entrypoints/template b/srcpkgs/python-entrypoints/template
index ebefb2d04dc..6070650f35d 100644
--- a/srcpkgs/python-entrypoints/template
+++ b/srcpkgs/python-entrypoints/template
@@ -1,7 +1,7 @@
 # Template file for 'python-entrypoints'
 pkgname=python-entrypoints
 version=0.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="entrypoints-${version}"
 build_style=python-module

From 612a78254c1f46db87994e41646495e245a3facf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 183/873] python-envdir: rebuild for Python 3.8.

---
 srcpkgs/python-envdir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-envdir/template b/srcpkgs/python-envdir/template
index 622fcee6b34..b8cccad60ac 100644
--- a/srcpkgs/python-envdir/template
+++ b/srcpkgs/python-envdir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-envdir'
 pkgname=python-envdir
 version=1.0.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 50f8488d9ea7d659590f7d09f42dd5b94e19152c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 184/873] python-enzyme: rebuild for Python 3.8.

---
 srcpkgs/python-enzyme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enzyme/template b/srcpkgs/python-enzyme/template
index 637c858195b..f28f40b0319 100644
--- a/srcpkgs/python-enzyme/template
+++ b/srcpkgs/python-enzyme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enzyme'
 pkgname=python-enzyme
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="enzyme-${version}"
 build_style=python-module

From 0927e611429f29f17290f1e10cf2c0b872d1feb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 185/873] python3-esprima: rebuild for Python 3.8.

---
 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 c3a564123de..aec8930a6bf 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=1
+revision=2
 wrksrc="esprima-${version}"
 build_style=python3-module
 pycompile_module="esprima"

From d10708d4fcebbbc7dccf424ca1a596b43ae8df59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 186/873] python-evdev: rebuild for Python 3.8.

---
 srcpkgs/python-evdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-evdev/template b/srcpkgs/python-evdev/template
index 3c1a5253513..cff10211628 100644
--- a/srcpkgs/python-evdev/template
+++ b/srcpkgs/python-evdev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-evdev'
 pkgname=python-evdev
 version=1.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="evdev"
 hostmakedepends="python-setuptools python3-setuptools"

From d4f74f5bad705da704a6773a834e3939d7700c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 187/873] python-ewmh: rebuild for Python 3.8.

---
 srcpkgs/python-ewmh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ewmh/template b/srcpkgs/python-ewmh/template
index be6d04316b0..a96490fb56d 100644
--- a/srcpkgs/python-ewmh/template
+++ b/srcpkgs/python-ewmh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ewmh'
 pkgname=python-ewmh
 version=0.1.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From afbcc47e23517b6d56ec485dc40f389c1af31701 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 188/873] python-exifread: rebuild for Python 3.8.

---
 srcpkgs/python-exifread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-exifread/template b/srcpkgs/python-exifread/template
index 853f885fff8..834aa7730ee 100644
--- a/srcpkgs/python-exifread/template
+++ b/srcpkgs/python-exifread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-exifread'
 pkgname=python-exifread
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="exif-py-${version}"
 build_style="python-module"

From d05fad06fa4306ef7f685f49a366fcc27e64a40c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 189/873] python-fasteners: rebuild for Python 3.8.

---
 srcpkgs/python-fasteners/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fasteners/template b/srcpkgs/python-fasteners/template
index 34ca4e0e9db..24d2ec0611f 100644
--- a/srcpkgs/python-fasteners/template
+++ b/srcpkgs/python-fasteners/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fasteners'
 pkgname=python-fasteners
 version=0.15
-revision=1
+revision=2
 archs=noarch
 wrksrc="fasteners-${version}"
 build_style=python-module

From 8c663b7a9f12675a94dea8c33eddeededd3c56bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 190/873] python-feedgenerator: rebuild for Python 3.8.

---
 srcpkgs/python-feedgenerator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedgenerator/template b/srcpkgs/python-feedgenerator/template
index 3e5abc4f433..bcffb6728aa 100644
--- a/srcpkgs/python-feedgenerator/template
+++ b/srcpkgs/python-feedgenerator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedgenerator'
 pkgname=python-feedgenerator
 version=1.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="feedgenerator-${version}"
 build_style=python-module

From ab9e5bccaa31f32d93549c21e47bc12c4e5ac181 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 191/873] python-feedparser: rebuild for Python 3.8.

---
 srcpkgs/python-feedparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedparser/template b/srcpkgs/python-feedparser/template
index c5c5e8783eb..94f0a58ec88 100644
--- a/srcpkgs/python-feedparser/template
+++ b/srcpkgs/python-feedparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedparser'
 pkgname=python-feedparser
 version=5.2.1
-revision=5
+revision=6
 archs=noarch
 wrksrc="feedparser-${version}"
 build_style=python-module

From 157719696415e499518e188417324c7d97359d36 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 192/873] python3-fido2: rebuild for Python 3.8.

---
 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 fafb4d61d56..fb737d68d20 100644
--- a/srcpkgs/python3-fido2/template
+++ b/srcpkgs/python3-fido2/template
@@ -2,7 +2,7 @@
 pkgname=python3-fido2
 _pkgname=fido2
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From cbab3fd166f79dc7d2659a802e1953c697f94a95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 193/873] python3-filelock: rebuild for Python 3.8.

---
 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 8e0bc8f1070..9105ff8689d 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.0.12
-revision=1
+revision=2
 wrksrc="filelock-${version}"
 build_style=python3-module
 pycompile_module="filelock.py"

From df9deb02719807bdcb49f7c41040cd8748efd6fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 194/873] python-filetype: rebuild for Python 3.8.

---
 srcpkgs/python-filetype/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-filetype/template b/srcpkgs/python-filetype/template
index 37896cff9d8..10b974794b5 100644
--- a/srcpkgs/python-filetype/template
+++ b/srcpkgs/python-filetype/template
@@ -1,7 +1,7 @@
 # Template file for 'python-filetype'
 pkgname=python-filetype
 version=1.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="filetype-${version}"
 build_style=python-module

From b71ed5528581f9bba57653ff2acb45edf6dcbd81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 195/873] python3-fishnet: rebuild for Python 3.8.

---
 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 9dde60cbb6c..6280ae8e966 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=1
+revision=2
 archs=noarch
 wrksrc="fishnet-${version}"
 build_style=python3-module

From 25bc415f7d96b99e98c97ab0abad6a531786f9e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 196/873] python-flaky: rebuild for Python 3.8.

---
 srcpkgs/python-flaky/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-flaky/template b/srcpkgs/python-flaky/template
index d5211c9cb60..e8e681421f7 100644
--- a/srcpkgs/python-flaky/template
+++ b/srcpkgs/python-flaky/template
@@ -1,7 +1,7 @@
 # Template file for 'python-flaky'
 pkgname=python-flaky
 version=3.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 6dfa18d602ed8d6414a040466c4e0eef4db1d0d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 197/873] python3-flexmock: rebuild for Python 3.8.

---
 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 0663ed5122d..8a7c9a2894d 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.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="flexmock-${version}"
 build_style=python3-module

From 8c90b86b18b06e68260df59166a7228f7af5e5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 198/873] python3-fonttools: rebuild for Python 3.8.

---
 srcpkgs/python3-fonttools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-fonttools/template b/srcpkgs/python3-fonttools/template
index 15cf36585fb..ccd4b66c5d8 100644
--- a/srcpkgs/python3-fonttools/template
+++ b/srcpkgs/python3-fonttools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-fonttools'
 pkgname=python3-fonttools
 version=4.0.2
-revision=1
+revision=2
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 pycompile_module="fonttools"

From 423903ec28541ea1cd89f97400529121dca5e065 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 199/873] python3-frozendict: rebuild for Python 3.8.

---
 srcpkgs/python3-frozendict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-frozendict/template b/srcpkgs/python3-frozendict/template
index d3b4dc91602..739000a887c 100644
--- a/srcpkgs/python3-frozendict/template
+++ b/srcpkgs/python3-frozendict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-frozendict'
 pkgname=python3-frozendict
 version=1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="frozendict-${version}"
 build_style=python3-module

From 0929953d079922e685a9b46372630d69c2c6776d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 200/873] python-fuse: rebuild for Python 3.8.

---
 srcpkgs/python-fuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fuse/template b/srcpkgs/python-fuse/template
index 6449cc36a02..2e99e9866d3 100644
--- a/srcpkgs/python-fuse/template
+++ b/srcpkgs/python-fuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fuse'
 pkgname=python-fuse
 version=0.3.1
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="fuseparts fuse.py"
 hostmakedepends="pkg-config python-setuptools python3-setuptools"

From 505bca67544c8cca26d3f7675eb746bb98abf44e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 201/873] python-future: rebuild for Python 3.8.

---
 srcpkgs/python-future/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-future/template b/srcpkgs/python-future/template
index 1844be2efbc..6cd53908823 100644
--- a/srcpkgs/python-future/template
+++ b/srcpkgs/python-future/template
@@ -1,7 +1,7 @@
 # Template file for 'python-future'
 pkgname=python-future
 version=0.17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="future-${version}"
 build_style=python-module

From 4b595c01c8dcf28a72cf0a96960609ab9788b6ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 202/873] python3-geojson: rebuild for Python 3.8.

---
 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 6bcd0c3092e..90e7d5a0e60 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=1
+revision=2
 archs=noarch
 wrksrc="geojson-${version}"
 build_style=python3-module

From 5e44d64f54a2983f4d5fefba49ef65a6803bd024 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 203/873] python-gevent: rebuild for Python 3.8.

---
 srcpkgs/python-gevent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gevent/template b/srcpkgs/python-gevent/template
index 2bbabee00fc..35c76146d56 100644
--- a/srcpkgs/python-gevent/template
+++ b/srcpkgs/python-gevent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gevent'
 pkgname=python-gevent
 version=1.4.0
-revision=1
+revision=2
 wrksrc="gevent-${version}"
 build_style=python-module
 pycompile_module="gevent"

From 5fed10c6460512a1f1391f079ed47645f9df532e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 204/873] python3-gitchangelog: rebuild for Python 3.8.

---
 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 ed381e07d78..cc1945f2623 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=1
+revision=2
 archs=noarch
 wrksrc="gitchangelog-${version}"
 build_style=python3-module

From b52557ed164619919a05cdf8fae5e77e5b4f53db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 205/873] python-gitdb: rebuild for Python 3.8.

---
 srcpkgs/python-gitdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitdb/template b/srcpkgs/python-gitdb/template
index d9e624b9f53..253ddaa07bd 100644
--- a/srcpkgs/python-gitdb/template
+++ b/srcpkgs/python-gitdb/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitdb'
 pkgname=python-gitdb
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="gitdb2-${version}"
 build_style=python-module

From 53365dcec4eb25138ea4bb248d57c1b2aa7aa311 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 206/873] python-github3: rebuild for Python 3.8.

---
 srcpkgs/python-github3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-github3/template b/srcpkgs/python-github3/template
index 2cb71368f3d..425fe1b7362 100644
--- a/srcpkgs/python-github3/template
+++ b/srcpkgs/python-github3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-github3'
 pkgname=python-github3
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="github3.py-${version}"
 build_style=python-module

From 2b4c90de9a0cbcbb5902a9407f229864bd81a7f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 207/873] python-gitlab: rebuild for Python 3.8.

---
 srcpkgs/python-gitlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitlab/template b/srcpkgs/python-gitlab/template
index 7db583b54c4..0f71b4c7153 100644
--- a/srcpkgs/python-gitlab/template
+++ b/srcpkgs/python-gitlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitlab'
 pkgname=python-gitlab
 version=1.12.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gitlab"

From 51613301779bb891e87daba6b634dca18654d29f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 208/873] python-gmpy2: rebuild for Python 3.8.

---
 srcpkgs/python-gmpy2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gmpy2/template b/srcpkgs/python-gmpy2/template
index c41a9f4595b..74e9b583288 100644
--- a/srcpkgs/python-gmpy2/template
+++ b/srcpkgs/python-gmpy2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gmpy2'
 pkgname=python-gmpy2
 version=2.0.8
-revision=5
+revision=6
 wrksrc="gmpy2-${version}"
 build_style=python-module
 hostmakedepends="unzip python-setuptools python3-setuptools

From a6f4b9ed74b787b741e6297520186bd60de2b46e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 209/873] python-gntp: rebuild for Python 3.8.

---
 srcpkgs/python-gntp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gntp/template b/srcpkgs/python-gntp/template
index 14bd36518f8..7b3bb5a7bb7 100644
--- a/srcpkgs/python-gntp/template
+++ b/srcpkgs/python-gntp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gntp'
 pkgname=python-gntp
 version=1.0.3
-revision=4
+revision=5
 archs=noarch
 wrksrc="gntp-${version}"
 build_style=python-module

From 0730dc20e341ef5247184f85a47f2d1200750698 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 210/873] python-gnupg: rebuild for Python 3.8.

---
 srcpkgs/python-gnupg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gnupg/template b/srcpkgs/python-gnupg/template
index ae6f49c7e27..24c0943d1e4 100644
--- a/srcpkgs/python-gnupg/template
+++ b/srcpkgs/python-gnupg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gnupg'
 pkgname=python-gnupg
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gnupg.py"

From 2c78f38b921da1d4ac2ddf5c200a378cadd75590 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 211/873] python3-gobject: rebuild for Python 3.8.

---
 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 242d33ed3ac..8713ddf5334 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.32.2
-revision=1
+revision=2
 wrksrc="pygobject-${version}"
 build_style=meson
 build_helper="gir"

From 15ed888e45d37128f9852cfc492a14182186f1a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 212/873] python-gogs-client: rebuild for Python 3.8.

---
 srcpkgs/python-gogs-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gogs-client/template b/srcpkgs/python-gogs-client/template
index e8189bc8805..027135d430c 100644
--- a/srcpkgs/python-gogs-client/template
+++ b/srcpkgs/python-gogs-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gogs-client'
 pkgname=python-gogs-client
 version=1.0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="gogs_client-${version}"
 build_style=python-module

From 1ce661eb8f15d8e6d56a3f1e197897c332fa224e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 213/873] python-google-api-python-client: rebuild for Python
 3.8.

---
 srcpkgs/python-google-api-python-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-api-python-client/template b/srcpkgs/python-google-api-python-client/template
index 273cd0722b8..69c2d4e96eb 100644
--- a/srcpkgs/python-google-api-python-client/template
+++ b/srcpkgs/python-google-api-python-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-api-python-client'
 pkgname=python-google-api-python-client
 version=1.7.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From abc55893b0e34778f73646713ec111220a9cafbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 214/873] python-google-auth: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth/template b/srcpkgs/python-google-auth/template
index 708fe08325a..1de6800e3d2 100644
--- a/srcpkgs/python-google-auth/template
+++ b/srcpkgs/python-google-auth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth'
 pkgname=python-google-auth
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 345385c7c36d4b9e58aad80d36b1cd93575ecd95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 215/873] python-google-auth-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth-httplib2/template b/srcpkgs/python-google-auth-httplib2/template
index 9a7fd093ce5..9e43bc92292 100644
--- a/srcpkgs/python-google-auth-httplib2/template
+++ b/srcpkgs/python-google-auth-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth-httplib2'
 pkgname=python-google-auth-httplib2
 version=0.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 659bb740f4ecc98b01dc400608f6b524416a0b86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 216/873] python-gpg: rebuild for Python 3.8.

---
 srcpkgs/python-gpg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gpg/template b/srcpkgs/python-gpg/template
index 4ef85846b42..a17a0324af8 100644
--- a/srcpkgs/python-gpg/template
+++ b/srcpkgs/python-gpg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gpg'
 pkgname=python-gpg
 version=1.10.0
-revision=3
+revision=4
 wrksrc="gpg-${version}"
 build_style=python-module
 hostmakedepends="swig gpgme-devel python-devel python3-devel"

From 873dc5b9b60d819c83e9d76fd366d7e22b1e3bc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 217/873] python-grako: rebuild for Python 3.8.

---
 srcpkgs/python-grako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-grako/template b/srcpkgs/python-grako/template
index cc02973b31e..2b401732735 100644
--- a/srcpkgs/python-grako/template
+++ b/srcpkgs/python-grako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-grako'
 pkgname=python-grako
 version=3.99.9
-revision=3
+revision=4
 wrksrc="neogeny-${pkgname/python-/}-275d3c4fe4ac"
 build_style=python-module
 pycompile_module="grako"

From d47059d2656db0b58c65856428cabac0432d40b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 218/873] python-graphviz: rebuild for Python 3.8.

---
 srcpkgs/python-graphviz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-graphviz/template b/srcpkgs/python-graphviz/template
index 521f2e81213..e3d487a2db7 100644
--- a/srcpkgs/python-graphviz/template
+++ b/srcpkgs/python-graphviz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-graphviz'
 pkgname=python-graphviz
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 604137947acf2b7cd302f3f32e778c96a0f521f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 219/873] python-greenlet: rebuild for Python 3.8.

---
 srcpkgs/python-greenlet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-greenlet/template b/srcpkgs/python-greenlet/template
index d1e63ac7adb..b540e9a286b 100644
--- a/srcpkgs/python-greenlet/template
+++ b/srcpkgs/python-greenlet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-greenlet'
 pkgname=python-greenlet
 version=0.4.15
-revision=2
+revision=3
 wrksrc="greenlet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From c75b3ed338515fef098deb3e5b0d7a6afb7e4027 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 220/873] python-guessit: rebuild for Python 3.8.

---
 srcpkgs/python-guessit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-guessit/template b/srcpkgs/python-guessit/template
index 5029048a041..a962f14522f 100644
--- a/srcpkgs/python-guessit/template
+++ b/srcpkgs/python-guessit/template
@@ -1,7 +1,7 @@
 # Template file for 'python-guessit'
 pkgname=python-guessit
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="guessit-${version}"
 build_style=python-module

From be7acc08bc4f5ffb222fcebc23a391553273ece1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 221/873] python-h11: rebuild for Python 3.8.

---
 srcpkgs/python-h11/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-h11/template b/srcpkgs/python-h11/template
index 88040dfadec..b2e007533a7 100644
--- a/srcpkgs/python-h11/template
+++ b/srcpkgs/python-h11/template
@@ -1,7 +1,7 @@
 # Template file for 'python-h11'
 pkgname=python-h11
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=h11-${version}
 build_style=python-module

From bdf55bd416f8bc2ed44be6c4c54d162c18a8ea97 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 222/873] python-habanero: rebuild for Python 3.8.

---
 srcpkgs/python-habanero/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-habanero/template b/srcpkgs/python-habanero/template
index 86d66befc3d..a914f21ecb7 100644
--- a/srcpkgs/python-habanero/template
+++ b/srcpkgs/python-habanero/template
@@ -1,7 +1,7 @@
 # Template file for 'python-habanero'
 pkgname=python-habanero
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="habanero-${version}"
 build_style=python-module

From 9c07301e6c8b8cbc8282f2c49eee7ea5572650fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 223/873] python3-hawkauthlib: rebuild for Python 3.8.

---
 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 fd7f1405790..1456fa7d814 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=2
+revision=3
 archs=noarch
 wrksrc="hawkauthlib-${version}"
 build_style=python3-module

From 66941ef99dc3f45dea432a38889d9aedcbc58e8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 224/873] python-hiredis: rebuild for Python 3.8.

---
 srcpkgs/python-hiredis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hiredis/template b/srcpkgs/python-hiredis/template
index 23694ae92d7..82a97d5eaf3 100644
--- a/srcpkgs/python-hiredis/template
+++ b/srcpkgs/python-hiredis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hiredis'
 pkgname=python-hiredis
 version=0.2.0
-revision=4
+revision=5
 wrksrc="hiredis-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 335237d6c8ffbf9d850fddc0047cb4ea28057efd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 225/873] python3-hkdf: rebuild for Python 3.8.

---
 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 fabc91ee974..0faaf05b5fe 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=1
+revision=2
 archs=noarch
 wrksrc="hkdf-${version}"
 build_style=python3-module

From fa28e1e2a5b4f298ee9762f0f595a5b1b16db0c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 226/873] python-hoedown: rebuild for Python 3.8.

---
 srcpkgs/python-hoedown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hoedown/template b/srcpkgs/python-hoedown/template
index a964fbbb709..4b82aba9afc 100644
--- a/srcpkgs/python-hoedown/template
+++ b/srcpkgs/python-hoedown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hoedown'
 pkgname=python-hoedown
 version=0.3.0
-revision=2
+revision=3
 wrksrc="hoedown-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 1b9ab7e23ce8f84563cdaac18cbe35d6b5b377eb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 227/873] python-hpack: rebuild for Python 3.8.

---
 srcpkgs/python-hpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hpack/template b/srcpkgs/python-hpack/template
index c69e91daa0e..ffbac313103 100644
--- a/srcpkgs/python-hpack/template
+++ b/srcpkgs/python-hpack/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hpack'
 pkgname=python-hpack
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hpack-${version}
 build_style=python-module

From b6095882129bc28d1a3eec0f996353011126ed10 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 228/873] python3-html2text: rebuild for Python 3.8.

---
 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 006f2a127ad..c74e236a053 100644
--- a/srcpkgs/python3-html2text/template
+++ b/srcpkgs/python3-html2text/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-html2text'
 pkgname=python3-html2text
 version=2019.9.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module

From 78741dc5f018f23c93acabc2cdd16c97d5e08012 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 229/873] python-html5-parser: rebuild for Python 3.8.

---
 srcpkgs/python-html5-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5-parser/template b/srcpkgs/python-html5-parser/template
index 130c5037e57..41bbd0ea157 100644
--- a/srcpkgs/python-html5-parser/template
+++ b/srcpkgs/python-html5-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5-parser'
 pkgname=python-html5-parser
 version=0.4.8
-revision=1
+revision=2
 wrksrc="html5-parser-${version}"
 build_style=python-module
 pycompile_module="html5_parser"

From f69efbb44a9aa15f6b7468ff70a20786ec1a04d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 230/873] python-html5lib: rebuild for Python 3.8.

---
 srcpkgs/python-html5lib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5lib/template b/srcpkgs/python-html5lib/template
index 81e683f7bcf..2565de64fd2 100644
--- a/srcpkgs/python-html5lib/template
+++ b/srcpkgs/python-html5lib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5lib'
 pkgname=python-html5lib
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="html5lib-${version}"
 build_style=python-module

From 6bd979521876c876eea2022ebe023cdbb30777c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 231/873] python-httmock: rebuild for Python 3.8.

---
 srcpkgs/python-httmock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httmock/template b/srcpkgs/python-httmock/template
index 61a60126936..e798b4fc1b3 100644
--- a/srcpkgs/python-httmock/template
+++ b/srcpkgs/python-httmock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httmock'
 pkgname=python-httmock
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="httmock-${version}"
 build_style=python-module

From 7f5b2e5c5738ca5824c255406195ff59f30f2c80 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 232/873] python-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httplib2/template b/srcpkgs/python-httplib2/template
index edcb6abf0c1..fe76a729328 100644
--- a/srcpkgs/python-httplib2/template
+++ b/srcpkgs/python-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httplib2'
 pkgname=python-httplib2
 version=0.13.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="httplib2-${version}"
 build_style=python-module

From 9bd4d3d3c99054f61ceb650933dcd9c5740d5ff0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 233/873] python3-humanize: rebuild for Python 3.8.

---
 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 c82c20fb0f2..d1011fb92e9 100644
--- a/srcpkgs/python3-humanize/template
+++ b/srcpkgs/python3-humanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-humanize'
 pkgname=python3-humanize
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="humanize-${version}"
 build_style=python3-module

From ead6f9504cd4015bc13944d58d676ef457b0fb34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 234/873] python-hyper-h2: rebuild for Python 3.8.

---
 srcpkgs/python-hyper-h2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyper-h2/template b/srcpkgs/python-hyper-h2/template
index 5dcf7ed1c4d..9e5eee3b69b 100644
--- a/srcpkgs/python-hyper-h2/template
+++ b/srcpkgs/python-hyper-h2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyper-h2'
 pkgname=python-hyper-h2
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyper-h2-${version}"
 build_style=python-module

From 8ac54f95c067c3f715c23a58d7f2b6d0683988cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 235/873] python-hyperframe: rebuild for Python 3.8.

---
 srcpkgs/python-hyperframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyperframe/template b/srcpkgs/python-hyperframe/template
index e4cea346f7e..6b544c2061c 100644
--- a/srcpkgs/python-hyperframe/template
+++ b/srcpkgs/python-hyperframe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperframe'
 pkgname=python-hyperframe
 version=5.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hyperframe-${version}
 build_style=python-module

From cb929edb0d026e58d2d6c7e6f9baeee9fedf523e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 236/873] python-hyperlink: rebuild for Python 3.8.

---
 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 1cc7aa0670a..945bf72ee59 100644
--- a/srcpkgs/python-hyperlink/template
+++ b/srcpkgs/python-hyperlink/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperlink'
 pkgname=python-hyperlink
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyperlink-${version}"
 build_style=python-module

From da7a9015ccf93b07d390988b03b1403702cfa14a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 237/873] python-hypothesis: rebuild for Python 3.8.

---
 srcpkgs/python-hypothesis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hypothesis/template b/srcpkgs/python-hypothesis/template
index f3eb931e410..de55593fc02 100644
--- a/srcpkgs/python-hypothesis/template
+++ b/srcpkgs/python-hypothesis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hypothesis'
 pkgname=python-hypothesis
 version=4.38.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="hypothesis-hypothesis-python-${version}"
 build_wrksrc=hypothesis-python

From f091030376534d6a6f7c625b82a8405350e7cdcd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 238/873] python-icalendar: rebuild for Python 3.8.

---
 srcpkgs/python-icalendar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-icalendar/template b/srcpkgs/python-icalendar/template
index b2129648ea6..be45f2d608d 100644
--- a/srcpkgs/python-icalendar/template
+++ b/srcpkgs/python-icalendar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-icalendar'
 pkgname=python-icalendar
 version=4.0.3
-revision=1
+revision=2
 wrksrc="icalendar-${version}"
 archs=noarch
 build_style=python-module

From 474626af886f96ef30849e5aca015775f7edfb8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 239/873] icdiff: rebuild for Python 3.8.

---
 srcpkgs/icdiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template
index 31cfc3e2354..396448b86f4 100644
--- a/srcpkgs/icdiff/template
+++ b/srcpkgs/icdiff/template
@@ -1,7 +1,7 @@
 # Template file for 'icdiff'
 pkgname=icdiff
 version=1.9.5
-revision=1
+revision=2
 wrksrc="${pkgname}-release-${version}"
 archs=noarch
 build_style=python-module

From 21e5ba4fadd590c9e0dd7afde206429c99c46c56 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 240/873] python-idna: rebuild for Python 3.8.

---
 srcpkgs/python-idna/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-idna/template b/srcpkgs/python-idna/template
index 4c6baefd41b..446a04da7d7 100644
--- a/srcpkgs/python-idna/template
+++ b/srcpkgs/python-idna/template
@@ -1,7 +1,7 @@
 # Template file for 'python-idna'
 pkgname=python-idna
 version=2.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-${version}"
 build_style=python-module

From a012eff0de75e8caab0be24964731b749fe6ad8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 241/873] python3-idna-ssl: rebuild for Python 3.8.

---
 srcpkgs/python3-idna-ssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-idna-ssl/template b/srcpkgs/python3-idna-ssl/template
index df953f4d0d9..0608fb7278c 100644
--- a/srcpkgs/python3-idna-ssl/template
+++ b/srcpkgs/python3-idna-ssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-idna-ssl'
 pkgname=python3-idna-ssl
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-ssl-${version}"
 build_style=python3-module

From ac112b7dfc3aadb93225736a4504f7965af29838 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 242/873] python3-ifaddr: rebuild for Python 3.8.

---
 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 37bc2bbaf73..683d76662a3 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ifaddr-${version}"
 build_style=python3-module

From 32d0218ef7a7a721759e4c421d70255f49b3cfd0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 243/873] python-imagesize: rebuild for Python 3.8.

---
 srcpkgs/python-imagesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-imagesize/template b/srcpkgs/python-imagesize/template
index ee231eb9f24..f64c86812b5 100644
--- a/srcpkgs/python-imagesize/template
+++ b/srcpkgs/python-imagesize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-imagesize'
 pkgname=python-imagesize
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="imagesize-${version}"
 build_style=python-module

From f0bf351c50949a7348409d8c132926c401dabf43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 244/873] python3-importlib_metadata: rebuild for Python 3.8.

---
 srcpkgs/python3-importlib_metadata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-importlib_metadata/template b/srcpkgs/python3-importlib_metadata/template
index 9acbe968e10..f88e9d9b780 100644
--- a/srcpkgs/python3-importlib_metadata/template
+++ b/srcpkgs/python3-importlib_metadata/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-importlib_metadata'
 pkgname=python3-importlib_metadata
 version=0.23
-revision=1
+revision=2
 archs=noarch
 wrksrc="importlib_metadata-${version}"
 build_style=python3-module

From 73cc1c05e8e0ccf9063a33dd203d70df2ab135ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 245/873] python-incremental: rebuild for Python 3.8.

---
 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 a1c07042365..70477e26866 100644
--- a/srcpkgs/python-incremental/template
+++ b/srcpkgs/python-incremental/template
@@ -1,7 +1,7 @@
 # Template file for 'python-incremental'
 pkgname=python-incremental
 version=17.5.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="incremental-${version}"
 build_style=python-module

From 82a10b837fff5c5ce2f37ede93dad161025a109c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 246/873] python-inotify: rebuild for Python 3.8.

---
 srcpkgs/python-inotify/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-inotify/template b/srcpkgs/python-inotify/template
index f8e26bcc415..64e48fd9330 100644
--- a/srcpkgs/python-inotify/template
+++ b/srcpkgs/python-inotify/template
@@ -1,7 +1,7 @@
 # Template file for 'python-inotify'
 pkgname=python-inotify
 version=0.9.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="pyinotify-${version}"
 build_style=python-module

From 70f558982c4846e9de5243694f048c7014c7089a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 247/873] python-iptools: rebuild for Python 3.8.

---
 srcpkgs/python-iptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iptools/template b/srcpkgs/python-iptools/template
index 599a85ccdba..3c53013fb9d 100644
--- a/srcpkgs/python-iptools/template
+++ b/srcpkgs/python-iptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iptools'
 pkgname=python-iptools
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9962727fd608ce59af5a55c73c8b4c3d0c17fe71 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 248/873] python3-ipython: rebuild for Python 3.8.

---
 srcpkgs/python3-ipython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template
index 63242f382db..2c08bad1e41 100644
--- a/srcpkgs/python3-ipython/template
+++ b/srcpkgs/python3-ipython/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-ipython'
 pkgname=python3-ipython
 version=7.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipython-${version}"
 build_style=python3-module

From ecafa2b5530001ac56b03e639dff4ae00027d1ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 249/873] python-ipython_genutils: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_genutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_genutils/template b/srcpkgs/python-ipython_genutils/template
index 9af9604ca00..d46a3b0b716 100644
--- a/srcpkgs/python-ipython_genutils/template
+++ b/srcpkgs/python-ipython_genutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_genutils'
 pkgname=python-ipython_genutils
 version=0.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="ipython_genutils-${version}"
 build_style=python-module

From 1349d0a55b00bc5b30629934ad23ae1ed8839d98 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 250/873] python-ipython_ipykernel: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_ipykernel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_ipykernel/template b/srcpkgs/python-ipython_ipykernel/template
index 5ddc333798a..ca17b58c006 100644
--- a/srcpkgs/python-ipython_ipykernel/template
+++ b/srcpkgs/python-ipython_ipykernel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_ipykernel'
 pkgname=python-ipython_ipykernel
 version=4.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipykernel-${version}"
 build_style=python-module

From 1b146320a422b57ba1db41491ccff040d9ee719d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 251/873] python3-irc: rebuild for Python 3.8.

---
 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 eea3a629128..714c11dc943 100644
--- a/srcpkgs/python3-irc/template
+++ b/srcpkgs/python3-irc/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-irc'
 pkgname=python3-irc
 version=17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="irc-${version}"
 build_style=python3-module

From e04c4f250fda964ab555eb6b636f701d995009e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 252/873] python-isbnlib: rebuild for Python 3.8.

---
 srcpkgs/python-isbnlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isbnlib/template b/srcpkgs/python-isbnlib/template
index 3e2f66c6b66..1cc46a060d6 100644
--- a/srcpkgs/python-isbnlib/template
+++ b/srcpkgs/python-isbnlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isbnlib'
 pkgname=python-isbnlib
 version=3.9.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="isbnlib-${version}"
 build_style=python-module

From 2debe6131c52d94acd065961f9ea9ae22176a34c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 253/873] python-iso-8601: rebuild for Python 3.8.

---
 srcpkgs/python-iso-8601/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iso-8601/template b/srcpkgs/python-iso-8601/template
index a483e55b0bd..a841866d439 100644
--- a/srcpkgs/python-iso-8601/template
+++ b/srcpkgs/python-iso-8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iso-8601'
 pkgname=python-iso-8601
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="iso-8601-${version}"
 build_style=python-module

From 8b4be7b5324ac1347d55cc4f4e9eaa552465beec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 254/873] python-isodate: rebuild for Python 3.8.

---
 srcpkgs/python-isodate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isodate/template b/srcpkgs/python-isodate/template
index b2a7eb46591..74e4e813e64 100644
--- a/srcpkgs/python-isodate/template
+++ b/srcpkgs/python-isodate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isodate'
 pkgname=python-isodate
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="isodate-${version}"
 build_style=python-module

From a9c9e144908d37411616dd357e9fdc7575aaa8c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 255/873] python-isort: rebuild for Python 3.8.

---
 srcpkgs/python-isort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isort/template b/srcpkgs/python-isort/template
index df7fcfbf2d2..cd8e43b69ea 100644
--- a/srcpkgs/python-isort/template
+++ b/srcpkgs/python-isort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isort'
 pkgname=python-isort
 version=4.3.21
-revision=1
+revision=2
 archs=noarch
 wrksrc="isort-${version}"
 build_style=python-module

From a81f38d5db390cc4ae2c6be89747bebd3f1f15dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 256/873] python-itsdangerous: rebuild for Python 3.8.

---
 srcpkgs/python-itsdangerous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-itsdangerous/template b/srcpkgs/python-itsdangerous/template
index d1d9234df88..6e6fe5dcb2b 100644
--- a/srcpkgs/python-itsdangerous/template
+++ b/srcpkgs/python-itsdangerous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-itsdangerous'
 pkgname=python-itsdangerous
 version=0.24
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 2d842da30a2a65a2405487fdd5929ca2a0555251 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 257/873] python-iwlib: rebuild for Python 3.8.

---
 srcpkgs/python-iwlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iwlib/template b/srcpkgs/python-iwlib/template
index 2c58d4c8d29..2f4149b4e92 100644
--- a/srcpkgs/python-iwlib/template
+++ b/srcpkgs/python-iwlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iwlib'
 pkgname=python-iwlib
 version=1.6.2
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="iwlib"

From c09cc84b06cf4332a02b0a826494a74c81409175 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 258/873] python-jedi: rebuild for Python 3.8.

---
 srcpkgs/python-jedi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jedi/template b/srcpkgs/python-jedi/template
index 136e6adbea4..a994f0e2861 100644
--- a/srcpkgs/python-jedi/template
+++ b/srcpkgs/python-jedi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jedi'
 pkgname=python-jedi
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 _parsover=0.5.0
 wrksrc="jedi-${version}"

From 235b9031c126ebf53355a5ef0c337423c0df1d95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 259/873] python3-jeepney: rebuild for Python 3.8.

---
 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 2ae308a6fc6..9c5c007aa17 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.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="jeepney-${version}"
 build_style=python3-module

From 4868c0871bc763937dd6b8573e91ee86064e0595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 260/873] python3-jellyfish: rebuild for Python 3.8.

---
 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 dec74539e3f..5d0a614c397 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.7.2
-revision=1
+revision=2
 wrksrc="jellyfish-${version}"
 build_style=python3-module
 pycompile_module="jellyfish"

From a9c225f19782a27d8e5e28a508ea0acc39991390 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 261/873] python-jmespath: rebuild for Python 3.8.

---
 srcpkgs/python-jmespath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jmespath/template b/srcpkgs/python-jmespath/template
index 47508a3a0c2..220f1a33c07 100644
--- a/srcpkgs/python-jmespath/template
+++ b/srcpkgs/python-jmespath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jmespath'
 pkgname=python-jmespath
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jmespath.py-${version}"
 build_style=python-module

From 30e8e2e1619bdf45652db8c6ecdd0e0a4fc90d8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 262/873] python3-josepy: rebuild for Python 3.8.

---
 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 6d6e4547d38..903bd7028ed 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="josepy-${version}"
 build_style=python3-module

From c06d36cf857257f3cf63a7e677498487d37168d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 263/873] python-jsonpointer: rebuild for Python 3.8.

---
 srcpkgs/python-jsonpointer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonpointer/template b/srcpkgs/python-jsonpointer/template
index ed865fbfcba..fd103d123aa 100644
--- a/srcpkgs/python-jsonpointer/template
+++ b/srcpkgs/python-jsonpointer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonpointer'
 pkgname=python-jsonpointer
 version=2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonpointer-${version}"
 build_style=python-module

From be483d0bbf53a22e23a3c2db3d77dc61bff17915 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 264/873] python-jsonrpclib: rebuild for Python 3.8.

---
 srcpkgs/python-jsonrpclib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonrpclib/template b/srcpkgs/python-jsonrpclib/template
index 7253607fe57..a245168a824 100644
--- a/srcpkgs/python-jsonrpclib/template
+++ b/srcpkgs/python-jsonrpclib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonrpclib'
 pkgname=python-jsonrpclib
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonrpclib-pelix-${version}"
 build_style=python-module

From 15ad75adf989474229acc1fdac0c5d5887528bd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 265/873] python-jsonschema: rebuild for Python 3.8.

---
 srcpkgs/python-jsonschema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonschema/template b/srcpkgs/python-jsonschema/template
index 63c30ce6863..326b5609d36 100644
--- a/srcpkgs/python-jsonschema/template
+++ b/srcpkgs/python-jsonschema/template
@@ -2,7 +2,7 @@
 pkgname=python-jsonschema
 reverts="3.0.2_1"
 version=2.6.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="jsonschema-${version}"
 build_style=python-module

From 8bf3797435c040a1682d5e3e4c6c41f650d82b34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 266/873] python-jupyter_client: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_client/template b/srcpkgs/python-jupyter_client/template
index ab5cd0c5b3c..6365dd9e175 100644
--- a/srcpkgs/python-jupyter_client/template
+++ b/srcpkgs/python-jupyter_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_client'
 pkgname=python-jupyter_client
 version=5.2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_client-${version}"
 build_style=python-module

From e732ed651c399cb8d7e96a618444e815bf86ce4b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 267/873] python3-jupyter_console: rebuild for Python 3.8.

---
 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 25b2eda4c2f..3837e5b3bbf 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_console-${version}"
 build_style=python3-module

From b264bc5200c6942b1507777e0bc169838cb6a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 268/873] python-jupyter_core: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_core/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_core/template b/srcpkgs/python-jupyter_core/template
index fcce4e0fe0b..f1629208e86 100644
--- a/srcpkgs/python-jupyter_core/template
+++ b/srcpkgs/python-jupyter_core/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_core'
 pkgname=python-jupyter_core
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_core-${version}"
 build_style=python-module

From 54845c515258535f8793ff37241d0daad10fcddc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 269/873] python-jupyter_ipywidgets: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_ipywidgets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_ipywidgets/template b/srcpkgs/python-jupyter_ipywidgets/template
index 3d511a25152..44570cf390a 100644
--- a/srcpkgs/python-jupyter_ipywidgets/template
+++ b/srcpkgs/python-jupyter_ipywidgets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_ipywidgets'
 pkgname=python-jupyter_ipywidgets
 version=7.4.2
-revision=1
+revision=2
 archs=noarch
 _widgetsnbextver=3.4.0
 wrksrc="ipywidgets-${version}"

From da9dc8f246174d7b5fed1a61f1b4bb127c2bc9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 270/873] python-jupyter_nbconvert: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbconvert/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbconvert/template b/srcpkgs/python-jupyter_nbconvert/template
index 57ac5cce23f..e6cdad7d21c 100644
--- a/srcpkgs/python-jupyter_nbconvert/template
+++ b/srcpkgs/python-jupyter_nbconvert/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbconvert'
 pkgname=python-jupyter_nbconvert
 version=5.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="nbconvert-${version}"
 build_style=python-module

From 8e126f65404eaa5a5b69bca1aa41b4be58abe4b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 271/873] python-jupyter_nbformat: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbformat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbformat/template b/srcpkgs/python-jupyter_nbformat/template
index 11098fd3f90..e2addc8866f 100644
--- a/srcpkgs/python-jupyter_nbformat/template
+++ b/srcpkgs/python-jupyter_nbformat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbformat'
 pkgname=python-jupyter_nbformat
 version=4.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="nbformat-${version}"
 build_style=python-module

From 3d7a11f09a2f159b9e42c935154654a47117f3a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 272/873] python-jupyter_notebook: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_notebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_notebook/template b/srcpkgs/python-jupyter_notebook/template
index c3f478c1fb4..4f6de0f642d 100644
--- a/srcpkgs/python-jupyter_notebook/template
+++ b/srcpkgs/python-jupyter_notebook/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_notebook'
 pkgname=python-jupyter_notebook
 version=5.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="notebook-${version}"
 build_style=python-module

From eab8a5bd67b168048f40a3d2fe199e073715a1b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 273/873] python-jupyter_qtconsole: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_qtconsole/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_qtconsole/template b/srcpkgs/python-jupyter_qtconsole/template
index f8f85534bbd..ea7f89a62af 100644
--- a/srcpkgs/python-jupyter_qtconsole/template
+++ b/srcpkgs/python-jupyter_qtconsole/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_qtconsole'
 pkgname=python-jupyter_qtconsole
 version=4.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="qtconsole-${version}"
 build_style=python-module

From 96c7c1f6f484f9a33a17b0213142b8a97a7c69e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 274/873] python-jupyter_widgetsnbextension: rebuild for Python
 3.8.

---
 srcpkgs/python-jupyter_widgetsnbextension/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_widgetsnbextension/template b/srcpkgs/python-jupyter_widgetsnbextension/template
index dacd88ccb4f..05e9c0d00a3 100644
--- a/srcpkgs/python-jupyter_widgetsnbextension/template
+++ b/srcpkgs/python-jupyter_widgetsnbextension/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_widgetsnbextension'
 pkgname=python-jupyter_widgetsnbextension
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="widgetsnbextension-${version}"
 build_style=python-module

From 6175c117f039e76b8fff45d549f50360a92742b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 275/873] python-kaptan: rebuild for Python 3.8.

---
 srcpkgs/python-kaptan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kaptan/template b/srcpkgs/python-kaptan/template
index 649eeec8568..6668b240008 100644
--- a/srcpkgs/python-kaptan/template
+++ b/srcpkgs/python-kaptan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kaptan'
 pkgname=python-kaptan
 version=0.5.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="kaptan-${version}"
 build_style=python-module

From 6668dcf37c32ef8390c8f45e6cd206d8478b963b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 276/873] python-keepalive: rebuild for Python 3.8.

---
 srcpkgs/python-keepalive/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keepalive/template b/srcpkgs/python-keepalive/template
index deb95a07236..50e1d7e6e78 100644
--- a/srcpkgs/python-keepalive/template
+++ b/srcpkgs/python-keepalive/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keepalive'
 pkgname=python-keepalive
 version=0.5
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9e9d4a781427bc1296f59529a4d83b4a1271c5e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 277/873] python-keyring: rebuild for Python 3.8.

---
 srcpkgs/python-keyring/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyring/template b/srcpkgs/python-keyring/template
index df1c21ee1be..2a87160b04d 100644
--- a/srcpkgs/python-keyring/template
+++ b/srcpkgs/python-keyring/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyring'
 pkgname=python-keyring
 version=18.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyring-${version}"
 build_style=python-module

From 8fea0f10f3e8aebfe92a9d090368b1cda777a405 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 278/873] python3-keyrings-alt: rebuild for Python 3.8.

---
 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 d5820535e54..ed09cfac4a7 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=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyrings.alt-${version}"
 build_style=python3-module

From 271539dc3ed1e21733c374ff971770403194a1d1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 279/873] python-keyutils: rebuild for Python 3.8.

---
 srcpkgs/python-keyutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyutils/template b/srcpkgs/python-keyutils/template
index d56ada0e30e..a72819e963a 100644
--- a/srcpkgs/python-keyutils/template
+++ b/srcpkgs/python-keyutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyutils'
 pkgname=python-keyutils
 version=0.6
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="keyutils"
 hostmakedepends="python-setuptools python3-setuptools"

From 0556a11defcdebd2c4319e286451ce3f45f87ebd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 280/873] python-kitchen: rebuild for Python 3.8.

---
 srcpkgs/python-kitchen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kitchen/template b/srcpkgs/python-kitchen/template
index 2bbd68c13c9..68a46986de9 100644
--- a/srcpkgs/python-kitchen/template
+++ b/srcpkgs/python-kitchen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kitchen'
 pkgname=python-kitchen
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="kitchen-${version}"
 build_style=python-module

From fe5070b00515733fcafbeebc62a10ba2029b40db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 281/873] python-kiwisolver: rebuild for Python 3.8.

---
 srcpkgs/python-kiwisolver/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kiwisolver/template b/srcpkgs/python-kiwisolver/template
index 072bd5af038..67f0805aa51 100644
--- a/srcpkgs/python-kiwisolver/template
+++ b/srcpkgs/python-kiwisolver/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kiwisolver'
 pkgname=python-kiwisolver
 version=1.0.1
-revision=2
+revision=3
 wrksrc="kiwisolver-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From d1c550f6959162ec91e7bb39c54ecdd1d5b7c0ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 282/873] python-lazy-object-proxy: rebuild for Python 3.8.

---
 srcpkgs/python-lazy-object-proxy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lazy-object-proxy/template b/srcpkgs/python-lazy-object-proxy/template
index 07efb7b4777..ab2c6dce05c 100644
--- a/srcpkgs/python-lazy-object-proxy/template
+++ b/srcpkgs/python-lazy-object-proxy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lazy-object-proxy'
 pkgname=python-lazy-object-proxy
 version=1.3.1
-revision=3
+revision=4
 wrksrc="lazy-object-proxy-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e5c9a0cf8e6e0714fba4433b9deb1aaf40d43ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 283/873] python-ldap: rebuild for Python 3.8.

---
 srcpkgs/python-ldap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap/template b/srcpkgs/python-ldap/template
index 7770baa8774..e3efc2fc6b3 100644
--- a/srcpkgs/python-ldap/template
+++ b/srcpkgs/python-ldap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap'
 pkgname=python-ldap
 version=3.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="ldap ldapurl.py ldif.py slapdtest"
 hostmakedepends="python-setuptools python3-setuptools"

From dca16bc247cccf1bc7020afca5594d857514100a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 284/873] python-ldap3: rebuild for Python 3.8.

---
 srcpkgs/python-ldap3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap3/template b/srcpkgs/python-ldap3/template
index 676251a85ff..e8e4cade72b 100644
--- a/srcpkgs/python-ldap3/template
+++ b/srcpkgs/python-ldap3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap3'
 pkgname=python-ldap3
 version=2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ldap3-${version}"
 build_style=python-module

From 8f3e1b0bf64fb527d029fec15229e079f326c373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 285/873] python3-libevdev: rebuild for Python 3.8.

---
 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 0a79893726c..f0295cdee9b 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.8
-revision=1
+revision=2
 _githash=1827bebcf789adee8492cbfcc7cf8d56059a42a4
 wrksrc="python-libevdev-${version}-${_githash}"
 build_style=python3-module

From a5b674c4366c36182e29f21b8071faff59006106 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 286/873] libsmbios: rebuild for Python 3.8.

---
 srcpkgs/libsmbios/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsmbios/template b/srcpkgs/libsmbios/template
index 31d8ffda65f..161cb79deb9 100644
--- a/srcpkgs/libsmbios/template
+++ b/srcpkgs/libsmbios/template
@@ -1,7 +1,7 @@
 # Template file for 'libsmbios'
 pkgname=libsmbios
 version=2.4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--sbindir=/usr/bin --disable-static"
 hostmakedepends="automake doxygen gettext-devel help2man libtool pkg-config"

From 7762c8392d1a03ae7a320bdec0b5402b7147d0b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 287/873] python-libtmux: rebuild for Python 3.8.

---
 srcpkgs/python-libtmux/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-libtmux/template b/srcpkgs/python-libtmux/template
index 36fa7ca7ffd..20f43af5f7d 100644
--- a/srcpkgs/python-libtmux/template
+++ b/srcpkgs/python-libtmux/template
@@ -1,7 +1,7 @@
 # Template file for 'python-libtmux'
 pkgname=python-libtmux
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="libtmux-${version}"
 build_style=python-module

From 16a2a1b8ba0ad9f9032d52092294e8a39041bba2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 288/873] python-llfuse: rebuild for Python 3.8.

---
 srcpkgs/python-llfuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-llfuse/template b/srcpkgs/python-llfuse/template
index 203c5e2fd84..b453c67e91d 100644
--- a/srcpkgs/python-llfuse/template
+++ b/srcpkgs/python-llfuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-llfuse'
 pkgname=python-llfuse
 version=1.3.6
-revision=1
+revision=2
 wrksrc="llfuse-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pkg-config"

From ae7f34ffc994fc4606c9209683fae6625f3e781e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 289/873] python-lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lockfile/template b/srcpkgs/python-lockfile/template
index 4c4612ed144..778cecba7e9 100644
--- a/srcpkgs/python-lockfile/template
+++ b/srcpkgs/python-lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lockfile'
 pkgname=python-lockfile
 version=0.12.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="lockfile-${version}"
 build_style=python-module

From 5fd2f78e26b399ed936b12f51886dae3a8d35cb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 290/873] python-logfury: rebuild for Python 3.8.

---
 srcpkgs/python-logfury/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-logfury/template b/srcpkgs/python-logfury/template
index 4b1c435e34a..1b52d2d7fdf 100644
--- a/srcpkgs/python-logfury/template
+++ b/srcpkgs/python-logfury/template
@@ -1,7 +1,7 @@
 # Template file for 'python-logfury'
 pkgname=python-logfury
 version=0.1.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="logfury-${version}"
 build_style=python-module

From 747dc28bedc27e7b5c8738113573012f545333a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 291/873] python-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lxml/template b/srcpkgs/python-lxml/template
index c3aeabfbf1b..1a6a3ac9113 100644
--- a/srcpkgs/python-lxml/template
+++ b/srcpkgs/python-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lxml'
 pkgname=python-lxml
 version=4.4.1
-revision=1
+revision=2
 wrksrc="lxml-lxml-${version}"
 build_style=python-module
 pycompile_module="lxml"

From ebc274c0463316f63fe99e5df0c704e3d324c885 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 292/873] python-lz4: rebuild for Python 3.8.

---
 srcpkgs/python-lz4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lz4/template b/srcpkgs/python-lz4/template
index dab8e8ed542..76a2e800e38 100644
--- a/srcpkgs/python-lz4/template
+++ b/srcpkgs/python-lz4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lz4'
 pkgname=python-lz4
 version=2.1.6
-revision=2
+revision=3
 wrksrc="lz4-${version}"
 build_style=python-module
 pycompile_module="lz4"

From 8eb3f4d6193b25ae716fa2fdfae1f929deb65a91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 293/873] python3-macaroons: rebuild for Python 3.8.

---
 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 d44100c20f2..420f5aff043 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=1
+revision=2
 archs=noarch
 wrksrc="pymacaroons-${version}"
 build_style=python3-module

From 437e300b76670db404728daad9f6224630daaa3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 294/873] python3-macholib: rebuild for Python 3.8.

---
 srcpkgs/python3-macholib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-macholib/template b/srcpkgs/python3-macholib/template
index a2738f57eb0..525b5f7106b 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.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="macholib-${version}"
 build_style=python3-module

From b08f229d26f5b2c915caabe213234afc1e4002e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 295/873] python-magic: rebuild for Python 3.8.

---
 srcpkgs/python-magic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-magic/template b/srcpkgs/python-magic/template
index 98e3c0802ab..5a59efa4808 100644
--- a/srcpkgs/python-magic/template
+++ b/srcpkgs/python-magic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-magic'
 pkgname=python-magic
 version=0.4.15
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="magic.py"

From c597fee1945d8f994f591622074acf3670a81484 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 296/873] python-marisa-trie: rebuild for Python 3.8.

---
 srcpkgs/python-marisa-trie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-marisa-trie/template b/srcpkgs/python-marisa-trie/template
index bb09c933335..5e46b686ace 100644
--- a/srcpkgs/python-marisa-trie/template
+++ b/srcpkgs/python-marisa-trie/template
@@ -1,7 +1,7 @@
 # Template file for 'python-marisa-trie'
 pkgname=python-marisa-trie
 version=0.7.5
-revision=2
+revision=3
 wrksrc="marisa-trie-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 5366314fc7ba3b340ccf5b4658edff33f5ec148a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 297/873] python-markdown2: rebuild for Python 3.8.

---
 srcpkgs/python-markdown2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-markdown2/template b/srcpkgs/python-markdown2/template
index 2d352ba029d..e9068f64202 100644
--- a/srcpkgs/python-markdown2/template
+++ b/srcpkgs/python-markdown2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-markdown2'
 pkgname=python-markdown2
 version=2.3.8
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="markdown2"

From b56d284bcbb50ddece287bde845145e6481e4d39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 298/873] python3-matplotlib: rebuild for Python 3.8.

---
 srcpkgs/python3-matplotlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template
index 857ba17cacf..be02817a4d3 100644
--- a/srcpkgs/python3-matplotlib/template
+++ b/srcpkgs/python3-matplotlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-matplotlib'
 pkgname=python3-matplotlib
 version=3.1.1
-revision=1
+revision=2
 wrksrc="matplotlib-${version}"
 build_style=python3-module
 pycompile_module="matplotlib mpl_toolkits pylab.py"

From 8b3780e8f6f50712735239defc569952763e8894 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 299/873] python-mccabe: rebuild for Python 3.8.

---
 srcpkgs/python-mccabe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mccabe/template b/srcpkgs/python-mccabe/template
index b6a01929540..1e2ed6328b8 100644
--- a/srcpkgs/python-mccabe/template
+++ b/srcpkgs/python-mccabe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mccabe'
 pkgname=python-mccabe
 version=0.6.1
-revision=2
+revision=3
 archs=noarch
 replaces="mccabe>=0"
 wrksrc="mccabe-${version}"

From 954d38992e9a83e3214b79375b895ee1072db4e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 300/873] python-mechanize: rebuild for Python 3.8.

---
 srcpkgs/python-mechanize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mechanize/template b/srcpkgs/python-mechanize/template
index c5b2b5789a7..ca29bbd0d23 100644
--- a/srcpkgs/python-mechanize/template
+++ b/srcpkgs/python-mechanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mechanize'
 pkgname=python-mechanize
 version=0.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="mechanize-${version}"
 build_style=python-module

From e8762f4af80ad5b1cb6a41af3183141ec903485f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 301/873] python3-minidb: rebuild for Python 3.8.

---
 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 50490794600..140964b7a8a 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.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="minidb-${version}"
 build_style=python3-module

From 93febdb59f89cf4939f3684acd832f879fc774d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 302/873] python-miniupnpc: rebuild for Python 3.8.

---
 srcpkgs/python-miniupnpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-miniupnpc/template b/srcpkgs/python-miniupnpc/template
index 500c217c78e..f7892bab073 100644
--- a/srcpkgs/python-miniupnpc/template
+++ b/srcpkgs/python-miniupnpc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-miniupnpc'
 pkgname=python-miniupnpc
 version=2.0.2
-revision=2
+revision=3
 wrksrc="${pkgname#python-}-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ab280bf26207a66e5e3f418768bf3358cc2c76ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 303/873] python-mistune: rebuild for Python 3.8.

---
 srcpkgs/python-mistune/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mistune/template b/srcpkgs/python-mistune/template
index 0ee8dfde5b1..ef5c054ba75 100644
--- a/srcpkgs/python-mistune/template
+++ b/srcpkgs/python-mistune/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mistune'
 pkgname=python-mistune
 version=0.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="mistune-${version}"
 build_style=python-module

From 05abf67487f6ac161862195dfb2069fade248fbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 304/873] python3-more-itertools: rebuild for Python 3.8.

---
 srcpkgs/python3-more-itertools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-more-itertools/template b/srcpkgs/python3-more-itertools/template
index b089992f84e..a765da98495 100644
--- a/srcpkgs/python3-more-itertools/template
+++ b/srcpkgs/python3-more-itertools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-more-itertools'
 pkgname=python3-more-itertools
 version=7.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python3-module

From efcbd7f439e04ca5dc43be057047c93f1051b5cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 305/873] python-mpd2: rebuild for Python 3.8.

---
 srcpkgs/python-mpd2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template
index 682d9a85f5e..0389f8c2a28 100644
--- a/srcpkgs/python-mpd2/template
+++ b/srcpkgs/python-mpd2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpd2'
 pkgname=python-mpd2
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mpd"

From 507a89e7a29ba5dd81f66830577542bb3a098780 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 306/873] python3-mpi4py: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-mpi4py/template | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/python3-mpi4py/template b/srcpkgs/python3-mpi4py/template
index 94a83b688f2..8f9e76867cc 100644
--- a/srcpkgs/python3-mpi4py/template
+++ b/srcpkgs/python3-mpi4py/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpi4py'
 pkgname=python3-mpi4py
 version=3.0.2
-revision=1
+revision=2
 wrksrc="mpi4py-${version}"
 build_style=python3-module
 pycompile_module="mpi4py"
@@ -15,6 +15,12 @@ homepage="https://bitbucket.org/mpi4py/mpi4py"
 distfiles="$PYPI_SITE/m/mpi4py/mpi4py-${version}.tar.gz"
 checksum=f8d629d1e3e3b7b89cb99d0e3bc5505e76cc42089829807950d5c56606ed48e0
 
+post_extract() {
+	# recythonize
+	rm src/mpi4py/include/mpi4py/mpi4py.MPI.h \
+		src/mpi4py/include/mpi4py/mpi4py.MPI_api.h \
+		src/mpi4py.MPI.c
+}
 post_install() {
 	vlicense LICENSE.rst
 }

From d71d04b6dbfad4ce9460041fe001aab7c4cab301 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 307/873] python-mpmath: rebuild for Python 3.8.

---
 srcpkgs/python-mpmath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpmath/template b/srcpkgs/python-mpmath/template
index b0a38c01514..8fd4873dd62 100644
--- a/srcpkgs/python-mpmath/template
+++ b/srcpkgs/python-mpmath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpmath'
 pkgname=python-mpmath
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="mpmath-${version}"
 build_style=python-module

From f050643cc3d8a1927b2b43a4d6bc3a47fce265d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 308/873] python3-mpv: rebuild for Python 3.8.

---
 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 2780c02610b..1910a4d231d 100644
--- a/srcpkgs/python3-mpv/template
+++ b/srcpkgs/python3-mpv/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpv'
 pkgname=python3-mpv
 version=0.3.9
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-mpv-${version}"
 build_style=python3-module

From 076ab982ba68fae19b6a637c3190d501b6f11afb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 309/873] python-msgpack: rebuild for Python 3.8.

---
 srcpkgs/python-msgpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-msgpack/template b/srcpkgs/python-msgpack/template
index 395d854d638..59571d6a208 100644
--- a/srcpkgs/python-msgpack/template
+++ b/srcpkgs/python-msgpack/template
@@ -2,7 +2,7 @@
 pkgname=python-msgpack
 reverts="0.6.0_1"
 version=0.5.6
-revision=3
+revision=4
 wrksrc="msgpack-${version}"
 build_style=python-module
 pycompile_module="msgpack"

From c0b498d4aabae1c0cc1564a796b43c28045b08f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 310/873] python3-msoffcrypto-tool: rebuild for Python 3.8.

---
 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 5996d3bf355..d1b369fc773 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=4.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="msoffcrypto-tool-${version}"
 build_style=python3-module

From a02ae9dc7e657d6823c09d222a46aaaad0b52e6e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 311/873] python-mtranslate: rebuild for Python 3.8.

---
 srcpkgs/python-mtranslate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mtranslate/template b/srcpkgs/python-mtranslate/template
index d56fa18f0f0..992c7b76fe9 100644
--- a/srcpkgs/python-mtranslate/template
+++ b/srcpkgs/python-mtranslate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mtranslate'
 pkgname=python-mtranslate
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="mtranslate-${version}"
 build_style=python-module

From 1db5126bddf0129431159c083c0e8c7feeda0e24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 312/873] python3-multidict: rebuild for Python 3.8.

---
 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 82888db842f..62054db71f1 100644
--- a/srcpkgs/python3-multidict/template
+++ b/srcpkgs/python3-multidict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-multidict'
 pkgname=python3-multidict
 version=4.5.2
-revision=2
+revision=3
 wrksrc="multidict-${version}"
 build_style=python3-module
 pycompile_module="multidict"

From db397601599182d62444486443fe7887f1bf0869 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 313/873] python3-munkres: rebuild for Python 3.8.

---
 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 15767afe3fe..d0d0a013e80 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python3-module

From f6bec8102ac4a1433f716928258d680f0546e9f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 314/873] python-musicbrainzngs: rebuild for Python 3.8.

---
 srcpkgs/python-musicbrainzngs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-musicbrainzngs/template b/srcpkgs/python-musicbrainzngs/template
index 588c25f7cd8..3d738f0c3c0 100644
--- a/srcpkgs/python-musicbrainzngs/template
+++ b/srcpkgs/python-musicbrainzngs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-musicbrainzngs'
 pkgname=python-musicbrainzngs
 version=0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="musicbrainzngs-${version}"
 build_style="python-module"

From 59d602d19ea627b5ddd3ac33170326df511f1b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 315/873] python3-musicpd: rebuild for Python 3.8.

---
 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 3328b2f4bbf..8c6ba2fb451 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=1
+revision=2
 archs=noarch
 wrksrc="python-musicpd-${version}"
 build_style=python3-module

From e4271deae6b4b0258165475e34a0174f837576d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 316/873] mutagen: rebuild for Python 3.8.

---
 srcpkgs/mutagen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mutagen/template b/srcpkgs/mutagen/template
index cbf05ea8583..8b24cc82dc8 100644
--- a/srcpkgs/mutagen/template
+++ b/srcpkgs/mutagen/template
@@ -1,7 +1,7 @@
 # Template file for 'mutagen'
 pkgname=mutagen
 version=1.42.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mutagen"

From c726c7e86676ccc5612045570a6821438d6541cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 317/873] python-mygpoclient: rebuild for Python 3.8.

---
 srcpkgs/python-mygpoclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mygpoclient/template b/srcpkgs/python-mygpoclient/template
index 3f85c72cc0c..ffad63a70a1 100644
--- a/srcpkgs/python-mygpoclient/template
+++ b/srcpkgs/python-mygpoclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mygpoclient'
 pkgname=python-mygpoclient
 version=1.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="mygpoclient-${version}"
 build_style=python-module

From 1d17c7a2672083ac8c194b767f1be1d8778d6f42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 318/873] python3-mypy: rebuild for Python 3.8.

---
 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 37ecd732c06..564c0a4d47c 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.730
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy-${version}"
 build_style=python3-module

From d44ba12caf9958f6f6d708b0e5061d3ca01990e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 319/873] python3-mypy_extensions: rebuild for Python 3.8.

---
 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 2761924248e..25de48ea141 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy_extensions-${version}"
 build_style=python3-module

From 8c03f1eb83b224187a7b0fb11b5c780c96875438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 320/873] python-mysqlclient: rebuild for Python 3.8.

---
 srcpkgs/python-mysqlclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mysqlclient/template b/srcpkgs/python-mysqlclient/template
index 43fed28d4f0..079666a6dab 100644
--- a/srcpkgs/python-mysqlclient/template
+++ b/srcpkgs/python-mysqlclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mysqlclient'
 pkgname=python-mysqlclient
 version=1.3.14
-revision=2
+revision=3
 wrksrc="mysqlclient-${version}"
 build_style=python-module
 pycompile_module="MySQLdb _mysql_exceptions.py"

From 8b80cedc0b4331f2c1827c959c67be32d904a6b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 321/873] python3-nacl: rebuild for Python 3.8.

---
 srcpkgs/python3-nacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-nacl/template b/srcpkgs/python3-nacl/template
index 5dd6a71ad6a..b59ea0196ac 100644
--- a/srcpkgs/python3-nacl/template
+++ b/srcpkgs/python3-nacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-nacl'
 pkgname=python3-nacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python3-module
 pycompile_module="nacl"

From 4b93d8f922559d3f9f9693969307cdb0dedd22c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 322/873] python-namedlist: rebuild for Python 3.8.

---
 srcpkgs/python-namedlist/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-namedlist/template b/srcpkgs/python-namedlist/template
index 4c6e6f1f3d5..75626b9f6d5 100644
--- a/srcpkgs/python-namedlist/template
+++ b/srcpkgs/python-namedlist/template
@@ -1,7 +1,7 @@
 # Template file for 'python-namedlist'
 pkgname=python-namedlist
 version=1.7
-revision=5
+revision=6
 archs=noarch
 wrksrc="namedlist-${version}"
 build_style=python-module

From 643225c4205051b03e6b58dd88dd0fe79a960880 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 323/873] python-natsort: rebuild for Python 3.8.

---
 srcpkgs/python-natsort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-natsort/template b/srcpkgs/python-natsort/template
index 754ac50c419..7101e297aad 100644
--- a/srcpkgs/python-natsort/template
+++ b/srcpkgs/python-natsort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-natsort'
 pkgname=python-natsort
 version=6.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="natsort-${version}"
 build_style=python-module

From 1b4401089b676f8d76d5cbdf86f7cff95a90063f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 324/873] python-nbxmpp: rebuild for Python 3.8.

---
 srcpkgs/python-nbxmpp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nbxmpp/template b/srcpkgs/python-nbxmpp/template
index 4952ee1e102..8c39a93bca7 100644
--- a/srcpkgs/python-nbxmpp/template
+++ b/srcpkgs/python-nbxmpp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nbxmpp'
 pkgname=python-nbxmpp
 version=0.6.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 1ee192bdc19afbca9bbbc456945aaed8e882dc3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 325/873] python-ndg_httpsclient: rebuild for Python 3.8.

---
 srcpkgs/python-ndg_httpsclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ndg_httpsclient/template b/srcpkgs/python-ndg_httpsclient/template
index 908d7137391..54b653f68a9 100644
--- a/srcpkgs/python-ndg_httpsclient/template
+++ b/srcpkgs/python-ndg_httpsclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ndg_httpsclient'
 pkgname=python-ndg_httpsclient
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ndg_httpsclient-${version}"
 build_style=python-module

From 37b5c7920c617c4f55d5abe58df690c621598a93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 326/873] python3-neovim: rebuild for Python 3.8.

---
 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 44068f17b66..2730cd1b92b 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.3.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="pynvim-${version}"
 build_style="python3-module"

From 8136ec791e98badf101712f4f44830a6721d4849 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 327/873] python-netaddr: rebuild for Python 3.8.

---
 srcpkgs/python-netaddr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netaddr/template b/srcpkgs/python-netaddr/template
index 851095a3c7c..20cc1c93134 100644
--- a/srcpkgs/python-netaddr/template
+++ b/srcpkgs/python-netaddr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netaddr'
 pkgname=python-netaddr
 version=0.7.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="netaddr-${version}"
 build_style=python-module

From ebe247f557b410a62febae438785f8f011964023 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 328/873] python-netifaces: rebuild for Python 3.8.

---
 srcpkgs/python-netifaces/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netifaces/template b/srcpkgs/python-netifaces/template
index b8d6e505879..760f657aaba 100644
--- a/srcpkgs/python-netifaces/template
+++ b/srcpkgs/python-netifaces/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netifaces'
 pkgname=python-netifaces
 version=0.10.9
-revision=1
+revision=2
 wrksrc="netifaces-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 07d0e05094764c4ef127de2a4d489537d8ab5708 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 329/873] python3-networkx: rebuild for Python 3.8.

---
 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 eae29038d94..84acd3e929c 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.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="networkx-${version}"
 build_style=python3-module

From 8a3aeb59a75fbf1b7f0394b94c325ef8827b6b5d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 330/873] python-nose: rebuild for Python 3.8.

---
 srcpkgs/python-nose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose/template b/srcpkgs/python-nose/template
index c9fbe9d28d3..f2cd7fe5c3f 100644
--- a/srcpkgs/python-nose/template
+++ b/srcpkgs/python-nose/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose'
 pkgname=python-nose
 version=1.3.7
-revision=3
+revision=4
 archs=noarch
 wrksrc="nose-${version}"
 build_style=python-module

From f86abdbaaaa9e7e8236c4d39cd7e46a733425805 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 331/873] python-nose2: rebuild for Python 3.8.

---
 srcpkgs/python-nose2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose2/template b/srcpkgs/python-nose2/template
index a9ddf5969a1..058abbd4253 100644
--- a/srcpkgs/python-nose2/template
+++ b/srcpkgs/python-nose2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose2'
 pkgname=python-nose2
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 18b92c10ef3291636c1e7e28d721c5e994bf6302 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 332/873] python-npyscreen: rebuild for Python 3.8.

---
 srcpkgs/python-npyscreen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-npyscreen/template b/srcpkgs/python-npyscreen/template
index 0457fa1aaed..2223850f22e 100644
--- a/srcpkgs/python-npyscreen/template
+++ b/srcpkgs/python-npyscreen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-npyscreen'
 pkgname=python-npyscreen
 version=4.10.5.1
-revision=1
+revision=2
 wrksrc="npyscreen-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 9ea98fac2c37960db9a7b76cea2be115e8a2bed7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 333/873] python-ntplib: rebuild for Python 3.8.

---
 srcpkgs/python-ntplib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ntplib/template b/srcpkgs/python-ntplib/template
index 81bac24971e..0582fb326c1 100644
--- a/srcpkgs/python-ntplib/template
+++ b/srcpkgs/python-ntplib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ntplib'
 pkgname=python-ntplib
 version=0.3.3
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 wrksrc="ntplib-${version}"

From 42e7c3606ad17794721afef48ff01de438abbfde Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 334/873] python-numexpr: rebuild for Python 3.8.

---
 srcpkgs/python-numexpr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numexpr/template b/srcpkgs/python-numexpr/template
index 1db40092411..baf91175a33 100644
--- a/srcpkgs/python-numexpr/template
+++ b/srcpkgs/python-numexpr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numexpr'
 pkgname=python-numexpr
 version=2.7.0
-revision=1
+revision=2
 wrksrc="numexpr-${version}"
 build_style=python-module
 pycompile_module="numexpr"

From 30d9e4a8b4a096dfdf5ebfa58ffcadefb1dc1208 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 335/873] python3-numpy: rebuild for Python 3.8.

---
 srcpkgs/python3-numpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-numpy/template b/srcpkgs/python3-numpy/template
index c4c1936cc0d..f5e8ce2cc32 100644
--- a/srcpkgs/python3-numpy/template
+++ b/srcpkgs/python3-numpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-numpy'
 pkgname=python3-numpy
 version=1.17.2
-revision=1
+revision=2
 wrksrc="numpy-${version}"
 build_style=python3-module
 pycompile_module="numpy"

From 0172497dfdbc4c61b890a5cb33fdf7a4c4f8d99a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 336/873] python-numpy-stl: rebuild for Python 3.8.

---
 srcpkgs/python-numpy-stl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numpy-stl/template b/srcpkgs/python-numpy-stl/template
index 3eed838e4f6..cce1a8ead1f 100644
--- a/srcpkgs/python-numpy-stl/template
+++ b/srcpkgs/python-numpy-stl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numpy-stl'
 pkgname=python-numpy-stl
 version=2.10.1
-revision=1
+revision=2
 wrksrc="numpy-stl-v${version}"
 build_style=python-module
 pycompile_module="stl"

From f24b29a48d74aeaddb7b697a5daffdddbd861096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 337/873] python-oauth2client: rebuild for Python 3.8.

---
 srcpkgs/python-oauth2client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauth2client/template b/srcpkgs/python-oauth2client/template
index fd135e4e98f..2398adba276 100644
--- a/srcpkgs/python-oauth2client/template
+++ b/srcpkgs/python-oauth2client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauth2client'
 pkgname=python-oauth2client
 version=4.1.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 4c0ff2a063a36adf86c97b9d4c835ca20b5edfc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 338/873] python-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauthlib/template b/srcpkgs/python-oauthlib/template
index 5bbaa7df29b..036f1b31c92 100644
--- a/srcpkgs/python-oauthlib/template
+++ b/srcpkgs/python-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauthlib'
 pkgname=python-oauthlib
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 661bc27cfe08965221daa2747362d72e4fc27178 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 339/873] python-olefile: rebuild for Python 3.8.

---
 srcpkgs/python-olefile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-olefile/template b/srcpkgs/python-olefile/template
index 4346cfcf667..803d7b67cd8 100644
--- a/srcpkgs/python-olefile/template
+++ b/srcpkgs/python-olefile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-olefile'
 pkgname=python-olefile
 version=0.46
-revision=1
+revision=2
 archs=noarch
 wrksrc="olefile-${version}"
 build_style=python-module

From 81ad48cc99baa98fff2bb93d2c9ddbfe5bd36422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 340/873] python3-oletools: rebuild for Python 3.8.

---
 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 af9a91ff273..a4fda46427b 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.54.2b
-revision=1
+revision=2
 archs=noarch
 wrksrc="oletools-${version}"
 build_style=python3-module

From 0ae1454dacdb40d36d6c46872241d8b7f943ac15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 341/873] openrazer-meta: rebuild for Python 3.8.

---
 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 d4bd24878b2..112cb9e900b 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=1
+revision=2
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 827b1a86d790e29df3f5448f95b7d7583439ebc7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 342/873] python-openssl: rebuild for Python 3.8.

---
 srcpkgs/python-openssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-openssl/template b/srcpkgs/python-openssl/template
index 94bccaa166f..8aabda074fa 100644
--- a/srcpkgs/python-openssl/template
+++ b/srcpkgs/python-openssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-openssl'
 pkgname=python-openssl
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyOpenSSL-${version}"
 build_style=python-module

From 0b35d1d0b8e9ec0f17cb71edb12538b78cf15fa9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 343/873] python3-orocos-kdl: rebuild for Python 3.8.

---
 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 df3e27d5e7b..85b573b2fa4 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=1
+revision=2
 wrksrc=orocos_kinematics_dynamics-${version}
 build_wrksrc=python_orocos_kdl
 build_style=cmake

From 1f599cbc677804bd62252474063a3f44bab1963f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 344/873] python3-owm: rebuild for Python 3.8.

---
 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 d51e01831e6..acdb960ab45 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=1
+revision=2
 wrksrc="pyowm-${version}"
 build_style=python3-module
 pycompile_module="pyowm"

From 04d5ca1141107a7e08a15eccec26eae0cef6ddfc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 345/873] python-packaging: rebuild for Python 3.8.

---
 srcpkgs/python-packaging/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-packaging/template b/srcpkgs/python-packaging/template
index 505631bb29c..06042d12b90 100644
--- a/srcpkgs/python-packaging/template
+++ b/srcpkgs/python-packaging/template
@@ -1,7 +1,7 @@
 # Template file for 'python-packaging'
 pkgname=python-packaging
 version=19.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="packaging-${version}"
 build_style=python-module

From 3d4f635d1909bcc10be550a6ba92c93bab657d24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 346/873] python-pam: rebuild for Python 3.8.

---
 srcpkgs/python-pam/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pam/template b/srcpkgs/python-pam/template
index e696a05ae7f..28c22cfd6ea 100644
--- a/srcpkgs/python-pam/template
+++ b/srcpkgs/python-pam/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pam'
 pkgname=python-pam
 version=1.8.4
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="pam.py"

From 7906adb846a053b93372b360401c778862703de5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 347/873] python3-pandas: rebuild for Python 3.8.

---
 srcpkgs/python3-pandas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pandas/template b/srcpkgs/python3-pandas/template
index ad282b4d5d4..10f9d5a77d9 100644
--- a/srcpkgs/python3-pandas/template
+++ b/srcpkgs/python3-pandas/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pandas'
 pkgname=python3-pandas
 version=0.25.1
-revision=1
+revision=2
 wrksrc="pandas-${version}"
 build_style=python3-module
 pycompile_module="pandas"

From 5f63764964faf4b0d244098f5f64ba1225e14c5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 348/873] python-pandocfilters: rebuild for Python 3.8.

---
 srcpkgs/python-pandocfilters/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pandocfilters/template b/srcpkgs/python-pandocfilters/template
index a7a3d442052..8650d20256f 100644
--- a/srcpkgs/python-pandocfilters/template
+++ b/srcpkgs/python-pandocfilters/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pandocfilters'
 pkgname=python-pandocfilters
 version=1.4.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="pandocfilters-${version}"
 build_style=python-module

From cedefda1104de9c58b20c6b7e1d8a0f4d5385b24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 349/873] python-paramiko: rebuild for Python 3.8.

---
 srcpkgs/python-paramiko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-paramiko/template b/srcpkgs/python-paramiko/template
index c512ceb951f..d6f75508a03 100644
--- a/srcpkgs/python-paramiko/template
+++ b/srcpkgs/python-paramiko/template
@@ -1,7 +1,7 @@
 # Template file for 'python-paramiko'
 pkgname=python-paramiko
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 6c5cdbb0603a5742137ad2399e1f282d7135ecbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 350/873] python-parse: rebuild for Python 3.8.

---
 srcpkgs/python-parse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parse/template b/srcpkgs/python-parse/template
index 298d0b65e78..ded581b4420 100644
--- a/srcpkgs/python-parse/template
+++ b/srcpkgs/python-parse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parse'
 pkgname=python-parse
 version=1.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="parse-${version}"
 build_style=python-module

From 06c32d13c6ecc8f5c59fd3d28c856cddb7e55b69 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 351/873] python3-parsedatetime: rebuild for Python 3.8.

---
 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 d3ac21d7d34..34e9ba0f416 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="parsedatetime-${version}"
 build_style=python3-module

From 149092afd6b238ec9977aa2ba8d8f244d5357e67 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 352/873] python-parsing: rebuild for Python 3.8.

---
 srcpkgs/python-parsing/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parsing/template b/srcpkgs/python-parsing/template
index 0cc744eaf79..bd6cf2c2238 100644
--- a/srcpkgs/python-parsing/template
+++ b/srcpkgs/python-parsing/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parsing'
 pkgname=python-parsing
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyparsing-pyparsing_${version}"
 build_style=python-module

From c302574bea31ba81d3f2e4d6c1b8b8212592985d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 353/873] python-parso: rebuild for Python 3.8.

---
 srcpkgs/python-parso/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parso/template b/srcpkgs/python-parso/template
index 20e5fe306c0..1959b42622a 100644
--- a/srcpkgs/python-parso/template
+++ b/srcpkgs/python-parso/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parso'
 pkgname=python-parso
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="parso-${version}"
 build_style=python-module

From 6b9c95f942435b16d67021b0ce8f182c24bb943f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 354/873] python-passlib: rebuild for Python 3.8.

---
 srcpkgs/python-passlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-passlib/template b/srcpkgs/python-passlib/template
index 3af12ce7b1b..f46a3e92642 100644
--- a/srcpkgs/python-passlib/template
+++ b/srcpkgs/python-passlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-passlib'
 pkgname=python-passlib
 version=1.7.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="passlib-${version}"
 build_style=python-module

From 49600da0619f7152e3ea828c366d9a4680ebac40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 355/873] python-pathlib2: rebuild for Python 3.8.

---
 srcpkgs/python-pathlib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathlib2/template b/srcpkgs/python-pathlib2/template
index bb7bec778f5..fa600b78fbe 100644
--- a/srcpkgs/python-pathlib2/template
+++ b/srcpkgs/python-pathlib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathlib2'
 pkgname=python-pathlib2
 version=2.3.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pathlib2-${version}"
 build_style=python-module

From a0a108aec87134d5b6d2e03e731f48739e1226c0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 356/873] python-pathspec: rebuild for Python 3.8.

---
 srcpkgs/python-pathspec/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathspec/template b/srcpkgs/python-pathspec/template
index 7c5fe04097a..2fa8fa1a811 100644
--- a/srcpkgs/python-pathspec/template
+++ b/srcpkgs/python-pathspec/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathspec'
 pkgname=python-pathspec
 version=0.5.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathspec-${version}"
 build_style=python-module

From c66de315dc6f359ddb581056e8ef350e92acb135 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 357/873] python-pathtools: rebuild for Python 3.8.

---
 srcpkgs/python-pathtools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathtools/template b/srcpkgs/python-pathtools/template
index 218e6ed2f57..47dc6ef6a71 100644
--- a/srcpkgs/python-pathtools/template
+++ b/srcpkgs/python-pathtools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathtools'
 pkgname=python-pathtools
 version=0.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathtools-${version}"
 build_style=python-module

From d3d8ba877ce3e383a472c68a51b4eb6138da7d25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 358/873] python-pbkdf2: rebuild for Python 3.8.

---
 srcpkgs/python-pbkdf2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pbkdf2/template b/srcpkgs/python-pbkdf2/template
index edc50f824c2..956d0b4cad9 100644
--- a/srcpkgs/python-pbkdf2/template
+++ b/srcpkgs/python-pbkdf2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pbkdf2'
 pkgname=python-pbkdf2
 version=1.3
-revision=3
+revision=4
 archs=noarch
 wrksrc="pbkdf2-${version}"
 build_style=python-module

From 92b150f4aee95d71074c2bc7e253e089372033b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 359/873] python-pbr: rebuild for Python 3.8.

---
 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 7ab0b39539f..9c7216056fe 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.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pbr-${version}"
 build_style=python-module

From a5f7f198ba9557855d1662cf7b3d806286d735b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 360/873] python3-pcodedmp: rebuild for Python 3.8.

---
 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 efe8cc83ee7..eb52c809fae 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=1
+revision=2
 archs=noarch
 wrksrc="pcodedmp-${version}"
 build_style=python3-module

From c6f7d3cab5a62a3302eedc82e3ce1b5af007e967 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 361/873] python-pdfrw: rebuild for Python 3.8.

---
 srcpkgs/python-pdfrw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pdfrw/template b/srcpkgs/python-pdfrw/template
index ddb43b928fc..ef7db98e491 100644
--- a/srcpkgs/python-pdfrw/template
+++ b/srcpkgs/python-pdfrw/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pdfrw'
 pkgname=python-pdfrw
 version=0.4
-revision=2
+revision=3
 archs=noarch
 replaces="python-pdfrw-example<${version}_${revision}"
 wrksrc="${pkgname/python-//}-${version}"

From 8f02a9d6b13212de51e3921f641914d153244a1d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 362/873] python-peewee: rebuild for Python 3.8.

---
 srcpkgs/python-peewee/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-peewee/template b/srcpkgs/python-peewee/template
index 9b07ed413b9..de0068a330e 100644
--- a/srcpkgs/python-peewee/template
+++ b/srcpkgs/python-peewee/template
@@ -1,7 +1,7 @@
 # Template file for 'python-peewee'
 pkgname=python-peewee
 version=3.11.2
-revision=1
+revision=2
 wrksrc="peewee-${version}"
 build_style=python-module
 pycompile_module="playhouse peewee.py pwiz.py"

From 8c541b3666a838b55909e5f7ca46b7318c1e315e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 363/873] python3-pefile: rebuild for Python 3.8.

---
 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 305d64e0758..8791f06640b 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=1
+revision=2
 archs=noarch
 wrksrc="pefile-${version}"
 build_style=python3-module

From edc8e4f2bb803865815c3d0bd64a2e50bfdf5da8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 364/873] python3-pem: rebuild for Python 3.8.

---
 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 3517c80b66a..15417666597 100644
--- a/srcpkgs/python3-pem/template
+++ b/srcpkgs/python3-pem/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pem'
 pkgname=python3-pem
 version=19.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pem-${version}"
 build_style=python3-module

From 164760eb3d8d28400ea4be2967d7678696839866 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 365/873] python-pex: rebuild for Python 3.8.

---
 srcpkgs/python-pex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pex/template b/srcpkgs/python-pex/template
index 4beafcf7b4b..e36ccda8180 100644
--- a/srcpkgs/python-pex/template
+++ b/srcpkgs/python-pex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pex'
 pkgname=python-pex
 version=1.6.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="pex-${version}"
 build_style=python-module

From b4043ec822756e0711d025e31db342f81853fc0b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 366/873] python-pexpect: rebuild for Python 3.8.

---
 srcpkgs/python-pexpect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pexpect/template b/srcpkgs/python-pexpect/template
index 8d03a1945f3..03102c3d294 100644
--- a/srcpkgs/python-pexpect/template
+++ b/srcpkgs/python-pexpect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pexpect'
 pkgname=python-pexpect
 version=4.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pexpect-${version}"
 build_style=python-module

From 50f6291ca752dc88af34a7df4987b99f11369c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 367/873] python-pgmigrate: rebuild for Python 3.8.

---
 srcpkgs/python-pgmigrate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgmigrate/template b/srcpkgs/python-pgmigrate/template
index b441ba2a89f..767b6cf8921 100644
--- a/srcpkgs/python-pgmigrate/template
+++ b/srcpkgs/python-pgmigrate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgmigrate'
 pkgname=python-pgmigrate
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgmigrate-${version}"
 build_style=python-module

From 19bc6f8c731b45f52c358d34830221558e54f36f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 368/873] python-pgpdump: rebuild for Python 3.8.

---
 srcpkgs/python-pgpdump/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgpdump/template b/srcpkgs/python-pgpdump/template
index 58be9116feb..a28b6e209e7 100644
--- a/srcpkgs/python-pgpdump/template
+++ b/srcpkgs/python-pgpdump/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgpdump'
 pkgname=python-pgpdump
 version=1.5
-revision=5
+revision=6
 archs=noarch
 build_style=python-module
 pycompile_module="pgpdump"

From d3bc17a7484bd198f2f0e5d449b183920ca6ef9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 369/873] python3-pgspecial: rebuild for Python 3.8.

---
 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 dc52d12c214..c4f67a707f1 100644
--- a/srcpkgs/python3-pgspecial/template
+++ b/srcpkgs/python3-pgspecial/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pgspecial'
 pkgname=python3-pgspecial
 version=1.11.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgspecial-${version}"
 build_style=python3-module

From 630e0f8ca443d21d7a84c4cb44ab119db356b6fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 370/873] python3-pgzero: rebuild for Python 3.8.

---
 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 9653505acda..8b8f477112d 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgzero-${version}"
 build_style=python3-module

From b39841f2f8458d2865aac460282b318538b727c4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 371/873] python3-phonenumbers: rebuild for Python 3.8.

---
 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 ebf33f226e4..7b4e889fd8d 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.10.20
-revision=1
+revision=2
 archs=noarch
 wrksrc="phonenumbers-${version}"
 build_style=python3-module

From c4dbacfe25a16b0526190c66a838b7e407125426 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 372/873] python-picamera: rebuild for Python 3.8.

---
 srcpkgs/python-picamera/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-picamera/template b/srcpkgs/python-picamera/template
index 92bc2a57a6d..e3c9a17bfdc 100644
--- a/srcpkgs/python-picamera/template
+++ b/srcpkgs/python-picamera/template
@@ -1,7 +1,7 @@
 # Template file for 'python-picamera'
 pkgname=python-picamera
 version=1.13
-revision=1
+revision=2
 archs=noarch
 wrksrc="picamera-${version}"
 build_style=python-module

From 29473c016c6cd2d720c417714e89e9eaba3b321e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 373/873] python-pickleshare: rebuild for Python 3.8.

---
 srcpkgs/python-pickleshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pickleshare/template b/srcpkgs/python-pickleshare/template
index 2485c95230a..c1d86826c15 100644
--- a/srcpkgs/python-pickleshare/template
+++ b/srcpkgs/python-pickleshare/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pickleshare'
 pkgname=python-pickleshare
 version=0.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pickleshare-${version}"
 build_style=python-module

From 7c358da397b1273369bbeb98240a250157d4fe9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 374/873] python3-pillow-simd: rebuild for Python 3.8.

---
 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 7bab9fb20c3..4c756b07c79 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=5.3.0.post1
-revision=1
+revision=2
 archs="x86_64*"
 wrksrc="pillow-simd-${version}"
 build_style=python3-module

From 06b38c4e7a2c4a5ec22c8a9c530dbe56d846260f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 375/873] python-pip: rebuild for Python 3.8.

---
 srcpkgs/python-pip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pip/template b/srcpkgs/python-pip/template
index 75f11561816..9d4607095c7 100644
--- a/srcpkgs/python-pip/template
+++ b/srcpkgs/python-pip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pip'
 pkgname=python-pip
 version=19.2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pip-${version}"
 build_style=python-module

From 16067b9358434ea80b4b86a4dcd5a60f6b9e575b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 376/873] python-pipenv: rebuild for Python 3.8.

---
 srcpkgs/python-pipenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pipenv/template b/srcpkgs/python-pipenv/template
index e7ce3922875..210a0813673 100644
--- a/srcpkgs/python-pipenv/template
+++ b/srcpkgs/python-pipenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pipenv'
 pkgname=python-pipenv
 version=2018.11.26
-revision=3
+revision=4
 archs=noarch
 wrksrc="pipenv-${version}"
 build_style=python-module

From cb995aed1307a20f4ffe7746dbe54e4099ce9670 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 377/873] python-pkgconfig: rebuild for Python 3.8.

---
 srcpkgs/python-pkgconfig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pkgconfig/template b/srcpkgs/python-pkgconfig/template
index 13e1dcd3bf7..e9e5480907d 100644
--- a/srcpkgs/python-pkgconfig/template
+++ b/srcpkgs/python-pkgconfig/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pkgconfig'
 pkgname=python-pkgconfig
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pkgconfig-${version}"
 build_style=python-module

From f284340f35211b5c0879b7a5338c325e6cfe62da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 378/873] python-plotly: rebuild for Python 3.8.

---
 srcpkgs/python-plotly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-plotly/template b/srcpkgs/python-plotly/template
index fbbb3a3a520..1593b108f7a 100644
--- a/srcpkgs/python-plotly/template
+++ b/srcpkgs/python-plotly/template
@@ -1,7 +1,7 @@
 # Template file for 'python-plotly'
 pkgname=python-plotly
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 #wrksrc="${pkgname#*-}-${version}"
 wrksrc="plotly.py-${version}"

From ee0d515dc265db17d6c90029fc5ffad4fbfb17ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 379/873] python3-pluggy: rebuild for Python 3.8.

---
 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 37ebc2dae40..6f97cb25f21 100644
--- a/srcpkgs/python3-pluggy/template
+++ b/srcpkgs/python3-pluggy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pluggy'
 pkgname=python3-pluggy
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python3-module

From 60f109b4924812d3cbb6107b8d070a2fdb642962 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 380/873] python-ply: rebuild for Python 3.8.

---
 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 034fbcfa531..04a3defa6aa 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=1
+revision=2
 archs=noarch
 wrksrc="ply-${version}"
 build_style=python-module

From 95b0bc668a60a91dbbd68944bdc712d271e93723 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 381/873] python3-pmw: rebuild for Python 3.8.

---
 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 646e7129443..289b5ef1d0d 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=1
+revision=2
 archs=noarch
 short_desc="Python 3 Tkinter widget toolkit"
 homepage="http://pmw.sourceforge.net/"

From 760b2aa66f385f882c6da4545bc93c906a387d73 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 382/873] python-podcastparser: rebuild for Python 3.8.

---
 srcpkgs/python-podcastparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-podcastparser/template b/srcpkgs/python-podcastparser/template
index e4847d3ed65..61702f0d28b 100644
--- a/srcpkgs/python-podcastparser/template
+++ b/srcpkgs/python-podcastparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-podcastparser'
 pkgname=python-podcastparser
 version=0.6.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="podcastparser-${version}"
 build_style=python-module

From e0ad0641945e1dea937fb2ca555a61603e4560b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 383/873] python-polib: rebuild for Python 3.8.

---
 srcpkgs/python-polib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-polib/template b/srcpkgs/python-polib/template
index b0ade05d90d..8b8d4b66c68 100644
--- a/srcpkgs/python-polib/template
+++ b/srcpkgs/python-polib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-polib'
 pkgname=python-polib
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="polib-${version}"
 build_style=python-module

From 0030be5c9ea47539a72b9d5b5131abeac8412e47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 384/873] python-portend: rebuild for Python 3.8.

---
 srcpkgs/python-portend/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python-portend/template b/srcpkgs/python-portend/template
index 216ae413d09..0538f68083f 100644
--- a/srcpkgs/python-portend/template
+++ b/srcpkgs/python-portend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-portend'
 pkgname=python-portend
 version=2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="portend-${version}"
 build_style=python-module
@@ -14,7 +14,7 @@ license="MIT"
 homepage="https://github.com/jaraco/portend"
 changelog="https://github.com/jaraco/portend/blob/master/CHANGES.rst"
 distfiles="https://github.com/jaraco/portend/archive/${version}.tar.gz"
-checksum=61aa1a8fd76d64bd6093e4151a2bfeda177d5083bf2e2bcc92a053bd2104fde3
+checksum=c0740375a19168e117d291e7ed307e985d2c0e2dc732ca97444bc58a28076dfa
 
 pre_build() {
 	sed -i setup.py \

From 86c2211e1837e156275077b9efe1e25572514867 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 385/873] python-prctl: rebuild for Python 3.8.

---
 srcpkgs/python-prctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prctl/template b/srcpkgs/python-prctl/template
index 2b420d655cf..e8bf54b98fd 100644
--- a/srcpkgs/python-prctl/template
+++ b/srcpkgs/python-prctl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prctl'
 pkgname=python-prctl
 version=1.7
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="prctl.py"
 hostmakedepends="python-setuptools python3-setuptools libcap-devel"

From e7c53afc196d066076f9117158bd6a0b7b28bf52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 386/873] python3-precis-i18n: rebuild for Python 3.8.

---
 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 19612bc818b..be7bb0b0b56 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=1
+revision=2
 archs=noarch
 wrksrc="precis_i18n-${version}"
 build_style=python3-module

From fc6a6a6ae9e2454bc6e5aa117ab2f5f747f1c3d2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 387/873] python-pretend: rebuild for Python 3.8.

---
 srcpkgs/python-pretend/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pretend/template b/srcpkgs/python-pretend/template
index 9a647271b57..6d8063fc43a 100644
--- a/srcpkgs/python-pretend/template
+++ b/srcpkgs/python-pretend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pretend'
 pkgname=python-pretend
 version=1.0.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pretend-${version}"
 build_style=python-module

From 990266b8ce207f64d2a8e2f2f2c11473236e4a2d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 388/873] python-progress: rebuild for Python 3.8.

---
 srcpkgs/python-progress/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-progress/template b/srcpkgs/python-progress/template
index 7d3924e3618..0d6bd1db69d 100644
--- a/srcpkgs/python-progress/template
+++ b/srcpkgs/python-progress/template
@@ -1,7 +1,7 @@
 # Template file for 'python-progress'
 pkgname=python-progress
 version=1.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="progress-${version}"
 build_style=python-module

From 1259abece823637c18eaca058493cebdf15842ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 389/873] python-prometheus_client: rebuild for Python 3.8.

---
 srcpkgs/python-prometheus_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prometheus_client/template b/srcpkgs/python-prometheus_client/template
index 46df561f7d4..7b71fbeffc2 100644
--- a/srcpkgs/python-prometheus_client/template
+++ b/srcpkgs/python-prometheus_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prometheus_client'
 pkgname=python-prometheus_client
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="prometheus_client-${version}"
 build_style=python-module

From 67527aa7cf723b45f2c49017717337d56884bf4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 390/873] python-prompt_toolkit1: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit1/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit1/template b/srcpkgs/python-prompt_toolkit1/template
index d117d620ba5..7afe6179f33 100644
--- a/srcpkgs/python-prompt_toolkit1/template
+++ b/srcpkgs/python-prompt_toolkit1/template
@@ -2,7 +2,7 @@
 pkgname=python-prompt_toolkit1
 reverts="2.0.9_1"
 version=1.0.15
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From ad672131c8ab27e3e4dfa04ab7264c23d46f206e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 391/873] python-prompt_toolkit2: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit2/template b/srcpkgs/python-prompt_toolkit2/template
index 0fa71fa06dc..d7f2fd11e14 100644
--- a/srcpkgs/python-prompt_toolkit2/template
+++ b/srcpkgs/python-prompt_toolkit2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prompt_toolkit2'
 pkgname=python-prompt_toolkit2
 version=2.0.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From 2d3dfe28989a26dbea6bd90097a7a4046839373e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 392/873] python-proselint: rebuild for Python 3.8.

---
 srcpkgs/python-proselint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-proselint/template b/srcpkgs/python-proselint/template
index c017c497386..b1da90de474 100644
--- a/srcpkgs/python-proselint/template
+++ b/srcpkgs/python-proselint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-proselint'
 pkgname=python-proselint
 version=0.10.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="proselint-${version}"
 build_style=python-module

From 3dceefa27e529cfd28f51c8b96cec007bd4464e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 393/873] python-protobuf: rebuild for Python 3.8.

---
 srcpkgs/python-protobuf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-protobuf/template b/srcpkgs/python-protobuf/template
index 4b736f1e7af..7dbed97fb76 100644
--- a/srcpkgs/python-protobuf/template
+++ b/srcpkgs/python-protobuf/template
@@ -1,7 +1,7 @@
 # Template file for 'python-protobuf'
 pkgname=python-protobuf
 version=3.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="protobuf-${version}"
 build_style=python-module

From abc13cfff04878580efaf4333ca9548112b11049 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 394/873] python-psutil: rebuild for Python 3.8.

---
 srcpkgs/python-psutil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psutil/template b/srcpkgs/python-psutil/template
index 96cbb3c399f..11353ed2179 100644
--- a/srcpkgs/python-psutil/template
+++ b/srcpkgs/python-psutil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psutil'
 pkgname=python-psutil
 version=5.6.3
-revision=1
+revision=2
 wrksrc="psutil-${version}"
 build_style=python-module
 pycompile_module="psutil"

From 970bcf29dafb825894593f644c2fb7b4f1b86aff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 395/873] python-psycopg2: rebuild for Python 3.8.

---
 srcpkgs/python-psycopg2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psycopg2/template b/srcpkgs/python-psycopg2/template
index f41de2880e6..14b28b8aed1 100644
--- a/srcpkgs/python-psycopg2/template
+++ b/srcpkgs/python-psycopg2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psycopg2'
 pkgname=python-psycopg2
 version=2.8.3
-revision=1
+revision=2
 wrksrc="psycopg2-${version}"
 build_style=python-module
 pycompile_module="psycopg2"

From f987fad321d899f07d159588838ad3f3bfd1eb12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 396/873] python-ptyprocess: rebuild for Python 3.8.

---
 srcpkgs/python-ptyprocess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ptyprocess/template b/srcpkgs/python-ptyprocess/template
index 04c4cf89391..fd2e51fa3ac 100644
--- a/srcpkgs/python-ptyprocess/template
+++ b/srcpkgs/python-ptyprocess/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ptyprocess'
 pkgname=python-ptyprocess
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ptyprocess-${version}"
 build_style=python-module

From 6854ff4b103875e8ed393d695b71afd7a2589626 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 397/873] python3-pulsectl: rebuild for Python 3.8.

---
 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 429dd1abe45..045afdb411b 100644
--- a/srcpkgs/python3-pulsectl/template
+++ b/srcpkgs/python3-pulsectl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pulsectl'
 pkgname=python3-pulsectl
 version=19.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pulsectl-${version}"
 build_style=python3-module

From e8331ef1c889bc2b1756c6ed55a1cc93186445af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 398/873] python-py: rebuild for Python 3.8.

---
 srcpkgs/python-py/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-py/template b/srcpkgs/python-py/template
index 99644bc228a..07a1ae2a21b 100644
--- a/srcpkgs/python-py/template
+++ b/srcpkgs/python-py/template
@@ -1,7 +1,7 @@
 # Template file for 'python-py'
 pkgname=python-py
 version=1.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="py-${version}"
 build_style=python-module

From 1f71c5025d9cb40d86e4245b6a90731b3f25c6fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 399/873] python-pyPEG2: rebuild for Python 3.8.

---
 srcpkgs/python-pyPEG2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyPEG2/template b/srcpkgs/python-pyPEG2/template
index 113948af730..6ba175687f1 100644
--- a/srcpkgs/python-pyPEG2/template
+++ b/srcpkgs/python-pyPEG2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyPEG2'
 pkgname=python-pyPEG2
 version=2.15.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 3f82483327ba7958b0a6f8b67e63abf009c360ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 400/873] python-pyacoustid: rebuild for Python 3.8.

---
 srcpkgs/python-pyacoustid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyacoustid/template b/srcpkgs/python-pyacoustid/template
index 068d3d52649..d5b2d967f4e 100644
--- a/srcpkgs/python-pyacoustid/template
+++ b/srcpkgs/python-pyacoustid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyacoustid'
 pkgname=python-pyacoustid
 version=1.1.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyacoustid-${version}"
 build_style=python-module

From da477a37411d7cf0d00da2dea60d734072705be7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 401/873] python-pyaes: rebuild for Python 3.8.

---
 srcpkgs/python-pyaes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyaes/template b/srcpkgs/python-pyaes/template
index a8c812a9e01..d31766d0481 100644
--- a/srcpkgs/python-pyaes/template
+++ b/srcpkgs/python-pyaes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyaes'
 pkgname=python-pyaes
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyaes-${version}"
 build_style=python-module

From 9e2b6fe7e7b67777d70eb25705c27d4ed6462a3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 402/873] python-pyasn1: rebuild for Python 3.8.

---
 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 510dfa09816..fcddad43633 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyasn1-${version}"
 build_style=python-module

From 712c6a81632d8741a302138a46ffd3b1c8fb079f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 403/873] python-pyasn1-modules: rebuild for Python 3.8.

---
 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 bc19e4940ed..b142819a272 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 989e8e1bc0a51f2fa1a88ec8f99eae20dd3e21ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 404/873] python3-pycares: rebuild for Python 3.8.

---
 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 c52702904b4..ed82808bada 100644
--- a/srcpkgs/python3-pycares/template
+++ b/srcpkgs/python3-pycares/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pycares'
 pkgname=python3-pycares
 version=2.3.0
-revision=2
+revision=3
 wrksrc="pycares-${version}"
 build_style=python3-module
 pycompile_module="pycares"

From 0885c6a30ff0765b465e0e4c84803b48b9090dc5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 405/873] python-pycodestyle: rebuild for Python 3.8.

---
 srcpkgs/python-pycodestyle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycodestyle/template b/srcpkgs/python-pycodestyle/template
index ca20d8e0c97..08bc8c8bec7 100644
--- a/srcpkgs/python-pycodestyle/template
+++ b/srcpkgs/python-pycodestyle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycodestyle'
 pkgname=python-pycodestyle
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycodestyle-${version}"
 build_style=python-module

From 61d0268320bb8306c2b2823a663588c885a01df6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 406/873] python-pycountry: rebuild for Python 3.8.

---
 srcpkgs/python-pycountry/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycountry/template b/srcpkgs/python-pycountry/template
index 88a0025f258..205db6240b7 100644
--- a/srcpkgs/python-pycountry/template
+++ b/srcpkgs/python-pycountry/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycountry'
 pkgname=python-pycountry
 version=18.12.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycountry-${version}"
 build_style=python-module

From e3a689e939cf482e09d50cf25b8f244cbec3dc12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 407/873] python-pycparser: rebuild for Python 3.8.

---
 srcpkgs/python-pycparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycparser/template b/srcpkgs/python-pycparser/template
index a521b3494ab..d2e83aa79b2 100644
--- a/srcpkgs/python-pycparser/template
+++ b/srcpkgs/python-pycparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycparser'
 pkgname=python-pycparser
 version=2.19
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycparser-${version}"
 build_style=python-module

From a86a5e2a75c91a868bf9b10f7ad9d86ca4df85d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 408/873] python-pycryptodome: rebuild for Python 3.8.

---
 srcpkgs/python-pycryptodome/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycryptodome/template b/srcpkgs/python-pycryptodome/template
index f01b5731c45..a4368d61b39 100644
--- a/srcpkgs/python-pycryptodome/template
+++ b/srcpkgs/python-pycryptodome/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycryptodome'
 pkgname=python-pycryptodome
 version=3.9.0
-revision=1
+revision=2
 wrksrc="pycryptodome-${version}"
 build_style=python-module
 pycompile_module="Crypto"

From 0cd2d63524942e2cfe5220436720dab24ef75308 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 409/873] python-pyelftools: rebuild for Python 3.8.

---
 srcpkgs/python-pyelftools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyelftools/template b/srcpkgs/python-pyelftools/template
index a6e9e9b644e..193650442fc 100644
--- a/srcpkgs/python-pyelftools/template
+++ b/srcpkgs/python-pyelftools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyelftools'
 pkgname=python-pyelftools
 version=0.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyelftools-${version}"
 build_style=python-module

From 61ae993767f544e608a601e6727e58b8c73400fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 410/873] python3-pyfiglet: rebuild for Python 3.8.

---
 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 d00b4fda62a..a4a67b12d42 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=1
+revision=2
 archs=noarch
 wrksrc="pyfiglet-${version}"
 build_style="python3-module"

From 7f5bd3a27f56badc9d95d3b2b7a684604262af1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 411/873] python-pyflakes: rebuild for Python 3.8.

---
 srcpkgs/python-pyflakes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyflakes/template b/srcpkgs/python-pyflakes/template
index 86d477c47f2..19229ebb3a4 100644
--- a/srcpkgs/python-pyflakes/template
+++ b/srcpkgs/python-pyflakes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyflakes'
 pkgname=python-pyflakes
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyflakes-${version}"
 build_style=python-module

From a811c56d34b1f53ac8aeca03f5247410137fe8d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 412/873] python-pygame: rebuild for Python 3.8.

---
 srcpkgs/python-pygame/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pygame/template b/srcpkgs/python-pygame/template
index a510333df6e..a900d62dbe3 100644
--- a/srcpkgs/python-pygame/template
+++ b/srcpkgs/python-pygame/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pygame'
 pkgname=python-pygame
 version=1.9.4
-revision=2
+revision=3
 wrksrc="pygame-${version}"
 build_style=python-module
 pycompile_module="pygame"

From e62822b2e5fa56868e80f10a019c7a0d66abbcbd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 413/873] python-pyglet: rebuild for Python 3.8.

---
 srcpkgs/python-pyglet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyglet/template b/srcpkgs/python-pyglet/template
index f8315bdf616..ee6ed16064c 100644
--- a/srcpkgs/python-pyglet/template
+++ b/srcpkgs/python-pyglet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyglet'
 pkgname=python-pyglet
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyglet-${version}"
 build_style=python-module

From 1f0bf2cea3a10c9982132fbe81c5ebd884defa35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 414/873] python3-pykeepass: rebuild for Python 3.8.

---
 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 c0e0fd4db41..135da6fea65 100644
--- a/srcpkgs/python3-pykeepass/template
+++ b/srcpkgs/python3-pykeepass/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pykeepass'
 pkgname=python3-pykeepass
 version=3.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="pykeepass-${version}"
 build_style=python3-module

From f2d7f9a6199d6780975ad9efb639642e96acc8c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 415/873] python3-pykwalify: rebuild for Python 3.8.

---
 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 27bc0c37355..b3727aba651 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pykwalify-${version}"
 build_style=python3-module

From cb348b8cc013bee10cb1adcdd5b9dac8e8f37a83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 416/873] python3-pylast: rebuild for Python 3.8.

---
 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 187b51943a8..60184348d80 100644
--- a/srcpkgs/python3-pylast/template
+++ b/srcpkgs/python3-pylast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylast'
 pkgname=python3-pylast
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylast-${version}"
 build_style=python3-module

From 6629ec0088134c22cfb115f29fd4a90a9b38e7a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 417/873] python3-pylibgen: rebuild for Python 3.8.

---
 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 641bf649c17..540ccb32790 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylibgen-${version}"
 build_style=python3-module

From 953751fa6deeafefea78df4f5ec27ee5c5c9902d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 418/873] python3-pylint: rebuild for Python 3.8.

---
 srcpkgs/python3-pylint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pylint/template b/srcpkgs/python3-pylint/template
index 6c8800069f0..315dbffb3fc 100644
--- a/srcpkgs/python3-pylint/template
+++ b/srcpkgs/python3-pylint/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylint'
 pkgname=python3-pylint
 version=2.3.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="pylint-${version}"
 build_style=python3-module

From 96bc4e17e1f144c3528e0ec3b455d501c2c3efdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 419/873] python-pynacl: rebuild for Python 3.8.

---
 srcpkgs/python-pynacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pynacl/template b/srcpkgs/python-pynacl/template
index 6ead91820b1..7a7fe246821 100644
--- a/srcpkgs/python-pynacl/template
+++ b/srcpkgs/python-pynacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pynacl'
 pkgname=python-pynacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python-module
 pycompile_module="nacl"

From ec1da9dfd353e059b23780a676ef1561f56f9b2e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 420/873] python-pyotp: rebuild for Python 3.8.

---
 srcpkgs/python-pyotp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyotp/template b/srcpkgs/python-pyotp/template
index 54714ee2ebb..b70bd73d4aa 100644
--- a/srcpkgs/python-pyotp/template
+++ b/srcpkgs/python-pyotp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyotp'
 pkgname=python-pyotp
 version=2.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyotp-${version}"
 build_style=python-module

From 3c83515599af94f7483a3e165f03547f9daa2835 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 421/873] python-pyperclip: rebuild for Python 3.8.

---
 srcpkgs/python-pyperclip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyperclip/template b/srcpkgs/python-pyperclip/template
index 512dc8d3dfb..b173f1479a5 100644
--- a/srcpkgs/python-pyperclip/template
+++ b/srcpkgs/python-pyperclip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyperclip'
 pkgname=python-pyperclip
 version=1.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=pyperclip-${version}
 build_style=python-module

From 6d17f7510d6ce4ec430e8bf72567fecdbd521681 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 422/873] python-pyqtgraph: rebuild for Python 3.8.

---
 srcpkgs/python-pyqtgraph/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyqtgraph/template b/srcpkgs/python-pyqtgraph/template
index f90e2b15319..1bea9c2ffdf 100644
--- a/srcpkgs/python-pyqtgraph/template
+++ b/srcpkgs/python-pyqtgraph/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyqtgraph'
 pkgname=python-pyqtgraph
 version=0.10.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${pkgname#*-}-${version}"
 build_style=python-module

From fff21c3dd38242e2992b276e00f6970f96a34293 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 423/873] python-pyrfc3339: rebuild for Python 3.8.

---
 srcpkgs/python-pyrfc3339/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyrfc3339/template b/srcpkgs/python-pyrfc3339/template
index 618e46d1c4b..cd81c4d0624 100644
--- a/srcpkgs/python-pyrfc3339/template
+++ b/srcpkgs/python-pyrfc3339/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyrfc3339'
 pkgname=python-pyrfc3339
 version=1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="pyrfc3339"

From bdfc6ef4d47bd373ff649510c96f640b48da738a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 424/873] python-pyscss: rebuild for Python 3.8.

---
 srcpkgs/python-pyscss/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyscss/template b/srcpkgs/python-pyscss/template
index 1f7d8b7d8cd..1a8e9c44d7d 100644
--- a/srcpkgs/python-pyscss/template
+++ b/srcpkgs/python-pyscss/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyscss'
 pkgname=python-pyscss
 version=1.3.5
-revision=6
+revision=7
 wrksrc="pyScss-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pcre-devel"

From 6bdfad32f6894df0a7f3eb185662fa32228408ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 425/873] python3-pysdl2: rebuild for Python 3.8.

---
 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 d59ea7d7fa2..3efdca5b667 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=1
+revision=2
 archs=noarch
 wrksrc="py-sdl2-rel_${version//./_}"
 build_style=python3-module

From 67dab081767478a600fbc44d5333dc2746a683ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 426/873] python-pyserial: rebuild for Python 3.8.

---
 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 8808e76d206..354be493b16 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=2
+revision=3
 archs=noarch
 wrksrc="pyserial-${version}"
 build_style=python-module

From a6914f6aa35af001fd954260658bed6e1e5df2bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 427/873] python3-pyside2: rebuild for Python 3.8.

---
 srcpkgs/python3-pyside2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pyside2/template b/srcpkgs/python3-pyside2/template
index a5d60b17568..1da3400f239 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.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From deee942f64ef5e0e70f6a45a7f9e3a2593d53add Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 428/873] python3-pysigset: rebuild for Python 3.8.

---
 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 8de87145a09..50d9162ea70 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.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysigset-${version}"
 build_style=python3-module

From 913752d5b84f0054c829fc060939c366bf5b28cb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 429/873] python-pysocks: rebuild for Python 3.8.

---
 srcpkgs/python-pysocks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysocks/template b/srcpkgs/python-pysocks/template
index 68a27819e3d..d9b216aeab8 100644
--- a/srcpkgs/python-pysocks/template
+++ b/srcpkgs/python-pysocks/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysocks'
 pkgname=python-pysocks
 version=1.6.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="PySocks-${version}"
 build_style=python-module

From e256b35c573b66ccaaffbf92ee92ecad250db3c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 430/873] python3-pysol_cards: rebuild for Python 3.8.

---
 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 e03d92fe077..a37429754a2 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.8.6
-revision=1
+revision=2
 wrksrc="pysol_cards-${version}"
 build_style=python3-module
 pycompile_module="pysol_cards"

From d29dab0ddee296649a1f4ace5c33678cc349d6ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 431/873] python-pysrt: rebuild for Python 3.8.

---
 srcpkgs/python-pysrt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysrt/template b/srcpkgs/python-pysrt/template
index 061435a52c7..7e154825bef 100644
--- a/srcpkgs/python-pysrt/template
+++ b/srcpkgs/python-pysrt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysrt'
 pkgname=python-pysrt
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysrt-${version}"
 build_style=python-module

From 4ba7eb802460f8e4e15f1389bebd64237c6f1aec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 432/873] python-pystache: rebuild for Python 3.8.

---
 srcpkgs/python-pystache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pystache/template b/srcpkgs/python-pystache/template
index 13f8b04aa88..c1a5bcd57d9 100644
--- a/srcpkgs/python-pystache/template
+++ b/srcpkgs/python-pystache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pystache'
 pkgname=python-pystache
 version=0.5.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pystache-${version}"
 build_style=python-module

From a6a1d8010f3909cc551f70485efc660b22168f46 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 433/873] python-pyte: rebuild for Python 3.8.

---
 srcpkgs/python-pyte/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyte/template b/srcpkgs/python-pyte/template
index 43b708adc66..76efbec91d1 100644
--- a/srcpkgs/python-pyte/template
+++ b/srcpkgs/python-pyte/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyte'
 pkgname=python-pyte
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyte-${version}"
 build_style=python-module

From 03679e357b0bdbd90ddbb6deba5693594ef9d592 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 434/873] python-pytest: rebuild for Python 3.8.

---
 srcpkgs/python-pytest/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest/template b/srcpkgs/python-pytest/template
index 6481f21e677..d5c246599c6 100644
--- a/srcpkgs/python-pytest/template
+++ b/srcpkgs/python-pytest/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest'
 pkgname=python-pytest
 version=3.7.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From d8ff8818fa4f90c63cf468feb2bba5d8b9dca026 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 435/873] python3-pytest-asyncio: rebuild for Python 3.8.

---
 srcpkgs/python3-pytest-asyncio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template
index bd104f99e2c..0c90d33a9e5 100644
--- a/srcpkgs/python3-pytest-asyncio/template
+++ b/srcpkgs/python3-pytest-asyncio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pytest-asyncio'
 pkgname=python3-pytest-asyncio
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytest-asyncio-${version}"
 build_style=python3-module

From 8bdff4905b1d2e832656b8dde532b566e516752c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 436/873] python-pytest-fixture-config: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-fixture-config/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-fixture-config/template b/srcpkgs/python-pytest-fixture-config/template
index cd3e38a592a..14255af8a35 100644
--- a/srcpkgs/python-pytest-fixture-config/template
+++ b/srcpkgs/python-pytest-fixture-config/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-fixture-config'
 pkgname=python-pytest-fixture-config
 version=1.3.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 89c93c6cebe4d9e57d61a6e1c0d1782514496073 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 437/873] python-pytest-mock: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-mock/template b/srcpkgs/python-pytest-mock/template
index f3dc85810b6..240e8773aaa 100644
--- a/srcpkgs/python-pytest-mock/template
+++ b/srcpkgs/python-pytest-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-mock'
 pkgname=python-pytest-mock
 version=1.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From e10ffc843814c368a7fd76e24e6afa8512ce198c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 438/873] python-pytz: rebuild for Python 3.8.

---
 srcpkgs/python-pytz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytz/template b/srcpkgs/python-pytz/template
index d6becf829a7..40f582962c8 100644
--- a/srcpkgs/python-pytz/template
+++ b/srcpkgs/python-pytz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytz'
 pkgname=python-pytz
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytz-${version}"
 build_style=python-module

From 562767d788b8e163bcde2dbd45de9eca2899bd90 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 439/873] python-pyudev: rebuild for Python 3.8.

---
 srcpkgs/python-pyudev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyudev/template b/srcpkgs/python-pyudev/template
index d059b7882a2..2ec53088636 100644
--- a/srcpkgs/python-pyudev/template
+++ b/srcpkgs/python-pyudev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyudev'
 pkgname=python-pyudev
 version=0.21.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyudev-${version}"
 build_style=python-module

From bb91a3d4616a0e9dbf1a34b271d62527a455f4ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 440/873] python3-pyx: rebuild for Python 3.8.

---
 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 87608c43428..89963bed89f 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.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="PyX-${version}"
 build_style=python3-module

From caa3ad83cde6d2b66687ae0ac2bb87dfd8eb100f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 441/873] python-pyzbar: rebuild for Python 3.8.

---
 srcpkgs/python-pyzbar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzbar/template b/srcpkgs/python-pyzbar/template
index 06ae37a5708..35b568eb4e6 100644
--- a/srcpkgs/python-pyzbar/template
+++ b/srcpkgs/python-pyzbar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzbar'
 pkgname=python-pyzbar
 version=0.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyzbar-${version}"
 build_style=python-module

From 83e0ba8fd12c3f07b4f3c2f8109ff0cd9a69353b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 442/873] python-pyzmq: rebuild for Python 3.8.

---
 srcpkgs/python-pyzmq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzmq/template b/srcpkgs/python-pyzmq/template
index 859aab5983d..27dbe29e516 100644
--- a/srcpkgs/python-pyzmq/template
+++ b/srcpkgs/python-pyzmq/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzmq'
 pkgname=python-pyzmq
 version=18.0.1
-revision=1
+revision=2
 wrksrc="pyzmq-${version}"
 build_style=python-module
 make_build_args="--zmq=${XBPS_CROSS_BASE}/usr"

From 2d71150f372801e322d8ee5f31b2bc67795fc3a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 443/873] python-qrcode: rebuild for Python 3.8.

---
 srcpkgs/python-qrcode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-qrcode/template b/srcpkgs/python-qrcode/template
index 9deb485855f..bf35c82757e 100644
--- a/srcpkgs/python-qrcode/template
+++ b/srcpkgs/python-qrcode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-qrcode'
 pkgname=python-qrcode
 version=6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="qrcode-${version}"
 build_style=python-module

From 55eeefa7bb378b38024ce5c57d228c5d2c24875f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 444/873] python-random2: rebuild for Python 3.8.

---
 srcpkgs/python-random2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-random2/template b/srcpkgs/python-random2/template
index 92f36fee139..2603cae3584 100644
--- a/srcpkgs/python-random2/template
+++ b/srcpkgs/python-random2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-random2'
 pkgname=python-random2
 version=1.0.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="random2-${version}"
 build_style=python-module

From 4aa520f994404a836b859a95bf53280ec662d779 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 445/873] python-rarfile: rebuild for Python 3.8.

---
 srcpkgs/python-rarfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rarfile/template b/srcpkgs/python-rarfile/template
index e0c597c1fb1..e3b6f3e2887 100644
--- a/srcpkgs/python-rarfile/template
+++ b/srcpkgs/python-rarfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rarfile'
 pkgname=python-rarfile
 version=3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="rarfile-${version}"
 build_style=python-module

From 77edc413dd0a2b7d7423d47946137d1db7452b91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 446/873] python-raven: rebuild for Python 3.8.

---
 srcpkgs/python-raven/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-raven/template b/srcpkgs/python-raven/template
index eec4e5f49b6..87382c21602 100644
--- a/srcpkgs/python-raven/template
+++ b/srcpkgs/python-raven/template
@@ -1,7 +1,7 @@
 # Template file for 'python-raven'
 pkgname=python-raven
 version=6.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="raven-${version}"
 build_style=python-module

From 0fd244bc29d49109b475295b68c11c496626bd43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 447/873] python-rdflib: rebuild for Python 3.8.

---
 srcpkgs/python-rdflib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rdflib/template b/srcpkgs/python-rdflib/template
index 0512abb0e5a..f676dedfb2f 100644
--- a/srcpkgs/python-rdflib/template
+++ b/srcpkgs/python-rdflib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rdflib'
 pkgname=python-rdflib
 version=4.2.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="rdflib-${version}"
 build_style=python-module

From 52682c54b0a7808306dcb6c0c9af5436d056d6a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 448/873] python-readability-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-readability-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-readability-lxml/template b/srcpkgs/python-readability-lxml/template
index ddf0602b730..19dadaa336f 100644
--- a/srcpkgs/python-readability-lxml/template
+++ b/srcpkgs/python-readability-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-readability-lxml'
 pkgname=python-readability-lxml
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="readability-lxml-${version}"
 build_style=python-module

From 5b239aeb5613465b0d414e14b8b37a83f65232fc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 449/873] python3-readlike: rebuild for Python 3.8.

---
 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 cbba969b076..43159962442 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=1
+revision=2
 archs=noarch
 wrksrc=readlike-${version}
 build_style=python3-module

From 10ff7da432e0f1563ed8c4feb921648f20e75246 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 450/873] python-rebulk: rebuild for Python 3.8.

---
 srcpkgs/python-rebulk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rebulk/template b/srcpkgs/python-rebulk/template
index 1cf6cf623c8..8f9c2621304 100644
--- a/srcpkgs/python-rebulk/template
+++ b/srcpkgs/python-rebulk/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rebulk'
 pkgname=python-rebulk
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rebulk-${version}"
 build_style=python-module

From b720f89f9fb6ecb79aa43ff92f151239049cb9c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 451/873] python-redis: rebuild for Python 3.8.

---
 srcpkgs/python-redis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-redis/template b/srcpkgs/python-redis/template
index f57c0d841b3..b7e773fde54 100644
--- a/srcpkgs/python-redis/template
+++ b/srcpkgs/python-redis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-redis'
 pkgname=python-redis
 version=2.10.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="redis-${version}"
 build_style=python-module

From 90d47f03a3f7a55f623c0b5019b0b58b6169aae5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 452/873] python-regex: rebuild for Python 3.8.

---
 srcpkgs/python-regex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-regex/template b/srcpkgs/python-regex/template
index 33e99b0127b..7a624db9477 100644
--- a/srcpkgs/python-regex/template
+++ b/srcpkgs/python-regex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-regex'
 pkgname=python-regex
 version=2019.08.19
-revision=1
+revision=2
 wrksrc="regex-${version}"
 build_style=python-module
 pycompile_module="_regex_core.py regex.py test_regex.py"

From e132fc559392a2f2a5268100218ef2061759c476 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 453/873] python-rencode: rebuild for Python 3.8.

---
 srcpkgs/python-rencode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rencode/template b/srcpkgs/python-rencode/template
index 7176038a60a..021e1d414b8 100644
--- a/srcpkgs/python-rencode/template
+++ b/srcpkgs/python-rencode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rencode'
 pkgname=python-rencode
 version=1.0.6
-revision=2
+revision=3
 wrksrc="rencode-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"

From 635743944483bd5fdbf4a909ef4874532f1035b9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 454/873] python-reportlab: rebuild for Python 3.8.

---
 srcpkgs/python-reportlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-reportlab/template b/srcpkgs/python-reportlab/template
index 7f153d65a2a..3915767b6d3 100644
--- a/srcpkgs/python-reportlab/template
+++ b/srcpkgs/python-reportlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-reportlab'
 pkgname=python-reportlab
 version=3.5.23
-revision=1
+revision=2
 wrksrc="reportlab-${version}"
 build_style=python-module
 pycompile_module="reportlab"

From 4a6d7b1e5e0d64a6834cc210da11806cbe217453 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 455/873] python-requests: rebuild for Python 3.8.

---
 srcpkgs/python-requests/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests/template b/srcpkgs/python-requests/template
index fc806b611e9..73d2d5945ef 100644
--- a/srcpkgs/python-requests/template
+++ b/srcpkgs/python-requests/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests'
 pkgname=python-requests
 version=2.22.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-${version}"
 build_style=python-module

From 61f6560b710773eab8296ef28bd943f5dc0d290d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 456/873] python-requests-mock: rebuild for Python 3.8.

---
 srcpkgs/python-requests-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-mock/template b/srcpkgs/python-requests-mock/template
index 5b89b5ed3b8..2d1410fcd1b 100644
--- a/srcpkgs/python-requests-mock/template
+++ b/srcpkgs/python-requests-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-mock'
 pkgname=python-requests-mock
 version=1.5.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="requests-mock-${version}"
 build_style=python-module

From f4f04d85ce7abb39fbbf306bc3c1dcfc467cdf14 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 457/873] python-requests-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-requests-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-oauthlib/template b/srcpkgs/python-requests-oauthlib/template
index b011ea17a36..8cd838090a7 100644
--- a/srcpkgs/python-requests-oauthlib/template
+++ b/srcpkgs/python-requests-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-oauthlib'
 pkgname=python-requests-oauthlib
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5853f21b57bde4c4e66293b132fba4fc03804518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 458/873] python-requests-toolbelt: rebuild for Python 3.8.

---
 srcpkgs/python-requests-toolbelt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-toolbelt/template b/srcpkgs/python-requests-toolbelt/template
index 3ba66a0a007..13a81586221 100644
--- a/srcpkgs/python-requests-toolbelt/template
+++ b/srcpkgs/python-requests-toolbelt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-toolbelt'
 pkgname=python-requests-toolbelt
 version=0.9.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 14171483829854051f0c8030562c1052094d78c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 459/873] python3-requests-unixsocket: rebuild for Python 3.8.

---
 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 ec9e1074566..fd389ec2d13 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-unixsocket-${version}"
 build_style=python3-module

From 9b589212b423bd7e2dfbb7ab7ef63c65b9dd07cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 460/873] python-rfc6555: rebuild for Python 3.8.

---
 srcpkgs/python-rfc6555/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rfc6555/template b/srcpkgs/python-rfc6555/template
index c3babc25b93..2522872cc32 100644
--- a/srcpkgs/python-rfc6555/template
+++ b/srcpkgs/python-rfc6555/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rfc6555'
 pkgname=python-rfc6555
 version=0.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rfc6555-${version}"
 build_style=python-module

From a399a96d8293a9387f5648001a03178d2550059b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 461/873] python-ripe-atlas-cousteau: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-cousteau/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-cousteau/template b/srcpkgs/python-ripe-atlas-cousteau/template
index ac16300fe3d..72f32a9da0d 100644
--- a/srcpkgs/python-ripe-atlas-cousteau/template
+++ b/srcpkgs/python-ripe-atlas-cousteau/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-cousteau'
 pkgname=python-ripe-atlas-cousteau
 version=1.4.2
-revision=1
+revision=2
 build_style=python-module
 archs=noarch
 pycompile_module="ripe/atlas/cousteau"

From 4c2ddc085f45f52b438013ad3d494f8f59859504 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 462/873] python-ripe-atlas-sagan: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-sagan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-sagan/template b/srcpkgs/python-ripe-atlas-sagan/template
index 60a9b883b93..22abb48af46 100644
--- a/srcpkgs/python-ripe-atlas-sagan/template
+++ b/srcpkgs/python-ripe-atlas-sagan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-sagan'
 pkgname=python-ripe-atlas-sagan
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ripe.atlas.sagan-${version}"
 build_style=python-module

From 10e7db3d51d8370e317d667edc372d0fcfd5bad9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 463/873] python-rsa: rebuild for Python 3.8.

---
 srcpkgs/python-rsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rsa/template b/srcpkgs/python-rsa/template
index a4ae59846ff..11e9bf2c60d 100644
--- a/srcpkgs/python-rsa/template
+++ b/srcpkgs/python-rsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rsa'
 pkgname=python-rsa
 version=4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a3bbda3918c5b4bb668860ba5bbd81f83f1a4925 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 464/873] python3-rsistent: rebuild for Python 3.8.

---
 srcpkgs/python3-rsistent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-rsistent/template b/srcpkgs/python3-rsistent/template
index 13019f472cd..7897e107b2b 100644
--- a/srcpkgs/python3-rsistent/template
+++ b/srcpkgs/python3-rsistent/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-rsistent'
 pkgname=python3-rsistent
 version=0.15.4
-revision=1
+revision=2
 wrksrc="pyrsistent-${version}"
 build_style=python3-module
 pycompile_module="pyrsistent"

From 7d4c9082b7051c6ce978ca21f34f138189c7f2d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 465/873] python3-rss2email: rebuild for Python 3.8.

---
 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 d07984d33d8..34e7d4e65a6 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.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="rss2email-${version}"
 build_style=python3-module

From a0a5e6df8a02d98f37c3c22c043adb325c8a8a62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 466/873] python-ruamel.yaml: rebuild for Python 3.8.

---
 srcpkgs/python-ruamel.yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ruamel.yaml/template b/srcpkgs/python-ruamel.yaml/template
index d86ddfc67c9..789f8a7acd2 100644
--- a/srcpkgs/python-ruamel.yaml/template
+++ b/srcpkgs/python-ruamel.yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ruamel.yaml'
 pkgname=python-ruamel.yaml
 version=0.15.92
-revision=1
+revision=2
 wrksrc="ruamel.yaml-${version}"
 build_style=python-module
 pycompile_module="ruamel/yaml"

From 6b579f083949bbd67a78d66ae983de1f36f03a82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 467/873] python3-s-tui: rebuild for Python 3.8.

---
 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 4c7db6ff3c9..85a945b1b09 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=0.8.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="s-tui-${version}"
 build_style=python3-module

From 5cc92799a690ba40dd26192e3f0182e07089683a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 468/873] python-s3transfer: rebuild for Python 3.8.

---
 srcpkgs/python-s3transfer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-s3transfer/template b/srcpkgs/python-s3transfer/template
index e306c3c3b1a..dd92eeff657 100644
--- a/srcpkgs/python-s3transfer/template
+++ b/srcpkgs/python-s3transfer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-s3transfer'
 pkgname=python-s3transfer
 version=0.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="s3transfer-${version}"
 build_style=python-module

From 2ec5386706a289e510b5b03e33cf74e0a23596a6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 469/873] python3-saml2: rebuild for Python 3.8.

---
 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 e94602a82ea..c0dabb5e9d0 100644
--- a/srcpkgs/python3-saml2/template
+++ b/srcpkgs/python3-saml2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-saml2'
 pkgname=python3-saml2
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysaml2-${version}"
 build_style=python3-module

From e856d28eb580f0af5442d11d24ffacdd7fade12b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 470/873] python-scandir: rebuild for Python 3.8.

---
 srcpkgs/python-scandir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scandir/template b/srcpkgs/python-scandir/template
index 774fac91b8f..b02fe6d0281 100644
--- a/srcpkgs/python-scandir/template
+++ b/srcpkgs/python-scandir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scandir'
 pkgname=python-scandir
 version=1.10.0
-revision=2
+revision=3
 wrksrc="scandir-${version}"
 build_style=python-module
 pycompile_module="scandir.py"

From 3b5e1eeb2ce0519b51592cebffc1bd89dce0f96c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 471/873] python3-scard: rebuild for Python 3.8.

---
 srcpkgs/python3-scard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scard/template b/srcpkgs/python3-scard/template
index 793f144a74b..279419ac3e3 100644
--- a/srcpkgs/python3-scard/template
+++ b/srcpkgs/python3-scard/template
@@ -2,7 +2,7 @@
 pkgname=python3-scard
 _pkgname=pyscard
 version=1.9.8
-revision=1
+revision=2
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module
 pycompile_module=smartcard

From f62ba61eaebce26c267e2d453d8e0ea6e005a285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 472/873] python3-scikit-learn: rebuild for Python 3.8.

---
 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 73799b9f420..8ac82167832 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.20.4
-revision=1
+revision=2
 wrksrc="scikit-learn-${version}"
 build_style=python3-module
 pycompile_module="sklearn"

From ccf4f6aa1bd0ba8aaf9499dcacb1320a77221004 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 473/873] python3-scipy: rebuild for Python 3.8.

---
 srcpkgs/python3-scipy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scipy/template b/srcpkgs/python3-scipy/template
index 291ac3734f1..2cef9ac33e1 100644
--- a/srcpkgs/python3-scipy/template
+++ b/srcpkgs/python3-scipy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-scipy'
 pkgname=python3-scipy
 version=1.3.1
-revision=1
+revision=2
 wrksrc="scipy-${version}"
 build_style=python3-module
 pycompile_module="scipy"

From 04cbe0c6403a4ecd9cda36e10bba5d06e472823d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 474/873] python-scour: rebuild for Python 3.8.

---
 srcpkgs/python-scour/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scour/template b/srcpkgs/python-scour/template
index b78cf37f057..0db5b157ce1 100644
--- a/srcpkgs/python-scour/template
+++ b/srcpkgs/python-scour/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scour'
 pkgname=python-scour
 version=0.37
-revision=1
+revision=2
 archs=noarch
 wrksrc="scour-${version}"
 build_style=python-module

From 0fd08871993ece59d562feb8472d05249ae1d76a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 475/873] python3-scruffy: rebuild for Python 3.8.

---
 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 e797b110f42..62a21a74eca 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="scruffy-${version}"
 build_style=python3-module

From 65cb259cf8f67f78fe484e4423fe0006aae17045 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 476/873] python-send2trash: rebuild for Python 3.8.

---
 srcpkgs/python-send2trash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-send2trash/template b/srcpkgs/python-send2trash/template
index 49c3a2b3d77..94f56545695 100644
--- a/srcpkgs/python-send2trash/template
+++ b/srcpkgs/python-send2trash/template
@@ -1,7 +1,7 @@
 # Template file for 'python-send2trash'
 pkgname=python-send2trash
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="send2trash-${version}"
 build_style=python-module

From 04a4413d706d49df8a415b9714091b0e4bb0fdfa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 477/873] python-serpent: rebuild for Python 3.8.

---
 srcpkgs/python-serpent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-serpent/template b/srcpkgs/python-serpent/template
index b60d390c1ab..a40f0d44515 100644
--- a/srcpkgs/python-serpent/template
+++ b/srcpkgs/python-serpent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-serpent'
 pkgname=python-serpent
 version=1.28
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38131f811a874463c71c55408ef6e629166a5b8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 478/873] python-service_identity: rebuild for Python 3.8.

---
 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 eae084c858f..e21a1520a75 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=1
+revision=2
 archs=noarch
 wrksrc="service_identity-${version}"
 build_style=python-module

From 9a538d41d8b848da9da43cd5d6f80428b7208be8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 479/873] setconf: rebuild for Python 3.8.

---
 srcpkgs/setconf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/setconf/template b/srcpkgs/setconf/template
index a3d22376a5b..1911c558c77 100644
--- a/srcpkgs/setconf/template
+++ b/srcpkgs/setconf/template
@@ -1,7 +1,7 @@
 # Template file for 'setconf'
 pkgname=setconf
 version=0.7.6
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="setconf.py"

From aacff3894cc42a49ab1becc06f64f23197302443 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 480/873] python-setproctitle: rebuild for Python 3.8.

---
 srcpkgs/python-setproctitle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setproctitle/template b/srcpkgs/python-setproctitle/template
index d0d41ae888d..c47e3a9db53 100644
--- a/srcpkgs/python-setproctitle/template
+++ b/srcpkgs/python-setproctitle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setproctitle'
 pkgname=python-setproctitle
 version=1.1.10
-revision=5
+revision=6
 wrksrc="setproctitle-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e2b8c2ac8d355cdb0f221b80ab39e2ef92beb3e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 481/873] python-setuptools: rebuild for Python 3.8.

---
 srcpkgs/python-setuptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setuptools/template b/srcpkgs/python-setuptools/template
index 382a9b45bcd..a172f8e8e09 100644
--- a/srcpkgs/python-setuptools/template
+++ b/srcpkgs/python-setuptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setuptools'
 pkgname=python-setuptools
 version=41.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python-module

From 5feb793ba33633318f41644f84b5ffd5428e2d4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 482/873] python-sh: rebuild for Python 3.8.

---
 srcpkgs/python-sh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sh/template b/srcpkgs/python-sh/template
index 1826986b25c..76985dc1f01 100644
--- a/srcpkgs/python-sh/template
+++ b/srcpkgs/python-sh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sh'
 pkgname=python-sh
 version=1.12.14
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From f0cfe151eea6fcf86d1196385a1ac0057a65ab48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 483/873] python-shapely: rebuild for Python 3.8.

---
 srcpkgs/python-shapely/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-shapely/template b/srcpkgs/python-shapely/template
index 25cc875a02c..114726838f9 100644
--- a/srcpkgs/python-shapely/template
+++ b/srcpkgs/python-shapely/template
@@ -1,7 +1,7 @@
 # Template file for 'python-shapely'
 pkgname=python-shapely
 version=1.7a1
-revision=2
+revision=3
 wrksrc="Shapely-${version}"
 build_style=python-module
 pycompile_module="shapely"

From 0908618383925caf43243de8097dbf6491149f8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 484/873] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index d552ce8432d..1f9c8043b46 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=4
+revision=5
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From 14af86f199e28c6eae170b10c1c662bd0184b73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 485/873] shiboken2: rebuild for Python 3.8.

---
 srcpkgs/shiboken2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken2/template b/srcpkgs/shiboken2/template
index 394d9ba4f94..a08edf3f2a0 100644
--- a/srcpkgs/shiboken2/template
+++ b/srcpkgs/shiboken2/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken2'
 pkgname=shiboken2
 version=5.11.2
-revision=2
+revision=3
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From 9ea535c3baf70c69a2bbe07d057742af1877d648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 486/873] python3-shodan: rebuild for Python 3.8.

---
 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 858a0b921f8..033b5a269ff 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.19.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="shodan-python-${version}"
 build_style=python3-module

From 76805ea236fc7f4ecd5948a492413602efff91e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 487/873] python3-signedjson: rebuild for Python 3.8.

---
 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 6f6fb339fd2..d8f9b06b22f 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-signedjson-${version}"
 build_style=python3-module

From 12e9d209470a13cdd9063e5544ffd00c5952138e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 488/873] python-simplebayes: rebuild for Python 3.8.

---
 srcpkgs/python-simplebayes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplebayes/template b/srcpkgs/python-simplebayes/template
index e76b94ad549..6c95222fa7e 100644
--- a/srcpkgs/python-simplebayes/template
+++ b/srcpkgs/python-simplebayes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplebayes'
 pkgname=python-simplebayes
 version=1.5.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="simplebayes-${version}"
 build_style=python-module

From d1ad830144a3e370bbac6e82affb1d06805dfdbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 489/873] python-simplegeneric: rebuild for Python 3.8.

---
 srcpkgs/python-simplegeneric/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplegeneric/template b/srcpkgs/python-simplegeneric/template
index 3dc4e1dda94..f352387fa1f 100644
--- a/srcpkgs/python-simplegeneric/template
+++ b/srcpkgs/python-simplegeneric/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplegeneric'
 pkgname=python-simplegeneric
 version=0.8.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="simplegeneric-${version}"
 build_style=python-module

From f6d990c1a1436b305f8b5af6f58c1f6430d96dc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 490/873] python-simplejson: rebuild for Python 3.8.

---
 srcpkgs/python-simplejson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplejson/template b/srcpkgs/python-simplejson/template
index b453ae952ba..1b8523d0d46 100644
--- a/srcpkgs/python-simplejson/template
+++ b/srcpkgs/python-simplejson/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplejson'
 pkgname=python-simplejson
 version=3.16.1
-revision=2
+revision=3
 wrksrc="simplejson-${version}"
 build_style=python-module
 pycompile_module="simplejson"

From b6f0878a2894ffdd731251a64a26cb1ddf40038a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 491/873] sip: rebuild for Python 3.8.

---
 srcpkgs/sip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sip/template b/srcpkgs/sip/template
index 9d09b823bb6..0e8a81000b1 100644
--- a/srcpkgs/sip/template
+++ b/srcpkgs/sip/template
@@ -1,7 +1,7 @@
 # Template file for 'sip'
 pkgname=sip
 version=4.19.18
-revision=1
+revision=2
 wrksrc="sip-${version}"
 hostmakedepends="python-devel python3-devel"
 makedepends="${hostmakedepends}"

From 5f24e47fb2b044495bbf0ee108d18220ad3b3bd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 492/873] python-six: rebuild for Python 3.8.

---
 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 c6d91f5ece9..a25323caa2a 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.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="six-${version}"
 build_style=python-module

From 09784cf129c5a66b731964fcda119a53dd9dbb7b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 493/873] python3-slixmpp: rebuild for Python 3.8.

---
 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 db367c3d0ab..cbbde6f394b 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.4.2
-revision=1
+revision=2
 wrksrc="slixmpp-${version}"
 build_style=python3-module
 pycompile_module="slixmpp"

From 5e4eb88ccd16957dc33f6923ae3a72151385e9ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 494/873] python3-slugify: rebuild for Python 3.8.

---
 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 44d37f2aed7..012bb98f063 100644
--- a/srcpkgs/python3-slugify/template
+++ b/srcpkgs/python3-slugify/template
@@ -3,7 +3,7 @@ pkgname=python3-slugify
 # Please don't update. Only required by Transifx-client,
 # doesn't work with newer versions
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-slugify-${version}"
 build_style=python3-module

From 3673d2d0b57421bb69e3ed7407630c26169fab96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 495/873] python-smbc: rebuild for Python 3.8.

---
 srcpkgs/python-smbc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smbc/template b/srcpkgs/python-smbc/template
index abc745f8982..6a280139a25 100644
--- a/srcpkgs/python-smbc/template
+++ b/srcpkgs/python-smbc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smbc'
 pkgname=python-smbc
 version=1.0.16
-revision=1
+revision=2
 wrksrc="pysmbc-${version}"
 build_style=python-module
 pycompile_module="smbc"

From 2e7eca88dff9a562419fb01bfafbdaf55a6c2bd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 496/873] python-smmap: rebuild for Python 3.8.

---
 srcpkgs/python-smmap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smmap/template b/srcpkgs/python-smmap/template
index 4aa0c37ff40..8c8ea952285 100644
--- a/srcpkgs/python-smmap/template
+++ b/srcpkgs/python-smmap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smmap'
 pkgname=python-smmap
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="smmap-${version}"
 build_style=python-module

From fd787d6092a892885c1a37ff836d919c3268746b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 497/873] python-snakeoil: rebuild for Python 3.8.

---
 srcpkgs/python-snakeoil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snakeoil/template b/srcpkgs/python-snakeoil/template
index 9c98461c555..79e964d9254 100644
--- a/srcpkgs/python-snakeoil/template
+++ b/srcpkgs/python-snakeoil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snakeoil'
 pkgname=python-snakeoil
 version=0.7.5
-revision=2
+revision=3
 wrksrc="snakeoil-${version}"
 build_style=python-module
 pycompile_module="snakeoil"

From c023c48bda41f4e9b16718923037b0abc4c9cc57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 498/873] python-snappy: rebuild for Python 3.8.

---
 srcpkgs/python-snappy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snappy/template b/srcpkgs/python-snappy/template
index ac386f64fae..b1870cbe681 100644
--- a/srcpkgs/python-snappy/template
+++ b/srcpkgs/python-snappy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snappy'
 pkgname=python-snappy
 version=0.5.4
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="snappy"
 hostmakedepends="python-setuptools python3-setuptools"

From cf3b5c203b490e3aa45e74d0cef8b0d0c4d9cbd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 499/873] python-snowballstemmer: rebuild for Python 3.8.

---
 srcpkgs/python-snowballstemmer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snowballstemmer/template b/srcpkgs/python-snowballstemmer/template
index 6c21632cffa..221478860e5 100644
--- a/srcpkgs/python-snowballstemmer/template
+++ b/srcpkgs/python-snowballstemmer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snowballstemmer'
 pkgname=python-snowballstemmer
 version=1.2.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="snowballstemmer-${version}"
 build_style=python-module

From ebbd083848ced4227417bedacb81db1e46b3b0d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 500/873] python-socketIO-client: rebuild for Python 3.8.

---
 srcpkgs/python-socketIO-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-socketIO-client/template b/srcpkgs/python-socketIO-client/template
index 32fdac4117d..9495d7cf40b 100644
--- a/srcpkgs/python-socketIO-client/template
+++ b/srcpkgs/python-socketIO-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-socketIO-client'
 pkgname=python-socketIO-client
 version=0.7.2
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="socketIO_client"

From bf4912c1b4d342f253c99ee2ff30408cc72ef150 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 501/873] python3-sortedcontainers: rebuild for Python 3.8.

---
 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 2b531ded9b6..41d87d4ebd0 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.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="sortedcontainers-${version}"
 build_style=python3-module

From d111b9221a51cf160ffadb598d8ab186bac3562f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 502/873] python-soupsieve: rebuild for Python 3.8.

---
 srcpkgs/python-soupsieve/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-soupsieve/template b/srcpkgs/python-soupsieve/template
index 586553ca759..63b65c5910f 100644
--- a/srcpkgs/python-soupsieve/template
+++ b/srcpkgs/python-soupsieve/template
@@ -1,7 +1,7 @@
 # Template file for 'python-soupsieve'
 pkgname=python-soupsieve
 version=1.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="soupsieve-${version}"
 build_style=python-module

From 505955408532e39107891c66bb40c986d8a5da3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 503/873] python3-spake2: rebuild for Python 3.8.

---
 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 ff83afed1d6..dc0cdced747 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=1
+revision=2
 archs=noarch
 wrksrc="python-spake2-${version}"
 build_style=python3-module

From ed28cd6c33b5a607891182e27d4edc4b33e42c75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 504/873] python-sphinx_rtd_theme: rebuild for Python 3.8.

---
 srcpkgs/python-sphinx_rtd_theme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinx_rtd_theme/template b/srcpkgs/python-sphinx_rtd_theme/template
index 90def1c9d1d..ebd4f13da8f 100644
--- a/srcpkgs/python-sphinx_rtd_theme/template
+++ b/srcpkgs/python-sphinx_rtd_theme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinx_rtd_theme'
 pkgname=python-sphinx_rtd_theme
 version=0.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinx_rtd_theme-${version}"
 build_style=python-module

From dc5c184f3eb8653ed7620ead5c8c28a67daed07d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 505/873] python-sphinxcontrib: rebuild for Python 3.8.

---
 srcpkgs/python-sphinxcontrib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib/template b/srcpkgs/python-sphinxcontrib/template
index ce3befc56d7..c6789cc77f5 100644
--- a/srcpkgs/python-sphinxcontrib/template
+++ b/srcpkgs/python-sphinxcontrib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib'
 pkgname=python-sphinxcontrib
 version=1.0
-revision=2
+revision=3
 archs=noarch
 create_wrksrc=yes
 pycompile_module="sphinxcontrib"

From 044129ada15eeb9695b554976702e8af049dcfd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 506/873] python-sphinxcontrib-websupport: rebuild for Python
 3.8.

---
 srcpkgs/python-sphinxcontrib-websupport/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib-websupport/template b/srcpkgs/python-sphinxcontrib-websupport/template
index 2236e50b25b..5387dec6519 100644
--- a/srcpkgs/python-sphinxcontrib-websupport/template
+++ b/srcpkgs/python-sphinxcontrib-websupport/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib-websupport'
 pkgname=python-sphinxcontrib-websupport
 version=1.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinxcontrib-websupport-${version}"
 build_style=python-module

From d4fb3b78447ca7349e0a94033b436c3e0caa5dc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 507/873] python-sqlalchemy-migrate: rebuild for Python 3.8.

---
 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 cfdf6166695..bb002660c0f 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=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 863a48d9543b2461c699350ad32bb2ae925e30c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 508/873] python-sqlparse: rebuild for Python 3.8.

---
 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 29a477db392..0f8c6f8ea2e 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=1
+revision=2
 archs=noarch
 wrksrc="sqlparse-${version}"
 build_style=python-module

From b477355bf26b723b8ab7cab61902be1e4aaee7bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 509/873] python-stem: rebuild for Python 3.8.

---
 srcpkgs/python-stem/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index e04ae0a848c..e16e79d84bb 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stem'
 pkgname=python-stem
 version=1.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stem-${version/b/}"
 build_style=python-module

From 82d435bdfc12ea7b4a3dabd17da5113470bffe26 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 510/873] python-stevedore: rebuild for Python 3.8.

---
 srcpkgs/python-stevedore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stevedore/template b/srcpkgs/python-stevedore/template
index 281538211af..4f781304d3f 100644
--- a/srcpkgs/python-stevedore/template
+++ b/srcpkgs/python-stevedore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stevedore'
 pkgname=python-stevedore
 version=1.30.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stevedore-${version}"
 build_style=python-module

From 2afe8f7a4ce71437484d9258f44ead34ae2f6647 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 511/873] python-stormssh: rebuild for Python 3.8.

---
 srcpkgs/python-stormssh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stormssh/template b/srcpkgs/python-stormssh/template
index 250e838e582..11f63f67bba 100644
--- a/srcpkgs/python-stormssh/template
+++ b/srcpkgs/python-stormssh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stormssh'
 pkgname=python-stormssh
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=storm-${version}
 build_style=python-module

From 754addaa6845cd505b5d744fa4e54a66dba9c4ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 512/873] python-subliminal: rebuild for Python 3.8.

---
 srcpkgs/python-subliminal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-subliminal/template b/srcpkgs/python-subliminal/template
index 035ca844880..216c11bb4c0 100644
--- a/srcpkgs/python-subliminal/template
+++ b/srcpkgs/python-subliminal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-subliminal'
 pkgname=python-subliminal
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="subliminal-${version}"
 build_style=python-module

From da488d7b04fb3b00046be4293c33ae0809dad8e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 513/873] python-sympy: rebuild for Python 3.8.

---
 srcpkgs/python-sympy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sympy/template b/srcpkgs/python-sympy/template
index 21d8cf69840..d41c8a392b0 100644
--- a/srcpkgs/python-sympy/template
+++ b/srcpkgs/python-sympy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sympy'
 pkgname=python-sympy
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="sympy-${version}"
 build_style=python-module

From 78857098e3058d7f0df7ece8be24b84196d16921 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 514/873] python-tables: rebuild for Python 3.8.

---
 srcpkgs/python-tables/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tables/template b/srcpkgs/python-tables/template
index 644ae3d1a35..5f61fe8fb88 100644
--- a/srcpkgs/python-tables/template
+++ b/srcpkgs/python-tables/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tables'
 pkgname=python-tables
 version=3.5.2
-revision=1
+revision=2
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="tables"

From 45955cd565bccabbc642dce6684af05ad7651ba5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 515/873] python3-tabulate: rebuild for Python 3.8.

---
 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 19b61edd88c..6f142077300 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="tabulate-${version}"
 build_style=python3-module

From 285f369cadcf0d14f66db8045bb3fb979e69937f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 516/873] python-tempita: rebuild for Python 3.8.

---
 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 9e7123fbd9d..c1c75ee1cac 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=3
+revision=4
 archs=noarch
 wrksrc="Tempita-${version}"
 build_style=python-module

From efa04f85df83993e48813e00587c05cd6c722387 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 517/873] python-tempora: rebuild for Python 3.8.

---
 srcpkgs/python-tempora/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tempora/template b/srcpkgs/python-tempora/template
index fa1cbd4fbd1..866d163f367 100644
--- a/srcpkgs/python-tempora/template
+++ b/srcpkgs/python-tempora/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tempora'
 pkgname=python-tempora
 version=1.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tempora-${version}"
 build_style=python-module

From 783b09196fc04d62a7e7a220ffffc941acedfeeb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 518/873] python-termcolor: rebuild for Python 3.8.

---
 srcpkgs/python-termcolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-termcolor/template b/srcpkgs/python-termcolor/template
index 877e5e59d9b..73c18fc79eb 100644
--- a/srcpkgs/python-termcolor/template
+++ b/srcpkgs/python-termcolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-termcolor'
 pkgname=python-termcolor
 version=1.1.0
-revision=5
+revision=6
 archs=noarch
 wrksrc="termcolor-${version}"
 build_style=python-module

From 469ef1b462bbb9fb2d5d97b38e357b662f5009d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 519/873] python-terminado: rebuild for Python 3.8.

---
 srcpkgs/python-terminado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-terminado/template b/srcpkgs/python-terminado/template
index cdfe6163991..d649364d88d 100644
--- a/srcpkgs/python-terminado/template
+++ b/srcpkgs/python-terminado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-terminado'
 pkgname=python-terminado
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="terminado-${version}"
 build_style=python-module

From ced3b80cce126ab9d23dd2a4bc9505e23b5a4888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 520/873] python3-terminaltables: rebuild for Python 3.8.

---
 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 60ada7ffcb6..4f781eab76d 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=1
+revision=2
 archs=noarch
 wrksrc="terminaltables-${version}"
 build_style=python3-module

From 7a90fec1dbe0347ede0762e747d8edf378bd497c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 521/873] python-testpath: rebuild for Python 3.8.

---
 srcpkgs/python-testpath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-testpath/template b/srcpkgs/python-testpath/template
index bac7270fd40..abfc59900c0 100644
--- a/srcpkgs/python-testpath/template
+++ b/srcpkgs/python-testpath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-testpath'
 pkgname=python-testpath
 version=0.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="testpath-${version}"
 build_style=python-module

From f8761f2f7116f9b2691807d35d9836a34fbbbf32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 522/873] python3-text-unidecode: rebuild for Python 3.8.

---
 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 77163d9e0b6..b3b5aa95575 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="text-unidecode-${version}"
 build_style=python3-module

From 2d2f99664b0644e22e4876b9d54048008a392289 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 523/873] python-texttable: rebuild for Python 3.8.

---
 srcpkgs/python-texttable/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-texttable/template b/srcpkgs/python-texttable/template
index a9c5ec66db1..24bac87af6a 100644
--- a/srcpkgs/python-texttable/template
+++ b/srcpkgs/python-texttable/template
@@ -1,7 +1,7 @@
 # Template file for 'python-texttable'
 pkgname=python-texttable
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="texttable-${version}"
 build_style=python-module

From c671c144e8fe81895f6995347d19725f72165b25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 524/873] python3-tinycss: rebuild for Python 3.8.

---
 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 91fda6f808d..3b4717c234e 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=1
+revision=2
 archs=noarch
 wrksrc=tinycss-${version}
 build_style=python3-module

From 9aa3e8105128dc5e3b86a83bd0ae76e7d9c9cf86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 525/873] python-tmuxp: rebuild for Python 3.8.

---
 srcpkgs/python-tmuxp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tmuxp/template b/srcpkgs/python-tmuxp/template
index 00c86730cbe..45b4a9772b2 100644
--- a/srcpkgs/python-tmuxp/template
+++ b/srcpkgs/python-tmuxp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tmuxp'
 pkgname=python-tmuxp
 version=1.5.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="tmuxp-${version}"
 build_style=python-module

From 995158f34c29d704b44eae2b32df801023781096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 526/873] python-toml: rebuild for Python 3.8.

---
 srcpkgs/python-toml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-toml/template b/srcpkgs/python-toml/template
index 0eee1b0b2c3..2fd6eaa0cea 100644
--- a/srcpkgs/python-toml/template
+++ b/srcpkgs/python-toml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-toml'
 pkgname=python-toml
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="toml-${version}"
 build_style=python-module

From 6270afd962719dd0e9b876b40ab7bf9be9936cf5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 527/873] python-tornado: rebuild for Python 3.8.

---
 srcpkgs/python-tornado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tornado/template b/srcpkgs/python-tornado/template
index 7e5700177f5..bd558d251f5 100644
--- a/srcpkgs/python-tornado/template
+++ b/srcpkgs/python-tornado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tornado'
 pkgname=python-tornado
 version=5.1.1
-revision=1
+revision=2
 wrksrc="tornado-${version}"
 build_style=python-module
 pycompile_module="tornado"

From cd9e416288ae101465f91c75453326fdead7d148 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 528/873] python-tqdm: rebuild for Python 3.8.

---
 srcpkgs/python-tqdm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tqdm/template b/srcpkgs/python-tqdm/template
index 69369bfd6b9..ef1f07127ad 100644
--- a/srcpkgs/python-tqdm/template
+++ b/srcpkgs/python-tqdm/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tqdm'
 pkgname=python-tqdm
 version=4.36.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tqdm-${version}"
 build_style=python-module

From 4ef8d34c3ab05cf43591d92220fc001007644a6d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 529/873] python-traitlets: rebuild for Python 3.8.

---
 srcpkgs/python-traitlets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-traitlets/template b/srcpkgs/python-traitlets/template
index d2d1b85edb6..797dd0268da 100644
--- a/srcpkgs/python-traitlets/template
+++ b/srcpkgs/python-traitlets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-traitlets'
 pkgname=python-traitlets
 version=4.3.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="traitlets-${version}"
 build_style=python-module

From f41edcb16535bb92b415439644ee01a61da14478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 530/873] python3-transifex-client: rebuild for Python 3.8.

---
 srcpkgs/python3-transifex-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-transifex-client/template b/srcpkgs/python3-transifex-client/template
index 77ca15313e0..5ea767b5a7d 100644
--- a/srcpkgs/python3-transifex-client/template
+++ b/srcpkgs/python3-transifex-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-transifex-client'
 pkgname=python3-transifex-client
 version=0.13.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="transifex-client-${version}"
 build_style=python3-module

From d2c27a7fe61e206ccbf655146feec32e4b13cfc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 531/873] python3-treq: rebuild for Python 3.8.

---
 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 8f210d13489..e46e1e7e7a5 100644
--- a/srcpkgs/python3-treq/template
+++ b/srcpkgs/python3-treq/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-treq'
 pkgname=python3-treq
 version=18.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="treq-${version}"
 build_style=python3-module

From 26b5427ba0e26d8712ebe081a774396e3ea39d76 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 532/873] python-ttystatus: rebuild for Python 3.8.

---
 srcpkgs/python-ttystatus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ttystatus/template b/srcpkgs/python-ttystatus/template
index 9fbefad3461..43e87ddcdf0 100644
--- a/srcpkgs/python-ttystatus/template
+++ b/srcpkgs/python-ttystatus/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ttystatus'
 pkgname=python-ttystatus
 version=0.38
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="ttystatus"

From dbf349fac2110dc33ad6d676748e46240dec1fbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 533/873] python-twitter: rebuild for Python 3.8.

---
 srcpkgs/python-twitter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-twitter/template b/srcpkgs/python-twitter/template
index c299b28dedf..e5e7194078a 100644
--- a/srcpkgs/python-twitter/template
+++ b/srcpkgs/python-twitter/template
@@ -1,7 +1,7 @@
 # Template file for 'python-twitter'
 pkgname=python-twitter
 version=3.5
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="twitter"

From 58eab12e88f689c694ef474e09d2266b77b5bcc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 534/873] python3-txacme: rebuild for Python 3.8.

---
 srcpkgs/python3-txacme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-txacme/template b/srcpkgs/python3-txacme/template
index e6becf593e7..c678addda4d 100644
--- a/srcpkgs/python3-txacme/template
+++ b/srcpkgs/python3-txacme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txacme'
 pkgname=python3-txacme
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="txacme-${version}"
 build_style=python3-module

From a1a3464258c255e0b73cbdb47e0337d3b8af473e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 535/873] python3-txaio: rebuild for Python 3.8.

---
 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 fa13338cd30..8163f5c90fd 100644
--- a/srcpkgs/python3-txaio/template
+++ b/srcpkgs/python3-txaio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txaio'
 pkgname=python3-txaio
 version=18.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="txaio-${version}"
 build_style=python3-module

From 66d08c9f4945499ccd01b127d7ec1f8cfd468dd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 536/873] python3-txtorcon: rebuild for Python 3.8.

---
 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 3018a65e457..a10ab59c582 100644
--- a/srcpkgs/python3-txtorcon/template
+++ b/srcpkgs/python3-txtorcon/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txtorcon'
 pkgname=python3-txtorcon
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="txtorcon-${version}"
 build_style=python3-module

From f3bf9db3f8b699c67eebc7fa0278fca9de892d75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 537/873] python3-typed-ast: update to 1.4.0.

---
 srcpkgs/python3-typed-ast/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-typed-ast/template b/srcpkgs/python3-typed-ast/template
index ec5b5b9df11..b38f0fe065c 100644
--- a/srcpkgs/python3-typed-ast/template
+++ b/srcpkgs/python3-typed-ast/template
@@ -1,8 +1,8 @@
 # Template file for 'python3-typed-ast'
 pkgname=python3-typed-ast
-version=1.3.4
+version=1.4.0
 revision=1
-wrksrc="typed-ast-${version}"
+wrksrc="typed_ast-${version}"
 build_style=python3-module
 pycompile_module="typed_ast"
 hostmakedepends="python3-devel python3-setuptools"
@@ -11,6 +11,6 @@ short_desc="Ast module with type comment support"
 maintainer="whoami <whoami@systemli.org>"
 license="Apache-2.0"
 homepage="https://github.com/python/typed_ast"
-distfiles="${PYPI_SITE}/t/typed-ast/typed-ast-${version}.tar.gz"
-checksum=68c362848d9fb71d3c3e5f43c09974a0ae319144634e7a47db62f0f2a54a7fa7
+distfiles="${PYPI_SITE}/t/typed-ast/typed_ast-${version}.tar.gz"
+checksum=66480f95b8167c9c5c5c87f32cf437d585937970f3fc24386f313a4c97b44e34
 nocross="https://travis-ci.org/void-linux/void-packages/jobs/509366923#L1009"

From d977434aa35e2c6bc03c5db7514f5409eb21a2a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 538/873] python3-typing_extensions: rebuild for Python 3.8.

---
 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 ab96df4eb2d..605af46216d 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=3.6.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module

From d1368b489e196a385edf9b15df4da773505f8a5e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 539/873] python-tzlocal: rebuild for Python 3.8.

---
 srcpkgs/python-tzlocal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tzlocal/template b/srcpkgs/python-tzlocal/template
index 396eada3982..684d2a21b40 100644
--- a/srcpkgs/python-tzlocal/template
+++ b/srcpkgs/python-tzlocal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tzlocal'
 pkgname=python-tzlocal
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tzlocal-${version}"
 build_style=python-module

From 0ec72579de99edead05daf85e7cac5e0e2ab641b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 540/873] python-unittest-mixins: rebuild for Python 3.8.

---
 srcpkgs/python-unittest-mixins/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-unittest-mixins/template b/srcpkgs/python-unittest-mixins/template
index 6f7c7204112..2ff5c497523 100644
--- a/srcpkgs/python-unittest-mixins/template
+++ b/srcpkgs/python-unittest-mixins/template
@@ -1,7 +1,7 @@
 # Template file for 'python-unittest-mixins'
 pkgname=python-unittest-mixins
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From a5e3289470d7f0e25e09237aa9463d28817818c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 541/873] python3-unpaddedbase64: rebuild for Python 3.8.

---
 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 37df2c1d642..06a47db3b64 100644
--- a/srcpkgs/python3-unpaddedbase64/template
+++ b/srcpkgs/python3-unpaddedbase64/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-unpaddedbase64'
 pkgname=python3-unpaddedbase64
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-unpaddedbase64-${version}"
 build_style=python3-module

From 13043751d10b741546f419a7e9089a5b252fd5c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 542/873] python-urbandict: rebuild for Python 3.8.

---
 srcpkgs/python-urbandict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urbandict/template b/srcpkgs/python-urbandict/template
index ff09e963fa7..ed359c744be 100644
--- a/srcpkgs/python-urbandict/template
+++ b/srcpkgs/python-urbandict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urbandict'
 pkgname=python-urbandict
 version=0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="urbandict-${version}"
 build_style=python-module

From a15bf0893e7a65a070751099b3ddca9172b49912 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 543/873] python-uritemplate: rebuild for Python 3.8.

---
 srcpkgs/python-uritemplate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-uritemplate/template b/srcpkgs/python-uritemplate/template
index 7a530fee03b..cdcda419efe 100644
--- a/srcpkgs/python-uritemplate/template
+++ b/srcpkgs/python-uritemplate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-uritemplate'
 pkgname=python-uritemplate
 version=3.0.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 43c97a015ea83b2b0934ea864a84b324ec83f31a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 544/873] python3-urlgrabber: rebuild for Python 3.8.

---
 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 087087d5ed1..eef67c8e13c 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=1
+revision=2
 archs=noarch
 wrksrc="urlgrabber-${version}"
 build_style=python3-module

From 016dbcff2bb0c1709814f4da4fe214d551e3d4cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 545/873] python-urllib3: rebuild for Python 3.8.

---
 srcpkgs/python-urllib3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urllib3/template b/srcpkgs/python-urllib3/template
index 8056518c9c1..1ff21f7555d 100644
--- a/srcpkgs/python-urllib3/template
+++ b/srcpkgs/python-urllib3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urllib3'
 pkgname=python-urllib3
 version=1.25.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="urllib3-${version}"
 build_style=python-module

From 9629da352be38a0f14bcb680c7fc05dd1d1167f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 546/873] python-urwid: rebuild for Python 3.8.

---
 srcpkgs/python-urwid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwid/template b/srcpkgs/python-urwid/template
index ae6722b1135..7adf8b76b96 100644
--- a/srcpkgs/python-urwid/template
+++ b/srcpkgs/python-urwid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwid'
 pkgname=python-urwid
 version=2.0.1
-revision=2
+revision=3
 wrksrc="urwid-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"

From 4be978b1173afce93e7ff39f6e577059f4c7dd4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 547/873] python-urwidtrees: rebuild for Python 3.8.

---
 srcpkgs/python-urwidtrees/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwidtrees/template b/srcpkgs/python-urwidtrees/template
index be0e906addf..62d214489e2 100644
--- a/srcpkgs/python-urwidtrees/template
+++ b/srcpkgs/python-urwidtrees/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwidtrees'
 pkgname=python-urwidtrees
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="urwidtrees-${version}"
 build_style=python-module

From c9f3ad0ed793593060952aa365e888244dfd07e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 548/873] python3-usb: rebuild for Python 3.8.

---
 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 a081ee5ba76..d26c24df669 100644
--- a/srcpkgs/python3-usb/template
+++ b/srcpkgs/python3-usb/template
@@ -2,7 +2,7 @@
 pkgname=python3-usb
 _pkgname=pyusb
 version=1.0.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From 454ef49754696a81de599e7fa6cf9cab31ccbc31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 549/873] python-utils: rebuild for Python 3.8.

---
 srcpkgs/python-utils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-utils/template b/srcpkgs/python-utils/template
index e881e70c0f0..6745df121a6 100644
--- a/srcpkgs/python-utils/template
+++ b/srcpkgs/python-utils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-utils'
 pkgname=python-utils
 version=2.3.0
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 wrksrc="python-utils-${version}"

From eef5c75b93453defdcb8def5b34c20f20cda0fc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 550/873] python3-validators: rebuild for Python 3.8.

---
 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 29b9fc74c30..6d9da94c4bb 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.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="validators-${version}"
 build_style=python3-module

From 53ce0ff21de84f26405d0314002bb11e85903128 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 551/873] python3-vdf: rebuild for Python 3.8.

---
 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 44c635ecdd6..88bd521beaa 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.2
-revision=1
+revision=2
 wrksrc=vdf-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From f720d6ed8267fa4b27a7ce83dd3a265a18cd13b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 552/873] python-vint: rebuild for Python 3.8.

---
 srcpkgs/python-vint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vint/template b/srcpkgs/python-vint/template
index 4ca693f7eb2..62c663bf18e 100644
--- a/srcpkgs/python-vint/template
+++ b/srcpkgs/python-vint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vint'
 pkgname=python-vint
 version=0.3.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="vim-vint-${version}"
 build_style=python-module

From 573eadbcb861065b712050cf6e7fd200c33a73b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 553/873] python-virtualenv: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv/template b/srcpkgs/python-virtualenv/template
index 1f9166e79a2..cdeda28c53e 100644
--- a/srcpkgs/python-virtualenv/template
+++ b/srcpkgs/python-virtualenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv'
 pkgname=python-virtualenv
 version=16.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="virtualenv-${version}"
 build_style=python-module

From 25eda2949787b488dfc7cfc6512d02a4971d4f96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 554/873] python-virtualenv-clone: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv-clone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv-clone/template b/srcpkgs/python-virtualenv-clone/template
index 3c9f601bc6e..273b9ddf6d3 100644
--- a/srcpkgs/python-virtualenv-clone/template
+++ b/srcpkgs/python-virtualenv-clone/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv-clone'
 pkgname=python-virtualenv-clone
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5a922ea064a496fb01ff970e45a43ef51561b373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 555/873] python3-virustotal-api: rebuild for Python 3.8.

---
 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 2bc6592c91f..fc362c03b39 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=1
+revision=2
 archs=noarch
 wrksrc="virustotal-api-${version}"
 build_style=python3-module

From 65deaff01a3a9a5d82641fe121fdb2964b75346f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 556/873] python-vispy: rebuild for Python 3.8.

---
 srcpkgs/python-vispy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vispy/template b/srcpkgs/python-vispy/template
index b757e5a271f..624ade6f12b 100644
--- a/srcpkgs/python-vispy/template
+++ b/srcpkgs/python-vispy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vispy'
 pkgname=python-vispy
 version=0.6.1
-revision=1
+revision=2
 wrksrc="vispy-${version}"
 build_style=python-module
 pycompile_module="vispy"

From 5e47d846dedfdbef61bd10a33928ce13b600c648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 557/873] python-vobject: rebuild for Python 3.8.

---
 srcpkgs/python-vobject/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vobject/template b/srcpkgs/python-vobject/template
index 54f575aa1a1..2c1c215527c 100644
--- a/srcpkgs/python-vobject/template
+++ b/srcpkgs/python-vobject/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vobject'
 pkgname=python-vobject
 version=0.9.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="vobject-${version}"
 build_style=python-module

From 8125ffd3d4822ca6bf81508ed8b859e079cd9437 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 558/873] python-voluptuous: rebuild for Python 3.8.

---
 srcpkgs/python-voluptuous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-voluptuous/template b/srcpkgs/python-voluptuous/template
index fd44ae2e324..1dd5de27491 100644
--- a/srcpkgs/python-voluptuous/template
+++ b/srcpkgs/python-voluptuous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-voluptuous'
 pkgname=python-voluptuous
 version=0.11.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="voluptuous-${version}"
 build_style=python-module

From 608126ee8043f8d45a8e56608f99e0df6cc2ee9e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 559/873] python-watchdog: rebuild for Python 3.8.

---
 srcpkgs/python-watchdog/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchdog/template b/srcpkgs/python-watchdog/template
index f6027c3b5ca..2eea6397f00 100644
--- a/srcpkgs/python-watchdog/template
+++ b/srcpkgs/python-watchdog/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchdog'
 pkgname=python-watchdog
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="watchdog-${version}"
 build_style=python-module

From a54fc09b58f905a0ed5cd5892db67b7c4ea6ae9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 560/873] python-watchman: rebuild for Python 3.8.

---
 srcpkgs/python-watchman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchman/template b/srcpkgs/python-watchman/template
index 4c41c275ca2..97400668d64 100644
--- a/srcpkgs/python-watchman/template
+++ b/srcpkgs/python-watchman/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchman'
 pkgname=python-watchman
 version=1.4.1
-revision=2
+revision=3
 wrksrc="pywatchman-${version}"
 build_style=python-module
 pycompile_module="pywatchman"

From 4dd6084e6c30a25fb4ff3c44bf2c751eaab07715 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 561/873] python-wcwidth: rebuild for Python 3.8.

---
 srcpkgs/python-wcwidth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wcwidth/template b/srcpkgs/python-wcwidth/template
index 34bc22cbcb6..8ec6d17450c 100644
--- a/srcpkgs/python-wcwidth/template
+++ b/srcpkgs/python-wcwidth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wcwidth'
 pkgname=python-wcwidth
 version=0.1.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="wcwidth-${version}"
 build_style=python-module

From cafaf5868e58cb26c2cdd29d0d1b52f9cf1e31ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 562/873] python-webassets: rebuild for Python 3.8.

---
 srcpkgs/python-webassets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webassets/template b/srcpkgs/python-webassets/template
index 3ad5475bd17..789be9684f7 100644
--- a/srcpkgs/python-webassets/template
+++ b/srcpkgs/python-webassets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webassets'
 pkgname=python-webassets
 version=0.12.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 88d8fa4eb1ca72857d5a1cab8a4f7495a9af1595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 563/873] python-webencodings: rebuild for Python 3.8.

---
 srcpkgs/python-webencodings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webencodings/template b/srcpkgs/python-webencodings/template
index 5a05af10835..f047a9e3c52 100644
--- a/srcpkgs/python-webencodings/template
+++ b/srcpkgs/python-webencodings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webencodings'
 pkgname=python-webencodings
 version=0.5.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="webencodings-${version}"
 build_style=python-module

From 81c9d07c0e756cc87a6cd2c444c0b2f0987463da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 564/873] python-websocket-client: rebuild for Python 3.8.

---
 srcpkgs/python-websocket-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-websocket-client/template b/srcpkgs/python-websocket-client/template
index 8aa276655cb..3df8ab42b36 100644
--- a/srcpkgs/python-websocket-client/template
+++ b/srcpkgs/python-websocket-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-websocket-client'
 pkgname=python-websocket-client
 version=0.56.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="websocket_client-${version}"
 build_style=python-module

From 97fc927913b3f2682b7ddf73982008e9fdc1e42d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 565/873] python-wheel: rebuild for Python 3.8.

---
 srcpkgs/python-wheel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wheel/template b/srcpkgs/python-wheel/template
index 11c50bd65e6..11aeaf42316 100644
--- a/srcpkgs/python-wheel/template
+++ b/srcpkgs/python-wheel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wheel'
 pkgname=python-wheel
 version=0.32.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="wheel-${version}"
 build_style=python-module

From 861d20f2f112cd829f2f06f746680e2c034a812f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 566/873] python-wikipedia: rebuild for Python 3.8.

---
 srcpkgs/python-wikipedia/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wikipedia/template b/srcpkgs/python-wikipedia/template
index e6ebf65f7c2..f8a69755b74 100644
--- a/srcpkgs/python-wikipedia/template
+++ b/srcpkgs/python-wikipedia/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wikipedia'
 pkgname=python-wikipedia
 version=1.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="wikipedia-${version}"
 build_style=python-module

From c58e9b08de69bd19aa3bcf91ec42d1b626a2a6bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 567/873] python-wrapt: rebuild for Python 3.8.

---
 srcpkgs/python-wrapt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wrapt/template b/srcpkgs/python-wrapt/template
index a3a237aa08d..c2d2850bf5a 100644
--- a/srcpkgs/python-wrapt/template
+++ b/srcpkgs/python-wrapt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wrapt'
 pkgname=python-wrapt
 version=1.10.11
-revision=3
+revision=4
 wrksrc="wrapt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From f65cbaf6b92acb78d54d3b498924285bce64fb66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 568/873] python-wsproto: rebuild for Python 3.8.

---
 srcpkgs/python-wsproto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wsproto/template b/srcpkgs/python-wsproto/template
index 88b08f796d4..a93a799be0a 100644
--- a/srcpkgs/python-wsproto/template
+++ b/srcpkgs/python-wsproto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wsproto'
 pkgname=python-wsproto
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="wsproto-${version}"
 build_style=python-module

From 1b60fb796f8ac377a2e31dc0503df215c27fc59e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 569/873] python-xapp: rebuild for Python 3.8.

---
 srcpkgs/python-xapp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xapp/template b/srcpkgs/python-xapp/template
index 9b6938113f2..798041eb946 100644
--- a/srcpkgs/python-xapp/template
+++ b/srcpkgs/python-xapp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xapp'
 pkgname=python-xapp
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="xapp"

From 415bec8de0abe2772c407df9db650bd06ba122ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 570/873] python-xdg: rebuild for Python 3.8.

---
 srcpkgs/python-xdg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xdg/template b/srcpkgs/python-xdg/template
index afa6c180043..4e819c8bec7 100644
--- a/srcpkgs/python-xdg/template
+++ b/srcpkgs/python-xdg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xdg'
 pkgname=python-xdg
 version=0.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyxdg-${version}"
 build_style=python-module

From 4518feeb499caa6631ef29ead0439c5bcc67a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 571/873] python-xlib: rebuild for Python 3.8.

---
 srcpkgs/python-xlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xlib/template b/srcpkgs/python-xlib/template
index 1f97c4117d4..e67d1d82e73 100644
--- a/srcpkgs/python-xlib/template
+++ b/srcpkgs/python-xlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xlib'
 pkgname=python-xlib
 version=0.25
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="Xlib"

From 1cef928049b5216468e701acce714fc14d79694f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 572/873] python-xmldiff: rebuild for Python 3.8.

---
 srcpkgs/python-xmldiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmldiff/template b/srcpkgs/python-xmldiff/template
index a0a8004ea7b..4f3cc2d27b7 100644
--- a/srcpkgs/python-xmldiff/template
+++ b/srcpkgs/python-xmldiff/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmldiff'
 pkgname=python-xmldiff
 version=2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmldiff-${version}"
 build_style=python-module

From cefcbea2ec7904b0c1ad16ec32963bf430b27c4a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 573/873] python-xmltodict: rebuild for Python 3.8.

---
 srcpkgs/python-xmltodict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmltodict/template b/srcpkgs/python-xmltodict/template
index a48e6d46aa6..b3d7ef042e8 100644
--- a/srcpkgs/python-xmltodict/template
+++ b/srcpkgs/python-xmltodict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmltodict'
 pkgname=python-xmltodict
 version=0.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmltodict-${version}"
 build_style=python-module

From 889d5fe9fe9f1830bec336ac52bd8bd32f47f0a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 574/873] python-yaml: rebuild for Python 3.8.

---
 srcpkgs/python-yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yaml/template b/srcpkgs/python-yaml/template
index 8a7caf1d99e..e3bad0ae59b 100644
--- a/srcpkgs/python-yaml/template
+++ b/srcpkgs/python-yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yaml'
 pkgname=python-yaml
 version=5.1.2
-revision=1
+revision=2
 wrksrc="PyYAML-${version}"
 build_style=python-module
 pycompile_module="yaml"

From 1b3e89ca272ae28a62064bf83eaff84332307682 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 575/873] python-yamllint: rebuild for Python 3.8.

---
 srcpkgs/python-yamllint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yamllint/template b/srcpkgs/python-yamllint/template
index 1a05e1043bb..d0b51ba637a 100644
--- a/srcpkgs/python-yamllint/template
+++ b/srcpkgs/python-yamllint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yamllint'
 pkgname=python-yamllint
 version=1.15.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="yamllint-${version}"
 build_style=python-module

From b233bcb50542e39ba02899ef3d1b833e385204e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 576/873] python3-yarl: rebuild for Python 3.8.

---
 srcpkgs/python3-yarl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-yarl/template b/srcpkgs/python3-yarl/template
index 222f176cfcf..ecb79a3cc9c 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.3.0
-revision=2
+revision=3
 wrksrc="yarl-${version}"
 build_style=python3-module
 pycompile_module="yarl"

From 484c2559f18644c63342db467c703e2e998e89b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 577/873] python-zc.lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-zc.lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zc.lockfile/template b/srcpkgs/python-zc.lockfile/template
index cb0bee99506..b77071af04f 100644
--- a/srcpkgs/python-zc.lockfile/template
+++ b/srcpkgs/python-zc.lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zc.lockfile'
 pkgname=python-zc.lockfile
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 364e398c8dd7e3dd141ceb1c22626ecf2a5b9b32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 578/873] python3-zeroconf: rebuild for Python 3.8.

---
 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 497a8bc6b69..dda37bd3dc4 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.23.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-zeroconf-${version}"
 build_style=python3-module

From 22b5d6236d8f0ff0050135b2e77eca608519b1ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 579/873] python3-zipp: rebuild for Python 3.8.

---
 srcpkgs/python3-zipp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-zipp/template b/srcpkgs/python3-zipp/template
index 8445c10825c..ba682915beb 100644
--- a/srcpkgs/python3-zipp/template
+++ b/srcpkgs/python3-zipp/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-zipp'
 pkgname=python3-zipp
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="zipp-${version}"
 build_style=python3-module

From c5c37d6e890a553e458333e610ab56b1a5c9b516 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 580/873] python-zipstream: rebuild for Python 3.8.

---
 srcpkgs/python-zipstream/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zipstream/template b/srcpkgs/python-zipstream/template
index 89079e21b22..2c7390127ac 100644
--- a/srcpkgs/python-zipstream/template
+++ b/srcpkgs/python-zipstream/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zipstream'
 pkgname=python-zipstream
 version=1.1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="python-zipstream-${version}"
 build_style=python-module

From bc31e25a00839c9d3cc5ac70edf0485ee4b21d4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 581/873] python3-zope.cachedescriptors: rebuild for Python
 3.8.

---
 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 bdd5ef41e21..1f1fae5b27b 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.3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="zope.cachedescriptors-${version}"
 build_style=python3-module

From 40a63988f3c2db41391f0a7ab6cde24a9b79ed05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 582/873] python-zope.component: rebuild for Python 3.8.

---
 srcpkgs/python-zope.component/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.component/template b/srcpkgs/python-zope.component/template
index 7cea5b9d71d..66ef109a4aa 100644
--- a/srcpkgs/python-zope.component/template
+++ b/srcpkgs/python-zope.component/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.component'
 pkgname=python-zope.component
 version=4.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 799496c35db93c88e6d00e4b41eeca8b4af5b188 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 583/873] python-zope.event: rebuild for Python 3.8.

---
 srcpkgs/python-zope.event/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.event/template b/srcpkgs/python-zope.event/template
index 3c7fb8dfd6e..6518cb4529b 100644
--- a/srcpkgs/python-zope.event/template
+++ b/srcpkgs/python-zope.event/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.event'
 pkgname=python-zope.event
 version=4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d77b16ecad39877131af8a9c01ea925b33737b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 584/873] python-zope.interface: rebuild for Python 3.8.

---
 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 d3c57be85f7..1dbcbecd377 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=4.6.0
-revision=2
+revision=3
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="zope"

From e5cb80612a71c54facf607c52c7a385badeba668 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 585/873] python3-pivy: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-pivy/patches/73cd928f.patch | 36 +++++++++++++++++++++
 srcpkgs/python3-pivy/template               |  2 +-
 2 files changed, 37 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/python3-pivy/patches/73cd928f.patch

diff --git a/srcpkgs/python3-pivy/patches/73cd928f.patch b/srcpkgs/python3-pivy/patches/73cd928f.patch
new file mode 100644
index 00000000000..edff803822a
--- /dev/null
+++ b/srcpkgs/python3-pivy/patches/73cd928f.patch
@@ -0,0 +1,36 @@
+From 73cd928fe1a9c2abbe6f28844a7fc695ad11d7cf Mon Sep 17 00:00:00 2001
+From: Peter Lama <peterldev94@gmail.com>
+Date: Fri, 24 Aug 2018 17:25:47 -0700
+Subject: [PATCH] Fix issue #39: PyUnicode_AsUTF8 returns const char*
+
+Even with python 2, it doesn't seem like char* is needed
+
+--- Inventor/nodes/SoMarkerSet.i
++++ Inventor/nodes/SoMarkerSet.i
+@@ -5,7 +5,7 @@
+         short WIDTH, HEIGHT;
+         size.getValue(WIDTH, HEIGHT);
+         short BYTEWIDTH = (WIDTH + 7) / 2;
+-        char* coin_marker;
++        const char* coin_marker;
+ #ifdef PY_2
+         if (PyString_Check(string))
+         {
+@@ -49,4 +49,4 @@
+         delete[] bitmapbytes;
+         bitmapbytes = NULL;
+     }
+-}
+\ No newline at end of file
++}
+--- Inventor/sensors/SoSensor.i
++++ Inventor/sensors/SoSensor.i
+@@ -4,7 +4,7 @@ SoSensorPythonCB(void * data, SoSensor * sensor)
+ {
+   PyGILState_STATE gil = PyGILState_Ensure();
+   swig_type_info * swig_type = 0;
+-  char * sensor_cast_name = NULL;
++  const char * sensor_cast_name = NULL;
+   PyObject * func, * arglist;
+   PyObject * result, * pysensor;
+ 
diff --git a/srcpkgs/python3-pivy/template b/srcpkgs/python3-pivy/template
index 4a733e805e3..9caa13837e2 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.4
-revision=1
+revision=2
 wrksrc="Coin3D-${pkgname#python3-}-a84100beff22"
 build_style=python3-module
 pycompile_module="pivy"

From 7d8cfe1721327d4b8695c6abc56d012b27989c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 586/873] python-tweepy: update to 3.8.0.

---
 srcpkgs/python-tweepy/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python-tweepy/template b/srcpkgs/python-tweepy/template
index ef61039dac5..4605bbf83ea 100644
--- a/srcpkgs/python-tweepy/template
+++ b/srcpkgs/python-tweepy/template
@@ -1,6 +1,6 @@
 # Template file for 'python-tweepy'
 pkgname=python-tweepy
-version=3.7.0
+version=3.8.0
 revision=1
 archs=noarch
 wrksrc="tweepy-${version}"
@@ -14,8 +14,8 @@ license="MIT"
 homepage="https://github.com/tweepy/tweepy"
 distfiles="${PYPI_SITE}/t/tweepy/tweepy-${version}.tar.gz
  https://raw.githubusercontent.com/tweepy/tweepy/master/LICENSE>LICENSE.txt"
-checksum="fe85a79f58a01dd335968523b91c5fce760e7fe78bf25a6e71c72204fe499d0b
- deeeae0dcc22dbf108a801b8dc4e484bcc1bfb541b1a4f4615ab3e61def44fb5"
+checksum="8abd828ba51a85a2b5bb7373715d6d3bb32d18ac624e3a4db02e4ef8ab48316b
+ bf9bc5b9dcb8421bb3c342bb7fd29194688e1262b50766bd71b21a07461e74b7"
 
 post_install() {
 	vlicense ../LICENSE.txt

From 5f654f2f6a7eca9a50adb53af9037466723dd82c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 587/873] Electron-Cash: rebuild for Python 3.8.

---
 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 2db05c94832..08670c5f08d 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.0.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electroncash electroncash_gui electroncash_plugins"

From 931f125f8699e33cb16c8ed43a5e910d0056db6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 588/873] OpenLP: rebuild for Python 3.8.

---
 srcpkgs/OpenLP/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/OpenLP/template b/srcpkgs/OpenLP/template
index fb417f8d05e..ccae6d0282e 100644
--- a/srcpkgs/OpenLP/template
+++ b/srcpkgs/OpenLP/template
@@ -1,7 +1,7 @@
 # Template file for 'OpenLP'
 pkgname=OpenLP
 version=2.4.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="openlp"

From 21b02367e81c8635c88830fd008c0ba44ffcccff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 589/873] PhotoCollage: rebuild for Python 3.8.

---
 srcpkgs/PhotoCollage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/PhotoCollage/template b/srcpkgs/PhotoCollage/template
index 2c55ca87ce0..9997d1e7d98 100644
--- a/srcpkgs/PhotoCollage/template
+++ b/srcpkgs/PhotoCollage/template
@@ -1,7 +1,7 @@
 # Template file for 'PhotoCollage'
 pkgname=PhotoCollage
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="photocollage"

From 49dffe4070ca7dff3c38379b8df9d9b0d04395ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 590/873] ReText: rebuild for Python 3.8.

---
 srcpkgs/ReText/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ReText/template b/srcpkgs/ReText/template
index cc092ee6a36..a6551fbdf7c 100644
--- a/srcpkgs/ReText/template
+++ b/srcpkgs/ReText/template
@@ -1,7 +1,7 @@
 # Template file for 'ReText'
 pkgname=ReText
 version=7.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ReText"

From 225e30aaea5daebb0d4fc36c6d73424ad6fb1ec5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 591/873] SoapySDR: rebuild for Python 3.8.

---
 srcpkgs/SoapySDR/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/SoapySDR/template b/srcpkgs/SoapySDR/template
index 1bb66ce0689..bcfe45dc78a 100644
--- a/srcpkgs/SoapySDR/template
+++ b/srcpkgs/SoapySDR/template
@@ -1,7 +1,7 @@
 # Template file for 'SoapySDR'
 pkgname=SoapySDR
 version=0.7.1
-revision=1
+revision=2
 wrksrc="${pkgname}-soapy-sdr-${version}"
 build_style=cmake
 pycompile_module="SoapySDR.py"

From 2e64750e75e61296567ebb0053c46081cbab8e13 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 592/873] Solaar: rebuild for Python 3.8.

---
 srcpkgs/Solaar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Solaar/template b/srcpkgs/Solaar/template
index 2e8f4112e0e..86cab83d497 100644
--- a/srcpkgs/Solaar/template
+++ b/srcpkgs/Solaar/template
@@ -1,7 +1,7 @@
 # Template file for 'Solaar'
 pkgname=Solaar
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="hidapi logitech_receiver solaar"

From 21eb59c332d0765268a9b3a5442e4e265144a4ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 593/873] Trimage: rebuild for Python 3.8.

---
 srcpkgs/Trimage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Trimage/template b/srcpkgs/Trimage/template
index 14fc1d1bd1c..c9f4b047ccd 100644
--- a/srcpkgs/Trimage/template
+++ b/srcpkgs/Trimage/template
@@ -1,7 +1,7 @@
 # Template file for 'Trimage'
 pkgname=Trimage
 version=1.0.6
-revision=1
+revision=2
 wrksrc="Trimage-${version}"
 build_style=python3-module
 hostmakedepends="python3"

From 51428dec66979d2e47361fb2af5e7ad35acbe530 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 594/873] TwitchNotifier: rebuild for Python 3.8.

---
 srcpkgs/TwitchNotifier/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/TwitchNotifier/template b/srcpkgs/TwitchNotifier/template
index 01153bcc710..3bbba11db49 100644
--- a/srcpkgs/TwitchNotifier/template
+++ b/srcpkgs/TwitchNotifier/template
@@ -1,7 +1,7 @@
 # Template file for 'TwitchNotifier'
 pkgname=TwitchNotifier
 version=0.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-devel"
 makedepends="python3-devel"

From 18ad02f16088cf17e66f60da882ead88b4872617 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 595/873] Uranium: rebuild for Python 3.8.

---
 srcpkgs/Uranium/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Uranium/template b/srcpkgs/Uranium/template
index 193d5e211df..7a9509c2079 100644
--- a/srcpkgs/Uranium/template
+++ b/srcpkgs/Uranium/template
@@ -1,7 +1,7 @@
 # Template file for 'Uranium'
 pkgname=Uranium
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=cmake
 pycompile_module="UM"

From 1bfabd6cc63a8b03b99500dc59e362061f7549e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 596/873] afew: rebuild for Python 3.8.

---
 srcpkgs/afew/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/afew/template b/srcpkgs/afew/template
index a9156bbc902..f4b10098e66 100644
--- a/srcpkgs/afew/template
+++ b/srcpkgs/afew/template
@@ -1,7 +1,7 @@
 # Template file for 'afew'
 pkgname=afew
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="afew"

From f0695c0a0e527ead9d61cbbd52e872f5a6e7f422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 597/873] alot: rebuild for Python 3.8.

---
 srcpkgs/alot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/alot/template b/srcpkgs/alot/template
index 4ff75637282..c8e29e36297 100644
--- a/srcpkgs/alot/template
+++ b/srcpkgs/alot/template
@@ -1,7 +1,7 @@
 # Template file for 'alot'
 pkgname=alot
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="alot"

From ec032cb507b4dca0034eab7e0281dedd3b7dc418 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 598/873] ansible: rebuild for Python 3.8.

---
 srcpkgs/ansible/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ansible/template b/srcpkgs/ansible/template
index 413e6f8803e..773f890e114 100644
--- a/srcpkgs/ansible/template
+++ b/srcpkgs/ansible/template
@@ -1,7 +1,7 @@
 # Template file for 'ansible'
 pkgname=ansible
 version=2.8.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ansible"

From a97554cec966a402d73b894865fe2d37f1833cec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 599/873] apparmor: rebuild for Python 3.8.

---
 srcpkgs/apparmor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/apparmor/template b/srcpkgs/apparmor/template
index c0ef28bae03..e4f8e3fb3ae 100644
--- a/srcpkgs/apparmor/template
+++ b/srcpkgs/apparmor/template
@@ -1,7 +1,7 @@
 # Template file for 'apparmor'
 pkgname=apparmor
 version=2.13.3
-revision=1
+revision=2
 wrksrc="${pkgname}-v${version}"
 build_wrksrc=libraries/libapparmor
 build_style=gnu-configure

From 57116ea3c564f2a1852b8583df85c35aefe177a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 600/873] arandr: rebuild for Python 3.8.

---
 srcpkgs/arandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/arandr/template b/srcpkgs/arandr/template
index 71c8cbcd6ed..610dbc28bca 100644
--- a/srcpkgs/arandr/template
+++ b/srcpkgs/arandr/template
@@ -1,7 +1,7 @@
 # Template file for 'arandr'
 pkgname=arandr
 version=0.1.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenlayout"

From 4dbfc32dae63dc77f95207dc5aa5a79d26d2c9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 601/873] asciinema: rebuild for Python 3.8.

---
 srcpkgs/asciinema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/asciinema/template b/srcpkgs/asciinema/template
index 961b2756301..38b8871753c 100644
--- a/srcpkgs/asciinema/template
+++ b/srcpkgs/asciinema/template
@@ -1,7 +1,7 @@
 # Template file for 'asciinema'
 pkgname=asciinema
 version=2.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="asciinema"

From 956b672f4c6db0ea67d9ad05a8308ec5ea193930 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 602/873] attic: rebuild for Python 3.8.

---
 srcpkgs/attic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/attic/template b/srcpkgs/attic/template
index 533ef7377bc..ed454302ce4 100644
--- a/srcpkgs/attic/template
+++ b/srcpkgs/attic/template
@@ -1,7 +1,7 @@
 # Template file for 'attic'
 pkgname=attic
 version=0.16
-revision=14
+revision=15
 wrksrc="Attic-$version"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel python3-Sphinx"

From 3a21ab47b75c96c91b8447979356e5d4d4027fd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 603/873] autorandr: rebuild for Python 3.8.

---
 srcpkgs/autorandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/autorandr/template b/srcpkgs/autorandr/template
index bf38b833632..7f9796be18f 100644
--- a/srcpkgs/autorandr/template
+++ b/srcpkgs/autorandr/template
@@ -1,7 +1,7 @@
 # Template file for 'autorandr'
 pkgname=autorandr
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="autorandr.py"

From ca443f3bf2b2ea4c91fa81f47ea823293476950b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 604/873] avideo: rebuild for Python 3.8.

---
 srcpkgs/avideo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/avideo/template b/srcpkgs/avideo/template
index e4d004aafff..6430d391286 100644
--- a/srcpkgs/avideo/template
+++ b/srcpkgs/avideo/template
@@ -1,7 +1,7 @@
 # Template file for 'avideo'
 pkgname=avideo
 version=2017.9.27
-revision=3
+revision=4
 archs=noarch
 wrksrc="avideo"
 build_style=python3-module

From b1abf9d1270b34913e7bd6dbfcd004dba8a8c5ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 605/873] aws-cli: rebuild for Python 3.8.

---
 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 4e5e200e3f9..4328e203c3c 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.16.253
-revision=1
+revision=2
 archs=noarch
 wrksrc="aws-cli-${version}"
 build_style=python3-module

From af6fd86e4f623114e23d8cd19217a8ba196231c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 606/873] bandit: rebuild for Python 3.8.

---
 srcpkgs/bandit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bandit/template b/srcpkgs/bandit/template
index e6c1aa52d7c..d29873ecf61 100644
--- a/srcpkgs/bandit/template
+++ b/srcpkgs/bandit/template
@@ -1,7 +1,7 @@
 # Template file for 'bandit'
 pkgname=bandit
 version=1.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="bandit"

From acb296380ef65f2682ec382f88706be8dc3bf79f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 607/873] beancount: rebuild for Python 3.8.

---
 srcpkgs/beancount/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beancount/template b/srcpkgs/beancount/template
index b1e2a121668..0ba68fc8f4e 100644
--- a/srcpkgs/beancount/template
+++ b/srcpkgs/beancount/template
@@ -1,7 +1,7 @@
 # Template file for 'beancount'
 pkgname=beancount
 version=2.2.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="beancount"
 hostmakedepends="python3-setuptools"

From 4d085c5998e4472b4e7b4fceabecba11440daceb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 608/873] beets: rebuild for Python 3.8.

---
 srcpkgs/beets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beets/template b/srcpkgs/beets/template
index 7dab56ceef8..975e6ec9f86 100644
--- a/srcpkgs/beets/template
+++ b/srcpkgs/beets/template
@@ -1,7 +1,7 @@
 # Template file for 'beets'
 pkgname=beets
 version=1.4.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="beets beetsplug"

From 1640cb62a84da8a46aff2a9c6ee5f75c0ab73224 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 609/873] black: rebuild for Python 3.8.

---
 srcpkgs/black/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/black/template b/srcpkgs/black/template
index f6d433038b9..38498a1db07 100644
--- a/srcpkgs/black/template
+++ b/srcpkgs/black/template
@@ -1,7 +1,7 @@
 # Template file for 'black'
 pkgname=black
 version=19.3b0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="black.py blib2to3"

From 5939f3d169c384cfe92957888f7b53678a69e770 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 610/873] blueman: rebuild for Python 3.8.

---
 srcpkgs/blueman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blueman/template b/srcpkgs/blueman/template
index 83f9b899583..3616aee7da3 100644
--- a/srcpkgs/blueman/template
+++ b/srcpkgs/blueman/template
@@ -1,7 +1,7 @@
 # Template file for 'blueman'
 pkgname=blueman
 version=2.1.1
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="blueman"
 configure_args="--disable-static"

From 325ad86e9fdcfc900e695cdcb3b40bc448b85d06 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 611/873] borg: rebuild for Python 3.8.

---
 srcpkgs/borg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borg/template b/srcpkgs/borg/template
index 520b1b2f65a..b69c7d3418e 100644
--- a/srcpkgs/borg/template
+++ b/srcpkgs/borg/template
@@ -1,7 +1,7 @@
 # Template file for 'borg'
 pkgname=borg
 version=1.1.10
-revision=2
+revision=3
 wrksrc="borgbackup-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel"

From 73a17277e22d3252a93a66237bf81a04393fc244 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 612/873] borgmatic: rebuild for Python 3.8.

---
 srcpkgs/borgmatic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borgmatic/template b/srcpkgs/borgmatic/template
index 8ef7c0568a6..bdc6446243c 100644
--- a/srcpkgs/borgmatic/template
+++ b/srcpkgs/borgmatic/template
@@ -1,7 +1,7 @@
 # Template file for 'borgmatic'
 pkgname=borgmatic
 version=1.3.24
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="borgmatic"

From 482c5d69113ad10842dfe91f0ac4a0631660ac77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 613/873] btrfs-backup: rebuild for Python 3.8.

---
 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 07d08a1b62b..55a3800a857 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=1
+revision=2
 wrksrc="${pkgname/-/_}-${version}"
 archs=noarch
 build_style=python3-module

From 4fce3c4f00a44852e3f9fcab80a10d4acfc04ad6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 614/873] bum: rebuild for Python 3.8.

---
 srcpkgs/bum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bum/template b/srcpkgs/bum/template
index 58d0bb2b7f7..20f200e74d6 100644
--- a/srcpkgs/bum/template
+++ b/srcpkgs/bum/template
@@ -1,7 +1,7 @@
 # Template file for 'bum'
 pkgname=bum
 version=0.1.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="bum"

From a384e5462965e984f1abca2ca12b7f62b1a415d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 615/873] caffeine-ng: rebuild for Python 3.8.

---
 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 36287fbef5b..455b2f225c4 100644
--- a/srcpkgs/caffeine-ng/template
+++ b/srcpkgs/caffeine-ng/template
@@ -1,7 +1,7 @@
 # Template file for 'caffeine-ng'
 pkgname=caffeine-ng
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="caffeine"

From b857565a7a7fddfbffbcf40b9e784593d099a0a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 616/873] cairo-dock-plugins: rebuild for Python 3.8.

---
 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 9e6149c617f..0c23a7f6928 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=11
+revision=12
 build_style=cmake
 hostmakedepends="pkg-config"
 # XXX libetpan, libdbusmenu, etc

From c0c15488d9189a782c2ab6436de598620d4d2435 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 617/873] canto-curses: rebuild for Python 3.8.

---
 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 0905972b480..4270d61c2e0 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=4
+revision=5
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel ncurses-devel readline-devel"

From a821add22450c016c7b851ee1a0309da5b5d83af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 618/873] canto-next: rebuild for Python 3.8.

---
 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 fff7e82e238..fa28bde891b 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.7
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From fa2afe1224ee7d1e031e769bf84bd596e5ac6de2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 619/873] capstone: rebuild for Python 3.8.

---
 srcpkgs/capstone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/capstone/template b/srcpkgs/capstone/template
index e13c7666ed1..fded7c7157e 100644
--- a/srcpkgs/capstone/template
+++ b/srcpkgs/capstone/template
@@ -1,7 +1,7 @@
 # Template file for 'capstone'
 pkgname=capstone
 version=4.0.1
-revision=1
+revision=2
 build_style=gnu-makefile
 make_use_env=1
 hostmakedepends="python-setuptools python3-setuptools"

From 923fca0cf844d03c602bbae81add86e8be495762 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 620/873] catfish: rebuild for Python 3.8.

---
 srcpkgs/catfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/catfish/template b/srcpkgs/catfish/template
index 1b28ffcafff..b53de6b8ea6 100644
--- a/srcpkgs/catfish/template
+++ b/srcpkgs/catfish/template
@@ -1,7 +1,7 @@
 # Template file for 'catfish'
 pkgname=catfish
 version=1.4.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="catfish catfish_lib"

From fb71b3b941c7341384c307ef6e1654b8d0b54a3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 621/873] ccsm: rebuild for Python 3.8.

---
 srcpkgs/ccsm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ccsm/template b/srcpkgs/ccsm/template
index 0421e587b23..3067003017f 100644
--- a/srcpkgs/ccsm/template
+++ b/srcpkgs/ccsm/template
@@ -1,7 +1,7 @@
 # Template file for 'ccsm'
 pkgname=ccsm
 version=0.8.16
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 hostmakedepends="automake intltool libtool pkg-config python3"

From f4212d55b3ec84e188189bc74a572c728a37c66a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 622/873] cheat: rebuild for Python 3.8.

---
 srcpkgs/cheat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cheat/template b/srcpkgs/cheat/template
index b60b4ba53b2..f1e419c3c5a 100644
--- a/srcpkgs/cheat/template
+++ b/srcpkgs/cheat/template
@@ -1,7 +1,7 @@
 # Template file for 'cheat'
 pkgname=cheat
 version=2.5.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="cheat"
 conf_files="/etc/cheat"

From eb72b0be44091e56a3e5b73cdf6d11ff80ecb8ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 623/873] clearine: rebuild for Python 3.8.

---
 srcpkgs/clearine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/clearine/template b/srcpkgs/clearine/template
index 419bb3c4550..539d494b79b 100644
--- a/srcpkgs/clearine/template
+++ b/srcpkgs/clearine/template
@@ -1,7 +1,7 @@
 # Template file for 'clearine'
 pkgname=clearine
 version=0.7
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="Clearine"
 hostmakedepends="python3-setuptools"

From ca7e63827b68cba4586e81da6e622e70addc8b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 624/873] coccigrep: rebuild for Python 3.8.

---
 srcpkgs/coccigrep/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/coccigrep/template b/srcpkgs/coccigrep/template
index 736f16a458e..a02c2f78bb2 100644
--- a/srcpkgs/coccigrep/template
+++ b/srcpkgs/coccigrep/template
@@ -1,7 +1,7 @@
 # Template file for 'coccigrep'
 pkgname=coccigrep
 version=1.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coccigrep"

From 8b0269365914ae7e030b07b30f4a76f2f1726270 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 625/873] compizconfig-python: rebuild for Python 3.8.

---
 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 b9d9ce2892b..77d53c97f46 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.16
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static"
 hostmakedepends="automake intltool libtool pkg-config glib-devel gettext-devel python3-Cython"

From c7955381746f2b68e5bb140afe81526fd62a2d16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 626/873] coursera-dl: rebuild for Python 3.8.

---
 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 0dfdd73083f..2b09e53d836 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.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coursera"

From 1bf8d7143694f636186cfbdcf357f9b86f5a635b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 627/873] cozy: rebuild for Python 3.8.

---
 srcpkgs/cozy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cozy/template b/srcpkgs/cozy/template
index a35aff61f37..2515388da18 100644
--- a/srcpkgs/cozy/template
+++ b/srcpkgs/cozy/template
@@ -1,7 +1,7 @@
 # Template file for 'cozy'
 pkgname=cozy
 version=0.6.8
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 pycompile_module="cozy"

From 7b58e6f69ae54c84b50dfe4d6041cf861a698c60 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 628/873] cpuset: rebuild for Python 3.8.

---
 srcpkgs/cpuset/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cpuset/template b/srcpkgs/cpuset/template
index cf3910d2304..12b54631617 100644
--- a/srcpkgs/cpuset/template
+++ b/srcpkgs/cpuset/template
@@ -1,7 +1,7 @@
 # Template file for 'cpuset'
 pkgname=cpuset
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="cpuset"

From a542aca478f0e84bbc23d3fd91a236635712a9f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 629/873] ctop: rebuild for Python 3.8.

---
 srcpkgs/ctop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ctop/template b/srcpkgs/ctop/template
index b8ea58515b2..5231b4a4cb3 100644
--- a/srcpkgs/ctop/template
+++ b/srcpkgs/ctop/template
@@ -1,7 +1,7 @@
 # Template file for 'ctop'
 pkgname=ctop
 version=1.0.0
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="cgroup_top.py"

From b3065c411c5e0b3e48432c6901e1e7fb20eb00d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 630/873] cura: rebuild for Python 3.8.

---
 srcpkgs/cura/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cura/template b/srcpkgs/cura/template
index 31318e5aecf..ab5cd315f21 100644
--- a/srcpkgs/cura/template
+++ b/srcpkgs/cura/template
@@ -1,7 +1,7 @@
 # Template file for 'cura'
 pkgname=cura
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Cura-${version}"
 build_style=cmake

From 9f4eb67830feb2103a78edc7651e1f73cc606074 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 631/873] curseradio: rebuild for Python 3.8.

---
 srcpkgs/curseradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/curseradio/template b/srcpkgs/curseradio/template
index 4fe2306364a..f5afe3bba34 100644
--- a/srcpkgs/curseradio/template
+++ b/srcpkgs/curseradio/template
@@ -1,7 +1,7 @@
 # Template file for 'curseradio'
 pkgname=curseradio
 version=0.0.20171017
-revision=3
+revision=4
 archs=noarch
 _commit=1bd4bd0faeec675e0647bac9a100b526cba19f8d
 wrksrc="curseradio-${_commit}"

From fa4e6156adf5c317bb85ee1d8271c9e6ce57b3e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 632/873] d-feet: rebuild for Python 3.8.

---
 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 6930eddf582..7f7d593f30a 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.15
-revision=1
+revision=2
 build_style=meson
 maintainer="Enno Boland <gottox@voidlinux.org>"
 hostmakedepends="pkg-config intltool itstool python3-pycodestyle"

From d6145053ac873c90f6383dee8ec4d696463928f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 633/873] deluge: rebuild for Python 3.8.

---
 srcpkgs/deluge/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/deluge/template b/srcpkgs/deluge/template
index 6dc7f26184d..8148c68033c 100644
--- a/srcpkgs/deluge/template
+++ b/srcpkgs/deluge/template
@@ -1,7 +1,7 @@
 # Template file for 'deluge'
 pkgname=deluge
 version=2.0.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="deluge"

From 0b2691a90e5de63e49a3c3f3adfa709d618b0a05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 634/873] devedeng: rebuild for Python 3.8.

---
 srcpkgs/devedeng/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/devedeng/template b/srcpkgs/devedeng/template
index d971b2e207b..2d0516cedd3 100644
--- a/srcpkgs/devedeng/template
+++ b/srcpkgs/devedeng/template
@@ -1,7 +1,7 @@
 # Template file for 'devedeng'
 pkgname=devedeng
 version=4.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="devedeng"

From 8b7c3bcfced7b21089b0a64ac1c375eb973af343 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 635/873] distcc: rebuild for Python 3.8.

---
 srcpkgs/distcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/distcc/template b/srcpkgs/distcc/template
index ded4255becd..4d6a450533f 100644
--- a/srcpkgs/distcc/template
+++ b/srcpkgs/distcc/template
@@ -1,7 +1,7 @@
 # Template file for 'distcc'
 pkgname=distcc
 version=3.3.3
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-Werror --with-gtk"
 conf_files="

From 98151a807bebdc6d5e41e0b6a1bd0d65659fbb7e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 636/873] docker-compose: rebuild for Python 3.8.

---
 srcpkgs/docker-compose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/docker-compose/template b/srcpkgs/docker-compose/template
index c3383fdf1ad..f4a34005c83 100644
--- a/srcpkgs/docker-compose/template
+++ b/srcpkgs/docker-compose/template
@@ -1,7 +1,7 @@
 # Template file for 'docker-compose'
 pkgname=docker-compose
 version=1.24.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="compose-${version}"
 build_style=python3-module

From 9dc2f62edc54b5e314c24fe7bb303496223adb45 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 637/873] edx-dl: rebuild for Python 3.8.

---
 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 209884640c6..a51c917d606 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.10
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="edx_dl"

From 6a769ff00b2fc959627e96d44172f8a656548751 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 638/873] electrum: rebuild for Python 3.8.

---
 srcpkgs/electrum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template
index 3861becdda9..7525e08e9e2 100644
--- a/srcpkgs/electrum/template
+++ b/srcpkgs/electrum/template
@@ -1,7 +1,7 @@
 # Template file for 'electrum'
 pkgname=electrum
 version=3.3.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electrum electrum_gui electrum_plugins"

From be52dccd4b30af3377095664bf239767a0f7be39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 639/873] electrum-ltc: rebuild for Python 3.8.

---
 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 ad6f745e152..cf7265fbec8 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.6.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"

From 45951afeb4bab3066e0459cf1441d9c3570c85dc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 640/873] eolie: rebuild for Python 3.8.

---
 srcpkgs/eolie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eolie/template b/srcpkgs/eolie/template
index b3da3dcd829..94514510c98 100644
--- a/srcpkgs/eolie/template
+++ b/srcpkgs/eolie/template
@@ -1,7 +1,7 @@
 # Template file for 'eolie'
 pkgname=eolie
 version=0.9.62
-revision=1
+revision=2
 _eolie_hash=bb4aad19272cc636bd17f2f6602127fe
 build_style=meson
 pycompile_module="eolie"

From ad02dba2226dbfc6b1fb5e715af8b58821cd8c07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 641/873] eyeD3: rebuild for Python 3.8.

---
 srcpkgs/eyeD3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eyeD3/template b/srcpkgs/eyeD3/template
index 7be047810bd..211553f0adb 100644
--- a/srcpkgs/eyeD3/template
+++ b/srcpkgs/eyeD3/template
@@ -1,7 +1,7 @@
 # Template file for 'eyeD3'
 pkgname=eyeD3
 version=0.8.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="eyed3"

From 5333d561e8831b7103f00f5e4564ce20bc26e9b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 642/873] fail2ban: rebuild for Python 3.8.

---
 srcpkgs/fail2ban/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 829e93385dc..361bcd12edd 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,7 +1,7 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
 version=0.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From 6ed6f50c8422b21b0f8244e983014120a3467562 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 643/873] fava: rebuild for Python 3.8.

---
 srcpkgs/fava/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fava/template b/srcpkgs/fava/template
index 24e66cac45b..890858b095b 100644
--- a/srcpkgs/fava/template
+++ b/srcpkgs/fava/template
@@ -1,7 +1,7 @@
 # Template file for 'fava'
 pkgname=fava
 version=1.11
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fava"

From cfe04c8e627d5d3626d852a05f3a87ecf053557f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 644/873] fierce: rebuild for Python 3.8.

---
 srcpkgs/fierce/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fierce/template b/srcpkgs/fierce/template
index 86dedb39ad2..86692c6457b 100644
--- a/srcpkgs/fierce/template
+++ b/srcpkgs/fierce/template
@@ -1,7 +1,7 @@
 # Template file for 'fierce'
 pkgname=fierce
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fierce"

From c67a6380bd6f21a660d10cde09cb2930536faee5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 645/873] fifengine: rebuild for Python 3.8.

---
 srcpkgs/fifengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fifengine/template b/srcpkgs/fifengine/template
index 1d4bcbb9297..871c94ad7e0 100644
--- a/srcpkgs/fifengine/template
+++ b/srcpkgs/fifengine/template
@@ -1,7 +1,7 @@
 # Template file for 'fifengine'
 pkgname=fifengine
 version=0.4.2
-revision=1
+revision=2
 build_style=cmake
 pycompile_module="fife"
 hostmakedepends="swig python3"

From 407bb3354f4705ac3e7d9c40479ff7272cbf5478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 646/873] flake8: rebuild for Python 3.8.

---
 srcpkgs/flake8/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/flake8/template b/srcpkgs/flake8/template
index d8f2b095644..4d7ebeba176 100644
--- a/srcpkgs/flake8/template
+++ b/srcpkgs/flake8/template
@@ -1,7 +1,7 @@
 # Template file for 'flake8'
 pkgname=flake8
 version=3.7.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="flake8"

From 770a2460b2b1f167fe87687c22ab0ff3d925964d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 647/873] fontforge: fix and rebuild for Python 3.8.

---
 srcpkgs/fontforge/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/fontforge/template b/srcpkgs/fontforge/template
index 7fb02d7e371..2893bc52cfb 100644
--- a/srcpkgs/fontforge/template
+++ b/srcpkgs/fontforge/template
@@ -1,7 +1,7 @@
 # Template file for 'fontforge'
 pkgname=fontforge
 version=20190801
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake ca-certificates git libltdl-devel libtool m4
  pkg-config python3"
@@ -20,6 +20,7 @@ checksum="e4501de5bd8e7f6c68fe7d3abd4667bf44a07b981d342ffa00e8f42e155ce633
  1bf9c7eb8835e6ed94e62cb49f1141bc046c562849e52e6c3c7f1d7cfc95c7b3"
 
 pre_configure() {
+        sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION}/&-embed/g' m4/fontforge_arg_enable.m4
 	./bootstrap
 }
 

From b878e1d66ee439999393e2aa55941b07f8e6c745 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 648/873] gajim: rebuild for Python 3.8.

---
 srcpkgs/gajim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gajim/template b/srcpkgs/gajim/template
index 8c49c0cf6ef..e81015b3906 100644
--- a/srcpkgs/gajim/template
+++ b/srcpkgs/gajim/template
@@ -1,7 +1,7 @@
 # Template file for 'gajim'
 pkgname=gajim
 version=1.1.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gajim"

From e0ad178e264be367206a16d9b96524e6d37e4b22 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 649/873] gajim-omemo: rebuild for Python 3.8.

---
 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 803f94713be..64d47228496 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.6.29
-revision=1
+revision=2
 wrksrc="omemo"
 hostmakedepends="unzip"
 depends="python3 python3-setuptools python3-cryptography python3-axolotl python3-qrcode"

From 4988da06fe14563631406801f6b22795355576a4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 650/873] gallery-dl: rebuild for Python 3.8.

---
 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 a1e8c633fe3..62b338a32e3 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.10.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gallery_dl"

From 7d5c0c0d7a1dcc5f3c504ed769a3730c7d688ed3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 651/873] gandi-cli: rebuild for Python 3.8.

---
 srcpkgs/gandi-cli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gandi-cli/template b/srcpkgs/gandi-cli/template
index c5e805a09fd..4193bfe4638 100644
--- a/srcpkgs/gandi-cli/template
+++ b/srcpkgs/gandi-cli/template
@@ -1,7 +1,7 @@
 # Template file for 'gandi-cli'
 pkgname=gandi-cli
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="gandi.cli-${version}"
 build_style=python3-module

From 7ae81741d5a1d24c19e0950a8631b2afb2f66301 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 652/873] gcovr: rebuild for Python 3.8.

---
 srcpkgs/gcovr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gcovr/template b/srcpkgs/gcovr/template
index 2b9ff94bf2a..0d4addfc8a7 100644
--- a/srcpkgs/gcovr/template
+++ b/srcpkgs/gcovr/template
@@ -1,7 +1,7 @@
 # Template file for 'gcovr'
 pkgname=gcovr
 version=4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gcovr"

From ff745f27bbeb2148c202a6cfde42c27c27ffb081 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 653/873] gedit: rebuild for Python 3.8.

---
 srcpkgs/gedit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gedit/template b/srcpkgs/gedit/template
index 904d3b7c3c4..6666c331c52 100644
--- a/srcpkgs/gedit/template
+++ b/srcpkgs/gedit/template
@@ -1,7 +1,7 @@
 # Template file for 'gedit'
 pkgname=gedit
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gi/overrides"

From 6d37a1560ee94e42e383c5bc4cba87d59366a1bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 654/873] geis: rebuild for Python 3.8.

---
 srcpkgs/geis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/geis/template b/srcpkgs/geis/template
index fe31a3d2aeb..20afe76b0d8 100644
--- a/srcpkgs/geis/template
+++ b/srcpkgs/geis/template
@@ -1,7 +1,7 @@
 # Template file for 'geis'
 pkgname=geis
 version=2.2.17
-revision=4
+revision=5
 hostmakedepends="pkg-config python3-devel"
 makedepends="dbus-devel grail-devel frame-devel libXi-devel python3-devel xorg-server-devel"
 build_style="gnu-configure"

From 83ad8dc7e8dc71c64a9004e04aba36ca30c051fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 655/873] git-cola: rebuild for Python 3.8.

---
 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 7eaba90f3be..fd0bbf971d3 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.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/share/git-cola/lib"

From 69e4bac4c10842ce70ce2a1db26f883af407e79c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 656/873] git-review: rebuild for Python 3.8.

---
 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 d999dc87b16..c180cc60780 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="git_review"

From 7c0a260d7120bd5e0e4e27c6b30b83e9dfe60359 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 657/873] git-revise: rebuild for Python 3.8.

---
 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 4179a52bddc..a1bf51dc447 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.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gitrevise"

From 49a8265f4cd71c84814307928cbbd2eb33c4bbad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 658/873] gitg: rebuild for Python 3.8.

---
 srcpkgs/gitg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gitg/template b/srcpkgs/gitg/template
index e0da8e9490d..a3381fdb3a7 100644
--- a/srcpkgs/gitg/template
+++ b/srcpkgs/gitg/template
@@ -1,7 +1,7 @@
 # Template file for 'gitg'
 pkgname=gitg
 version=3.32.1
-revision=1
+revision=2
 build_style=meson
 hostmakedepends="intltool pkg-config gobject-introspection vala glib-devel"
 makedepends="gtksourceview-devel libgit2-glib-devel libgee08-devel gtkspell3-devel

From 5b5919636d70cb1259ebd7740e9b55936a7c29f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 659/873] glances: rebuild for Python 3.8.

---
 srcpkgs/glances/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glances/template b/srcpkgs/glances/template
index 6d4766493c3..753d9e20c92 100644
--- a/srcpkgs/glances/template
+++ b/srcpkgs/glances/template
@@ -1,7 +1,7 @@
 # Template file for 'glances'
 pkgname=glances
 version=3.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Glances-${version}"
 build_style=python3-module

From 8b16492c679f3eb6c6ae2d4573f9adeb356715be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 660/873] glusterfs: rebuild for Python 3.8.

---
 srcpkgs/glusterfs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glusterfs/template b/srcpkgs/glusterfs/template
index a1304e266fe..90093864286 100644
--- a/srcpkgs/glusterfs/template
+++ b/srcpkgs/glusterfs/template
@@ -1,7 +1,7 @@
 # Template file for 'glusterfs'
 pkgname=glusterfs
 version=6.5
-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 22925c23326876f7422d67e1f21f0e629b9c7ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 661/873] gnome-authenticator: rebuild for Python 3.8.

---
 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 52d161897c7..ab7c505c0fe 100644
--- a/srcpkgs/gnome-authenticator/template
+++ b/srcpkgs/gnome-authenticator/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-authenticator'
 pkgname=gnome-authenticator
 version=0.2.4
-revision=2
+revision=3
 _libgd_hash=7ae254bfc5f641c60566614e08245176f7bc5aa8
 wrksrc="Authenticator-${version}"
 build_style=meson

From 4130139a7454a2050f48c6feac4f9312c50219d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 662/873] gnome-music: rebuild for Python 3.8.

---
 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 bceb7c369c8..e2fbbcbdeca 100644
--- a/srcpkgs/gnome-music/template
+++ b/srcpkgs/gnome-music/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-music'
 pkgname=gnome-music
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gnomemusic"

From 94b0589cc1f42f2505ac86d6596ab748ab75e02f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 663/873] gnome-passbook: rebuild for Python 3.8.

---
 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 54035dc920b..89047338503 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.1
-revision=1
+revision=2
 _release_hash=0a227cfdf706f4bfcc0b782026f1aeb2
 wrksrc="passbook-${version}"
 build_style=meson

From 76dae990f2ec69291f7826391c7a375014867fb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 664/873] gnome-passwordsafe: rebuild for Python 3.8.

---
 srcpkgs/gnome-passwordsafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnome-passwordsafe/template b/srcpkgs/gnome-passwordsafe/template
index f310ce03a08..8f1f19174d2 100644
--- a/srcpkgs/gnome-passwordsafe/template
+++ b/srcpkgs/gnome-passwordsafe/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-passwordsafe'
 pkgname=gnome-passwordsafe
 version=3.32.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="PasswordSafe-${version}"
 build_style=meson

From ebb227d14a2271cc033506f2dd54957eecc5b719 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 665/873] gns3-gui: rebuild for Python 3.8.

---
 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 38751dea59b..f4318dc6afc 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.1.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3"

From b44e9cf882e059036ed7e3834cafdf689c956e32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 666/873] gns3-net-converter: rebuild for Python 3.8.

---
 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 b9b7403e8a6..70b6c90e8c8 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=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3converter"

From eaf37536ad96d1421cc95823589d2cd21779089d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 667/873] gns3-server: rebuild for Python 3.8.

---
 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 6bd9c067b20..739c584cb7c 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.1.21
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="gns3server"
 hostmakedepends="python3-setuptools"

From 3a2540b9e2143af7b07dcaee0ed3930b9016dc1e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 668/873] gnucash: rebuild for Python 3.8.

---
 srcpkgs/gnucash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnucash/template b/srcpkgs/gnucash/template
index 68bb811fc42..d8ff0a8ec86 100644
--- a/srcpkgs/gnucash/template
+++ b/srcpkgs/gnucash/template
@@ -1,7 +1,7 @@
 # Template file for 'gnucash'
 pkgname=gnucash
 version=3.7
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DWITH_SQL=0 -DWITH_PYTHON=1"
 hostmakedepends="pkg-config guile python3 libxslt perl"

From c1420969fc916318d29dfdc3836adf0580095969 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 669/873] gom: rebuild for Python 3.8.

---
 srcpkgs/gom/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gom/template b/srcpkgs/gom/template
index 6ec2a5e338f..0b45e19def4 100644
--- a/srcpkgs/gom/template
+++ b/srcpkgs/gom/template
@@ -1,7 +1,7 @@
 # Template file for 'gom'
 pkgname=gom
 version=0.3.3
-revision=3
+revision=4
 build_style=meson
 build_helper="gir"
 configure_args="-Denable-introspection=$(vopt_if gir true false)

From e55d5d66739df70ca67793cbca3b12aa5f01e751 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 670/873] gpodder: rebuild for Python 3.8.

---
 srcpkgs/gpodder/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gpodder/template b/srcpkgs/gpodder/template
index 7c7414e19cd..5cc63ab4205 100644
--- a/srcpkgs/gpodder/template
+++ b/srcpkgs/gpodder/template
@@ -1,7 +1,7 @@
 # Template file for 'gpodder'
 pkgname=gpodder
 version=3.10.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="gpodder-${version}"
 make_check_target=unittest

From d91d30f5f2b0b5e6323da1f35eaf923fed0a111f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 671/873] gramps: rebuild for Python 3.8.

---
 srcpkgs/gramps/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gramps/template b/srcpkgs/gramps/template
index 9d1d1a4616a..5d40aeefb49 100644
--- a/srcpkgs/gramps/template
+++ b/srcpkgs/gramps/template
@@ -1,7 +1,7 @@
 # Template file for 'gramps'
 pkgname=gramps
 version=5.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gramps"

From bb3e960f11dda36c822c8bd1e8575b2a69ce9a66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 672/873] greg: rebuild for Python 3.8.

---
 srcpkgs/greg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/greg/template b/srcpkgs/greg/template
index 9c15ba82f4b..d898d5fdf61 100644
--- a/srcpkgs/greg/template
+++ b/srcpkgs/greg/template
@@ -1,7 +1,7 @@
 # Template file for 'greg'
 pkgname=greg
 version=0.4.7
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 pycompile_module="greg"

From be202bce8c20fb165e811e32683e96aae42b1452 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 673/873] gst1-python3: rebuild for Python 3.8.

---
 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 6f02f19aca3..bf946f6a8bf 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.16.1
-revision=1
+revision=2
 wrksrc="gst-python-${version}"
 build_style=meson
 pycompile_module="gi/overrides"

From b9ef9fe5fb2d7b03831106592cfae54a25c41a0f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 674/873] guake: rebuild for Python 3.8.

---
 srcpkgs/guake/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/guake/template b/srcpkgs/guake/template
index 86eaba649a7..d92fdf89355 100644
--- a/srcpkgs/guake/template
+++ b/srcpkgs/guake/template
@@ -1,7 +1,7 @@
 # Template file for 'guake'
 pkgname=guake
 version=3.6.3
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 wrksrc="Guake-${version}"

From a53d49cbf26761960b1d159a12df007b627e7650 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 675/873] gufw: rebuild for Python 3.8.

---
 srcpkgs/gufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gufw/template b/srcpkgs/gufw/template
index d2b8a4b025d..a4e7d861d71 100644
--- a/srcpkgs/gufw/template
+++ b/srcpkgs/gufw/template
@@ -1,7 +1,7 @@
 # Template file for 'gufw'
 pkgname=gufw
 version=19.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="gui-ufw-${version}"
 build_style=python3-module

From 165d3546e52431e5cb6d8f7534344eb7da2982a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 676/873] hamlib: rebuild for Python 3.8.

---
 srcpkgs/hamlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hamlib/template b/srcpkgs/hamlib/template
index c28a069cd6f..d52436c0893 100644
--- a/srcpkgs/hamlib/template
+++ b/srcpkgs/hamlib/template
@@ -1,7 +1,7 @@
 # Template file for 'hamlib'
 pkgname=hamlib
 version=3.3
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static --with-perl-binding --with-python-binding
  --with-tcl-binding --with-xml-support"

From fe67c3b8e01dac359eba93dada80286f4b7bd546 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 677/873] hangups: rebuild for Python 3.8.

---
 srcpkgs/hangups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hangups/template b/srcpkgs/hangups/template
index 0a2f2db16b4..0837a2c47c3 100644
--- a/srcpkgs/hangups/template
+++ b/srcpkgs/hangups/template
@@ -1,7 +1,7 @@
 # Template file for 'hangups'
 pkgname=hangups
 version=0.4.9
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="hangups"
 hostmakedepends="python3-setuptools"

From 54c05618d6ea2a636e7649b6dfb4df7e9097df99 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 678/873] hplip: rebuild for Python 3.8.

---
 srcpkgs/hplip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hplip/template b/srcpkgs/hplip/template
index 07a707569f6..3ef76e4591b 100644
--- a/srcpkgs/hplip/template
+++ b/srcpkgs/hplip/template
@@ -1,7 +1,7 @@
 # Template file for 'hplip'
 pkgname=hplip
 version=3.19.8
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="usr/share/hplip"
 configure_args="

From b9133921feebbc073c9d3cecdc138c34dd553caa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 679/873] httpie: rebuild for Python 3.8.

---
 srcpkgs/httpie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/httpie/template b/srcpkgs/httpie/template
index 387af8ebf05..61fc1499d35 100644
--- a/srcpkgs/httpie/template
+++ b/srcpkgs/httpie/template
@@ -1,7 +1,7 @@
 # Template file for 'httpie'
 pkgname=httpie
 version=1.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="httpie"

From 6c6626a47930ae266d4f95bc011f99e15b7237a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 680/873] ibus: rebuild for Python 3.8.

---
 srcpkgs/ibus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ibus/template b/srcpkgs/ibus/template
index 4875c7535d6..d3c35d786a4 100644
--- a/srcpkgs/ibus/template
+++ b/srcpkgs/ibus/template
@@ -1,7 +1,7 @@
 # Template file for 'ibus'
 pkgname=ibus
 version=1.5.20
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 configure_args="--enable-ui --enable-gtk3 --disable-tests

From ad8f78bd52e9d9925d746e1bbca9a926040dc866 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 681/873] iotop: rebuild for Python 3.8.

---
 srcpkgs/iotop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template
index 146a9e97791..522bf32a7c2 100644
--- a/srcpkgs/iotop/template
+++ b/srcpkgs/iotop/template
@@ -1,7 +1,7 @@
 # Template file for 'iotop'
 pkgname=iotop
 version=0.6
-revision=5
+revision=6
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From bf6b1d411e5f8d2459161a4599d66d7148220c48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 682/873] jrnl: rebuild for Python 3.8.

---
 srcpkgs/jrnl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template
index 3d08f129885..b184ef09508 100644
--- a/srcpkgs/jrnl/template
+++ b/srcpkgs/jrnl/template
@@ -1,7 +1,7 @@
 # Template file for 'jrnl'
 pkgname=jrnl
 version=1.9.8
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="jrnl"

From 3262fda476f3282359c09dd2902deac5997a3394 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 683/873] khal: rebuild for Python 3.8.

---
 srcpkgs/khal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khal/template b/srcpkgs/khal/template
index 39d08a66ba8..a73516695bf 100644
--- a/srcpkgs/khal/template
+++ b/srcpkgs/khal/template
@@ -1,7 +1,7 @@
 # Template file for 'khal'
 pkgname=khal
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khal"

From be7f25caca1d74c5f9f58c4cc40c3f3f889971d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 684/873] khard: rebuild for Python 3.8.

---
 srcpkgs/khard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khard/template b/srcpkgs/khard/template
index 6c6f3024be1..3ec9f398d99 100644
--- a/srcpkgs/khard/template
+++ b/srcpkgs/khard/template
@@ -1,7 +1,7 @@
 # Template file for 'khard'
 pkgname=khard
 version=0.14.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khard"

From 0509f15447526a6132348baf9eb600d22a0c20f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 685/873] lfm: rebuild for Python 3.8.

---
 srcpkgs/lfm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lfm/template b/srcpkgs/lfm/template
index 0a0a3b4f563..1e0e7cf29fa 100644
--- a/srcpkgs/lfm/template
+++ b/srcpkgs/lfm/template
@@ -1,7 +1,7 @@
 # Template file for 'lfm'
 pkgname=lfm
 version=3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 9ac423037b0a4806134116f0b6501d27f2bb3047 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 686/873] libArcus: rebuild for Python 3.8.

---
 srcpkgs/libArcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libArcus/template b/srcpkgs/libArcus/template
index 8e6c97ada21..d2ffda576d4 100644
--- a/srcpkgs/libArcus/template
+++ b/srcpkgs/libArcus/template
@@ -1,7 +1,7 @@
 # Template file for 'libArcus'
 pkgname=libArcus
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DBUILD_EXAMPLES=OFF"
 hostmakedepends="protobuf python3-sip-devel"

From 8a5c0bc1b4d750fbb633dcfb68645bdb8e23ac37 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 687/873] libSavitar: rebuild for Python 3.8.

---
 srcpkgs/libSavitar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libSavitar/template b/srcpkgs/libSavitar/template
index a9d3020158f..213f02f4d65 100644
--- a/srcpkgs/libSavitar/template
+++ b/srcpkgs/libSavitar/template
@@ -1,7 +1,7 @@
 # Template file for 'libSavitar'
 pkgname=libSavitar
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 hostmakedepends="python3"
 makedepends="python3-sip-devel python3-devel pugixml-devel"

From 888da49c1bb8061c80359b4015485b151f0d74d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 688/873] libaccounts-glib: rebuild for Python 3.8.

---
 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 717be24f209..239f9307261 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=2
+revision=3
 wrksrc="${pkgname}-VERSION_${version}-8948717702424ce15f4e23e5db2c8ce0799ec120"
 build_style=meson
 hostmakedepends="gtk-doc pkg-config glib-devel gobject-introspection vala"

From bd98c3c06982e10c3f9df1df66d5b04f1a5ef434 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 689/873] libblockdev: rebuild for Python 3.8.

---
 srcpkgs/libblockdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libblockdev/template b/srcpkgs/libblockdev/template
index 1df156e3c5b..ff20fc70618 100644
--- a/srcpkgs/libblockdev/template
+++ b/srcpkgs/libblockdev/template
@@ -1,7 +1,7 @@
 # Template file for 'libblockdev'
 pkgname=libblockdev
 version=2.21
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="cryptsetup-devel device-mapper-devel dmraid-devel libbytesize-devel

From 41b298fd633e7e588071f06e8d421ed9b2c21a8c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 690/873] libbytesize: rebuild for Python 3.8.

---
 srcpkgs/libbytesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libbytesize/template b/srcpkgs/libbytesize/template
index ee1862d889d..e07cdf29a82 100644
--- a/srcpkgs/libbytesize/template
+++ b/srcpkgs/libbytesize/template
@@ -1,7 +1,7 @@
 # Template file for 'libbytesize'
 pkgname=libbytesize
 version=1.4
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python3"
 makedepends="mpfr-devel pcre-devel"

From bdb495aaf63cb8b79a83eda9623e54e67de33d75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 691/873] libcap-ng: rebuild for Python 3.8.

---
 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 f462636c4c1..c6ec4f0a216 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.7.10
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-python --without-python3"
 short_desc="Alternate POSIX capabilities library"

From 64a29440ad0bb81db7db97e461b4b68478993d17 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 692/873] libffado: rebuild for Python 3.8.

---
 srcpkgs/libffado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libffado/template b/srcpkgs/libffado/template
index a9b6a5ec6a8..d566806bd82 100644
--- a/srcpkgs/libffado/template
+++ b/srcpkgs/libffado/template
@@ -1,7 +1,7 @@
 # Template file for 'libffado'
 pkgname=libffado
 version=2.4.1
-revision=1
+revision=2
 build_style=scons
 make_build_args="PREFIX=/usr MANDIR=/usr/share/man
  UDEVDIR=/usr/lib/udev/rules.d CUSTOM_ENV=1 BUILD_TESTS=0

From 3ac32b19e51680d2330b26da6cb8d640904fcb75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 693/873] libgit2-glib: rebuild for Python 3.8.

---
 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 05389a18258..ce68cb35d66 100644
--- a/srcpkgs/libgit2-glib/template
+++ b/srcpkgs/libgit2-glib/template
@@ -1,7 +1,7 @@
 # Template file for 'libgit2-glib'
 pkgname=libgit2-glib
 version=0.28.0.1
-revision=1
+revision=2
 build_style=meson
 build_helper="gir"
 configure_args="-Dintrospection=$(vopt_if gir true false)

From 6950f9e7571c268c087d93d7e94d169a8fb8291b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 694/873] libixion: rebuild for Python 3.8.

---
 srcpkgs/libixion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libixion/template b/srcpkgs/libixion/template
index 5d2c58ee7c0..dbc05d8b9c1 100644
--- a/srcpkgs/libixion/template
+++ b/srcpkgs/libixion/template
@@ -2,7 +2,7 @@
 pkgname=libixion
 reverts="0.15.0_1"
 version=0.14.1
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="boost-devel mdds python3-devel"

From 45a847c34a550d9cc64985d24ef9b306aade5790 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 695/873] liblouis: rebuild for Python 3.8.

---
 srcpkgs/liblouis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liblouis/template b/srcpkgs/liblouis/template
index 77194ad8820..13c29b62b21 100644
--- a/srcpkgs/liblouis/template
+++ b/srcpkgs/liblouis/template
@@ -1,7 +1,7 @@
 # Template file for 'liblouis'
 pkgname=liblouis
 version=3.9.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--enable-ucs4"
 pycompile_module="louis"

From f79d54ca6d5162f4f17a9cae76f0bd941deaf438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 696/873] opencv: rebuild for Python 3.8.

---
 srcpkgs/opencv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/opencv/template b/srcpkgs/opencv/template
index fcc38299f23..474b77be181 100644
--- a/srcpkgs/opencv/template
+++ b/srcpkgs/opencv/template
@@ -1,7 +1,7 @@
 # Template file for 'opencv'
 pkgname=opencv
 version=3.4.5
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_PRECOMPILED_HEADERS=OFF -DWITH_OPENMP=ON
  -DWITH_OPENCL=ON -DENABLE_CXX11=ON -DOPENCV_SKIP_PYTHON_LOADER=ON

From f3399fca6f67a8990fa1adc144bd949c0a5c66c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 697/873] libopenshot: rebuild for Python 3.8.

---
 srcpkgs/libopenshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libopenshot/template b/srcpkgs/libopenshot/template
index e1ac18faf93..dab1f2ae1e3 100644
--- a/srcpkgs/libopenshot/template
+++ b/srcpkgs/libopenshot/template
@@ -1,7 +1,7 @@
 # Template file for 'libopenshot'
 pkgname=libopenshot
 version=0.2.3
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 build_style=cmake
 pycompile_module="openshot.py"

From c7902fc599bfc61c600307df6f75acfadf8e612e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 698/873] liborcus: rebuild for Python 3.8.

---
 srcpkgs/liborcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liborcus/template b/srcpkgs/liborcus/template
index 3523d7830d8..e7704c43974 100644
--- a/srcpkgs/liborcus/template
+++ b/srcpkgs/liborcus/template
@@ -2,7 +2,7 @@
 pkgname=liborcus
 reverts="0.15.0_1"
 version=0.14.1
-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 aec13b74f5953d86ed1dab8574a9bb836924a3da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 699/873] libpwquality: rebuild for Python 3.8.

---
 srcpkgs/libpwquality/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpwquality/template b/srcpkgs/libpwquality/template
index e5a656236d7..6c2209155a3 100644
--- a/srcpkgs/libpwquality/template
+++ b/srcpkgs/libpwquality/template
@@ -1,7 +1,7 @@
 # Template file for 'libpwquality'
 pkgname=libpwquality
 version=1.4.1
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static --enable-pam --with-securedir=/usr/lib/security"
 hostmakedepends="libtool automake gettext-devel"

From a5604d1184badc5a3b5afb2426bc910d703ee0f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 700/873] libsearpc: rebuild for Python 3.8.

---
 srcpkgs/libsearpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsearpc/template b/srcpkgs/libsearpc/template
index 61f68e5e7de..a7e0b9ce05c 100644
--- a/srcpkgs/libsearpc/template
+++ b/srcpkgs/libsearpc/template
@@ -1,7 +1,7 @@
 # Template file for 'libsearpc'
 pkgname=libsearpc
 version=3.1.0
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="pysearpc"
 configure_args="PYTHON=python3 --disable-static --disable-compile-demo"

From 5aaa024e287c3460065dbe861abc25499a281e07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 701/873] libtorrent-rasterbar: fix and rebuild for Python 3.8.

---
 srcpkgs/libtorrent-rasterbar/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libtorrent-rasterbar/template b/srcpkgs/libtorrent-rasterbar/template
index 118108c6184..51b7175fb81 100644
--- a/srcpkgs/libtorrent-rasterbar/template
+++ b/srcpkgs/libtorrent-rasterbar/template
@@ -1,9 +1,9 @@
 # Template file for 'libtorrent-rasterbar'
 pkgname=libtorrent-rasterbar
 version=1.1.13
-revision=3
+revision=4
 build_style=gnu-configure
-configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=boost_python36"
+configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=libboost_python${py3_ver/./}"
 hostmakedepends="automake pkg-config intltool libtool python3-devel"
 makedepends="libressl-devel boost-devel geoip-devel python3-devel"
 short_desc="C++ bittorrent library by Rasterbar Software"
@@ -14,9 +14,9 @@ distfiles="https://github.com/arvidn/libtorrent/releases/download/libtorrent-${v
 checksum=30040719858e3c06634764e0c1778738eb42ecd0b45e814afa746329a948ead7
 
 pre_configure() {
-	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython3.6m"
+	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython${py3_ver}${py3_abiver}"
 	autoreconf -fi
 }
 

From 75ce8cab25904eeb4975663fb77b4f29c10c1dbe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 702/873] libvirt-python: rebuild for Python 3.8.

---
 srcpkgs/libvirt-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvirt-python/template b/srcpkgs/libvirt-python/template
index a2f0e038166..56253c9d3b0 100644
--- a/srcpkgs/libvirt-python/template
+++ b/srcpkgs/libvirt-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libvirt-python'
 pkgname=libvirt-python
 version=5.8.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="libvirt.py libvirt_lxc.py libvirt_qemu.py"
 hostmakedepends="pkg-config python-devel python3-devel libvirt-devel"

From 5e9842585a68fb832637cdd1b5adcd50bc48841b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 703/873] libvoikko: rebuild for Python 3.8.

---
 srcpkgs/libvoikko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvoikko/template b/srcpkgs/libvoikko/template
index 8d21b0f9c71..ba8eef837ee 100644
--- a/srcpkgs/libvoikko/template
+++ b/srcpkgs/libvoikko/template
@@ -1,7 +1,7 @@
 # Template file for 'libvoikko'
 pkgname=libvoikko
 version=4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-hfst=false --with-dictionary-path=/usr/share/voikko"
 pycompile_module="libvoikko.py"

From 8141b26019c7a2414b15fcf8b8672eb24047f49d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 704/873] libxml2-python: rebuild for Python 3.8.

---
 srcpkgs/libxml2-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libxml2-python/template b/srcpkgs/libxml2-python/template
index a80208823c2..5514ed43437 100644
--- a/srcpkgs/libxml2-python/template
+++ b/srcpkgs/libxml2-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libxml2-python'
 pkgname=libxml2-python
 version=2.9.9
-revision=3
+revision=4
 wrksrc="${pkgname%-python}-${version}"
 build_wrksrc=python
 build_style=python-module

From 70f5881f1b341100ddc517ba0f4b54e161303165 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 705/873] lightdm-gtk-greeter-settings: rebuild for Python 3.8.

---
 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 715f41bbef4..76a25b91e4c 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=1
+revision=2
 build_style=python3-module
 pycompile_module="lightdm_gtk_greeter_settings"
 hostmakedepends="python3-distutils-extra intltool"

From 04c380043914f79a0c6cd3199748bb0fb2e37967 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 706/873] llvm9: rebuild for Python 3.8.

---
 srcpkgs/llvm9/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/llvm9/template b/srcpkgs/llvm9/template
index 3c1a1a3451b..890a93855d8 100644
--- a/srcpkgs/llvm9/template
+++ b/srcpkgs/llvm9/template
@@ -1,7 +1,7 @@
 # Template file for 'llvm9'
 pkgname=llvm9
 version=9.0.0
-revision=2
+revision=3
 wrksrc="llvm-${version}.src"
 build_style=cmake
 configure_args="

From 4778e7a0c73ffa2fae833fee20ac790fef99fff9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 707/873] lollypop: rebuild for Python 3.8.

---
 srcpkgs/lollypop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lollypop/template b/srcpkgs/lollypop/template
index 56ace773bf3..3bd13c0d387 100644
--- a/srcpkgs/lollypop/template
+++ b/srcpkgs/lollypop/template
@@ -1,7 +1,7 @@
 # Template file for 'lollypop'
 pkgname=lollypop
 version=1.1.4.16
-revision=1
+revision=2
 # Gitlab upload tag hash
 _uhash=6b4e4e7a2c17f0770c1e2b3354ae5a3a
 archs=noarch

From 6041a22c11224f7e771c92e9f61adf7eaf37450a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 708/873] lutris: rebuild for Python 3.8.

---
 srcpkgs/lutris/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lutris/template b/srcpkgs/lutris/template
index 8f54d693a12..75be521cc7c 100644
--- a/srcpkgs/lutris/template
+++ b/srcpkgs/lutris/template
@@ -1,7 +1,7 @@
 # Template file for 'lutris'
 pkgname=lutris
 version=0.5.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 build_helper="gir"

From 768559bee2d66197ffebf07de70d31e1098fe2a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 709/873] magic-wormhole: rebuild for Python 3.8.

---
 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 c07753ce6ad..d93a1bbe1fc 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.11.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wormhole"

From 2a5b126fdf712642756c4d70a6a679f4479b504c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 710/873] mate-tweak: rebuild for Python 3.8.

---
 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 85b829e85e8..76b79524269 100644
--- a/srcpkgs/mate-tweak/template
+++ b/srcpkgs/mate-tweak/template
@@ -1,7 +1,7 @@
 # Template file for 'mate-tweak'
 pkgname=mate-tweak
 version=19.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-pbr python3-setuptools"

From 2717d85b6903ce0f45484d5f051e477d27e68ff3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 711/873] med: rebuild for Python 3.8.

---
 srcpkgs/med/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/med/template b/srcpkgs/med/template
index 34dd6d006d6..acd79293246 100644
--- a/srcpkgs/med/template
+++ b/srcpkgs/med/template
@@ -1,7 +1,7 @@
 # Template file for 'med'
 pkgname=med
 version=4.0.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--with-swig=yes --includedir=/usr/include/med"
 pycompile_module=med

From e6073b9b26be31845b922008dc6d5083ec2516e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 712/873] meld: rebuild for Python 3.8.

---
 srcpkgs/meld/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meld/template b/srcpkgs/meld/template
index 9ed6114299e..7cbac065ce6 100644
--- a/srcpkgs/meld/template
+++ b/srcpkgs/meld/template
@@ -1,7 +1,7 @@
 # Template file for 'meld'
 pkgname=meld
 version=3.20.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="meld"

From 30bbbb75eda44c4dfeac15c27223fe671d4703ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 713/873] menulibre: rebuild for Python 3.8.

---
 srcpkgs/menulibre/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/menulibre/template b/srcpkgs/menulibre/template
index 64311115bec..f16c5f64337 100644
--- a/srcpkgs/menulibre/template
+++ b/srcpkgs/menulibre/template
@@ -1,7 +1,7 @@
 # Template file for 'menulibre'
 pkgname=menulibre
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="menulibre menulibre_lib"

From 7f5fb6f6a41e18474dce397f36f38f5cce8f9eca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 714/873] meson-cmake-wrapper: rebuild for Python 3.8.

---
 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 ca14e533431..57eea159ca8 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mcw"

From 2c4c7008df31cd5ec9699fe3aba2f53facd423e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 715/873] mimeo: rebuild for Python 3.8.

---
 srcpkgs/mimeo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mimeo/template b/srcpkgs/mimeo/template
index bef8dcde863..991c61d9df8 100644
--- a/srcpkgs/mimeo/template
+++ b/srcpkgs/mimeo/template
@@ -1,7 +1,7 @@
 # Template file for 'mimeo'
 pkgname=mimeo
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="Mimeo.py"

From 533400db8d1d7673cb8a5b187cf4510495a5d6fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 716/873] mozo: rebuild for Python 3.8.

---
 srcpkgs/mozo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template
index 041f2454c3d..7bc18f017c7 100644
--- a/srcpkgs/mozo/template
+++ b/srcpkgs/mozo/template
@@ -1,7 +1,7 @@
 # Template file for 'mozo'
 pkgname=mozo
 version=1.22.2
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="Mozo"

From 79476ba290c89d038ce38a9ed875bed6b5bf69e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 717/873] mpd-sima: rebuild for Python 3.8.

---
 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 fb72f0d2632..831fec709b7 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=1
+revision=2
 archs=noarch
 wrksrc="MPD_sima-${version}"
 build_style=python3-module

From 9d547673ab95e2aeb2d2405f6fff480cbd9afa5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 718/873] mps-youtube: rebuild for Python 3.8.

---
 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 7b104aa706f..2141b3e627d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mps_youtube"

From 8e1db2d48466dc2bdc06e1330eeefaa727da6356 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 719/873] mugshot: rebuild for Python 3.8.

---
 srcpkgs/mugshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mugshot/template b/srcpkgs/mugshot/template
index cf27b30acac..1e695654a86 100644
--- a/srcpkgs/mugshot/template
+++ b/srcpkgs/mugshot/template
@@ -1,7 +1,7 @@
 # Template file for 'mugshot'
 pkgname=mugshot
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra"

From dd0ad3b8c52088d1809fd214b32ed7b0acdd2f66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 720/873] multibootusb: rebuild for Python 3.8.

---
 srcpkgs/multibootusb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/multibootusb/template b/srcpkgs/multibootusb/template
index 049b641c5fd..70cb07a85ac 100644
--- a/srcpkgs/multibootusb/template
+++ b/srcpkgs/multibootusb/template
@@ -1,7 +1,7 @@
 # Template file for 'multibootusb'
 pkgname=multibootusb
 version=9.2.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="scripts"

From 85356b30501f219e78afd8cb95f1a6cb09193ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 721/873] mymcplus: rebuild for Python 3.8.

---
 srcpkgs/mymcplus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mymcplus/template b/srcpkgs/mymcplus/template
index 369ac8048ed..f30c62b09f4 100644
--- a/srcpkgs/mymcplus/template
+++ b/srcpkgs/mymcplus/template
@@ -1,7 +1,7 @@
 # Template file for 'mymcplus'
 pkgname=mymcplus
 version=3.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mymcplus"

From f10ceae15759ab2c42d786a23926a759967abb41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 722/873] nagstamon: fix and rebuild for Python 3.8.

---
 srcpkgs/nagstamon/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/nagstamon/template b/srcpkgs/nagstamon/template
index 3a63bb5f1d9..0eb5bc75d27 100644
--- a/srcpkgs/nagstamon/template
+++ b/srcpkgs/nagstamon/template
@@ -1,7 +1,7 @@
 # Template file for 'nagstamon'
 pkgname=nagstamon
 version=3.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=Nagstamon
 build_style=python3-module
@@ -16,6 +16,10 @@ homepage="https://nagstamon.ifw-dresden.de"
 distfiles="https://nagstamon.ifw-dresden.de/files/stable/Nagstamon-${version}.tar.gz"
 checksum=a834460e78dc01f62171a83c4a11d890702264ed662863dff39edaf14ae98880
 
+post_extract() {
+	# Gone in python 3.8, but these where the python 3.6 values.  ;)
+	vsed -i -e 's/platform.dist()/("","","")/g' setup.py
+}
 post_install() {
 	chmod 644 ${DESTDIR}/usr/share/pixmaps/nagstamon.svg
 	mv -v ${DESTDIR}/usr/bin/nagstamon.py ${DESTDIR}/usr/bin/nagstamon

From 52acf83950d25bcf72b3fc81796436543c409ce8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 723/873] neovim-remote: rebuild for Python 3.8.

---
 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 d8473bf0521..7391f9df2ee 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.2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nvr"

From ae77cba0468f1ab1fe3e89bf758d2d153c6b8725 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 724/873] newt: rebuild for Python 3.8.

---
 srcpkgs/newt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/newt/template b/srcpkgs/newt/template
index 3971bbfdbf7..25ccc946f51 100644
--- a/srcpkgs/newt/template
+++ b/srcpkgs/newt/template
@@ -1,7 +1,7 @@
 # Template file for 'newt'
 pkgname=newt
 version=0.52.21
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python-devel python3-devel"
 makedepends="slang-devel popt-devel python3-devel python-devel"

From 5d77f30f98b4d84c2807418deb840acda4016790 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 725/873] notmuch: rebuild for Python 3.8.

---
 srcpkgs/notmuch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/notmuch/template b/srcpkgs/notmuch/template
index ced670a59d4..a3085fd4c27 100644
--- a/srcpkgs/notmuch/template
+++ b/srcpkgs/notmuch/template
@@ -1,7 +1,7 @@
 # Template file for 'notmuch'
 pkgname=notmuch
 version=0.29.1
-revision=1
+revision=2
 hostmakedepends="perl pkg-config python-devel python3-Sphinx python3-devel"
 makedepends="bash-completion gmime3-devel talloc-devel xapian-core-devel"
 short_desc="Thread-based email index, search, and tagging"

From 2a004663318b9be9e0b13e69c2f89b9682ece8e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 726/873] nyx: rebuild for Python 3.8.

---
 srcpkgs/nyx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/nyx/template b/srcpkgs/nyx/template
index 201ab5856ff..4b265771793 100644
--- a/srcpkgs/nyx/template
+++ b/srcpkgs/nyx/template
@@ -1,7 +1,7 @@
 # Template file for 'nyx'
 pkgname=nyx
 version=2.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nyx"

From 9ff1df8e1d687a5a38d373d51d32e4e428dbe286 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 727/873] olm-python: rebuild for Python 3.8.

---
 srcpkgs/olm-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/olm-python/template b/srcpkgs/olm-python/template
index 57ac1cfa01b..0141611ea3f 100644
--- a/srcpkgs/olm-python/template
+++ b/srcpkgs/olm-python/template
@@ -1,7 +1,7 @@
 # Template file for 'olm-python'
 pkgname=olm-python
 version=3.1.4
-revision=1
+revision=2
 wrksrc="olm-${version}"
 build_wrksrc=python
 build_style=python-module

From b5b9070e7d35511535cee5a401bcdb4ea6359959 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 728/873] onboard: rebuild for Python 3.8.

---
 srcpkgs/onboard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onboard/template b/srcpkgs/onboard/template
index 844744038d8..467ed8f0ea5 100644
--- a/srcpkgs/onboard/template
+++ b/srcpkgs/onboard/template
@@ -1,7 +1,7 @@
 # Template file for 'onboard'
 pkgname=onboard
 version=1.4.1
-revision=4
+revision=5
 build_style=python3-module
 pycompile_module="Onboard"
 patch_args="-Np1"

From c23e1317c4a493f2967ade1da8cf6eb9806b2066 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 729/873] openrazer-meta: rebuild for Python 3.8.

---
 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 112cb9e900b..60dc8212a73 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=2
+revision=3
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 0c8dabe0616d85f801dfefea1b22748ee6055bdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 730/873] openshot: rebuild for Python 3.8.

---
 srcpkgs/openshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/openshot/template b/srcpkgs/openshot/template
index 605ea7305c2..d71b4d09fae 100644
--- a/srcpkgs/openshot/template
+++ b/srcpkgs/openshot/template
@@ -1,7 +1,7 @@
 # Template file for 'openshot'
 pkgname=openshot
 version=2.4.4
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 wrksrc="${pkgname}-qt-${version}"
 build_style=python3-module

From e14cf6e0c5c985078aade34a1f21446e153dbeed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 731/873] orca: rebuild for Python 3.8.

---
 srcpkgs/orca/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/orca/template b/srcpkgs/orca/template
index ac1c0e1dc0e..57d1495c10a 100644
--- a/srcpkgs/orca/template
+++ b/srcpkgs/orca/template
@@ -1,7 +1,7 @@
 # Template file for 'orca'
 pkgname=orca
 version=3.34.0
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="orca"

From ef83881d95547fbaa4f216958aa7f49b0b2c98b3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 732/873] papis: rebuild for Python 3.8.

---
 srcpkgs/papis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/papis/template b/srcpkgs/papis/template
index 95044b2a6a4..d99f358fc0d 100644
--- a/srcpkgs/papis/template
+++ b/srcpkgs/papis/template
@@ -1,7 +1,7 @@
 # Template file for 'papis'
 pkgname=papis
 version=0.8
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-requests python3-yaml python3-chardet python3-BeautifulSoup4

From f4cf98a67a63c679f47a66c6b67ab7309b5769f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 733/873] paraview: rebuild for Python 3.8.

---
 srcpkgs/paraview/template | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/paraview/template b/srcpkgs/paraview/template
index 3b721b1833a..d928a5ea095 100644
--- a/srcpkgs/paraview/template
+++ b/srcpkgs/paraview/template
@@ -1,7 +1,7 @@
 # Template file for 'paraview'
 pkgname=paraview
 version=5.6.1
-revision=1
+revision=2
 wrksrc=ParaView-v${version}
 build_style=cmake
 configure_args="-DPARAVIEW_ENABLE_FFMPEG=ON
@@ -58,6 +58,11 @@ checksum=50ef01f54db6358b402e50d1460ef47c04d675bf26f250c6937737169f1e6612
 CFLAGS="-D_GNU_SOURCE"
 CXXFLAGS="-D_GNU_SOURCE"
 
+post_extract() {
+	# Python 3.8 API change: https://docs.python.org/3/c-api/typeobj.html
+	sed -i '/\/\/ tp_print/s/nullptr/0/' \
+		VTK/Wrapping/Tools/*.c VTK/Wrapping/PythonCore/*.cxx
+}
 post_install() {
 	vlicense Copyright.txt
 }

From 726b01acdb0c9e145291f4e36011c0aaa709684d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 734/873] pass-git-helper: rebuild for Python 3.8.

---
 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 dfeed3ba4f0..6d7f25bd8a7 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.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 78ecdb2c1a4374ceaca2d5093af3a91996be3350 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 735/873] peframe: rebuild for Python 3.8.

---
 srcpkgs/peframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peframe/template b/srcpkgs/peframe/template
index b9d64f7a5a6..5ecede6cf56 100644
--- a/srcpkgs/peframe/template
+++ b/srcpkgs/peframe/template
@@ -1,7 +1,7 @@
 # Template file for 'peframe'
 pkgname=peframe
 version=6.0.3
-revision=1
+revision=2
 archs=noarch
 build_style="python3-module"
 pycompile_module="peframe"

From 78841509335c273af19896de5b79ea31c3168e1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 736/873] peru: rebuild for Python 3.8.

---
 srcpkgs/peru/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peru/template b/srcpkgs/peru/template
index 682440f0b50..10d4689338d 100644
--- a/srcpkgs/peru/template
+++ b/srcpkgs/peru/template
@@ -1,7 +1,7 @@
 # Template file for 'peru'
 pkgname=peru
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="peru"

From 9513806ce9175a7e7f042c9a8aa445525747c64b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 737/873] pgcli: rebuild for Python 3.8.

---
 srcpkgs/pgcli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index b967287e9cb..b187a0a4440 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,7 +1,7 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pgcli"

From 9b06f6f2643e97359ce83918b636d83617530e9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 738/873] picard: rebuild for Python 3.8.

---
 srcpkgs/picard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/picard/template b/srcpkgs/picard/template
index 1bae142434a..08404a88475 100644
--- a/srcpkgs/picard/template
+++ b/srcpkgs/picard/template
@@ -1,7 +1,7 @@
 # Template file for 'picard'
 pkgname=picard
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname}-release-${version}"
 build_style=python3-module

From f046b5d0d02d0350b9b4b0d012941d73a64d7674 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 739/873] piper: rebuild for Python 3.8.

---
 srcpkgs/piper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/piper/template b/srcpkgs/piper/template
index af8cc854991..91a31131f84 100644
--- a/srcpkgs/piper/template
+++ b/srcpkgs/piper/template
@@ -1,7 +1,7 @@
 # Template file for 'piper'
 pkgname=piper
 version=0.2.904
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 hostmakedepends="libratbag pkg-config glib-devel"

From 35264de163d55cc30160d954c08f635a5fa12285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 740/873] playitslowly: rebuild for Python 3.8.

---
 srcpkgs/playitslowly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/playitslowly/template b/srcpkgs/playitslowly/template
index d26cea3510a..6d3483ae251 100644
--- a/srcpkgs/playitslowly/template
+++ b/srcpkgs/playitslowly/template
@@ -1,7 +1,7 @@
 # Template file for 'playitslowly'
 pkgname=playitslowly
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From e81422f6d1d5c7623368d70897172c813b3de9b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 741/873] pmbootstrap: rebuild for Python 3.8.

---
 srcpkgs/pmbootstrap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pmbootstrap/template b/srcpkgs/pmbootstrap/template
index 1bfa8183a84..15e606439c2 100644
--- a/srcpkgs/pmbootstrap/template
+++ b/srcpkgs/pmbootstrap/template
@@ -1,7 +1,7 @@
 # Template file for 'pmbootstrap'
 pkgname=pmbootstrap
 version=1.9.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pmb"

From 527e6a4630f16baca7fc343a5a1d9a05342d82ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 742/873] pockyt: fix and rebuild for Python 3.8.

---
 srcpkgs/pockyt/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/pockyt/template b/srcpkgs/pockyt/template
index 760573904b1..ff12361d443 100644
--- a/srcpkgs/pockyt/template
+++ b/srcpkgs/pockyt/template
@@ -1,7 +1,7 @@
 # Template file for 'pockyt'
 pkgname=pockyt
 version=1.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -13,3 +13,7 @@ license="GPL-3.0-or-later"
 homepage="https://github.com/arvindch/pockyt"
 distfiles="${homepage}/archive/${version}.tar.gz"
 checksum=cd9561e126a6a01c73762639eb7e38b8c509ed1412f72fcc4729b12565b9962c
+
+post_extract() {
+	sed -i 's/(3, 7)/&, (3, 8)/' setup.py
+}

From b17ef4dbbbef2220a50989dc81f76cba0decd84a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 743/873] poezio: rebuild for Python 3.8.

---
 srcpkgs/poezio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/poezio/template b/srcpkgs/poezio/template
index 56f8138bb5e..4b318419dab 100644
--- a/srcpkgs/poezio/template
+++ b/srcpkgs/poezio/template
@@ -1,7 +1,7 @@
 # Template file for 'poezio'
 pkgname=poezio
 version=0.12.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="poezio poezio_plugins poezio_themes"
 hostmakedepends="python3-setuptools pkg-config"

From 3b5be45e96733313ad2473bc51a7d8eee1702577 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 744/873] protontricks: rebuild for Python 3.8.

---
 srcpkgs/protontricks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/protontricks/template b/srcpkgs/protontricks/template
index a32f51c4845..dc003b63690 100644
--- a/srcpkgs/protontricks/template
+++ b/srcpkgs/protontricks/template
@@ -1,7 +1,7 @@
 # Template file for 'protontricks'
 pkgname=protontricks
 version=1.2.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-setuptools"

From 6b17e630c97868c3510f8e786c4c0a4d3b250ecf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 745/873] pulseaudio-equalizer-ladspa: rebuild for Python 3.8.

---
 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 62d7eef2a65..10198de2c08 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=1
+revision=2
 wrksrc="equalizer-${version}"
 build_style=meson
 pycompile_module="pulseeq"

From 70dbb53c2ba650d2fc146e7837f700dec9df6062 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 746/873] pulseeffects: rebuild for Python 3.8.

---
 srcpkgs/pulseeffects/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pulseeffects/template b/srcpkgs/pulseeffects/template
index 7fc44f938d9..dc9044cad32 100644
--- a/srcpkgs/pulseeffects/template
+++ b/srcpkgs/pulseeffects/template
@@ -2,7 +2,7 @@
 pkgname=pulseeffects
 reverts="4.3.4_1"
 version=3.2.3
-revision=3
+revision=4
 build_style=meson
 pycompile_module="PulseEffects PulseEffectsTest"
 hostmakedepends="pkg-config"

From b1dc43e0f84322bbc809630267fe0e51c5e1b41e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 747/873] py3status: rebuild for Python 3.8.

---
 srcpkgs/py3status/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/py3status/template b/srcpkgs/py3status/template
index b7a263270e4..01709cfd14d 100644
--- a/srcpkgs/py3status/template
+++ b/srcpkgs/py3status/template
@@ -1,7 +1,7 @@
 # Template file for 'py3status'
 pkgname=py3status
 version=3.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="py3status"

From 0644b2ee33752b76bc1875c86123ab77a073fc53 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 748/873] pychess: rebuild for Python 3.8.

---
 srcpkgs/pychess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pychess/template b/srcpkgs/pychess/template
index 2c6ecef7bf9..d0594aa77f4 100644
--- a/srcpkgs/pychess/template
+++ b/srcpkgs/pychess/template
@@ -1,7 +1,7 @@
 # Template file for 'pychess'
 pkgname=pychess
 version=0.12.4
-revision=2
+revision=3
 build_style=python3-module
 pycompile_module="pychess"
 archs=noarch

From 5cf19da1be32229c7b04dffba15cd724042a2e9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 749/873] pycp: rebuild for Python 3.8.

---
 srcpkgs/pycp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pycp/template b/srcpkgs/pycp/template
index 770eb50d3f4..c9066259862 100644
--- a/srcpkgs/pycp/template
+++ b/srcpkgs/pycp/template
@@ -1,7 +1,7 @@
 # Template file for 'pycp'
 pkgname=pycp
 version=8.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pycp"

From d88382e9fb382116d88e9ccd60e69a7320462f5c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 750/873] pymol: rebuild for Python 3.8.

---
 srcpkgs/pymol/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pymol/template b/srcpkgs/pymol/template
index 428ba7a6deb..e1031f325c0 100644
--- a/srcpkgs/pymol/template
+++ b/srcpkgs/pymol/template
@@ -1,7 +1,7 @@
 # Template file for 'pymol'
 pkgname=pymol
 version=2.3.0
-revision=1
+revision=2
 wrksrc=${pkgname}-open-source-${version}
 build_style="python3-module"
 makedepends="msgpack-devel python3-numpy freetype-devel libfreeglut-devel glew-devel

From 1245dfb2ab23badf279042adca4caff2deba10a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 751/873] pyradio: rebuild for Python 3.8.

---
 srcpkgs/pyradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyradio/template b/srcpkgs/pyradio/template
index 10d7d8c6fbb..d2d5feddbdd 100644
--- a/srcpkgs/pyradio/template
+++ b/srcpkgs/pyradio/template
@@ -1,7 +1,7 @@
 # Template file for 'pyradio'
 pkgname=pyradio
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pyradio"

From f677cdf12f3d405d1bcb43aab8dd1fc258ee91d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 752/873] pyside2-tools: rebuild for Python 3.8.

---
 srcpkgs/pyside2-tools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyside2-tools/template b/srcpkgs/pyside2-tools/template
index 4ba0044452d..0a153de8c15 100644
--- a/srcpkgs/pyside2-tools/template
+++ b/srcpkgs/pyside2-tools/template
@@ -1,7 +1,7 @@
 # Template file for 'pyside2-tools'
 pkgname=pyside2-tools
 version=5.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release

From 727e69b5ed47b99d25354a6a6d6f42b907a7b696 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 753/873] pysolfc: rebuild for Python 3.8.

---
 srcpkgs/pysolfc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pysolfc/template b/srcpkgs/pysolfc/template
index 62eb90009af..1631e9619d3 100644
--- a/srcpkgs/pysolfc/template
+++ b/srcpkgs/pysolfc/template
@@ -1,7 +1,7 @@
 # Template file for 'pysolfc'
 pkgname=pysolfc
 version=2.6.4
-revision=2
+revision=3
 archs="noarch"
 wrksrc="PySolFC-${pkgname}-${version}"
 build_style=python3-module

From 837440a9d7d89a3bcfe00ffd798f18212ea374e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 754/873] pywal: rebuild for Python 3.8.

---
 srcpkgs/pywal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pywal/template b/srcpkgs/pywal/template
index 214a36698f2..98c4e1581e4 100644
--- a/srcpkgs/pywal/template
+++ b/srcpkgs/pywal/template
@@ -1,7 +1,7 @@
 # Template file for 'pywal'
 pkgname=pywal
 version=3.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pywal"

From 168ac3cd6bd43efb1d6d4192cd9b426cffb66930 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 755/873] qomui: rebuild for Python 3.8.

---
 srcpkgs/qomui/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qomui/template b/srcpkgs/qomui/template
index 4e68864252d..8063350ba06 100644
--- a/srcpkgs/qomui/template
+++ b/srcpkgs/qomui/template
@@ -1,7 +1,7 @@
 # Template file for 'qomui'
 pkgname=qomui
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qomui"

From 26a0119ac8b90d7cd7d6f2c49b3d1c927325b552 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 756/873] quodlibet: rebuild for Python 3.8.

---
 srcpkgs/quodlibet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/quodlibet/template b/srcpkgs/quodlibet/template
index 53f6e926315..4b0c4ba0de5 100644
--- a/srcpkgs/quodlibet/template
+++ b/srcpkgs/quodlibet/template
@@ -1,7 +1,7 @@
 # Template file for 'quodlibet'
 pkgname=quodlibet
 version=4.2.1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="quodlibet"

From c8788e4bb387cdc48040e3af5663a0a23e068ed2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 757/873] qutebrowser: rebuild for Python 3.8.

---
 srcpkgs/qutebrowser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qutebrowser/template b/srcpkgs/qutebrowser/template
index 11b74e4445d..07257c2d84b 100644
--- a/srcpkgs/qutebrowser/template
+++ b/srcpkgs/qutebrowser/template
@@ -1,7 +1,7 @@
 # Template file for 'qutebrowser'
 pkgname=qutebrowser
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qutebrowser"

From 2a2f8aeebe7cb2c4d3783dcdf5725f4c8e717d03 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 758/873] r128gain: rebuild for Python 3.8.

---
 srcpkgs/r128gain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/r128gain/template b/srcpkgs/r128gain/template
index cdea955828e..1cb30c786f8 100644
--- a/srcpkgs/r128gain/template
+++ b/srcpkgs/r128gain/template
@@ -1,7 +1,7 @@
 # Template file for 'r128gain'
 pkgname=r128gain
 version=0.9.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="r128gain"
 hostmakedepends="python3-setuptools"

From b923fdcd9bc9204affa69740d34e582e6712ed4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 759/873] radicale2: rebuild for Python 3.8.

---
 srcpkgs/radicale2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/radicale2/template b/srcpkgs/radicale2/template
index 0d8a27d89f3..310bc8cb3cf 100644
--- a/srcpkgs/radicale2/template
+++ b/srcpkgs/radicale2/template
@@ -1,7 +1,7 @@
 # Template file for 'radicale2'
 pkgname=radicale2
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module

From befc14e8b9ff96c37104bf2441216707df5bcc8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 760/873] ranger: rebuild for Python 3.8.

---
 srcpkgs/ranger/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template
index a387eac4ed7..a49716971a5 100644
--- a/srcpkgs/ranger/template
+++ b/srcpkgs/ranger/template
@@ -1,7 +1,7 @@
 # Template file for 'ranger'
 pkgname=ranger
 version=1.9.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ranger"

From d490364b5c373b46163f36731a39754e04556e98 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 761/873] rednotebook: rebuild for Python 3.8.

---
 srcpkgs/rednotebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rednotebook/template b/srcpkgs/rednotebook/template
index ac870a7a992..af7dea12fd5 100644
--- a/srcpkgs/rednotebook/template
+++ b/srcpkgs/rednotebook/template
@@ -1,7 +1,7 @@
 # Template file for 'rednotebook'
 pkgname=rednotebook
 version=2.11.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rednotebook"

From 44a5a4b73859a74fb915e7613fce5caeabd8acf1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 762/873] redshift: rebuild for Python 3.8.

---
 srcpkgs/redshift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/redshift/template b/srcpkgs/redshift/template
index bb31e7cec05..c58b8daeb76 100644
--- a/srcpkgs/redshift/template
+++ b/srcpkgs/redshift/template
@@ -1,7 +1,7 @@
 # Template file for 'redshift'
 pkgname=redshift
 version=1.12
-revision=1
+revision=2
 build_style=gnu-configure
 build_options="geoclue2"
 configure_args="--enable-gui --disable-geoclue $(vopt_enable geoclue2)"

From c0649b58de59e8a68aff332807f3240430e3ee7c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 763/873] ripe-atlas-tools: rebuild for Python 3.8.

---
 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 c8eef786962..c5e21c4b8dc 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=2.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ripe/atlas/tools"

From 8af034434b8588027b9c7e0f1b0abc587ad462bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 764/873] rmlint: rebuild for Python 3.8.

---
 srcpkgs/rmlint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rmlint/template b/srcpkgs/rmlint/template
index dc8d904d0c2..894a9a1dd01 100644
--- a/srcpkgs/rmlint/template
+++ b/srcpkgs/rmlint/template
@@ -1,7 +1,7 @@
 # Template file for 'rmlint'
 pkgname=rmlint
 version=2.9.0
-revision=1
+revision=2
 build_style=scons
 hostmakedepends="pkg-config python3-Sphinx glib-devel"
 makedepends="libblkid-devel elfutils-devel json-glib-devel"

From 04462f15c08bdd92062a53e420054fdfd65da92b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 765/873] rtv: rebuild for Python 3.8.

---
 srcpkgs/rtv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rtv/template b/srcpkgs/rtv/template
index 1a089e3e88d..1fc137b2e5b 100644
--- a/srcpkgs/rtv/template
+++ b/srcpkgs/rtv/template
@@ -1,7 +1,7 @@
 # Template file for 'rtv'
 pkgname=rtv
 version=1.27.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rtv"

From deb18b1928007c6e0a1042dab8adfe94a801bc28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 766/873] rubber: rebuild for Python 3.8.

---
 srcpkgs/rubber/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rubber/template b/srcpkgs/rubber/template
index cf668638cef..c7fe4cbbd06 100644
--- a/srcpkgs/rubber/template
+++ b/srcpkgs/rubber/template
@@ -1,7 +1,7 @@
 # Template file for 'rubber'
 pkgname=rubber
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From d19b0a94a22decc29f95aa94f2398a30133f2211 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 767/873] safeeyes: rebuild for Python 3.8.

---
 srcpkgs/safeeyes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/safeeyes/template b/srcpkgs/safeeyes/template
index bc35f302011..e7019662316 100644
--- a/srcpkgs/safeeyes/template
+++ b/srcpkgs/safeeyes/template
@@ -1,7 +1,7 @@
 # Template file for 'safeeyes'
 pkgname=safeeyes
 version=2.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="safeeyes"

From c2dacb3fb6e6380df395bffb3460d67524ddf348 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 768/873] scapy: rebuild for Python 3.8.

---
 srcpkgs/scapy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scapy/template b/srcpkgs/scapy/template
index 65242f332a8..36972bfd461 100644
--- a/srcpkgs/scapy/template
+++ b/srcpkgs/scapy/template
@@ -1,7 +1,7 @@
 # Template file for 'scapy'
 pkgname=scapy
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="scapy"

From 6b1ebeaf3648f62790dbf2c394c4060d12cb23d0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 769/873] screenplain: rebuild for Python 3.8.

---
 srcpkgs/screenplain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/screenplain/template b/srcpkgs/screenplain/template
index 8410ab45e40..8eb759ae6a6 100644
--- a/srcpkgs/screenplain/template
+++ b/srcpkgs/screenplain/template
@@ -1,7 +1,7 @@
 # Template file for 'screenplain'
 pkgname=screenplain
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenplain"

From 483229f73350818a1571180552a37954f26fe29d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 770/873] scudcloud: rebuild for Python 3.8.

---
 srcpkgs/scudcloud/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
index 1b9f5f27d8a..1ab2618066e 100644
--- a/srcpkgs/scudcloud/template
+++ b/srcpkgs/scudcloud/template
@@ -1,7 +1,7 @@
 # Template file for 'scudcloud'
 pkgname=scudcloud
 version=1.65
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="scudcloud"
 hostmakedepends="python3-setuptools"

From 123ca799b85c1e8c6cb93162214eead9f92e0baa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 771/873] seafile-libclient: rebuild for Python 3.8.

---
 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 47c49d5ceb2..5eda59c1041 100644
--- a/srcpkgs/seafile-libclient/template
+++ b/srcpkgs/seafile-libclient/template
@@ -1,7 +1,7 @@
 # Template file for 'seafile-libclient'
 pkgname=seafile-libclient
 version=7.0.2
-revision=1
+revision=2
 _distname="${pkgname/-libclient/}"
 wrksrc="${_distname}-${version}"
 build_style=gnu-configure

From dadf6fedad6d6851a5b944f873d4d86cd36ed505 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 772/873] sonata: rebuild for Python 3.8.

---
 srcpkgs/sonata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template
index 3e07610d1e5..fc2d86e6c1a 100644
--- a/srcpkgs/sonata/template
+++ b/srcpkgs/sonata/template
@@ -1,7 +1,7 @@
 # Template file for 'sonata'
 pkgname=sonata
 version=1.7b1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="sonata"

From 430726310d4a2c6f4487784216744a0ba8d42a97 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 773/873] speech-dispatcher: rebuild for Python 3.8.

---
 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 0c27951586a..39cebf1f320 100644
--- a/srcpkgs/speech-dispatcher/template
+++ b/srcpkgs/speech-dispatcher/template
@@ -1,7 +1,7 @@
 # Template build file for 'speech-dispatcher'.
 pkgname=speech-dispatcher
 version=0.8.8
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static"
 short_desc="High-level device independent layer for speech synthesis interface"

From 4bea1bb7754629dcc5164d4be09697dacdc27f52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 774/873] speedtest-cli: rebuild for Python 3.8.

---
 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 6746ea3a35e..c65d9fd631d 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.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="speedtest.py"

From b24b9d876eb69c9d222b4115f375b535b41d8e34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 775/873] sshuttle: rebuild for Python 3.8.

---
 srcpkgs/sshuttle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sshuttle/template b/srcpkgs/sshuttle/template
index e74d90171f2..04bae9a15c3 100644
--- a/srcpkgs/sshuttle/template
+++ b/srcpkgs/sshuttle/template
@@ -1,7 +1,7 @@
 # Template file for 'sshuttle'
 pkgname=sshuttle
 version=0.78.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="sshuttle"

From a94cf196bb0163b8ceac1e90b0c8aacf242262a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 776/873] sssd: rebuild for Python 3.8.

---
 srcpkgs/sssd/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sssd/template b/srcpkgs/sssd/template
index 2ea28d21bee..13d0da0ba99 100644
--- a/srcpkgs/sssd/template
+++ b/srcpkgs/sssd/template
@@ -1,7 +1,7 @@
 # Template file for 'sssd'
 pkgname=sssd
 version=2.0.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-selinux --without-semanage
  --disable-cifs-idmap-plugin --without-samba --with-os=fedora

From 70d497d5a57f21eb299193883523ee44fa71ea5a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 777/873] stcgal: rebuild for Python 3.8.

---
 srcpkgs/stcgal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stcgal/template b/srcpkgs/stcgal/template
index 3410ccf8678..d75e88837cc 100644
--- a/srcpkgs/stcgal/template
+++ b/srcpkgs/stcgal/template
@@ -1,7 +1,7 @@
 # Template file for 'stcgal'
 pkgname=stcgal
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="stcgal"

From cdf4a89e4e281111a817c4c7113ad77d40c5c6be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 778/873] stig: rebuild for Python 3.8.

---
 srcpkgs/stig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stig/template b/srcpkgs/stig/template
index 0777c5f0cc2..abe5f3b563c 100644
--- a/srcpkgs/stig/template
+++ b/srcpkgs/stig/template
@@ -1,7 +1,7 @@
 # Template file for 'stig'
 pkgname=stig
 version=0.10.1a
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 930f6e549836c3d39fd851a831e39a14e72633bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 779/873] streamlink: rebuild for Python 3.8.

---
 srcpkgs/streamlink/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/streamlink/template b/srcpkgs/streamlink/template
index abcdc12c4ac..59caa85dc8a 100644
--- a/srcpkgs/streamlink/template
+++ b/srcpkgs/streamlink/template
@@ -1,7 +1,7 @@
 # Template file for 'streamlink'
 pkgname=streamlink
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="streamlink streamlink_cli"

From ba9febf35412930fc49b70b49d56a17aa23ec4db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 780/873] subuser: rebuild for Python 3.8.

---
 srcpkgs/subuser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/subuser/template b/srcpkgs/subuser/template
index 50444246b29..0bc3e71db36 100644
--- a/srcpkgs/subuser/template
+++ b/srcpkgs/subuser/template
@@ -1,7 +1,7 @@
 # Template file for 'subuser'
 pkgname=subuser
 version=0.6.2
-revision=2
+revision=3
 archs="x86_64*"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From e15b7d83da234e08cd82b0718dee84173dfe4966 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 781/873] synapse: rebuild for Python 3.8.

---
 srcpkgs/synapse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template
index daae80e5792..0c0fd6841fb 100644
--- a/srcpkgs/synapse/template
+++ b/srcpkgs/synapse/template
@@ -1,7 +1,7 @@
 # Template file for 'synapse'
 pkgname=synapse
 version=1.3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From b4a3fa9e78a0b408df1d5ebbe41cd3ac56907dc4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 782/873] tekaim: rebuild for Python 3.8.

---
 srcpkgs/tekaim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tekaim/template b/srcpkgs/tekaim/template
index e3cc5335ecc..bd60dcc57a6 100644
--- a/srcpkgs/tekaim/template
+++ b/srcpkgs/tekaim/template
@@ -1,7 +1,7 @@
 # Template file for 'tekaim'
 pkgname=tekaim
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From 7224199b765cb4f2b66887ffe6244532da34b988 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 783/873] telepresence: rebuild for Python 3.8.

---
 srcpkgs/telepresence/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/telepresence/template b/srcpkgs/telepresence/template
index 17300f3b548..fa7f916f66f 100644
--- a/srcpkgs/telepresence/template
+++ b/srcpkgs/telepresence/template
@@ -1,7 +1,7 @@
 # Template file for 'telepresence'
 pkgname=telepresence
 version=0.102
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="telepresence"

From f585c9fe61cb8e3a7275817bb40e60bd92406046 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 784/873] termdown: rebuild for Python 3.8.

---
 srcpkgs/termdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/termdown/template b/srcpkgs/termdown/template
index 90a4a894d42..299de920389 100644
--- a/srcpkgs/termdown/template
+++ b/srcpkgs/termdown/template
@@ -1,7 +1,7 @@
 # Template file for 'termdown'
 pkgname=termdown
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="termdown.py"

From 52c4dcee8ca0ed8b268907b88b218d7b8e6f9593 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 785/873] terminal_markdown_viewer: rebuild for Python 3.8.

---
 srcpkgs/terminal_markdown_viewer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/terminal_markdown_viewer/template b/srcpkgs/terminal_markdown_viewer/template
index e5d0f38aae2..ba3fcfdc8d6 100644
--- a/srcpkgs/terminal_markdown_viewer/template
+++ b/srcpkgs/terminal_markdown_viewer/template
@@ -1,7 +1,7 @@
 # Template file for 'terminal_markdown_viewer'
 pkgname=terminal_markdown_viewer
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mdv"

From c4298b68d0f7694e8a23e689420f2a3d1f085606 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 786/873] thefuck: rebuild for Python 3.8.

---
 srcpkgs/thefuck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thefuck/template b/srcpkgs/thefuck/template
index 714cd7982c7..a0de1c7b6a3 100644
--- a/srcpkgs/thefuck/template
+++ b/srcpkgs/thefuck/template
@@ -1,7 +1,7 @@
 # Template file for 'thefuck'
 pkgname=thefuck
 version=3.29
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="thefuck"

From b18d19065aa9bd9b335b3ee939bb0bd64efade58 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 787/873] thinkpad-scripts: rebuild for Python 3.8.

---
 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 8d26cf23e77..855d42492fb 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tps"

From 1770ed9b1c9c751304b91a6f6e53da7de1648214 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 788/873] thrift: rebuild for Python 3.8.

---
 srcpkgs/thrift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thrift/template b/srcpkgs/thrift/template
index 73b0f59d4f6..e379ac35a09 100644
--- a/srcpkgs/thrift/template
+++ b/srcpkgs/thrift/template
@@ -1,7 +1,7 @@
 # Template file for 'thrift'
 pkgname=thrift
 version=0.12.0
-revision=2
+revision=3
 build_style=gnu-configure
 makedepends="boost-devel libressl-devel"
 short_desc="Apache Thrift compiler"

From 524283aef8b8fdd32035330913bfd16958f21979 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 789/873] todoman: rebuild for Python 3.8.

---
 srcpkgs/todoman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/todoman/template b/srcpkgs/todoman/template
index 2e0489ff49e..676412b8d0b 100644
--- a/srcpkgs/todoman/template
+++ b/srcpkgs/todoman/template
@@ -1,7 +1,7 @@
 # Template file for 'todoman'
 pkgname=todoman
 version=3.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="todoman"

From 7180afa5a1715531304f6a36a9eac431039f64f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 790/873] toot: rebuild for Python 3.8.

---
 srcpkgs/toot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template
index b6dcdc9ede6..7f9fac6ca01 100644
--- a/srcpkgs/toot/template
+++ b/srcpkgs/toot/template
@@ -1,7 +1,7 @@
 # Template file for 'toot'
 pkgname=toot
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="toot"

From d56207a1678134019b4f169934f0c50a78cf7588 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 791/873] torbrowser-launcher: fix and rebuild for Python 3.8.

---
 srcpkgs/torbrowser-launcher/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/torbrowser-launcher/template b/srcpkgs/torbrowser-launcher/template
index a4aa707495c..4986b6b3240 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.2
-revision=1
+revision=2
 archs="i686 x86_64" # limited by Tor Browser itself
 build_style=python3-module
 pycompile_module="torbrowser_launcher"
@@ -15,6 +15,10 @@ changelog="https://raw.githubusercontent.com/micahflee/torbrowser-launcher/maste
 distfiles="https://github.com/micahflee/torbrowser-launcher/archive/v${version}.tar.gz"
 checksum=25ad4b0c70579628bf18f4cdcd18ac303fe4f7f1c590cc48df2a87651c92991c
 
+post_extract() { 
+	# Python 3.8 removed platform.dist()
+	sed -i 's/distro =.*/distro = "Void"/' setup.py
+}
 post_install() {
 	vlicense LICENSE
 	rm ${DESTDIR}/usr/share/locale/torbrowser-launcher.mo # installed twice

From c66dda5131119abe071425664238ca389de34d8f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 792/873] tox: rebuild for Python 3.8.

---
 srcpkgs/tox/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tox/template b/srcpkgs/tox/template
index 8c6b63a3cb1..908cb86bb38 100644
--- a/srcpkgs/tox/template
+++ b/srcpkgs/tox/template
@@ -1,7 +1,7 @@
 # Template file for 'tox'
 pkgname=tox
 version=3.14.0
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="tox"
 hostmakedepends="python3-setuptools"

From c37ef482e10fb14da3d6cb396c8904257dc2c7c0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 793/873] trackma: rebuild for Python 3.8.

---
 srcpkgs/trackma/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/trackma/template b/srcpkgs/trackma/template
index 96833382346..4c29bb8a35d 100644
--- a/srcpkgs/trackma/template
+++ b/srcpkgs/trackma/template
@@ -1,7 +1,7 @@
 # Template file for 'trackma'
 pkgname=trackma
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 0a1f54dd6467927b77f9371a41381a01608228e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 794/873] trash-cli: rebuild for Python 3.8.

---
 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 2a08548c7c8..4ab724d8cb1 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.17.1.14
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3"

From 58a2a91ed22dcbe5fab5c49b6cb5b04cacb0bec6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 795/873] tryton: rebuild for Python 3.8.

---
 srcpkgs/tryton/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tryton/template b/srcpkgs/tryton/template
index 196033361f6..61e0f733dc9 100644
--- a/srcpkgs/tryton/template
+++ b/srcpkgs/tryton/template
@@ -1,7 +1,7 @@
 # Template file for 'tryton'
 pkgname=tryton
 version=5.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tryton"

From 0334c761ba939e24db0b4c619858a9e37a119b2d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 796/873] tuimoji: rebuild for Python 3.8.

---
 srcpkgs/tuimoji/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuimoji/template b/srcpkgs/tuimoji/template
index 71e0bf540c0..73f5cff281f 100644
--- a/srcpkgs/tuimoji/template
+++ b/srcpkgs/tuimoji/template
@@ -1,7 +1,7 @@
 # Template file for 'tuimoji'
 pkgname=tuimoji
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tuimoji"

From 7c8600b2683e37b9ae3b8d28fdf26fda4c4f5c41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 797/873] tuir: rebuild for Python 3.8.

---
 srcpkgs/tuir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuir/template b/srcpkgs/tuir/template
index dfc0b15c535..a98f4484544 100644
--- a/srcpkgs/tuir/template
+++ b/srcpkgs/tuir/template
@@ -1,7 +1,7 @@
 # Template file for 'tuir'
 pkgname=tuir
 version=1.28.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=python3-module

From fa94d7c83f3c15bf441526ff78dcfaa2e1a0e4fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 798/873] tzupdate: rebuild for Python 3.8.

---
 srcpkgs/tzupdate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tzupdate/template b/srcpkgs/tzupdate/template
index 9531f0f7540..de2217476bd 100644
--- a/srcpkgs/tzupdate/template
+++ b/srcpkgs/tzupdate/template
@@ -1,7 +1,7 @@
 # Template file for 'tzupdate'
 pkgname=tzupdate
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tzupdate.py"

From 8246b4d5c37f08891fb4b91655ad97e368d4b404 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 799/873] udiskie: rebuild for Python 3.8.

---
 srcpkgs/udiskie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/udiskie/template b/srcpkgs/udiskie/template
index 536f4d5609d..06d58236046 100644
--- a/srcpkgs/udiskie/template
+++ b/srcpkgs/udiskie/template
@@ -1,7 +1,7 @@
 # Template file for 'udiskie'
 pkgname=udiskie
 version=1.7.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="udiskie"

From c58f7d10a7748b8cf418991f3d804ce8631a137e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 800/873] ueberzug: rebuild for Python 3.8.

---
 srcpkgs/ueberzug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ueberzug/template b/srcpkgs/ueberzug/template
index e0c474ff63e..dfa1ab29d96 100644
--- a/srcpkgs/ueberzug/template
+++ b/srcpkgs/ueberzug/template
@@ -1,7 +1,7 @@
 # Template file for 'ueberzug'
 pkgname=ueberzug
 version=18.1.3
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel libX11-devel libXext-devel"

From e6ca68fa761e2b3df26f06a7b44e30331de08220 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 801/873] ufw: rebuild for Python 3.8.

---
 srcpkgs/ufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ufw/template b/srcpkgs/ufw/template
index ac7dfa45cdd..0bf2a3a0b76 100644
--- a/srcpkgs/ufw/template
+++ b/srcpkgs/ufw/template
@@ -1,7 +1,7 @@
 # Template file for 'ufw'
 pkgname=ufw
 version=0.36
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="ufw"

From 14dcd23aa719947cc774b71ef0820127a4865ef0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 802/873] unicorn: rebuild for Python 3.8.

---
 srcpkgs/unicorn/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/unicorn/template b/srcpkgs/unicorn/template
index 317e261ae88..971d44752ca 100644
--- a/srcpkgs/unicorn/template
+++ b/srcpkgs/unicorn/template
@@ -1,7 +1,7 @@
 # Template file for 'unicorn'
 pkgname=unicorn
 version=1.0.1
-revision=2
+revision=3
 archs="x86_64* i686*"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"
 short_desc="Lightweight multi-platform, multi-architecture CPU emulator framework"

From 1ae8d35f7645adeab1e7f8afafd996c92f0c08b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 803/873] unknown-horizons: rebuild for Python 3.8.

---
 srcpkgs/unknown-horizons/patches/py38.patch | 14 ++++++++++++++
 srcpkgs/unknown-horizons/template           |  2 +-
 2 files changed, 15 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/unknown-horizons/patches/py38.patch

diff --git a/srcpkgs/unknown-horizons/patches/py38.patch b/srcpkgs/unknown-horizons/patches/py38.patch
new file mode 100644
index 00000000000..59194750cd1
--- /dev/null
+++ b/srcpkgs/unknown-horizons/patches/py38.patch
@@ -0,0 +1,14 @@
+--- setup.py.orig
++++ setup.py
+@@ -39,10 +39,7 @@
+ # Ensure we are in the correct directory
+ os.chdir(os.path.realpath(os.path.dirname(__file__)))
+ 
+-if platform.dist()[0].lower() in ('debian', 'ubuntu'):
+-	executable_path = 'games'
+-else:
+-	executable_path = 'bin'
++executable_path = 'bin'
+ 
+ 
+ # this trick is for setting RELEASE_VERSION if the code is cloned from git repository
diff --git a/srcpkgs/unknown-horizons/template b/srcpkgs/unknown-horizons/template
index b5fc593b744..6e81970800d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3 intltool git python3-Pillow"

From 615d1baa489feab3864039bee37dad2e1ba9977d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 804/873] urh: rebuild for Python 3.8.

---
 srcpkgs/urh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urh/template b/srcpkgs/urh/template
index 2cec83082fd..31f28bb366b 100644
--- a/srcpkgs/urh/template
+++ b/srcpkgs/urh/template
@@ -1,7 +1,7 @@
 # Template file for 'urh'
 pkgname=urh
 version=2.7.5
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="urh"
 hostmakedepends="python3-setuptools python3-Cython"

From da0ab011d8839f3a6ddc2367fc8e1c879825ec29 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 805/873] urlscan: rebuild for Python 3.8.

---
 srcpkgs/urlscan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlscan/template b/srcpkgs/urlscan/template
index f6f0d1db07b..2bb1688dad7 100644
--- a/srcpkgs/urlscan/template
+++ b/srcpkgs/urlscan/template
@@ -1,7 +1,7 @@
 # Template file for 'urlscan'
 pkgname=urlscan
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlscan"

From d23be20fa55a06ffcdf1acd3d7018f833d4337c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 806/873] urlwatch: rebuild for Python 3.8.

---
 srcpkgs/urlwatch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlwatch/template b/srcpkgs/urlwatch/template
index e8a5e403c92..1166fe101a7 100644
--- a/srcpkgs/urlwatch/template
+++ b/srcpkgs/urlwatch/template
@@ -1,7 +1,7 @@
 # Template file for 'urlwatch'
 pkgname=urlwatch
 version=2.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlwatch"

From 758ae9723decfd1886b28f363eb103c16dbaa04b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 807/873] vapoursynth: fix and rebuild for Python 3.8.

---
 srcpkgs/vapoursynth/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/vapoursynth/template b/srcpkgs/vapoursynth/template
index dd85e8b39dc..1c417a624c3 100644
--- a/srcpkgs/vapoursynth/template
+++ b/srcpkgs/vapoursynth/template
@@ -1,7 +1,7 @@
 # Template file for 'vapoursynth'
 pkgname=vapoursynth
 version=R47.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake pkg-config libtool nasm python3-Cython"
 makedepends="python3-devel zimg-devel libmagick-devel libass-devel ffmpeg-devel
@@ -21,6 +21,7 @@ case $XBPS_TARGET_MACHINE in
 esac
 
 pre_configure() {
+	sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION/&-embed/g' configure.ac
 	./autogen.sh
 	case $XBPS_TARGET_MACHINE in
 		arm*musl)

From 2765c9f1b1e0d4395e629f6ff66e1003221cbb27 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 808/873] variety: rebuild for Python 3.8.

---
 srcpkgs/variety/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/variety/template b/srcpkgs/variety/template
index b4ea756c0c9..4d327a830f8 100644
--- a/srcpkgs/variety/template
+++ b/srcpkgs/variety/template
@@ -1,7 +1,7 @@
 # Template file for 'variety'
 pkgname=variety
 version=0.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="jumble variety variety_lib"

From 090c4bfcfc2db73eba64fcab8dec459707ad2676 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 809/873] vdirsyncer: rebuild for Python 3.8.

---
 srcpkgs/vdirsyncer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vdirsyncer/template b/srcpkgs/vdirsyncer/template
index 24080413456..708204afda2 100644
--- a/srcpkgs/vdirsyncer/template
+++ b/srcpkgs/vdirsyncer/template
@@ -1,7 +1,7 @@
 # Template file for 'vdirsyncer'
 pkgname=vdirsyncer
 version=0.16.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="vdirsyncer"

From fb3a977a1a5a3fd2be779201a4dd819512a4351a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 810/873] vidcutter: rebuild for Python 3.8.

---
 srcpkgs/vidcutter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vidcutter/template b/srcpkgs/vidcutter/template
index 4f30b888805..6ca85d4e766 100644
--- a/srcpkgs/vidcutter/template
+++ b/srcpkgs/vidcutter/template
@@ -1,7 +1,7 @@
 # Template file for 'vidcutter'
 pkgname=vidcutter
 version=6.0.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="vidcutter"

From 0addee01c86811593babb5238c415197cb01b03e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 811/873] vimiv: rebuild for Python 3.8.

---
 srcpkgs/vimiv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vimiv/template b/srcpkgs/vimiv/template
index 20fcbe7a03f..a560d4c9d81 100644
--- a/srcpkgs/vimiv/template
+++ b/srcpkgs/vimiv/template
@@ -1,7 +1,7 @@
 # Template file for 'vimiv'
 pkgname="vimiv"
 version=0.9.1
-revision=2
+revision=3
 build_style=gnu-makefile
 pycompile_module=vimiv
 hostmakedepends="python3-setuptools python3-devel"

From 0e236f27837583bf861e3984a19f4cf7827cbac1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 812/873] virtme: rebuild for Python 3.8.

---
 srcpkgs/virtme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtme/template b/srcpkgs/virtme/template
index 3905cb24b1d..30035a734f3 100644
--- a/srcpkgs/virtme/template
+++ b/srcpkgs/virtme/template
@@ -1,7 +1,7 @@
 # Template file for 'virtme'
 pkgname=virtme
 version=0.0.3.20180725
-revision=1
+revision=2
 archs=noarch
 _commit=60100bea82183b5d32ed9fca6534cd0fc60d5eb2
 wrksrc="${_commit}"

From 977bedee2b9cf218b33b79b6a30d782088e693be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 813/873] virtualenvwrapper: rebuild for Python 3.8.

---
 srcpkgs/virtualenvwrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtualenvwrapper/template b/srcpkgs/virtualenvwrapper/template
index 6007cc5d2ed..1f0c2efee86 100644
--- a/srcpkgs/virtualenvwrapper/template
+++ b/srcpkgs/virtualenvwrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'virtualenvwrapper'
 pkgname=virtualenvwrapper
 version=4.8.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="virtualenvwrapper"

From 13d514ee50452908bb52a5f4c379b8543e8aae2e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 814/873] visidata: rebuild for Python 3.8.

---
 srcpkgs/visidata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/visidata/template b/srcpkgs/visidata/template
index 715896e5f7c..c5c3ae7c82e 100644
--- a/srcpkgs/visidata/template
+++ b/srcpkgs/visidata/template
@@ -1,7 +1,7 @@
 # Template file for 'visidata'
 pkgname=visidata
 version=1.5.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="visidata"

From 9ed4ec9bfee68875daad74ea3f07f0378d1b0009 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 815/873] volctl: rebuild for Python 3.8.

---
 srcpkgs/volctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template
index 2b01750b9eb..585aabd2495 100644
--- a/srcpkgs/volctl/template
+++ b/srcpkgs/volctl/template
@@ -1,7 +1,7 @@
 # Template file for 'volctl'
 pkgname=volctl
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="volctl"

From 0db272695e88b29ee9216db4cc2572e0020b4df0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 816/873] voltron: rebuild for Python 3.8.

---
 srcpkgs/voltron/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/voltron/template b/srcpkgs/voltron/template
index c258bb9bab9..38f47a824e3 100644
--- a/srcpkgs/voltron/template
+++ b/srcpkgs/voltron/template
@@ -1,7 +1,7 @@
 # Template file for 'voltron'
 pkgname=voltron
 version=0.1.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="voltron"

From 12dedac32ff8a0f576ad19fc3147b4b386831c3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 817/873] volume_key: rebuild for Python 3.8.

---
 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 11d7b16bed8..14431cb70e9 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=1
+revision=2
 build_style=gnu-configure
 make_build_args="PYTHON3_CFLAGS=-I${XBPS_CROSS_BASE}/${py3_inc}
  PYTHON_CFLAGS=-I${XBPS_CROSS_BASE}/${py2_inc}"

From 3ce63c210ee385583504492fdf75f2ae859f05a4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 818/873] weather: rebuild for Python 3.8.

---
 srcpkgs/weather/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weather/template b/srcpkgs/weather/template
index ffa8a828b36..3ac33bfac15 100644
--- a/srcpkgs/weather/template
+++ b/srcpkgs/weather/template
@@ -1,7 +1,7 @@
 # Template file for 'weather'
 pkgname=weather
 version=2.3
-revision=2
+revision=3
 archs=noarch
 hostmakedepends="python3"
 depends="python3"

From 6b24b9871b5a34bb13b50f506793021986de04d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 819/873] wfuzz: rebuild for Python 3.8.

---
 srcpkgs/wfuzz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wfuzz/template b/srcpkgs/wfuzz/template
index b03c1f28add..4a88ab67407 100644
--- a/srcpkgs/wfuzz/template
+++ b/srcpkgs/wfuzz/template
@@ -1,7 +1,7 @@
 # Template file for 'wfuzz'
 pkgname=wfuzz
 version=2.4
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="wfuzz"

From ffffd630d47635e9948e7264798154dcf5cf4862 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 820/873] wpgtk: rebuild for Python 3.8.

---
 srcpkgs/wpgtk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpgtk/template b/srcpkgs/wpgtk/template
index 7e9d52b4f81..a722da58f22 100644
--- a/srcpkgs/wpgtk/template
+++ b/srcpkgs/wpgtk/template
@@ -1,7 +1,7 @@
 # Template file for 'wpgtk'
 pkgname=wpgtk
 version=6.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpgtk"

From ad6d5b938b34863f749429277206983bd33a9592 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 821/873] wpull: rebuild for Python 3.8.

---
 srcpkgs/wpull/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpull/template b/srcpkgs/wpull/template
index 5e9b9dcc641..621e1c85428 100644
--- a/srcpkgs/wpull/template
+++ b/srcpkgs/wpull/template
@@ -1,7 +1,7 @@
 # Template file for 'wpull'
 pkgname=wpull
 version=2.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpull"

From c0ba430699f94546d60abaeba6f248ef6d36ef84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 822/873] wxPython4: rebuild for Python 3.8.

---
 srcpkgs/wxPython4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wxPython4/template b/srcpkgs/wxPython4/template
index 2aa7117d5e0..b65e0b2ffe1 100644
--- a/srcpkgs/wxPython4/template
+++ b/srcpkgs/wxPython4/template
@@ -1,7 +1,7 @@
 # Template file for 'wxPython4'
 pkgname=wxPython4
 version=4.0.6
-revision=2
+revision=3
 wrksrc="wxPython-${version}"
 build_style=python3-module
 pycompile_module="wx"

From eae81cc7d657c1f863b8ae9a32aa075cc25328f4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 823/873] xcb-proto: rebuild for Python 3.8.

---
 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 1b26ecd73f3..020524bda87 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.13
-revision=2
+revision=3
 archs=noarch
 build_style=gnu-configure
 pycompile_module="xcbgen"

From c879f24aa56efd90bcd1b2031c3a7e194ee93abb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 824/873] xdot: rebuild for Python 3.8.

---
 srcpkgs/xdot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xdot/template b/srcpkgs/xdot/template
index 23f7b1f17e0..f7507ffb8c5 100644
--- a/srcpkgs/xdot/template
+++ b/srcpkgs/xdot/template
@@ -1,7 +1,7 @@
 # Template file for 'xdot'
 pkgname=xdot
 version=1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="xdot.py-${version}"
 build_style=python3-module

From ba48e65ee5332c30c40c9015ffd4f97f902bdcc1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 825/873] xkcdpass: rebuild for Python 3.8.

---
 srcpkgs/xkcdpass/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xkcdpass/template b/srcpkgs/xkcdpass/template
index 46b4a9635f9..37fb6872079 100644
--- a/srcpkgs/xkcdpass/template
+++ b/srcpkgs/xkcdpass/template
@@ -1,7 +1,7 @@
 # Template file for 'xkcdpass'
 pkgname=xkcdpass
 version=1.17.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="XKCD-password-generator-xkcdpass-${version}"
 build_style=python3-module

From f604c57acf10fb9091080955e88a704447aab0cb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 826/873] xonsh: rebuild for Python 3.8.

---
 srcpkgs/xonsh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xonsh/template b/srcpkgs/xonsh/template
index 768ebf36022..2dca267d0d1 100644
--- a/srcpkgs/xonsh/template
+++ b/srcpkgs/xonsh/template
@@ -1,7 +1,7 @@
 # Template file for 'xonsh'
 pkgname=xonsh
 version=0.9.12
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="xonsh xontrib"

From 8cdb99abdc99eefcc53ff3ab7418d4d830558c63 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 827/873] yq: rebuild for Python 3.8.

---
 srcpkgs/yq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yq/template b/srcpkgs/yq/template
index 7c3af7f43c2..dda886c6c40 100644
--- a/srcpkgs/yq/template
+++ b/srcpkgs/yq/template
@@ -1,7 +1,7 @@
 # Template file for 'yq'
 pkgname=yq
 version=2.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 6e757a227ac3953cc8567422ce6b473e6df30cc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 828/873] ytcc: rebuild for Python 3.8.

---
 srcpkgs/ytcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ytcc/template b/srcpkgs/ytcc/template
index feafa404b75..df4195758c7 100644
--- a/srcpkgs/ytcc/template
+++ b/srcpkgs/ytcc/template
@@ -1,7 +1,7 @@
 # Template file for 'ytcc'
 pkgname=ytcc
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ytcc"

From 1742b15ff06a60216eae8f7a016b441d18572e03 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 829/873] yturl: rebuild for Python 3.8.

---
 srcpkgs/yturl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yturl/template b/srcpkgs/yturl/template
index 6fa3e9872ee..ee14b77b5a0 100644
--- a/srcpkgs/yturl/template
+++ b/srcpkgs/yturl/template
@@ -1,7 +1,7 @@
 # Template file for 'yturl'
 pkgname=yturl
 version=2.0.2
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From b6302f7cf81ad28b08db1f9b8e986b9a6c3d59c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 830/873] yubikey-manager: rebuild for Python 3.8.

---
 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 af0330e8e15..fcc7b7cb737 100644
--- a/srcpkgs/yubikey-manager/template
+++ b/srcpkgs/yubikey-manager/template
@@ -1,7 +1,7 @@
 # Template file for 'yubikey-manager'
 pkgname=yubikey-manager
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 87bab1c9de0d25f72a5520b2adcd72c53599a433 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 831/873] z3: rebuild for Python 3.8.

---
 srcpkgs/z3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/z3/template b/srcpkgs/z3/template
index d632a285019..e054915df91 100644
--- a/srcpkgs/z3/template
+++ b/srcpkgs/z3/template
@@ -1,7 +1,7 @@
 # Template file for 'z3'
 pkgname=z3
 version=4.8.6
-revision=2
+revision=3
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=configure
 configure_args="--prefix=/usr -g --python $(vopt_if ocaml --ml)"

From 08edebe2ef2c613536937e6ee2d3fc6e9f067b72 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 832/873] zim: rebuild for Python 3.8.

---
 srcpkgs/zim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/zim/template b/srcpkgs/zim/template
index 45b9df5357c..dff4ad22081 100644
--- a/srcpkgs/zim/template
+++ b/srcpkgs/zim/template
@@ -1,7 +1,7 @@
 # Template file for 'zim'
 pkgname=zim
 version=0.71.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="zim"

From b4ef921e58656c77eb688ee4e2af7b20b3c8bfd2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 833/873] python3-pafy: rebuild for Python 3.8.

---
 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 ce26f770c69..b59c9a0adff 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.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pafy-${version}"
 build_style=python3-module

From bf4e7780fb8dcc15680cd79ddef83f8183bb3375 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 834/873] python3-perf: rebuild for Python 3.8.

---
 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 a03251f97e8..3d57ddb1c1a 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.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyperf-${version}"
 build_style=python3-module

From 80bbe375d025a8f2df0fa0878b5089c83f181e95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 835/873] python3-yara: rebuild for Python 3.8.

---
 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 4a6c56dd083..3bdff14a0da 100644
--- a/srcpkgs/python3-yara/template
+++ b/srcpkgs/python3-yara/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-yara'
 pkgname=python3-yara
 version=3.11.0
-revision=1
+revision=2
 wrksrc="yara-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From dfbf656d20e2c60d70d38432d72796e45a07530a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:31 +0200
Subject: [PATCH 836/873] azote: rebuild for Python 3.8.

---
 srcpkgs/azote/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/azote/template b/srcpkgs/azote/template
index 0a23c209551..2748cb98733 100644
--- a/srcpkgs/azote/template
+++ b/srcpkgs/azote/template
@@ -1,7 +1,7 @@
 # Template file for 'azote'
 pkgname=azote
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="azote"

From 6f9b552c053623ad5214d1b8401f41cb4e56734c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 837/873] binwalk: rebuild for Python 3.8.

---
 srcpkgs/binwalk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/binwalk/template b/srcpkgs/binwalk/template
index 461ea4b547a..fccd523d584 100644
--- a/srcpkgs/binwalk/template
+++ b/srcpkgs/binwalk/template
@@ -1,7 +1,7 @@
 # Template file for 'binwalk'
 pkgname=binwalk
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="binwalk"

From cdf9d0c94b7363a5bab761faa1a5119852db14c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 838/873] gnome-builder: rebuild for Python 3.8.

---
 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 9ae9ff9d94c..85aeeee9a15 100644
--- a/srcpkgs/gnome-builder/template
+++ b/srcpkgs/gnome-builder/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-builder'
 pkgname=gnome-builder
 version=3.34.1
-revision=1
+revision=2
 build_style=meson
 configure_args="-Dwith_webkit=true -Dwith_sysprof=true -Dhelp=true"
 hostmakedepends="appdata-tools desktop-file-utils flex gobject-introspection

From c0bccc27652b15e34572ed02503df5ae7b1dbebb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 839/873] gnome-tweaks: rebuild for Python 3.8.

---
 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 ac1f8bdb873..d0879253ac5 100644
--- a/srcpkgs/gnome-tweaks/template
+++ b/srcpkgs/gnome-tweaks/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-tweaks'
 pkgname=gnome-tweaks
 version=3.34.0
-revision=2
+revision=3
 archs=noarch
 build_style=meson
 pycompile_module="gtweak"

From c86e2d08bfa3e52c769e2b8c76e993af14c698bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 840/873] meson: rebuild for Python 3.8.

---
 srcpkgs/meson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meson/template b/srcpkgs/meson/template
index 315a0f27a92..76791451681 100644
--- a/srcpkgs/meson/template
+++ b/srcpkgs/meson/template
@@ -2,7 +2,7 @@
 pkgname=meson
 reverts="0.52.0_1 0.52.0_2"
 version=0.51.2
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mesonbuild"

From 1259e701609ac87f299b515b612f6b5589a6a5e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 841/873] onionshare: rebuild for Python 3.8.

---
 srcpkgs/onionshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onionshare/template b/srcpkgs/onionshare/template
index c585ae6101e..c37c5962736 100644
--- a/srcpkgs/onionshare/template
+++ b/srcpkgs/onionshare/template
@@ -1,7 +1,7 @@
 # Template file for 'onionshare'
 pkgname=onionshare
 version=2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="onionshare"

From e24fbb347a50db8d9adc3c2e21abfa2926516285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 842/873] portage: rebuild for Python 3.8.

---
 srcpkgs/portage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/portage/template b/srcpkgs/portage/template
index b0f34731035..9610428bbf4 100644
--- a/srcpkgs/portage/template
+++ b/srcpkgs/portage/template
@@ -1,7 +1,7 @@
 # Template file for 'portage'
 pkgname=portage
 version=2.3.77
-revision=1
+revision=2
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=python3-module
 pycompile_module="portage _emerge"

From 3d8944805a3fcbe269c633fd504f8156014b9743 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 843/873] rpm: fix and rebuild for Python 3.8.

---
 srcpkgs/rpm/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/rpm/template b/srcpkgs/rpm/template
index 98e35930c4c..695195323fd 100644
--- a/srcpkgs/rpm/template
+++ b/srcpkgs/rpm/template
@@ -1,7 +1,7 @@
 # Template file for 'rpm'
 pkgname=rpm
 version=4.15.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--with-lua --with-cap --with-acl --with-external-db
  --enable-python PYTHON=python3"
@@ -18,7 +18,7 @@ distfiles="http://ftp.rpm.org/releases/rpm-4.15.x/rpm-${version}.tar.bz2"
 checksum=1e06723b13591e57c99ebe2006fb8daddc4cf72efb366a64a34673ba5f61c201
 conflicts="rpmextract>=0" # Both provide rpm2cpio
 
-CFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6"
+CFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nss"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nspr"
 

From 72f86e0f7af627c04b12bdf23f9811e4ae8da247 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 844/873] youtube-dl: rebuild for Python 3.8.

---
 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 d6596b80bd3..f1ae3aa1a74 100644
--- a/srcpkgs/youtube-dl/template
+++ b/srcpkgs/youtube-dl/template
@@ -1,7 +1,7 @@
 # Template file for 'youtube-dl'
 pkgname=youtube-dl
 version=2019.10.16
-revision=1
+revision=2
 archs=noarch
 wrksrc=youtube-dl
 build_style=python3-module

From fb04151cb309fc8ff7a84dfe9204c113fb159d19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 845/873] blender: rebuild for Python 3.8.

---
 srcpkgs/blender/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template
index 758d1235185..47cb8f8ad13 100644
--- a/srcpkgs/blender/template
+++ b/srcpkgs/blender/template
@@ -1,7 +1,7 @@
 # Template file for 'blender'
 pkgname=blender
 version=2.79b
-revision=9
+revision=10
 build_style="cmake"
 makedepends="
  libgomp-devel libpng-devel tiff-devel python3-devel glu-devel

From 7a05e07582c4f2dad1e5ce7b472de4dd50f5ffc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 846/873] freecad: fix and rebuild for Python 3.8.

---
 srcpkgs/freecad/patches/090-py38.patch | 22 ++++++++++++++++++++++
 srcpkgs/freecad/template               |  2 +-
 2 files changed, 23 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/freecad/patches/090-py38.patch

diff --git a/srcpkgs/freecad/patches/090-py38.patch b/srcpkgs/freecad/patches/090-py38.patch
new file mode 100644
index 00000000000..92566df9df3
--- /dev/null
+++ b/srcpkgs/freecad/patches/090-py38.patch
@@ -0,0 +1,22 @@
+From 174011749d836f3b6c6ae2630f53b2f4c1f9d3fc Mon Sep 17 00:00:00 2001
+From: Richard <hobbes1069@gmail.com>
+Date: Thu, 17 Oct 2019 11:20:10 -0500
+Subject: [PATCH] Update swigpyrun.in for Python 3.8
+
+In Python 3.8 some functions related to thread state were intentionally made private.
+
+This fix (specific to FreeCAD) was suggested here:
+
+https://bugs.python.org/issue35886
+
+--- src/Base/swigpyrun.inl
++++ src/Base/swigpyrun.inl
+@@ -72,7 +72,7 @@ void cleanupSWIG_T(const char* TypeName)
+ 
+     PyObject *module, *dict;
+     PyInterpreterState *interp = PyThreadState_GET()->interp;
+-    PyObject *modules = interp->modules;
++    PyObject *modules = PyImport_GetModuleDict();
+     module = PyDict_GetItemString(modules, "__builtin__");
+     if (module != NULL && PyModule_Check(module)) {
+         dict = PyModule_GetDict(module);
diff --git a/srcpkgs/freecad/template b/srcpkgs/freecad/template
index 9e9375c4444..26bf34702a2 100644
--- a/srcpkgs/freecad/template
+++ b/srcpkgs/freecad/template
@@ -1,7 +1,7 @@
 # Template file for 'freecad'
 pkgname=freecad
 version=0.18.3
-revision=2
+revision=3
 wrksrc="FreeCAD-${version}"
 build_style=cmake
 

From 718d5c572ffaa708c4160791eb058eabf0caf143 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 847/873] gdb: rebuild for Python 3.8.

---
 srcpkgs/gdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gdb/template b/srcpkgs/gdb/template
index 9f84e4869e9..39aab79d08a 100644
--- a/srcpkgs/gdb/template
+++ b/srcpkgs/gdb/template
@@ -1,7 +1,7 @@
 # Template file for 'gdb'
 pkgname=gdb
 version=8.3.1
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="/usr/share/gdb"
 configure_args="--disable-werror --disable-nls --with-system-readline

From e89ecd13e39e0d4ffa50beaae64ee63aa2febcdc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 848/873] hexchat: rebuild for Python 3.8.

---
 srcpkgs/hexchat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hexchat/template b/srcpkgs/hexchat/template
index fbeaf28ae8a..9f7d7957b76 100644
--- a/srcpkgs/hexchat/template
+++ b/srcpkgs/hexchat/template
@@ -1,7 +1,7 @@
 # Template file for 'hexchat'
 pkgname=hexchat
 version=2.14.2
-revision=6
+revision=7
 build_style=meson
 configure_args="-Dwith-dbus=true -Dwith-ssl=true -Dwith-text=false
  -Dwith-perl=/usr/bin/perl -Dwith-python=python3

From 295d2fcdb8e6c8981469ea3f0881d7acc0d7a5a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 849/873] hyperion: rebuild for Python 3.8.

---
 srcpkgs/hyperion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hyperion/template b/srcpkgs/hyperion/template
index 0befdbe7064..7ce415e929e 100644
--- a/srcpkgs/hyperion/template
+++ b/srcpkgs/hyperion/template
@@ -1,7 +1,7 @@
 # Template file for 'hyperion'
 pkgname=hyperion
 version=1.03.2
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DUSE_SYSTEM_PROTO_LIBS=ON -DENABLE_QT5=ON
  -DPROTOBUF_PROTOC_EXECUTABLE=/usr/bin/protoc -DENABLE_AMLOGIC=ON

From c6846e2a15765deae100b5a9a32307270668a58c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 850/873] kdevelop-python: rebuild for Python 3.8.

---
 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 0265916a3d0..a306eb8f442 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.4.2
-revision=1
+revision=2
 wrksrc="kdev-python-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/kdevpythonsupport"

From a61462c12e1549e93d89a2be3d1fbc1c899f8fc7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 851/873] kitty: rebuild for Python 3.8.

---
 srcpkgs/kitty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/kitty/template b/srcpkgs/kitty/template
index d79bcc4acce..54cd08c23ec 100644
--- a/srcpkgs/kitty/template
+++ b/srcpkgs/kitty/template
@@ -1,7 +1,7 @@
 # Template file for 'kitty'
 pkgname=kitty
 version=0.14.6
-revision=1
+revision=2
 pycompile_dirs="usr/lib/kitty"
 hostmakedepends="ncurses pkg-config python3 wayland-devel wayland-protocols"
 makedepends="gettext-devel glfw-devel harfbuzz-devel libxkbcommon-devel

From eb1971689e3b6e8804a1e503f9487d80a97a132a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 852/873] krita: rebuild for Python 3.8, fix sha256sum.

Tarball was yanked for trivial fix.
---
 srcpkgs/krita/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/krita/template b/srcpkgs/krita/template
index 7a59fc9ac58..67f128c61ce 100644
--- a/srcpkgs/krita/template
+++ b/srcpkgs/krita/template
@@ -1,7 +1,7 @@
 # Template file for 'krita'
 pkgname=krita
 version=4.2.7.1
-revision=1
+revision=2
 build_style=cmake
 configure_args="-Wno-dev -DBUILD_TESTING=OFF"
 hostmakedepends="extra-cmake-modules pkg-config python3"
@@ -18,6 +18,6 @@ license="GPL-3.0-only"
 homepage="https://krita.org/"
 KDE_SITE="http://ftp5.gwdg.de/pub/linux/kde/stable/"
 distfiles="${KDE_SITE}/krita/${version}/krita-${version}.tar.gz"
-checksum=28218030edca9dfa1c7e255401ca6fc8fe0e5329f7611cfc196e35746d312086
+checksum=3ed29fd9d8e067def55e703fc55312815c21041d274727e228bdbe0478c09c3d
 nocross=yes
 replaces="calligra-krita>=0"

From 221123967fa111191496b9e08e2c9c76756c13b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:26:38 +0200
Subject: [PATCH 853/873] libpeas: rebuild for Python 3.8.

---
 srcpkgs/libpeas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index a69238bf823..d4dcf8b5941 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,7 +1,7 @@
 # Template file for 'libpeas'
 pkgname=libpeas
 version=1.22.0
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"

From 365648c1fccc0285703eeddac9324f2f4a91218f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 854/873] libreoffice: rebuild for Python 3.8.

---
 srcpkgs/libreoffice/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template
index 6e8685ac0fd..98f04a40304 100644
--- a/srcpkgs/libreoffice/template
+++ b/srcpkgs/libreoffice/template
@@ -1,7 +1,7 @@
 # Template file for 'libreoffice'
 pkgname=libreoffice
 version=6.2.5.2
-revision=2
+revision=3
 build_style=meta
 make_build_args="build-nocheck"
 nocross=yes

From 1c313604728a7106e5854243e06f9cb65c997436 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 855/873] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index 1f9c8043b46..34174be7535 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=5
+revision=6
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From aef507d5b726f510663f6e9c2bfd9f7eb3eeab4e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 856/873] libsigrokdecode: rebuild for Python 3.8.

---
 srcpkgs/libsigrokdecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsigrokdecode/template b/srcpkgs/libsigrokdecode/template
index 59e15dd61b9..cc9d9a10367 100644
--- a/srcpkgs/libsigrokdecode/template
+++ b/srcpkgs/libsigrokdecode/template
@@ -1,7 +1,7 @@
 # Template file for 'libsigrokdecode'
 pkgname=libsigrokdecode
 version=0.5.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="glib-devel python3-devel"

From ca583906dfd0c97c9a4c36d862bf85a55ad07f90 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 857/873] luxrays: rebuild for Python 3.8.

---
 srcpkgs/luxrays/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/luxrays/template b/srcpkgs/luxrays/template
index c783e9fe3e5..58037fbfc05 100644
--- a/srcpkgs/luxrays/template
+++ b/srcpkgs/luxrays/template
@@ -1,7 +1,7 @@
 # Template file for 'luxrays'
 pkgname=luxrays
 version=3.1
-revision=13
+revision=14
 build_style=cmake
 configure_args="-DLUXRAYS_DISABLE_OPENCL=OFF -DCMAKE_SKIP_RPATH=ON"
 hostmakedepends="flex bison boost-devel"

From ef66922c11033d027b7badec1e15a0a0fb3aacbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 858/873] navit: rebuild for Python 3.8.

---
 srcpkgs/navit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/navit/template b/srcpkgs/navit/template
index 461689a3c73..24cd151c64b 100644
--- a/srcpkgs/navit/template
+++ b/srcpkgs/navit/template
@@ -1,7 +1,7 @@
 # Template file for 'navit'
 pkgname=navit
 version=0.5.3
-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 f8cae9038ecc7f293e820f51664bfd59aac52b73 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 859/873] obs: rebuild for Python 3.8.

---
 srcpkgs/obs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/obs/template b/srcpkgs/obs/template
index 3ed426b1583..45bf81803e4 100644
--- a/srcpkgs/obs/template
+++ b/srcpkgs/obs/template
@@ -1,7 +1,7 @@
 # Template file for 'obs'
 pkgname=obs
 version=24.0.1
-revision=1
+revision=2
 _commit_hash_obs_browser="693498b518cf893876f454ef581e13106e8370ec"
 _commit_hash_obs_vst="fde438f7a8afdf41a7ab386a0aa1a61175fc8427"
 _commit_hash_ftl_sdk="98289f7c2ed754c647d451899b3356850c0c1fa3"

From dbfccd5a0bab2df75f326e85613243fa4867cd8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 860/873] renderdoc: fix and rebuild for Python 3.8.

---
 srcpkgs/renderdoc/files/swig-py38.patch    | 28 +++++++++++++
 srcpkgs/renderdoc/patches/cmake-py38.patch | 48 ++++++++++++++++++++++
 srcpkgs/renderdoc/template                 |  8 ++--
 3 files changed, 81 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/renderdoc/files/swig-py38.patch
 create mode 100644 srcpkgs/renderdoc/patches/cmake-py38.patch

diff --git a/srcpkgs/renderdoc/files/swig-py38.patch b/srcpkgs/renderdoc/files/swig-py38.patch
new file mode 100644
index 00000000000..0595599c658
--- /dev/null
+++ b/srcpkgs/renderdoc/files/swig-py38.patch
@@ -0,0 +1,28 @@
+From dbe955dd0300d55a32fd73a4eef730b3e30ed5c4 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 20:32:03 +0200
+Subject: [PATCH] swig: avoid use of _PyObject_GC_UNTRACK
+
+It is deprecated[1]. Use PyObject_GC_UnTrack instead.
+
+[1] https://docs.python.org/3/c-api/gcsupport.html#c._PyObject_GC_UNTRACK
+---
+ Lib/python/builtin.swg | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Lib/python/builtin.swg b/Lib/python/builtin.swg
+index 9597653b7..6af45a9d1 100644
+--- a/Lib/python/builtin.swg
++++ b/Lib/python/builtin.swg
+@@ -120,7 +120,7 @@ SwigPyBuiltin_FunpackSetterClosure (PyObject *obj, PyObject *val, void *closure)
+ 
+ SWIGINTERN void
+ SwigPyStaticVar_dealloc(PyDescrObject *descr) {
+-  _PyObject_GC_UNTRACK(descr);
++  PyObject_GC_UnTrack(descr);
+   Py_XDECREF(PyDescr_TYPE(descr));
+   Py_XDECREF(PyDescr_NAME(descr));
+   PyObject_GC_Del(descr);
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/patches/cmake-py38.patch b/srcpkgs/renderdoc/patches/cmake-py38.patch
new file mode 100644
index 00000000000..fc1adb9ddbc
--- /dev/null
+++ b/srcpkgs/renderdoc/patches/cmake-py38.patch
@@ -0,0 +1,48 @@
+From 56769d3e2cc12670b73a1ddd9dfaab959340c2e2 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 21:27:02 +0200
+Subject: [PATCH] CMake: py3.8 support, ability to patch swig
+
+Add 3.8 to list of python versions and ability to patch the custom
+swig, also needed for 3.8
+---
+ CMakeLists.txt            | 2 +-
+ qrenderdoc/CMakeLists.txt | 2 ++
+ 2 files changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 13818e5b8..00feda2ad 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -308,7 +308,7 @@ add_subdirectory(renderdoc)
+ # are handled in common
+ if(ENABLE_QRENDERDOC OR ENABLE_PYRENDERDOC)
+     # Make sure Python 3 is found
+-    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7)
++    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7 3.8)
+     find_package(PythonInterp 3 REQUIRED)
+     find_package(PythonLibs 3 REQUIRED)
+     # we also need python3-config for swig
+diff --git a/qrenderdoc/CMakeLists.txt b/qrenderdoc/CMakeLists.txt
+index 9fd65b2d3..1ef284349 100644
+--- a/qrenderdoc/CMakeLists.txt
++++ b/qrenderdoc/CMakeLists.txt
+@@ -7,6 +7,7 @@ endif()
+ 
+ set(QMAKE_QT5_COMMAND ${QT_QMAKE_EXECUTABLE} CACHE STRING "Command to run to invoke Qt5's qmake. Normally this is qmake, possibly with qtchooser, but might be qmake-qt5")
+ set(RENDERDOC_SWIG_PACKAGE https://github.com/baldurk/swig/archive/renderdoc-modified-6.zip CACHE STRING "The location where RenderDoc's swig fork source can be found. By default points to the URL on github but can be pointed to a local file.")
++set(RENDERDOC_SWIG_PATCH "" CACHE STRING "The location for the patch to apply to swig.")
+ 
+ set(QMAKE_CONFIG "debug")
+ set(QMAKE_LDFLAGS "")
+@@ -99,6 +100,7 @@ ExternalProject_Add(custom_swig
+     # using an URL to a zip directly so we don't clone the history etc
+     URL ${RENDERDOC_SWIG_PACKAGE}
+     BUILD_IN_SOURCE 1
++    PATCH_COMMAND patch -p1 -i ${RENDERDOC_SWIG_PATCH} > /dev/null
+     CONFIGURE_COMMAND ./autogen.sh > /dev/null 2>&1
+     COMMAND CC=${SWIG_CONFIGURE_CC} CXX=${SWIG_CONFIGURE_CXX} CFLAGS=-fPIC CXXFLAGS=-fPIC ./configure --with-pcre=yes --prefix=${CMAKE_BINARY_DIR} > /dev/null
+     BUILD_COMMAND ${GENERATOR_MAKE} > /dev/null 2>&1
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/template b/srcpkgs/renderdoc/template
index 32d051864d3..9972d9435b0 100644
--- a/srcpkgs/renderdoc/template
+++ b/srcpkgs/renderdoc/template
@@ -1,11 +1,13 @@
 # Template file for 'renderdoc'
 pkgname=renderdoc
 version=1.4
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DENABLE_GL=ON -DENABLE_GLES=ON -DENABLE_QRENDERDOC=ON
  -DENABLE_RENDERDOCCMD=ON -DENABLE_VULKAN=ON -DENABLE_XCB=ON -DENABLE_XLIB=ON
- -DENABLE_PYRENDERDOC=ON"
+ -DENABLE_PYRENDERDOC=ON
+ -DRENDERDOC_SWIG_PATCH=${XBPS_SRCPKGDIR}/${pkgname}/files/swig-py38.patch"
+patch_args="-p1"
 hostmakedepends="bison autoconf automake pkg-config python3"
 makedepends="libX11-devel libxcb-devel xcb-util-keysyms-devel libGL qt5-devel
  qt5-svg-devel qt5-x11extras-devel pcre-devel python3-devel"
@@ -17,7 +19,7 @@ distfiles="https://github.com/baldurk/${pkgname}/archive/v${version}.tar.gz"
 checksum=9a78951f386fb7c3ecf7df6919d300db59719d14f0621438963ae30a75d33677
 
 case "$XBPS_TARGET_MACHINE" in
-	*-musl) broken="This package uses execnfo.h which is not available on musl"
+	*-musl) broken="This package uses execinfo.h which is not available on musl"
 esac
 
 if [ "$CROSS_BUILD" ]; then

From 459b63795ca01a8fe746aec6d9f97141bdc3fc35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 861/873] sigil: rebuild for Python 3.8.

---
 srcpkgs/sigil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sigil/template b/srcpkgs/sigil/template
index 4a90ef95798..1d577ee3487 100644
--- a/srcpkgs/sigil/template
+++ b/srcpkgs/sigil/template
@@ -1,7 +1,7 @@
 # Template file for 'sigil'
 pkgname=sigil
 version=0.9.13
-revision=1
+revision=2
 wrksrc="Sigil-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/sigil/python3lib"

From eb0492cef63d32f08e51495ae261b150a7b3f1b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 862/873] uwsgi: rebuild for Python 3.8.

---
 srcpkgs/uwsgi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/uwsgi/template b/srcpkgs/uwsgi/template
index 2e96cd2e38e..e283d6bc357 100644
--- a/srcpkgs/uwsgi/template
+++ b/srcpkgs/uwsgi/template
@@ -1,7 +1,7 @@
 # Template file for 'uwsgi'
 pkgname=uwsgi
 version=2.0.18
-revision=1
+revision=2
 hostmakedepends="python python3"
 makedepends="python-devel python3-devel"
 short_desc="Fast, self-healing application container server"

From 107450e305e9c38e02604604d47fd38619481bc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 863/873] vim: rebuild for Python 3.8.

---
 srcpkgs/vim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vim/template b/srcpkgs/vim/template
index 8f543069d19..7c7fd4a30f7 100644
--- a/srcpkgs/vim/template
+++ b/srcpkgs/vim/template
@@ -1,7 +1,7 @@
 # Template file for 'vim'
 pkgname=vim
 version=8.1.2021
-revision=3
+revision=4
 hostmakedepends="glib-devel pkg-config"
 makedepends="acl-devel gtk+3-devel libXt-devel lua-devel ncurses-devel
  perl python-devel python3-devel ruby-devel"

From e5c9ab9b7773855271a75cfe5d4dc6cc5d230b59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 864/873] weechat: rebuild for Python 3.8.

---
 srcpkgs/weechat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weechat/template b/srcpkgs/weechat/template
index 19f8af4fd8f..14c3e2360f5 100644
--- a/srcpkgs/weechat/template
+++ b/srcpkgs/weechat/template
@@ -1,7 +1,7 @@
 # Template file for 'weechat'
 pkgname=weechat
 version=2.6
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_MAN=ON -DENABLE_ENCHANT=ON -DENABLE_PERL=ON
  -DENABLE_LUA=ON -DENABLE_RUBY=ON -DENABLE_SPELL=ON

From a86ea0eef792b9b5666ffe67d6f3c6549467f704 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 865/873] znc: rebuild for Python 3.8.

---
 srcpkgs/znc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/znc/template b/srcpkgs/znc/template
index 8af8f23a145..696b59133c8 100644
--- a/srcpkgs/znc/template
+++ b/srcpkgs/znc/template
@@ -1,7 +1,7 @@
 # Template file for 'znc'
 pkgname=znc
 version=1.7.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="
  --enable-python

From 2cfcf24e55b5aae1d192c7345b5ede0401a4486b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:18:51 +0200
Subject: [PATCH 866/873] boost: rebuild for Python 3.8.

---
 srcpkgs/boost/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 40a4fe67730..1fb0e8ed519 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=5
+revision=6
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"

From dab8bf9a36920b36c01351b0e78a3d894d95e438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:10 +0200
Subject: [PATCH 867/873] python-pyside: remove, obsolete.

---
 srcpkgs/python-pyside/INSTALL.msg | 1 -
 srcpkgs/python-pyside/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/python-pyside/INSTALL.msg
 delete mode 100644 srcpkgs/python-pyside/template

diff --git a/srcpkgs/python-pyside/INSTALL.msg b/srcpkgs/python-pyside/INSTALL.msg
deleted file mode 100644
index 6de207b7aa2..00000000000
--- a/srcpkgs/python-pyside/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-python-pyside is no longer provided by Void Linux, and will be fully removed from the repos on 2019-07-17
diff --git a/srcpkgs/python-pyside/template b/srcpkgs/python-pyside/template
deleted file mode 100644
index 7053f0e7fc3..00000000000
--- a/srcpkgs/python-pyside/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'python-pyside'
-pkgname=python-pyside
-version=1.2.2
-revision=7
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="http://www.pyside.org/"

From 56c4a66cb73f8c03aa1d75d0f3aeffc5558c4047 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:52 +0200
Subject: [PATCH 868/873] pyside-tools: remove, obsolete.

---
 srcpkgs/pyside-tools/INSTALL.msg | 1 -
 srcpkgs/pyside-tools/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/pyside-tools/INSTALL.msg
 delete mode 100644 srcpkgs/pyside-tools/template

diff --git a/srcpkgs/pyside-tools/INSTALL.msg b/srcpkgs/pyside-tools/INSTALL.msg
deleted file mode 100644
index fdb45eb0f42..00000000000
--- a/srcpkgs/pyside-tools/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-pyside-tools is no longer provided by Void Linux, and will be fully removed from the repos on 2019-10-30
diff --git a/srcpkgs/pyside-tools/template b/srcpkgs/pyside-tools/template
deleted file mode 100644
index 27cfc18eea4..00000000000
--- a/srcpkgs/pyside-tools/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'pyside-tools'
-pkgname=pyside-tools
-version=0.2.15
-revision=2
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="https://wiki.qt.io/"

From a4caf17102b2a8d6832ab3be41174a163b7a0573 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:22:03 +0200
Subject: [PATCH 869/873] shiboken: remove, obsolete.

---
 srcpkgs/shiboken/patches/python3.6.patch |  11 ---
 srcpkgs/shiboken/template                | 110 -----------------------
 2 files changed, 121 deletions(-)
 delete mode 100644 srcpkgs/shiboken/patches/python3.6.patch
 delete mode 100644 srcpkgs/shiboken/template

diff --git a/srcpkgs/shiboken/patches/python3.6.patch b/srcpkgs/shiboken/patches/python3.6.patch
deleted file mode 100644
index 7145fb4308b..00000000000
--- a/srcpkgs/shiboken/patches/python3.6.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- cmake/Modules/FindPython3Libs.cmake.orig
-+++ cmake/Modules/FindPython3Libs.cmake
-@@ -27,7 +27,7 @@
- # Search for the python framework on Apple.
- # CMAKE_FIND_FRAMEWORKS(Python)
- 
--FOREACH(_CURRENT_VERSION 3.4 3.3 3.2 3.1 3.0)
-+FOREACH(_CURRENT_VERSION 3.6 3.5 3.4 3.3 3.2 3.1 3.0)
-   IF(_CURRENT_VERSION GREATER 3.1)
-       SET(_32FLAGS "m" "u" "mu" "dm" "du" "dmu" "")
-   ELSE()
diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
deleted file mode 100644
index 34174be7535..00000000000
--- a/srcpkgs/shiboken/template
+++ /dev/null
@@ -1,110 +0,0 @@
-# Template file for 'shiboken'
-pkgname=shiboken
-version=1.2.2
-revision=6
-wrksrc="shiboken-${version}"
-hostmakedepends="cmake"
-makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"
-short_desc="CPython bindings generator for C++ libraries"
-maintainer="Enno Boland <gottox@voidlinux.org>"
-homepage="http://www.pyside.org"
-license="LGPL-2.1"
-distfiles="https://download.qt.io/official_releases/pyside/shiboken-${version}.tar.bz2"
-checksum=7625bbcf1fe313fd910c6b8c9cf49ac5495499f9d00867115a2f1f2a69fce5c4
-
-nocross="https://travis-ci.org/voidlinux/void-packages/jobs/269193001#L906"
-
-pre_build() {
-	# Fix inconsistent naming of libshiboken.so and ShibokenConfig.cmake
-	sed -i "/get_config_var('SOABI')/d" cmake/Modules/FindPython3InterpWithDebug.cmake
-}
-do_build() {
-	local args= configure_args="
-		-DCMAKE_INSTALL_PREFIX=/usr \
-		-DCMAKE_BUILD_TYPE=Release \
-		-DBUILD_TESTS=OFF"
-
-	for pyver in $py2_ver $py3_ver; do
-		args=
-		if [ "$pyver" = "$py2_ver" ]; then
-			args="-DPYTHON_SUFFIX=-python$py2_ver"
-		else
-			args="-DUSE_PYTHON3=yes"
-		fi
-
-		[ ! -d build-${pyver} ] && mkdir build-${pyver}
-		pushd build-${pyver}
-		cmake .. ${configure_args} ${args}
-		make ${makejobs}
-		popd
-	done
-}
-do_install() {
-	for pyver in $py2_ver $py3_ver; do
-		make -C build-${pyver} DESTDIR=${DESTDIR} install
-	done
-}
-post_install() {
-	# Fix conflict between .pc files
-	rm -f ${DESTDIR}/usr/lib/pkgconfig/*
-	for pyver in $py2_ver $py3_ver; do
-		vinstall build-${pyver}/data/shiboken.pc 644 \
-			usr/lib/pkgconfig shiboken-python${pyver}.pc
-	done
-}
-
-libshiboken-common-devel_package() {
-	depends="${sourcepkg}-${version}_${revision}"
-	short_desc+=" - common development files"
-	pkg_install() {
-		vmove usr/include
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig.cmake
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfigVersion.cmake
-	}
-}
-libshiboken-python-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python-${version}_${revision}"
-	short_desc="Python2 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py2_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py2_ver}.pc
-		vmove usr/lib/libshiboken-python${py2_ver}.so
-	}
-}
-libshiboken-python_package() {
-	short_desc="Python2 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version}
-	}
-}
-python-shiboken_package() {
-	short_desc="Python2 shiboken bindings"
-	pkg_install() {
-		vmove ${py2_sitelib}/shiboken.so
-	}
-}
-libshiboken-python3-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python3-${version}_${revision}"
-	short_desc="Python3 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py3_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py3_ver}.pc
-		vmove usr/lib/libshiboken-python${py3_ver}.so
-	}
-}
-libshiboken-python3_package() {
-	short_desc="Python3 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version}
-	}
-}
-python3-shiboken_package() {
-	short_desc="Python3 shiboken bindings"
-	pkg_install() {
-		vmove ${py3_sitelib}/shiboken.so
-	}
-}

From b8a76a958a1e28d96f0bf8a93acb982d756937b3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:34:00 +0200
Subject: [PATCH 870/873] boost: rebuild for Python 3.8.

Also ensure bjam is called with the same parameters, to avoid
a full rebuild with -j1 in do_install.
---
 common/shlibs          |  2 +-
 srcpkgs/boost/template | 13 +++++++------
 2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/common/shlibs b/common/shlibs
index f5133935773..92dae1c282c 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -683,7 +683,7 @@ libboost_stacktrace_noop.so.1.69.0 libboost_stacktrace_noop1.69-1.69.0_1<1.70.0
 libboost_stacktrace_addr2line.so.1.69.0 libboost_stacktrace_addr2line1.69-1.69.0_1<1.70.0
 libboost_stacktrace_basic.so.1.69.0 libboost_stacktrace_basic1.69-1.69.0_1<1.70.0
 libboost_python27.so.1.69.0 boost-python1.69-1.69.0_1<1.70.0
-libboost_python36.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
+libboost_python38.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
 libexempi.so.8 exempi-2.5.0_1
 libatasmart.so.4 libatasmart-0.17_1
 libsgutils2.so.2 libsgutils-1.42_1
diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 1fb0e8ed519..b516b348b14 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=6
+revision=7
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"
@@ -60,9 +60,9 @@ do_build() {
 	using python : ${py3_ver} : ${XBPS_CROSS_BASE}/usr/bin/python3 : ${XBPS_CROSS_BASE}${py3_inc} : ${XBPS_CROSS_BASE}${py3_lib} ;
 
 	__EOF
-	./bjam ${makejobs} \
+	./bjam ${makejobs} --prefix=${DESTDIR}/usr \
 		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam --debug-building \
+		--user-config=${wrksrc}/user-config.jam \
 		python=2.7,${py3_ver}
 }
 do_install() {
@@ -72,9 +72,10 @@ do_install() {
 	done
 
 	# Install headers/libs
-	./bjam --prefix=${DESTDIR}/usr abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam python=2.7,${py3_ver} install
-
+	./bjam --prefix=${DESTDIR}/usr \
+		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
+		--user-config=${wrksrc}/user-config.jam \
+		python=2.7,${py3_ver} install
 	# Install Boost.Build stuff.
 	vmkdir usr/share/boost-build
 	cd ${wrksrc}/tools/build && cp -a . ${DESTDIR}/usr/share/boost-build

From 4c0b1ce20aabdbed98b49e903ea6d0c9f531ad2f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 19:40:03 +0200
Subject: [PATCH 871/873] libpeas: update to 1.24.0.

---
 srcpkgs/libpeas/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index d4dcf8b5941..1ff2598c527 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,8 +1,8 @@
 # Template file for 'libpeas'
 pkgname=libpeas
-version=1.22.0
-revision=6
-build_style=gnu-configure
+version=1.24.0
+revision=1
+build_style=meson
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"
 makedepends="vala-devel gtk+3-devel python3-gobject-devel
@@ -13,7 +13,7 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://wiki.gnome.org/Projects/Libpeas"
 distfiles="${GNOME_SITE}/${pkgname}/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=5b2fc0f53962b25bca131a5ec0139e6fef8e254481b6e777975f7a1d2702a962
+checksum=0b9a00138c129a663de3eef5569b00ace03ce31d345f7af783768e9f35c8e6f9
 
 pre_build() {
 	if [ "$CROSS_BUILD" ]; then
@@ -35,7 +35,6 @@ libpeas-devel_package() {
 		vmove usr/lib/pkgconfig
 		vmove "usr/lib/*.so"
 		vmove usr/share/gir-1.0
-		vmove usr/share/gtk-doc
 		vmove usr/share/glade
 	}
 }

From 2be9ae0e45df517724574e5d873706b5377a17af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 20:33:53 +0200
Subject: [PATCH 872/873] scudcloud: upstream dead.

---
 srcpkgs/scudcloud/template | 21 ---------------------
 1 file changed, 21 deletions(-)
 delete mode 100644 srcpkgs/scudcloud/template

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
deleted file mode 100644
index 1ab2618066e..00000000000
--- a/srcpkgs/scudcloud/template
+++ /dev/null
@@ -1,21 +0,0 @@
-# Template file for 'scudcloud'
-pkgname=scudcloud
-version=1.65
-revision=2
-build_style=python3-module
-pycompile_module="scudcloud"
-hostmakedepends="python3-setuptools"
-makedepends="python3-setuptools python-PyQt5 python-dbus python3-PyQt5-dbus"
-depends="python3-setuptools python-PyQt5 python3-PyQt5-dbus
- python3-PyQt5-webkit xdg-utils"
-short_desc="Non official desktop client app for Slack"
-archs=noarch
-maintainer="Gurpreet Singh <gurpreet@mailfence.com>"
-license="MIT"
-homepage="https://launchpad.net/~rael-gc/+archive/ubuntu/scudcloud"
-distfiles="https://github.com/raelgc/${pkgname}/archive/v${version}.tar.gz"
-checksum=1b5420a868a37e181655e9799a3d1fcbbc0b0112349c44ac3d7936b626334791
-
-post_install() {
-	vlicense LICENSE
-}

From 3a020a359d0dc5eb9dce69bbca262e3e3a811f49 Mon Sep 17 00:00:00 2001
From: John <johnz@posteo.net>
Date: Tue, 30 Jul 2019 21:26:02 +0200
Subject: [PATCH 873/873] blender: update to 2.80.

---
 srcpkgs/blender/patches/D6038.diff            |  49 ++++++++
 .../blender/patches/blender-2.78a-musl.patch  |  49 ++++----
 .../collada-1.6.68_DocumentImporter.cpp.patch |  14 ---
 .../collada-1.6.68_DocumentImporter.h.patch   |  11 --
 srcpkgs/blender/patches/ffmpeg4.patch         | 116 ------------------
 srcpkgs/blender/patches/gcc9-elbeem.patch     |  31 -----
 srcpkgs/blender/patches/tree_hpp.patch        |  11 --
 srcpkgs/blender/patches/util_sseb.patch       |  11 --
 srcpkgs/blender/template                      |  15 ++-
 9 files changed, 84 insertions(+), 223 deletions(-)
 create mode 100644 srcpkgs/blender/patches/D6038.diff
 delete mode 100644 srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch
 delete mode 100644 srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch
 delete mode 100644 srcpkgs/blender/patches/ffmpeg4.patch
 delete mode 100644 srcpkgs/blender/patches/gcc9-elbeem.patch
 delete mode 100644 srcpkgs/blender/patches/tree_hpp.patch
 delete mode 100644 srcpkgs/blender/patches/util_sseb.patch

diff --git a/srcpkgs/blender/patches/D6038.diff b/srcpkgs/blender/patches/D6038.diff
new file mode 100644
index 00000000000..c26934e3447
--- /dev/null
+++ b/srcpkgs/blender/patches/D6038.diff
@@ -0,0 +1,49 @@
+Index: blender-2.80_patched/source/blender/python/generic/py_capi_utils.c
+===================================================================
+--- blender-2.80_patched/source/blender/python/generic/py_capi_utils.c
++++ blender-2.80_patched/source/blender/python/generic/py_capi_utils.c
+@@ -717,9 +717,11 @@
+  ****************************************************************************/
+ PyObject *PyC_DefaultNameSpace(const char *filename)
+ {
+-  PyInterpreterState *interp = PyThreadState_GET()->interp;
++  PyObject *modules = PyImport_GetModuleDict();
++  PyObject *builtins = PyDict_GetItemString(modules, "builtins");
++
+   PyObject *mod_main = PyModule_New("__main__");
+-  PyDict_SetItemString(interp->modules, "__main__", mod_main);
++  PyDict_SetItemString(modules, "__main__", mod_main);
+   Py_DECREF(mod_main); /* sys.modules owns now */
+   PyModule_AddStringConstant(mod_main, "__name__", "__main__");
+   if (filename) {
+@@ -727,8 +729,8 @@
+      * note: this wont map to a real file when executing text-blocks and buttons. */
+     PyModule_AddObject(mod_main, "__file__", PyC_UnicodeFromByte(filename));
+   }
+-  PyModule_AddObject(mod_main, "__builtins__", interp->builtins);
+-  Py_INCREF(interp->builtins); /* AddObject steals a reference */
++  PyModule_AddObject(mod_main, "__builtins__", builtins);
++  Py_INCREF(builtins); /* AddObject steals a reference */
+   return PyModule_GetDict(mod_main);
+ }
+ 
+@@ -755,15 +757,15 @@
+ /* restore MUST be called after this */
+ void PyC_MainModule_Backup(PyObject **main_mod)
+ {
+-  PyInterpreterState *interp = PyThreadState_GET()->interp;
+-  *main_mod = PyDict_GetItemString(interp->modules, "__main__");
++  PyObject *modules = PyImport_GetModuleDict();
++  *main_mod = PyDict_GetItemString(modules, "__main__");
+   Py_XINCREF(*main_mod); /* don't free */
+ }
+ 
+ void PyC_MainModule_Restore(PyObject *main_mod)
+ {
+-  PyInterpreterState *interp = PyThreadState_GET()->interp;
+-  PyDict_SetItemString(interp->modules, "__main__", main_mod);
++  PyObject *modules = PyImport_GetModuleDict();
++  PyDict_SetItemString(modules, "__main__", main_mod);
+   Py_XDECREF(main_mod);
+ }
+ 
diff --git a/srcpkgs/blender/patches/blender-2.78a-musl.patch b/srcpkgs/blender/patches/blender-2.78a-musl.patch
index 1ffd09cd57d..bddae1f8d3c 100644
--- a/srcpkgs/blender/patches/blender-2.78a-musl.patch
+++ b/srcpkgs/blender/patches/blender-2.78a-musl.patch
@@ -20,30 +20,9 @@ diff -ru blender-2.78.orig/CMakeLists.txt blender-2.78a/CMakeLists.txt
  elseif(WIN32)
  	set(_init_JACK                           OFF)
  elseif(APPLE)
-diff -ru blender-2.78.orig/intern/guardedalloc/intern/mallocn_intern.h blender-2.78a/intern/guardedalloc/intern/mallocn_intern.h
---- blender-2.78.orig/intern/guardedalloc/intern/mallocn_intern.h	2016-09-28 09:26:55.000000000 +0000
-+++ blender-2.78a/intern/guardedalloc/intern/mallocn_intern.h	2017-02-07 14:44:35.213040733 +0000
-@@ -52,7 +52,7 @@
- #undef HAVE_MALLOC_STATS
- #define USE_MALLOC_USABLE_SIZE  /* internal, when we have malloc_usable_size() */
- 
--#if defined(__linux__) || (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || defined(__GLIBC__)
-+#if (defined(__linux__) && defined(HAVE_EXECINFO_H)) || (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || defined(__GLIBC__)
- #  include <malloc.h>
- #  define HAVE_MALLOC_STATS
- #elif defined(__FreeBSD__)
 diff -ru blender-2.78.orig/source/blender/blenlib/intern/system.c blender-2.78a/source/blender/blenlib/intern/system.c
 --- blender-2.78.orig/source/blender/blenlib/intern/system.c	2016-10-25 09:59:23.000000000 +0000
 +++ blender-2.78a/source/blender/blenlib/intern/system.c	2017-02-07 14:44:35.213040733 +0000
-@@ -31,7 +31,7 @@
- #include "MEM_guardedalloc.h"
- 
- /* for backtrace */
--#if defined(__linux__) || defined(__APPLE__)
-+#if (defined(__linux__) && defined(HAVE_EXECINFO_H)) || defined(__APPLE__)
- #  include <execinfo.h>
- #elif defined(WIN32)
- #  include <windows.h>
 @@ -77,7 +77,7 @@
  {
  	/* ------------- */
@@ -65,3 +44,31 @@ diff -ru blender-2.78.orig/source/creator/creator_signals.c blender-2.78a/source
  	feenableexcept(FE_DIVBYZERO | FE_INVALID | FE_OVERFLOW);
  # endif /* defined(__linux__) && defined(__GNUC__) */
  # if defined(OSX_SSE_FPE)
+--- a/source/blender/blenlib/intern/system.c	2019-07-30 21:05:30.702224608 +0200
++++ -	2019-07-30 21:13:21.535328709 +0200
+@@ -38,10 +38,13 @@
+ #  include <dbghelp.h>
+ #  pragma warning(pop)
+ #else
+-#  include <execinfo.h>
+ #  include <unistd.h>
+ #endif
+ 
++#if (defined(__linux__) && defined(HAVE_EXECINFO_H)) || defined(__APPLE__)
++#  include <execinfo.h>
++#endif
++
+ int BLI_cpu_support_sse2(void)
+ {
+ #if defined(__x86_64__) || defined(_M_X64)
+--- a/intern/guardedalloc/intern/mallocn_intern.h	2019-07-24 09:41:39.000000000 +0200
++++ -	2019-10-20 00:03:13.450031866 +0200
+@@ -40,7 +40,7 @@
+ #undef HAVE_MALLOC_STATS
+ #define USE_MALLOC_USABLE_SIZE /* internal, when we have malloc_usable_size() */
+ 
+-#if defined(__linux__) || (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || \
++#if (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || \
+     defined(__GLIBC__)
+ #  include <malloc.h>
+ #  define HAVE_MALLOC_STATS
diff --git a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch b/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch
deleted file mode 100644
index e181a004379..00000000000
--- a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/source/blender/collada/DocumentImporter.cpp
-+++ b/source/blender/collada/DocumentImporter.cpp
-@@ -1340,6 +1340,11 @@ bool DocumentImporter::writeAnimationLis
- 	return anim_importer.write_animation_list(animationList);
- }
- 
-+bool DocumentImporter::writeAnimationClip(const COLLADAFW::AnimationClip *AnimationClip)
-+{
-+	return true;
-+}
-+
- /** When this method is called, the writer must write the skin controller data.
-  * \return The writer should return true, if writing succeeded, false otherwise.*/
- bool DocumentImporter::writeSkinControllerData(const COLLADAFW::SkinControllerData *skin)
diff --git a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch b/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch
deleted file mode 100644
index af0d2b4dded..00000000000
--- a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/source/blender/collada/DocumentImporter.h.orig	2018-12-03 07:38:12 UTC
-+++ b/source/blender/collada/DocumentImporter.h
-@@ -107,6 +107,8 @@ public:
- 	bool writeAnimation(const COLLADAFW::Animation*);
- 
- 	bool writeAnimationList(const COLLADAFW::AnimationList*);
-+	
-+	bool writeAnimationClip( const COLLADAFW::AnimationClip* );
- 
- 	bool writeGeometry(const COLLADAFW::Geometry*);
- 
diff --git a/srcpkgs/blender/patches/ffmpeg4.patch b/srcpkgs/blender/patches/ffmpeg4.patch
deleted file mode 100644
index 6b29e58f273..00000000000
--- a/srcpkgs/blender/patches/ffmpeg4.patch
+++ /dev/null
@@ -1,116 +0,0 @@
-source: https://git.archlinux.org/svntogit/community.git/plain/trunk/ffmpeg4.0.patch?h=packages/blender
-
-diff --git a/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp b/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp
-index e9eea195208..84aea330313 100644
---- a/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp
-+++ b/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp
-@@ -264,9 +264,9 @@ AUD_FFMPEGReader::AUD_FFMPEGReader(boost::shared_ptr<AUD_Buffer> buffer) :
- 		m_membuffer(buffer),
- 		m_membufferpos(0)
- {
--	m_membuf = reinterpret_cast<data_t*>(av_malloc(FF_MIN_BUFFER_SIZE + FF_INPUT_BUFFER_PADDING_SIZE));
-+	m_membuf = reinterpret_cast<data_t*>(av_malloc(AV_INPUT_BUFFER_MIN_SIZE + AV_INPUT_BUFFER_PADDING_SIZE));
- 
--	m_aviocontext = avio_alloc_context(m_membuf, FF_MIN_BUFFER_SIZE, 0, this,
-+	m_aviocontext = avio_alloc_context(m_membuf, AV_INPUT_BUFFER_MIN_SIZE, 0, this,
- 									   read_packet, NULL, seek_packet);
- 
- 	if(!m_aviocontext)
-diff --git a/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp b/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
-index 3f95ac7a4da..2c2f0916406 100644
---- a/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
-+++ b/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
-@@ -163,7 +163,7 @@ AUD_FFMPEGWriter::AUD_FFMPEGWriter(std::string filename, AUD_DeviceSpecs specs,
- 		try
- 		{
- 			if(m_formatCtx->oformat->flags & AVFMT_GLOBALHEADER)
--				m_codecCtx->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+				m_codecCtx->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 
- 			AVCodec* codec = avcodec_find_encoder(m_codecCtx->codec_id);
- 			if(!codec)
-@@ -185,11 +185,11 @@ AUD_FFMPEGWriter::AUD_FFMPEGWriter(std::string filename, AUD_DeviceSpecs specs,
- 			if(avcodec_open2(m_codecCtx, codec, NULL))
- 				AUD_THROW(AUD_ERROR_FFMPEG, codec_error);
- 
--			m_output_buffer.resize(FF_MIN_BUFFER_SIZE);
-+			m_output_buffer.resize(AV_INPUT_BUFFER_MIN_SIZE);
- 			int samplesize = AUD_MAX(AUD_SAMPLE_SIZE(m_specs), AUD_DEVICE_SAMPLE_SIZE(m_specs));
- 
- 			if(m_codecCtx->frame_size <= 1) {
--				m_input_size = FF_MIN_BUFFER_SIZE * 8 / m_codecCtx->bits_per_coded_sample / m_codecCtx->channels;
-+				m_input_size = AV_INPUT_BUFFER_MIN_SIZE * 8 / m_codecCtx->bits_per_coded_sample / m_codecCtx->channels;
- 				m_input_buffer.resize(m_input_size * samplesize);
- 			}
- 			else
-diff --git a/source/blender/blenkernel/intern/writeffmpeg.c b/source/blender/blenkernel/intern/writeffmpeg.c
-index d7fcd896e11..9e82df17dce 100644
---- a/source/blender/blenkernel/intern/writeffmpeg.c
-+++ b/source/blender/blenkernel/intern/writeffmpeg.c
-@@ -619,8 +619,6 @@ static AVStream *alloc_video_stream(FFMpegContext *context, RenderData *rd, int
- 	c->rc_buffer_aggressivity = 1.0;
- #endif
- 
--	c->me_method = ME_EPZS;
--	
- 	codec = avcodec_find_encoder(c->codec_id);
- 	if (!codec)
- 		return NULL;
-@@ -682,14 +680,14 @@ static AVStream *alloc_video_stream(FFMpegContext *context, RenderData *rd, int
- 	    )
- 	{
- 		PRINT("Using global header\n");
--		c->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+		c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 	}
- 	
- 	/* Determine whether we are encoding interlaced material or not */
- 	if (rd->mode & R_FIELDS) {
- 		PRINT("Encoding interlaced video\n");
--		c->flags |= CODEC_FLAG_INTERLACED_DCT;
--		c->flags |= CODEC_FLAG_INTERLACED_ME;
-+		c->flags |= AV_CODEC_FLAG_INTERLACED_DCT;
-+		c->flags |= AV_CODEC_FLAG_INTERLACED_ME;
- 	}
- 
- 	/* xasp & yasp got float lately... */
-@@ -779,7 +777,7 @@ static AVStream *alloc_audio_stream(FFMpegContext *context, RenderData *rd, int
- 	}
- 
- 	if (of->oformat->flags & AVFMT_GLOBALHEADER) {
--		c->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+		c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 	}
- 
- 	set_ffmpeg_properties(rd, c, "audio", &opts);
-@@ -798,14 +796,14 @@ static AVStream *alloc_audio_stream(FFMpegContext *context, RenderData *rd, int
- 	st->codec->time_base.den = st->codec->sample_rate;
- 
- #ifndef FFMPEG_HAVE_ENCODE_AUDIO2
--	context->audio_outbuf_size = FF_MIN_BUFFER_SIZE;
-+	context->audio_outbuf_size = AV_INPUT_BUFFER_MIN_SIZE;
- #endif
- 
- 	if (c->frame_size == 0)
- 		// used to be if ((c->codec_id >= CODEC_ID_PCM_S16LE) && (c->codec_id <= CODEC_ID_PCM_DVD))
- 		// not sure if that is needed anymore, so let's try out if there are any
- 		// complaints regarding some ffmpeg versions users might have
--		context->audio_input_samples = FF_MIN_BUFFER_SIZE * 8 / c->bits_per_coded_sample / c->channels;
-+		context->audio_input_samples = AV_INPUT_BUFFER_MIN_SIZE * 8 / c->bits_per_coded_sample / c->channels;
- 	else {
- 		context->audio_input_samples = c->frame_size;
- #ifndef FFMPEG_HAVE_ENCODE_AUDIO2
-diff --git a/source/blender/imbuf/intern/indexer.c b/source/blender/imbuf/intern/indexer.c
-index eaf4dfd84b4..9c2f42feb52 100644
---- a/source/blender/imbuf/intern/indexer.c
-+++ b/source/blender/imbuf/intern/indexer.c
-@@ -537,7 +537,7 @@ static struct proxy_output_ctx *alloc_proxy_output_ffmpeg(
- 	av_opt_set_int(rv->c, "qmax", ffmpeg_quality, 0);
- 
- 	if (rv->of->flags & AVFMT_GLOBALHEADER) {
--		rv->c->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+		rv->c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 	}
- 
- 	if (avio_open(&rv->of->pb, fname, AVIO_FLAG_WRITE) < 0) {
-
diff --git a/srcpkgs/blender/patches/gcc9-elbeem.patch b/srcpkgs/blender/patches/gcc9-elbeem.patch
deleted file mode 100644
index 26c58e7d988..00000000000
--- a/srcpkgs/blender/patches/gcc9-elbeem.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-https://bugs.gentoo.org/685922
-
---- a/intern/elbeem/intern/solver_main.cpp
-+++ b/intern/elbeem/intern/solver_main.cpp
-@@ -381,7 +381,7 @@ LbmFsgrSolver::mainLoop(const int lev)
- 	GRID_REGION_INIT();
- #if PARALLEL==1
- 	const int gDebugLevel = ::gDebugLevel;
--#pragma omp parallel default(none) num_threads(mNumOMPThreads) \
-+#pragma omp parallel default(none) firstprivate(gDebugLevel,iend,lev,cutConst) num_threads(mNumOMPThreads) \
-   reduction(+: \
- 	  calcCurrentMass,calcCurrentVolume, \
- 		calcCellsFilled,calcCellsEmptied, \
-@@ -1126,7 +1126,7 @@ LbmFsgrSolver::preinitGrids()
- 		GRID_REGION_INIT();
- #if PARALLEL==1
- 	const int gDebugLevel = ::gDebugLevel;
--#pragma omp parallel default(none) num_threads(mNumOMPThreads) \
-+#pragma omp parallel default(none) firstprivate(gDebugLevel,iend,lev) num_threads(mNumOMPThreads) \
-   reduction(+: \
- 	  calcCurrentMass,calcCurrentVolume, \
- 		calcCellsFilled,calcCellsEmptied, \
-@@ -1164,7 +1164,7 @@ LbmFsgrSolver::standingFluidPreinit()
- 	GRID_REGION_INIT();
- #if PARALLEL==1
- 	const int gDebugLevel = ::gDebugLevel;
--#pragma omp parallel default(none) num_threads(mNumOMPThreads) \
-+#pragma omp parallel default(none) firstprivate(gDebugLevel,iend,lev) num_threads(mNumOMPThreads) \
-   reduction(+: \
- 	  calcCurrentMass,calcCurrentVolume, \
- 		calcCellsFilled,calcCellsEmptied, \
diff --git a/srcpkgs/blender/patches/tree_hpp.patch b/srcpkgs/blender/patches/tree_hpp.patch
deleted file mode 100644
index 7c9fbca1821..00000000000
--- a/srcpkgs/blender/patches/tree_hpp.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/intern/itasc/kdl/tree.hpp	2018-03-23 16:22:25.000000000 +0100
-+++ b/intern/itasc/kdl/tree.hpp	2018-08-13 19:31:32.101185313 +0200
-@@ -34,7 +34,7 @@
-     //Forward declaration
-     class TreeElement;
-     // Eigen allocator is needed for alignment of Eigen data types
--    typedef std::map<std::string,TreeElement, std::less<std::string>, Eigen::aligned_allocator<std::pair<std::string, TreeElement> > > SegmentMap;
-+    typedef std::map<std::string,TreeElement, std::less<std::string>, Eigen::aligned_allocator<std::pair<const std::string, TreeElement> > > SegmentMap;
- 
-     class TreeElement
-     {
diff --git a/srcpkgs/blender/patches/util_sseb.patch b/srcpkgs/blender/patches/util_sseb.patch
deleted file mode 100644
index 85396282d81..00000000000
--- a/srcpkgs/blender/patches/util_sseb.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/intern/cycles/util/util_sseb.h
-+++ b/intern/cycles/util/util_sseb.h
-@@ -116,7 +116,7 @@ __forceinline const sseb unpacklo( const sseb& a, const sseb& b ) { return _mm_u
- __forceinline const sseb unpackhi( const sseb& a, const sseb& b ) { return _mm_unpackhi_ps(a, b); }
- 
- template<size_t i0, size_t i1, size_t i2, size_t i3> __forceinline const sseb shuffle( const sseb& a ) {
--	return _mm_shuffle_epi32(a, _MM_SHUFFLE(i3, i2, i1, i0));
-+	return _mm_castsi128_ps(_mm_shuffle_epi32(a, _MM_SHUFFLE(i3, i2, i1, i0)));
- }
- 
- template<> __forceinline const sseb shuffle<0, 1, 0, 1>( const sseb& a ) {
diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template
index 47cb8f8ad13..2beb7f96dd8 100644
--- a/srcpkgs/blender/template
+++ b/srcpkgs/blender/template
@@ -1,21 +1,22 @@
 # Template file for 'blender'
 pkgname=blender
-version=2.79b
-revision=10
+version=2.80
+revision=1
 build_style="cmake"
 makedepends="
  libgomp-devel libpng-devel tiff-devel python3-devel glu-devel
  glew-devel freetype-devel jack-devel libopenal-devel libsndfile-devel
  libsamplerate-devel ffmpeg-devel fftw-devel boost-devel pcre-devel llvm
  libopenexr-devel libopenjpeg-devel libXi-devel openimageio-devel
- opencolorio-devel opencollada-devel"
+ opencolorio-devel opencollada-devel python3-numpy"
 depends="desktop-file-utils hicolor-icon-theme"
 short_desc="3D graphics creation suite"
 maintainer="Enno Boland <gottox@voidlinux.org>"
-license="GPL-2"
+license="GPL-2.0-or-later"
 homepage="http://www.blender.org"
-distfiles="http://download.blender.org/source/${pkgname}-${version}.tar.gz"
-checksum=4c944c304a49e68ac687ea06f5758204def049b66dc211e1cffa1857716393bc
+#distfiles="http://download.blender.org/source/${pkgname}-${version}.tar.gz"
+distfiles="https://ftp.halifax.rwth-aachen.de/blender/source/blender-${version}.tar.gz"
+checksum=cd9d7e505c1f6e63a4f72366ed04d446859977eeb34cde21283aaea6a304a5c0
 patch_args="-Np1"
 
 pycompile_version="$py3_ver"
@@ -25,9 +26,7 @@ archs="x86_64* i686* ppc64*"
 configure_args="
 -DWITH_INSTALL_PORTABLE=OFF
 -DWITH_PYTHON_INSTALL=OFF
--DWITH_GAMEENGINE=ON
 -DWITH_JACK=ON
--DWITH_PLAYER=ON
 -DWITH_CODEC_FFMPEG=ON
 -DWITH_CODEC_SNDFILE=ON
 -DWITH_OPENMP=ON

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PR PATCH] [Updated] [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (12 preceding siblings ...)
  2019-10-19 22:15 ` voidlinux-github
@ 2019-10-20 15:23 ` voidlinux-github
  2019-10-20 15:23 ` voidlinux-github
                   ` (18 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-10-20 15:23 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1067 bytes --]

There is an updated pull request by leahneukirchen against master on the void-packages repository

https://github.com/leahneukirchen/void-packages python38
https://github.com/void-linux/void-packages/pull/15623

[WIP] Python 3.8
This huge PR tries to bump all packages that either shlib-require
libpython3.6m.so.1.0 or put files into /usr/lib/python3.6/site-packages.

Broken packages (on x86_64):

- [ ] attic -> upstream dead, remove?
- [ ] blender -> update to 2.80
- [ ] eolie -> meson
- [x] fontforge
- [x] freecad
- [ ] gst1-python -> meson
- [ ] libopenshot -> gcc9 issue, but supposedly fixed? @Spencer-H 
- [x] libpeas
- [x] nagstamon
- [x] paraview
- [x] pockyt
- [x] ~~scudcloud~~
- [x] torbrowser-launcher
- [x] unknown-horizons
- [x] vapoursynth
- [x] variety
- [ ] kdevelop-python -> upstream: https://bugs.kde.org/show_bug.cgi?id=411956
- [x] krita: SHA256 mismatch
- [x] ~~shiboken~~
- [x] renderdoc

Untested:

- [ ] libreoffice


A patch file from https://github.com/void-linux/void-packages/pull/15623.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python38-15623.patch --]
[-- Type: text/x-diff, Size: 653660 bytes --]

From 9907b26ec9aacb2c9c990c665c32502ef0f7c808 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:06:59 +0200
Subject: [PATCH 001/873] python3: update to 3.8.0.

---
 common/shlibs                                 |  3 ++-
 .../python3/patches/fix-xattrs-glibc.patch    | 13 ----------
 srcpkgs/python3/patches/libressl-2.6.patch    | 26 -------------------
 srcpkgs/python3/template                      | 23 ++++++++--------
 4 files changed, 13 insertions(+), 52 deletions(-)
 delete mode 100644 srcpkgs/python3/patches/fix-xattrs-glibc.patch
 delete mode 100644 srcpkgs/python3/patches/libressl-2.6.patch

diff --git a/common/shlibs b/common/shlibs
index cc3fd8383d8..f5133935773 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1698,8 +1698,9 @@ libefiboot.so.1 libefivar-31_1
 libportaudio.so.2 portaudio-19.20140130_1
 libportaudiocpp.so.0 portaudio-cpp-19.20140130_1
 libdar.so.5000 libdar-2.4.14_1
-libpython3.so python3-3.6.2_1
 libpython3.6m.so.1.0 python3-3.6.2_1
+libpython3.so python3-3.8.0_1
+libpython3.8.so.1.0 python3-3.8.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.25.28_1
diff --git a/srcpkgs/python3/patches/fix-xattrs-glibc.patch b/srcpkgs/python3/patches/fix-xattrs-glibc.patch
deleted file mode 100644
index 909901293d5..00000000000
--- a/srcpkgs/python3/patches/fix-xattrs-glibc.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- Modules/posixmodule.c.orig
-+++ Modules/posixmodule.c
-@@ -103,8 +103,9 @@ corresponding Unix manual entries for more information on calls.");
- #undef HAVE_SCHED_SETAFFINITY
- #endif
- 
--#if defined(HAVE_SYS_XATTR_H) && defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
-+#if defined(HAVE_SYS_XATTR_H) && defined(__linux__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
- #define USE_XATTRS
-+#include <linux/limits.h>
- #endif
- 
- #ifdef USE_XATTRS
diff --git a/srcpkgs/python3/patches/libressl-2.6.patch b/srcpkgs/python3/patches/libressl-2.6.patch
deleted file mode 100644
index 92dcf1ef06e..00000000000
--- a/srcpkgs/python3/patches/libressl-2.6.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-https://github.com/python/cpython/pull/4930
-
---- Lib/test/test_ssl.py.orig
-+++ Lib/test/test_ssl.py
-@@ -29,6 +29,12 @@
- PROTOCOLS = sorted(ssl._PROTOCOL_NAMES)
- HOST = support.HOST
- IS_LIBRESSL = ssl.OPENSSL_VERSION.startswith('LibreSSL')
-+if IS_LIBRESSL:
-+    LIBRESSL_VERSION = tuple(
-+        int(s) for s in ssl.OPENSSL_VERSION.rsplit(' ')[-1].split('.')
-+    )
-+else:
-+    LIBRESSL_VERSION = ()
- IS_OPENSSL_1_1 = not IS_LIBRESSL and ssl.OPENSSL_VERSION_INFO >= (1, 1, 0)
- 
- 
-@@ -3392,6 +3398,8 @@ def test_selected_npn_protocol(self):
-                                        chatty=True, connectionchatty=True)
-             self.assertIs(stats['client_npn_protocol'], None)
- 
-+        @unittest.skipIf(IS_LIBRESSL and LIBRESSL_VERSION >= (2, 6, 1),
-+                         "LibreSSL 2.6.1+ has broken NPN support")
-         @unittest.skipUnless(ssl.HAS_NPN, "NPN support needed for this test")
-         def test_npn_protocols(self):
-             server_protocols = ['http/1.1', 'spdy/2']
diff --git a/srcpkgs/python3/template b/srcpkgs/python3/template
index 60bd4411ba8..b03a59beea8 100644
--- a/srcpkgs/python3/template
+++ b/srcpkgs/python3/template
@@ -3,7 +3,7 @@
 # THIS PKG MUST BE SYNCHRONIZED WITH "srcpkgs/python3-tkinter".
 #
 pkgname=python3
-version=3.6.9
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 short_desc="Interpreted, interactive, object-oriented programming language (${version%.*} series)"
@@ -11,7 +11,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=5e2f5f554e3f8f7f0296f7e73d8600c4e9acbaee6b2555b83206edf5153870da
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pycompile_dirs="usr/lib/python${version%.*}"
 hostmakedepends="pkg-config"
@@ -27,8 +27,7 @@ alternatives="
  python:python.1:/usr/share/man/man1/python${version%.*}.1"
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,13 +71,13 @@ do_install() {
 	rm -rf ${DESTDIR}/usr/lib/python${version%.*}/lib2to3/tests
 	# Remove references to the install(1) wrapper.
 	sed -e "s,${XBPS_WRAPPERDIR},/usr/bin,g" -i \
-		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/Makefile
 	if [ "$CROSS_BUILD" ]; then
 		# Remove references to cross toolchain.
 		sed -i "s/$XBPS_CROSS_TRIPLET-//g" \
-			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}/Makefile
 	fi
 }
 
@@ -89,10 +88,10 @@ python3-devel_package() {
 		vmove usr/bin/python*-config
 		vmove usr/lib/pkgconfig
 		vmove usr/include
-		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/libpython${version%.*}m.a \
+		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/libpython${version%.*}*.a \
 			${PKGDESTDIR}/usr/lib
-		mkdir -p ${DESTDIR}/usr/include/python${version%.*}m
-		mv ${PKGDESTDIR}/usr/include/python${version%.*}m/pyconfig.h \
-			${DESTDIR}/usr/include/python${version%.*}m
+		mkdir -p ${DESTDIR}/usr/include/python${version%.*}
+		mv ${PKGDESTDIR}/usr/include/python${version%.*}/pyconfig.h \
+			${DESTDIR}/usr/include/python${version%.*}
 	}
 }

From 82deb1f06d09e93aabaa46495a066cec2647de81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 17:09:57 +0200
Subject: [PATCH 002/873] python3-tkinter: update to 3.8.0.

---
 srcpkgs/python3-tkinter/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template
index 83906219af8..874be51ebdf 100644
--- a/srcpkgs/python3-tkinter/template
+++ b/srcpkgs/python3-tkinter/template
@@ -7,7 +7,7 @@
 _desc="Interpreted, interactive, object-oriented programming language"
 
 pkgname=python3-tkinter
-version=3.6.8
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 pycompile_dirs="
@@ -22,11 +22,10 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=35446241e995773b1bed7d196f4b624dadcadc8429f26282e756b2fb8a351193
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used.
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used.
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,7 +71,7 @@ do_install() {
 		mv ${wrksrc}/${pkgname}-${version}-install/usr/lib/python${version%.*}/${lib} \
 			${DESTDIR}/usr/lib/python${version%.*}/
 	done
-	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*m*.so \
+	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*.so \
 		${DESTDIR}/usr/lib/python${version%.*}/lib-dynload/
 	ln -sf idle${version%.*} ${DESTDIR}/usr/bin/idle3
 }

From 8bb33f77d591103b56f40685a4b61f57b43219cd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:42:15 +0200
Subject: [PATCH 003/873] common/environment/setup/python.sh: update to Python
 3.8.

---
 common/build-style/python-module.sh | 14 ++++----------
 common/environment/setup/python.sh  |  4 ++--
 2 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/common/build-style/python-module.sh b/common/build-style/python-module.sh
index da6ed586cff..ff8f107745f 100644
--- a/common/build-style/python-module.sh
+++ b/common/build-style/python-module.sh
@@ -4,7 +4,7 @@
 
 do_build() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
+	local pyver= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
@@ -12,10 +12,7 @@ do_build() {
 			LDFLAGS="$tmp_ldflags"
 
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
@@ -49,15 +46,12 @@ do_check() {
 
 do_install() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx=
+	local pyver=
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
diff --git a/common/environment/setup/python.sh b/common/environment/setup/python.sh
index d1f4d49a10a..ba181d45361 100644
--- a/common/environment/setup/python.sh
+++ b/common/environment/setup/python.sh
@@ -10,8 +10,8 @@ py2_lib="/usr/lib/python${py2_ver}"
 py2_sitelib="${py2_lib}/site-packages"
 py2_inc="/usr/include/python${py2_ver}"
 
-py3_ver="3.6"
-py3_abiver="m"
+py3_ver="3.8"
+py3_abiver=""
 py3_lib="/usr/lib/python${py3_ver}"
 py3_sitelib="${py3_lib}/site-packages"
 py3_inc="/usr/include/python${py3_ver}${py3_abiver}"

From 75fdcb94c7c7be7dc2c232d271de721d74dc1a6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 004/873] python3-3to2: rebuild for Python 3.8.

---
 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 b6ab94fe7c9..38558f1fcff 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=1
+revision=2
 archs=noarch
 wrksrc="3to2-${version}"
 build_style=python3-module

From 043957a8bcc69ef2ef270f7acd2753a544054759 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 005/873] python-Arrow: rebuild for Python 3.8.

---
 srcpkgs/python-Arrow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Arrow/template b/srcpkgs/python-Arrow/template
index 456e3776188..a3785d60075 100644
--- a/srcpkgs/python-Arrow/template
+++ b/srcpkgs/python-Arrow/template
@@ -2,7 +2,7 @@
 pkgname=python-Arrow
 reverts=0.13.1_1
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="arrow-${version}"
 build_style=python-module

From 5d1bc07743d348083ebd7dfbd1a4ece4913e6a70 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 006/873] python-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Babel/template b/srcpkgs/python-Babel/template
index 34d7a7728ce..619ae432ba4 100644
--- a/srcpkgs/python-Babel/template
+++ b/srcpkgs/python-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Babel'
 pkgname=python-Babel
 version=2.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38e28e565317345549892f5b8da9e3ab1cc3d513 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 007/873] python-BeautifulSoup4: rebuild for Python 3.8.

---
 srcpkgs/python-BeautifulSoup4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-BeautifulSoup4/template b/srcpkgs/python-BeautifulSoup4/template
index 70e4f8a58da..1f6074230c2 100644
--- a/srcpkgs/python-BeautifulSoup4/template
+++ b/srcpkgs/python-BeautifulSoup4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-BeautifulSoup4'
 pkgname=python-BeautifulSoup4
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="beautifulsoup4-${version}"
 build_style=python-module

From 193dc4fe709e1bccd18b84a58f880fde1e4394e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 008/873] python-Bottleneck: rebuild for Python 3.8.

---
 srcpkgs/python-Bottleneck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Bottleneck/template b/srcpkgs/python-Bottleneck/template
index 0c308d5dbb5..28195e99bca 100644
--- a/srcpkgs/python-Bottleneck/template
+++ b/srcpkgs/python-Bottleneck/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Bottleneck'
 pkgname=python-Bottleneck
 version=1.2.1
-revision=4
+revision=5
 wrksrc="Bottleneck-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ff4c422045070300d874353cc6c9750143422e2b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 009/873] python-Cheroot: rebuild for Python 3.8.

---
 srcpkgs/python-Cheroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Cheroot/template b/srcpkgs/python-Cheroot/template
index fcfdf76e69d..7a5375258f4 100644
--- a/srcpkgs/python-Cheroot/template
+++ b/srcpkgs/python-Cheroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Cheroot'
 pkgname=python-Cheroot
 version=8.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cheroot-${version}"
 build_style=python-module

From 6eb51b02b428d8054b1d3a3aa21e6bdcde31cf9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 010/873] python3-CherryPy: rebuild for Python 3.8.

---
 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 b78c01eba2c..450e5791508 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.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python3-module

From 8522b77c798415c2f59fc3b26adc757f66aa0fa7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 011/873] python-ConfigArgParse: rebuild for Python 3.8.

---
 srcpkgs/python-ConfigArgParse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ConfigArgParse/template b/srcpkgs/python-ConfigArgParse/template
index c9a00a04508..d90ca739aee 100644
--- a/srcpkgs/python-ConfigArgParse/template
+++ b/srcpkgs/python-ConfigArgParse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ConfigArgParse'
 pkgname=python-ConfigArgParse
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ConfigArgParse-${version}"
 build_style=python-module

From 3dcbda27301f3e918539317bc411ff556115ef1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 012/873] python-Cython: rebuild for Python 3.8.

---
 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 dc39d54e9c2..675160b3744 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.13
-revision=1
+revision=2
 wrksrc="Cython-${version}"
 build_style=python-module
 pycompile_module="Cython pyximport cython.py"

From 7c69ef59e0a628c13ece955c9f7322631824adca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 013/873] python-Django: rebuild for Python 3.8.

---
 srcpkgs/python-Django/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Django/template b/srcpkgs/python-Django/template
index 21aa405fba1..65a98e41032 100644
--- a/srcpkgs/python-Django/template
+++ b/srcpkgs/python-Django/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Django'
 pkgname=python-Django
 version=1.11.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="Django-${version}"
 build_style=python-module

From 33b250adb0abf2e46663f0a05749097633fce228 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 014/873] python-Flask: rebuild for Python 3.8.

---
 srcpkgs/python-Flask/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask/template b/srcpkgs/python-Flask/template
index 149a76c077e..b75b306701b 100644
--- a/srcpkgs/python-Flask/template
+++ b/srcpkgs/python-Flask/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask'
 pkgname=python-Flask
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9167e534992bd8d17a79a70e22a3b06c68c9762b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 015/873] python-Flask-Assets: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Assets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Assets/template b/srcpkgs/python-Flask-Assets/template
index 339f629f77a..eb81201396b 100644
--- a/srcpkgs/python-Flask-Assets/template
+++ b/srcpkgs/python-Flask-Assets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Assets'
 pkgname=python-Flask-Assets
 version=0.12
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c65d524eb8ee83f7c8eae3ca16878857a374e06c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 016/873] python-Flask-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Babel/template b/srcpkgs/python-Flask-Babel/template
index 3028d15d7bd..b3cc35f230e 100644
--- a/srcpkgs/python-Flask-Babel/template
+++ b/srcpkgs/python-Flask-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Babel'
 pkgname=python-Flask-Babel
 version=0.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From d52f7742820844af3ec25f4b6d4d6d58b19ad722 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 017/873] python-Flask-Login: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Login/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Login/template b/srcpkgs/python-Flask-Login/template
index 8fecf240963..ccaab92d857 100644
--- a/srcpkgs/python-Flask-Login/template
+++ b/srcpkgs/python-Flask-Login/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Login'
 pkgname=python-Flask-Login
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 112c53663ece086d477e4d4fcbc667ae6a2fb518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 018/873] python-Flask-OAuthlib: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-OAuthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-OAuthlib/template b/srcpkgs/python-Flask-OAuthlib/template
index d53157e37b2..958f05a836c 100644
--- a/srcpkgs/python-Flask-OAuthlib/template
+++ b/srcpkgs/python-Flask-OAuthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-OAuthlib'
 pkgname=python-Flask-OAuthlib
 version=0.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From aca82b53b5330ee4a154f2246569006b2d3a38c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 019/873] python3-Flask-RESTful: rebuild for Python 3.8.

---
 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 d0ed467f666..5a05eed0e93 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.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="flask-restful-${version}"
 build_style=python3-module

From 3121295fb06a2b12c0e42b9a6412c1fa52bb86fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 020/873] python-Flask-Script: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Script/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Script/template b/srcpkgs/python-Flask-Script/template
index 19d13887b8e..41312eae57f 100644
--- a/srcpkgs/python-Flask-Script/template
+++ b/srcpkgs/python-Flask-Script/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Script'
 pkgname=python-Flask-Script
 version=2.0.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From cfadd6a4c47e4e611c9d739113006da88f9cb8e7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 021/873] python-Flask-WTF: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-WTF/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-WTF/template b/srcpkgs/python-Flask-WTF/template
index 8edb1d39e35..b2be1e630fb 100644
--- a/srcpkgs/python-Flask-WTF/template
+++ b/srcpkgs/python-Flask-WTF/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-WTF'
 pkgname=python-Flask-WTF
 version=0.14.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 11896d4bd9e1767f6ad8b10e737f0e6a0f5df44f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 022/873] python-GitPython: rebuild for Python 3.8.

---
 srcpkgs/python-GitPython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-GitPython/template b/srcpkgs/python-GitPython/template
index 0edb43cc811..232429265f1 100644
--- a/srcpkgs/python-GitPython/template
+++ b/srcpkgs/python-GitPython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-GitPython'
 pkgname=python-GitPython
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="GitPython-${version}"
 build_style=python-module

From 7008fe32294cead7ef25084a09f874e87cad05e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 023/873] python-IPy: rebuild for Python 3.8.

---
 srcpkgs/python-IPy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-IPy/template b/srcpkgs/python-IPy/template
index d28276383ce..aaae9fcd002 100644
--- a/srcpkgs/python-IPy/template
+++ b/srcpkgs/python-IPy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-IPy'
 pkgname=python-IPy
 version=1.00
-revision=1
+revision=2
 archs=noarch
 wrksrc="IPy-${version}"
 build_style=python-module

From 4ee5b9129c818c4db475e75f899f1f21eb9c312c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 024/873] python3-Inflector: rebuild for Python 3.8.

---
 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 1bfe9ccef7c..e9ee0ffe8d1 100644
--- a/srcpkgs/python3-Inflector/template
+++ b/srcpkgs/python3-Inflector/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-Inflector'
 pkgname=python3-Inflector
 version=2.0.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="Inflector-${version}"
 build_style=python3-module

From 631236d908cbeed8345c2fb159c73e7c54fe1571 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 025/873] python-Jinja2: rebuild for Python 3.8.

---
 srcpkgs/python-Jinja2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Jinja2/template b/srcpkgs/python-Jinja2/template
index c67e6f47f06..3fcd44dc198 100644
--- a/srcpkgs/python-Jinja2/template
+++ b/srcpkgs/python-Jinja2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Jinja2'
 pkgname=python-Jinja2
 version=2.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Jinja2-${version}"
 build_style=python-module

From 3a7808b9f47226adec7dd1e59bef222cf38d7e9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 026/873] python-Levenshtein: rebuild for Python 3.8.

---
 srcpkgs/python-Levenshtein/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Levenshtein/template b/srcpkgs/python-Levenshtein/template
index 26f57d90e70..7d97147ccc8 100644
--- a/srcpkgs/python-Levenshtein/template
+++ b/srcpkgs/python-Levenshtein/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Levenshtein'
 pkgname=python-Levenshtein
 version=0.12.0
-revision=2
+revision=3
 build_style=python-module
 pycompile_module="Levenshtein"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"

From 6d2a898ccc971553cf9dab7239daf8d626350b19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 027/873] python-M2Crypto: rebuild for Python 3.8.

---
 srcpkgs/python-M2Crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-M2Crypto/template b/srcpkgs/python-M2Crypto/template
index 102dbb7261e..6febd5a9ea1 100644
--- a/srcpkgs/python-M2Crypto/template
+++ b/srcpkgs/python-M2Crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-M2Crypto'
 pkgname=python-M2Crypto
 version=0.35.2
-revision=1
+revision=2
 wrksrc="M2Crypto-${version}"
 build_style=python-module
 pycompile_module="M2Crypto"

From 3597aa866d7cb1ff4d5316a0cfe52c8aa8ab717c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 028/873] python-Mako: rebuild for Python 3.8.

---
 srcpkgs/python-Mako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Mako/template b/srcpkgs/python-Mako/template
index e5c3c76170c..f0184179b83 100644
--- a/srcpkgs/python-Mako/template
+++ b/srcpkgs/python-Mako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Mako'
 pkgname=python-Mako
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Mako-${version}"
 build_style=python-module

From 164d5bbfa645fb7b1ddbfbccebb7b85e407c578f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 029/873] python-Markdown: rebuild for Python 3.8.

---
 srcpkgs/python-Markdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markdown/template b/srcpkgs/python-Markdown/template
index 935dcc12bca..03a0d18e23b 100644
--- a/srcpkgs/python-Markdown/template
+++ b/srcpkgs/python-Markdown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markdown'
 pkgname=python-Markdown
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python-module

From c5fcb10688938a17e3acb9f9c630c300f5fe9672 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 030/873] python-MarkupSafe: rebuild for Python 3.8.

---
 srcpkgs/python-MarkupSafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MarkupSafe/template b/srcpkgs/python-MarkupSafe/template
index c12dbb7e656..ae22857aa7a 100644
--- a/srcpkgs/python-MarkupSafe/template
+++ b/srcpkgs/python-MarkupSafe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MarkupSafe'
 pkgname=python-MarkupSafe
 version=1.1.1
-revision=1
+revision=2
 wrksrc="MarkupSafe-${version}"
 build_style=python-module
 pycompile_module="markupsafe"

From b7a4bc0f45110c5c3bd019a437078724336d1888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 031/873] python-Markups: rebuild for Python 3.8.

---
 srcpkgs/python-Markups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markups/template b/srcpkgs/python-Markups/template
index d4817feb430..02ba25ee05c 100644
--- a/srcpkgs/python-Markups/template
+++ b/srcpkgs/python-Markups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markups'
 pkgname=python-Markups
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markups-${version}"
 build_style=python-module

From af8fe2e4b17c908737f599cc43d860493f7da689 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 032/873] python3-MechanicalSoup: rebuild for Python 3.8.

---
 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 b1bbfa4184c..5a3b0b3eb03 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=1
+revision=2
 archs=noarch
 wrksrc=MechanicalSoup-${version}
 build_style=python3-module

From 4d05157344a63fb3d617b00a4268732231187cb4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 033/873] python-MiniMock: rebuild for Python 3.8.

---
 srcpkgs/python-MiniMock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MiniMock/template b/srcpkgs/python-MiniMock/template
index 38c0723f374..8b8c4f5f1e6 100644
--- a/srcpkgs/python-MiniMock/template
+++ b/srcpkgs/python-MiniMock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MiniMock'
 pkgname=python-MiniMock
 version=1.2.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 25b62a34488966009bf8450b60653f01872e2310 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 034/873] python-Pillow: rebuild for Python 3.8.

---
 srcpkgs/python-Pillow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pillow/template b/srcpkgs/python-Pillow/template
index e43d22b8f62..f1791b46d79 100644
--- a/srcpkgs/python-Pillow/template
+++ b/srcpkgs/python-Pillow/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pillow'
 pkgname=python-Pillow
 version=6.2.0
-revision=1
+revision=2
 wrksrc="Pillow-${version}"
 build_style=python-module
 pycompile_module="PIL"

From f79ffe3fe477b7fff206250125a96da96c80c086 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 035/873] python-PyAudio: rebuild for Python 3.8.

---
 srcpkgs/python-PyAudio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyAudio/template b/srcpkgs/python-PyAudio/template
index 5c3286caae0..2e84cf5cc8f 100644
--- a/srcpkgs/python-PyAudio/template
+++ b/srcpkgs/python-PyAudio/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyAudio'
 pkgname=python-PyAudio
 version=0.2.11
-revision=2
+revision=3
 wrksrc="PyAudio-${version}"
 build_style=python-module
 pycompile_module="pyaudio.py"

From 11c99c939a4791ec394842255e6aac23eaae5920 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 036/873] python3-PyBrowserID: rebuild for Python 3.8.

---
 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 abec9dac54e..eefd0175f1b 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=2
+revision=3
 archs=noarch
 wrksrc="PyBrowserID-${version}"
 build_style=python3-module

From d49beb289c07b8d33e8e2f286e068c0e8b3fe4b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 037/873] python3-PyFxA: rebuild for Python 3.8.

---
 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 31175c92435..6fc6791efdd 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=1
+revision=2
 archs=noarch
 wrksrc="PyFxA-${version}"
 build_style=python3-module

From d0eb109c7435d396e67de8f37a376ca0a2958d93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 038/873] python-PyHamcrest: rebuild for Python 3.8.

---
 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 61078241d8a..48f001595aa 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=1
+revision=2
 archs=noarch
 wrksrc="PyHamcrest-${version}"
 build_style=python-module

From 4afc9e488b53ee7025095fe93072953c256fc630 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 039/873] python-PyICU: rebuild for Python 3.8.

---
 srcpkgs/python-PyICU/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyICU/template b/srcpkgs/python-PyICU/template
index be4aaf88639..aab2934cbbd 100644
--- a/srcpkgs/python-PyICU/template
+++ b/srcpkgs/python-PyICU/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyICU'
 pkgname=python-PyICU
 version=2.3.1
-revision=2
+revision=3
 wrksrc="PyICU-${version}"
 build_style=python-module
 pycompile_module="icu PyICU.py"

From a0c3f96b4df2b1efda070832287f3728314c717a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 040/873] python3-PyJWT: rebuild for Python 3.8.

---
 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 6f0830125c1..bf1dda0753e 100644
--- a/srcpkgs/python3-PyJWT/template
+++ b/srcpkgs/python3-PyJWT/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-PyJWT'
 pkgname=python3-PyJWT
 version=1.7.1
-revision=1
+revision=2
 wrksrc="PyJWT-${version}"
 build_style=python3-module
 pycompile_module="PyJWT.py"

From 0355fd4b78af7fbf4ffad4b12dc8e153b70d703d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 041/873] python-PyOpenGL: rebuild for Python 3.8.

---
 srcpkgs/python-PyOpenGL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyOpenGL/template b/srcpkgs/python-PyOpenGL/template
index ec08e0bd667..eafc3be1210 100644
--- a/srcpkgs/python-PyOpenGL/template
+++ b/srcpkgs/python-PyOpenGL/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL'
 pkgname=python-PyOpenGL
 version=3.1.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="PyOpenGL-${version}"
 build_style=python-module

From 1a8da5c4a7dbf53ec6c03efd5387e02d2b0be720 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 17:15:54 +0200
Subject: [PATCH 042/873] python-PyOpenGL-accelerate: update to 3.1.3b1.

---
 srcpkgs/python-PyOpenGL-accelerate/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python-PyOpenGL-accelerate/template b/srcpkgs/python-PyOpenGL-accelerate/template
index 25d84abffcb..5d16a82b845 100644
--- a/srcpkgs/python-PyOpenGL-accelerate/template
+++ b/srcpkgs/python-PyOpenGL-accelerate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL-accelerate'
 pkgname=python-PyOpenGL-accelerate
-version=3.1.0
-revision=5
+version=3.1.3b1
+revision=1
 wrksrc="PyOpenGL-accelerate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"
@@ -9,10 +9,10 @@ makedepends="python-devel python3-devel python-numpy python3-numpy"
 depends="python-numpy"
 short_desc="Acceleration code for PyOpenGL (Python2)"
 maintainer="Alain Kalker <a.c.kalker@gmail.com>"
-license="3-clause-BSD"
+license="BSD-3-Clause"
 homepage="http://pyopengl.sourceforge.net/"
 distfiles="${PYPI_SITE}/P/PyOpenGL-accelerate/PyOpenGL-accelerate-${version}.tar.gz"
-checksum=927f4670b893d46e2f6273ae938bf0a1db27ffae3336eba94813ccef6260c410
+checksum=e687eea7e006d65f531933b49b3b3d2feaaf51279147a904247f9d189762a36f
 
 post_install() {
 	vlicense license.txt LICENSE

From 2f6b6f2c3880b16991df568d3ac18efca5c970c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 043/873] python-PyQt5: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5/template b/srcpkgs/python-PyQt5/template
index 6534d4e22e6..9eba20dc514 100644
--- a/srcpkgs/python-PyQt5/template
+++ b/srcpkgs/python-PyQt5/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5'
 pkgname=python-PyQt5
 version=5.13.0
-revision=1
+revision=2
 _sipver=4.19.18
 lib32disabled=yes
 wrksrc="PyQt5_gpl-${version}"

From cf20a1f23e0c305d2e9672610364b2fd4f566695 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 044/873] python-PyQt5-webengine: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5-webengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5-webengine/template b/srcpkgs/python-PyQt5-webengine/template
index 996ef6b00e2..af7162d20cb 100644
--- a/srcpkgs/python-PyQt5-webengine/template
+++ b/srcpkgs/python-PyQt5-webengine/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5-webengine'
 pkgname=python-PyQt5-webengine
 version=5.13.0
-revision=1
+revision=2
 wrksrc="PyQtWebEngine_gpl-${version}"
 pycompile_module="PyQt5WebEngine"
 hostmakedepends="pkg-config qt5-qmake

From 84502fbd3a591ad0db01072998b5a2b3fcfcf192 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 045/873] python-Pygments: rebuild for Python 3.8.

---
 srcpkgs/python-Pygments/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pygments/template b/srcpkgs/python-Pygments/template
index f5a72ca6cea..8d2214a6bfc 100644
--- a/srcpkgs/python-Pygments/template
+++ b/srcpkgs/python-Pygments/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pygments'
 pkgname=python-Pygments
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Pygments-${version}"
 build_style=python-module

From ef2467b2248b773e2d940058876cf81a2b935043 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 046/873] python-Pyro4: rebuild for Python 3.8.

---
 srcpkgs/python-Pyro4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pyro4/template b/srcpkgs/python-Pyro4/template
index d8925aa141f..0417e9f6a8a 100644
--- a/srcpkgs/python-Pyro4/template
+++ b/srcpkgs/python-Pyro4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pyro4'
 pkgname=python-Pyro4
 version=4.75
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a80785231122d63ad91b973744bf59b0a1b59506 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 047/873] python3-ReParser: rebuild for Python 3.8.

---
 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 5e7b5de3790..5959de9d0e3 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=1
+revision=2
 archs=noarch
 wrksrc=ReParser-${version}
 build_style=python3-module

From 543272b7ff22e6f0642d879c60f19717643fec8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 048/873] python-SPARQLWrapper: rebuild for Python 3.8.

---
 srcpkgs/python-SPARQLWrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-SPARQLWrapper/template b/srcpkgs/python-SPARQLWrapper/template
index d014eb8aab4..8d2db9a02b3 100644
--- a/srcpkgs/python-SPARQLWrapper/template
+++ b/srcpkgs/python-SPARQLWrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'python-SPARQLWrapper'
 pkgname=python-SPARQLWrapper
 version=1.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a01a9e6bc3bd9fddfdd13341f78e625b063be5c8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 049/873] python-SQLAlchemy: rebuild for Python 3.8.

---
 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 7b529ade621..110430ff9f5 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.8
-revision=1
+revision=2
 wrksrc="SQLAlchemy-${version}"
 build_style=python-module
 pycompile_module="sqlalchemy"

From 46382571cad86b54ca46e129f7c2988772d0a48e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 050/873] python3-SecretStorage: rebuild for Python 3.8.

---
 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 8df813ad247..b19d4865f7e 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.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="SecretStorage-${version}"
 build_style=python3-module

From c79427640956f1961211ce3322c3811958e0f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 051/873] python3-SoCo: rebuild for Python 3.8.

---
 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 f0ac9825f57..01ebbeff15a 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="SoCo-${version}"
 build_style=python3-module

From 20a1ac5477ca4a76e0257e06bf6f353835eac7bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 052/873] python-Sphinx: rebuild for Python 3.8.

---
 srcpkgs/python-Sphinx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Sphinx/template b/srcpkgs/python-Sphinx/template
index e70dc9b238e..42969925f9e 100644
--- a/srcpkgs/python-Sphinx/template
+++ b/srcpkgs/python-Sphinx/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Sphinx'
 pkgname=python-Sphinx
 version=1.8.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="Sphinx-${version}"
 build_style=python-module

From 863c01ff80faa4de651a55ba2a354f8da5e6b025 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 053/873] python3-Telethon: rebuild for Python 3.8.

---
 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 b0786559591..d0fa8e34d3f 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.10.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="Telethon-${version}"
 build_style=python3-module

From efc9766b9866c660a4cb508c49be4df48f1e5809 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 054/873] python-Twisted: rebuild for Python 3.8.

---
 srcpkgs/python-Twisted/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Twisted/template b/srcpkgs/python-Twisted/template
index 519a1e251a9..e94e0edf26e 100644
--- a/srcpkgs/python-Twisted/template
+++ b/srcpkgs/python-Twisted/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Twisted'
 pkgname=python-Twisted
 version=18.9.0
-revision=3
+revision=4
 wrksrc="Twisted-${version}"
 build_style=python-module
 pycompile_module="twisted"

From 5fd974f3940d5ee91fe712fef2e93ce539743b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 055/873] python3-TxSNI: rebuild for Python 3.8.

---
 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 403010da5be..d9d7c2a0c83 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.1.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="TxSNI-${version}"
 build_style=python3-module

From 559184031fe43c0ff648fb7fab55ede08fff2c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 056/873] python-Unidecode: rebuild for Python 3.8.

---
 srcpkgs/python-Unidecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Unidecode/template b/srcpkgs/python-Unidecode/template
index 035c5d846be..444eb1427d6 100644
--- a/srcpkgs/python-Unidecode/template
+++ b/srcpkgs/python-Unidecode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Unidecode'
 pkgname=python-Unidecode
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Unidecode-${version}"
 build_style=python-module

From 07f0904b4cb8f2de0b7bc39c0ca28d225c91257d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 057/873] python-WTForms: rebuild for Python 3.8.

---
 srcpkgs/python-WTForms/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-WTForms/template b/srcpkgs/python-WTForms/template
index 06af2366050..98dff7d092f 100644
--- a/srcpkgs/python-WTForms/template
+++ b/srcpkgs/python-WTForms/template
@@ -1,7 +1,7 @@
 # Template file for 'python-WTForms'
 pkgname=python-WTForms
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="WTForms-${version}"
 build_style=python-module

From ec81beba1921fe189a8dd80810da306514a86c1a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 058/873] python3-WebOb: rebuild for Python 3.8.

---
 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 c360542a1f2..53e63879f2c 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=1
+revision=2
 archs=noarch
 wrksrc="WebOb-${version}"
 build_style=python3-module

From 0b7a4a756b3ead4c188a3819311c4471c1b0a21c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 059/873] python-Werkzeug: rebuild for Python 3.8.

---
 srcpkgs/python-Werkzeug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Werkzeug/template b/srcpkgs/python-Werkzeug/template
index 24fff62f1ae..1ca303822e8 100644
--- a/srcpkgs/python-Werkzeug/template
+++ b/srcpkgs/python-Werkzeug/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Werkzeug'
 pkgname=python-Werkzeug
 version=0.15.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c530a6e11127606a3b29b73da4cb31f010d97b5c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 060/873] python-Whoosh: rebuild for Python 3.8.

---
 srcpkgs/python-Whoosh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Whoosh/template b/srcpkgs/python-Whoosh/template
index f2118ed0af2..66856b206a7 100644
--- a/srcpkgs/python-Whoosh/template
+++ b/srcpkgs/python-Whoosh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-whoosh'
 pkgname=python-Whoosh
 version=2.7.4
-revision=1
+revision=2
 wrksrc="Whoosh-${version}"
 archs=noarch
 build_style=python-module

From 3e3ad6526265ded86e6e1b5539061302a3890381 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 061/873] python3-XlsxWriter: rebuild for Python 3.8.

---
 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 ea68ced9a03..b991457e01e 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.1.8
-revision=1
+revision=2
 archs="noarch"
 wrksrc="XlsxWriter-RELEASE_${version}"
 build_style=python3-module

From ed808be70fb42a5a7e827e43a5d8a9954d85823a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 062/873] python-Yapsy: rebuild for Python 3.8.

---
 srcpkgs/python-Yapsy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Yapsy/template b/srcpkgs/python-Yapsy/template
index 9f79423f91d..5ad8b234f5d 100644
--- a/srcpkgs/python-Yapsy/template
+++ b/srcpkgs/python-Yapsy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Yapsy'
 pkgname=python-Yapsy
 version=1.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Yapsy-${version}"
 build_style=python-module

From ef3f8b60f72752d3ec1c7676df4597cc6cfdfb42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 063/873] python-aalib: rebuild for Python 3.8.

---
 srcpkgs/python-aalib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-aalib/template b/srcpkgs/python-aalib/template
index 349b8407343..f9621a9c8dc 100644
--- a/srcpkgs/python-aalib/template
+++ b/srcpkgs/python-aalib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-aalib'
 pkgname=python-aalib
 version=0.3.2
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="aalib.py"
 hostmakedepends="python-setuptools python3-setuptools"

From 1aee008231a9354b62bbf679e89e620deeba0d34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 064/873] python3-acme: rebuild for Python 3.8.

---
 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 d7ef20f2301..844dde9c814 100644
--- a/srcpkgs/python3-acme/template
+++ b/srcpkgs/python3-acme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-acme'
 pkgname=python3-acme
 version=0.39.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="acme-${version}"
 build_style=python3-module

From 877668118087bb2d0bd4b8ebf34db7c6c4308c31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 065/873] python3-aiodns: rebuild for Python 3.8.

---
 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 cca9f45dbf5..8e06ea6e614 100644
--- a/srcpkgs/python3-aiodns/template
+++ b/srcpkgs/python3-aiodns/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiodns'
 pkgname=python3-aiodns
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiodns-${version}"
 build_style=python3-module

From de87766918ac8688cf8992433b56e9b1ad222108 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 066/873] python3-aiohttp: rebuild for Python 3.8.

---
 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 fbe98e07b2b..67e450e6aab 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.5.4
-revision=3
+revision=4
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 0c2d285f8d7edc438e657ec9bc4a2b16982a4a57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 067/873] python3-aiohttp-cors: rebuild for Python 3.8.

---
 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 8a643ca1797..b621716e3cd 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=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 4643a6f9e03d1657e1ac2f5ca93bf616979b58de Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 068/873] python3-aiohttp-cors2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp-cors2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp-cors2/template b/srcpkgs/python3-aiohttp-cors2/template
index 7ff1206538b..f13b0598456 100644
--- a/srcpkgs/python3-aiohttp-cors2/template
+++ b/srcpkgs/python3-aiohttp-cors2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp-cors2'
 pkgname=python3-aiohttp-cors2
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 9db81023f9f60f7a78d62f9f9b8f1fa8afbb9fa8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 069/873] python3-aiohttp2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp2/template b/srcpkgs/python3-aiohttp2/template
index b570043baba..db3704b5700 100644
--- a/srcpkgs/python3-aiohttp2/template
+++ b/srcpkgs/python3-aiohttp2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp2'
 pkgname=python3-aiohttp2
 version=2.3.10
-revision=2
+revision=3
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 9bf56f834aca73a7ea8141ab0c95b4aed0d1f09a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 070/873] python3-aiohttp_socks: rebuild for Python 3.8.

---
 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 93c45ff24c4..10ab967ef76 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.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp_socks-${version}"
 build_style=python3-module

From acad4e265f43c8bc2098168adb1c0442a0c22445 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 071/873] python3-aiorpcx: rebuild for Python 3.8.

---
 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 42b6dc541bf..07922e15ccd 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.17.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiorpcX-${version}"
 build_style=python3-module

From b4945f68890b617f5b513871e533769a2149f07f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 072/873] python-alabaster: rebuild for Python 3.8.

---
 srcpkgs/python-alabaster/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alabaster/template b/srcpkgs/python-alabaster/template
index e4ece5c2991..b33009d5efb 100644
--- a/srcpkgs/python-alabaster/template
+++ b/srcpkgs/python-alabaster/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alabaster'
 pkgname=python-alabaster
 version=0.7.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="alabaster-${version}"
 build_style=python-module

From 04c416b8fb310277c61713ee1b8dd702a970240b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 073/873] python-alembic: rebuild for Python 3.8.

---
 srcpkgs/python-alembic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alembic/template b/srcpkgs/python-alembic/template
index 4011b33c0fa..aecbe10e7d0 100644
--- a/srcpkgs/python-alembic/template
+++ b/srcpkgs/python-alembic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alembic'
 pkgname=python-alembic
 version=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="alembic-${version}"
 build_style=python-module

From 5c2d4bcc3255cb59561524d151fe84b3a70e8ad4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 074/873] python3-altgraph: rebuild for Python 3.8.

---
 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 eff10f7aef4..2bf433edb6e 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.16.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="altgraph-${version}"
 build_style=python3-module

From 3c6234d42f7adffca219ea7f98f11d5283dce900 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 075/873] python3-aniso8601: rebuild for Python 3.8.

---
 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 26540bc8c3f..0253b89b5a3 100644
--- a/srcpkgs/python3-aniso8601/template
+++ b/srcpkgs/python3-aniso8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aniso8601'
 pkgname=python3-aniso8601
 version=8.0.0
-revision=1
+revision=2
 archs=noarch
 _gitver=0ec13b9d81c9
 wrksrc="nielsenb-aniso8601-${_gitver}"

From b4fecde90241517d0629d46de55f99a1ef7edbaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 076/873] python-ansicolor: rebuild for Python 3.8.

---
 srcpkgs/python-ansicolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ansicolor/template b/srcpkgs/python-ansicolor/template
index af18c5b946d..3663a82f0cc 100644
--- a/srcpkgs/python-ansicolor/template
+++ b/srcpkgs/python-ansicolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ansicolor'
 pkgname=python-ansicolor
 version=0.2.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="ansicolor-${version}"
 build_style=python-module

From 3983fbed547fd194f9eefaaf58d10c7770e27350 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 077/873] python3-anytree: rebuild for Python 3.8.

---
 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 5a37dba6581..7368754c426 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.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="anytree-${version}"
 build_style=python3-module

From 6d797f541c2cb160f9cfebd0a3e71dace50cceb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 078/873] python-appdirs: rebuild for Python 3.8.

---
 srcpkgs/python-appdirs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-appdirs/template b/srcpkgs/python-appdirs/template
index fdae1fe184b..15354ec5768 100644
--- a/srcpkgs/python-appdirs/template
+++ b/srcpkgs/python-appdirs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-appdirs'
 pkgname=python-appdirs
 version=1.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 7a7c86554157d7224efc221e706b9aebfc1ff796 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 079/873] python3-applib: rebuild for Python 3.8.

---
 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 95f589dc65a..0fb5a42e618 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=1
+revision=2
 archs=noarch
 wrksrc="applib-${version}"
 build_style=python3-module

From 642416934e5f74b49e1a38fe6e941287cbccbf83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 080/873] python-apsw: rebuild for Python 3.8.

---
 srcpkgs/python-apsw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-apsw/template b/srcpkgs/python-apsw/template
index ed47b4a7803..6146ea639db 100644
--- a/srcpkgs/python-apsw/template
+++ b/srcpkgs/python-apsw/template
@@ -3,7 +3,7 @@ pkgname=python-apsw
 _distver=3.29.0
 _patchver=r1
 version=${_distver}${_patchver}
-revision=1
+revision=2
 wrksrc="apsw-${_distver}-${_patchver}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 765bd2f2b82c6226b12a5d6bbe156b07c03a1bca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 081/873] python-argh: rebuild for Python 3.8.

---
 srcpkgs/python-argh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argh/template b/srcpkgs/python-argh/template
index 4b7aec3b525..656da441757 100644
--- a/srcpkgs/python-argh/template
+++ b/srcpkgs/python-argh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argh'
 pkgname=python-argh
 version=0.26.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="argh-${version}"
 build_style=python-module

From 1f6f709fcbb4353d419be8d129ce581747dae1ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 082/873] python-argon2: rebuild for Python 3.8.

---
 srcpkgs/python-argon2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argon2/template b/srcpkgs/python-argon2/template
index 0b4b132cddd..1b5216cc9c0 100644
--- a/srcpkgs/python-argon2/template
+++ b/srcpkgs/python-argon2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argon2'
 pkgname=python-argon2
 version=18.3.0
-revision=2
+revision=3
 wrksrc="argon2_cffi-${version}"
 build_style=python-module
 pycompile_module="argon2"

From 26f299203792a3fe43e8944054d8c61c83416097 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 083/873] python-arxiv2bib: rebuild for Python 3.8.

---
 srcpkgs/python-arxiv2bib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-arxiv2bib/template b/srcpkgs/python-arxiv2bib/template
index 8bbc6bcf78e..4f245755dcf 100644
--- a/srcpkgs/python-arxiv2bib/template
+++ b/srcpkgs/python-arxiv2bib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-arxiv2bib'
 pkgname=python-arxiv2bib
 version=1.0.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="arxiv2bib-${version}"
 build_style=python-module

From 5d25b8642b8f8043e54a95f2ff5efc880044395a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 084/873] python-asn1crypto: rebuild for Python 3.8.

---
 srcpkgs/python-asn1crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-asn1crypto/template b/srcpkgs/python-asn1crypto/template
index 369c20af98f..e7ffe7415fc 100644
--- a/srcpkgs/python-asn1crypto/template
+++ b/srcpkgs/python-asn1crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-asn1crypto'
 pkgname=python-asn1crypto
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="asn1crypto-${version}"
 build_style=python-module

From c0625af704339d35d7423cd750ef2620c53c39bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 085/873] python-astral: rebuild for Python 3.8.

---
 srcpkgs/python-astral/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-astral/template b/srcpkgs/python-astral/template
index b8fdaee27ac..07aaeee166b 100644
--- a/srcpkgs/python-astral/template
+++ b/srcpkgs/python-astral/template
@@ -1,7 +1,7 @@
 # Template file for 'python-astral'
 pkgname=python-astral
 version=1.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python-}-${version}"
 build_style=python-module

From 6cdbd1584336605868e949368279bb6c2143b1d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 086/873] python3-astroid: rebuild for Python 3.8.

---
 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 28f01bd4445..d964fd2cdf3 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.2.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="astroid-${version}"
 build_style=python3-module

From c0642f6c760884c3209a89e643de35660419627a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 087/873] python3-async-timeout: rebuild for Python 3.8.

---
 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 d949a4fdf9a..854584fb5b2 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=1
+revision=2
 archs=noarch
 wrksrc="async-timeout-${version}"
 build_style=python3-module

From 17cdd1aac68337b8859ce0d970b309f841b8a456 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 088/873] python3-async_generator: rebuild for Python 3.8.

---
 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 c2053d7bf1f..20d9f7ea0d1 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=1
+revision=2
 archs=noarch
 wrksrc="async_generator-${version}"
 build_style=python3-module

From e57ec7e6820968645a23bcc13867add4c9a62399 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 089/873] python-atomicwrites: rebuild for Python 3.8.

---
 srcpkgs/python-atomicwrites/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atomicwrites/template b/srcpkgs/python-atomicwrites/template
index 849272e53f9..ec411d981d4 100644
--- a/srcpkgs/python-atomicwrites/template
+++ b/srcpkgs/python-atomicwrites/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atomicwrites'
 pkgname=python-atomicwrites
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="atomicwrites-${version}"
 build_style=python-module

From 61df9fa27dc05bc6bb5d5a2c5e806fd041d9adb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 090/873] python-atspi: rebuild for Python 3.8.

---
 srcpkgs/python-atspi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atspi/template b/srcpkgs/python-atspi/template
index 4a2007fa319..cfa1ef35377 100644
--- a/srcpkgs/python-atspi/template
+++ b/srcpkgs/python-atspi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atspi'
 pkgname=python-atspi
 version=2.32.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure

From d24c76e2f70e9a9dd9a6aa66a323bf79f37f9110 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 091/873] python-attrs: rebuild for Python 3.8.

---
 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 aaddb13f5be..6e2297a9553 100644
--- a/srcpkgs/python-attrs/template
+++ b/srcpkgs/python-attrs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-attrs'
 pkgname=python-attrs
 version=19.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="attrs-${version}"
 build_style=python-module

From dba37b5f26f28057cb10e86a08a4d2281ee09b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 092/873] python-audioread: rebuild for Python 3.8.

---
 srcpkgs/python-audioread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-audioread/template b/srcpkgs/python-audioread/template
index fc788a2778c..bc878d4b82d 100644
--- a/srcpkgs/python-audioread/template
+++ b/srcpkgs/python-audioread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-audioread'
 pkgname=python-audioread
 version=2.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="audioread-${version}"
 build_style=python-module

From 789a6f2ae1cd503ad69b6a968651c7745f878718 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 093/873] audit: rebuild for Python 3.8.

---
 srcpkgs/audit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/audit/template b/srcpkgs/audit/template
index c624aae0f6d..3e0d21784c0 100644
--- a/srcpkgs/audit/template
+++ b/srcpkgs/audit/template
@@ -1,7 +1,7 @@
 # Template file for 'audit'
 pkgname=audit
 version=2.8.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--libdir=/usr/lib --enable-shared=audit --enable-gssapi-krb5
  --with-apparmor --with-libcap-ng --with-python3"

From e2efc441ba2dda6eac89d6d19f7960be2fb6cb6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 094/873] python3-autobahn: rebuild for Python 3.8.

---
 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 053e45608e5..524ba4b4566 100644
--- a/srcpkgs/python3-autobahn/template
+++ b/srcpkgs/python3-autobahn/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-autobahn'
 pkgname=python3-autobahn
 version=19.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="autobahn-${version}"
 build_style=python3-module

From 9ad07e924752896ad77bccca2019163eb738ebc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 095/873] python-automat: rebuild for Python 3.8.

---
 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 4d0f89a89f5..984f5e9642a 100644
--- a/srcpkgs/python-automat/template
+++ b/srcpkgs/python-automat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-automat'
 pkgname=python-automat
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Automat-${version}"
 build_style=python-module

From a104c6986268b798f373e1fb36de2b20efb9f618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 096/873] python-axolotl: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl/template b/srcpkgs/python-axolotl/template
index cf24db1b6e7..74480b5a9fe 100644
--- a/srcpkgs/python-axolotl/template
+++ b/srcpkgs/python-axolotl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl'
 pkgname=python-axolotl
 version=0.2.3
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="axolotl"

From c0e16521a2125c2ae2c155dd483904a3dce7bd8c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 097/873] python-axolotl-curve25519: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl-curve25519/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl-curve25519/template b/srcpkgs/python-axolotl-curve25519/template
index f7b273b8385..897de4e7cdf 100644
--- a/srcpkgs/python-axolotl-curve25519/template
+++ b/srcpkgs/python-axolotl-curve25519/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl-curve25519'
 pkgname=python-axolotl-curve25519
 version=0.4.1.post2
-revision=2
+revision=3
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 makedepends="python-devel python3-devel"

From 6c250811341de25ed60e2bdfaae58eb8f5a8c159 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 098/873] python-babelfish: rebuild for Python 3.8.

---
 srcpkgs/python-babelfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-babelfish/template b/srcpkgs/python-babelfish/template
index c156255f418..47d5bb176cc 100644
--- a/srcpkgs/python-babelfish/template
+++ b/srcpkgs/python-babelfish/template
@@ -1,7 +1,7 @@
 # Template file for 'python-babelfish'
 pkgname=python-babelfish
 version=0.5.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="babelfish-${version}"
 build_style=python-module

From 3bbb2fa6599ab0470a4209080a69ad4f8476f1ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 099/873] python-backcall: rebuild for Python 3.8.

---
 srcpkgs/python-backcall/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-backcall/template b/srcpkgs/python-backcall/template
index 01dfab9c25d..a55af727ab6 100644
--- a/srcpkgs/python-backcall/template
+++ b/srcpkgs/python-backcall/template
@@ -1,7 +1,7 @@
 # Template file for 'python-backcall'
 pkgname=python-backcall
 version=0.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="backcall-${version}"
 build_style=python-module

From d263efaab1b83cfdc94e9b33011f3cfefc52dcd2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 100/873] bcc: rebuild for Python 3.8.

---
 srcpkgs/bcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template
index a4d32bce7a4..e872cb6a4a8 100644
--- a/srcpkgs/bcc/template
+++ b/srcpkgs/bcc/template
@@ -1,7 +1,7 @@
 # Template file for 'bcc'
 pkgname=bcc
 version=0.11.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DREVISION=${version}"
 hostmakedepends="flex"

From 95aa25d2f02529207de0d9d62aa57353f202d9a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 101/873] python-bcrypt: rebuild for Python 3.8.

---
 srcpkgs/python-bcrypt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bcrypt/template b/srcpkgs/python-bcrypt/template
index 1ccac21ee94..664b5c9df07 100644
--- a/srcpkgs/python-bcrypt/template
+++ b/srcpkgs/python-bcrypt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bcrypt'
 pkgname=python-bcrypt
 version=3.1.7
-revision=1
+revision=2
 wrksrc="bcrypt-${version}"
 build_style=python-module
 pycompile_module="bcrypt"

From 91e29d8f93186f3c597658d4746f864cc6ed9fb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 102/873] python-bibtexparser: rebuild for Python 3.8.

---
 srcpkgs/python-bibtexparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bibtexparser/template b/srcpkgs/python-bibtexparser/template
index 1eff201e6b8..c40115c9fb8 100644
--- a/srcpkgs/python-bibtexparser/template
+++ b/srcpkgs/python-bibtexparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bibtexparser'
 pkgname=python-bibtexparser
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bibtexparser-${version}"
 build_style=python-module

From 6a95de33763230908ad4e9ae408dedcdd2cc431d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 103/873] python-bitarray: rebuild for Python 3.8.

---
 srcpkgs/python-bitarray/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitarray/template b/srcpkgs/python-bitarray/template
index 4f2b4ee392c..f928718a9df 100644
--- a/srcpkgs/python-bitarray/template
+++ b/srcpkgs/python-bitarray/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitarray'
 pkgname=python-bitarray
 version=1.0.1
-revision=1
+revision=2
 wrksrc="bitarray-${version}"
 build_style=python-module
 pycompile_module="bitarray"

From 1f892b7a3495cc0eddd59d14baf8fa6473521ce4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 104/873] python-bitbucket-api: rebuild for Python 3.8.

---
 srcpkgs/python-bitbucket-api/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitbucket-api/template b/srcpkgs/python-bitbucket-api/template
index 27747866baf..448ea60d53d 100644
--- a/srcpkgs/python-bitbucket-api/template
+++ b/srcpkgs/python-bitbucket-api/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitbucket-api'
 pkgname=python-bitbucket-api
 version=0.5.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="bitbucket-api-${version}"
 build_style=python-module

From 9f464ba19a5d403e830d05b84d5b86c6a9bf0209 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 105/873] python-bleach: rebuild for Python 3.8.

---
 srcpkgs/python-bleach/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bleach/template b/srcpkgs/python-bleach/template
index da389c319a5..6e3d4a3bf4c 100644
--- a/srcpkgs/python-bleach/template
+++ b/srcpkgs/python-bleach/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bleach'
 pkgname=python-bleach
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bleach-${version}"
 build_style=python-module

From a79c0811d86d64b345ee5b056c280a062c8e810a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 106/873] python3-blessed: rebuild for Python 3.8.

---
 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 4d494883f9a..8527379351f 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.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessed-${version}"
 build_style=python3-module

From ec38850242ede1700a4b6234199fba116a530b3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 107/873] python-blessings: rebuild for Python 3.8.

---
 srcpkgs/python-blessings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blessings/template b/srcpkgs/python-blessings/template
index f8e396da5c5..baa4938c328 100644
--- a/srcpkgs/python-blessings/template
+++ b/srcpkgs/python-blessings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blessings'
 pkgname=python-blessings
 version=1.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessings-${version}"
 build_style=python-module

From 19252293b6f311e3a280441f83e7ec1589711b77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 108/873] python-blinker: rebuild for Python 3.8.

---
 srcpkgs/python-blinker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blinker/template b/srcpkgs/python-blinker/template
index e34a4a9721a..b6d1d63d19a 100644
--- a/srcpkgs/python-blinker/template
+++ b/srcpkgs/python-blinker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blinker'
 pkgname=python-blinker
 version=1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="blinker-${version}"
 build_style=python-module

From 7cd7b832b55b68ab081454f2b86c254476bd5132 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 109/873] python-bluez: rebuild for Python 3.8.

---
 srcpkgs/python-bluez/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bluez/template b/srcpkgs/python-bluez/template
index 1112352e8ab..4734e47038d 100644
--- a/srcpkgs/python-bluez/template
+++ b/srcpkgs/python-bluez/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bluez'
 pkgname=python-bluez
 version=0.22
-revision=4
+revision=5
 wrksrc="pybluez-${version}"
 build_style=python-module
 pycompile_module="bluetooth"

From 47f9a18cc42f2afe1e8f31696b6928e35b8105c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 110/873] python3-boltons: rebuild for Python 3.8.

---
 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 84a991feef4..1083eb98c51 100644
--- a/srcpkgs/python3-boltons/template
+++ b/srcpkgs/python3-boltons/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-boltons'
 pkgname=python3-boltons
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boltons-${version}"
 build_style=python3-module

From 05f9cb79aa092e2ddeede56d09676742c60cb788 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 111/873] python-boto: rebuild for Python 3.8.

---
 srcpkgs/python-boto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-boto/template b/srcpkgs/python-boto/template
index 40bd3d888b9..684c00feee0 100644
--- a/srcpkgs/python-boto/template
+++ b/srcpkgs/python-boto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-boto'
 pkgname=python-boto
 version=2.49.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boto-${version}"
 build_style=python-module

From ad258b30e35aadb84fd8cd6395bb3d382b429ce9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 112/873] python-botocore: rebuild for Python 3.8.

---
 srcpkgs/python-botocore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-botocore/template b/srcpkgs/python-botocore/template
index ae1a4c17964..0610007f36e 100644
--- a/srcpkgs/python-botocore/template
+++ b/srcpkgs/python-botocore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-botocore'
 pkgname=python-botocore
 version=1.12.243
-revision=1
+revision=2
 archs=noarch
 wrksrc="botocore-${version}"
 build_style=python-module

From 5bc87295c4d5b8af514da116d9b83154488da331 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 113/873] python-bottle: rebuild for Python 3.8.

---
 srcpkgs/python-bottle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bottle/template b/srcpkgs/python-bottle/template
index 8e3a2ad5ad7..0ffc8adfec7 100644
--- a/srcpkgs/python-bottle/template
+++ b/srcpkgs/python-bottle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bottle'
 pkgname=python-bottle
 version=0.12.17
-revision=1
+revision=2
 archs=noarch
 wrksrc="bottle-${version}"
 build_style=python-module

From 86d7964c563357cfa4aec17ced1fefb9e2c974d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 114/873] brltty: rebuild for Python 3.8.

---
 srcpkgs/brltty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/brltty/template b/srcpkgs/brltty/template
index 33f3354a219..a838cd62d55 100644
--- a/srcpkgs/brltty/template
+++ b/srcpkgs/brltty/template
@@ -1,7 +1,7 @@
 # Template file for 'brltty'
 pkgname=brltty
 version=6.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-gpm --with-screen-driver=lx,sc
  --with-tables-directory=/usr/share/brltty PYTHON=/usr/bin/python3"

From 59305e4244220895606aef8a8016d356cee63dff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 115/873] python-bsddb3: rebuild for Python 3.8.

---
 srcpkgs/python-bsddb3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bsddb3/template b/srcpkgs/python-bsddb3/template
index f719a3f9560..1df37cc0e71 100644
--- a/srcpkgs/python-bsddb3/template
+++ b/srcpkgs/python-bsddb3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bsddb3'
 pkgname=python-bsddb3
 version=6.2.6
-revision=2
+revision=3
 wrksrc="bsddb3-${version}"
 build_style=python-module
 make_build_args="--berkeley-db=${XBPS_CROSS_BASE}/usr"

From 8e91ab0e55145cdc83aae10c6f0277d467cb5057 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 116/873] python-cached-property: rebuild for Python 3.8.

---
 srcpkgs/python-cached-property/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cached-property/template b/srcpkgs/python-cached-property/template
index ca2f8536260..16c89346565 100644
--- a/srcpkgs/python-cached-property/template
+++ b/srcpkgs/python-cached-property/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cached-property'
 pkgname=python-cached-property
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cached-property-${version}"
 build_style=python-module

From 3047633291296a9279b5c2a9c0ff04a0cea875f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 117/873] python-cachetools: rebuild for Python 3.8.

---
 srcpkgs/python-cachetools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cachetools/template b/srcpkgs/python-cachetools/template
index ee3ed3a4c94..0f2fdcaed32 100644
--- a/srcpkgs/python-cachetools/template
+++ b/srcpkgs/python-cachetools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cachetools'
 pkgname=python-cachetools
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cachetools-${version}"
 build_style=python-module

From 52e0110b2dc8419583a18babfa62796ef6410ac7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 118/873] python3-cairo: rebuild for Python 3.8.

---
 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 cdde1b83d20..ac158237dd2 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.18.1
-revision=1
+revision=2
 wrksrc="pycairo-${version}"
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From d8f9c3f93f495874237c23477fb548be8b2c0da2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 119/873] python-cairocffi: rebuild for Python 3.8.

---
 srcpkgs/python-cairocffi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cairocffi/template b/srcpkgs/python-cairocffi/template
index baa61334a2a..c057739b03d 100644
--- a/srcpkgs/python-cairocffi/template
+++ b/srcpkgs/python-cairocffi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cairocffi'
 pkgname=python-cairocffi
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cairocffi-${version}"
 build_style=python-module

From bc01f22fb9a5d16bae1b724b675fc57b1f732baa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 120/873] python3-canonicaljson: rebuild for Python 3.8.

---
 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 abc8e95820d..1cbe15f14ae 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.1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="canonicaljson-${version}"
 build_style=python3-module

From e4cba931e3e55f565bc084f8171dea2a8baa9aaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 121/873] python3-casttube: rebuild for Python 3.8.

---
 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 ccd95f3f31c..9e5544b0101 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=1
+revision=2
 archs=noarch
 wrksrc="casttube-${version}"
 build_style=python3-module

From 255661e350728911e6dc85db4bd8a0a0f059b561 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 122/873] python-cffi: rebuild for Python 3.8.

---
 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 27ae03879ac..8501b202bf2 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.12.3
-revision=1
+revision=2
 wrksrc="cffi-${version}"
 build_style=python-module
 pycompile_module="cffi"

From 1b85c0971a1d2d810331d3392d4ecedf140eeb47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 123/873] python3-changelogs: rebuild for Python 3.8.

---
 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 5c2a4889959..d9a7784cf3b 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.14.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="changelogs-${version}"
 build_style=python3-module

From 38e9561402e4ea4c3c4b27c8c747e6b710aec2fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 124/873] python-chardet: rebuild for Python 3.8.

---
 srcpkgs/python-chardet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chardet/template b/srcpkgs/python-chardet/template
index 685d3ab767f..bd502bbbddf 100644
--- a/srcpkgs/python-chardet/template
+++ b/srcpkgs/python-chardet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chardet'
 pkgname=python-chardet
 version=3.0.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="chardet-${version}"
 build_style=python-module

From de1193127ae80857e0f21f1d0499748b6ccafa40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 125/873] python3-cheetah3: rebuild for Python 3.8.

---
 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 40dfee6e322..b2149b2bc22 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.4
-revision=1
+revision=2
 wrksrc="Cheetah3-${version}"
 build_style=python3-module
 pycompile_module="Cheetah"

From 654378c7da0932e5e48085409868c2639efb5294 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 126/873] python3-chess: rebuild for Python 3.8.

---
 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 54b397517cf..e87dab6ca02 100644
--- a/srcpkgs/python3-chess/template
+++ b/srcpkgs/python3-chess/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chess'
 pkgname=python3-chess
 version=0.27.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-chess-${version}"
 build_style=python3-module

From 10db1a1daa9e65a8a20ebc6e20f512884e23f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 127/873] python3-chromecast: rebuild for Python 3.8.

---
 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 16df7502633..cfa41c5dfb5 100644
--- a/srcpkgs/python3-chromecast/template
+++ b/srcpkgs/python3-chromecast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chromecast'
 pkgname=python3-chromecast
 version=4.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychromecast-${version}"
 build_style=python3-module

From 9ff3e7dae7d0ebe28421538f18f150ecd58104e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 128/873] python-chroot: rebuild for Python 3.8.

---
 srcpkgs/python-chroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chroot/template b/srcpkgs/python-chroot/template
index 36853e9f2c0..7faa0f4cce9 100644
--- a/srcpkgs/python-chroot/template
+++ b/srcpkgs/python-chroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chroot'
 pkgname=python-chroot
 version=0.9.18
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychroot-${version}"
 build_style=python-module

From 8d2b57d7f0075beb9134ebd5f7e517ef8a7f20a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 129/873] python3-cli-ui: rebuild for Python 3.8.

---
 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 8303d44eed2..15a9bd32fce 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.9.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-cli-ui-${version}"
 build_style=python3-module

From ecf175e67cdb7bd1e27d29cc47a7e945a6660996 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 130/873] python3-cli_helpers: rebuild for Python 3.8.

---
 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 74b4abf2200..87b284e3cb5 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=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cli_helpers-${version}"
 build_style=python3-module

From aa87c50665110997328e9b80b9b6ba62c47f18bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 131/873] python-click: rebuild for Python 3.8.

---
 srcpkgs/python-click/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click/template b/srcpkgs/python-click/template
index 217e617e73e..4014cb66a83 100644
--- a/srcpkgs/python-click/template
+++ b/srcpkgs/python-click/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click'
 pkgname=python-click
 version=7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Click-${version}"
 build_style="python-module"

From cac08babb361a709a7b7a93c7a825b4682273115 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 132/873] python-click-log: rebuild for Python 3.8.

---
 srcpkgs/python-click-log/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-log/template b/srcpkgs/python-click-log/template
index 37b53f04af0..b57a7a74b4a 100644
--- a/srcpkgs/python-click-log/template
+++ b/srcpkgs/python-click-log/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-log'
 pkgname=python-click-log
 version=0.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-log-${version}"
 build_style="python-module"

From 5a0f06ded0599ac889d808c93865db1723b2ed95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 133/873] python3-click-plugins: rebuild for Python 3.8.

---
 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 cee484018d1..0ef6ce6b248 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=1
+revision=2
 archs=noarch
 wrksrc="click-plugins-${version}"
 build_style=python3-module

From cf104fe4106995307daeb70eb8d34554c238b5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 134/873] python-click-threading: rebuild for Python 3.8.

---
 srcpkgs/python-click-threading/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-threading/template b/srcpkgs/python-click-threading/template
index 76125224992..49b4a4a9aae 100644
--- a/srcpkgs/python-click-threading/template
+++ b/srcpkgs/python-click-threading/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-threading'
 pkgname=python-click-threading
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-threading-${version}"
 build_style="python-module"

From 4bcf653af73bc8e5a6492eee92e5d2826a779d38 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 135/873] python3-cmdln: rebuild for Python 3.8.

---
 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 f00c9a63908..2b7e21f3980 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=1
+revision=2
 archs=noarch
 wrksrc="cmdln-${version}"
 build_style=python3-module

From 52e9257d3be602d0748918c1440a3eae0b6baa51 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 136/873] python-codespell: rebuild for Python 3.8.

---
 srcpkgs/python-codespell/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-codespell/template b/srcpkgs/python-codespell/template
index 92134285a58..211626f33d7 100644
--- a/srcpkgs/python-codespell/template
+++ b/srcpkgs/python-codespell/template
@@ -1,7 +1,7 @@
 # Template file for 'python-codespell'
 pkgname=python-codespell
 version=1.14.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="codespell-${version}"
 build_style=python-module

From 65299f402e3d3a2991e33defee28d85043e0b40f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 137/873] python-colorama: rebuild for Python 3.8.

---
 srcpkgs/python-colorama/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-colorama/template b/srcpkgs/python-colorama/template
index 98ea0d3be78..09562385243 100644
--- a/srcpkgs/python-colorama/template
+++ b/srcpkgs/python-colorama/template
@@ -1,7 +1,7 @@
 # Template file for 'python-colorama'
 pkgname=python-colorama
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="colorama-${version}"
 build_style=python-module

From ec6a8fb7b9e3330e2d7f3fbe139c7a3742013bd8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 138/873] python3-colorclass: rebuild for Python 3.8.

---
 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 4a80f379206..ed8d2d2ea02 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=1
+revision=2
 archs=noarch
 wrksrc="colorclass-${version}"
 build_style=python3-module

From 4b254d3097fa01cb641af24639c6b9a230345954 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 139/873] python-configobj: rebuild for Python 3.8.

---
 srcpkgs/python-configobj/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-configobj/template b/srcpkgs/python-configobj/template
index 95f30d4631a..a8cb5d5d34e 100644
--- a/srcpkgs/python-configobj/template
+++ b/srcpkgs/python-configobj/template
@@ -1,7 +1,7 @@
 # Template file for 'python-configobj'
 pkgname=python-configobj
 version=5.0.6
-revision=5
+revision=6
 archs=noarch
 wrksrc="configobj-${version}"
 build_style=python-module

From 530a6b84ff81274981ed1aa92a2ff85a78dc9775 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 140/873] python-constantly: rebuild for Python 3.8.

---
 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 b5530908ac4..9160aec9edd 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=2
+revision=3
 archs=noarch
 wrksrc="constantly-${version}"
 build_style=python-module

From d2c0a853f5cd6634cca304f7db191fcb1d9a6afa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 141/873] python-construct: rebuild for Python 3.8.

---
 srcpkgs/python-construct/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-construct/template b/srcpkgs/python-construct/template
index 2afe435652c..d6d0b8010e2 100644
--- a/srcpkgs/python-construct/template
+++ b/srcpkgs/python-construct/template
@@ -1,7 +1,7 @@
 # Template file for 'python-construct'
 pkgname=python-construct
 version=2.9.45
-revision=2
+revision=3
 archs=noarch
 wrksrc="construct-${version}"
 build_style=python-module

From 9ba618aa4a4db0062002fcb1ad540bee9b702ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 142/873] python-coverage: rebuild for Python 3.8.

---
 srcpkgs/python-coverage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-coverage/template b/srcpkgs/python-coverage/template
index df6064b9879..1c44b5e18fb 100644
--- a/srcpkgs/python-coverage/template
+++ b/srcpkgs/python-coverage/template
@@ -1,7 +1,7 @@
 # Template file for 'python-coverage'
 pkgname=python-coverage
 version=4.5.4
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="coverage"

From 9adf4621a4960d8a331e1b723971cb326ad2429f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 143/873] python-cram: rebuild for Python 3.8.

---
 srcpkgs/python-cram/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cram/template b/srcpkgs/python-cram/template
index f1fce32149f..8c5d65fe260 100644
--- a/srcpkgs/python-cram/template
+++ b/srcpkgs/python-cram/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cram'
 pkgname=python-cram
 version=0.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="cram-${version}"
 build_style=python-module

From 47ef41a3931be5da08ee8d6fb0ff35b5e1a95d62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 144/873] python3-crcmod: rebuild for Python 3.8.

---
 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 4cd433d2420..9311dedc8ac 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=1
+revision=2
 wrksrc="crcmod-${version}"
 build_style=python3-module
 pycompile_module="crcmod"

From 8b8750f3919e1f23aa6930671f096a365391611a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 145/873] python-cryptography: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography/template b/srcpkgs/python-cryptography/template
index ce3184715dd..39e63d22f7d 100644
--- a/srcpkgs/python-cryptography/template
+++ b/srcpkgs/python-cryptography/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography'
 pkgname=python-cryptography
 version=2.7
-revision=1
+revision=2
 wrksrc="cryptography-${version}"
 build_style=python-module
 pycompile_module="cryptography"

From 676ecf3ea008b8ccabdd3d2798c449a061abb9dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 146/873] python-cryptography_vectors: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography_vectors/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography_vectors/template b/srcpkgs/python-cryptography_vectors/template
index d52e5f5e47c..8fba3a0ce27 100644
--- a/srcpkgs/python-cryptography_vectors/template
+++ b/srcpkgs/python-cryptography_vectors/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography_vectors'
 pkgname=python-cryptography_vectors
 version=2.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="cryptography_vectors-${version}"
 build_style=python-module

From b78a89dedf3b15094ae7febdff460a2cbf547464 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 147/873] python-css-parser: rebuild for Python 3.8.

---
 srcpkgs/python-css-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-css-parser/template b/srcpkgs/python-css-parser/template
index e90b103e4a0..f6d2d0cbf8b 100644
--- a/srcpkgs/python-css-parser/template
+++ b/srcpkgs/python-css-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-css-parser'
 pkgname=python-css-parser
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="css-parser-${version}"
 build_style=python-module

From 036f8b87a68dcb362c7037f58abcffb763571601 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 148/873] python-cssselect: rebuild for Python 3.8.

---
 srcpkgs/python-cssselect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssselect/template b/srcpkgs/python-cssselect/template
index d7dbcebc0ea..c7f43ebca9f 100644
--- a/srcpkgs/python-cssselect/template
+++ b/srcpkgs/python-cssselect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssselect'
 pkgname=python-cssselect
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d4b52974f5f9e8a86060d3dfccc041298c1d666 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 149/873] python-cssutils: rebuild for Python 3.8.

---
 srcpkgs/python-cssutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssutils/template b/srcpkgs/python-cssutils/template
index 648c4754c22..5f08903b9a0 100644
--- a/srcpkgs/python-cssutils/template
+++ b/srcpkgs/python-cssutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssutils'
 pkgname=python-cssutils
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="cssutils-${version}"
 build_style=python-module

From bfb2835290dfefddc0781e2b463d410bf121efa5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 150/873] python-cups: rebuild for Python 3.8.

---
 srcpkgs/python-cups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cups/template b/srcpkgs/python-cups/template
index 2c26e9ef3d0..62c384c9db8 100644
--- a/srcpkgs/python-cups/template
+++ b/srcpkgs/python-cups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cups'
 pkgname=python-cups
 version=1.9.74
-revision=2
+revision=3
 wrksrc="pycups-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 32daac09af71a30483e9985028381670b4ab6245 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 151/873] system-config-printer: rebuild for Python 3.8.

---
 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 e8f8eca46ae..04fe74ff808 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.11
-revision=5
+revision=6
 build_style=gnu-configure
 configure_args="--with-udev-rules"
 make_build_args="udevhelperdir=/usr/lib/udev"

From 582813b2756ce1d1d397113a752b81189680c001 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 152/873] python-curl: rebuild for Python 3.8.

---
 srcpkgs/python-curl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curl/template b/srcpkgs/python-curl/template
index f1f9051d53a..685c63ce68a 100644
--- a/srcpkgs/python-curl/template
+++ b/srcpkgs/python-curl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curl'
 pkgname=python-curl
 version=7.43.0.3
-revision=4
+revision=5
 wrksrc="pycurl-${version}"
 build_style=python-module
 pycompile_module="curl"

From 0eda981910702bfaac2a8af2041fe2c534c13618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 153/873] python-curtsies: rebuild for Python 3.8.

---
 srcpkgs/python-curtsies/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curtsies/template b/srcpkgs/python-curtsies/template
index 158d1c5ce76..6126a11e9b4 100644
--- a/srcpkgs/python-curtsies/template
+++ b/srcpkgs/python-curtsies/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curtsies'
 pkgname=python-curtsies
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="curtsies-${version}"
 build_style=python-module

From 7db16365daaa931d774701441c01b698be457cb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 154/873] python-cycler: rebuild for Python 3.8.

---
 srcpkgs/python-cycler/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cycler/template b/srcpkgs/python-cycler/template
index ee6c985b288..0b53c195dae 100644
--- a/srcpkgs/python-cycler/template
+++ b/srcpkgs/python-cycler/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cycler'
 pkgname=python-cycler
 version=0.10.0
-revision=4
+revision=5
 archs=noarch
 wrksrc="cycler-${version}"
 build_style=python-module

From 2c59e6772ee31b855fe302a27b9b9544cd865e6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 155/873] python-daemonize: rebuild for Python 3.8.

---
 srcpkgs/python-daemonize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-daemonize/template b/srcpkgs/python-daemonize/template
index 699a156b26b..efaf163e573 100644
--- a/srcpkgs/python-daemonize/template
+++ b/srcpkgs/python-daemonize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-daemonize'
 pkgname=python-daemonize
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="daemonize-${version}"
 build_style=python-module

From 84cc63fece0763c8b6920e56e78508551e0fc727 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 156/873] python-dateutil: rebuild for Python 3.8.

---
 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 d9c0f73c883..7675b8f9447 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.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="dateutil"

From 9a19173186ae564f17114f530ac8077484d43c82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 157/873] python-dbus: rebuild for Python 3.8.

---
 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 869c10b2969..3845f6ce34a 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.12
-revision=1
+revision=2
 wrksrc="dbus-python-${version}"
 build_style=gnu-configure
 pycompile_module="dbus"

From 06a9a5b6965485369e669181d99123d7beabf81f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 158/873] python3-dbusmock: rebuild for Python 3.8.

---
 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 67e0ed68078..4abd47843cc 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.18.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-dbusmock-${version}"
 build_style=python3-module

From 694c57d69d63d9f59bef9d31d20a0b16dc73a2a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 159/873] python-decorator: rebuild for Python 3.8.

---
 srcpkgs/python-decorator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-decorator/template b/srcpkgs/python-decorator/template
index 14090c537c9..7f14fef90a6 100644
--- a/srcpkgs/python-decorator/template
+++ b/srcpkgs/python-decorator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-decorator'
 pkgname=python-decorator
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="decorator-${version}"
 build_style=python-module

From 3bd4b100eb970e16e93bbbed8ce2ac91a36e3df5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 160/873] python-defusedxml: rebuild for Python 3.8.

---
 srcpkgs/python-defusedxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-defusedxml/template b/srcpkgs/python-defusedxml/template
index afd62e94414..96234eb18c7 100644
--- a/srcpkgs/python-defusedxml/template
+++ b/srcpkgs/python-defusedxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-defusedxml'
 pkgname=python-defusedxml
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="defusedxml-${version}"
 build_style=python-module

From 442acbe58cd337c55658908f41ec5b6221ca8fcb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 161/873] python3-discid: rebuild for Python 3.8.

---
 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 be5eae1f07f..cc4bc27a1aa 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=1
+revision=2
 archs=noarch
 wrksrc="discid-${version}"
 build_style=python3-module

From 31db2101853fbced7b2655f48906b9054bce07ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 162/873] python-discogs_client: rebuild for Python 3.8.

---
 srcpkgs/python-discogs_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-discogs_client/template b/srcpkgs/python-discogs_client/template
index a27cc50f93c..5af18eda664 100644
--- a/srcpkgs/python-discogs_client/template
+++ b/srcpkgs/python-discogs_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-discogs_client'
 pkgname=python-discogs_client
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="discogs-client-${version}"
 build_style=python-module

From 0aba2b232148b832c27ebd8703c24f42c5018f15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 163/873] python3-distro: rebuild for Python 3.8.

---
 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 86e94572ed7..f1205ace151 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.4.0
-revision=1
+revision=2
 wrksrc=distro-${version}
 build_style=python3-module
 pycompile_module="distro"

From 990a3bd7cef20bd21b781caccd807a7cadf6a0fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 164/873] python-distutils-extra: rebuild for Python 3.8.

---
 srcpkgs/python-distutils-extra/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-distutils-extra/template b/srcpkgs/python-distutils-extra/template
index 9e5728ba08f..46bb0cccc31 100644
--- a/srcpkgs/python-distutils-extra/template
+++ b/srcpkgs/python-distutils-extra/template
@@ -1,7 +1,7 @@
 # Template file for 'python-distutils-extra'
 pkgname=python-distutils-extra
 version=2.39
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 pycompile_module="DistUtilsExtra"

From cc8c6f7c74e5660152cb87b99e7d7b88b5c3d077 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 165/873] python-dkimpy: rebuild for Python 3.8.

---
 srcpkgs/python-dkimpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dkimpy/template b/srcpkgs/python-dkimpy/template
index 4ca5ad386b0..1da26c5de5d 100644
--- a/srcpkgs/python-dkimpy/template
+++ b/srcpkgs/python-dkimpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dkimpy'
 pkgname=python-dkimpy
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="dkimpy-${version}"
 build_style=python-module

From 8560c730ee4396275d04f5b5649fc0b2a1a8819e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 166/873] python-dnspython: rebuild for Python 3.8.

---
 srcpkgs/python-dnspython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dnspython/template b/srcpkgs/python-dnspython/template
index 15d4d7a8a73..66d237e89ee 100644
--- a/srcpkgs/python-dnspython/template
+++ b/srcpkgs/python-dnspython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dnspython'
 pkgname=python-dnspython
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dnspython-${version}"
 build_style=python-module

From c723160d02d838faad8761fcdaa9cfaed2df756f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 167/873] python-docker: rebuild for Python 3.8.

---
 srcpkgs/python-docker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker/template b/srcpkgs/python-docker/template
index b3f8cb2076b..83265bbb606 100644
--- a/srcpkgs/python-docker/template
+++ b/srcpkgs/python-docker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker'
 pkgname=python-docker
 version=3.7.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-${version}"
 build_style=python-module

From 116d9592b10bcde7a5b2f78ed23e0c2e382394da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 168/873] python-docker-pycreds: rebuild for Python 3.8.

---
 srcpkgs/python-docker-pycreds/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker-pycreds/template b/srcpkgs/python-docker-pycreds/template
index c478ded9de6..2224be0d21d 100644
--- a/srcpkgs/python-docker-pycreds/template
+++ b/srcpkgs/python-docker-pycreds/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker-pycreds'
 pkgname=python-docker-pycreds
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-pycreds-${version}"
 build_style=python-module

From 339d2fc160bc67c015b61704b1ade0e15a729050 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 169/873] python-dockerpty: rebuild for Python 3.8.

---
 srcpkgs/python-dockerpty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dockerpty/template b/srcpkgs/python-dockerpty/template
index 78ba5bc3b09..4a0b3a7a33f 100644
--- a/srcpkgs/python-dockerpty/template
+++ b/srcpkgs/python-dockerpty/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dockerpty'
 pkgname=python-dockerpty
 version=0.4.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="dockerpty-${version}"
 build_style=python-module

From 9925e97e6e19313f6899b14640957a47c12c3c6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 170/873] python-docopt: rebuild for Python 3.8.

---
 srcpkgs/python-docopt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docopt/template b/srcpkgs/python-docopt/template
index 4b8661ed2e1..48e5f86c1e0 100644
--- a/srcpkgs/python-docopt/template
+++ b/srcpkgs/python-docopt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docopt'
 pkgname=python-docopt
 version=0.6.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="docopt-${version}"
 build_style=python-module

From b274270fc5a58198a59400d9c8eb825546cf64ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 171/873] python-docutils: rebuild for Python 3.8.

---
 srcpkgs/python-docutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docutils/template b/srcpkgs/python-docutils/template
index 62f080f416a..8fd21a7450b 100644
--- a/srcpkgs/python-docutils/template
+++ b/srcpkgs/python-docutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docutils'
 pkgname=python-docutils
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docutils-${version}"
 build_style=python-module

From 6db8d0a9fb5d7b1cd339f5102d86a29dda19f348 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 172/873] python-dogpile.cache: rebuild for Python 3.8.

---
 srcpkgs/python-dogpile.cache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index f6e106fb4e8..894c6f695bf 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dogpile.cache'
 pkgname=python-dogpile.cache
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dogpile.cache-${version}"
 build_style=python-module

From e603b2f5de239ac8c6e7b8322f560ed5249fe887 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 173/873] python-dominate: rebuild for Python 3.8.

---
 srcpkgs/python-dominate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dominate/template b/srcpkgs/python-dominate/template
index 14ec659bac8..6d6f2caa323 100644
--- a/srcpkgs/python-dominate/template
+++ b/srcpkgs/python-dominate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dominate'
 pkgname=python-dominate
 version=2.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dominate-${version}"
 build_style=python-module

From 2bd7c3e739559614758b25140591fa8bb623a73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 174/873] python-dulwich: rebuild for Python 3.8.

---
 srcpkgs/python-dulwich/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dulwich/template b/srcpkgs/python-dulwich/template
index 0bddda65069..7b8ac45011e 100644
--- a/srcpkgs/python-dulwich/template
+++ b/srcpkgs/python-dulwich/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dulwich'
 pkgname=python-dulwich
 version=0.19.13
-revision=1
+revision=2
 wrksrc="dulwich-${version}"
 build_style=python-module
 pycompile_module="dulwich"

From 9d0b79dad0746da7669be20a38791a7eff4a42dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 175/873] python3-easygui: rebuild for Python 3.8.

---
 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 c1ec4767ae9..a9a2f66d865 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="easygui-${version}"
 build_style=python3-module

From eaa3ee113511523004b2d78a2119becc627b2dcf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 176/873] python-ecdsa: rebuild for Python 3.8.

---
 srcpkgs/python-ecdsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ecdsa/template b/srcpkgs/python-ecdsa/template
index 5e0b217fa73..e6e7d58cd10 100644
--- a/srcpkgs/python-ecdsa/template
+++ b/srcpkgs/python-ecdsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ecdsa'
 pkgname=python-ecdsa
 version=0.13.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 5d7cb5b032b5814415f5b21646b09bceda211fd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 177/873] python-editor: rebuild for Python 3.8.

---
 srcpkgs/python-editor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-editor/template b/srcpkgs/python-editor/template
index 4b86afa6924..3594e407205 100644
--- a/srcpkgs/python-editor/template
+++ b/srcpkgs/python-editor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-editor'
 pkgname=python-editor
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="editor"

From 19c3e09b30ed3cf9c6ffee8cee652d54c672a599 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 178/873] python-efl: rebuild for Python 3.8.

---
 srcpkgs/python-efl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-efl/template b/srcpkgs/python-efl/template
index a49e7d35847..2096f6916da 100644
--- a/srcpkgs/python-efl/template
+++ b/srcpkgs/python-efl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-efl'
 pkgname=python-efl
 version=1.22.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="efl"
 hostmakedepends="pkg-config python-devel python3-devel"

From 82198e93fcca38bb8b5f4f754bcbd6fd7baf59da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 179/873] python3-eliot: rebuild for Python 3.8.

---
 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 15b05dd7331..8453789b688 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="eliot-${version}"
 build_style=python3-module

From bcfe6b0d9db4104d00cb6a16d6012f2258515d59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 180/873] python-empy: rebuild for Python 3.8.

---
 srcpkgs/python-empy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-empy/template b/srcpkgs/python-empy/template
index 97476250cf2..4668a9cc814 100644
--- a/srcpkgs/python-empy/template
+++ b/srcpkgs/python-empy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-empy'
 pkgname=python-empy
 version=3.3.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="empy-${version}"
 build_style=python-module

From 6a91fa7210bd83ced5963d69be69166cd7ad72e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 181/873] python-enchant: rebuild for Python 3.8.

---
 srcpkgs/python-enchant/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enchant/template b/srcpkgs/python-enchant/template
index a443877d821..e499957b47e 100644
--- a/srcpkgs/python-enchant/template
+++ b/srcpkgs/python-enchant/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enchant'
 pkgname=python-enchant
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python-module

From 6ec52886dc67e49d1440bf8d0d1fe8fab07df30a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 182/873] python-entrypoints: rebuild for Python 3.8.

---
 srcpkgs/python-entrypoints/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-entrypoints/template b/srcpkgs/python-entrypoints/template
index ebefb2d04dc..6070650f35d 100644
--- a/srcpkgs/python-entrypoints/template
+++ b/srcpkgs/python-entrypoints/template
@@ -1,7 +1,7 @@
 # Template file for 'python-entrypoints'
 pkgname=python-entrypoints
 version=0.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="entrypoints-${version}"
 build_style=python-module

From 612a78254c1f46db87994e41646495e245a3facf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 183/873] python-envdir: rebuild for Python 3.8.

---
 srcpkgs/python-envdir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-envdir/template b/srcpkgs/python-envdir/template
index 622fcee6b34..b8cccad60ac 100644
--- a/srcpkgs/python-envdir/template
+++ b/srcpkgs/python-envdir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-envdir'
 pkgname=python-envdir
 version=1.0.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 50f8488d9ea7d659590f7d09f42dd5b94e19152c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 184/873] python-enzyme: rebuild for Python 3.8.

---
 srcpkgs/python-enzyme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enzyme/template b/srcpkgs/python-enzyme/template
index 637c858195b..f28f40b0319 100644
--- a/srcpkgs/python-enzyme/template
+++ b/srcpkgs/python-enzyme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enzyme'
 pkgname=python-enzyme
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="enzyme-${version}"
 build_style=python-module

From 0927e611429f29f17290f1e10cf2c0b872d1feb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 185/873] python3-esprima: rebuild for Python 3.8.

---
 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 c3a564123de..aec8930a6bf 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=1
+revision=2
 wrksrc="esprima-${version}"
 build_style=python3-module
 pycompile_module="esprima"

From d10708d4fcebbbc7dccf424ca1a596b43ae8df59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 186/873] python-evdev: rebuild for Python 3.8.

---
 srcpkgs/python-evdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-evdev/template b/srcpkgs/python-evdev/template
index 3c1a5253513..cff10211628 100644
--- a/srcpkgs/python-evdev/template
+++ b/srcpkgs/python-evdev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-evdev'
 pkgname=python-evdev
 version=1.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="evdev"
 hostmakedepends="python-setuptools python3-setuptools"

From d4f74f5bad705da704a6773a834e3939d7700c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 187/873] python-ewmh: rebuild for Python 3.8.

---
 srcpkgs/python-ewmh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ewmh/template b/srcpkgs/python-ewmh/template
index be6d04316b0..a96490fb56d 100644
--- a/srcpkgs/python-ewmh/template
+++ b/srcpkgs/python-ewmh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ewmh'
 pkgname=python-ewmh
 version=0.1.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From afbcc47e23517b6d56ec485dc40f389c1af31701 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 188/873] python-exifread: rebuild for Python 3.8.

---
 srcpkgs/python-exifread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-exifread/template b/srcpkgs/python-exifread/template
index 853f885fff8..834aa7730ee 100644
--- a/srcpkgs/python-exifread/template
+++ b/srcpkgs/python-exifread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-exifread'
 pkgname=python-exifread
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="exif-py-${version}"
 build_style="python-module"

From d05fad06fa4306ef7f685f49a366fcc27e64a40c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 189/873] python-fasteners: rebuild for Python 3.8.

---
 srcpkgs/python-fasteners/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fasteners/template b/srcpkgs/python-fasteners/template
index 34ca4e0e9db..24d2ec0611f 100644
--- a/srcpkgs/python-fasteners/template
+++ b/srcpkgs/python-fasteners/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fasteners'
 pkgname=python-fasteners
 version=0.15
-revision=1
+revision=2
 archs=noarch
 wrksrc="fasteners-${version}"
 build_style=python-module

From 8c663b7a9f12675a94dea8c33eddeededd3c56bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 190/873] python-feedgenerator: rebuild for Python 3.8.

---
 srcpkgs/python-feedgenerator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedgenerator/template b/srcpkgs/python-feedgenerator/template
index 3e5abc4f433..bcffb6728aa 100644
--- a/srcpkgs/python-feedgenerator/template
+++ b/srcpkgs/python-feedgenerator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedgenerator'
 pkgname=python-feedgenerator
 version=1.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="feedgenerator-${version}"
 build_style=python-module

From ab9e5bccaa31f32d93549c21e47bc12c4e5ac181 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 191/873] python-feedparser: rebuild for Python 3.8.

---
 srcpkgs/python-feedparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedparser/template b/srcpkgs/python-feedparser/template
index c5c5e8783eb..94f0a58ec88 100644
--- a/srcpkgs/python-feedparser/template
+++ b/srcpkgs/python-feedparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedparser'
 pkgname=python-feedparser
 version=5.2.1
-revision=5
+revision=6
 archs=noarch
 wrksrc="feedparser-${version}"
 build_style=python-module

From 157719696415e499518e188417324c7d97359d36 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 192/873] python3-fido2: rebuild for Python 3.8.

---
 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 fafb4d61d56..fb737d68d20 100644
--- a/srcpkgs/python3-fido2/template
+++ b/srcpkgs/python3-fido2/template
@@ -2,7 +2,7 @@
 pkgname=python3-fido2
 _pkgname=fido2
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From cbab3fd166f79dc7d2659a802e1953c697f94a95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 193/873] python3-filelock: rebuild for Python 3.8.

---
 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 8e0bc8f1070..9105ff8689d 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.0.12
-revision=1
+revision=2
 wrksrc="filelock-${version}"
 build_style=python3-module
 pycompile_module="filelock.py"

From df9deb02719807bdcb49f7c41040cd8748efd6fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 194/873] python-filetype: rebuild for Python 3.8.

---
 srcpkgs/python-filetype/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-filetype/template b/srcpkgs/python-filetype/template
index 37896cff9d8..10b974794b5 100644
--- a/srcpkgs/python-filetype/template
+++ b/srcpkgs/python-filetype/template
@@ -1,7 +1,7 @@
 # Template file for 'python-filetype'
 pkgname=python-filetype
 version=1.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="filetype-${version}"
 build_style=python-module

From b71ed5528581f9bba57653ff2acb45edf6dcbd81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 195/873] python3-fishnet: rebuild for Python 3.8.

---
 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 9dde60cbb6c..6280ae8e966 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=1
+revision=2
 archs=noarch
 wrksrc="fishnet-${version}"
 build_style=python3-module

From 25bc415f7d96b99e98c97ab0abad6a531786f9e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 196/873] python-flaky: rebuild for Python 3.8.

---
 srcpkgs/python-flaky/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-flaky/template b/srcpkgs/python-flaky/template
index d5211c9cb60..e8e681421f7 100644
--- a/srcpkgs/python-flaky/template
+++ b/srcpkgs/python-flaky/template
@@ -1,7 +1,7 @@
 # Template file for 'python-flaky'
 pkgname=python-flaky
 version=3.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 6dfa18d602ed8d6414a040466c4e0eef4db1d0d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 197/873] python3-flexmock: rebuild for Python 3.8.

---
 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 0663ed5122d..8a7c9a2894d 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.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="flexmock-${version}"
 build_style=python3-module

From 8c90b86b18b06e68260df59166a7228f7af5e5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 198/873] python3-fonttools: rebuild for Python 3.8.

---
 srcpkgs/python3-fonttools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-fonttools/template b/srcpkgs/python3-fonttools/template
index 15cf36585fb..ccd4b66c5d8 100644
--- a/srcpkgs/python3-fonttools/template
+++ b/srcpkgs/python3-fonttools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-fonttools'
 pkgname=python3-fonttools
 version=4.0.2
-revision=1
+revision=2
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 pycompile_module="fonttools"

From 423903ec28541ea1cd89f97400529121dca5e065 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 199/873] python3-frozendict: rebuild for Python 3.8.

---
 srcpkgs/python3-frozendict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-frozendict/template b/srcpkgs/python3-frozendict/template
index d3b4dc91602..739000a887c 100644
--- a/srcpkgs/python3-frozendict/template
+++ b/srcpkgs/python3-frozendict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-frozendict'
 pkgname=python3-frozendict
 version=1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="frozendict-${version}"
 build_style=python3-module

From 0929953d079922e685a9b46372630d69c2c6776d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 200/873] python-fuse: rebuild for Python 3.8.

---
 srcpkgs/python-fuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fuse/template b/srcpkgs/python-fuse/template
index 6449cc36a02..2e99e9866d3 100644
--- a/srcpkgs/python-fuse/template
+++ b/srcpkgs/python-fuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fuse'
 pkgname=python-fuse
 version=0.3.1
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="fuseparts fuse.py"
 hostmakedepends="pkg-config python-setuptools python3-setuptools"

From 505bca67544c8cca26d3f7675eb746bb98abf44e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 201/873] python-future: rebuild for Python 3.8.

---
 srcpkgs/python-future/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-future/template b/srcpkgs/python-future/template
index 1844be2efbc..6cd53908823 100644
--- a/srcpkgs/python-future/template
+++ b/srcpkgs/python-future/template
@@ -1,7 +1,7 @@
 # Template file for 'python-future'
 pkgname=python-future
 version=0.17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="future-${version}"
 build_style=python-module

From 4b595c01c8dcf28a72cf0a96960609ab9788b6ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 202/873] python3-geojson: rebuild for Python 3.8.

---
 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 6bcd0c3092e..90e7d5a0e60 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=1
+revision=2
 archs=noarch
 wrksrc="geojson-${version}"
 build_style=python3-module

From 5e44d64f54a2983f4d5fefba49ef65a6803bd024 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 203/873] python-gevent: rebuild for Python 3.8.

---
 srcpkgs/python-gevent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gevent/template b/srcpkgs/python-gevent/template
index 2bbabee00fc..35c76146d56 100644
--- a/srcpkgs/python-gevent/template
+++ b/srcpkgs/python-gevent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gevent'
 pkgname=python-gevent
 version=1.4.0
-revision=1
+revision=2
 wrksrc="gevent-${version}"
 build_style=python-module
 pycompile_module="gevent"

From 5fed10c6460512a1f1391f079ed47645f9df532e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 204/873] python3-gitchangelog: rebuild for Python 3.8.

---
 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 ed381e07d78..cc1945f2623 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=1
+revision=2
 archs=noarch
 wrksrc="gitchangelog-${version}"
 build_style=python3-module

From b52557ed164619919a05cdf8fae5e77e5b4f53db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 205/873] python-gitdb: rebuild for Python 3.8.

---
 srcpkgs/python-gitdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitdb/template b/srcpkgs/python-gitdb/template
index d9e624b9f53..253ddaa07bd 100644
--- a/srcpkgs/python-gitdb/template
+++ b/srcpkgs/python-gitdb/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitdb'
 pkgname=python-gitdb
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="gitdb2-${version}"
 build_style=python-module

From 53365dcec4eb25138ea4bb248d57c1b2aa7aa311 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 206/873] python-github3: rebuild for Python 3.8.

---
 srcpkgs/python-github3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-github3/template b/srcpkgs/python-github3/template
index 2cb71368f3d..425fe1b7362 100644
--- a/srcpkgs/python-github3/template
+++ b/srcpkgs/python-github3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-github3'
 pkgname=python-github3
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="github3.py-${version}"
 build_style=python-module

From 2b4c90de9a0cbcbb5902a9407f229864bd81a7f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 207/873] python-gitlab: rebuild for Python 3.8.

---
 srcpkgs/python-gitlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitlab/template b/srcpkgs/python-gitlab/template
index 7db583b54c4..0f71b4c7153 100644
--- a/srcpkgs/python-gitlab/template
+++ b/srcpkgs/python-gitlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitlab'
 pkgname=python-gitlab
 version=1.12.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gitlab"

From 51613301779bb891e87daba6b634dca18654d29f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 208/873] python-gmpy2: rebuild for Python 3.8.

---
 srcpkgs/python-gmpy2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gmpy2/template b/srcpkgs/python-gmpy2/template
index c41a9f4595b..74e9b583288 100644
--- a/srcpkgs/python-gmpy2/template
+++ b/srcpkgs/python-gmpy2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gmpy2'
 pkgname=python-gmpy2
 version=2.0.8
-revision=5
+revision=6
 wrksrc="gmpy2-${version}"
 build_style=python-module
 hostmakedepends="unzip python-setuptools python3-setuptools

From a6f4b9ed74b787b741e6297520186bd60de2b46e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 209/873] python-gntp: rebuild for Python 3.8.

---
 srcpkgs/python-gntp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gntp/template b/srcpkgs/python-gntp/template
index 14bd36518f8..7b3bb5a7bb7 100644
--- a/srcpkgs/python-gntp/template
+++ b/srcpkgs/python-gntp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gntp'
 pkgname=python-gntp
 version=1.0.3
-revision=4
+revision=5
 archs=noarch
 wrksrc="gntp-${version}"
 build_style=python-module

From 0730dc20e341ef5247184f85a47f2d1200750698 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 210/873] python-gnupg: rebuild for Python 3.8.

---
 srcpkgs/python-gnupg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gnupg/template b/srcpkgs/python-gnupg/template
index ae6f49c7e27..24c0943d1e4 100644
--- a/srcpkgs/python-gnupg/template
+++ b/srcpkgs/python-gnupg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gnupg'
 pkgname=python-gnupg
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gnupg.py"

From 2c78f38b921da1d4ac2ddf5c200a378cadd75590 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 211/873] python3-gobject: rebuild for Python 3.8.

---
 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 242d33ed3ac..8713ddf5334 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.32.2
-revision=1
+revision=2
 wrksrc="pygobject-${version}"
 build_style=meson
 build_helper="gir"

From 15ed888e45d37128f9852cfc492a14182186f1a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 212/873] python-gogs-client: rebuild for Python 3.8.

---
 srcpkgs/python-gogs-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gogs-client/template b/srcpkgs/python-gogs-client/template
index e8189bc8805..027135d430c 100644
--- a/srcpkgs/python-gogs-client/template
+++ b/srcpkgs/python-gogs-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gogs-client'
 pkgname=python-gogs-client
 version=1.0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="gogs_client-${version}"
 build_style=python-module

From 1ce661eb8f15d8e6d56a3f1e197897c332fa224e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 213/873] python-google-api-python-client: rebuild for Python
 3.8.

---
 srcpkgs/python-google-api-python-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-api-python-client/template b/srcpkgs/python-google-api-python-client/template
index 273cd0722b8..69c2d4e96eb 100644
--- a/srcpkgs/python-google-api-python-client/template
+++ b/srcpkgs/python-google-api-python-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-api-python-client'
 pkgname=python-google-api-python-client
 version=1.7.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From abc55893b0e34778f73646713ec111220a9cafbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 214/873] python-google-auth: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth/template b/srcpkgs/python-google-auth/template
index 708fe08325a..1de6800e3d2 100644
--- a/srcpkgs/python-google-auth/template
+++ b/srcpkgs/python-google-auth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth'
 pkgname=python-google-auth
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 345385c7c36d4b9e58aad80d36b1cd93575ecd95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 215/873] python-google-auth-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth-httplib2/template b/srcpkgs/python-google-auth-httplib2/template
index 9a7fd093ce5..9e43bc92292 100644
--- a/srcpkgs/python-google-auth-httplib2/template
+++ b/srcpkgs/python-google-auth-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth-httplib2'
 pkgname=python-google-auth-httplib2
 version=0.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 659bb740f4ecc98b01dc400608f6b524416a0b86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 216/873] python-gpg: rebuild for Python 3.8.

---
 srcpkgs/python-gpg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gpg/template b/srcpkgs/python-gpg/template
index 4ef85846b42..a17a0324af8 100644
--- a/srcpkgs/python-gpg/template
+++ b/srcpkgs/python-gpg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gpg'
 pkgname=python-gpg
 version=1.10.0
-revision=3
+revision=4
 wrksrc="gpg-${version}"
 build_style=python-module
 hostmakedepends="swig gpgme-devel python-devel python3-devel"

From 873dc5b9b60d819c83e9d76fd366d7e22b1e3bc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 217/873] python-grako: rebuild for Python 3.8.

---
 srcpkgs/python-grako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-grako/template b/srcpkgs/python-grako/template
index cc02973b31e..2b401732735 100644
--- a/srcpkgs/python-grako/template
+++ b/srcpkgs/python-grako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-grako'
 pkgname=python-grako
 version=3.99.9
-revision=3
+revision=4
 wrksrc="neogeny-${pkgname/python-/}-275d3c4fe4ac"
 build_style=python-module
 pycompile_module="grako"

From d47059d2656db0b58c65856428cabac0432d40b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 218/873] python-graphviz: rebuild for Python 3.8.

---
 srcpkgs/python-graphviz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-graphviz/template b/srcpkgs/python-graphviz/template
index 521f2e81213..e3d487a2db7 100644
--- a/srcpkgs/python-graphviz/template
+++ b/srcpkgs/python-graphviz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-graphviz'
 pkgname=python-graphviz
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 604137947acf2b7cd302f3f32e778c96a0f521f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 219/873] python-greenlet: rebuild for Python 3.8.

---
 srcpkgs/python-greenlet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-greenlet/template b/srcpkgs/python-greenlet/template
index d1e63ac7adb..b540e9a286b 100644
--- a/srcpkgs/python-greenlet/template
+++ b/srcpkgs/python-greenlet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-greenlet'
 pkgname=python-greenlet
 version=0.4.15
-revision=2
+revision=3
 wrksrc="greenlet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From c75b3ed338515fef098deb3e5b0d7a6afb7e4027 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 220/873] python-guessit: rebuild for Python 3.8.

---
 srcpkgs/python-guessit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-guessit/template b/srcpkgs/python-guessit/template
index 5029048a041..a962f14522f 100644
--- a/srcpkgs/python-guessit/template
+++ b/srcpkgs/python-guessit/template
@@ -1,7 +1,7 @@
 # Template file for 'python-guessit'
 pkgname=python-guessit
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="guessit-${version}"
 build_style=python-module

From be7acc08bc4f5ffb222fcebc23a391553273ece1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 221/873] python-h11: rebuild for Python 3.8.

---
 srcpkgs/python-h11/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-h11/template b/srcpkgs/python-h11/template
index 88040dfadec..b2e007533a7 100644
--- a/srcpkgs/python-h11/template
+++ b/srcpkgs/python-h11/template
@@ -1,7 +1,7 @@
 # Template file for 'python-h11'
 pkgname=python-h11
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=h11-${version}
 build_style=python-module

From bdf55bd416f8bc2ed44be6c4c54d162c18a8ea97 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 222/873] python-habanero: rebuild for Python 3.8.

---
 srcpkgs/python-habanero/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-habanero/template b/srcpkgs/python-habanero/template
index 86d66befc3d..a914f21ecb7 100644
--- a/srcpkgs/python-habanero/template
+++ b/srcpkgs/python-habanero/template
@@ -1,7 +1,7 @@
 # Template file for 'python-habanero'
 pkgname=python-habanero
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="habanero-${version}"
 build_style=python-module

From 9c07301e6c8b8cbc8282f2c49eee7ea5572650fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 223/873] python3-hawkauthlib: rebuild for Python 3.8.

---
 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 fd7f1405790..1456fa7d814 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=2
+revision=3
 archs=noarch
 wrksrc="hawkauthlib-${version}"
 build_style=python3-module

From 66941ef99dc3f45dea432a38889d9aedcbc58e8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 224/873] python-hiredis: rebuild for Python 3.8.

---
 srcpkgs/python-hiredis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hiredis/template b/srcpkgs/python-hiredis/template
index 23694ae92d7..82a97d5eaf3 100644
--- a/srcpkgs/python-hiredis/template
+++ b/srcpkgs/python-hiredis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hiredis'
 pkgname=python-hiredis
 version=0.2.0
-revision=4
+revision=5
 wrksrc="hiredis-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 335237d6c8ffbf9d850fddc0047cb4ea28057efd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 225/873] python3-hkdf: rebuild for Python 3.8.

---
 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 fabc91ee974..0faaf05b5fe 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=1
+revision=2
 archs=noarch
 wrksrc="hkdf-${version}"
 build_style=python3-module

From fa28e1e2a5b4f298ee9762f0f595a5b1b16db0c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 226/873] python-hoedown: rebuild for Python 3.8.

---
 srcpkgs/python-hoedown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hoedown/template b/srcpkgs/python-hoedown/template
index a964fbbb709..4b82aba9afc 100644
--- a/srcpkgs/python-hoedown/template
+++ b/srcpkgs/python-hoedown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hoedown'
 pkgname=python-hoedown
 version=0.3.0
-revision=2
+revision=3
 wrksrc="hoedown-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 1b9ab7e23ce8f84563cdaac18cbe35d6b5b377eb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 227/873] python-hpack: rebuild for Python 3.8.

---
 srcpkgs/python-hpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hpack/template b/srcpkgs/python-hpack/template
index c69e91daa0e..ffbac313103 100644
--- a/srcpkgs/python-hpack/template
+++ b/srcpkgs/python-hpack/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hpack'
 pkgname=python-hpack
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hpack-${version}
 build_style=python-module

From b6095882129bc28d1a3eec0f996353011126ed10 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 228/873] python3-html2text: rebuild for Python 3.8.

---
 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 006f2a127ad..c74e236a053 100644
--- a/srcpkgs/python3-html2text/template
+++ b/srcpkgs/python3-html2text/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-html2text'
 pkgname=python3-html2text
 version=2019.9.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module

From 78741dc5f018f23c93acabc2cdd16c97d5e08012 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 229/873] python-html5-parser: rebuild for Python 3.8.

---
 srcpkgs/python-html5-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5-parser/template b/srcpkgs/python-html5-parser/template
index 130c5037e57..41bbd0ea157 100644
--- a/srcpkgs/python-html5-parser/template
+++ b/srcpkgs/python-html5-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5-parser'
 pkgname=python-html5-parser
 version=0.4.8
-revision=1
+revision=2
 wrksrc="html5-parser-${version}"
 build_style=python-module
 pycompile_module="html5_parser"

From f69efbb44a9aa15f6b7468ff70a20786ec1a04d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 230/873] python-html5lib: rebuild for Python 3.8.

---
 srcpkgs/python-html5lib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5lib/template b/srcpkgs/python-html5lib/template
index 81e683f7bcf..2565de64fd2 100644
--- a/srcpkgs/python-html5lib/template
+++ b/srcpkgs/python-html5lib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5lib'
 pkgname=python-html5lib
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="html5lib-${version}"
 build_style=python-module

From 6bd979521876c876eea2022ebe023cdbb30777c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 231/873] python-httmock: rebuild for Python 3.8.

---
 srcpkgs/python-httmock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httmock/template b/srcpkgs/python-httmock/template
index 61a60126936..e798b4fc1b3 100644
--- a/srcpkgs/python-httmock/template
+++ b/srcpkgs/python-httmock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httmock'
 pkgname=python-httmock
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="httmock-${version}"
 build_style=python-module

From 7f5b2e5c5738ca5824c255406195ff59f30f2c80 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 232/873] python-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httplib2/template b/srcpkgs/python-httplib2/template
index edcb6abf0c1..fe76a729328 100644
--- a/srcpkgs/python-httplib2/template
+++ b/srcpkgs/python-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httplib2'
 pkgname=python-httplib2
 version=0.13.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="httplib2-${version}"
 build_style=python-module

From 9bd4d3d3c99054f61ceb650933dcd9c5740d5ff0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 233/873] python3-humanize: rebuild for Python 3.8.

---
 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 c82c20fb0f2..d1011fb92e9 100644
--- a/srcpkgs/python3-humanize/template
+++ b/srcpkgs/python3-humanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-humanize'
 pkgname=python3-humanize
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="humanize-${version}"
 build_style=python3-module

From ead6f9504cd4015bc13944d58d676ef457b0fb34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 234/873] python-hyper-h2: rebuild for Python 3.8.

---
 srcpkgs/python-hyper-h2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyper-h2/template b/srcpkgs/python-hyper-h2/template
index 5dcf7ed1c4d..9e5eee3b69b 100644
--- a/srcpkgs/python-hyper-h2/template
+++ b/srcpkgs/python-hyper-h2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyper-h2'
 pkgname=python-hyper-h2
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyper-h2-${version}"
 build_style=python-module

From 8ac54f95c067c3f715c23a58d7f2b6d0683988cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 235/873] python-hyperframe: rebuild for Python 3.8.

---
 srcpkgs/python-hyperframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyperframe/template b/srcpkgs/python-hyperframe/template
index e4cea346f7e..6b544c2061c 100644
--- a/srcpkgs/python-hyperframe/template
+++ b/srcpkgs/python-hyperframe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperframe'
 pkgname=python-hyperframe
 version=5.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hyperframe-${version}
 build_style=python-module

From cb929edb0d026e58d2d6c7e6f9baeee9fedf523e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 236/873] python-hyperlink: rebuild for Python 3.8.

---
 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 1cc7aa0670a..945bf72ee59 100644
--- a/srcpkgs/python-hyperlink/template
+++ b/srcpkgs/python-hyperlink/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperlink'
 pkgname=python-hyperlink
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyperlink-${version}"
 build_style=python-module

From da7a9015ccf93b07d390988b03b1403702cfa14a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 237/873] python-hypothesis: rebuild for Python 3.8.

---
 srcpkgs/python-hypothesis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hypothesis/template b/srcpkgs/python-hypothesis/template
index f3eb931e410..de55593fc02 100644
--- a/srcpkgs/python-hypothesis/template
+++ b/srcpkgs/python-hypothesis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hypothesis'
 pkgname=python-hypothesis
 version=4.38.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="hypothesis-hypothesis-python-${version}"
 build_wrksrc=hypothesis-python

From f091030376534d6a6f7c625b82a8405350e7cdcd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 238/873] python-icalendar: rebuild for Python 3.8.

---
 srcpkgs/python-icalendar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-icalendar/template b/srcpkgs/python-icalendar/template
index b2129648ea6..be45f2d608d 100644
--- a/srcpkgs/python-icalendar/template
+++ b/srcpkgs/python-icalendar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-icalendar'
 pkgname=python-icalendar
 version=4.0.3
-revision=1
+revision=2
 wrksrc="icalendar-${version}"
 archs=noarch
 build_style=python-module

From 474626af886f96ef30849e5aca015775f7edfb8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 239/873] icdiff: rebuild for Python 3.8.

---
 srcpkgs/icdiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template
index 31cfc3e2354..396448b86f4 100644
--- a/srcpkgs/icdiff/template
+++ b/srcpkgs/icdiff/template
@@ -1,7 +1,7 @@
 # Template file for 'icdiff'
 pkgname=icdiff
 version=1.9.5
-revision=1
+revision=2
 wrksrc="${pkgname}-release-${version}"
 archs=noarch
 build_style=python-module

From 21e5ba4fadd590c9e0dd7afde206429c99c46c56 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 240/873] python-idna: rebuild for Python 3.8.

---
 srcpkgs/python-idna/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-idna/template b/srcpkgs/python-idna/template
index 4c6baefd41b..446a04da7d7 100644
--- a/srcpkgs/python-idna/template
+++ b/srcpkgs/python-idna/template
@@ -1,7 +1,7 @@
 # Template file for 'python-idna'
 pkgname=python-idna
 version=2.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-${version}"
 build_style=python-module

From a012eff0de75e8caab0be24964731b749fe6ad8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 241/873] python3-idna-ssl: rebuild for Python 3.8.

---
 srcpkgs/python3-idna-ssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-idna-ssl/template b/srcpkgs/python3-idna-ssl/template
index df953f4d0d9..0608fb7278c 100644
--- a/srcpkgs/python3-idna-ssl/template
+++ b/srcpkgs/python3-idna-ssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-idna-ssl'
 pkgname=python3-idna-ssl
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-ssl-${version}"
 build_style=python3-module

From ac112b7dfc3aadb93225736a4504f7965af29838 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 242/873] python3-ifaddr: rebuild for Python 3.8.

---
 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 37bc2bbaf73..683d76662a3 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ifaddr-${version}"
 build_style=python3-module

From 32d0218ef7a7a721759e4c421d70255f49b3cfd0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 243/873] python-imagesize: rebuild for Python 3.8.

---
 srcpkgs/python-imagesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-imagesize/template b/srcpkgs/python-imagesize/template
index ee231eb9f24..f64c86812b5 100644
--- a/srcpkgs/python-imagesize/template
+++ b/srcpkgs/python-imagesize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-imagesize'
 pkgname=python-imagesize
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="imagesize-${version}"
 build_style=python-module

From f0bf351c50949a7348409d8c132926c401dabf43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 244/873] python3-importlib_metadata: rebuild for Python 3.8.

---
 srcpkgs/python3-importlib_metadata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-importlib_metadata/template b/srcpkgs/python3-importlib_metadata/template
index 9acbe968e10..f88e9d9b780 100644
--- a/srcpkgs/python3-importlib_metadata/template
+++ b/srcpkgs/python3-importlib_metadata/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-importlib_metadata'
 pkgname=python3-importlib_metadata
 version=0.23
-revision=1
+revision=2
 archs=noarch
 wrksrc="importlib_metadata-${version}"
 build_style=python3-module

From 73cc1c05e8e0ccf9063a33dd203d70df2ab135ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 245/873] python-incremental: rebuild for Python 3.8.

---
 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 a1c07042365..70477e26866 100644
--- a/srcpkgs/python-incremental/template
+++ b/srcpkgs/python-incremental/template
@@ -1,7 +1,7 @@
 # Template file for 'python-incremental'
 pkgname=python-incremental
 version=17.5.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="incremental-${version}"
 build_style=python-module

From 82a10b837fff5c5ce2f37ede93dad161025a109c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 246/873] python-inotify: rebuild for Python 3.8.

---
 srcpkgs/python-inotify/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-inotify/template b/srcpkgs/python-inotify/template
index f8e26bcc415..64e48fd9330 100644
--- a/srcpkgs/python-inotify/template
+++ b/srcpkgs/python-inotify/template
@@ -1,7 +1,7 @@
 # Template file for 'python-inotify'
 pkgname=python-inotify
 version=0.9.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="pyinotify-${version}"
 build_style=python-module

From 70f558982c4846e9de5243694f048c7014c7089a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 247/873] python-iptools: rebuild for Python 3.8.

---
 srcpkgs/python-iptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iptools/template b/srcpkgs/python-iptools/template
index 599a85ccdba..3c53013fb9d 100644
--- a/srcpkgs/python-iptools/template
+++ b/srcpkgs/python-iptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iptools'
 pkgname=python-iptools
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9962727fd608ce59af5a55c73c8b4c3d0c17fe71 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 248/873] python3-ipython: rebuild for Python 3.8.

---
 srcpkgs/python3-ipython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template
index 63242f382db..2c08bad1e41 100644
--- a/srcpkgs/python3-ipython/template
+++ b/srcpkgs/python3-ipython/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-ipython'
 pkgname=python3-ipython
 version=7.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipython-${version}"
 build_style=python3-module

From ecafa2b5530001ac56b03e639dff4ae00027d1ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 249/873] python-ipython_genutils: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_genutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_genutils/template b/srcpkgs/python-ipython_genutils/template
index 9af9604ca00..d46a3b0b716 100644
--- a/srcpkgs/python-ipython_genutils/template
+++ b/srcpkgs/python-ipython_genutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_genutils'
 pkgname=python-ipython_genutils
 version=0.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="ipython_genutils-${version}"
 build_style=python-module

From 1349d0a55b00bc5b30629934ad23ae1ed8839d98 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 250/873] python-ipython_ipykernel: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_ipykernel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_ipykernel/template b/srcpkgs/python-ipython_ipykernel/template
index 5ddc333798a..ca17b58c006 100644
--- a/srcpkgs/python-ipython_ipykernel/template
+++ b/srcpkgs/python-ipython_ipykernel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_ipykernel'
 pkgname=python-ipython_ipykernel
 version=4.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipykernel-${version}"
 build_style=python-module

From 1b146320a422b57ba1db41491ccff040d9ee719d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 251/873] python3-irc: rebuild for Python 3.8.

---
 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 eea3a629128..714c11dc943 100644
--- a/srcpkgs/python3-irc/template
+++ b/srcpkgs/python3-irc/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-irc'
 pkgname=python3-irc
 version=17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="irc-${version}"
 build_style=python3-module

From e04c4f250fda964ab555eb6b636f701d995009e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 252/873] python-isbnlib: rebuild for Python 3.8.

---
 srcpkgs/python-isbnlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isbnlib/template b/srcpkgs/python-isbnlib/template
index 3e2f66c6b66..1cc46a060d6 100644
--- a/srcpkgs/python-isbnlib/template
+++ b/srcpkgs/python-isbnlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isbnlib'
 pkgname=python-isbnlib
 version=3.9.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="isbnlib-${version}"
 build_style=python-module

From 2debe6131c52d94acd065961f9ea9ae22176a34c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 253/873] python-iso-8601: rebuild for Python 3.8.

---
 srcpkgs/python-iso-8601/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iso-8601/template b/srcpkgs/python-iso-8601/template
index a483e55b0bd..a841866d439 100644
--- a/srcpkgs/python-iso-8601/template
+++ b/srcpkgs/python-iso-8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iso-8601'
 pkgname=python-iso-8601
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="iso-8601-${version}"
 build_style=python-module

From 8b4be7b5324ac1347d55cc4f4e9eaa552465beec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 254/873] python-isodate: rebuild for Python 3.8.

---
 srcpkgs/python-isodate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isodate/template b/srcpkgs/python-isodate/template
index b2a7eb46591..74e4e813e64 100644
--- a/srcpkgs/python-isodate/template
+++ b/srcpkgs/python-isodate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isodate'
 pkgname=python-isodate
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="isodate-${version}"
 build_style=python-module

From a9c9e144908d37411616dd357e9fdc7575aaa8c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 255/873] python-isort: rebuild for Python 3.8.

---
 srcpkgs/python-isort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isort/template b/srcpkgs/python-isort/template
index df7fcfbf2d2..cd8e43b69ea 100644
--- a/srcpkgs/python-isort/template
+++ b/srcpkgs/python-isort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isort'
 pkgname=python-isort
 version=4.3.21
-revision=1
+revision=2
 archs=noarch
 wrksrc="isort-${version}"
 build_style=python-module

From a81f38d5db390cc4ae2c6be89747bebd3f1f15dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 256/873] python-itsdangerous: rebuild for Python 3.8.

---
 srcpkgs/python-itsdangerous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-itsdangerous/template b/srcpkgs/python-itsdangerous/template
index d1d9234df88..6e6fe5dcb2b 100644
--- a/srcpkgs/python-itsdangerous/template
+++ b/srcpkgs/python-itsdangerous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-itsdangerous'
 pkgname=python-itsdangerous
 version=0.24
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 2d842da30a2a65a2405487fdd5929ca2a0555251 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 257/873] python-iwlib: rebuild for Python 3.8.

---
 srcpkgs/python-iwlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iwlib/template b/srcpkgs/python-iwlib/template
index 2c58d4c8d29..2f4149b4e92 100644
--- a/srcpkgs/python-iwlib/template
+++ b/srcpkgs/python-iwlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iwlib'
 pkgname=python-iwlib
 version=1.6.2
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="iwlib"

From c09cc84b06cf4332a02b0a826494a74c81409175 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 258/873] python-jedi: rebuild for Python 3.8.

---
 srcpkgs/python-jedi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jedi/template b/srcpkgs/python-jedi/template
index 136e6adbea4..a994f0e2861 100644
--- a/srcpkgs/python-jedi/template
+++ b/srcpkgs/python-jedi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jedi'
 pkgname=python-jedi
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 _parsover=0.5.0
 wrksrc="jedi-${version}"

From 235b9031c126ebf53355a5ef0c337423c0df1d95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 259/873] python3-jeepney: rebuild for Python 3.8.

---
 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 2ae308a6fc6..9c5c007aa17 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.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="jeepney-${version}"
 build_style=python3-module

From 4868c0871bc763937dd6b8573e91ee86064e0595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 260/873] python3-jellyfish: rebuild for Python 3.8.

---
 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 dec74539e3f..5d0a614c397 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.7.2
-revision=1
+revision=2
 wrksrc="jellyfish-${version}"
 build_style=python3-module
 pycompile_module="jellyfish"

From a9c225f19782a27d8e5e28a508ea0acc39991390 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 261/873] python-jmespath: rebuild for Python 3.8.

---
 srcpkgs/python-jmespath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jmespath/template b/srcpkgs/python-jmespath/template
index 47508a3a0c2..220f1a33c07 100644
--- a/srcpkgs/python-jmespath/template
+++ b/srcpkgs/python-jmespath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jmespath'
 pkgname=python-jmespath
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jmespath.py-${version}"
 build_style=python-module

From 30e8e2e1619bdf45652db8c6ecdd0e0a4fc90d8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 262/873] python3-josepy: rebuild for Python 3.8.

---
 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 6d6e4547d38..903bd7028ed 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="josepy-${version}"
 build_style=python3-module

From c06d36cf857257f3cf63a7e677498487d37168d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 263/873] python-jsonpointer: rebuild for Python 3.8.

---
 srcpkgs/python-jsonpointer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonpointer/template b/srcpkgs/python-jsonpointer/template
index ed865fbfcba..fd103d123aa 100644
--- a/srcpkgs/python-jsonpointer/template
+++ b/srcpkgs/python-jsonpointer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonpointer'
 pkgname=python-jsonpointer
 version=2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonpointer-${version}"
 build_style=python-module

From be483d0bbf53a22e23a3c2db3d77dc61bff17915 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 264/873] python-jsonrpclib: rebuild for Python 3.8.

---
 srcpkgs/python-jsonrpclib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonrpclib/template b/srcpkgs/python-jsonrpclib/template
index 7253607fe57..a245168a824 100644
--- a/srcpkgs/python-jsonrpclib/template
+++ b/srcpkgs/python-jsonrpclib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonrpclib'
 pkgname=python-jsonrpclib
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonrpclib-pelix-${version}"
 build_style=python-module

From 15ad75adf989474229acc1fdac0c5d5887528bd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 265/873] python-jsonschema: rebuild for Python 3.8.

---
 srcpkgs/python-jsonschema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonschema/template b/srcpkgs/python-jsonschema/template
index 63c30ce6863..326b5609d36 100644
--- a/srcpkgs/python-jsonschema/template
+++ b/srcpkgs/python-jsonschema/template
@@ -2,7 +2,7 @@
 pkgname=python-jsonschema
 reverts="3.0.2_1"
 version=2.6.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="jsonschema-${version}"
 build_style=python-module

From 8bf3797435c040a1682d5e3e4c6c41f650d82b34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 266/873] python-jupyter_client: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_client/template b/srcpkgs/python-jupyter_client/template
index ab5cd0c5b3c..6365dd9e175 100644
--- a/srcpkgs/python-jupyter_client/template
+++ b/srcpkgs/python-jupyter_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_client'
 pkgname=python-jupyter_client
 version=5.2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_client-${version}"
 build_style=python-module

From e732ed651c399cb8d7e96a618444e815bf86ce4b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 267/873] python3-jupyter_console: rebuild for Python 3.8.

---
 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 25b2eda4c2f..3837e5b3bbf 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_console-${version}"
 build_style=python3-module

From b264bc5200c6942b1507777e0bc169838cb6a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 268/873] python-jupyter_core: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_core/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_core/template b/srcpkgs/python-jupyter_core/template
index fcce4e0fe0b..f1629208e86 100644
--- a/srcpkgs/python-jupyter_core/template
+++ b/srcpkgs/python-jupyter_core/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_core'
 pkgname=python-jupyter_core
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_core-${version}"
 build_style=python-module

From 54845c515258535f8793ff37241d0daad10fcddc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 269/873] python-jupyter_ipywidgets: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_ipywidgets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_ipywidgets/template b/srcpkgs/python-jupyter_ipywidgets/template
index 3d511a25152..44570cf390a 100644
--- a/srcpkgs/python-jupyter_ipywidgets/template
+++ b/srcpkgs/python-jupyter_ipywidgets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_ipywidgets'
 pkgname=python-jupyter_ipywidgets
 version=7.4.2
-revision=1
+revision=2
 archs=noarch
 _widgetsnbextver=3.4.0
 wrksrc="ipywidgets-${version}"

From da9dc8f246174d7b5fed1a61f1b4bb127c2bc9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 270/873] python-jupyter_nbconvert: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbconvert/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbconvert/template b/srcpkgs/python-jupyter_nbconvert/template
index 57ac5cce23f..e6cdad7d21c 100644
--- a/srcpkgs/python-jupyter_nbconvert/template
+++ b/srcpkgs/python-jupyter_nbconvert/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbconvert'
 pkgname=python-jupyter_nbconvert
 version=5.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="nbconvert-${version}"
 build_style=python-module

From 8e126f65404eaa5a5b69bca1aa41b4be58abe4b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 271/873] python-jupyter_nbformat: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbformat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbformat/template b/srcpkgs/python-jupyter_nbformat/template
index 11098fd3f90..e2addc8866f 100644
--- a/srcpkgs/python-jupyter_nbformat/template
+++ b/srcpkgs/python-jupyter_nbformat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbformat'
 pkgname=python-jupyter_nbformat
 version=4.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="nbformat-${version}"
 build_style=python-module

From 3d7a11f09a2f159b9e42c935154654a47117f3a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 272/873] python-jupyter_notebook: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_notebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_notebook/template b/srcpkgs/python-jupyter_notebook/template
index c3f478c1fb4..4f6de0f642d 100644
--- a/srcpkgs/python-jupyter_notebook/template
+++ b/srcpkgs/python-jupyter_notebook/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_notebook'
 pkgname=python-jupyter_notebook
 version=5.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="notebook-${version}"
 build_style=python-module

From eab8a5bd67b168048f40a3d2fe199e073715a1b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 273/873] python-jupyter_qtconsole: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_qtconsole/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_qtconsole/template b/srcpkgs/python-jupyter_qtconsole/template
index f8f85534bbd..ea7f89a62af 100644
--- a/srcpkgs/python-jupyter_qtconsole/template
+++ b/srcpkgs/python-jupyter_qtconsole/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_qtconsole'
 pkgname=python-jupyter_qtconsole
 version=4.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="qtconsole-${version}"
 build_style=python-module

From 96c7c1f6f484f9a33a17b0213142b8a97a7c69e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 274/873] python-jupyter_widgetsnbextension: rebuild for Python
 3.8.

---
 srcpkgs/python-jupyter_widgetsnbextension/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_widgetsnbextension/template b/srcpkgs/python-jupyter_widgetsnbextension/template
index dacd88ccb4f..05e9c0d00a3 100644
--- a/srcpkgs/python-jupyter_widgetsnbextension/template
+++ b/srcpkgs/python-jupyter_widgetsnbextension/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_widgetsnbextension'
 pkgname=python-jupyter_widgetsnbextension
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="widgetsnbextension-${version}"
 build_style=python-module

From 6175c117f039e76b8fff45d549f50360a92742b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 275/873] python-kaptan: rebuild for Python 3.8.

---
 srcpkgs/python-kaptan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kaptan/template b/srcpkgs/python-kaptan/template
index 649eeec8568..6668b240008 100644
--- a/srcpkgs/python-kaptan/template
+++ b/srcpkgs/python-kaptan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kaptan'
 pkgname=python-kaptan
 version=0.5.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="kaptan-${version}"
 build_style=python-module

From 6668dcf37c32ef8390c8f45e6cd206d8478b963b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 276/873] python-keepalive: rebuild for Python 3.8.

---
 srcpkgs/python-keepalive/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keepalive/template b/srcpkgs/python-keepalive/template
index deb95a07236..50e1d7e6e78 100644
--- a/srcpkgs/python-keepalive/template
+++ b/srcpkgs/python-keepalive/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keepalive'
 pkgname=python-keepalive
 version=0.5
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9e9d4a781427bc1296f59529a4d83b4a1271c5e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 277/873] python-keyring: rebuild for Python 3.8.

---
 srcpkgs/python-keyring/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyring/template b/srcpkgs/python-keyring/template
index df1c21ee1be..2a87160b04d 100644
--- a/srcpkgs/python-keyring/template
+++ b/srcpkgs/python-keyring/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyring'
 pkgname=python-keyring
 version=18.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyring-${version}"
 build_style=python-module

From 8fea0f10f3e8aebfe92a9d090368b1cda777a405 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 278/873] python3-keyrings-alt: rebuild for Python 3.8.

---
 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 d5820535e54..ed09cfac4a7 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=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyrings.alt-${version}"
 build_style=python3-module

From 271539dc3ed1e21733c374ff971770403194a1d1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 279/873] python-keyutils: rebuild for Python 3.8.

---
 srcpkgs/python-keyutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyutils/template b/srcpkgs/python-keyutils/template
index d56ada0e30e..a72819e963a 100644
--- a/srcpkgs/python-keyutils/template
+++ b/srcpkgs/python-keyutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyutils'
 pkgname=python-keyutils
 version=0.6
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="keyutils"
 hostmakedepends="python-setuptools python3-setuptools"

From 0556a11defcdebd2c4319e286451ce3f45f87ebd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 280/873] python-kitchen: rebuild for Python 3.8.

---
 srcpkgs/python-kitchen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kitchen/template b/srcpkgs/python-kitchen/template
index 2bbd68c13c9..68a46986de9 100644
--- a/srcpkgs/python-kitchen/template
+++ b/srcpkgs/python-kitchen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kitchen'
 pkgname=python-kitchen
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="kitchen-${version}"
 build_style=python-module

From fe5070b00515733fcafbeebc62a10ba2029b40db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 281/873] python-kiwisolver: rebuild for Python 3.8.

---
 srcpkgs/python-kiwisolver/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kiwisolver/template b/srcpkgs/python-kiwisolver/template
index 072bd5af038..67f0805aa51 100644
--- a/srcpkgs/python-kiwisolver/template
+++ b/srcpkgs/python-kiwisolver/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kiwisolver'
 pkgname=python-kiwisolver
 version=1.0.1
-revision=2
+revision=3
 wrksrc="kiwisolver-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From d1c550f6959162ec91e7bb39c54ecdd1d5b7c0ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 282/873] python-lazy-object-proxy: rebuild for Python 3.8.

---
 srcpkgs/python-lazy-object-proxy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lazy-object-proxy/template b/srcpkgs/python-lazy-object-proxy/template
index 07efb7b4777..ab2c6dce05c 100644
--- a/srcpkgs/python-lazy-object-proxy/template
+++ b/srcpkgs/python-lazy-object-proxy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lazy-object-proxy'
 pkgname=python-lazy-object-proxy
 version=1.3.1
-revision=3
+revision=4
 wrksrc="lazy-object-proxy-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e5c9a0cf8e6e0714fba4433b9deb1aaf40d43ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 283/873] python-ldap: rebuild for Python 3.8.

---
 srcpkgs/python-ldap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap/template b/srcpkgs/python-ldap/template
index 7770baa8774..e3efc2fc6b3 100644
--- a/srcpkgs/python-ldap/template
+++ b/srcpkgs/python-ldap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap'
 pkgname=python-ldap
 version=3.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="ldap ldapurl.py ldif.py slapdtest"
 hostmakedepends="python-setuptools python3-setuptools"

From dca16bc247cccf1bc7020afca5594d857514100a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 284/873] python-ldap3: rebuild for Python 3.8.

---
 srcpkgs/python-ldap3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap3/template b/srcpkgs/python-ldap3/template
index 676251a85ff..e8e4cade72b 100644
--- a/srcpkgs/python-ldap3/template
+++ b/srcpkgs/python-ldap3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap3'
 pkgname=python-ldap3
 version=2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ldap3-${version}"
 build_style=python-module

From 8f3e1b0bf64fb527d029fec15229e079f326c373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 285/873] python3-libevdev: rebuild for Python 3.8.

---
 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 0a79893726c..f0295cdee9b 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.8
-revision=1
+revision=2
 _githash=1827bebcf789adee8492cbfcc7cf8d56059a42a4
 wrksrc="python-libevdev-${version}-${_githash}"
 build_style=python3-module

From a5b674c4366c36182e29f21b8071faff59006106 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 286/873] libsmbios: rebuild for Python 3.8.

---
 srcpkgs/libsmbios/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsmbios/template b/srcpkgs/libsmbios/template
index 31d8ffda65f..161cb79deb9 100644
--- a/srcpkgs/libsmbios/template
+++ b/srcpkgs/libsmbios/template
@@ -1,7 +1,7 @@
 # Template file for 'libsmbios'
 pkgname=libsmbios
 version=2.4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--sbindir=/usr/bin --disable-static"
 hostmakedepends="automake doxygen gettext-devel help2man libtool pkg-config"

From 7762c8392d1a03ae7a320bdec0b5402b7147d0b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 287/873] python-libtmux: rebuild for Python 3.8.

---
 srcpkgs/python-libtmux/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-libtmux/template b/srcpkgs/python-libtmux/template
index 36fa7ca7ffd..20f43af5f7d 100644
--- a/srcpkgs/python-libtmux/template
+++ b/srcpkgs/python-libtmux/template
@@ -1,7 +1,7 @@
 # Template file for 'python-libtmux'
 pkgname=python-libtmux
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="libtmux-${version}"
 build_style=python-module

From 16a2a1b8ba0ad9f9032d52092294e8a39041bba2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 288/873] python-llfuse: rebuild for Python 3.8.

---
 srcpkgs/python-llfuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-llfuse/template b/srcpkgs/python-llfuse/template
index 203c5e2fd84..b453c67e91d 100644
--- a/srcpkgs/python-llfuse/template
+++ b/srcpkgs/python-llfuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-llfuse'
 pkgname=python-llfuse
 version=1.3.6
-revision=1
+revision=2
 wrksrc="llfuse-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pkg-config"

From ae7f34ffc994fc4606c9209683fae6625f3e781e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 289/873] python-lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lockfile/template b/srcpkgs/python-lockfile/template
index 4c4612ed144..778cecba7e9 100644
--- a/srcpkgs/python-lockfile/template
+++ b/srcpkgs/python-lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lockfile'
 pkgname=python-lockfile
 version=0.12.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="lockfile-${version}"
 build_style=python-module

From 5fd2f78e26b399ed936b12f51886dae3a8d35cb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 290/873] python-logfury: rebuild for Python 3.8.

---
 srcpkgs/python-logfury/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-logfury/template b/srcpkgs/python-logfury/template
index 4b1c435e34a..1b52d2d7fdf 100644
--- a/srcpkgs/python-logfury/template
+++ b/srcpkgs/python-logfury/template
@@ -1,7 +1,7 @@
 # Template file for 'python-logfury'
 pkgname=python-logfury
 version=0.1.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="logfury-${version}"
 build_style=python-module

From 747dc28bedc27e7b5c8738113573012f545333a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 291/873] python-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lxml/template b/srcpkgs/python-lxml/template
index c3aeabfbf1b..1a6a3ac9113 100644
--- a/srcpkgs/python-lxml/template
+++ b/srcpkgs/python-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lxml'
 pkgname=python-lxml
 version=4.4.1
-revision=1
+revision=2
 wrksrc="lxml-lxml-${version}"
 build_style=python-module
 pycompile_module="lxml"

From ebc274c0463316f63fe99e5df0c704e3d324c885 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 292/873] python-lz4: rebuild for Python 3.8.

---
 srcpkgs/python-lz4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lz4/template b/srcpkgs/python-lz4/template
index dab8e8ed542..76a2e800e38 100644
--- a/srcpkgs/python-lz4/template
+++ b/srcpkgs/python-lz4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lz4'
 pkgname=python-lz4
 version=2.1.6
-revision=2
+revision=3
 wrksrc="lz4-${version}"
 build_style=python-module
 pycompile_module="lz4"

From 8eb3f4d6193b25ae716fa2fdfae1f929deb65a91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 293/873] python3-macaroons: rebuild for Python 3.8.

---
 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 d44100c20f2..420f5aff043 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=1
+revision=2
 archs=noarch
 wrksrc="pymacaroons-${version}"
 build_style=python3-module

From 437e300b76670db404728daad9f6224630daaa3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 294/873] python3-macholib: rebuild for Python 3.8.

---
 srcpkgs/python3-macholib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-macholib/template b/srcpkgs/python3-macholib/template
index a2738f57eb0..525b5f7106b 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.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="macholib-${version}"
 build_style=python3-module

From b08f229d26f5b2c915caabe213234afc1e4002e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 295/873] python-magic: rebuild for Python 3.8.

---
 srcpkgs/python-magic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-magic/template b/srcpkgs/python-magic/template
index 98e3c0802ab..5a59efa4808 100644
--- a/srcpkgs/python-magic/template
+++ b/srcpkgs/python-magic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-magic'
 pkgname=python-magic
 version=0.4.15
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="magic.py"

From c597fee1945d8f994f591622074acf3670a81484 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 296/873] python-marisa-trie: rebuild for Python 3.8.

---
 srcpkgs/python-marisa-trie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-marisa-trie/template b/srcpkgs/python-marisa-trie/template
index bb09c933335..5e46b686ace 100644
--- a/srcpkgs/python-marisa-trie/template
+++ b/srcpkgs/python-marisa-trie/template
@@ -1,7 +1,7 @@
 # Template file for 'python-marisa-trie'
 pkgname=python-marisa-trie
 version=0.7.5
-revision=2
+revision=3
 wrksrc="marisa-trie-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 5366314fc7ba3b340ccf5b4658edff33f5ec148a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 297/873] python-markdown2: rebuild for Python 3.8.

---
 srcpkgs/python-markdown2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-markdown2/template b/srcpkgs/python-markdown2/template
index 2d352ba029d..e9068f64202 100644
--- a/srcpkgs/python-markdown2/template
+++ b/srcpkgs/python-markdown2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-markdown2'
 pkgname=python-markdown2
 version=2.3.8
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="markdown2"

From b56d284bcbb50ddece287bde845145e6481e4d39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 298/873] python3-matplotlib: rebuild for Python 3.8.

---
 srcpkgs/python3-matplotlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template
index 857ba17cacf..be02817a4d3 100644
--- a/srcpkgs/python3-matplotlib/template
+++ b/srcpkgs/python3-matplotlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-matplotlib'
 pkgname=python3-matplotlib
 version=3.1.1
-revision=1
+revision=2
 wrksrc="matplotlib-${version}"
 build_style=python3-module
 pycompile_module="matplotlib mpl_toolkits pylab.py"

From 8b3780e8f6f50712735239defc569952763e8894 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 299/873] python-mccabe: rebuild for Python 3.8.

---
 srcpkgs/python-mccabe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mccabe/template b/srcpkgs/python-mccabe/template
index b6a01929540..1e2ed6328b8 100644
--- a/srcpkgs/python-mccabe/template
+++ b/srcpkgs/python-mccabe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mccabe'
 pkgname=python-mccabe
 version=0.6.1
-revision=2
+revision=3
 archs=noarch
 replaces="mccabe>=0"
 wrksrc="mccabe-${version}"

From 954d38992e9a83e3214b79375b895ee1072db4e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 300/873] python-mechanize: rebuild for Python 3.8.

---
 srcpkgs/python-mechanize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mechanize/template b/srcpkgs/python-mechanize/template
index c5b2b5789a7..ca29bbd0d23 100644
--- a/srcpkgs/python-mechanize/template
+++ b/srcpkgs/python-mechanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mechanize'
 pkgname=python-mechanize
 version=0.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="mechanize-${version}"
 build_style=python-module

From e8762f4af80ad5b1cb6a41af3183141ec903485f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 301/873] python3-minidb: rebuild for Python 3.8.

---
 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 50490794600..140964b7a8a 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.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="minidb-${version}"
 build_style=python3-module

From 93febdb59f89cf4939f3684acd832f879fc774d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 302/873] python-miniupnpc: rebuild for Python 3.8.

---
 srcpkgs/python-miniupnpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-miniupnpc/template b/srcpkgs/python-miniupnpc/template
index 500c217c78e..f7892bab073 100644
--- a/srcpkgs/python-miniupnpc/template
+++ b/srcpkgs/python-miniupnpc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-miniupnpc'
 pkgname=python-miniupnpc
 version=2.0.2
-revision=2
+revision=3
 wrksrc="${pkgname#python-}-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ab280bf26207a66e5e3f418768bf3358cc2c76ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 303/873] python-mistune: rebuild for Python 3.8.

---
 srcpkgs/python-mistune/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mistune/template b/srcpkgs/python-mistune/template
index 0ee8dfde5b1..ef5c054ba75 100644
--- a/srcpkgs/python-mistune/template
+++ b/srcpkgs/python-mistune/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mistune'
 pkgname=python-mistune
 version=0.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="mistune-${version}"
 build_style=python-module

From 05abf67487f6ac161862195dfb2069fade248fbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 304/873] python3-more-itertools: rebuild for Python 3.8.

---
 srcpkgs/python3-more-itertools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-more-itertools/template b/srcpkgs/python3-more-itertools/template
index b089992f84e..a765da98495 100644
--- a/srcpkgs/python3-more-itertools/template
+++ b/srcpkgs/python3-more-itertools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-more-itertools'
 pkgname=python3-more-itertools
 version=7.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python3-module

From efcbd7f439e04ca5dc43be057047c93f1051b5cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 305/873] python-mpd2: rebuild for Python 3.8.

---
 srcpkgs/python-mpd2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template
index 682d9a85f5e..0389f8c2a28 100644
--- a/srcpkgs/python-mpd2/template
+++ b/srcpkgs/python-mpd2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpd2'
 pkgname=python-mpd2
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mpd"

From 507a89e7a29ba5dd81f66830577542bb3a098780 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 306/873] python3-mpi4py: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-mpi4py/template | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/python3-mpi4py/template b/srcpkgs/python3-mpi4py/template
index 94a83b688f2..8f9e76867cc 100644
--- a/srcpkgs/python3-mpi4py/template
+++ b/srcpkgs/python3-mpi4py/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpi4py'
 pkgname=python3-mpi4py
 version=3.0.2
-revision=1
+revision=2
 wrksrc="mpi4py-${version}"
 build_style=python3-module
 pycompile_module="mpi4py"
@@ -15,6 +15,12 @@ homepage="https://bitbucket.org/mpi4py/mpi4py"
 distfiles="$PYPI_SITE/m/mpi4py/mpi4py-${version}.tar.gz"
 checksum=f8d629d1e3e3b7b89cb99d0e3bc5505e76cc42089829807950d5c56606ed48e0
 
+post_extract() {
+	# recythonize
+	rm src/mpi4py/include/mpi4py/mpi4py.MPI.h \
+		src/mpi4py/include/mpi4py/mpi4py.MPI_api.h \
+		src/mpi4py.MPI.c
+}
 post_install() {
 	vlicense LICENSE.rst
 }

From d71d04b6dbfad4ce9460041fe001aab7c4cab301 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 307/873] python-mpmath: rebuild for Python 3.8.

---
 srcpkgs/python-mpmath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpmath/template b/srcpkgs/python-mpmath/template
index b0a38c01514..8fd4873dd62 100644
--- a/srcpkgs/python-mpmath/template
+++ b/srcpkgs/python-mpmath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpmath'
 pkgname=python-mpmath
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="mpmath-${version}"
 build_style=python-module

From f050643cc3d8a1927b2b43a4d6bc3a47fce265d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 308/873] python3-mpv: rebuild for Python 3.8.

---
 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 2780c02610b..1910a4d231d 100644
--- a/srcpkgs/python3-mpv/template
+++ b/srcpkgs/python3-mpv/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpv'
 pkgname=python3-mpv
 version=0.3.9
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-mpv-${version}"
 build_style=python3-module

From 076ab982ba68fae19b6a637c3190d501b6f11afb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 309/873] python-msgpack: rebuild for Python 3.8.

---
 srcpkgs/python-msgpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-msgpack/template b/srcpkgs/python-msgpack/template
index 395d854d638..59571d6a208 100644
--- a/srcpkgs/python-msgpack/template
+++ b/srcpkgs/python-msgpack/template
@@ -2,7 +2,7 @@
 pkgname=python-msgpack
 reverts="0.6.0_1"
 version=0.5.6
-revision=3
+revision=4
 wrksrc="msgpack-${version}"
 build_style=python-module
 pycompile_module="msgpack"

From c0b498d4aabae1c0cc1564a796b43c28045b08f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 310/873] python3-msoffcrypto-tool: rebuild for Python 3.8.

---
 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 5996d3bf355..d1b369fc773 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=4.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="msoffcrypto-tool-${version}"
 build_style=python3-module

From a02ae9dc7e657d6823c09d222a46aaaad0b52e6e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 311/873] python-mtranslate: rebuild for Python 3.8.

---
 srcpkgs/python-mtranslate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mtranslate/template b/srcpkgs/python-mtranslate/template
index d56fa18f0f0..992c7b76fe9 100644
--- a/srcpkgs/python-mtranslate/template
+++ b/srcpkgs/python-mtranslate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mtranslate'
 pkgname=python-mtranslate
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="mtranslate-${version}"
 build_style=python-module

From 1db5126bddf0129431159c083c0e8c7feeda0e24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 312/873] python3-multidict: rebuild for Python 3.8.

---
 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 82888db842f..62054db71f1 100644
--- a/srcpkgs/python3-multidict/template
+++ b/srcpkgs/python3-multidict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-multidict'
 pkgname=python3-multidict
 version=4.5.2
-revision=2
+revision=3
 wrksrc="multidict-${version}"
 build_style=python3-module
 pycompile_module="multidict"

From db397601599182d62444486443fe7887f1bf0869 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 313/873] python3-munkres: rebuild for Python 3.8.

---
 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 15767afe3fe..d0d0a013e80 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python3-module

From f6bec8102ac4a1433f716928258d680f0546e9f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 314/873] python-musicbrainzngs: rebuild for Python 3.8.

---
 srcpkgs/python-musicbrainzngs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-musicbrainzngs/template b/srcpkgs/python-musicbrainzngs/template
index 588c25f7cd8..3d738f0c3c0 100644
--- a/srcpkgs/python-musicbrainzngs/template
+++ b/srcpkgs/python-musicbrainzngs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-musicbrainzngs'
 pkgname=python-musicbrainzngs
 version=0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="musicbrainzngs-${version}"
 build_style="python-module"

From 59d602d19ea627b5ddd3ac33170326df511f1b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 315/873] python3-musicpd: rebuild for Python 3.8.

---
 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 3328b2f4bbf..8c6ba2fb451 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=1
+revision=2
 archs=noarch
 wrksrc="python-musicpd-${version}"
 build_style=python3-module

From e4271deae6b4b0258165475e34a0174f837576d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 316/873] mutagen: rebuild for Python 3.8.

---
 srcpkgs/mutagen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mutagen/template b/srcpkgs/mutagen/template
index cbf05ea8583..8b24cc82dc8 100644
--- a/srcpkgs/mutagen/template
+++ b/srcpkgs/mutagen/template
@@ -1,7 +1,7 @@
 # Template file for 'mutagen'
 pkgname=mutagen
 version=1.42.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mutagen"

From c726c7e86676ccc5612045570a6821438d6541cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 317/873] python-mygpoclient: rebuild for Python 3.8.

---
 srcpkgs/python-mygpoclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mygpoclient/template b/srcpkgs/python-mygpoclient/template
index 3f85c72cc0c..ffad63a70a1 100644
--- a/srcpkgs/python-mygpoclient/template
+++ b/srcpkgs/python-mygpoclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mygpoclient'
 pkgname=python-mygpoclient
 version=1.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="mygpoclient-${version}"
 build_style=python-module

From 1d17c7a2672083ac8c194b767f1be1d8778d6f42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 318/873] python3-mypy: rebuild for Python 3.8.

---
 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 37ecd732c06..564c0a4d47c 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.730
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy-${version}"
 build_style=python3-module

From d44ba12caf9958f6f6d708b0e5061d3ca01990e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 319/873] python3-mypy_extensions: rebuild for Python 3.8.

---
 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 2761924248e..25de48ea141 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy_extensions-${version}"
 build_style=python3-module

From 8c03f1eb83b224187a7b0fb11b5c780c96875438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 320/873] python-mysqlclient: rebuild for Python 3.8.

---
 srcpkgs/python-mysqlclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mysqlclient/template b/srcpkgs/python-mysqlclient/template
index 43fed28d4f0..079666a6dab 100644
--- a/srcpkgs/python-mysqlclient/template
+++ b/srcpkgs/python-mysqlclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mysqlclient'
 pkgname=python-mysqlclient
 version=1.3.14
-revision=2
+revision=3
 wrksrc="mysqlclient-${version}"
 build_style=python-module
 pycompile_module="MySQLdb _mysql_exceptions.py"

From 8b80cedc0b4331f2c1827c959c67be32d904a6b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 321/873] python3-nacl: rebuild for Python 3.8.

---
 srcpkgs/python3-nacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-nacl/template b/srcpkgs/python3-nacl/template
index 5dd6a71ad6a..b59ea0196ac 100644
--- a/srcpkgs/python3-nacl/template
+++ b/srcpkgs/python3-nacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-nacl'
 pkgname=python3-nacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python3-module
 pycompile_module="nacl"

From 4b93d8f922559d3f9f9693969307cdb0dedd22c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 322/873] python-namedlist: rebuild for Python 3.8.

---
 srcpkgs/python-namedlist/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-namedlist/template b/srcpkgs/python-namedlist/template
index 4c6e6f1f3d5..75626b9f6d5 100644
--- a/srcpkgs/python-namedlist/template
+++ b/srcpkgs/python-namedlist/template
@@ -1,7 +1,7 @@
 # Template file for 'python-namedlist'
 pkgname=python-namedlist
 version=1.7
-revision=5
+revision=6
 archs=noarch
 wrksrc="namedlist-${version}"
 build_style=python-module

From 643225c4205051b03e6b58dd88dd0fe79a960880 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 323/873] python-natsort: rebuild for Python 3.8.

---
 srcpkgs/python-natsort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-natsort/template b/srcpkgs/python-natsort/template
index 754ac50c419..7101e297aad 100644
--- a/srcpkgs/python-natsort/template
+++ b/srcpkgs/python-natsort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-natsort'
 pkgname=python-natsort
 version=6.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="natsort-${version}"
 build_style=python-module

From 1b4401089b676f8d76d5cbdf86f7cff95a90063f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 324/873] python-nbxmpp: rebuild for Python 3.8.

---
 srcpkgs/python-nbxmpp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nbxmpp/template b/srcpkgs/python-nbxmpp/template
index 4952ee1e102..8c39a93bca7 100644
--- a/srcpkgs/python-nbxmpp/template
+++ b/srcpkgs/python-nbxmpp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nbxmpp'
 pkgname=python-nbxmpp
 version=0.6.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 1ee192bdc19afbca9bbbc456945aaed8e882dc3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 325/873] python-ndg_httpsclient: rebuild for Python 3.8.

---
 srcpkgs/python-ndg_httpsclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ndg_httpsclient/template b/srcpkgs/python-ndg_httpsclient/template
index 908d7137391..54b653f68a9 100644
--- a/srcpkgs/python-ndg_httpsclient/template
+++ b/srcpkgs/python-ndg_httpsclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ndg_httpsclient'
 pkgname=python-ndg_httpsclient
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ndg_httpsclient-${version}"
 build_style=python-module

From 37b5c7920c617c4f55d5abe58df690c621598a93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 326/873] python3-neovim: rebuild for Python 3.8.

---
 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 44068f17b66..2730cd1b92b 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.3.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="pynvim-${version}"
 build_style="python3-module"

From 8136ec791e98badf101712f4f44830a6721d4849 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 327/873] python-netaddr: rebuild for Python 3.8.

---
 srcpkgs/python-netaddr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netaddr/template b/srcpkgs/python-netaddr/template
index 851095a3c7c..20cc1c93134 100644
--- a/srcpkgs/python-netaddr/template
+++ b/srcpkgs/python-netaddr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netaddr'
 pkgname=python-netaddr
 version=0.7.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="netaddr-${version}"
 build_style=python-module

From ebe247f557b410a62febae438785f8f011964023 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 328/873] python-netifaces: rebuild for Python 3.8.

---
 srcpkgs/python-netifaces/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netifaces/template b/srcpkgs/python-netifaces/template
index b8d6e505879..760f657aaba 100644
--- a/srcpkgs/python-netifaces/template
+++ b/srcpkgs/python-netifaces/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netifaces'
 pkgname=python-netifaces
 version=0.10.9
-revision=1
+revision=2
 wrksrc="netifaces-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 07d0e05094764c4ef127de2a4d489537d8ab5708 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 329/873] python3-networkx: rebuild for Python 3.8.

---
 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 eae29038d94..84acd3e929c 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.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="networkx-${version}"
 build_style=python3-module

From 8a3aeb59a75fbf1b7f0394b94c325ef8827b6b5d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 330/873] python-nose: rebuild for Python 3.8.

---
 srcpkgs/python-nose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose/template b/srcpkgs/python-nose/template
index c9fbe9d28d3..f2cd7fe5c3f 100644
--- a/srcpkgs/python-nose/template
+++ b/srcpkgs/python-nose/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose'
 pkgname=python-nose
 version=1.3.7
-revision=3
+revision=4
 archs=noarch
 wrksrc="nose-${version}"
 build_style=python-module

From f86abdbaaaa9e7e8236c4d39cd7e46a733425805 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 331/873] python-nose2: rebuild for Python 3.8.

---
 srcpkgs/python-nose2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose2/template b/srcpkgs/python-nose2/template
index a9ddf5969a1..058abbd4253 100644
--- a/srcpkgs/python-nose2/template
+++ b/srcpkgs/python-nose2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose2'
 pkgname=python-nose2
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 18b92c10ef3291636c1e7e28d721c5e994bf6302 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 332/873] python-npyscreen: rebuild for Python 3.8.

---
 srcpkgs/python-npyscreen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-npyscreen/template b/srcpkgs/python-npyscreen/template
index 0457fa1aaed..2223850f22e 100644
--- a/srcpkgs/python-npyscreen/template
+++ b/srcpkgs/python-npyscreen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-npyscreen'
 pkgname=python-npyscreen
 version=4.10.5.1
-revision=1
+revision=2
 wrksrc="npyscreen-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 9ea98fac2c37960db9a7b76cea2be115e8a2bed7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 333/873] python-ntplib: rebuild for Python 3.8.

---
 srcpkgs/python-ntplib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ntplib/template b/srcpkgs/python-ntplib/template
index 81bac24971e..0582fb326c1 100644
--- a/srcpkgs/python-ntplib/template
+++ b/srcpkgs/python-ntplib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ntplib'
 pkgname=python-ntplib
 version=0.3.3
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 wrksrc="ntplib-${version}"

From 42e7c3606ad17794721afef48ff01de438abbfde Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 334/873] python-numexpr: rebuild for Python 3.8.

---
 srcpkgs/python-numexpr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numexpr/template b/srcpkgs/python-numexpr/template
index 1db40092411..baf91175a33 100644
--- a/srcpkgs/python-numexpr/template
+++ b/srcpkgs/python-numexpr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numexpr'
 pkgname=python-numexpr
 version=2.7.0
-revision=1
+revision=2
 wrksrc="numexpr-${version}"
 build_style=python-module
 pycompile_module="numexpr"

From 30d9e4a8b4a096dfdf5ebfa58ffcadefb1dc1208 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 335/873] python3-numpy: rebuild for Python 3.8.

---
 srcpkgs/python3-numpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-numpy/template b/srcpkgs/python3-numpy/template
index c4c1936cc0d..f5e8ce2cc32 100644
--- a/srcpkgs/python3-numpy/template
+++ b/srcpkgs/python3-numpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-numpy'
 pkgname=python3-numpy
 version=1.17.2
-revision=1
+revision=2
 wrksrc="numpy-${version}"
 build_style=python3-module
 pycompile_module="numpy"

From 0172497dfdbc4c61b890a5cb33fdf7a4c4f8d99a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 336/873] python-numpy-stl: rebuild for Python 3.8.

---
 srcpkgs/python-numpy-stl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numpy-stl/template b/srcpkgs/python-numpy-stl/template
index 3eed838e4f6..cce1a8ead1f 100644
--- a/srcpkgs/python-numpy-stl/template
+++ b/srcpkgs/python-numpy-stl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numpy-stl'
 pkgname=python-numpy-stl
 version=2.10.1
-revision=1
+revision=2
 wrksrc="numpy-stl-v${version}"
 build_style=python-module
 pycompile_module="stl"

From f24b29a48d74aeaddb7b697a5daffdddbd861096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 337/873] python-oauth2client: rebuild for Python 3.8.

---
 srcpkgs/python-oauth2client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauth2client/template b/srcpkgs/python-oauth2client/template
index fd135e4e98f..2398adba276 100644
--- a/srcpkgs/python-oauth2client/template
+++ b/srcpkgs/python-oauth2client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauth2client'
 pkgname=python-oauth2client
 version=4.1.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 4c0ff2a063a36adf86c97b9d4c835ca20b5edfc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 338/873] python-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauthlib/template b/srcpkgs/python-oauthlib/template
index 5bbaa7df29b..036f1b31c92 100644
--- a/srcpkgs/python-oauthlib/template
+++ b/srcpkgs/python-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauthlib'
 pkgname=python-oauthlib
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 661bc27cfe08965221daa2747362d72e4fc27178 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 339/873] python-olefile: rebuild for Python 3.8.

---
 srcpkgs/python-olefile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-olefile/template b/srcpkgs/python-olefile/template
index 4346cfcf667..803d7b67cd8 100644
--- a/srcpkgs/python-olefile/template
+++ b/srcpkgs/python-olefile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-olefile'
 pkgname=python-olefile
 version=0.46
-revision=1
+revision=2
 archs=noarch
 wrksrc="olefile-${version}"
 build_style=python-module

From 81ad48cc99baa98fff2bb93d2c9ddbfe5bd36422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 340/873] python3-oletools: rebuild for Python 3.8.

---
 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 af9a91ff273..a4fda46427b 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.54.2b
-revision=1
+revision=2
 archs=noarch
 wrksrc="oletools-${version}"
 build_style=python3-module

From 0ae1454dacdb40d36d6c46872241d8b7f943ac15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 341/873] openrazer-meta: rebuild for Python 3.8.

---
 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 d4bd24878b2..112cb9e900b 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=1
+revision=2
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 827b1a86d790e29df3f5448f95b7d7583439ebc7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 342/873] python-openssl: rebuild for Python 3.8.

---
 srcpkgs/python-openssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-openssl/template b/srcpkgs/python-openssl/template
index 94bccaa166f..8aabda074fa 100644
--- a/srcpkgs/python-openssl/template
+++ b/srcpkgs/python-openssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-openssl'
 pkgname=python-openssl
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyOpenSSL-${version}"
 build_style=python-module

From 0b35d1d0b8e9ec0f17cb71edb12538b78cf15fa9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 343/873] python3-orocos-kdl: rebuild for Python 3.8.

---
 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 df3e27d5e7b..85b573b2fa4 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=1
+revision=2
 wrksrc=orocos_kinematics_dynamics-${version}
 build_wrksrc=python_orocos_kdl
 build_style=cmake

From 1f599cbc677804bd62252474063a3f44bab1963f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 344/873] python3-owm: rebuild for Python 3.8.

---
 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 d51e01831e6..acdb960ab45 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=1
+revision=2
 wrksrc="pyowm-${version}"
 build_style=python3-module
 pycompile_module="pyowm"

From 04d5ca1141107a7e08a15eccec26eae0cef6ddfc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 345/873] python-packaging: rebuild for Python 3.8.

---
 srcpkgs/python-packaging/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-packaging/template b/srcpkgs/python-packaging/template
index 505631bb29c..06042d12b90 100644
--- a/srcpkgs/python-packaging/template
+++ b/srcpkgs/python-packaging/template
@@ -1,7 +1,7 @@
 # Template file for 'python-packaging'
 pkgname=python-packaging
 version=19.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="packaging-${version}"
 build_style=python-module

From 3d4f635d1909bcc10be550a6ba92c93bab657d24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 346/873] python-pam: rebuild for Python 3.8.

---
 srcpkgs/python-pam/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pam/template b/srcpkgs/python-pam/template
index e696a05ae7f..28c22cfd6ea 100644
--- a/srcpkgs/python-pam/template
+++ b/srcpkgs/python-pam/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pam'
 pkgname=python-pam
 version=1.8.4
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="pam.py"

From 7906adb846a053b93372b360401c778862703de5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 347/873] python3-pandas: rebuild for Python 3.8.

---
 srcpkgs/python3-pandas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pandas/template b/srcpkgs/python3-pandas/template
index ad282b4d5d4..10f9d5a77d9 100644
--- a/srcpkgs/python3-pandas/template
+++ b/srcpkgs/python3-pandas/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pandas'
 pkgname=python3-pandas
 version=0.25.1
-revision=1
+revision=2
 wrksrc="pandas-${version}"
 build_style=python3-module
 pycompile_module="pandas"

From 5f63764964faf4b0d244098f5f64ba1225e14c5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 348/873] python-pandocfilters: rebuild for Python 3.8.

---
 srcpkgs/python-pandocfilters/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pandocfilters/template b/srcpkgs/python-pandocfilters/template
index a7a3d442052..8650d20256f 100644
--- a/srcpkgs/python-pandocfilters/template
+++ b/srcpkgs/python-pandocfilters/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pandocfilters'
 pkgname=python-pandocfilters
 version=1.4.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="pandocfilters-${version}"
 build_style=python-module

From cedefda1104de9c58b20c6b7e1d8a0f4d5385b24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 349/873] python-paramiko: rebuild for Python 3.8.

---
 srcpkgs/python-paramiko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-paramiko/template b/srcpkgs/python-paramiko/template
index c512ceb951f..d6f75508a03 100644
--- a/srcpkgs/python-paramiko/template
+++ b/srcpkgs/python-paramiko/template
@@ -1,7 +1,7 @@
 # Template file for 'python-paramiko'
 pkgname=python-paramiko
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 6c5cdbb0603a5742137ad2399e1f282d7135ecbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 350/873] python-parse: rebuild for Python 3.8.

---
 srcpkgs/python-parse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parse/template b/srcpkgs/python-parse/template
index 298d0b65e78..ded581b4420 100644
--- a/srcpkgs/python-parse/template
+++ b/srcpkgs/python-parse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parse'
 pkgname=python-parse
 version=1.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="parse-${version}"
 build_style=python-module

From 06c32d13c6ecc8f5c59fd3d28c856cddb7e55b69 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 351/873] python3-parsedatetime: rebuild for Python 3.8.

---
 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 d3ac21d7d34..34e9ba0f416 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="parsedatetime-${version}"
 build_style=python3-module

From 149092afd6b238ec9977aa2ba8d8f244d5357e67 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 352/873] python-parsing: rebuild for Python 3.8.

---
 srcpkgs/python-parsing/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parsing/template b/srcpkgs/python-parsing/template
index 0cc744eaf79..bd6cf2c2238 100644
--- a/srcpkgs/python-parsing/template
+++ b/srcpkgs/python-parsing/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parsing'
 pkgname=python-parsing
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyparsing-pyparsing_${version}"
 build_style=python-module

From c302574bea31ba81d3f2e4d6c1b8b8212592985d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 353/873] python-parso: rebuild for Python 3.8.

---
 srcpkgs/python-parso/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parso/template b/srcpkgs/python-parso/template
index 20e5fe306c0..1959b42622a 100644
--- a/srcpkgs/python-parso/template
+++ b/srcpkgs/python-parso/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parso'
 pkgname=python-parso
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="parso-${version}"
 build_style=python-module

From 6b9c95f942435b16d67021b0ce8f182c24bb943f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 354/873] python-passlib: rebuild for Python 3.8.

---
 srcpkgs/python-passlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-passlib/template b/srcpkgs/python-passlib/template
index 3af12ce7b1b..f46a3e92642 100644
--- a/srcpkgs/python-passlib/template
+++ b/srcpkgs/python-passlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-passlib'
 pkgname=python-passlib
 version=1.7.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="passlib-${version}"
 build_style=python-module

From 49600da0619f7152e3ea828c366d9a4680ebac40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 355/873] python-pathlib2: rebuild for Python 3.8.

---
 srcpkgs/python-pathlib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathlib2/template b/srcpkgs/python-pathlib2/template
index bb7bec778f5..fa600b78fbe 100644
--- a/srcpkgs/python-pathlib2/template
+++ b/srcpkgs/python-pathlib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathlib2'
 pkgname=python-pathlib2
 version=2.3.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pathlib2-${version}"
 build_style=python-module

From a0a108aec87134d5b6d2e03e731f48739e1226c0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 356/873] python-pathspec: rebuild for Python 3.8.

---
 srcpkgs/python-pathspec/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathspec/template b/srcpkgs/python-pathspec/template
index 7c5fe04097a..2fa8fa1a811 100644
--- a/srcpkgs/python-pathspec/template
+++ b/srcpkgs/python-pathspec/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathspec'
 pkgname=python-pathspec
 version=0.5.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathspec-${version}"
 build_style=python-module

From c66de315dc6f359ddb581056e8ef350e92acb135 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 357/873] python-pathtools: rebuild for Python 3.8.

---
 srcpkgs/python-pathtools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathtools/template b/srcpkgs/python-pathtools/template
index 218e6ed2f57..47dc6ef6a71 100644
--- a/srcpkgs/python-pathtools/template
+++ b/srcpkgs/python-pathtools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathtools'
 pkgname=python-pathtools
 version=0.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathtools-${version}"
 build_style=python-module

From d3d8ba877ce3e383a472c68a51b4eb6138da7d25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 358/873] python-pbkdf2: rebuild for Python 3.8.

---
 srcpkgs/python-pbkdf2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pbkdf2/template b/srcpkgs/python-pbkdf2/template
index edc50f824c2..956d0b4cad9 100644
--- a/srcpkgs/python-pbkdf2/template
+++ b/srcpkgs/python-pbkdf2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pbkdf2'
 pkgname=python-pbkdf2
 version=1.3
-revision=3
+revision=4
 archs=noarch
 wrksrc="pbkdf2-${version}"
 build_style=python-module

From 92b150f4aee95d71074c2bc7e253e089372033b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 359/873] python-pbr: rebuild for Python 3.8.

---
 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 7ab0b39539f..9c7216056fe 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.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pbr-${version}"
 build_style=python-module

From a5f7f198ba9557855d1662cf7b3d806286d735b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 360/873] python3-pcodedmp: rebuild for Python 3.8.

---
 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 efe8cc83ee7..eb52c809fae 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=1
+revision=2
 archs=noarch
 wrksrc="pcodedmp-${version}"
 build_style=python3-module

From c6f7d3cab5a62a3302eedc82e3ce1b5af007e967 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 361/873] python-pdfrw: rebuild for Python 3.8.

---
 srcpkgs/python-pdfrw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pdfrw/template b/srcpkgs/python-pdfrw/template
index ddb43b928fc..ef7db98e491 100644
--- a/srcpkgs/python-pdfrw/template
+++ b/srcpkgs/python-pdfrw/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pdfrw'
 pkgname=python-pdfrw
 version=0.4
-revision=2
+revision=3
 archs=noarch
 replaces="python-pdfrw-example<${version}_${revision}"
 wrksrc="${pkgname/python-//}-${version}"

From 8f02a9d6b13212de51e3921f641914d153244a1d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 362/873] python-peewee: rebuild for Python 3.8.

---
 srcpkgs/python-peewee/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-peewee/template b/srcpkgs/python-peewee/template
index 9b07ed413b9..de0068a330e 100644
--- a/srcpkgs/python-peewee/template
+++ b/srcpkgs/python-peewee/template
@@ -1,7 +1,7 @@
 # Template file for 'python-peewee'
 pkgname=python-peewee
 version=3.11.2
-revision=1
+revision=2
 wrksrc="peewee-${version}"
 build_style=python-module
 pycompile_module="playhouse peewee.py pwiz.py"

From 8c541b3666a838b55909e5f7ca46b7318c1e315e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 363/873] python3-pefile: rebuild for Python 3.8.

---
 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 305d64e0758..8791f06640b 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=1
+revision=2
 archs=noarch
 wrksrc="pefile-${version}"
 build_style=python3-module

From edc8e4f2bb803865815c3d0bd64a2e50bfdf5da8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 364/873] python3-pem: rebuild for Python 3.8.

---
 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 3517c80b66a..15417666597 100644
--- a/srcpkgs/python3-pem/template
+++ b/srcpkgs/python3-pem/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pem'
 pkgname=python3-pem
 version=19.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pem-${version}"
 build_style=python3-module

From 164760eb3d8d28400ea4be2967d7678696839866 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 365/873] python-pex: rebuild for Python 3.8.

---
 srcpkgs/python-pex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pex/template b/srcpkgs/python-pex/template
index 4beafcf7b4b..e36ccda8180 100644
--- a/srcpkgs/python-pex/template
+++ b/srcpkgs/python-pex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pex'
 pkgname=python-pex
 version=1.6.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="pex-${version}"
 build_style=python-module

From b4043ec822756e0711d025e31db342f81853fc0b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 366/873] python-pexpect: rebuild for Python 3.8.

---
 srcpkgs/python-pexpect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pexpect/template b/srcpkgs/python-pexpect/template
index 8d03a1945f3..03102c3d294 100644
--- a/srcpkgs/python-pexpect/template
+++ b/srcpkgs/python-pexpect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pexpect'
 pkgname=python-pexpect
 version=4.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pexpect-${version}"
 build_style=python-module

From 50f6291ca752dc88af34a7df4987b99f11369c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 367/873] python-pgmigrate: rebuild for Python 3.8.

---
 srcpkgs/python-pgmigrate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgmigrate/template b/srcpkgs/python-pgmigrate/template
index b441ba2a89f..767b6cf8921 100644
--- a/srcpkgs/python-pgmigrate/template
+++ b/srcpkgs/python-pgmigrate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgmigrate'
 pkgname=python-pgmigrate
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgmigrate-${version}"
 build_style=python-module

From 19bc6f8c731b45f52c358d34830221558e54f36f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 368/873] python-pgpdump: rebuild for Python 3.8.

---
 srcpkgs/python-pgpdump/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgpdump/template b/srcpkgs/python-pgpdump/template
index 58be9116feb..a28b6e209e7 100644
--- a/srcpkgs/python-pgpdump/template
+++ b/srcpkgs/python-pgpdump/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgpdump'
 pkgname=python-pgpdump
 version=1.5
-revision=5
+revision=6
 archs=noarch
 build_style=python-module
 pycompile_module="pgpdump"

From d3bc17a7484bd198f2f0e5d449b183920ca6ef9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 369/873] python3-pgspecial: rebuild for Python 3.8.

---
 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 dc52d12c214..c4f67a707f1 100644
--- a/srcpkgs/python3-pgspecial/template
+++ b/srcpkgs/python3-pgspecial/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pgspecial'
 pkgname=python3-pgspecial
 version=1.11.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgspecial-${version}"
 build_style=python3-module

From 630e0f8ca443d21d7a84c4cb44ab119db356b6fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 370/873] python3-pgzero: rebuild for Python 3.8.

---
 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 9653505acda..8b8f477112d 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgzero-${version}"
 build_style=python3-module

From b39841f2f8458d2865aac460282b318538b727c4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 371/873] python3-phonenumbers: rebuild for Python 3.8.

---
 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 ebf33f226e4..7b4e889fd8d 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.10.20
-revision=1
+revision=2
 archs=noarch
 wrksrc="phonenumbers-${version}"
 build_style=python3-module

From c4dbacfe25a16b0526190c66a838b7e407125426 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 372/873] python-picamera: rebuild for Python 3.8.

---
 srcpkgs/python-picamera/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-picamera/template b/srcpkgs/python-picamera/template
index 92bc2a57a6d..e3c9a17bfdc 100644
--- a/srcpkgs/python-picamera/template
+++ b/srcpkgs/python-picamera/template
@@ -1,7 +1,7 @@
 # Template file for 'python-picamera'
 pkgname=python-picamera
 version=1.13
-revision=1
+revision=2
 archs=noarch
 wrksrc="picamera-${version}"
 build_style=python-module

From 29473c016c6cd2d720c417714e89e9eaba3b321e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 373/873] python-pickleshare: rebuild for Python 3.8.

---
 srcpkgs/python-pickleshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pickleshare/template b/srcpkgs/python-pickleshare/template
index 2485c95230a..c1d86826c15 100644
--- a/srcpkgs/python-pickleshare/template
+++ b/srcpkgs/python-pickleshare/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pickleshare'
 pkgname=python-pickleshare
 version=0.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pickleshare-${version}"
 build_style=python-module

From 7c358da397b1273369bbeb98240a250157d4fe9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 374/873] python3-pillow-simd: rebuild for Python 3.8.

---
 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 7bab9fb20c3..4c756b07c79 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=5.3.0.post1
-revision=1
+revision=2
 archs="x86_64*"
 wrksrc="pillow-simd-${version}"
 build_style=python3-module

From 06b38c4e7a2c4a5ec22c8a9c530dbe56d846260f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 375/873] python-pip: rebuild for Python 3.8.

---
 srcpkgs/python-pip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pip/template b/srcpkgs/python-pip/template
index 75f11561816..9d4607095c7 100644
--- a/srcpkgs/python-pip/template
+++ b/srcpkgs/python-pip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pip'
 pkgname=python-pip
 version=19.2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pip-${version}"
 build_style=python-module

From 16067b9358434ea80b4b86a4dcd5a60f6b9e575b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 376/873] python-pipenv: rebuild for Python 3.8.

---
 srcpkgs/python-pipenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pipenv/template b/srcpkgs/python-pipenv/template
index e7ce3922875..210a0813673 100644
--- a/srcpkgs/python-pipenv/template
+++ b/srcpkgs/python-pipenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pipenv'
 pkgname=python-pipenv
 version=2018.11.26
-revision=3
+revision=4
 archs=noarch
 wrksrc="pipenv-${version}"
 build_style=python-module

From cb995aed1307a20f4ffe7746dbe54e4099ce9670 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 377/873] python-pkgconfig: rebuild for Python 3.8.

---
 srcpkgs/python-pkgconfig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pkgconfig/template b/srcpkgs/python-pkgconfig/template
index 13e1dcd3bf7..e9e5480907d 100644
--- a/srcpkgs/python-pkgconfig/template
+++ b/srcpkgs/python-pkgconfig/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pkgconfig'
 pkgname=python-pkgconfig
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pkgconfig-${version}"
 build_style=python-module

From f284340f35211b5c0879b7a5338c325e6cfe62da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 378/873] python-plotly: rebuild for Python 3.8.

---
 srcpkgs/python-plotly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-plotly/template b/srcpkgs/python-plotly/template
index fbbb3a3a520..1593b108f7a 100644
--- a/srcpkgs/python-plotly/template
+++ b/srcpkgs/python-plotly/template
@@ -1,7 +1,7 @@
 # Template file for 'python-plotly'
 pkgname=python-plotly
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 #wrksrc="${pkgname#*-}-${version}"
 wrksrc="plotly.py-${version}"

From ee0d515dc265db17d6c90029fc5ffad4fbfb17ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 379/873] python3-pluggy: rebuild for Python 3.8.

---
 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 37ebc2dae40..6f97cb25f21 100644
--- a/srcpkgs/python3-pluggy/template
+++ b/srcpkgs/python3-pluggy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pluggy'
 pkgname=python3-pluggy
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python3-module

From 60f109b4924812d3cbb6107b8d070a2fdb642962 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 380/873] python-ply: rebuild for Python 3.8.

---
 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 034fbcfa531..04a3defa6aa 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=1
+revision=2
 archs=noarch
 wrksrc="ply-${version}"
 build_style=python-module

From 95b0bc668a60a91dbbd68944bdc712d271e93723 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 381/873] python3-pmw: rebuild for Python 3.8.

---
 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 646e7129443..289b5ef1d0d 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=1
+revision=2
 archs=noarch
 short_desc="Python 3 Tkinter widget toolkit"
 homepage="http://pmw.sourceforge.net/"

From 760b2aa66f385f882c6da4545bc93c906a387d73 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 382/873] python-podcastparser: rebuild for Python 3.8.

---
 srcpkgs/python-podcastparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-podcastparser/template b/srcpkgs/python-podcastparser/template
index e4847d3ed65..61702f0d28b 100644
--- a/srcpkgs/python-podcastparser/template
+++ b/srcpkgs/python-podcastparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-podcastparser'
 pkgname=python-podcastparser
 version=0.6.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="podcastparser-${version}"
 build_style=python-module

From e0ad0641945e1dea937fb2ca555a61603e4560b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 383/873] python-polib: rebuild for Python 3.8.

---
 srcpkgs/python-polib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-polib/template b/srcpkgs/python-polib/template
index b0ade05d90d..8b8d4b66c68 100644
--- a/srcpkgs/python-polib/template
+++ b/srcpkgs/python-polib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-polib'
 pkgname=python-polib
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="polib-${version}"
 build_style=python-module

From 0030be5c9ea47539a72b9d5b5131abeac8412e47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 384/873] python-portend: rebuild for Python 3.8.

---
 srcpkgs/python-portend/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python-portend/template b/srcpkgs/python-portend/template
index 216ae413d09..0538f68083f 100644
--- a/srcpkgs/python-portend/template
+++ b/srcpkgs/python-portend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-portend'
 pkgname=python-portend
 version=2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="portend-${version}"
 build_style=python-module
@@ -14,7 +14,7 @@ license="MIT"
 homepage="https://github.com/jaraco/portend"
 changelog="https://github.com/jaraco/portend/blob/master/CHANGES.rst"
 distfiles="https://github.com/jaraco/portend/archive/${version}.tar.gz"
-checksum=61aa1a8fd76d64bd6093e4151a2bfeda177d5083bf2e2bcc92a053bd2104fde3
+checksum=c0740375a19168e117d291e7ed307e985d2c0e2dc732ca97444bc58a28076dfa
 
 pre_build() {
 	sed -i setup.py \

From 86c2211e1837e156275077b9efe1e25572514867 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 385/873] python-prctl: rebuild for Python 3.8.

---
 srcpkgs/python-prctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prctl/template b/srcpkgs/python-prctl/template
index 2b420d655cf..e8bf54b98fd 100644
--- a/srcpkgs/python-prctl/template
+++ b/srcpkgs/python-prctl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prctl'
 pkgname=python-prctl
 version=1.7
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="prctl.py"
 hostmakedepends="python-setuptools python3-setuptools libcap-devel"

From e7c53afc196d066076f9117158bd6a0b7b28bf52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 386/873] python3-precis-i18n: rebuild for Python 3.8.

---
 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 19612bc818b..be7bb0b0b56 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=1
+revision=2
 archs=noarch
 wrksrc="precis_i18n-${version}"
 build_style=python3-module

From fc6a6a6ae9e2454bc6e5aa117ab2f5f747f1c3d2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 387/873] python-pretend: rebuild for Python 3.8.

---
 srcpkgs/python-pretend/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pretend/template b/srcpkgs/python-pretend/template
index 9a647271b57..6d8063fc43a 100644
--- a/srcpkgs/python-pretend/template
+++ b/srcpkgs/python-pretend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pretend'
 pkgname=python-pretend
 version=1.0.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pretend-${version}"
 build_style=python-module

From 990266b8ce207f64d2a8e2f2f2c11473236e4a2d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 388/873] python-progress: rebuild for Python 3.8.

---
 srcpkgs/python-progress/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-progress/template b/srcpkgs/python-progress/template
index 7d3924e3618..0d6bd1db69d 100644
--- a/srcpkgs/python-progress/template
+++ b/srcpkgs/python-progress/template
@@ -1,7 +1,7 @@
 # Template file for 'python-progress'
 pkgname=python-progress
 version=1.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="progress-${version}"
 build_style=python-module

From 1259abece823637c18eaca058493cebdf15842ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 389/873] python-prometheus_client: rebuild for Python 3.8.

---
 srcpkgs/python-prometheus_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prometheus_client/template b/srcpkgs/python-prometheus_client/template
index 46df561f7d4..7b71fbeffc2 100644
--- a/srcpkgs/python-prometheus_client/template
+++ b/srcpkgs/python-prometheus_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prometheus_client'
 pkgname=python-prometheus_client
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="prometheus_client-${version}"
 build_style=python-module

From 67527aa7cf723b45f2c49017717337d56884bf4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 390/873] python-prompt_toolkit1: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit1/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit1/template b/srcpkgs/python-prompt_toolkit1/template
index d117d620ba5..7afe6179f33 100644
--- a/srcpkgs/python-prompt_toolkit1/template
+++ b/srcpkgs/python-prompt_toolkit1/template
@@ -2,7 +2,7 @@
 pkgname=python-prompt_toolkit1
 reverts="2.0.9_1"
 version=1.0.15
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From ad672131c8ab27e3e4dfa04ab7264c23d46f206e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 391/873] python-prompt_toolkit2: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit2/template b/srcpkgs/python-prompt_toolkit2/template
index 0fa71fa06dc..d7f2fd11e14 100644
--- a/srcpkgs/python-prompt_toolkit2/template
+++ b/srcpkgs/python-prompt_toolkit2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prompt_toolkit2'
 pkgname=python-prompt_toolkit2
 version=2.0.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From 2d3dfe28989a26dbea6bd90097a7a4046839373e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 392/873] python-proselint: rebuild for Python 3.8.

---
 srcpkgs/python-proselint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-proselint/template b/srcpkgs/python-proselint/template
index c017c497386..b1da90de474 100644
--- a/srcpkgs/python-proselint/template
+++ b/srcpkgs/python-proselint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-proselint'
 pkgname=python-proselint
 version=0.10.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="proselint-${version}"
 build_style=python-module

From 3dceefa27e529cfd28f51c8b96cec007bd4464e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 393/873] python-protobuf: rebuild for Python 3.8.

---
 srcpkgs/python-protobuf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-protobuf/template b/srcpkgs/python-protobuf/template
index 4b736f1e7af..7dbed97fb76 100644
--- a/srcpkgs/python-protobuf/template
+++ b/srcpkgs/python-protobuf/template
@@ -1,7 +1,7 @@
 # Template file for 'python-protobuf'
 pkgname=python-protobuf
 version=3.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="protobuf-${version}"
 build_style=python-module

From abc13cfff04878580efaf4333ca9548112b11049 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 394/873] python-psutil: rebuild for Python 3.8.

---
 srcpkgs/python-psutil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psutil/template b/srcpkgs/python-psutil/template
index 96cbb3c399f..11353ed2179 100644
--- a/srcpkgs/python-psutil/template
+++ b/srcpkgs/python-psutil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psutil'
 pkgname=python-psutil
 version=5.6.3
-revision=1
+revision=2
 wrksrc="psutil-${version}"
 build_style=python-module
 pycompile_module="psutil"

From 970bcf29dafb825894593f644c2fb7b4f1b86aff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 395/873] python-psycopg2: rebuild for Python 3.8.

---
 srcpkgs/python-psycopg2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psycopg2/template b/srcpkgs/python-psycopg2/template
index f41de2880e6..14b28b8aed1 100644
--- a/srcpkgs/python-psycopg2/template
+++ b/srcpkgs/python-psycopg2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psycopg2'
 pkgname=python-psycopg2
 version=2.8.3
-revision=1
+revision=2
 wrksrc="psycopg2-${version}"
 build_style=python-module
 pycompile_module="psycopg2"

From f987fad321d899f07d159588838ad3f3bfd1eb12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 396/873] python-ptyprocess: rebuild for Python 3.8.

---
 srcpkgs/python-ptyprocess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ptyprocess/template b/srcpkgs/python-ptyprocess/template
index 04c4cf89391..fd2e51fa3ac 100644
--- a/srcpkgs/python-ptyprocess/template
+++ b/srcpkgs/python-ptyprocess/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ptyprocess'
 pkgname=python-ptyprocess
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ptyprocess-${version}"
 build_style=python-module

From 6854ff4b103875e8ed393d695b71afd7a2589626 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 397/873] python3-pulsectl: rebuild for Python 3.8.

---
 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 429dd1abe45..045afdb411b 100644
--- a/srcpkgs/python3-pulsectl/template
+++ b/srcpkgs/python3-pulsectl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pulsectl'
 pkgname=python3-pulsectl
 version=19.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pulsectl-${version}"
 build_style=python3-module

From e8331ef1c889bc2b1756c6ed55a1cc93186445af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 398/873] python-py: rebuild for Python 3.8.

---
 srcpkgs/python-py/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-py/template b/srcpkgs/python-py/template
index 99644bc228a..07a1ae2a21b 100644
--- a/srcpkgs/python-py/template
+++ b/srcpkgs/python-py/template
@@ -1,7 +1,7 @@
 # Template file for 'python-py'
 pkgname=python-py
 version=1.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="py-${version}"
 build_style=python-module

From 1f71c5025d9cb40d86e4245b6a90731b3f25c6fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 399/873] python-pyPEG2: rebuild for Python 3.8.

---
 srcpkgs/python-pyPEG2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyPEG2/template b/srcpkgs/python-pyPEG2/template
index 113948af730..6ba175687f1 100644
--- a/srcpkgs/python-pyPEG2/template
+++ b/srcpkgs/python-pyPEG2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyPEG2'
 pkgname=python-pyPEG2
 version=2.15.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 3f82483327ba7958b0a6f8b67e63abf009c360ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 400/873] python-pyacoustid: rebuild for Python 3.8.

---
 srcpkgs/python-pyacoustid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyacoustid/template b/srcpkgs/python-pyacoustid/template
index 068d3d52649..d5b2d967f4e 100644
--- a/srcpkgs/python-pyacoustid/template
+++ b/srcpkgs/python-pyacoustid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyacoustid'
 pkgname=python-pyacoustid
 version=1.1.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyacoustid-${version}"
 build_style=python-module

From da477a37411d7cf0d00da2dea60d734072705be7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 401/873] python-pyaes: rebuild for Python 3.8.

---
 srcpkgs/python-pyaes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyaes/template b/srcpkgs/python-pyaes/template
index a8c812a9e01..d31766d0481 100644
--- a/srcpkgs/python-pyaes/template
+++ b/srcpkgs/python-pyaes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyaes'
 pkgname=python-pyaes
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyaes-${version}"
 build_style=python-module

From 9e2b6fe7e7b67777d70eb25705c27d4ed6462a3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 402/873] python-pyasn1: rebuild for Python 3.8.

---
 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 510dfa09816..fcddad43633 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyasn1-${version}"
 build_style=python-module

From 712c6a81632d8741a302138a46ffd3b1c8fb079f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 403/873] python-pyasn1-modules: rebuild for Python 3.8.

---
 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 bc19e4940ed..b142819a272 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 989e8e1bc0a51f2fa1a88ec8f99eae20dd3e21ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 404/873] python3-pycares: rebuild for Python 3.8.

---
 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 c52702904b4..ed82808bada 100644
--- a/srcpkgs/python3-pycares/template
+++ b/srcpkgs/python3-pycares/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pycares'
 pkgname=python3-pycares
 version=2.3.0
-revision=2
+revision=3
 wrksrc="pycares-${version}"
 build_style=python3-module
 pycompile_module="pycares"

From 0885c6a30ff0765b465e0e4c84803b48b9090dc5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 405/873] python-pycodestyle: rebuild for Python 3.8.

---
 srcpkgs/python-pycodestyle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycodestyle/template b/srcpkgs/python-pycodestyle/template
index ca20d8e0c97..08bc8c8bec7 100644
--- a/srcpkgs/python-pycodestyle/template
+++ b/srcpkgs/python-pycodestyle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycodestyle'
 pkgname=python-pycodestyle
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycodestyle-${version}"
 build_style=python-module

From 61d0268320bb8306c2b2823a663588c885a01df6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 406/873] python-pycountry: rebuild for Python 3.8.

---
 srcpkgs/python-pycountry/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycountry/template b/srcpkgs/python-pycountry/template
index 88a0025f258..205db6240b7 100644
--- a/srcpkgs/python-pycountry/template
+++ b/srcpkgs/python-pycountry/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycountry'
 pkgname=python-pycountry
 version=18.12.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycountry-${version}"
 build_style=python-module

From e3a689e939cf482e09d50cf25b8f244cbec3dc12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 407/873] python-pycparser: rebuild for Python 3.8.

---
 srcpkgs/python-pycparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycparser/template b/srcpkgs/python-pycparser/template
index a521b3494ab..d2e83aa79b2 100644
--- a/srcpkgs/python-pycparser/template
+++ b/srcpkgs/python-pycparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycparser'
 pkgname=python-pycparser
 version=2.19
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycparser-${version}"
 build_style=python-module

From a86a5e2a75c91a868bf9b10f7ad9d86ca4df85d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 408/873] python-pycryptodome: rebuild for Python 3.8.

---
 srcpkgs/python-pycryptodome/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycryptodome/template b/srcpkgs/python-pycryptodome/template
index f01b5731c45..a4368d61b39 100644
--- a/srcpkgs/python-pycryptodome/template
+++ b/srcpkgs/python-pycryptodome/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycryptodome'
 pkgname=python-pycryptodome
 version=3.9.0
-revision=1
+revision=2
 wrksrc="pycryptodome-${version}"
 build_style=python-module
 pycompile_module="Crypto"

From 0cd2d63524942e2cfe5220436720dab24ef75308 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 409/873] python-pyelftools: rebuild for Python 3.8.

---
 srcpkgs/python-pyelftools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyelftools/template b/srcpkgs/python-pyelftools/template
index a6e9e9b644e..193650442fc 100644
--- a/srcpkgs/python-pyelftools/template
+++ b/srcpkgs/python-pyelftools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyelftools'
 pkgname=python-pyelftools
 version=0.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyelftools-${version}"
 build_style=python-module

From 61ae993767f544e608a601e6727e58b8c73400fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 410/873] python3-pyfiglet: rebuild for Python 3.8.

---
 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 d00b4fda62a..a4a67b12d42 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=1
+revision=2
 archs=noarch
 wrksrc="pyfiglet-${version}"
 build_style="python3-module"

From 7f5bd3a27f56badc9d95d3b2b7a684604262af1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 411/873] python-pyflakes: rebuild for Python 3.8.

---
 srcpkgs/python-pyflakes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyflakes/template b/srcpkgs/python-pyflakes/template
index 86d477c47f2..19229ebb3a4 100644
--- a/srcpkgs/python-pyflakes/template
+++ b/srcpkgs/python-pyflakes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyflakes'
 pkgname=python-pyflakes
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyflakes-${version}"
 build_style=python-module

From a811c56d34b1f53ac8aeca03f5247410137fe8d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 412/873] python-pygame: rebuild for Python 3.8.

---
 srcpkgs/python-pygame/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pygame/template b/srcpkgs/python-pygame/template
index a510333df6e..a900d62dbe3 100644
--- a/srcpkgs/python-pygame/template
+++ b/srcpkgs/python-pygame/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pygame'
 pkgname=python-pygame
 version=1.9.4
-revision=2
+revision=3
 wrksrc="pygame-${version}"
 build_style=python-module
 pycompile_module="pygame"

From e62822b2e5fa56868e80f10a019c7a0d66abbcbd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 413/873] python-pyglet: rebuild for Python 3.8.

---
 srcpkgs/python-pyglet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyglet/template b/srcpkgs/python-pyglet/template
index f8315bdf616..ee6ed16064c 100644
--- a/srcpkgs/python-pyglet/template
+++ b/srcpkgs/python-pyglet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyglet'
 pkgname=python-pyglet
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyglet-${version}"
 build_style=python-module

From 1f0bf2cea3a10c9982132fbe81c5ebd884defa35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 414/873] python3-pykeepass: rebuild for Python 3.8.

---
 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 c0e0fd4db41..135da6fea65 100644
--- a/srcpkgs/python3-pykeepass/template
+++ b/srcpkgs/python3-pykeepass/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pykeepass'
 pkgname=python3-pykeepass
 version=3.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="pykeepass-${version}"
 build_style=python3-module

From f2d7f9a6199d6780975ad9efb639642e96acc8c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 415/873] python3-pykwalify: rebuild for Python 3.8.

---
 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 27bc0c37355..b3727aba651 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pykwalify-${version}"
 build_style=python3-module

From cb348b8cc013bee10cb1adcdd5b9dac8e8f37a83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 416/873] python3-pylast: rebuild for Python 3.8.

---
 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 187b51943a8..60184348d80 100644
--- a/srcpkgs/python3-pylast/template
+++ b/srcpkgs/python3-pylast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylast'
 pkgname=python3-pylast
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylast-${version}"
 build_style=python3-module

From 6629ec0088134c22cfb115f29fd4a90a9b38e7a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 417/873] python3-pylibgen: rebuild for Python 3.8.

---
 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 641bf649c17..540ccb32790 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylibgen-${version}"
 build_style=python3-module

From 953751fa6deeafefea78df4f5ec27ee5c5c9902d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 418/873] python3-pylint: rebuild for Python 3.8.

---
 srcpkgs/python3-pylint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pylint/template b/srcpkgs/python3-pylint/template
index 6c8800069f0..315dbffb3fc 100644
--- a/srcpkgs/python3-pylint/template
+++ b/srcpkgs/python3-pylint/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylint'
 pkgname=python3-pylint
 version=2.3.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="pylint-${version}"
 build_style=python3-module

From 96bc4e17e1f144c3528e0ec3b455d501c2c3efdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 419/873] python-pynacl: rebuild for Python 3.8.

---
 srcpkgs/python-pynacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pynacl/template b/srcpkgs/python-pynacl/template
index 6ead91820b1..7a7fe246821 100644
--- a/srcpkgs/python-pynacl/template
+++ b/srcpkgs/python-pynacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pynacl'
 pkgname=python-pynacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python-module
 pycompile_module="nacl"

From ec1da9dfd353e059b23780a676ef1561f56f9b2e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 420/873] python-pyotp: rebuild for Python 3.8.

---
 srcpkgs/python-pyotp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyotp/template b/srcpkgs/python-pyotp/template
index 54714ee2ebb..b70bd73d4aa 100644
--- a/srcpkgs/python-pyotp/template
+++ b/srcpkgs/python-pyotp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyotp'
 pkgname=python-pyotp
 version=2.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyotp-${version}"
 build_style=python-module

From 3c83515599af94f7483a3e165f03547f9daa2835 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 421/873] python-pyperclip: rebuild for Python 3.8.

---
 srcpkgs/python-pyperclip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyperclip/template b/srcpkgs/python-pyperclip/template
index 512dc8d3dfb..b173f1479a5 100644
--- a/srcpkgs/python-pyperclip/template
+++ b/srcpkgs/python-pyperclip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyperclip'
 pkgname=python-pyperclip
 version=1.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=pyperclip-${version}
 build_style=python-module

From 6d17f7510d6ce4ec430e8bf72567fecdbd521681 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 422/873] python-pyqtgraph: rebuild for Python 3.8.

---
 srcpkgs/python-pyqtgraph/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyqtgraph/template b/srcpkgs/python-pyqtgraph/template
index f90e2b15319..1bea9c2ffdf 100644
--- a/srcpkgs/python-pyqtgraph/template
+++ b/srcpkgs/python-pyqtgraph/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyqtgraph'
 pkgname=python-pyqtgraph
 version=0.10.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${pkgname#*-}-${version}"
 build_style=python-module

From fff21c3dd38242e2992b276e00f6970f96a34293 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 423/873] python-pyrfc3339: rebuild for Python 3.8.

---
 srcpkgs/python-pyrfc3339/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyrfc3339/template b/srcpkgs/python-pyrfc3339/template
index 618e46d1c4b..cd81c4d0624 100644
--- a/srcpkgs/python-pyrfc3339/template
+++ b/srcpkgs/python-pyrfc3339/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyrfc3339'
 pkgname=python-pyrfc3339
 version=1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="pyrfc3339"

From bdfc6ef4d47bd373ff649510c96f640b48da738a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 424/873] python-pyscss: rebuild for Python 3.8.

---
 srcpkgs/python-pyscss/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyscss/template b/srcpkgs/python-pyscss/template
index 1f7d8b7d8cd..1a8e9c44d7d 100644
--- a/srcpkgs/python-pyscss/template
+++ b/srcpkgs/python-pyscss/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyscss'
 pkgname=python-pyscss
 version=1.3.5
-revision=6
+revision=7
 wrksrc="pyScss-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pcre-devel"

From 6bdfad32f6894df0a7f3eb185662fa32228408ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 425/873] python3-pysdl2: rebuild for Python 3.8.

---
 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 d59ea7d7fa2..3efdca5b667 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=1
+revision=2
 archs=noarch
 wrksrc="py-sdl2-rel_${version//./_}"
 build_style=python3-module

From 67dab081767478a600fbc44d5333dc2746a683ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 426/873] python-pyserial: rebuild for Python 3.8.

---
 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 8808e76d206..354be493b16 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=2
+revision=3
 archs=noarch
 wrksrc="pyserial-${version}"
 build_style=python-module

From a6914f6aa35af001fd954260658bed6e1e5df2bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 427/873] python3-pyside2: rebuild for Python 3.8.

---
 srcpkgs/python3-pyside2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pyside2/template b/srcpkgs/python3-pyside2/template
index a5d60b17568..1da3400f239 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.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From deee942f64ef5e0e70f6a45a7f9e3a2593d53add Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 428/873] python3-pysigset: rebuild for Python 3.8.

---
 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 8de87145a09..50d9162ea70 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.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysigset-${version}"
 build_style=python3-module

From 913752d5b84f0054c829fc060939c366bf5b28cb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 429/873] python-pysocks: rebuild for Python 3.8.

---
 srcpkgs/python-pysocks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysocks/template b/srcpkgs/python-pysocks/template
index 68a27819e3d..d9b216aeab8 100644
--- a/srcpkgs/python-pysocks/template
+++ b/srcpkgs/python-pysocks/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysocks'
 pkgname=python-pysocks
 version=1.6.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="PySocks-${version}"
 build_style=python-module

From e256b35c573b66ccaaffbf92ee92ecad250db3c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 430/873] python3-pysol_cards: rebuild for Python 3.8.

---
 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 e03d92fe077..a37429754a2 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.8.6
-revision=1
+revision=2
 wrksrc="pysol_cards-${version}"
 build_style=python3-module
 pycompile_module="pysol_cards"

From d29dab0ddee296649a1f4ace5c33678cc349d6ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 431/873] python-pysrt: rebuild for Python 3.8.

---
 srcpkgs/python-pysrt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysrt/template b/srcpkgs/python-pysrt/template
index 061435a52c7..7e154825bef 100644
--- a/srcpkgs/python-pysrt/template
+++ b/srcpkgs/python-pysrt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysrt'
 pkgname=python-pysrt
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysrt-${version}"
 build_style=python-module

From 4ba7eb802460f8e4e15f1389bebd64237c6f1aec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 432/873] python-pystache: rebuild for Python 3.8.

---
 srcpkgs/python-pystache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pystache/template b/srcpkgs/python-pystache/template
index 13f8b04aa88..c1a5bcd57d9 100644
--- a/srcpkgs/python-pystache/template
+++ b/srcpkgs/python-pystache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pystache'
 pkgname=python-pystache
 version=0.5.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pystache-${version}"
 build_style=python-module

From a6a1d8010f3909cc551f70485efc660b22168f46 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 433/873] python-pyte: rebuild for Python 3.8.

---
 srcpkgs/python-pyte/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyte/template b/srcpkgs/python-pyte/template
index 43b708adc66..76efbec91d1 100644
--- a/srcpkgs/python-pyte/template
+++ b/srcpkgs/python-pyte/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyte'
 pkgname=python-pyte
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyte-${version}"
 build_style=python-module

From 03679e357b0bdbd90ddbb6deba5693594ef9d592 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 434/873] python-pytest: rebuild for Python 3.8.

---
 srcpkgs/python-pytest/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest/template b/srcpkgs/python-pytest/template
index 6481f21e677..d5c246599c6 100644
--- a/srcpkgs/python-pytest/template
+++ b/srcpkgs/python-pytest/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest'
 pkgname=python-pytest
 version=3.7.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From d8ff8818fa4f90c63cf468feb2bba5d8b9dca026 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 435/873] python3-pytest-asyncio: rebuild for Python 3.8.

---
 srcpkgs/python3-pytest-asyncio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template
index bd104f99e2c..0c90d33a9e5 100644
--- a/srcpkgs/python3-pytest-asyncio/template
+++ b/srcpkgs/python3-pytest-asyncio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pytest-asyncio'
 pkgname=python3-pytest-asyncio
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytest-asyncio-${version}"
 build_style=python3-module

From 8bdff4905b1d2e832656b8dde532b566e516752c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 436/873] python-pytest-fixture-config: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-fixture-config/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-fixture-config/template b/srcpkgs/python-pytest-fixture-config/template
index cd3e38a592a..14255af8a35 100644
--- a/srcpkgs/python-pytest-fixture-config/template
+++ b/srcpkgs/python-pytest-fixture-config/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-fixture-config'
 pkgname=python-pytest-fixture-config
 version=1.3.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 89c93c6cebe4d9e57d61a6e1c0d1782514496073 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 437/873] python-pytest-mock: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-mock/template b/srcpkgs/python-pytest-mock/template
index f3dc85810b6..240e8773aaa 100644
--- a/srcpkgs/python-pytest-mock/template
+++ b/srcpkgs/python-pytest-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-mock'
 pkgname=python-pytest-mock
 version=1.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From e10ffc843814c368a7fd76e24e6afa8512ce198c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 438/873] python-pytz: rebuild for Python 3.8.

---
 srcpkgs/python-pytz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytz/template b/srcpkgs/python-pytz/template
index d6becf829a7..40f582962c8 100644
--- a/srcpkgs/python-pytz/template
+++ b/srcpkgs/python-pytz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytz'
 pkgname=python-pytz
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytz-${version}"
 build_style=python-module

From 562767d788b8e163bcde2dbd45de9eca2899bd90 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 439/873] python-pyudev: rebuild for Python 3.8.

---
 srcpkgs/python-pyudev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyudev/template b/srcpkgs/python-pyudev/template
index d059b7882a2..2ec53088636 100644
--- a/srcpkgs/python-pyudev/template
+++ b/srcpkgs/python-pyudev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyudev'
 pkgname=python-pyudev
 version=0.21.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyudev-${version}"
 build_style=python-module

From bb91a3d4616a0e9dbf1a34b271d62527a455f4ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 440/873] python3-pyx: rebuild for Python 3.8.

---
 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 87608c43428..89963bed89f 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.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="PyX-${version}"
 build_style=python3-module

From caa3ad83cde6d2b66687ae0ac2bb87dfd8eb100f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 441/873] python-pyzbar: rebuild for Python 3.8.

---
 srcpkgs/python-pyzbar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzbar/template b/srcpkgs/python-pyzbar/template
index 06ae37a5708..35b568eb4e6 100644
--- a/srcpkgs/python-pyzbar/template
+++ b/srcpkgs/python-pyzbar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzbar'
 pkgname=python-pyzbar
 version=0.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyzbar-${version}"
 build_style=python-module

From 83e0ba8fd12c3f07b4f3c2f8109ff0cd9a69353b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 442/873] python-pyzmq: rebuild for Python 3.8.

---
 srcpkgs/python-pyzmq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzmq/template b/srcpkgs/python-pyzmq/template
index 859aab5983d..27dbe29e516 100644
--- a/srcpkgs/python-pyzmq/template
+++ b/srcpkgs/python-pyzmq/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzmq'
 pkgname=python-pyzmq
 version=18.0.1
-revision=1
+revision=2
 wrksrc="pyzmq-${version}"
 build_style=python-module
 make_build_args="--zmq=${XBPS_CROSS_BASE}/usr"

From 2d71150f372801e322d8ee5f31b2bc67795fc3a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 443/873] python-qrcode: rebuild for Python 3.8.

---
 srcpkgs/python-qrcode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-qrcode/template b/srcpkgs/python-qrcode/template
index 9deb485855f..bf35c82757e 100644
--- a/srcpkgs/python-qrcode/template
+++ b/srcpkgs/python-qrcode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-qrcode'
 pkgname=python-qrcode
 version=6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="qrcode-${version}"
 build_style=python-module

From 55eeefa7bb378b38024ce5c57d228c5d2c24875f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 444/873] python-random2: rebuild for Python 3.8.

---
 srcpkgs/python-random2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-random2/template b/srcpkgs/python-random2/template
index 92f36fee139..2603cae3584 100644
--- a/srcpkgs/python-random2/template
+++ b/srcpkgs/python-random2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-random2'
 pkgname=python-random2
 version=1.0.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="random2-${version}"
 build_style=python-module

From 4aa520f994404a836b859a95bf53280ec662d779 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 445/873] python-rarfile: rebuild for Python 3.8.

---
 srcpkgs/python-rarfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rarfile/template b/srcpkgs/python-rarfile/template
index e0c597c1fb1..e3b6f3e2887 100644
--- a/srcpkgs/python-rarfile/template
+++ b/srcpkgs/python-rarfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rarfile'
 pkgname=python-rarfile
 version=3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="rarfile-${version}"
 build_style=python-module

From 77edc413dd0a2b7d7423d47946137d1db7452b91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 446/873] python-raven: rebuild for Python 3.8.

---
 srcpkgs/python-raven/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-raven/template b/srcpkgs/python-raven/template
index eec4e5f49b6..87382c21602 100644
--- a/srcpkgs/python-raven/template
+++ b/srcpkgs/python-raven/template
@@ -1,7 +1,7 @@
 # Template file for 'python-raven'
 pkgname=python-raven
 version=6.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="raven-${version}"
 build_style=python-module

From 0fd244bc29d49109b475295b68c11c496626bd43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 447/873] python-rdflib: rebuild for Python 3.8.

---
 srcpkgs/python-rdflib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rdflib/template b/srcpkgs/python-rdflib/template
index 0512abb0e5a..f676dedfb2f 100644
--- a/srcpkgs/python-rdflib/template
+++ b/srcpkgs/python-rdflib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rdflib'
 pkgname=python-rdflib
 version=4.2.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="rdflib-${version}"
 build_style=python-module

From 52682c54b0a7808306dcb6c0c9af5436d056d6a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 448/873] python-readability-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-readability-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-readability-lxml/template b/srcpkgs/python-readability-lxml/template
index ddf0602b730..19dadaa336f 100644
--- a/srcpkgs/python-readability-lxml/template
+++ b/srcpkgs/python-readability-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-readability-lxml'
 pkgname=python-readability-lxml
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="readability-lxml-${version}"
 build_style=python-module

From 5b239aeb5613465b0d414e14b8b37a83f65232fc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 449/873] python3-readlike: rebuild for Python 3.8.

---
 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 cbba969b076..43159962442 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=1
+revision=2
 archs=noarch
 wrksrc=readlike-${version}
 build_style=python3-module

From 10ff7da432e0f1563ed8c4feb921648f20e75246 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 450/873] python-rebulk: rebuild for Python 3.8.

---
 srcpkgs/python-rebulk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rebulk/template b/srcpkgs/python-rebulk/template
index 1cf6cf623c8..8f9c2621304 100644
--- a/srcpkgs/python-rebulk/template
+++ b/srcpkgs/python-rebulk/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rebulk'
 pkgname=python-rebulk
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rebulk-${version}"
 build_style=python-module

From b720f89f9fb6ecb79aa43ff92f151239049cb9c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 451/873] python-redis: rebuild for Python 3.8.

---
 srcpkgs/python-redis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-redis/template b/srcpkgs/python-redis/template
index f57c0d841b3..b7e773fde54 100644
--- a/srcpkgs/python-redis/template
+++ b/srcpkgs/python-redis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-redis'
 pkgname=python-redis
 version=2.10.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="redis-${version}"
 build_style=python-module

From 90d47f03a3f7a55f623c0b5019b0b58b6169aae5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 452/873] python-regex: rebuild for Python 3.8.

---
 srcpkgs/python-regex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-regex/template b/srcpkgs/python-regex/template
index 33e99b0127b..7a624db9477 100644
--- a/srcpkgs/python-regex/template
+++ b/srcpkgs/python-regex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-regex'
 pkgname=python-regex
 version=2019.08.19
-revision=1
+revision=2
 wrksrc="regex-${version}"
 build_style=python-module
 pycompile_module="_regex_core.py regex.py test_regex.py"

From e132fc559392a2f2a5268100218ef2061759c476 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 453/873] python-rencode: rebuild for Python 3.8.

---
 srcpkgs/python-rencode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rencode/template b/srcpkgs/python-rencode/template
index 7176038a60a..021e1d414b8 100644
--- a/srcpkgs/python-rencode/template
+++ b/srcpkgs/python-rencode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rencode'
 pkgname=python-rencode
 version=1.0.6
-revision=2
+revision=3
 wrksrc="rencode-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"

From 635743944483bd5fdbf4a909ef4874532f1035b9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 454/873] python-reportlab: rebuild for Python 3.8.

---
 srcpkgs/python-reportlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-reportlab/template b/srcpkgs/python-reportlab/template
index 7f153d65a2a..3915767b6d3 100644
--- a/srcpkgs/python-reportlab/template
+++ b/srcpkgs/python-reportlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-reportlab'
 pkgname=python-reportlab
 version=3.5.23
-revision=1
+revision=2
 wrksrc="reportlab-${version}"
 build_style=python-module
 pycompile_module="reportlab"

From 4a6d7b1e5e0d64a6834cc210da11806cbe217453 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 455/873] python-requests: rebuild for Python 3.8.

---
 srcpkgs/python-requests/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests/template b/srcpkgs/python-requests/template
index fc806b611e9..73d2d5945ef 100644
--- a/srcpkgs/python-requests/template
+++ b/srcpkgs/python-requests/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests'
 pkgname=python-requests
 version=2.22.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-${version}"
 build_style=python-module

From 61f6560b710773eab8296ef28bd943f5dc0d290d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 456/873] python-requests-mock: rebuild for Python 3.8.

---
 srcpkgs/python-requests-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-mock/template b/srcpkgs/python-requests-mock/template
index 5b89b5ed3b8..2d1410fcd1b 100644
--- a/srcpkgs/python-requests-mock/template
+++ b/srcpkgs/python-requests-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-mock'
 pkgname=python-requests-mock
 version=1.5.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="requests-mock-${version}"
 build_style=python-module

From f4f04d85ce7abb39fbbf306bc3c1dcfc467cdf14 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 457/873] python-requests-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-requests-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-oauthlib/template b/srcpkgs/python-requests-oauthlib/template
index b011ea17a36..8cd838090a7 100644
--- a/srcpkgs/python-requests-oauthlib/template
+++ b/srcpkgs/python-requests-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-oauthlib'
 pkgname=python-requests-oauthlib
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5853f21b57bde4c4e66293b132fba4fc03804518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 458/873] python-requests-toolbelt: rebuild for Python 3.8.

---
 srcpkgs/python-requests-toolbelt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-toolbelt/template b/srcpkgs/python-requests-toolbelt/template
index 3ba66a0a007..13a81586221 100644
--- a/srcpkgs/python-requests-toolbelt/template
+++ b/srcpkgs/python-requests-toolbelt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-toolbelt'
 pkgname=python-requests-toolbelt
 version=0.9.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 14171483829854051f0c8030562c1052094d78c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 459/873] python3-requests-unixsocket: rebuild for Python 3.8.

---
 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 ec9e1074566..fd389ec2d13 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-unixsocket-${version}"
 build_style=python3-module

From 9b589212b423bd7e2dfbb7ab7ef63c65b9dd07cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 460/873] python-rfc6555: rebuild for Python 3.8.

---
 srcpkgs/python-rfc6555/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rfc6555/template b/srcpkgs/python-rfc6555/template
index c3babc25b93..2522872cc32 100644
--- a/srcpkgs/python-rfc6555/template
+++ b/srcpkgs/python-rfc6555/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rfc6555'
 pkgname=python-rfc6555
 version=0.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rfc6555-${version}"
 build_style=python-module

From a399a96d8293a9387f5648001a03178d2550059b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 461/873] python-ripe-atlas-cousteau: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-cousteau/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-cousteau/template b/srcpkgs/python-ripe-atlas-cousteau/template
index ac16300fe3d..72f32a9da0d 100644
--- a/srcpkgs/python-ripe-atlas-cousteau/template
+++ b/srcpkgs/python-ripe-atlas-cousteau/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-cousteau'
 pkgname=python-ripe-atlas-cousteau
 version=1.4.2
-revision=1
+revision=2
 build_style=python-module
 archs=noarch
 pycompile_module="ripe/atlas/cousteau"

From 4c2ddc085f45f52b438013ad3d494f8f59859504 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 462/873] python-ripe-atlas-sagan: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-sagan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-sagan/template b/srcpkgs/python-ripe-atlas-sagan/template
index 60a9b883b93..22abb48af46 100644
--- a/srcpkgs/python-ripe-atlas-sagan/template
+++ b/srcpkgs/python-ripe-atlas-sagan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-sagan'
 pkgname=python-ripe-atlas-sagan
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ripe.atlas.sagan-${version}"
 build_style=python-module

From 10e7db3d51d8370e317d667edc372d0fcfd5bad9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 463/873] python-rsa: rebuild for Python 3.8.

---
 srcpkgs/python-rsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rsa/template b/srcpkgs/python-rsa/template
index a4ae59846ff..11e9bf2c60d 100644
--- a/srcpkgs/python-rsa/template
+++ b/srcpkgs/python-rsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rsa'
 pkgname=python-rsa
 version=4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a3bbda3918c5b4bb668860ba5bbd81f83f1a4925 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 464/873] python3-rsistent: rebuild for Python 3.8.

---
 srcpkgs/python3-rsistent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-rsistent/template b/srcpkgs/python3-rsistent/template
index 13019f472cd..7897e107b2b 100644
--- a/srcpkgs/python3-rsistent/template
+++ b/srcpkgs/python3-rsistent/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-rsistent'
 pkgname=python3-rsistent
 version=0.15.4
-revision=1
+revision=2
 wrksrc="pyrsistent-${version}"
 build_style=python3-module
 pycompile_module="pyrsistent"

From 7d4c9082b7051c6ce978ca21f34f138189c7f2d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 465/873] python3-rss2email: rebuild for Python 3.8.

---
 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 d07984d33d8..34e7d4e65a6 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.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="rss2email-${version}"
 build_style=python3-module

From a0a5e6df8a02d98f37c3c22c043adb325c8a8a62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 466/873] python-ruamel.yaml: rebuild for Python 3.8.

---
 srcpkgs/python-ruamel.yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ruamel.yaml/template b/srcpkgs/python-ruamel.yaml/template
index d86ddfc67c9..789f8a7acd2 100644
--- a/srcpkgs/python-ruamel.yaml/template
+++ b/srcpkgs/python-ruamel.yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ruamel.yaml'
 pkgname=python-ruamel.yaml
 version=0.15.92
-revision=1
+revision=2
 wrksrc="ruamel.yaml-${version}"
 build_style=python-module
 pycompile_module="ruamel/yaml"

From 6b579f083949bbd67a78d66ae983de1f36f03a82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 467/873] python3-s-tui: rebuild for Python 3.8.

---
 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 4c7db6ff3c9..85a945b1b09 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=0.8.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="s-tui-${version}"
 build_style=python3-module

From 5cc92799a690ba40dd26192e3f0182e07089683a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 468/873] python-s3transfer: rebuild for Python 3.8.

---
 srcpkgs/python-s3transfer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-s3transfer/template b/srcpkgs/python-s3transfer/template
index e306c3c3b1a..dd92eeff657 100644
--- a/srcpkgs/python-s3transfer/template
+++ b/srcpkgs/python-s3transfer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-s3transfer'
 pkgname=python-s3transfer
 version=0.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="s3transfer-${version}"
 build_style=python-module

From 2ec5386706a289e510b5b03e33cf74e0a23596a6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 469/873] python3-saml2: rebuild for Python 3.8.

---
 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 e94602a82ea..c0dabb5e9d0 100644
--- a/srcpkgs/python3-saml2/template
+++ b/srcpkgs/python3-saml2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-saml2'
 pkgname=python3-saml2
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysaml2-${version}"
 build_style=python3-module

From e856d28eb580f0af5442d11d24ffacdd7fade12b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 470/873] python-scandir: rebuild for Python 3.8.

---
 srcpkgs/python-scandir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scandir/template b/srcpkgs/python-scandir/template
index 774fac91b8f..b02fe6d0281 100644
--- a/srcpkgs/python-scandir/template
+++ b/srcpkgs/python-scandir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scandir'
 pkgname=python-scandir
 version=1.10.0
-revision=2
+revision=3
 wrksrc="scandir-${version}"
 build_style=python-module
 pycompile_module="scandir.py"

From 3b5e1eeb2ce0519b51592cebffc1bd89dce0f96c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 471/873] python3-scard: rebuild for Python 3.8.

---
 srcpkgs/python3-scard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scard/template b/srcpkgs/python3-scard/template
index 793f144a74b..279419ac3e3 100644
--- a/srcpkgs/python3-scard/template
+++ b/srcpkgs/python3-scard/template
@@ -2,7 +2,7 @@
 pkgname=python3-scard
 _pkgname=pyscard
 version=1.9.8
-revision=1
+revision=2
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module
 pycompile_module=smartcard

From f62ba61eaebce26c267e2d453d8e0ea6e005a285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 472/873] python3-scikit-learn: rebuild for Python 3.8.

---
 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 73799b9f420..8ac82167832 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.20.4
-revision=1
+revision=2
 wrksrc="scikit-learn-${version}"
 build_style=python3-module
 pycompile_module="sklearn"

From ccf4f6aa1bd0ba8aaf9499dcacb1320a77221004 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 473/873] python3-scipy: rebuild for Python 3.8.

---
 srcpkgs/python3-scipy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scipy/template b/srcpkgs/python3-scipy/template
index 291ac3734f1..2cef9ac33e1 100644
--- a/srcpkgs/python3-scipy/template
+++ b/srcpkgs/python3-scipy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-scipy'
 pkgname=python3-scipy
 version=1.3.1
-revision=1
+revision=2
 wrksrc="scipy-${version}"
 build_style=python3-module
 pycompile_module="scipy"

From 04cbe0c6403a4ecd9cda36e10bba5d06e472823d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 474/873] python-scour: rebuild for Python 3.8.

---
 srcpkgs/python-scour/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scour/template b/srcpkgs/python-scour/template
index b78cf37f057..0db5b157ce1 100644
--- a/srcpkgs/python-scour/template
+++ b/srcpkgs/python-scour/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scour'
 pkgname=python-scour
 version=0.37
-revision=1
+revision=2
 archs=noarch
 wrksrc="scour-${version}"
 build_style=python-module

From 0fd08871993ece59d562feb8472d05249ae1d76a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 475/873] python3-scruffy: rebuild for Python 3.8.

---
 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 e797b110f42..62a21a74eca 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="scruffy-${version}"
 build_style=python3-module

From 65cb259cf8f67f78fe484e4423fe0006aae17045 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 476/873] python-send2trash: rebuild for Python 3.8.

---
 srcpkgs/python-send2trash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-send2trash/template b/srcpkgs/python-send2trash/template
index 49c3a2b3d77..94f56545695 100644
--- a/srcpkgs/python-send2trash/template
+++ b/srcpkgs/python-send2trash/template
@@ -1,7 +1,7 @@
 # Template file for 'python-send2trash'
 pkgname=python-send2trash
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="send2trash-${version}"
 build_style=python-module

From 04a4413d706d49df8a415b9714091b0e4bb0fdfa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 477/873] python-serpent: rebuild for Python 3.8.

---
 srcpkgs/python-serpent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-serpent/template b/srcpkgs/python-serpent/template
index b60d390c1ab..a40f0d44515 100644
--- a/srcpkgs/python-serpent/template
+++ b/srcpkgs/python-serpent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-serpent'
 pkgname=python-serpent
 version=1.28
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38131f811a874463c71c55408ef6e629166a5b8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 478/873] python-service_identity: rebuild for Python 3.8.

---
 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 eae084c858f..e21a1520a75 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=1
+revision=2
 archs=noarch
 wrksrc="service_identity-${version}"
 build_style=python-module

From 9a538d41d8b848da9da43cd5d6f80428b7208be8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 479/873] setconf: rebuild for Python 3.8.

---
 srcpkgs/setconf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/setconf/template b/srcpkgs/setconf/template
index a3d22376a5b..1911c558c77 100644
--- a/srcpkgs/setconf/template
+++ b/srcpkgs/setconf/template
@@ -1,7 +1,7 @@
 # Template file for 'setconf'
 pkgname=setconf
 version=0.7.6
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="setconf.py"

From aacff3894cc42a49ab1becc06f64f23197302443 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 480/873] python-setproctitle: rebuild for Python 3.8.

---
 srcpkgs/python-setproctitle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setproctitle/template b/srcpkgs/python-setproctitle/template
index d0d41ae888d..c47e3a9db53 100644
--- a/srcpkgs/python-setproctitle/template
+++ b/srcpkgs/python-setproctitle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setproctitle'
 pkgname=python-setproctitle
 version=1.1.10
-revision=5
+revision=6
 wrksrc="setproctitle-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e2b8c2ac8d355cdb0f221b80ab39e2ef92beb3e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 481/873] python-setuptools: rebuild for Python 3.8.

---
 srcpkgs/python-setuptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setuptools/template b/srcpkgs/python-setuptools/template
index 382a9b45bcd..a172f8e8e09 100644
--- a/srcpkgs/python-setuptools/template
+++ b/srcpkgs/python-setuptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setuptools'
 pkgname=python-setuptools
 version=41.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python-module

From 5feb793ba33633318f41644f84b5ffd5428e2d4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 482/873] python-sh: rebuild for Python 3.8.

---
 srcpkgs/python-sh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sh/template b/srcpkgs/python-sh/template
index 1826986b25c..76985dc1f01 100644
--- a/srcpkgs/python-sh/template
+++ b/srcpkgs/python-sh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sh'
 pkgname=python-sh
 version=1.12.14
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From f0cfe151eea6fcf86d1196385a1ac0057a65ab48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 483/873] python-shapely: rebuild for Python 3.8.

---
 srcpkgs/python-shapely/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-shapely/template b/srcpkgs/python-shapely/template
index 25cc875a02c..114726838f9 100644
--- a/srcpkgs/python-shapely/template
+++ b/srcpkgs/python-shapely/template
@@ -1,7 +1,7 @@
 # Template file for 'python-shapely'
 pkgname=python-shapely
 version=1.7a1
-revision=2
+revision=3
 wrksrc="Shapely-${version}"
 build_style=python-module
 pycompile_module="shapely"

From 0908618383925caf43243de8097dbf6491149f8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 484/873] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index d552ce8432d..1f9c8043b46 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=4
+revision=5
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From 14af86f199e28c6eae170b10c1c662bd0184b73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 485/873] shiboken2: rebuild for Python 3.8.

---
 srcpkgs/shiboken2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken2/template b/srcpkgs/shiboken2/template
index 394d9ba4f94..a08edf3f2a0 100644
--- a/srcpkgs/shiboken2/template
+++ b/srcpkgs/shiboken2/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken2'
 pkgname=shiboken2
 version=5.11.2
-revision=2
+revision=3
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From 9ea535c3baf70c69a2bbe07d057742af1877d648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 486/873] python3-shodan: rebuild for Python 3.8.

---
 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 858a0b921f8..033b5a269ff 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.19.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="shodan-python-${version}"
 build_style=python3-module

From 76805ea236fc7f4ecd5948a492413602efff91e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 487/873] python3-signedjson: rebuild for Python 3.8.

---
 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 6f6fb339fd2..d8f9b06b22f 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-signedjson-${version}"
 build_style=python3-module

From 12e9d209470a13cdd9063e5544ffd00c5952138e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 488/873] python-simplebayes: rebuild for Python 3.8.

---
 srcpkgs/python-simplebayes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplebayes/template b/srcpkgs/python-simplebayes/template
index e76b94ad549..6c95222fa7e 100644
--- a/srcpkgs/python-simplebayes/template
+++ b/srcpkgs/python-simplebayes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplebayes'
 pkgname=python-simplebayes
 version=1.5.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="simplebayes-${version}"
 build_style=python-module

From d1ad830144a3e370bbac6e82affb1d06805dfdbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 489/873] python-simplegeneric: rebuild for Python 3.8.

---
 srcpkgs/python-simplegeneric/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplegeneric/template b/srcpkgs/python-simplegeneric/template
index 3dc4e1dda94..f352387fa1f 100644
--- a/srcpkgs/python-simplegeneric/template
+++ b/srcpkgs/python-simplegeneric/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplegeneric'
 pkgname=python-simplegeneric
 version=0.8.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="simplegeneric-${version}"
 build_style=python-module

From f6d990c1a1436b305f8b5af6f58c1f6430d96dc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 490/873] python-simplejson: rebuild for Python 3.8.

---
 srcpkgs/python-simplejson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplejson/template b/srcpkgs/python-simplejson/template
index b453ae952ba..1b8523d0d46 100644
--- a/srcpkgs/python-simplejson/template
+++ b/srcpkgs/python-simplejson/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplejson'
 pkgname=python-simplejson
 version=3.16.1
-revision=2
+revision=3
 wrksrc="simplejson-${version}"
 build_style=python-module
 pycompile_module="simplejson"

From b6f0878a2894ffdd731251a64a26cb1ddf40038a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 491/873] sip: rebuild for Python 3.8.

---
 srcpkgs/sip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sip/template b/srcpkgs/sip/template
index 9d09b823bb6..0e8a81000b1 100644
--- a/srcpkgs/sip/template
+++ b/srcpkgs/sip/template
@@ -1,7 +1,7 @@
 # Template file for 'sip'
 pkgname=sip
 version=4.19.18
-revision=1
+revision=2
 wrksrc="sip-${version}"
 hostmakedepends="python-devel python3-devel"
 makedepends="${hostmakedepends}"

From 5f24e47fb2b044495bbf0ee108d18220ad3b3bd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 492/873] python-six: rebuild for Python 3.8.

---
 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 c6d91f5ece9..a25323caa2a 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.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="six-${version}"
 build_style=python-module

From 09784cf129c5a66b731964fcda119a53dd9dbb7b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 493/873] python3-slixmpp: rebuild for Python 3.8.

---
 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 db367c3d0ab..cbbde6f394b 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.4.2
-revision=1
+revision=2
 wrksrc="slixmpp-${version}"
 build_style=python3-module
 pycompile_module="slixmpp"

From 5e4eb88ccd16957dc33f6923ae3a72151385e9ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 494/873] python3-slugify: rebuild for Python 3.8.

---
 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 44d37f2aed7..012bb98f063 100644
--- a/srcpkgs/python3-slugify/template
+++ b/srcpkgs/python3-slugify/template
@@ -3,7 +3,7 @@ pkgname=python3-slugify
 # Please don't update. Only required by Transifx-client,
 # doesn't work with newer versions
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-slugify-${version}"
 build_style=python3-module

From 3673d2d0b57421bb69e3ed7407630c26169fab96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 495/873] python-smbc: rebuild for Python 3.8.

---
 srcpkgs/python-smbc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smbc/template b/srcpkgs/python-smbc/template
index abc745f8982..6a280139a25 100644
--- a/srcpkgs/python-smbc/template
+++ b/srcpkgs/python-smbc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smbc'
 pkgname=python-smbc
 version=1.0.16
-revision=1
+revision=2
 wrksrc="pysmbc-${version}"
 build_style=python-module
 pycompile_module="smbc"

From 2e7eca88dff9a562419fb01bfafbdaf55a6c2bd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 496/873] python-smmap: rebuild for Python 3.8.

---
 srcpkgs/python-smmap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smmap/template b/srcpkgs/python-smmap/template
index 4aa0c37ff40..8c8ea952285 100644
--- a/srcpkgs/python-smmap/template
+++ b/srcpkgs/python-smmap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smmap'
 pkgname=python-smmap
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="smmap-${version}"
 build_style=python-module

From fd787d6092a892885c1a37ff836d919c3268746b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 497/873] python-snakeoil: rebuild for Python 3.8.

---
 srcpkgs/python-snakeoil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snakeoil/template b/srcpkgs/python-snakeoil/template
index 9c98461c555..79e964d9254 100644
--- a/srcpkgs/python-snakeoil/template
+++ b/srcpkgs/python-snakeoil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snakeoil'
 pkgname=python-snakeoil
 version=0.7.5
-revision=2
+revision=3
 wrksrc="snakeoil-${version}"
 build_style=python-module
 pycompile_module="snakeoil"

From c023c48bda41f4e9b16718923037b0abc4c9cc57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 498/873] python-snappy: rebuild for Python 3.8.

---
 srcpkgs/python-snappy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snappy/template b/srcpkgs/python-snappy/template
index ac386f64fae..b1870cbe681 100644
--- a/srcpkgs/python-snappy/template
+++ b/srcpkgs/python-snappy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snappy'
 pkgname=python-snappy
 version=0.5.4
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="snappy"
 hostmakedepends="python-setuptools python3-setuptools"

From cf3b5c203b490e3aa45e74d0cef8b0d0c4d9cbd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 499/873] python-snowballstemmer: rebuild for Python 3.8.

---
 srcpkgs/python-snowballstemmer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snowballstemmer/template b/srcpkgs/python-snowballstemmer/template
index 6c21632cffa..221478860e5 100644
--- a/srcpkgs/python-snowballstemmer/template
+++ b/srcpkgs/python-snowballstemmer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snowballstemmer'
 pkgname=python-snowballstemmer
 version=1.2.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="snowballstemmer-${version}"
 build_style=python-module

From ebbd083848ced4227417bedacb81db1e46b3b0d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 500/873] python-socketIO-client: rebuild for Python 3.8.

---
 srcpkgs/python-socketIO-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-socketIO-client/template b/srcpkgs/python-socketIO-client/template
index 32fdac4117d..9495d7cf40b 100644
--- a/srcpkgs/python-socketIO-client/template
+++ b/srcpkgs/python-socketIO-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-socketIO-client'
 pkgname=python-socketIO-client
 version=0.7.2
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="socketIO_client"

From bf4912c1b4d342f253c99ee2ff30408cc72ef150 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 501/873] python3-sortedcontainers: rebuild for Python 3.8.

---
 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 2b531ded9b6..41d87d4ebd0 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.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="sortedcontainers-${version}"
 build_style=python3-module

From d111b9221a51cf160ffadb598d8ab186bac3562f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 502/873] python-soupsieve: rebuild for Python 3.8.

---
 srcpkgs/python-soupsieve/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-soupsieve/template b/srcpkgs/python-soupsieve/template
index 586553ca759..63b65c5910f 100644
--- a/srcpkgs/python-soupsieve/template
+++ b/srcpkgs/python-soupsieve/template
@@ -1,7 +1,7 @@
 # Template file for 'python-soupsieve'
 pkgname=python-soupsieve
 version=1.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="soupsieve-${version}"
 build_style=python-module

From 505955408532e39107891c66bb40c986d8a5da3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 503/873] python3-spake2: rebuild for Python 3.8.

---
 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 ff83afed1d6..dc0cdced747 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=1
+revision=2
 archs=noarch
 wrksrc="python-spake2-${version}"
 build_style=python3-module

From ed28cd6c33b5a607891182e27d4edc4b33e42c75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 504/873] python-sphinx_rtd_theme: rebuild for Python 3.8.

---
 srcpkgs/python-sphinx_rtd_theme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinx_rtd_theme/template b/srcpkgs/python-sphinx_rtd_theme/template
index 90def1c9d1d..ebd4f13da8f 100644
--- a/srcpkgs/python-sphinx_rtd_theme/template
+++ b/srcpkgs/python-sphinx_rtd_theme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinx_rtd_theme'
 pkgname=python-sphinx_rtd_theme
 version=0.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinx_rtd_theme-${version}"
 build_style=python-module

From dc5c184f3eb8653ed7620ead5c8c28a67daed07d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 505/873] python-sphinxcontrib: rebuild for Python 3.8.

---
 srcpkgs/python-sphinxcontrib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib/template b/srcpkgs/python-sphinxcontrib/template
index ce3befc56d7..c6789cc77f5 100644
--- a/srcpkgs/python-sphinxcontrib/template
+++ b/srcpkgs/python-sphinxcontrib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib'
 pkgname=python-sphinxcontrib
 version=1.0
-revision=2
+revision=3
 archs=noarch
 create_wrksrc=yes
 pycompile_module="sphinxcontrib"

From 044129ada15eeb9695b554976702e8af049dcfd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 506/873] python-sphinxcontrib-websupport: rebuild for Python
 3.8.

---
 srcpkgs/python-sphinxcontrib-websupport/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib-websupport/template b/srcpkgs/python-sphinxcontrib-websupport/template
index 2236e50b25b..5387dec6519 100644
--- a/srcpkgs/python-sphinxcontrib-websupport/template
+++ b/srcpkgs/python-sphinxcontrib-websupport/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib-websupport'
 pkgname=python-sphinxcontrib-websupport
 version=1.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinxcontrib-websupport-${version}"
 build_style=python-module

From d4fb3b78447ca7349e0a94033b436c3e0caa5dc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 507/873] python-sqlalchemy-migrate: rebuild for Python 3.8.

---
 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 cfdf6166695..bb002660c0f 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=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 863a48d9543b2461c699350ad32bb2ae925e30c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 508/873] python-sqlparse: rebuild for Python 3.8.

---
 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 29a477db392..0f8c6f8ea2e 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=1
+revision=2
 archs=noarch
 wrksrc="sqlparse-${version}"
 build_style=python-module

From b477355bf26b723b8ab7cab61902be1e4aaee7bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 509/873] python-stem: rebuild for Python 3.8.

---
 srcpkgs/python-stem/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index e04ae0a848c..e16e79d84bb 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stem'
 pkgname=python-stem
 version=1.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stem-${version/b/}"
 build_style=python-module

From 82d435bdfc12ea7b4a3dabd17da5113470bffe26 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 510/873] python-stevedore: rebuild for Python 3.8.

---
 srcpkgs/python-stevedore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stevedore/template b/srcpkgs/python-stevedore/template
index 281538211af..4f781304d3f 100644
--- a/srcpkgs/python-stevedore/template
+++ b/srcpkgs/python-stevedore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stevedore'
 pkgname=python-stevedore
 version=1.30.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stevedore-${version}"
 build_style=python-module

From 2afe8f7a4ce71437484d9258f44ead34ae2f6647 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 511/873] python-stormssh: rebuild for Python 3.8.

---
 srcpkgs/python-stormssh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stormssh/template b/srcpkgs/python-stormssh/template
index 250e838e582..11f63f67bba 100644
--- a/srcpkgs/python-stormssh/template
+++ b/srcpkgs/python-stormssh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stormssh'
 pkgname=python-stormssh
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=storm-${version}
 build_style=python-module

From 754addaa6845cd505b5d744fa4e54a66dba9c4ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 512/873] python-subliminal: rebuild for Python 3.8.

---
 srcpkgs/python-subliminal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-subliminal/template b/srcpkgs/python-subliminal/template
index 035ca844880..216c11bb4c0 100644
--- a/srcpkgs/python-subliminal/template
+++ b/srcpkgs/python-subliminal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-subliminal'
 pkgname=python-subliminal
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="subliminal-${version}"
 build_style=python-module

From da488d7b04fb3b00046be4293c33ae0809dad8e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 513/873] python-sympy: rebuild for Python 3.8.

---
 srcpkgs/python-sympy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sympy/template b/srcpkgs/python-sympy/template
index 21d8cf69840..d41c8a392b0 100644
--- a/srcpkgs/python-sympy/template
+++ b/srcpkgs/python-sympy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sympy'
 pkgname=python-sympy
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="sympy-${version}"
 build_style=python-module

From 78857098e3058d7f0df7ece8be24b84196d16921 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 514/873] python-tables: rebuild for Python 3.8.

---
 srcpkgs/python-tables/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tables/template b/srcpkgs/python-tables/template
index 644ae3d1a35..5f61fe8fb88 100644
--- a/srcpkgs/python-tables/template
+++ b/srcpkgs/python-tables/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tables'
 pkgname=python-tables
 version=3.5.2
-revision=1
+revision=2
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="tables"

From 45955cd565bccabbc642dce6684af05ad7651ba5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 515/873] python3-tabulate: rebuild for Python 3.8.

---
 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 19b61edd88c..6f142077300 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="tabulate-${version}"
 build_style=python3-module

From 285f369cadcf0d14f66db8045bb3fb979e69937f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 516/873] python-tempita: rebuild for Python 3.8.

---
 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 9e7123fbd9d..c1c75ee1cac 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=3
+revision=4
 archs=noarch
 wrksrc="Tempita-${version}"
 build_style=python-module

From efa04f85df83993e48813e00587c05cd6c722387 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 517/873] python-tempora: rebuild for Python 3.8.

---
 srcpkgs/python-tempora/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tempora/template b/srcpkgs/python-tempora/template
index fa1cbd4fbd1..866d163f367 100644
--- a/srcpkgs/python-tempora/template
+++ b/srcpkgs/python-tempora/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tempora'
 pkgname=python-tempora
 version=1.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tempora-${version}"
 build_style=python-module

From 783b09196fc04d62a7e7a220ffffc941acedfeeb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 518/873] python-termcolor: rebuild for Python 3.8.

---
 srcpkgs/python-termcolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-termcolor/template b/srcpkgs/python-termcolor/template
index 877e5e59d9b..73c18fc79eb 100644
--- a/srcpkgs/python-termcolor/template
+++ b/srcpkgs/python-termcolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-termcolor'
 pkgname=python-termcolor
 version=1.1.0
-revision=5
+revision=6
 archs=noarch
 wrksrc="termcolor-${version}"
 build_style=python-module

From 469ef1b462bbb9fb2d5d97b38e357b662f5009d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 519/873] python-terminado: rebuild for Python 3.8.

---
 srcpkgs/python-terminado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-terminado/template b/srcpkgs/python-terminado/template
index cdfe6163991..d649364d88d 100644
--- a/srcpkgs/python-terminado/template
+++ b/srcpkgs/python-terminado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-terminado'
 pkgname=python-terminado
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="terminado-${version}"
 build_style=python-module

From ced3b80cce126ab9d23dd2a4bc9505e23b5a4888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 520/873] python3-terminaltables: rebuild for Python 3.8.

---
 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 60ada7ffcb6..4f781eab76d 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=1
+revision=2
 archs=noarch
 wrksrc="terminaltables-${version}"
 build_style=python3-module

From 7a90fec1dbe0347ede0762e747d8edf378bd497c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 521/873] python-testpath: rebuild for Python 3.8.

---
 srcpkgs/python-testpath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-testpath/template b/srcpkgs/python-testpath/template
index bac7270fd40..abfc59900c0 100644
--- a/srcpkgs/python-testpath/template
+++ b/srcpkgs/python-testpath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-testpath'
 pkgname=python-testpath
 version=0.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="testpath-${version}"
 build_style=python-module

From f8761f2f7116f9b2691807d35d9836a34fbbbf32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 522/873] python3-text-unidecode: rebuild for Python 3.8.

---
 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 77163d9e0b6..b3b5aa95575 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="text-unidecode-${version}"
 build_style=python3-module

From 2d2f99664b0644e22e4876b9d54048008a392289 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 523/873] python-texttable: rebuild for Python 3.8.

---
 srcpkgs/python-texttable/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-texttable/template b/srcpkgs/python-texttable/template
index a9c5ec66db1..24bac87af6a 100644
--- a/srcpkgs/python-texttable/template
+++ b/srcpkgs/python-texttable/template
@@ -1,7 +1,7 @@
 # Template file for 'python-texttable'
 pkgname=python-texttable
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="texttable-${version}"
 build_style=python-module

From c671c144e8fe81895f6995347d19725f72165b25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 524/873] python3-tinycss: rebuild for Python 3.8.

---
 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 91fda6f808d..3b4717c234e 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=1
+revision=2
 archs=noarch
 wrksrc=tinycss-${version}
 build_style=python3-module

From 9aa3e8105128dc5e3b86a83bd0ae76e7d9c9cf86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 525/873] python-tmuxp: rebuild for Python 3.8.

---
 srcpkgs/python-tmuxp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tmuxp/template b/srcpkgs/python-tmuxp/template
index 00c86730cbe..45b4a9772b2 100644
--- a/srcpkgs/python-tmuxp/template
+++ b/srcpkgs/python-tmuxp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tmuxp'
 pkgname=python-tmuxp
 version=1.5.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="tmuxp-${version}"
 build_style=python-module

From 995158f34c29d704b44eae2b32df801023781096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 526/873] python-toml: rebuild for Python 3.8.

---
 srcpkgs/python-toml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-toml/template b/srcpkgs/python-toml/template
index 0eee1b0b2c3..2fd6eaa0cea 100644
--- a/srcpkgs/python-toml/template
+++ b/srcpkgs/python-toml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-toml'
 pkgname=python-toml
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="toml-${version}"
 build_style=python-module

From 6270afd962719dd0e9b876b40ab7bf9be9936cf5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 527/873] python-tornado: rebuild for Python 3.8.

---
 srcpkgs/python-tornado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tornado/template b/srcpkgs/python-tornado/template
index 7e5700177f5..bd558d251f5 100644
--- a/srcpkgs/python-tornado/template
+++ b/srcpkgs/python-tornado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tornado'
 pkgname=python-tornado
 version=5.1.1
-revision=1
+revision=2
 wrksrc="tornado-${version}"
 build_style=python-module
 pycompile_module="tornado"

From cd9e416288ae101465f91c75453326fdead7d148 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 528/873] python-tqdm: rebuild for Python 3.8.

---
 srcpkgs/python-tqdm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tqdm/template b/srcpkgs/python-tqdm/template
index 69369bfd6b9..ef1f07127ad 100644
--- a/srcpkgs/python-tqdm/template
+++ b/srcpkgs/python-tqdm/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tqdm'
 pkgname=python-tqdm
 version=4.36.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tqdm-${version}"
 build_style=python-module

From 4ef8d34c3ab05cf43591d92220fc001007644a6d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 529/873] python-traitlets: rebuild for Python 3.8.

---
 srcpkgs/python-traitlets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-traitlets/template b/srcpkgs/python-traitlets/template
index d2d1b85edb6..797dd0268da 100644
--- a/srcpkgs/python-traitlets/template
+++ b/srcpkgs/python-traitlets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-traitlets'
 pkgname=python-traitlets
 version=4.3.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="traitlets-${version}"
 build_style=python-module

From f41edcb16535bb92b415439644ee01a61da14478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 530/873] python3-transifex-client: rebuild for Python 3.8.

---
 srcpkgs/python3-transifex-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-transifex-client/template b/srcpkgs/python3-transifex-client/template
index 77ca15313e0..5ea767b5a7d 100644
--- a/srcpkgs/python3-transifex-client/template
+++ b/srcpkgs/python3-transifex-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-transifex-client'
 pkgname=python3-transifex-client
 version=0.13.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="transifex-client-${version}"
 build_style=python3-module

From d2c27a7fe61e206ccbf655146feec32e4b13cfc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 531/873] python3-treq: rebuild for Python 3.8.

---
 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 8f210d13489..e46e1e7e7a5 100644
--- a/srcpkgs/python3-treq/template
+++ b/srcpkgs/python3-treq/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-treq'
 pkgname=python3-treq
 version=18.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="treq-${version}"
 build_style=python3-module

From 26b5427ba0e26d8712ebe081a774396e3ea39d76 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 532/873] python-ttystatus: rebuild for Python 3.8.

---
 srcpkgs/python-ttystatus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ttystatus/template b/srcpkgs/python-ttystatus/template
index 9fbefad3461..43e87ddcdf0 100644
--- a/srcpkgs/python-ttystatus/template
+++ b/srcpkgs/python-ttystatus/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ttystatus'
 pkgname=python-ttystatus
 version=0.38
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="ttystatus"

From dbf349fac2110dc33ad6d676748e46240dec1fbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 533/873] python-twitter: rebuild for Python 3.8.

---
 srcpkgs/python-twitter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-twitter/template b/srcpkgs/python-twitter/template
index c299b28dedf..e5e7194078a 100644
--- a/srcpkgs/python-twitter/template
+++ b/srcpkgs/python-twitter/template
@@ -1,7 +1,7 @@
 # Template file for 'python-twitter'
 pkgname=python-twitter
 version=3.5
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="twitter"

From 58eab12e88f689c694ef474e09d2266b77b5bcc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 534/873] python3-txacme: rebuild for Python 3.8.

---
 srcpkgs/python3-txacme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-txacme/template b/srcpkgs/python3-txacme/template
index e6becf593e7..c678addda4d 100644
--- a/srcpkgs/python3-txacme/template
+++ b/srcpkgs/python3-txacme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txacme'
 pkgname=python3-txacme
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="txacme-${version}"
 build_style=python3-module

From a1a3464258c255e0b73cbdb47e0337d3b8af473e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 535/873] python3-txaio: rebuild for Python 3.8.

---
 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 fa13338cd30..8163f5c90fd 100644
--- a/srcpkgs/python3-txaio/template
+++ b/srcpkgs/python3-txaio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txaio'
 pkgname=python3-txaio
 version=18.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="txaio-${version}"
 build_style=python3-module

From 66d08c9f4945499ccd01b127d7ec1f8cfd468dd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 536/873] python3-txtorcon: rebuild for Python 3.8.

---
 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 3018a65e457..a10ab59c582 100644
--- a/srcpkgs/python3-txtorcon/template
+++ b/srcpkgs/python3-txtorcon/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txtorcon'
 pkgname=python3-txtorcon
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="txtorcon-${version}"
 build_style=python3-module

From f3bf9db3f8b699c67eebc7fa0278fca9de892d75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 537/873] python3-typed-ast: update to 1.4.0.

---
 srcpkgs/python3-typed-ast/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-typed-ast/template b/srcpkgs/python3-typed-ast/template
index ec5b5b9df11..b38f0fe065c 100644
--- a/srcpkgs/python3-typed-ast/template
+++ b/srcpkgs/python3-typed-ast/template
@@ -1,8 +1,8 @@
 # Template file for 'python3-typed-ast'
 pkgname=python3-typed-ast
-version=1.3.4
+version=1.4.0
 revision=1
-wrksrc="typed-ast-${version}"
+wrksrc="typed_ast-${version}"
 build_style=python3-module
 pycompile_module="typed_ast"
 hostmakedepends="python3-devel python3-setuptools"
@@ -11,6 +11,6 @@ short_desc="Ast module with type comment support"
 maintainer="whoami <whoami@systemli.org>"
 license="Apache-2.0"
 homepage="https://github.com/python/typed_ast"
-distfiles="${PYPI_SITE}/t/typed-ast/typed-ast-${version}.tar.gz"
-checksum=68c362848d9fb71d3c3e5f43c09974a0ae319144634e7a47db62f0f2a54a7fa7
+distfiles="${PYPI_SITE}/t/typed-ast/typed_ast-${version}.tar.gz"
+checksum=66480f95b8167c9c5c5c87f32cf437d585937970f3fc24386f313a4c97b44e34
 nocross="https://travis-ci.org/void-linux/void-packages/jobs/509366923#L1009"

From d977434aa35e2c6bc03c5db7514f5409eb21a2a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 538/873] python3-typing_extensions: rebuild for Python 3.8.

---
 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 ab96df4eb2d..605af46216d 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=3.6.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module

From d1368b489e196a385edf9b15df4da773505f8a5e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 539/873] python-tzlocal: rebuild for Python 3.8.

---
 srcpkgs/python-tzlocal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tzlocal/template b/srcpkgs/python-tzlocal/template
index 396eada3982..684d2a21b40 100644
--- a/srcpkgs/python-tzlocal/template
+++ b/srcpkgs/python-tzlocal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tzlocal'
 pkgname=python-tzlocal
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tzlocal-${version}"
 build_style=python-module

From 0ec72579de99edead05daf85e7cac5e0e2ab641b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 540/873] python-unittest-mixins: rebuild for Python 3.8.

---
 srcpkgs/python-unittest-mixins/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-unittest-mixins/template b/srcpkgs/python-unittest-mixins/template
index 6f7c7204112..2ff5c497523 100644
--- a/srcpkgs/python-unittest-mixins/template
+++ b/srcpkgs/python-unittest-mixins/template
@@ -1,7 +1,7 @@
 # Template file for 'python-unittest-mixins'
 pkgname=python-unittest-mixins
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From a5e3289470d7f0e25e09237aa9463d28817818c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 541/873] python3-unpaddedbase64: rebuild for Python 3.8.

---
 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 37df2c1d642..06a47db3b64 100644
--- a/srcpkgs/python3-unpaddedbase64/template
+++ b/srcpkgs/python3-unpaddedbase64/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-unpaddedbase64'
 pkgname=python3-unpaddedbase64
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-unpaddedbase64-${version}"
 build_style=python3-module

From 13043751d10b741546f419a7e9089a5b252fd5c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 542/873] python-urbandict: rebuild for Python 3.8.

---
 srcpkgs/python-urbandict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urbandict/template b/srcpkgs/python-urbandict/template
index ff09e963fa7..ed359c744be 100644
--- a/srcpkgs/python-urbandict/template
+++ b/srcpkgs/python-urbandict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urbandict'
 pkgname=python-urbandict
 version=0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="urbandict-${version}"
 build_style=python-module

From a15bf0893e7a65a070751099b3ddca9172b49912 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 543/873] python-uritemplate: rebuild for Python 3.8.

---
 srcpkgs/python-uritemplate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-uritemplate/template b/srcpkgs/python-uritemplate/template
index 7a530fee03b..cdcda419efe 100644
--- a/srcpkgs/python-uritemplate/template
+++ b/srcpkgs/python-uritemplate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-uritemplate'
 pkgname=python-uritemplate
 version=3.0.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 43c97a015ea83b2b0934ea864a84b324ec83f31a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 544/873] python3-urlgrabber: rebuild for Python 3.8.

---
 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 087087d5ed1..eef67c8e13c 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=1
+revision=2
 archs=noarch
 wrksrc="urlgrabber-${version}"
 build_style=python3-module

From 016dbcff2bb0c1709814f4da4fe214d551e3d4cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 545/873] python-urllib3: rebuild for Python 3.8.

---
 srcpkgs/python-urllib3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urllib3/template b/srcpkgs/python-urllib3/template
index 8056518c9c1..1ff21f7555d 100644
--- a/srcpkgs/python-urllib3/template
+++ b/srcpkgs/python-urllib3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urllib3'
 pkgname=python-urllib3
 version=1.25.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="urllib3-${version}"
 build_style=python-module

From 9629da352be38a0f14bcb680c7fc05dd1d1167f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 546/873] python-urwid: rebuild for Python 3.8.

---
 srcpkgs/python-urwid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwid/template b/srcpkgs/python-urwid/template
index ae6722b1135..7adf8b76b96 100644
--- a/srcpkgs/python-urwid/template
+++ b/srcpkgs/python-urwid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwid'
 pkgname=python-urwid
 version=2.0.1
-revision=2
+revision=3
 wrksrc="urwid-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"

From 4be978b1173afce93e7ff39f6e577059f4c7dd4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 547/873] python-urwidtrees: rebuild for Python 3.8.

---
 srcpkgs/python-urwidtrees/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwidtrees/template b/srcpkgs/python-urwidtrees/template
index be0e906addf..62d214489e2 100644
--- a/srcpkgs/python-urwidtrees/template
+++ b/srcpkgs/python-urwidtrees/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwidtrees'
 pkgname=python-urwidtrees
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="urwidtrees-${version}"
 build_style=python-module

From c9f3ad0ed793593060952aa365e888244dfd07e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 548/873] python3-usb: rebuild for Python 3.8.

---
 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 a081ee5ba76..d26c24df669 100644
--- a/srcpkgs/python3-usb/template
+++ b/srcpkgs/python3-usb/template
@@ -2,7 +2,7 @@
 pkgname=python3-usb
 _pkgname=pyusb
 version=1.0.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From 454ef49754696a81de599e7fa6cf9cab31ccbc31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 549/873] python-utils: rebuild for Python 3.8.

---
 srcpkgs/python-utils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-utils/template b/srcpkgs/python-utils/template
index e881e70c0f0..6745df121a6 100644
--- a/srcpkgs/python-utils/template
+++ b/srcpkgs/python-utils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-utils'
 pkgname=python-utils
 version=2.3.0
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 wrksrc="python-utils-${version}"

From eef5c75b93453defdcb8def5b34c20f20cda0fc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 550/873] python3-validators: rebuild for Python 3.8.

---
 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 29b9fc74c30..6d9da94c4bb 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.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="validators-${version}"
 build_style=python3-module

From 53ce0ff21de84f26405d0314002bb11e85903128 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 551/873] python3-vdf: rebuild for Python 3.8.

---
 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 44c635ecdd6..88bd521beaa 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.2
-revision=1
+revision=2
 wrksrc=vdf-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From f720d6ed8267fa4b27a7ce83dd3a265a18cd13b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 552/873] python-vint: rebuild for Python 3.8.

---
 srcpkgs/python-vint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vint/template b/srcpkgs/python-vint/template
index 4ca693f7eb2..62c663bf18e 100644
--- a/srcpkgs/python-vint/template
+++ b/srcpkgs/python-vint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vint'
 pkgname=python-vint
 version=0.3.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="vim-vint-${version}"
 build_style=python-module

From 573eadbcb861065b712050cf6e7fd200c33a73b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 553/873] python-virtualenv: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv/template b/srcpkgs/python-virtualenv/template
index 1f9166e79a2..cdeda28c53e 100644
--- a/srcpkgs/python-virtualenv/template
+++ b/srcpkgs/python-virtualenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv'
 pkgname=python-virtualenv
 version=16.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="virtualenv-${version}"
 build_style=python-module

From 25eda2949787b488dfc7cfc6512d02a4971d4f96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 554/873] python-virtualenv-clone: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv-clone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv-clone/template b/srcpkgs/python-virtualenv-clone/template
index 3c9f601bc6e..273b9ddf6d3 100644
--- a/srcpkgs/python-virtualenv-clone/template
+++ b/srcpkgs/python-virtualenv-clone/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv-clone'
 pkgname=python-virtualenv-clone
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5a922ea064a496fb01ff970e45a43ef51561b373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 555/873] python3-virustotal-api: rebuild for Python 3.8.

---
 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 2bc6592c91f..fc362c03b39 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=1
+revision=2
 archs=noarch
 wrksrc="virustotal-api-${version}"
 build_style=python3-module

From 65deaff01a3a9a5d82641fe121fdb2964b75346f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 556/873] python-vispy: rebuild for Python 3.8.

---
 srcpkgs/python-vispy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vispy/template b/srcpkgs/python-vispy/template
index b757e5a271f..624ade6f12b 100644
--- a/srcpkgs/python-vispy/template
+++ b/srcpkgs/python-vispy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vispy'
 pkgname=python-vispy
 version=0.6.1
-revision=1
+revision=2
 wrksrc="vispy-${version}"
 build_style=python-module
 pycompile_module="vispy"

From 5e47d846dedfdbef61bd10a33928ce13b600c648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 557/873] python-vobject: rebuild for Python 3.8.

---
 srcpkgs/python-vobject/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vobject/template b/srcpkgs/python-vobject/template
index 54f575aa1a1..2c1c215527c 100644
--- a/srcpkgs/python-vobject/template
+++ b/srcpkgs/python-vobject/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vobject'
 pkgname=python-vobject
 version=0.9.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="vobject-${version}"
 build_style=python-module

From 8125ffd3d4822ca6bf81508ed8b859e079cd9437 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 558/873] python-voluptuous: rebuild for Python 3.8.

---
 srcpkgs/python-voluptuous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-voluptuous/template b/srcpkgs/python-voluptuous/template
index fd44ae2e324..1dd5de27491 100644
--- a/srcpkgs/python-voluptuous/template
+++ b/srcpkgs/python-voluptuous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-voluptuous'
 pkgname=python-voluptuous
 version=0.11.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="voluptuous-${version}"
 build_style=python-module

From 608126ee8043f8d45a8e56608f99e0df6cc2ee9e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 559/873] python-watchdog: rebuild for Python 3.8.

---
 srcpkgs/python-watchdog/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchdog/template b/srcpkgs/python-watchdog/template
index f6027c3b5ca..2eea6397f00 100644
--- a/srcpkgs/python-watchdog/template
+++ b/srcpkgs/python-watchdog/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchdog'
 pkgname=python-watchdog
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="watchdog-${version}"
 build_style=python-module

From a54fc09b58f905a0ed5cd5892db67b7c4ea6ae9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 560/873] python-watchman: rebuild for Python 3.8.

---
 srcpkgs/python-watchman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchman/template b/srcpkgs/python-watchman/template
index 4c41c275ca2..97400668d64 100644
--- a/srcpkgs/python-watchman/template
+++ b/srcpkgs/python-watchman/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchman'
 pkgname=python-watchman
 version=1.4.1
-revision=2
+revision=3
 wrksrc="pywatchman-${version}"
 build_style=python-module
 pycompile_module="pywatchman"

From 4dd6084e6c30a25fb4ff3c44bf2c751eaab07715 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 561/873] python-wcwidth: rebuild for Python 3.8.

---
 srcpkgs/python-wcwidth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wcwidth/template b/srcpkgs/python-wcwidth/template
index 34bc22cbcb6..8ec6d17450c 100644
--- a/srcpkgs/python-wcwidth/template
+++ b/srcpkgs/python-wcwidth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wcwidth'
 pkgname=python-wcwidth
 version=0.1.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="wcwidth-${version}"
 build_style=python-module

From cafaf5868e58cb26c2cdd29d0d1b52f9cf1e31ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 562/873] python-webassets: rebuild for Python 3.8.

---
 srcpkgs/python-webassets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webassets/template b/srcpkgs/python-webassets/template
index 3ad5475bd17..789be9684f7 100644
--- a/srcpkgs/python-webassets/template
+++ b/srcpkgs/python-webassets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webassets'
 pkgname=python-webassets
 version=0.12.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 88d8fa4eb1ca72857d5a1cab8a4f7495a9af1595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 563/873] python-webencodings: rebuild for Python 3.8.

---
 srcpkgs/python-webencodings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webencodings/template b/srcpkgs/python-webencodings/template
index 5a05af10835..f047a9e3c52 100644
--- a/srcpkgs/python-webencodings/template
+++ b/srcpkgs/python-webencodings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webencodings'
 pkgname=python-webencodings
 version=0.5.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="webencodings-${version}"
 build_style=python-module

From 81c9d07c0e756cc87a6cd2c444c0b2f0987463da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 564/873] python-websocket-client: rebuild for Python 3.8.

---
 srcpkgs/python-websocket-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-websocket-client/template b/srcpkgs/python-websocket-client/template
index 8aa276655cb..3df8ab42b36 100644
--- a/srcpkgs/python-websocket-client/template
+++ b/srcpkgs/python-websocket-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-websocket-client'
 pkgname=python-websocket-client
 version=0.56.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="websocket_client-${version}"
 build_style=python-module

From 97fc927913b3f2682b7ddf73982008e9fdc1e42d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 565/873] python-wheel: rebuild for Python 3.8.

---
 srcpkgs/python-wheel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wheel/template b/srcpkgs/python-wheel/template
index 11c50bd65e6..11aeaf42316 100644
--- a/srcpkgs/python-wheel/template
+++ b/srcpkgs/python-wheel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wheel'
 pkgname=python-wheel
 version=0.32.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="wheel-${version}"
 build_style=python-module

From 861d20f2f112cd829f2f06f746680e2c034a812f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 566/873] python-wikipedia: rebuild for Python 3.8.

---
 srcpkgs/python-wikipedia/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wikipedia/template b/srcpkgs/python-wikipedia/template
index e6ebf65f7c2..f8a69755b74 100644
--- a/srcpkgs/python-wikipedia/template
+++ b/srcpkgs/python-wikipedia/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wikipedia'
 pkgname=python-wikipedia
 version=1.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="wikipedia-${version}"
 build_style=python-module

From c58e9b08de69bd19aa3bcf91ec42d1b626a2a6bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 567/873] python-wrapt: rebuild for Python 3.8.

---
 srcpkgs/python-wrapt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wrapt/template b/srcpkgs/python-wrapt/template
index a3a237aa08d..c2d2850bf5a 100644
--- a/srcpkgs/python-wrapt/template
+++ b/srcpkgs/python-wrapt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wrapt'
 pkgname=python-wrapt
 version=1.10.11
-revision=3
+revision=4
 wrksrc="wrapt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From f65cbaf6b92acb78d54d3b498924285bce64fb66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 568/873] python-wsproto: rebuild for Python 3.8.

---
 srcpkgs/python-wsproto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wsproto/template b/srcpkgs/python-wsproto/template
index 88b08f796d4..a93a799be0a 100644
--- a/srcpkgs/python-wsproto/template
+++ b/srcpkgs/python-wsproto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wsproto'
 pkgname=python-wsproto
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="wsproto-${version}"
 build_style=python-module

From 1b60fb796f8ac377a2e31dc0503df215c27fc59e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 569/873] python-xapp: rebuild for Python 3.8.

---
 srcpkgs/python-xapp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xapp/template b/srcpkgs/python-xapp/template
index 9b6938113f2..798041eb946 100644
--- a/srcpkgs/python-xapp/template
+++ b/srcpkgs/python-xapp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xapp'
 pkgname=python-xapp
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="xapp"

From 415bec8de0abe2772c407df9db650bd06ba122ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 570/873] python-xdg: rebuild for Python 3.8.

---
 srcpkgs/python-xdg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xdg/template b/srcpkgs/python-xdg/template
index afa6c180043..4e819c8bec7 100644
--- a/srcpkgs/python-xdg/template
+++ b/srcpkgs/python-xdg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xdg'
 pkgname=python-xdg
 version=0.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyxdg-${version}"
 build_style=python-module

From 4518feeb499caa6631ef29ead0439c5bcc67a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 571/873] python-xlib: rebuild for Python 3.8.

---
 srcpkgs/python-xlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xlib/template b/srcpkgs/python-xlib/template
index 1f97c4117d4..e67d1d82e73 100644
--- a/srcpkgs/python-xlib/template
+++ b/srcpkgs/python-xlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xlib'
 pkgname=python-xlib
 version=0.25
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="Xlib"

From 1cef928049b5216468e701acce714fc14d79694f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 572/873] python-xmldiff: rebuild for Python 3.8.

---
 srcpkgs/python-xmldiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmldiff/template b/srcpkgs/python-xmldiff/template
index a0a8004ea7b..4f3cc2d27b7 100644
--- a/srcpkgs/python-xmldiff/template
+++ b/srcpkgs/python-xmldiff/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmldiff'
 pkgname=python-xmldiff
 version=2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmldiff-${version}"
 build_style=python-module

From cefcbea2ec7904b0c1ad16ec32963bf430b27c4a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 573/873] python-xmltodict: rebuild for Python 3.8.

---
 srcpkgs/python-xmltodict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmltodict/template b/srcpkgs/python-xmltodict/template
index a48e6d46aa6..b3d7ef042e8 100644
--- a/srcpkgs/python-xmltodict/template
+++ b/srcpkgs/python-xmltodict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmltodict'
 pkgname=python-xmltodict
 version=0.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmltodict-${version}"
 build_style=python-module

From 889d5fe9fe9f1830bec336ac52bd8bd32f47f0a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 574/873] python-yaml: rebuild for Python 3.8.

---
 srcpkgs/python-yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yaml/template b/srcpkgs/python-yaml/template
index 8a7caf1d99e..e3bad0ae59b 100644
--- a/srcpkgs/python-yaml/template
+++ b/srcpkgs/python-yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yaml'
 pkgname=python-yaml
 version=5.1.2
-revision=1
+revision=2
 wrksrc="PyYAML-${version}"
 build_style=python-module
 pycompile_module="yaml"

From 1b3e89ca272ae28a62064bf83eaff84332307682 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 575/873] python-yamllint: rebuild for Python 3.8.

---
 srcpkgs/python-yamllint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yamllint/template b/srcpkgs/python-yamllint/template
index 1a05e1043bb..d0b51ba637a 100644
--- a/srcpkgs/python-yamllint/template
+++ b/srcpkgs/python-yamllint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yamllint'
 pkgname=python-yamllint
 version=1.15.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="yamllint-${version}"
 build_style=python-module

From b233bcb50542e39ba02899ef3d1b833e385204e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 576/873] python3-yarl: rebuild for Python 3.8.

---
 srcpkgs/python3-yarl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-yarl/template b/srcpkgs/python3-yarl/template
index 222f176cfcf..ecb79a3cc9c 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.3.0
-revision=2
+revision=3
 wrksrc="yarl-${version}"
 build_style=python3-module
 pycompile_module="yarl"

From 484c2559f18644c63342db467c703e2e998e89b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 577/873] python-zc.lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-zc.lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zc.lockfile/template b/srcpkgs/python-zc.lockfile/template
index cb0bee99506..b77071af04f 100644
--- a/srcpkgs/python-zc.lockfile/template
+++ b/srcpkgs/python-zc.lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zc.lockfile'
 pkgname=python-zc.lockfile
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 364e398c8dd7e3dd141ceb1c22626ecf2a5b9b32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 578/873] python3-zeroconf: rebuild for Python 3.8.

---
 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 497a8bc6b69..dda37bd3dc4 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.23.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-zeroconf-${version}"
 build_style=python3-module

From 22b5d6236d8f0ff0050135b2e77eca608519b1ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 579/873] python3-zipp: rebuild for Python 3.8.

---
 srcpkgs/python3-zipp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-zipp/template b/srcpkgs/python3-zipp/template
index 8445c10825c..ba682915beb 100644
--- a/srcpkgs/python3-zipp/template
+++ b/srcpkgs/python3-zipp/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-zipp'
 pkgname=python3-zipp
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="zipp-${version}"
 build_style=python3-module

From c5c37d6e890a553e458333e610ab56b1a5c9b516 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 580/873] python-zipstream: rebuild for Python 3.8.

---
 srcpkgs/python-zipstream/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zipstream/template b/srcpkgs/python-zipstream/template
index 89079e21b22..2c7390127ac 100644
--- a/srcpkgs/python-zipstream/template
+++ b/srcpkgs/python-zipstream/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zipstream'
 pkgname=python-zipstream
 version=1.1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="python-zipstream-${version}"
 build_style=python-module

From bc31e25a00839c9d3cc5ac70edf0485ee4b21d4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 581/873] python3-zope.cachedescriptors: rebuild for Python
 3.8.

---
 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 bdd5ef41e21..1f1fae5b27b 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.3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="zope.cachedescriptors-${version}"
 build_style=python3-module

From 40a63988f3c2db41391f0a7ab6cde24a9b79ed05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 582/873] python-zope.component: rebuild for Python 3.8.

---
 srcpkgs/python-zope.component/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.component/template b/srcpkgs/python-zope.component/template
index 7cea5b9d71d..66ef109a4aa 100644
--- a/srcpkgs/python-zope.component/template
+++ b/srcpkgs/python-zope.component/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.component'
 pkgname=python-zope.component
 version=4.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 799496c35db93c88e6d00e4b41eeca8b4af5b188 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 583/873] python-zope.event: rebuild for Python 3.8.

---
 srcpkgs/python-zope.event/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.event/template b/srcpkgs/python-zope.event/template
index 3c7fb8dfd6e..6518cb4529b 100644
--- a/srcpkgs/python-zope.event/template
+++ b/srcpkgs/python-zope.event/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.event'
 pkgname=python-zope.event
 version=4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d77b16ecad39877131af8a9c01ea925b33737b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 584/873] python-zope.interface: rebuild for Python 3.8.

---
 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 d3c57be85f7..1dbcbecd377 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=4.6.0
-revision=2
+revision=3
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="zope"

From e5cb80612a71c54facf607c52c7a385badeba668 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 585/873] python3-pivy: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-pivy/patches/73cd928f.patch | 36 +++++++++++++++++++++
 srcpkgs/python3-pivy/template               |  2 +-
 2 files changed, 37 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/python3-pivy/patches/73cd928f.patch

diff --git a/srcpkgs/python3-pivy/patches/73cd928f.patch b/srcpkgs/python3-pivy/patches/73cd928f.patch
new file mode 100644
index 00000000000..edff803822a
--- /dev/null
+++ b/srcpkgs/python3-pivy/patches/73cd928f.patch
@@ -0,0 +1,36 @@
+From 73cd928fe1a9c2abbe6f28844a7fc695ad11d7cf Mon Sep 17 00:00:00 2001
+From: Peter Lama <peterldev94@gmail.com>
+Date: Fri, 24 Aug 2018 17:25:47 -0700
+Subject: [PATCH] Fix issue #39: PyUnicode_AsUTF8 returns const char*
+
+Even with python 2, it doesn't seem like char* is needed
+
+--- Inventor/nodes/SoMarkerSet.i
++++ Inventor/nodes/SoMarkerSet.i
+@@ -5,7 +5,7 @@
+         short WIDTH, HEIGHT;
+         size.getValue(WIDTH, HEIGHT);
+         short BYTEWIDTH = (WIDTH + 7) / 2;
+-        char* coin_marker;
++        const char* coin_marker;
+ #ifdef PY_2
+         if (PyString_Check(string))
+         {
+@@ -49,4 +49,4 @@
+         delete[] bitmapbytes;
+         bitmapbytes = NULL;
+     }
+-}
+\ No newline at end of file
++}
+--- Inventor/sensors/SoSensor.i
++++ Inventor/sensors/SoSensor.i
+@@ -4,7 +4,7 @@ SoSensorPythonCB(void * data, SoSensor * sensor)
+ {
+   PyGILState_STATE gil = PyGILState_Ensure();
+   swig_type_info * swig_type = 0;
+-  char * sensor_cast_name = NULL;
++  const char * sensor_cast_name = NULL;
+   PyObject * func, * arglist;
+   PyObject * result, * pysensor;
+ 
diff --git a/srcpkgs/python3-pivy/template b/srcpkgs/python3-pivy/template
index 4a733e805e3..9caa13837e2 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.4
-revision=1
+revision=2
 wrksrc="Coin3D-${pkgname#python3-}-a84100beff22"
 build_style=python3-module
 pycompile_module="pivy"

From 7d8cfe1721327d4b8695c6abc56d012b27989c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 586/873] python-tweepy: update to 3.8.0.

---
 srcpkgs/python-tweepy/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python-tweepy/template b/srcpkgs/python-tweepy/template
index ef61039dac5..4605bbf83ea 100644
--- a/srcpkgs/python-tweepy/template
+++ b/srcpkgs/python-tweepy/template
@@ -1,6 +1,6 @@
 # Template file for 'python-tweepy'
 pkgname=python-tweepy
-version=3.7.0
+version=3.8.0
 revision=1
 archs=noarch
 wrksrc="tweepy-${version}"
@@ -14,8 +14,8 @@ license="MIT"
 homepage="https://github.com/tweepy/tweepy"
 distfiles="${PYPI_SITE}/t/tweepy/tweepy-${version}.tar.gz
  https://raw.githubusercontent.com/tweepy/tweepy/master/LICENSE>LICENSE.txt"
-checksum="fe85a79f58a01dd335968523b91c5fce760e7fe78bf25a6e71c72204fe499d0b
- deeeae0dcc22dbf108a801b8dc4e484bcc1bfb541b1a4f4615ab3e61def44fb5"
+checksum="8abd828ba51a85a2b5bb7373715d6d3bb32d18ac624e3a4db02e4ef8ab48316b
+ bf9bc5b9dcb8421bb3c342bb7fd29194688e1262b50766bd71b21a07461e74b7"
 
 post_install() {
 	vlicense ../LICENSE.txt

From 5f654f2f6a7eca9a50adb53af9037466723dd82c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 587/873] Electron-Cash: rebuild for Python 3.8.

---
 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 2db05c94832..08670c5f08d 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.0.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electroncash electroncash_gui electroncash_plugins"

From 931f125f8699e33cb16c8ed43a5e910d0056db6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 588/873] OpenLP: rebuild for Python 3.8.

---
 srcpkgs/OpenLP/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/OpenLP/template b/srcpkgs/OpenLP/template
index fb417f8d05e..ccae6d0282e 100644
--- a/srcpkgs/OpenLP/template
+++ b/srcpkgs/OpenLP/template
@@ -1,7 +1,7 @@
 # Template file for 'OpenLP'
 pkgname=OpenLP
 version=2.4.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="openlp"

From 21b02367e81c8635c88830fd008c0ba44ffcccff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 589/873] PhotoCollage: rebuild for Python 3.8.

---
 srcpkgs/PhotoCollage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/PhotoCollage/template b/srcpkgs/PhotoCollage/template
index 2c55ca87ce0..9997d1e7d98 100644
--- a/srcpkgs/PhotoCollage/template
+++ b/srcpkgs/PhotoCollage/template
@@ -1,7 +1,7 @@
 # Template file for 'PhotoCollage'
 pkgname=PhotoCollage
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="photocollage"

From 49dffe4070ca7dff3c38379b8df9d9b0d04395ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 590/873] ReText: rebuild for Python 3.8.

---
 srcpkgs/ReText/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ReText/template b/srcpkgs/ReText/template
index cc092ee6a36..a6551fbdf7c 100644
--- a/srcpkgs/ReText/template
+++ b/srcpkgs/ReText/template
@@ -1,7 +1,7 @@
 # Template file for 'ReText'
 pkgname=ReText
 version=7.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ReText"

From 225e30aaea5daebb0d4fc36c6d73424ad6fb1ec5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 591/873] SoapySDR: rebuild for Python 3.8.

---
 srcpkgs/SoapySDR/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/SoapySDR/template b/srcpkgs/SoapySDR/template
index 1bb66ce0689..bcfe45dc78a 100644
--- a/srcpkgs/SoapySDR/template
+++ b/srcpkgs/SoapySDR/template
@@ -1,7 +1,7 @@
 # Template file for 'SoapySDR'
 pkgname=SoapySDR
 version=0.7.1
-revision=1
+revision=2
 wrksrc="${pkgname}-soapy-sdr-${version}"
 build_style=cmake
 pycompile_module="SoapySDR.py"

From 2e64750e75e61296567ebb0053c46081cbab8e13 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 592/873] Solaar: rebuild for Python 3.8.

---
 srcpkgs/Solaar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Solaar/template b/srcpkgs/Solaar/template
index 2e8f4112e0e..86cab83d497 100644
--- a/srcpkgs/Solaar/template
+++ b/srcpkgs/Solaar/template
@@ -1,7 +1,7 @@
 # Template file for 'Solaar'
 pkgname=Solaar
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="hidapi logitech_receiver solaar"

From 21eb59c332d0765268a9b3a5442e4e265144a4ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 593/873] Trimage: rebuild for Python 3.8.

---
 srcpkgs/Trimage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Trimage/template b/srcpkgs/Trimage/template
index 14fc1d1bd1c..c9f4b047ccd 100644
--- a/srcpkgs/Trimage/template
+++ b/srcpkgs/Trimage/template
@@ -1,7 +1,7 @@
 # Template file for 'Trimage'
 pkgname=Trimage
 version=1.0.6
-revision=1
+revision=2
 wrksrc="Trimage-${version}"
 build_style=python3-module
 hostmakedepends="python3"

From 51428dec66979d2e47361fb2af5e7ad35acbe530 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 594/873] TwitchNotifier: rebuild for Python 3.8.

---
 srcpkgs/TwitchNotifier/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/TwitchNotifier/template b/srcpkgs/TwitchNotifier/template
index 01153bcc710..3bbba11db49 100644
--- a/srcpkgs/TwitchNotifier/template
+++ b/srcpkgs/TwitchNotifier/template
@@ -1,7 +1,7 @@
 # Template file for 'TwitchNotifier'
 pkgname=TwitchNotifier
 version=0.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-devel"
 makedepends="python3-devel"

From 18ad02f16088cf17e66f60da882ead88b4872617 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 595/873] Uranium: rebuild for Python 3.8.

---
 srcpkgs/Uranium/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Uranium/template b/srcpkgs/Uranium/template
index 193d5e211df..7a9509c2079 100644
--- a/srcpkgs/Uranium/template
+++ b/srcpkgs/Uranium/template
@@ -1,7 +1,7 @@
 # Template file for 'Uranium'
 pkgname=Uranium
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=cmake
 pycompile_module="UM"

From 1bfabd6cc63a8b03b99500dc59e362061f7549e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 596/873] afew: rebuild for Python 3.8.

---
 srcpkgs/afew/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/afew/template b/srcpkgs/afew/template
index a9156bbc902..f4b10098e66 100644
--- a/srcpkgs/afew/template
+++ b/srcpkgs/afew/template
@@ -1,7 +1,7 @@
 # Template file for 'afew'
 pkgname=afew
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="afew"

From f0695c0a0e527ead9d61cbbd52e872f5a6e7f422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 597/873] alot: rebuild for Python 3.8.

---
 srcpkgs/alot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/alot/template b/srcpkgs/alot/template
index 4ff75637282..c8e29e36297 100644
--- a/srcpkgs/alot/template
+++ b/srcpkgs/alot/template
@@ -1,7 +1,7 @@
 # Template file for 'alot'
 pkgname=alot
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="alot"

From ec032cb507b4dca0034eab7e0281dedd3b7dc418 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 598/873] ansible: rebuild for Python 3.8.

---
 srcpkgs/ansible/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ansible/template b/srcpkgs/ansible/template
index 413e6f8803e..773f890e114 100644
--- a/srcpkgs/ansible/template
+++ b/srcpkgs/ansible/template
@@ -1,7 +1,7 @@
 # Template file for 'ansible'
 pkgname=ansible
 version=2.8.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ansible"

From a97554cec966a402d73b894865fe2d37f1833cec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 599/873] apparmor: rebuild for Python 3.8.

---
 srcpkgs/apparmor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/apparmor/template b/srcpkgs/apparmor/template
index c0ef28bae03..e4f8e3fb3ae 100644
--- a/srcpkgs/apparmor/template
+++ b/srcpkgs/apparmor/template
@@ -1,7 +1,7 @@
 # Template file for 'apparmor'
 pkgname=apparmor
 version=2.13.3
-revision=1
+revision=2
 wrksrc="${pkgname}-v${version}"
 build_wrksrc=libraries/libapparmor
 build_style=gnu-configure

From 57116ea3c564f2a1852b8583df85c35aefe177a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 600/873] arandr: rebuild for Python 3.8.

---
 srcpkgs/arandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/arandr/template b/srcpkgs/arandr/template
index 71c8cbcd6ed..610dbc28bca 100644
--- a/srcpkgs/arandr/template
+++ b/srcpkgs/arandr/template
@@ -1,7 +1,7 @@
 # Template file for 'arandr'
 pkgname=arandr
 version=0.1.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenlayout"

From 4dbfc32dae63dc77f95207dc5aa5a79d26d2c9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 601/873] asciinema: rebuild for Python 3.8.

---
 srcpkgs/asciinema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/asciinema/template b/srcpkgs/asciinema/template
index 961b2756301..38b8871753c 100644
--- a/srcpkgs/asciinema/template
+++ b/srcpkgs/asciinema/template
@@ -1,7 +1,7 @@
 # Template file for 'asciinema'
 pkgname=asciinema
 version=2.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="asciinema"

From 956b672f4c6db0ea67d9ad05a8308ec5ea193930 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 602/873] attic: rebuild for Python 3.8.

---
 srcpkgs/attic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/attic/template b/srcpkgs/attic/template
index 533ef7377bc..ed454302ce4 100644
--- a/srcpkgs/attic/template
+++ b/srcpkgs/attic/template
@@ -1,7 +1,7 @@
 # Template file for 'attic'
 pkgname=attic
 version=0.16
-revision=14
+revision=15
 wrksrc="Attic-$version"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel python3-Sphinx"

From 3a21ab47b75c96c91b8447979356e5d4d4027fd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 603/873] autorandr: rebuild for Python 3.8.

---
 srcpkgs/autorandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/autorandr/template b/srcpkgs/autorandr/template
index bf38b833632..7f9796be18f 100644
--- a/srcpkgs/autorandr/template
+++ b/srcpkgs/autorandr/template
@@ -1,7 +1,7 @@
 # Template file for 'autorandr'
 pkgname=autorandr
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="autorandr.py"

From ca443f3bf2b2ea4c91fa81f47ea823293476950b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 604/873] avideo: rebuild for Python 3.8.

---
 srcpkgs/avideo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/avideo/template b/srcpkgs/avideo/template
index e4d004aafff..6430d391286 100644
--- a/srcpkgs/avideo/template
+++ b/srcpkgs/avideo/template
@@ -1,7 +1,7 @@
 # Template file for 'avideo'
 pkgname=avideo
 version=2017.9.27
-revision=3
+revision=4
 archs=noarch
 wrksrc="avideo"
 build_style=python3-module

From b1abf9d1270b34913e7bd6dbfcd004dba8a8c5ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 605/873] aws-cli: rebuild for Python 3.8.

---
 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 4e5e200e3f9..4328e203c3c 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.16.253
-revision=1
+revision=2
 archs=noarch
 wrksrc="aws-cli-${version}"
 build_style=python3-module

From af6fd86e4f623114e23d8cd19217a8ba196231c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 606/873] bandit: rebuild for Python 3.8.

---
 srcpkgs/bandit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bandit/template b/srcpkgs/bandit/template
index e6c1aa52d7c..d29873ecf61 100644
--- a/srcpkgs/bandit/template
+++ b/srcpkgs/bandit/template
@@ -1,7 +1,7 @@
 # Template file for 'bandit'
 pkgname=bandit
 version=1.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="bandit"

From acb296380ef65f2682ec382f88706be8dc3bf79f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 607/873] beancount: rebuild for Python 3.8.

---
 srcpkgs/beancount/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beancount/template b/srcpkgs/beancount/template
index b1e2a121668..0ba68fc8f4e 100644
--- a/srcpkgs/beancount/template
+++ b/srcpkgs/beancount/template
@@ -1,7 +1,7 @@
 # Template file for 'beancount'
 pkgname=beancount
 version=2.2.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="beancount"
 hostmakedepends="python3-setuptools"

From 4d085c5998e4472b4e7b4fceabecba11440daceb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 608/873] beets: rebuild for Python 3.8.

---
 srcpkgs/beets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beets/template b/srcpkgs/beets/template
index 7dab56ceef8..975e6ec9f86 100644
--- a/srcpkgs/beets/template
+++ b/srcpkgs/beets/template
@@ -1,7 +1,7 @@
 # Template file for 'beets'
 pkgname=beets
 version=1.4.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="beets beetsplug"

From 1640cb62a84da8a46aff2a9c6ee5f75c0ab73224 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 609/873] black: rebuild for Python 3.8.

---
 srcpkgs/black/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/black/template b/srcpkgs/black/template
index f6d433038b9..38498a1db07 100644
--- a/srcpkgs/black/template
+++ b/srcpkgs/black/template
@@ -1,7 +1,7 @@
 # Template file for 'black'
 pkgname=black
 version=19.3b0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="black.py blib2to3"

From 5939f3d169c384cfe92957888f7b53678a69e770 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 610/873] blueman: rebuild for Python 3.8.

---
 srcpkgs/blueman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blueman/template b/srcpkgs/blueman/template
index 83f9b899583..3616aee7da3 100644
--- a/srcpkgs/blueman/template
+++ b/srcpkgs/blueman/template
@@ -1,7 +1,7 @@
 # Template file for 'blueman'
 pkgname=blueman
 version=2.1.1
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="blueman"
 configure_args="--disable-static"

From 325ad86e9fdcfc900e695cdcb3b40bc448b85d06 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 611/873] borg: rebuild for Python 3.8.

---
 srcpkgs/borg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borg/template b/srcpkgs/borg/template
index 520b1b2f65a..b69c7d3418e 100644
--- a/srcpkgs/borg/template
+++ b/srcpkgs/borg/template
@@ -1,7 +1,7 @@
 # Template file for 'borg'
 pkgname=borg
 version=1.1.10
-revision=2
+revision=3
 wrksrc="borgbackup-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel"

From 73a17277e22d3252a93a66237bf81a04393fc244 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 612/873] borgmatic: rebuild for Python 3.8.

---
 srcpkgs/borgmatic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borgmatic/template b/srcpkgs/borgmatic/template
index 8ef7c0568a6..bdc6446243c 100644
--- a/srcpkgs/borgmatic/template
+++ b/srcpkgs/borgmatic/template
@@ -1,7 +1,7 @@
 # Template file for 'borgmatic'
 pkgname=borgmatic
 version=1.3.24
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="borgmatic"

From 482c5d69113ad10842dfe91f0ac4a0631660ac77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 613/873] btrfs-backup: rebuild for Python 3.8.

---
 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 07d08a1b62b..55a3800a857 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=1
+revision=2
 wrksrc="${pkgname/-/_}-${version}"
 archs=noarch
 build_style=python3-module

From 4fce3c4f00a44852e3f9fcab80a10d4acfc04ad6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 614/873] bum: rebuild for Python 3.8.

---
 srcpkgs/bum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bum/template b/srcpkgs/bum/template
index 58d0bb2b7f7..20f200e74d6 100644
--- a/srcpkgs/bum/template
+++ b/srcpkgs/bum/template
@@ -1,7 +1,7 @@
 # Template file for 'bum'
 pkgname=bum
 version=0.1.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="bum"

From a384e5462965e984f1abca2ca12b7f62b1a415d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 615/873] caffeine-ng: rebuild for Python 3.8.

---
 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 36287fbef5b..455b2f225c4 100644
--- a/srcpkgs/caffeine-ng/template
+++ b/srcpkgs/caffeine-ng/template
@@ -1,7 +1,7 @@
 # Template file for 'caffeine-ng'
 pkgname=caffeine-ng
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="caffeine"

From b857565a7a7fddfbffbcf40b9e784593d099a0a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 616/873] cairo-dock-plugins: rebuild for Python 3.8.

---
 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 9e6149c617f..0c23a7f6928 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=11
+revision=12
 build_style=cmake
 hostmakedepends="pkg-config"
 # XXX libetpan, libdbusmenu, etc

From c0c15488d9189a782c2ab6436de598620d4d2435 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 617/873] canto-curses: rebuild for Python 3.8.

---
 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 0905972b480..4270d61c2e0 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=4
+revision=5
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel ncurses-devel readline-devel"

From a821add22450c016c7b851ee1a0309da5b5d83af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 618/873] canto-next: rebuild for Python 3.8.

---
 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 fff7e82e238..fa28bde891b 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.7
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From fa2afe1224ee7d1e031e769bf84bd596e5ac6de2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 619/873] capstone: rebuild for Python 3.8.

---
 srcpkgs/capstone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/capstone/template b/srcpkgs/capstone/template
index e13c7666ed1..fded7c7157e 100644
--- a/srcpkgs/capstone/template
+++ b/srcpkgs/capstone/template
@@ -1,7 +1,7 @@
 # Template file for 'capstone'
 pkgname=capstone
 version=4.0.1
-revision=1
+revision=2
 build_style=gnu-makefile
 make_use_env=1
 hostmakedepends="python-setuptools python3-setuptools"

From 923fca0cf844d03c602bbae81add86e8be495762 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 620/873] catfish: rebuild for Python 3.8.

---
 srcpkgs/catfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/catfish/template b/srcpkgs/catfish/template
index 1b28ffcafff..b53de6b8ea6 100644
--- a/srcpkgs/catfish/template
+++ b/srcpkgs/catfish/template
@@ -1,7 +1,7 @@
 # Template file for 'catfish'
 pkgname=catfish
 version=1.4.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="catfish catfish_lib"

From fb71b3b941c7341384c307ef6e1654b8d0b54a3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 621/873] ccsm: rebuild for Python 3.8.

---
 srcpkgs/ccsm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ccsm/template b/srcpkgs/ccsm/template
index 0421e587b23..3067003017f 100644
--- a/srcpkgs/ccsm/template
+++ b/srcpkgs/ccsm/template
@@ -1,7 +1,7 @@
 # Template file for 'ccsm'
 pkgname=ccsm
 version=0.8.16
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 hostmakedepends="automake intltool libtool pkg-config python3"

From f4212d55b3ec84e188189bc74a572c728a37c66a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 622/873] cheat: rebuild for Python 3.8.

---
 srcpkgs/cheat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cheat/template b/srcpkgs/cheat/template
index b60b4ba53b2..f1e419c3c5a 100644
--- a/srcpkgs/cheat/template
+++ b/srcpkgs/cheat/template
@@ -1,7 +1,7 @@
 # Template file for 'cheat'
 pkgname=cheat
 version=2.5.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="cheat"
 conf_files="/etc/cheat"

From eb72b0be44091e56a3e5b73cdf6d11ff80ecb8ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 623/873] clearine: rebuild for Python 3.8.

---
 srcpkgs/clearine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/clearine/template b/srcpkgs/clearine/template
index 419bb3c4550..539d494b79b 100644
--- a/srcpkgs/clearine/template
+++ b/srcpkgs/clearine/template
@@ -1,7 +1,7 @@
 # Template file for 'clearine'
 pkgname=clearine
 version=0.7
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="Clearine"
 hostmakedepends="python3-setuptools"

From ca7e63827b68cba4586e81da6e622e70addc8b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 624/873] coccigrep: rebuild for Python 3.8.

---
 srcpkgs/coccigrep/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/coccigrep/template b/srcpkgs/coccigrep/template
index 736f16a458e..a02c2f78bb2 100644
--- a/srcpkgs/coccigrep/template
+++ b/srcpkgs/coccigrep/template
@@ -1,7 +1,7 @@
 # Template file for 'coccigrep'
 pkgname=coccigrep
 version=1.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coccigrep"

From 8b0269365914ae7e030b07b30f4a76f2f1726270 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 625/873] compizconfig-python: rebuild for Python 3.8.

---
 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 b9d9ce2892b..77d53c97f46 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.16
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static"
 hostmakedepends="automake intltool libtool pkg-config glib-devel gettext-devel python3-Cython"

From c7955381746f2b68e5bb140afe81526fd62a2d16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 626/873] coursera-dl: rebuild for Python 3.8.

---
 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 0dfdd73083f..2b09e53d836 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.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coursera"

From 1bf8d7143694f636186cfbdcf357f9b86f5a635b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 627/873] cozy: rebuild for Python 3.8.

---
 srcpkgs/cozy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cozy/template b/srcpkgs/cozy/template
index a35aff61f37..2515388da18 100644
--- a/srcpkgs/cozy/template
+++ b/srcpkgs/cozy/template
@@ -1,7 +1,7 @@
 # Template file for 'cozy'
 pkgname=cozy
 version=0.6.8
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 pycompile_module="cozy"

From 7b58e6f69ae54c84b50dfe4d6041cf861a698c60 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 628/873] cpuset: rebuild for Python 3.8.

---
 srcpkgs/cpuset/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cpuset/template b/srcpkgs/cpuset/template
index cf3910d2304..12b54631617 100644
--- a/srcpkgs/cpuset/template
+++ b/srcpkgs/cpuset/template
@@ -1,7 +1,7 @@
 # Template file for 'cpuset'
 pkgname=cpuset
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="cpuset"

From a542aca478f0e84bbc23d3fd91a236635712a9f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 629/873] ctop: rebuild for Python 3.8.

---
 srcpkgs/ctop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ctop/template b/srcpkgs/ctop/template
index b8ea58515b2..5231b4a4cb3 100644
--- a/srcpkgs/ctop/template
+++ b/srcpkgs/ctop/template
@@ -1,7 +1,7 @@
 # Template file for 'ctop'
 pkgname=ctop
 version=1.0.0
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="cgroup_top.py"

From b3065c411c5e0b3e48432c6901e1e7fb20eb00d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 630/873] cura: rebuild for Python 3.8.

---
 srcpkgs/cura/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cura/template b/srcpkgs/cura/template
index 31318e5aecf..ab5cd315f21 100644
--- a/srcpkgs/cura/template
+++ b/srcpkgs/cura/template
@@ -1,7 +1,7 @@
 # Template file for 'cura'
 pkgname=cura
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Cura-${version}"
 build_style=cmake

From 9f4eb67830feb2103a78edc7651e1f73cc606074 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 631/873] curseradio: rebuild for Python 3.8.

---
 srcpkgs/curseradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/curseradio/template b/srcpkgs/curseradio/template
index 4fe2306364a..f5afe3bba34 100644
--- a/srcpkgs/curseradio/template
+++ b/srcpkgs/curseradio/template
@@ -1,7 +1,7 @@
 # Template file for 'curseradio'
 pkgname=curseradio
 version=0.0.20171017
-revision=3
+revision=4
 archs=noarch
 _commit=1bd4bd0faeec675e0647bac9a100b526cba19f8d
 wrksrc="curseradio-${_commit}"

From fa4e6156adf5c317bb85ee1d8271c9e6ce57b3e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 632/873] d-feet: rebuild for Python 3.8.

---
 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 6930eddf582..7f7d593f30a 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.15
-revision=1
+revision=2
 build_style=meson
 maintainer="Enno Boland <gottox@voidlinux.org>"
 hostmakedepends="pkg-config intltool itstool python3-pycodestyle"

From d6145053ac873c90f6383dee8ec4d696463928f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 633/873] deluge: rebuild for Python 3.8.

---
 srcpkgs/deluge/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/deluge/template b/srcpkgs/deluge/template
index 6dc7f26184d..8148c68033c 100644
--- a/srcpkgs/deluge/template
+++ b/srcpkgs/deluge/template
@@ -1,7 +1,7 @@
 # Template file for 'deluge'
 pkgname=deluge
 version=2.0.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="deluge"

From 0b2691a90e5de63e49a3c3f3adfa709d618b0a05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 634/873] devedeng: rebuild for Python 3.8.

---
 srcpkgs/devedeng/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/devedeng/template b/srcpkgs/devedeng/template
index d971b2e207b..2d0516cedd3 100644
--- a/srcpkgs/devedeng/template
+++ b/srcpkgs/devedeng/template
@@ -1,7 +1,7 @@
 # Template file for 'devedeng'
 pkgname=devedeng
 version=4.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="devedeng"

From 8b7c3bcfced7b21089b0a64ac1c375eb973af343 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 635/873] distcc: rebuild for Python 3.8.

---
 srcpkgs/distcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/distcc/template b/srcpkgs/distcc/template
index ded4255becd..4d6a450533f 100644
--- a/srcpkgs/distcc/template
+++ b/srcpkgs/distcc/template
@@ -1,7 +1,7 @@
 # Template file for 'distcc'
 pkgname=distcc
 version=3.3.3
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-Werror --with-gtk"
 conf_files="

From 98151a807bebdc6d5e41e0b6a1bd0d65659fbb7e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 636/873] docker-compose: rebuild for Python 3.8.

---
 srcpkgs/docker-compose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/docker-compose/template b/srcpkgs/docker-compose/template
index c3383fdf1ad..f4a34005c83 100644
--- a/srcpkgs/docker-compose/template
+++ b/srcpkgs/docker-compose/template
@@ -1,7 +1,7 @@
 # Template file for 'docker-compose'
 pkgname=docker-compose
 version=1.24.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="compose-${version}"
 build_style=python3-module

From 9dc2f62edc54b5e314c24fe7bb303496223adb45 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 637/873] edx-dl: rebuild for Python 3.8.

---
 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 209884640c6..a51c917d606 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.10
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="edx_dl"

From 6a769ff00b2fc959627e96d44172f8a656548751 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 638/873] electrum: rebuild for Python 3.8.

---
 srcpkgs/electrum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template
index 3861becdda9..7525e08e9e2 100644
--- a/srcpkgs/electrum/template
+++ b/srcpkgs/electrum/template
@@ -1,7 +1,7 @@
 # Template file for 'electrum'
 pkgname=electrum
 version=3.3.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electrum electrum_gui electrum_plugins"

From be52dccd4b30af3377095664bf239767a0f7be39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 639/873] electrum-ltc: rebuild for Python 3.8.

---
 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 ad6f745e152..cf7265fbec8 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.6.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"

From 45951afeb4bab3066e0459cf1441d9c3570c85dc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 640/873] eolie: rebuild for Python 3.8.

---
 srcpkgs/eolie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eolie/template b/srcpkgs/eolie/template
index b3da3dcd829..94514510c98 100644
--- a/srcpkgs/eolie/template
+++ b/srcpkgs/eolie/template
@@ -1,7 +1,7 @@
 # Template file for 'eolie'
 pkgname=eolie
 version=0.9.62
-revision=1
+revision=2
 _eolie_hash=bb4aad19272cc636bd17f2f6602127fe
 build_style=meson
 pycompile_module="eolie"

From ad02dba2226dbfc6b1fb5e715af8b58821cd8c07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 641/873] eyeD3: rebuild for Python 3.8.

---
 srcpkgs/eyeD3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eyeD3/template b/srcpkgs/eyeD3/template
index 7be047810bd..211553f0adb 100644
--- a/srcpkgs/eyeD3/template
+++ b/srcpkgs/eyeD3/template
@@ -1,7 +1,7 @@
 # Template file for 'eyeD3'
 pkgname=eyeD3
 version=0.8.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="eyed3"

From 5333d561e8831b7103f00f5e4564ce20bc26e9b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 642/873] fail2ban: rebuild for Python 3.8.

---
 srcpkgs/fail2ban/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 829e93385dc..361bcd12edd 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,7 +1,7 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
 version=0.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From 6ed6f50c8422b21b0f8244e983014120a3467562 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 643/873] fava: rebuild for Python 3.8.

---
 srcpkgs/fava/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fava/template b/srcpkgs/fava/template
index 24e66cac45b..890858b095b 100644
--- a/srcpkgs/fava/template
+++ b/srcpkgs/fava/template
@@ -1,7 +1,7 @@
 # Template file for 'fava'
 pkgname=fava
 version=1.11
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fava"

From cfe04c8e627d5d3626d852a05f3a87ecf053557f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 644/873] fierce: rebuild for Python 3.8.

---
 srcpkgs/fierce/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fierce/template b/srcpkgs/fierce/template
index 86dedb39ad2..86692c6457b 100644
--- a/srcpkgs/fierce/template
+++ b/srcpkgs/fierce/template
@@ -1,7 +1,7 @@
 # Template file for 'fierce'
 pkgname=fierce
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fierce"

From c67a6380bd6f21a660d10cde09cb2930536faee5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 645/873] fifengine: rebuild for Python 3.8.

---
 srcpkgs/fifengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fifengine/template b/srcpkgs/fifengine/template
index 1d4bcbb9297..871c94ad7e0 100644
--- a/srcpkgs/fifengine/template
+++ b/srcpkgs/fifengine/template
@@ -1,7 +1,7 @@
 # Template file for 'fifengine'
 pkgname=fifengine
 version=0.4.2
-revision=1
+revision=2
 build_style=cmake
 pycompile_module="fife"
 hostmakedepends="swig python3"

From 407bb3354f4705ac3e7d9c40479ff7272cbf5478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 646/873] flake8: rebuild for Python 3.8.

---
 srcpkgs/flake8/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/flake8/template b/srcpkgs/flake8/template
index d8f2b095644..4d7ebeba176 100644
--- a/srcpkgs/flake8/template
+++ b/srcpkgs/flake8/template
@@ -1,7 +1,7 @@
 # Template file for 'flake8'
 pkgname=flake8
 version=3.7.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="flake8"

From 770a2460b2b1f167fe87687c22ab0ff3d925964d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 647/873] fontforge: fix and rebuild for Python 3.8.

---
 srcpkgs/fontforge/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/fontforge/template b/srcpkgs/fontforge/template
index 7fb02d7e371..2893bc52cfb 100644
--- a/srcpkgs/fontforge/template
+++ b/srcpkgs/fontforge/template
@@ -1,7 +1,7 @@
 # Template file for 'fontforge'
 pkgname=fontforge
 version=20190801
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake ca-certificates git libltdl-devel libtool m4
  pkg-config python3"
@@ -20,6 +20,7 @@ checksum="e4501de5bd8e7f6c68fe7d3abd4667bf44a07b981d342ffa00e8f42e155ce633
  1bf9c7eb8835e6ed94e62cb49f1141bc046c562849e52e6c3c7f1d7cfc95c7b3"
 
 pre_configure() {
+        sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION}/&-embed/g' m4/fontforge_arg_enable.m4
 	./bootstrap
 }
 

From b878e1d66ee439999393e2aa55941b07f8e6c745 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 648/873] gajim: rebuild for Python 3.8.

---
 srcpkgs/gajim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gajim/template b/srcpkgs/gajim/template
index 8c49c0cf6ef..e81015b3906 100644
--- a/srcpkgs/gajim/template
+++ b/srcpkgs/gajim/template
@@ -1,7 +1,7 @@
 # Template file for 'gajim'
 pkgname=gajim
 version=1.1.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gajim"

From e0ad178e264be367206a16d9b96524e6d37e4b22 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 649/873] gajim-omemo: rebuild for Python 3.8.

---
 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 803f94713be..64d47228496 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.6.29
-revision=1
+revision=2
 wrksrc="omemo"
 hostmakedepends="unzip"
 depends="python3 python3-setuptools python3-cryptography python3-axolotl python3-qrcode"

From 4988da06fe14563631406801f6b22795355576a4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 650/873] gallery-dl: rebuild for Python 3.8.

---
 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 a1e8c633fe3..62b338a32e3 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.10.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gallery_dl"

From 7d5c0c0d7a1dcc5f3c504ed769a3730c7d688ed3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 651/873] gandi-cli: rebuild for Python 3.8.

---
 srcpkgs/gandi-cli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gandi-cli/template b/srcpkgs/gandi-cli/template
index c5e805a09fd..4193bfe4638 100644
--- a/srcpkgs/gandi-cli/template
+++ b/srcpkgs/gandi-cli/template
@@ -1,7 +1,7 @@
 # Template file for 'gandi-cli'
 pkgname=gandi-cli
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="gandi.cli-${version}"
 build_style=python3-module

From 7ae81741d5a1d24c19e0950a8631b2afb2f66301 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 652/873] gcovr: rebuild for Python 3.8.

---
 srcpkgs/gcovr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gcovr/template b/srcpkgs/gcovr/template
index 2b9ff94bf2a..0d4addfc8a7 100644
--- a/srcpkgs/gcovr/template
+++ b/srcpkgs/gcovr/template
@@ -1,7 +1,7 @@
 # Template file for 'gcovr'
 pkgname=gcovr
 version=4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gcovr"

From ff745f27bbeb2148c202a6cfde42c27c27ffb081 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 653/873] gedit: rebuild for Python 3.8.

---
 srcpkgs/gedit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gedit/template b/srcpkgs/gedit/template
index 904d3b7c3c4..6666c331c52 100644
--- a/srcpkgs/gedit/template
+++ b/srcpkgs/gedit/template
@@ -1,7 +1,7 @@
 # Template file for 'gedit'
 pkgname=gedit
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gi/overrides"

From 6d37a1560ee94e42e383c5bc4cba87d59366a1bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 654/873] geis: rebuild for Python 3.8.

---
 srcpkgs/geis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/geis/template b/srcpkgs/geis/template
index fe31a3d2aeb..20afe76b0d8 100644
--- a/srcpkgs/geis/template
+++ b/srcpkgs/geis/template
@@ -1,7 +1,7 @@
 # Template file for 'geis'
 pkgname=geis
 version=2.2.17
-revision=4
+revision=5
 hostmakedepends="pkg-config python3-devel"
 makedepends="dbus-devel grail-devel frame-devel libXi-devel python3-devel xorg-server-devel"
 build_style="gnu-configure"

From 83ad8dc7e8dc71c64a9004e04aba36ca30c051fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 655/873] git-cola: rebuild for Python 3.8.

---
 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 7eaba90f3be..fd0bbf971d3 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.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/share/git-cola/lib"

From 69e4bac4c10842ce70ce2a1db26f883af407e79c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 656/873] git-review: rebuild for Python 3.8.

---
 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 d999dc87b16..c180cc60780 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="git_review"

From 7c0a260d7120bd5e0e4e27c6b30b83e9dfe60359 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 657/873] git-revise: rebuild for Python 3.8.

---
 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 4179a52bddc..a1bf51dc447 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.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gitrevise"

From 49a8265f4cd71c84814307928cbbd2eb33c4bbad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 658/873] gitg: rebuild for Python 3.8.

---
 srcpkgs/gitg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gitg/template b/srcpkgs/gitg/template
index e0da8e9490d..a3381fdb3a7 100644
--- a/srcpkgs/gitg/template
+++ b/srcpkgs/gitg/template
@@ -1,7 +1,7 @@
 # Template file for 'gitg'
 pkgname=gitg
 version=3.32.1
-revision=1
+revision=2
 build_style=meson
 hostmakedepends="intltool pkg-config gobject-introspection vala glib-devel"
 makedepends="gtksourceview-devel libgit2-glib-devel libgee08-devel gtkspell3-devel

From 5b5919636d70cb1259ebd7740e9b55936a7c29f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 659/873] glances: rebuild for Python 3.8.

---
 srcpkgs/glances/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glances/template b/srcpkgs/glances/template
index 6d4766493c3..753d9e20c92 100644
--- a/srcpkgs/glances/template
+++ b/srcpkgs/glances/template
@@ -1,7 +1,7 @@
 # Template file for 'glances'
 pkgname=glances
 version=3.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Glances-${version}"
 build_style=python3-module

From 8b16492c679f3eb6c6ae2d4573f9adeb356715be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 660/873] glusterfs: rebuild for Python 3.8.

---
 srcpkgs/glusterfs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glusterfs/template b/srcpkgs/glusterfs/template
index a1304e266fe..90093864286 100644
--- a/srcpkgs/glusterfs/template
+++ b/srcpkgs/glusterfs/template
@@ -1,7 +1,7 @@
 # Template file for 'glusterfs'
 pkgname=glusterfs
 version=6.5
-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 22925c23326876f7422d67e1f21f0e629b9c7ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 661/873] gnome-authenticator: rebuild for Python 3.8.

---
 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 52d161897c7..ab7c505c0fe 100644
--- a/srcpkgs/gnome-authenticator/template
+++ b/srcpkgs/gnome-authenticator/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-authenticator'
 pkgname=gnome-authenticator
 version=0.2.4
-revision=2
+revision=3
 _libgd_hash=7ae254bfc5f641c60566614e08245176f7bc5aa8
 wrksrc="Authenticator-${version}"
 build_style=meson

From 4130139a7454a2050f48c6feac4f9312c50219d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 662/873] gnome-music: rebuild for Python 3.8.

---
 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 bceb7c369c8..e2fbbcbdeca 100644
--- a/srcpkgs/gnome-music/template
+++ b/srcpkgs/gnome-music/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-music'
 pkgname=gnome-music
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gnomemusic"

From 94b0589cc1f42f2505ac86d6596ab748ab75e02f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 663/873] gnome-passbook: rebuild for Python 3.8.

---
 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 54035dc920b..89047338503 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.1
-revision=1
+revision=2
 _release_hash=0a227cfdf706f4bfcc0b782026f1aeb2
 wrksrc="passbook-${version}"
 build_style=meson

From 76dae990f2ec69291f7826391c7a375014867fb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 664/873] gnome-passwordsafe: rebuild for Python 3.8.

---
 srcpkgs/gnome-passwordsafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnome-passwordsafe/template b/srcpkgs/gnome-passwordsafe/template
index f310ce03a08..8f1f19174d2 100644
--- a/srcpkgs/gnome-passwordsafe/template
+++ b/srcpkgs/gnome-passwordsafe/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-passwordsafe'
 pkgname=gnome-passwordsafe
 version=3.32.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="PasswordSafe-${version}"
 build_style=meson

From ebb227d14a2271cc033506f2dd54957eecc5b719 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 665/873] gns3-gui: rebuild for Python 3.8.

---
 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 38751dea59b..f4318dc6afc 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.1.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3"

From b44e9cf882e059036ed7e3834cafdf689c956e32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 666/873] gns3-net-converter: rebuild for Python 3.8.

---
 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 b9b7403e8a6..70b6c90e8c8 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=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3converter"

From eaf37536ad96d1421cc95823589d2cd21779089d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 667/873] gns3-server: rebuild for Python 3.8.

---
 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 6bd9c067b20..739c584cb7c 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.1.21
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="gns3server"
 hostmakedepends="python3-setuptools"

From 3a2540b9e2143af7b07dcaee0ed3930b9016dc1e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 668/873] gnucash: rebuild for Python 3.8.

---
 srcpkgs/gnucash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnucash/template b/srcpkgs/gnucash/template
index 68bb811fc42..d8ff0a8ec86 100644
--- a/srcpkgs/gnucash/template
+++ b/srcpkgs/gnucash/template
@@ -1,7 +1,7 @@
 # Template file for 'gnucash'
 pkgname=gnucash
 version=3.7
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DWITH_SQL=0 -DWITH_PYTHON=1"
 hostmakedepends="pkg-config guile python3 libxslt perl"

From c1420969fc916318d29dfdc3836adf0580095969 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 669/873] gom: rebuild for Python 3.8.

---
 srcpkgs/gom/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gom/template b/srcpkgs/gom/template
index 6ec2a5e338f..0b45e19def4 100644
--- a/srcpkgs/gom/template
+++ b/srcpkgs/gom/template
@@ -1,7 +1,7 @@
 # Template file for 'gom'
 pkgname=gom
 version=0.3.3
-revision=3
+revision=4
 build_style=meson
 build_helper="gir"
 configure_args="-Denable-introspection=$(vopt_if gir true false)

From e55d5d66739df70ca67793cbca3b12aa5f01e751 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 670/873] gpodder: rebuild for Python 3.8.

---
 srcpkgs/gpodder/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gpodder/template b/srcpkgs/gpodder/template
index 7c7414e19cd..5cc63ab4205 100644
--- a/srcpkgs/gpodder/template
+++ b/srcpkgs/gpodder/template
@@ -1,7 +1,7 @@
 # Template file for 'gpodder'
 pkgname=gpodder
 version=3.10.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="gpodder-${version}"
 make_check_target=unittest

From d91d30f5f2b0b5e6323da1f35eaf923fed0a111f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 671/873] gramps: rebuild for Python 3.8.

---
 srcpkgs/gramps/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gramps/template b/srcpkgs/gramps/template
index 9d1d1a4616a..5d40aeefb49 100644
--- a/srcpkgs/gramps/template
+++ b/srcpkgs/gramps/template
@@ -1,7 +1,7 @@
 # Template file for 'gramps'
 pkgname=gramps
 version=5.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gramps"

From bb3e960f11dda36c822c8bd1e8575b2a69ce9a66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 672/873] greg: rebuild for Python 3.8.

---
 srcpkgs/greg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/greg/template b/srcpkgs/greg/template
index 9c15ba82f4b..d898d5fdf61 100644
--- a/srcpkgs/greg/template
+++ b/srcpkgs/greg/template
@@ -1,7 +1,7 @@
 # Template file for 'greg'
 pkgname=greg
 version=0.4.7
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 pycompile_module="greg"

From be202bce8c20fb165e811e32683e96aae42b1452 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 673/873] gst1-python3: rebuild for Python 3.8.

---
 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 6f02f19aca3..bf946f6a8bf 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.16.1
-revision=1
+revision=2
 wrksrc="gst-python-${version}"
 build_style=meson
 pycompile_module="gi/overrides"

From b9ef9fe5fb2d7b03831106592cfae54a25c41a0f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 674/873] guake: rebuild for Python 3.8.

---
 srcpkgs/guake/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/guake/template b/srcpkgs/guake/template
index 86eaba649a7..d92fdf89355 100644
--- a/srcpkgs/guake/template
+++ b/srcpkgs/guake/template
@@ -1,7 +1,7 @@
 # Template file for 'guake'
 pkgname=guake
 version=3.6.3
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 wrksrc="Guake-${version}"

From a53d49cbf26761960b1d159a12df007b627e7650 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 675/873] gufw: rebuild for Python 3.8.

---
 srcpkgs/gufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gufw/template b/srcpkgs/gufw/template
index d2b8a4b025d..a4e7d861d71 100644
--- a/srcpkgs/gufw/template
+++ b/srcpkgs/gufw/template
@@ -1,7 +1,7 @@
 # Template file for 'gufw'
 pkgname=gufw
 version=19.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="gui-ufw-${version}"
 build_style=python3-module

From 165d3546e52431e5cb6d8f7534344eb7da2982a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 676/873] hamlib: rebuild for Python 3.8.

---
 srcpkgs/hamlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hamlib/template b/srcpkgs/hamlib/template
index c28a069cd6f..d52436c0893 100644
--- a/srcpkgs/hamlib/template
+++ b/srcpkgs/hamlib/template
@@ -1,7 +1,7 @@
 # Template file for 'hamlib'
 pkgname=hamlib
 version=3.3
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static --with-perl-binding --with-python-binding
  --with-tcl-binding --with-xml-support"

From fe67c3b8e01dac359eba93dada80286f4b7bd546 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 677/873] hangups: rebuild for Python 3.8.

---
 srcpkgs/hangups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hangups/template b/srcpkgs/hangups/template
index 0a2f2db16b4..0837a2c47c3 100644
--- a/srcpkgs/hangups/template
+++ b/srcpkgs/hangups/template
@@ -1,7 +1,7 @@
 # Template file for 'hangups'
 pkgname=hangups
 version=0.4.9
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="hangups"
 hostmakedepends="python3-setuptools"

From 54c05618d6ea2a636e7649b6dfb4df7e9097df99 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 678/873] hplip: rebuild for Python 3.8.

---
 srcpkgs/hplip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hplip/template b/srcpkgs/hplip/template
index 07a707569f6..3ef76e4591b 100644
--- a/srcpkgs/hplip/template
+++ b/srcpkgs/hplip/template
@@ -1,7 +1,7 @@
 # Template file for 'hplip'
 pkgname=hplip
 version=3.19.8
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="usr/share/hplip"
 configure_args="

From b9133921feebbc073c9d3cecdc138c34dd553caa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 679/873] httpie: rebuild for Python 3.8.

---
 srcpkgs/httpie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/httpie/template b/srcpkgs/httpie/template
index 387af8ebf05..61fc1499d35 100644
--- a/srcpkgs/httpie/template
+++ b/srcpkgs/httpie/template
@@ -1,7 +1,7 @@
 # Template file for 'httpie'
 pkgname=httpie
 version=1.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="httpie"

From 6c6626a47930ae266d4f95bc011f99e15b7237a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 680/873] ibus: rebuild for Python 3.8.

---
 srcpkgs/ibus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ibus/template b/srcpkgs/ibus/template
index 4875c7535d6..d3c35d786a4 100644
--- a/srcpkgs/ibus/template
+++ b/srcpkgs/ibus/template
@@ -1,7 +1,7 @@
 # Template file for 'ibus'
 pkgname=ibus
 version=1.5.20
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 configure_args="--enable-ui --enable-gtk3 --disable-tests

From ad8f78bd52e9d9925d746e1bbca9a926040dc866 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 681/873] iotop: rebuild for Python 3.8.

---
 srcpkgs/iotop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template
index 146a9e97791..522bf32a7c2 100644
--- a/srcpkgs/iotop/template
+++ b/srcpkgs/iotop/template
@@ -1,7 +1,7 @@
 # Template file for 'iotop'
 pkgname=iotop
 version=0.6
-revision=5
+revision=6
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From bf6b1d411e5f8d2459161a4599d66d7148220c48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 682/873] jrnl: rebuild for Python 3.8.

---
 srcpkgs/jrnl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template
index 3d08f129885..b184ef09508 100644
--- a/srcpkgs/jrnl/template
+++ b/srcpkgs/jrnl/template
@@ -1,7 +1,7 @@
 # Template file for 'jrnl'
 pkgname=jrnl
 version=1.9.8
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="jrnl"

From 3262fda476f3282359c09dd2902deac5997a3394 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 683/873] khal: rebuild for Python 3.8.

---
 srcpkgs/khal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khal/template b/srcpkgs/khal/template
index 39d08a66ba8..a73516695bf 100644
--- a/srcpkgs/khal/template
+++ b/srcpkgs/khal/template
@@ -1,7 +1,7 @@
 # Template file for 'khal'
 pkgname=khal
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khal"

From be7f25caca1d74c5f9f58c4cc40c3f3f889971d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 684/873] khard: rebuild for Python 3.8.

---
 srcpkgs/khard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khard/template b/srcpkgs/khard/template
index 6c6f3024be1..3ec9f398d99 100644
--- a/srcpkgs/khard/template
+++ b/srcpkgs/khard/template
@@ -1,7 +1,7 @@
 # Template file for 'khard'
 pkgname=khard
 version=0.14.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khard"

From 0509f15447526a6132348baf9eb600d22a0c20f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 685/873] lfm: rebuild for Python 3.8.

---
 srcpkgs/lfm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lfm/template b/srcpkgs/lfm/template
index 0a0a3b4f563..1e0e7cf29fa 100644
--- a/srcpkgs/lfm/template
+++ b/srcpkgs/lfm/template
@@ -1,7 +1,7 @@
 # Template file for 'lfm'
 pkgname=lfm
 version=3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 9ac423037b0a4806134116f0b6501d27f2bb3047 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 686/873] libArcus: rebuild for Python 3.8.

---
 srcpkgs/libArcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libArcus/template b/srcpkgs/libArcus/template
index 8e6c97ada21..d2ffda576d4 100644
--- a/srcpkgs/libArcus/template
+++ b/srcpkgs/libArcus/template
@@ -1,7 +1,7 @@
 # Template file for 'libArcus'
 pkgname=libArcus
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DBUILD_EXAMPLES=OFF"
 hostmakedepends="protobuf python3-sip-devel"

From 8a5c0bc1b4d750fbb633dcfb68645bdb8e23ac37 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 687/873] libSavitar: rebuild for Python 3.8.

---
 srcpkgs/libSavitar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libSavitar/template b/srcpkgs/libSavitar/template
index a9d3020158f..213f02f4d65 100644
--- a/srcpkgs/libSavitar/template
+++ b/srcpkgs/libSavitar/template
@@ -1,7 +1,7 @@
 # Template file for 'libSavitar'
 pkgname=libSavitar
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 hostmakedepends="python3"
 makedepends="python3-sip-devel python3-devel pugixml-devel"

From 888da49c1bb8061c80359b4015485b151f0d74d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 688/873] libaccounts-glib: rebuild for Python 3.8.

---
 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 717be24f209..239f9307261 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=2
+revision=3
 wrksrc="${pkgname}-VERSION_${version}-8948717702424ce15f4e23e5db2c8ce0799ec120"
 build_style=meson
 hostmakedepends="gtk-doc pkg-config glib-devel gobject-introspection vala"

From bd98c3c06982e10c3f9df1df66d5b04f1a5ef434 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 689/873] libblockdev: rebuild for Python 3.8.

---
 srcpkgs/libblockdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libblockdev/template b/srcpkgs/libblockdev/template
index 1df156e3c5b..ff20fc70618 100644
--- a/srcpkgs/libblockdev/template
+++ b/srcpkgs/libblockdev/template
@@ -1,7 +1,7 @@
 # Template file for 'libblockdev'
 pkgname=libblockdev
 version=2.21
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="cryptsetup-devel device-mapper-devel dmraid-devel libbytesize-devel

From 41b298fd633e7e588071f06e8d421ed9b2c21a8c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 690/873] libbytesize: rebuild for Python 3.8.

---
 srcpkgs/libbytesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libbytesize/template b/srcpkgs/libbytesize/template
index ee1862d889d..e07cdf29a82 100644
--- a/srcpkgs/libbytesize/template
+++ b/srcpkgs/libbytesize/template
@@ -1,7 +1,7 @@
 # Template file for 'libbytesize'
 pkgname=libbytesize
 version=1.4
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python3"
 makedepends="mpfr-devel pcre-devel"

From bdb495aaf63cb8b79a83eda9623e54e67de33d75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 691/873] libcap-ng: rebuild for Python 3.8.

---
 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 f462636c4c1..c6ec4f0a216 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.7.10
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-python --without-python3"
 short_desc="Alternate POSIX capabilities library"

From 64a29440ad0bb81db7db97e461b4b68478993d17 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 692/873] libffado: rebuild for Python 3.8.

---
 srcpkgs/libffado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libffado/template b/srcpkgs/libffado/template
index a9b6a5ec6a8..d566806bd82 100644
--- a/srcpkgs/libffado/template
+++ b/srcpkgs/libffado/template
@@ -1,7 +1,7 @@
 # Template file for 'libffado'
 pkgname=libffado
 version=2.4.1
-revision=1
+revision=2
 build_style=scons
 make_build_args="PREFIX=/usr MANDIR=/usr/share/man
  UDEVDIR=/usr/lib/udev/rules.d CUSTOM_ENV=1 BUILD_TESTS=0

From 3ac32b19e51680d2330b26da6cb8d640904fcb75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 693/873] libgit2-glib: rebuild for Python 3.8.

---
 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 05389a18258..ce68cb35d66 100644
--- a/srcpkgs/libgit2-glib/template
+++ b/srcpkgs/libgit2-glib/template
@@ -1,7 +1,7 @@
 # Template file for 'libgit2-glib'
 pkgname=libgit2-glib
 version=0.28.0.1
-revision=1
+revision=2
 build_style=meson
 build_helper="gir"
 configure_args="-Dintrospection=$(vopt_if gir true false)

From 6950f9e7571c268c087d93d7e94d169a8fb8291b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 694/873] libixion: rebuild for Python 3.8.

---
 srcpkgs/libixion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libixion/template b/srcpkgs/libixion/template
index 5d2c58ee7c0..dbc05d8b9c1 100644
--- a/srcpkgs/libixion/template
+++ b/srcpkgs/libixion/template
@@ -2,7 +2,7 @@
 pkgname=libixion
 reverts="0.15.0_1"
 version=0.14.1
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="boost-devel mdds python3-devel"

From 45a847c34a550d9cc64985d24ef9b306aade5790 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 695/873] liblouis: rebuild for Python 3.8.

---
 srcpkgs/liblouis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liblouis/template b/srcpkgs/liblouis/template
index 77194ad8820..13c29b62b21 100644
--- a/srcpkgs/liblouis/template
+++ b/srcpkgs/liblouis/template
@@ -1,7 +1,7 @@
 # Template file for 'liblouis'
 pkgname=liblouis
 version=3.9.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--enable-ucs4"
 pycompile_module="louis"

From f79d54ca6d5162f4f17a9cae76f0bd941deaf438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 696/873] opencv: rebuild for Python 3.8.

---
 srcpkgs/opencv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/opencv/template b/srcpkgs/opencv/template
index fcc38299f23..474b77be181 100644
--- a/srcpkgs/opencv/template
+++ b/srcpkgs/opencv/template
@@ -1,7 +1,7 @@
 # Template file for 'opencv'
 pkgname=opencv
 version=3.4.5
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_PRECOMPILED_HEADERS=OFF -DWITH_OPENMP=ON
  -DWITH_OPENCL=ON -DENABLE_CXX11=ON -DOPENCV_SKIP_PYTHON_LOADER=ON

From f3399fca6f67a8990fa1adc144bd949c0a5c66c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 697/873] libopenshot: rebuild for Python 3.8.

---
 srcpkgs/libopenshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libopenshot/template b/srcpkgs/libopenshot/template
index e1ac18faf93..dab1f2ae1e3 100644
--- a/srcpkgs/libopenshot/template
+++ b/srcpkgs/libopenshot/template
@@ -1,7 +1,7 @@
 # Template file for 'libopenshot'
 pkgname=libopenshot
 version=0.2.3
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 build_style=cmake
 pycompile_module="openshot.py"

From c7902fc599bfc61c600307df6f75acfadf8e612e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 698/873] liborcus: rebuild for Python 3.8.

---
 srcpkgs/liborcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liborcus/template b/srcpkgs/liborcus/template
index 3523d7830d8..e7704c43974 100644
--- a/srcpkgs/liborcus/template
+++ b/srcpkgs/liborcus/template
@@ -2,7 +2,7 @@
 pkgname=liborcus
 reverts="0.15.0_1"
 version=0.14.1
-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 aec13b74f5953d86ed1dab8574a9bb836924a3da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 699/873] libpwquality: rebuild for Python 3.8.

---
 srcpkgs/libpwquality/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpwquality/template b/srcpkgs/libpwquality/template
index e5a656236d7..6c2209155a3 100644
--- a/srcpkgs/libpwquality/template
+++ b/srcpkgs/libpwquality/template
@@ -1,7 +1,7 @@
 # Template file for 'libpwquality'
 pkgname=libpwquality
 version=1.4.1
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static --enable-pam --with-securedir=/usr/lib/security"
 hostmakedepends="libtool automake gettext-devel"

From a5604d1184badc5a3b5afb2426bc910d703ee0f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 700/873] libsearpc: rebuild for Python 3.8.

---
 srcpkgs/libsearpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsearpc/template b/srcpkgs/libsearpc/template
index 61f68e5e7de..a7e0b9ce05c 100644
--- a/srcpkgs/libsearpc/template
+++ b/srcpkgs/libsearpc/template
@@ -1,7 +1,7 @@
 # Template file for 'libsearpc'
 pkgname=libsearpc
 version=3.1.0
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="pysearpc"
 configure_args="PYTHON=python3 --disable-static --disable-compile-demo"

From 5aaa024e287c3460065dbe861abc25499a281e07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 701/873] libtorrent-rasterbar: fix and rebuild for Python 3.8.

---
 srcpkgs/libtorrent-rasterbar/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libtorrent-rasterbar/template b/srcpkgs/libtorrent-rasterbar/template
index 118108c6184..51b7175fb81 100644
--- a/srcpkgs/libtorrent-rasterbar/template
+++ b/srcpkgs/libtorrent-rasterbar/template
@@ -1,9 +1,9 @@
 # Template file for 'libtorrent-rasterbar'
 pkgname=libtorrent-rasterbar
 version=1.1.13
-revision=3
+revision=4
 build_style=gnu-configure
-configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=boost_python36"
+configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=libboost_python${py3_ver/./}"
 hostmakedepends="automake pkg-config intltool libtool python3-devel"
 makedepends="libressl-devel boost-devel geoip-devel python3-devel"
 short_desc="C++ bittorrent library by Rasterbar Software"
@@ -14,9 +14,9 @@ distfiles="https://github.com/arvidn/libtorrent/releases/download/libtorrent-${v
 checksum=30040719858e3c06634764e0c1778738eb42ecd0b45e814afa746329a948ead7
 
 pre_configure() {
-	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython3.6m"
+	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython${py3_ver}${py3_abiver}"
 	autoreconf -fi
 }
 

From 75ce8cab25904eeb4975663fb77b4f29c10c1dbe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 702/873] libvirt-python: rebuild for Python 3.8.

---
 srcpkgs/libvirt-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvirt-python/template b/srcpkgs/libvirt-python/template
index a2f0e038166..56253c9d3b0 100644
--- a/srcpkgs/libvirt-python/template
+++ b/srcpkgs/libvirt-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libvirt-python'
 pkgname=libvirt-python
 version=5.8.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="libvirt.py libvirt_lxc.py libvirt_qemu.py"
 hostmakedepends="pkg-config python-devel python3-devel libvirt-devel"

From 5e9842585a68fb832637cdd1b5adcd50bc48841b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 703/873] libvoikko: rebuild for Python 3.8.

---
 srcpkgs/libvoikko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvoikko/template b/srcpkgs/libvoikko/template
index 8d21b0f9c71..ba8eef837ee 100644
--- a/srcpkgs/libvoikko/template
+++ b/srcpkgs/libvoikko/template
@@ -1,7 +1,7 @@
 # Template file for 'libvoikko'
 pkgname=libvoikko
 version=4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-hfst=false --with-dictionary-path=/usr/share/voikko"
 pycompile_module="libvoikko.py"

From 8141b26019c7a2414b15fcf8b8672eb24047f49d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 704/873] libxml2-python: rebuild for Python 3.8.

---
 srcpkgs/libxml2-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libxml2-python/template b/srcpkgs/libxml2-python/template
index a80208823c2..5514ed43437 100644
--- a/srcpkgs/libxml2-python/template
+++ b/srcpkgs/libxml2-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libxml2-python'
 pkgname=libxml2-python
 version=2.9.9
-revision=3
+revision=4
 wrksrc="${pkgname%-python}-${version}"
 build_wrksrc=python
 build_style=python-module

From 70f5881f1b341100ddc517ba0f4b54e161303165 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 705/873] lightdm-gtk-greeter-settings: rebuild for Python 3.8.

---
 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 715f41bbef4..76a25b91e4c 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=1
+revision=2
 build_style=python3-module
 pycompile_module="lightdm_gtk_greeter_settings"
 hostmakedepends="python3-distutils-extra intltool"

From 04c380043914f79a0c6cd3199748bb0fb2e37967 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 706/873] llvm9: rebuild for Python 3.8.

---
 srcpkgs/llvm9/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/llvm9/template b/srcpkgs/llvm9/template
index 3c1a1a3451b..890a93855d8 100644
--- a/srcpkgs/llvm9/template
+++ b/srcpkgs/llvm9/template
@@ -1,7 +1,7 @@
 # Template file for 'llvm9'
 pkgname=llvm9
 version=9.0.0
-revision=2
+revision=3
 wrksrc="llvm-${version}.src"
 build_style=cmake
 configure_args="

From 4778e7a0c73ffa2fae833fee20ac790fef99fff9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 707/873] lollypop: rebuild for Python 3.8.

---
 srcpkgs/lollypop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lollypop/template b/srcpkgs/lollypop/template
index 56ace773bf3..3bd13c0d387 100644
--- a/srcpkgs/lollypop/template
+++ b/srcpkgs/lollypop/template
@@ -1,7 +1,7 @@
 # Template file for 'lollypop'
 pkgname=lollypop
 version=1.1.4.16
-revision=1
+revision=2
 # Gitlab upload tag hash
 _uhash=6b4e4e7a2c17f0770c1e2b3354ae5a3a
 archs=noarch

From 6041a22c11224f7e771c92e9f61adf7eaf37450a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 708/873] lutris: rebuild for Python 3.8.

---
 srcpkgs/lutris/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lutris/template b/srcpkgs/lutris/template
index 8f54d693a12..75be521cc7c 100644
--- a/srcpkgs/lutris/template
+++ b/srcpkgs/lutris/template
@@ -1,7 +1,7 @@
 # Template file for 'lutris'
 pkgname=lutris
 version=0.5.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 build_helper="gir"

From 768559bee2d66197ffebf07de70d31e1098fe2a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 709/873] magic-wormhole: rebuild for Python 3.8.

---
 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 c07753ce6ad..d93a1bbe1fc 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.11.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wormhole"

From 2a5b126fdf712642756c4d70a6a679f4479b504c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 710/873] mate-tweak: rebuild for Python 3.8.

---
 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 85b829e85e8..76b79524269 100644
--- a/srcpkgs/mate-tweak/template
+++ b/srcpkgs/mate-tweak/template
@@ -1,7 +1,7 @@
 # Template file for 'mate-tweak'
 pkgname=mate-tweak
 version=19.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-pbr python3-setuptools"

From 2717d85b6903ce0f45484d5f051e477d27e68ff3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 711/873] med: rebuild for Python 3.8.

---
 srcpkgs/med/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/med/template b/srcpkgs/med/template
index 34dd6d006d6..acd79293246 100644
--- a/srcpkgs/med/template
+++ b/srcpkgs/med/template
@@ -1,7 +1,7 @@
 # Template file for 'med'
 pkgname=med
 version=4.0.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--with-swig=yes --includedir=/usr/include/med"
 pycompile_module=med

From e6073b9b26be31845b922008dc6d5083ec2516e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 712/873] meld: rebuild for Python 3.8.

---
 srcpkgs/meld/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meld/template b/srcpkgs/meld/template
index 9ed6114299e..7cbac065ce6 100644
--- a/srcpkgs/meld/template
+++ b/srcpkgs/meld/template
@@ -1,7 +1,7 @@
 # Template file for 'meld'
 pkgname=meld
 version=3.20.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="meld"

From 30bbbb75eda44c4dfeac15c27223fe671d4703ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 713/873] menulibre: rebuild for Python 3.8.

---
 srcpkgs/menulibre/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/menulibre/template b/srcpkgs/menulibre/template
index 64311115bec..f16c5f64337 100644
--- a/srcpkgs/menulibre/template
+++ b/srcpkgs/menulibre/template
@@ -1,7 +1,7 @@
 # Template file for 'menulibre'
 pkgname=menulibre
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="menulibre menulibre_lib"

From 7f5fb6f6a41e18474dce397f36f38f5cce8f9eca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 714/873] meson-cmake-wrapper: rebuild for Python 3.8.

---
 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 ca14e533431..57eea159ca8 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mcw"

From 2c4c7008df31cd5ec9699fe3aba2f53facd423e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 715/873] mimeo: rebuild for Python 3.8.

---
 srcpkgs/mimeo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mimeo/template b/srcpkgs/mimeo/template
index bef8dcde863..991c61d9df8 100644
--- a/srcpkgs/mimeo/template
+++ b/srcpkgs/mimeo/template
@@ -1,7 +1,7 @@
 # Template file for 'mimeo'
 pkgname=mimeo
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="Mimeo.py"

From 533400db8d1d7673cb8a5b187cf4510495a5d6fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 716/873] mozo: rebuild for Python 3.8.

---
 srcpkgs/mozo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template
index 041f2454c3d..7bc18f017c7 100644
--- a/srcpkgs/mozo/template
+++ b/srcpkgs/mozo/template
@@ -1,7 +1,7 @@
 # Template file for 'mozo'
 pkgname=mozo
 version=1.22.2
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="Mozo"

From 79476ba290c89d038ce38a9ed875bed6b5bf69e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 717/873] mpd-sima: rebuild for Python 3.8.

---
 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 fb72f0d2632..831fec709b7 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=1
+revision=2
 archs=noarch
 wrksrc="MPD_sima-${version}"
 build_style=python3-module

From 9d547673ab95e2aeb2d2405f6fff480cbd9afa5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 718/873] mps-youtube: rebuild for Python 3.8.

---
 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 7b104aa706f..2141b3e627d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mps_youtube"

From 8e1db2d48466dc2bdc06e1330eeefaa727da6356 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 719/873] mugshot: rebuild for Python 3.8.

---
 srcpkgs/mugshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mugshot/template b/srcpkgs/mugshot/template
index cf27b30acac..1e695654a86 100644
--- a/srcpkgs/mugshot/template
+++ b/srcpkgs/mugshot/template
@@ -1,7 +1,7 @@
 # Template file for 'mugshot'
 pkgname=mugshot
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra"

From dd0ad3b8c52088d1809fd214b32ed7b0acdd2f66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 720/873] multibootusb: rebuild for Python 3.8.

---
 srcpkgs/multibootusb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/multibootusb/template b/srcpkgs/multibootusb/template
index 049b641c5fd..70cb07a85ac 100644
--- a/srcpkgs/multibootusb/template
+++ b/srcpkgs/multibootusb/template
@@ -1,7 +1,7 @@
 # Template file for 'multibootusb'
 pkgname=multibootusb
 version=9.2.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="scripts"

From 85356b30501f219e78afd8cb95f1a6cb09193ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 721/873] mymcplus: rebuild for Python 3.8.

---
 srcpkgs/mymcplus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mymcplus/template b/srcpkgs/mymcplus/template
index 369ac8048ed..f30c62b09f4 100644
--- a/srcpkgs/mymcplus/template
+++ b/srcpkgs/mymcplus/template
@@ -1,7 +1,7 @@
 # Template file for 'mymcplus'
 pkgname=mymcplus
 version=3.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mymcplus"

From f10ceae15759ab2c42d786a23926a759967abb41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 722/873] nagstamon: fix and rebuild for Python 3.8.

---
 srcpkgs/nagstamon/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/nagstamon/template b/srcpkgs/nagstamon/template
index 3a63bb5f1d9..0eb5bc75d27 100644
--- a/srcpkgs/nagstamon/template
+++ b/srcpkgs/nagstamon/template
@@ -1,7 +1,7 @@
 # Template file for 'nagstamon'
 pkgname=nagstamon
 version=3.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=Nagstamon
 build_style=python3-module
@@ -16,6 +16,10 @@ homepage="https://nagstamon.ifw-dresden.de"
 distfiles="https://nagstamon.ifw-dresden.de/files/stable/Nagstamon-${version}.tar.gz"
 checksum=a834460e78dc01f62171a83c4a11d890702264ed662863dff39edaf14ae98880
 
+post_extract() {
+	# Gone in python 3.8, but these where the python 3.6 values.  ;)
+	vsed -i -e 's/platform.dist()/("","","")/g' setup.py
+}
 post_install() {
 	chmod 644 ${DESTDIR}/usr/share/pixmaps/nagstamon.svg
 	mv -v ${DESTDIR}/usr/bin/nagstamon.py ${DESTDIR}/usr/bin/nagstamon

From 52acf83950d25bcf72b3fc81796436543c409ce8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 723/873] neovim-remote: rebuild for Python 3.8.

---
 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 d8473bf0521..7391f9df2ee 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.2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nvr"

From ae77cba0468f1ab1fe3e89bf758d2d153c6b8725 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 724/873] newt: rebuild for Python 3.8.

---
 srcpkgs/newt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/newt/template b/srcpkgs/newt/template
index 3971bbfdbf7..25ccc946f51 100644
--- a/srcpkgs/newt/template
+++ b/srcpkgs/newt/template
@@ -1,7 +1,7 @@
 # Template file for 'newt'
 pkgname=newt
 version=0.52.21
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python-devel python3-devel"
 makedepends="slang-devel popt-devel python3-devel python-devel"

From 5d77f30f98b4d84c2807418deb840acda4016790 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 725/873] notmuch: rebuild for Python 3.8.

---
 srcpkgs/notmuch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/notmuch/template b/srcpkgs/notmuch/template
index ced670a59d4..a3085fd4c27 100644
--- a/srcpkgs/notmuch/template
+++ b/srcpkgs/notmuch/template
@@ -1,7 +1,7 @@
 # Template file for 'notmuch'
 pkgname=notmuch
 version=0.29.1
-revision=1
+revision=2
 hostmakedepends="perl pkg-config python-devel python3-Sphinx python3-devel"
 makedepends="bash-completion gmime3-devel talloc-devel xapian-core-devel"
 short_desc="Thread-based email index, search, and tagging"

From 2a004663318b9be9e0b13e69c2f89b9682ece8e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 726/873] nyx: rebuild for Python 3.8.

---
 srcpkgs/nyx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/nyx/template b/srcpkgs/nyx/template
index 201ab5856ff..4b265771793 100644
--- a/srcpkgs/nyx/template
+++ b/srcpkgs/nyx/template
@@ -1,7 +1,7 @@
 # Template file for 'nyx'
 pkgname=nyx
 version=2.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nyx"

From 9ff1df8e1d687a5a38d373d51d32e4e428dbe286 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 727/873] olm-python: rebuild for Python 3.8.

---
 srcpkgs/olm-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/olm-python/template b/srcpkgs/olm-python/template
index 57ac1cfa01b..0141611ea3f 100644
--- a/srcpkgs/olm-python/template
+++ b/srcpkgs/olm-python/template
@@ -1,7 +1,7 @@
 # Template file for 'olm-python'
 pkgname=olm-python
 version=3.1.4
-revision=1
+revision=2
 wrksrc="olm-${version}"
 build_wrksrc=python
 build_style=python-module

From b5b9070e7d35511535cee5a401bcdb4ea6359959 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 728/873] onboard: rebuild for Python 3.8.

---
 srcpkgs/onboard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onboard/template b/srcpkgs/onboard/template
index 844744038d8..467ed8f0ea5 100644
--- a/srcpkgs/onboard/template
+++ b/srcpkgs/onboard/template
@@ -1,7 +1,7 @@
 # Template file for 'onboard'
 pkgname=onboard
 version=1.4.1
-revision=4
+revision=5
 build_style=python3-module
 pycompile_module="Onboard"
 patch_args="-Np1"

From c23e1317c4a493f2967ade1da8cf6eb9806b2066 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 729/873] openrazer-meta: rebuild for Python 3.8.

---
 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 112cb9e900b..60dc8212a73 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=2
+revision=3
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 0c8dabe0616d85f801dfefea1b22748ee6055bdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 730/873] openshot: rebuild for Python 3.8.

---
 srcpkgs/openshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/openshot/template b/srcpkgs/openshot/template
index 605ea7305c2..d71b4d09fae 100644
--- a/srcpkgs/openshot/template
+++ b/srcpkgs/openshot/template
@@ -1,7 +1,7 @@
 # Template file for 'openshot'
 pkgname=openshot
 version=2.4.4
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 wrksrc="${pkgname}-qt-${version}"
 build_style=python3-module

From e14cf6e0c5c985078aade34a1f21446e153dbeed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 731/873] orca: rebuild for Python 3.8.

---
 srcpkgs/orca/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/orca/template b/srcpkgs/orca/template
index ac1c0e1dc0e..57d1495c10a 100644
--- a/srcpkgs/orca/template
+++ b/srcpkgs/orca/template
@@ -1,7 +1,7 @@
 # Template file for 'orca'
 pkgname=orca
 version=3.34.0
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="orca"

From ef83881d95547fbaa4f216958aa7f49b0b2c98b3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 732/873] papis: rebuild for Python 3.8.

---
 srcpkgs/papis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/papis/template b/srcpkgs/papis/template
index 95044b2a6a4..d99f358fc0d 100644
--- a/srcpkgs/papis/template
+++ b/srcpkgs/papis/template
@@ -1,7 +1,7 @@
 # Template file for 'papis'
 pkgname=papis
 version=0.8
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-requests python3-yaml python3-chardet python3-BeautifulSoup4

From f4cf98a67a63c679f47a66c6b67ab7309b5769f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 733/873] paraview: rebuild for Python 3.8.

---
 srcpkgs/paraview/template | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/paraview/template b/srcpkgs/paraview/template
index 3b721b1833a..d928a5ea095 100644
--- a/srcpkgs/paraview/template
+++ b/srcpkgs/paraview/template
@@ -1,7 +1,7 @@
 # Template file for 'paraview'
 pkgname=paraview
 version=5.6.1
-revision=1
+revision=2
 wrksrc=ParaView-v${version}
 build_style=cmake
 configure_args="-DPARAVIEW_ENABLE_FFMPEG=ON
@@ -58,6 +58,11 @@ checksum=50ef01f54db6358b402e50d1460ef47c04d675bf26f250c6937737169f1e6612
 CFLAGS="-D_GNU_SOURCE"
 CXXFLAGS="-D_GNU_SOURCE"
 
+post_extract() {
+	# Python 3.8 API change: https://docs.python.org/3/c-api/typeobj.html
+	sed -i '/\/\/ tp_print/s/nullptr/0/' \
+		VTK/Wrapping/Tools/*.c VTK/Wrapping/PythonCore/*.cxx
+}
 post_install() {
 	vlicense Copyright.txt
 }

From 726b01acdb0c9e145291f4e36011c0aaa709684d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 734/873] pass-git-helper: rebuild for Python 3.8.

---
 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 dfeed3ba4f0..6d7f25bd8a7 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.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 78ecdb2c1a4374ceaca2d5093af3a91996be3350 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 735/873] peframe: rebuild for Python 3.8.

---
 srcpkgs/peframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peframe/template b/srcpkgs/peframe/template
index b9d64f7a5a6..5ecede6cf56 100644
--- a/srcpkgs/peframe/template
+++ b/srcpkgs/peframe/template
@@ -1,7 +1,7 @@
 # Template file for 'peframe'
 pkgname=peframe
 version=6.0.3
-revision=1
+revision=2
 archs=noarch
 build_style="python3-module"
 pycompile_module="peframe"

From 78841509335c273af19896de5b79ea31c3168e1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 736/873] peru: rebuild for Python 3.8.

---
 srcpkgs/peru/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peru/template b/srcpkgs/peru/template
index 682440f0b50..10d4689338d 100644
--- a/srcpkgs/peru/template
+++ b/srcpkgs/peru/template
@@ -1,7 +1,7 @@
 # Template file for 'peru'
 pkgname=peru
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="peru"

From 9513806ce9175a7e7f042c9a8aa445525747c64b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 737/873] pgcli: rebuild for Python 3.8.

---
 srcpkgs/pgcli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index b967287e9cb..b187a0a4440 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,7 +1,7 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pgcli"

From 9b06f6f2643e97359ce83918b636d83617530e9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 738/873] picard: rebuild for Python 3.8.

---
 srcpkgs/picard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/picard/template b/srcpkgs/picard/template
index 1bae142434a..08404a88475 100644
--- a/srcpkgs/picard/template
+++ b/srcpkgs/picard/template
@@ -1,7 +1,7 @@
 # Template file for 'picard'
 pkgname=picard
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname}-release-${version}"
 build_style=python3-module

From f046b5d0d02d0350b9b4b0d012941d73a64d7674 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 739/873] piper: rebuild for Python 3.8.

---
 srcpkgs/piper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/piper/template b/srcpkgs/piper/template
index af8cc854991..91a31131f84 100644
--- a/srcpkgs/piper/template
+++ b/srcpkgs/piper/template
@@ -1,7 +1,7 @@
 # Template file for 'piper'
 pkgname=piper
 version=0.2.904
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 hostmakedepends="libratbag pkg-config glib-devel"

From 35264de163d55cc30160d954c08f635a5fa12285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 740/873] playitslowly: rebuild for Python 3.8.

---
 srcpkgs/playitslowly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/playitslowly/template b/srcpkgs/playitslowly/template
index d26cea3510a..6d3483ae251 100644
--- a/srcpkgs/playitslowly/template
+++ b/srcpkgs/playitslowly/template
@@ -1,7 +1,7 @@
 # Template file for 'playitslowly'
 pkgname=playitslowly
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From e81422f6d1d5c7623368d70897172c813b3de9b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 741/873] pmbootstrap: rebuild for Python 3.8.

---
 srcpkgs/pmbootstrap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pmbootstrap/template b/srcpkgs/pmbootstrap/template
index 1bfa8183a84..15e606439c2 100644
--- a/srcpkgs/pmbootstrap/template
+++ b/srcpkgs/pmbootstrap/template
@@ -1,7 +1,7 @@
 # Template file for 'pmbootstrap'
 pkgname=pmbootstrap
 version=1.9.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pmb"

From 527e6a4630f16baca7fc343a5a1d9a05342d82ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 742/873] pockyt: fix and rebuild for Python 3.8.

---
 srcpkgs/pockyt/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/pockyt/template b/srcpkgs/pockyt/template
index 760573904b1..ff12361d443 100644
--- a/srcpkgs/pockyt/template
+++ b/srcpkgs/pockyt/template
@@ -1,7 +1,7 @@
 # Template file for 'pockyt'
 pkgname=pockyt
 version=1.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -13,3 +13,7 @@ license="GPL-3.0-or-later"
 homepage="https://github.com/arvindch/pockyt"
 distfiles="${homepage}/archive/${version}.tar.gz"
 checksum=cd9561e126a6a01c73762639eb7e38b8c509ed1412f72fcc4729b12565b9962c
+
+post_extract() {
+	sed -i 's/(3, 7)/&, (3, 8)/' setup.py
+}

From b17ef4dbbbef2220a50989dc81f76cba0decd84a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 743/873] poezio: rebuild for Python 3.8.

---
 srcpkgs/poezio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/poezio/template b/srcpkgs/poezio/template
index 56f8138bb5e..4b318419dab 100644
--- a/srcpkgs/poezio/template
+++ b/srcpkgs/poezio/template
@@ -1,7 +1,7 @@
 # Template file for 'poezio'
 pkgname=poezio
 version=0.12.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="poezio poezio_plugins poezio_themes"
 hostmakedepends="python3-setuptools pkg-config"

From 3b5be45e96733313ad2473bc51a7d8eee1702577 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 744/873] protontricks: rebuild for Python 3.8.

---
 srcpkgs/protontricks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/protontricks/template b/srcpkgs/protontricks/template
index a32f51c4845..dc003b63690 100644
--- a/srcpkgs/protontricks/template
+++ b/srcpkgs/protontricks/template
@@ -1,7 +1,7 @@
 # Template file for 'protontricks'
 pkgname=protontricks
 version=1.2.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-setuptools"

From 6b17e630c97868c3510f8e786c4c0a4d3b250ecf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 745/873] pulseaudio-equalizer-ladspa: rebuild for Python 3.8.

---
 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 62d7eef2a65..10198de2c08 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=1
+revision=2
 wrksrc="equalizer-${version}"
 build_style=meson
 pycompile_module="pulseeq"

From 70dbb53c2ba650d2fc146e7837f700dec9df6062 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 746/873] pulseeffects: rebuild for Python 3.8.

---
 srcpkgs/pulseeffects/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pulseeffects/template b/srcpkgs/pulseeffects/template
index 7fc44f938d9..dc9044cad32 100644
--- a/srcpkgs/pulseeffects/template
+++ b/srcpkgs/pulseeffects/template
@@ -2,7 +2,7 @@
 pkgname=pulseeffects
 reverts="4.3.4_1"
 version=3.2.3
-revision=3
+revision=4
 build_style=meson
 pycompile_module="PulseEffects PulseEffectsTest"
 hostmakedepends="pkg-config"

From b1dc43e0f84322bbc809630267fe0e51c5e1b41e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 747/873] py3status: rebuild for Python 3.8.

---
 srcpkgs/py3status/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/py3status/template b/srcpkgs/py3status/template
index b7a263270e4..01709cfd14d 100644
--- a/srcpkgs/py3status/template
+++ b/srcpkgs/py3status/template
@@ -1,7 +1,7 @@
 # Template file for 'py3status'
 pkgname=py3status
 version=3.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="py3status"

From 0644b2ee33752b76bc1875c86123ab77a073fc53 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 748/873] pychess: rebuild for Python 3.8.

---
 srcpkgs/pychess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pychess/template b/srcpkgs/pychess/template
index 2c6ecef7bf9..d0594aa77f4 100644
--- a/srcpkgs/pychess/template
+++ b/srcpkgs/pychess/template
@@ -1,7 +1,7 @@
 # Template file for 'pychess'
 pkgname=pychess
 version=0.12.4
-revision=2
+revision=3
 build_style=python3-module
 pycompile_module="pychess"
 archs=noarch

From 5cf19da1be32229c7b04dffba15cd724042a2e9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 749/873] pycp: rebuild for Python 3.8.

---
 srcpkgs/pycp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pycp/template b/srcpkgs/pycp/template
index 770eb50d3f4..c9066259862 100644
--- a/srcpkgs/pycp/template
+++ b/srcpkgs/pycp/template
@@ -1,7 +1,7 @@
 # Template file for 'pycp'
 pkgname=pycp
 version=8.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pycp"

From d88382e9fb382116d88e9ccd60e69a7320462f5c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 750/873] pymol: rebuild for Python 3.8.

---
 srcpkgs/pymol/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pymol/template b/srcpkgs/pymol/template
index 428ba7a6deb..e1031f325c0 100644
--- a/srcpkgs/pymol/template
+++ b/srcpkgs/pymol/template
@@ -1,7 +1,7 @@
 # Template file for 'pymol'
 pkgname=pymol
 version=2.3.0
-revision=1
+revision=2
 wrksrc=${pkgname}-open-source-${version}
 build_style="python3-module"
 makedepends="msgpack-devel python3-numpy freetype-devel libfreeglut-devel glew-devel

From 1245dfb2ab23badf279042adca4caff2deba10a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 751/873] pyradio: rebuild for Python 3.8.

---
 srcpkgs/pyradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyradio/template b/srcpkgs/pyradio/template
index 10d7d8c6fbb..d2d5feddbdd 100644
--- a/srcpkgs/pyradio/template
+++ b/srcpkgs/pyradio/template
@@ -1,7 +1,7 @@
 # Template file for 'pyradio'
 pkgname=pyradio
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pyradio"

From f677cdf12f3d405d1bcb43aab8dd1fc258ee91d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 752/873] pyside2-tools: rebuild for Python 3.8.

---
 srcpkgs/pyside2-tools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyside2-tools/template b/srcpkgs/pyside2-tools/template
index 4ba0044452d..0a153de8c15 100644
--- a/srcpkgs/pyside2-tools/template
+++ b/srcpkgs/pyside2-tools/template
@@ -1,7 +1,7 @@
 # Template file for 'pyside2-tools'
 pkgname=pyside2-tools
 version=5.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release

From 727e69b5ed47b99d25354a6a6d6f42b907a7b696 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 753/873] pysolfc: rebuild for Python 3.8.

---
 srcpkgs/pysolfc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pysolfc/template b/srcpkgs/pysolfc/template
index 62eb90009af..1631e9619d3 100644
--- a/srcpkgs/pysolfc/template
+++ b/srcpkgs/pysolfc/template
@@ -1,7 +1,7 @@
 # Template file for 'pysolfc'
 pkgname=pysolfc
 version=2.6.4
-revision=2
+revision=3
 archs="noarch"
 wrksrc="PySolFC-${pkgname}-${version}"
 build_style=python3-module

From 837440a9d7d89a3bcfe00ffd798f18212ea374e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 754/873] pywal: rebuild for Python 3.8.

---
 srcpkgs/pywal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pywal/template b/srcpkgs/pywal/template
index 214a36698f2..98c4e1581e4 100644
--- a/srcpkgs/pywal/template
+++ b/srcpkgs/pywal/template
@@ -1,7 +1,7 @@
 # Template file for 'pywal'
 pkgname=pywal
 version=3.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pywal"

From 168ac3cd6bd43efb1d6d4192cd9b426cffb66930 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 755/873] qomui: rebuild for Python 3.8.

---
 srcpkgs/qomui/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qomui/template b/srcpkgs/qomui/template
index 4e68864252d..8063350ba06 100644
--- a/srcpkgs/qomui/template
+++ b/srcpkgs/qomui/template
@@ -1,7 +1,7 @@
 # Template file for 'qomui'
 pkgname=qomui
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qomui"

From 26a0119ac8b90d7cd7d6f2c49b3d1c927325b552 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 756/873] quodlibet: rebuild for Python 3.8.

---
 srcpkgs/quodlibet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/quodlibet/template b/srcpkgs/quodlibet/template
index 53f6e926315..4b0c4ba0de5 100644
--- a/srcpkgs/quodlibet/template
+++ b/srcpkgs/quodlibet/template
@@ -1,7 +1,7 @@
 # Template file for 'quodlibet'
 pkgname=quodlibet
 version=4.2.1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="quodlibet"

From c8788e4bb387cdc48040e3af5663a0a23e068ed2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 757/873] qutebrowser: rebuild for Python 3.8.

---
 srcpkgs/qutebrowser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qutebrowser/template b/srcpkgs/qutebrowser/template
index 11b74e4445d..07257c2d84b 100644
--- a/srcpkgs/qutebrowser/template
+++ b/srcpkgs/qutebrowser/template
@@ -1,7 +1,7 @@
 # Template file for 'qutebrowser'
 pkgname=qutebrowser
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qutebrowser"

From 2a2f8aeebe7cb2c4d3783dcdf5725f4c8e717d03 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 758/873] r128gain: rebuild for Python 3.8.

---
 srcpkgs/r128gain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/r128gain/template b/srcpkgs/r128gain/template
index cdea955828e..1cb30c786f8 100644
--- a/srcpkgs/r128gain/template
+++ b/srcpkgs/r128gain/template
@@ -1,7 +1,7 @@
 # Template file for 'r128gain'
 pkgname=r128gain
 version=0.9.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="r128gain"
 hostmakedepends="python3-setuptools"

From b923fdcd9bc9204affa69740d34e582e6712ed4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 759/873] radicale2: rebuild for Python 3.8.

---
 srcpkgs/radicale2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/radicale2/template b/srcpkgs/radicale2/template
index 0d8a27d89f3..310bc8cb3cf 100644
--- a/srcpkgs/radicale2/template
+++ b/srcpkgs/radicale2/template
@@ -1,7 +1,7 @@
 # Template file for 'radicale2'
 pkgname=radicale2
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module

From befc14e8b9ff96c37104bf2441216707df5bcc8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 760/873] ranger: rebuild for Python 3.8.

---
 srcpkgs/ranger/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template
index a387eac4ed7..a49716971a5 100644
--- a/srcpkgs/ranger/template
+++ b/srcpkgs/ranger/template
@@ -1,7 +1,7 @@
 # Template file for 'ranger'
 pkgname=ranger
 version=1.9.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ranger"

From d490364b5c373b46163f36731a39754e04556e98 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 761/873] rednotebook: rebuild for Python 3.8.

---
 srcpkgs/rednotebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rednotebook/template b/srcpkgs/rednotebook/template
index ac870a7a992..af7dea12fd5 100644
--- a/srcpkgs/rednotebook/template
+++ b/srcpkgs/rednotebook/template
@@ -1,7 +1,7 @@
 # Template file for 'rednotebook'
 pkgname=rednotebook
 version=2.11.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rednotebook"

From 44a5a4b73859a74fb915e7613fce5caeabd8acf1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 762/873] redshift: rebuild for Python 3.8.

---
 srcpkgs/redshift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/redshift/template b/srcpkgs/redshift/template
index bb31e7cec05..c58b8daeb76 100644
--- a/srcpkgs/redshift/template
+++ b/srcpkgs/redshift/template
@@ -1,7 +1,7 @@
 # Template file for 'redshift'
 pkgname=redshift
 version=1.12
-revision=1
+revision=2
 build_style=gnu-configure
 build_options="geoclue2"
 configure_args="--enable-gui --disable-geoclue $(vopt_enable geoclue2)"

From c0649b58de59e8a68aff332807f3240430e3ee7c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 763/873] ripe-atlas-tools: rebuild for Python 3.8.

---
 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 c8eef786962..c5e21c4b8dc 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=2.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ripe/atlas/tools"

From 8af034434b8588027b9c7e0f1b0abc587ad462bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 764/873] rmlint: rebuild for Python 3.8.

---
 srcpkgs/rmlint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rmlint/template b/srcpkgs/rmlint/template
index dc8d904d0c2..894a9a1dd01 100644
--- a/srcpkgs/rmlint/template
+++ b/srcpkgs/rmlint/template
@@ -1,7 +1,7 @@
 # Template file for 'rmlint'
 pkgname=rmlint
 version=2.9.0
-revision=1
+revision=2
 build_style=scons
 hostmakedepends="pkg-config python3-Sphinx glib-devel"
 makedepends="libblkid-devel elfutils-devel json-glib-devel"

From 04462f15c08bdd92062a53e420054fdfd65da92b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 765/873] rtv: rebuild for Python 3.8.

---
 srcpkgs/rtv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rtv/template b/srcpkgs/rtv/template
index 1a089e3e88d..1fc137b2e5b 100644
--- a/srcpkgs/rtv/template
+++ b/srcpkgs/rtv/template
@@ -1,7 +1,7 @@
 # Template file for 'rtv'
 pkgname=rtv
 version=1.27.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rtv"

From deb18b1928007c6e0a1042dab8adfe94a801bc28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 766/873] rubber: rebuild for Python 3.8.

---
 srcpkgs/rubber/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rubber/template b/srcpkgs/rubber/template
index cf668638cef..c7fe4cbbd06 100644
--- a/srcpkgs/rubber/template
+++ b/srcpkgs/rubber/template
@@ -1,7 +1,7 @@
 # Template file for 'rubber'
 pkgname=rubber
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From d19b0a94a22decc29f95aa94f2398a30133f2211 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 767/873] safeeyes: rebuild for Python 3.8.

---
 srcpkgs/safeeyes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/safeeyes/template b/srcpkgs/safeeyes/template
index bc35f302011..e7019662316 100644
--- a/srcpkgs/safeeyes/template
+++ b/srcpkgs/safeeyes/template
@@ -1,7 +1,7 @@
 # Template file for 'safeeyes'
 pkgname=safeeyes
 version=2.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="safeeyes"

From c2dacb3fb6e6380df395bffb3460d67524ddf348 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 768/873] scapy: rebuild for Python 3.8.

---
 srcpkgs/scapy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scapy/template b/srcpkgs/scapy/template
index 65242f332a8..36972bfd461 100644
--- a/srcpkgs/scapy/template
+++ b/srcpkgs/scapy/template
@@ -1,7 +1,7 @@
 # Template file for 'scapy'
 pkgname=scapy
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="scapy"

From 6b1ebeaf3648f62790dbf2c394c4060d12cb23d0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 769/873] screenplain: rebuild for Python 3.8.

---
 srcpkgs/screenplain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/screenplain/template b/srcpkgs/screenplain/template
index 8410ab45e40..8eb759ae6a6 100644
--- a/srcpkgs/screenplain/template
+++ b/srcpkgs/screenplain/template
@@ -1,7 +1,7 @@
 # Template file for 'screenplain'
 pkgname=screenplain
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenplain"

From 483229f73350818a1571180552a37954f26fe29d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 770/873] scudcloud: rebuild for Python 3.8.

---
 srcpkgs/scudcloud/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
index 1b9f5f27d8a..1ab2618066e 100644
--- a/srcpkgs/scudcloud/template
+++ b/srcpkgs/scudcloud/template
@@ -1,7 +1,7 @@
 # Template file for 'scudcloud'
 pkgname=scudcloud
 version=1.65
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="scudcloud"
 hostmakedepends="python3-setuptools"

From 123ca799b85c1e8c6cb93162214eead9f92e0baa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 771/873] seafile-libclient: rebuild for Python 3.8.

---
 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 47c49d5ceb2..5eda59c1041 100644
--- a/srcpkgs/seafile-libclient/template
+++ b/srcpkgs/seafile-libclient/template
@@ -1,7 +1,7 @@
 # Template file for 'seafile-libclient'
 pkgname=seafile-libclient
 version=7.0.2
-revision=1
+revision=2
 _distname="${pkgname/-libclient/}"
 wrksrc="${_distname}-${version}"
 build_style=gnu-configure

From dadf6fedad6d6851a5b944f873d4d86cd36ed505 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 772/873] sonata: rebuild for Python 3.8.

---
 srcpkgs/sonata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template
index 3e07610d1e5..fc2d86e6c1a 100644
--- a/srcpkgs/sonata/template
+++ b/srcpkgs/sonata/template
@@ -1,7 +1,7 @@
 # Template file for 'sonata'
 pkgname=sonata
 version=1.7b1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="sonata"

From 430726310d4a2c6f4487784216744a0ba8d42a97 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 773/873] speech-dispatcher: rebuild for Python 3.8.

---
 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 0c27951586a..39cebf1f320 100644
--- a/srcpkgs/speech-dispatcher/template
+++ b/srcpkgs/speech-dispatcher/template
@@ -1,7 +1,7 @@
 # Template build file for 'speech-dispatcher'.
 pkgname=speech-dispatcher
 version=0.8.8
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static"
 short_desc="High-level device independent layer for speech synthesis interface"

From 4bea1bb7754629dcc5164d4be09697dacdc27f52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 774/873] speedtest-cli: rebuild for Python 3.8.

---
 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 6746ea3a35e..c65d9fd631d 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.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="speedtest.py"

From b24b9d876eb69c9d222b4115f375b535b41d8e34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 775/873] sshuttle: rebuild for Python 3.8.

---
 srcpkgs/sshuttle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sshuttle/template b/srcpkgs/sshuttle/template
index e74d90171f2..04bae9a15c3 100644
--- a/srcpkgs/sshuttle/template
+++ b/srcpkgs/sshuttle/template
@@ -1,7 +1,7 @@
 # Template file for 'sshuttle'
 pkgname=sshuttle
 version=0.78.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="sshuttle"

From a94cf196bb0163b8ceac1e90b0c8aacf242262a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 776/873] sssd: rebuild for Python 3.8.

---
 srcpkgs/sssd/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sssd/template b/srcpkgs/sssd/template
index 2ea28d21bee..13d0da0ba99 100644
--- a/srcpkgs/sssd/template
+++ b/srcpkgs/sssd/template
@@ -1,7 +1,7 @@
 # Template file for 'sssd'
 pkgname=sssd
 version=2.0.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-selinux --without-semanage
  --disable-cifs-idmap-plugin --without-samba --with-os=fedora

From 70d497d5a57f21eb299193883523ee44fa71ea5a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 777/873] stcgal: rebuild for Python 3.8.

---
 srcpkgs/stcgal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stcgal/template b/srcpkgs/stcgal/template
index 3410ccf8678..d75e88837cc 100644
--- a/srcpkgs/stcgal/template
+++ b/srcpkgs/stcgal/template
@@ -1,7 +1,7 @@
 # Template file for 'stcgal'
 pkgname=stcgal
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="stcgal"

From cdf4a89e4e281111a817c4c7113ad77d40c5c6be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 778/873] stig: rebuild for Python 3.8.

---
 srcpkgs/stig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stig/template b/srcpkgs/stig/template
index 0777c5f0cc2..abe5f3b563c 100644
--- a/srcpkgs/stig/template
+++ b/srcpkgs/stig/template
@@ -1,7 +1,7 @@
 # Template file for 'stig'
 pkgname=stig
 version=0.10.1a
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 930f6e549836c3d39fd851a831e39a14e72633bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 779/873] streamlink: rebuild for Python 3.8.

---
 srcpkgs/streamlink/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/streamlink/template b/srcpkgs/streamlink/template
index abcdc12c4ac..59caa85dc8a 100644
--- a/srcpkgs/streamlink/template
+++ b/srcpkgs/streamlink/template
@@ -1,7 +1,7 @@
 # Template file for 'streamlink'
 pkgname=streamlink
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="streamlink streamlink_cli"

From ba9febf35412930fc49b70b49d56a17aa23ec4db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 780/873] subuser: rebuild for Python 3.8.

---
 srcpkgs/subuser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/subuser/template b/srcpkgs/subuser/template
index 50444246b29..0bc3e71db36 100644
--- a/srcpkgs/subuser/template
+++ b/srcpkgs/subuser/template
@@ -1,7 +1,7 @@
 # Template file for 'subuser'
 pkgname=subuser
 version=0.6.2
-revision=2
+revision=3
 archs="x86_64*"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From e15b7d83da234e08cd82b0718dee84173dfe4966 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 781/873] synapse: rebuild for Python 3.8.

---
 srcpkgs/synapse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template
index daae80e5792..0c0fd6841fb 100644
--- a/srcpkgs/synapse/template
+++ b/srcpkgs/synapse/template
@@ -1,7 +1,7 @@
 # Template file for 'synapse'
 pkgname=synapse
 version=1.3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From b4a3fa9e78a0b408df1d5ebbe41cd3ac56907dc4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 782/873] tekaim: rebuild for Python 3.8.

---
 srcpkgs/tekaim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tekaim/template b/srcpkgs/tekaim/template
index e3cc5335ecc..bd60dcc57a6 100644
--- a/srcpkgs/tekaim/template
+++ b/srcpkgs/tekaim/template
@@ -1,7 +1,7 @@
 # Template file for 'tekaim'
 pkgname=tekaim
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From 7224199b765cb4f2b66887ffe6244532da34b988 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 783/873] telepresence: rebuild for Python 3.8.

---
 srcpkgs/telepresence/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/telepresence/template b/srcpkgs/telepresence/template
index 17300f3b548..fa7f916f66f 100644
--- a/srcpkgs/telepresence/template
+++ b/srcpkgs/telepresence/template
@@ -1,7 +1,7 @@
 # Template file for 'telepresence'
 pkgname=telepresence
 version=0.102
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="telepresence"

From f585c9fe61cb8e3a7275817bb40e60bd92406046 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 784/873] termdown: rebuild for Python 3.8.

---
 srcpkgs/termdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/termdown/template b/srcpkgs/termdown/template
index 90a4a894d42..299de920389 100644
--- a/srcpkgs/termdown/template
+++ b/srcpkgs/termdown/template
@@ -1,7 +1,7 @@
 # Template file for 'termdown'
 pkgname=termdown
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="termdown.py"

From 52c4dcee8ca0ed8b268907b88b218d7b8e6f9593 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 785/873] terminal_markdown_viewer: rebuild for Python 3.8.

---
 srcpkgs/terminal_markdown_viewer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/terminal_markdown_viewer/template b/srcpkgs/terminal_markdown_viewer/template
index e5d0f38aae2..ba3fcfdc8d6 100644
--- a/srcpkgs/terminal_markdown_viewer/template
+++ b/srcpkgs/terminal_markdown_viewer/template
@@ -1,7 +1,7 @@
 # Template file for 'terminal_markdown_viewer'
 pkgname=terminal_markdown_viewer
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mdv"

From c4298b68d0f7694e8a23e689420f2a3d1f085606 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 786/873] thefuck: rebuild for Python 3.8.

---
 srcpkgs/thefuck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thefuck/template b/srcpkgs/thefuck/template
index 714cd7982c7..a0de1c7b6a3 100644
--- a/srcpkgs/thefuck/template
+++ b/srcpkgs/thefuck/template
@@ -1,7 +1,7 @@
 # Template file for 'thefuck'
 pkgname=thefuck
 version=3.29
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="thefuck"

From b18d19065aa9bd9b335b3ee939bb0bd64efade58 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 787/873] thinkpad-scripts: rebuild for Python 3.8.

---
 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 8d26cf23e77..855d42492fb 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tps"

From 1770ed9b1c9c751304b91a6f6e53da7de1648214 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 788/873] thrift: rebuild for Python 3.8.

---
 srcpkgs/thrift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thrift/template b/srcpkgs/thrift/template
index 73b0f59d4f6..e379ac35a09 100644
--- a/srcpkgs/thrift/template
+++ b/srcpkgs/thrift/template
@@ -1,7 +1,7 @@
 # Template file for 'thrift'
 pkgname=thrift
 version=0.12.0
-revision=2
+revision=3
 build_style=gnu-configure
 makedepends="boost-devel libressl-devel"
 short_desc="Apache Thrift compiler"

From 524283aef8b8fdd32035330913bfd16958f21979 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 789/873] todoman: rebuild for Python 3.8.

---
 srcpkgs/todoman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/todoman/template b/srcpkgs/todoman/template
index 2e0489ff49e..676412b8d0b 100644
--- a/srcpkgs/todoman/template
+++ b/srcpkgs/todoman/template
@@ -1,7 +1,7 @@
 # Template file for 'todoman'
 pkgname=todoman
 version=3.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="todoman"

From 7180afa5a1715531304f6a36a9eac431039f64f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 790/873] toot: rebuild for Python 3.8.

---
 srcpkgs/toot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template
index b6dcdc9ede6..7f9fac6ca01 100644
--- a/srcpkgs/toot/template
+++ b/srcpkgs/toot/template
@@ -1,7 +1,7 @@
 # Template file for 'toot'
 pkgname=toot
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="toot"

From d56207a1678134019b4f169934f0c50a78cf7588 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 791/873] torbrowser-launcher: fix and rebuild for Python 3.8.

---
 srcpkgs/torbrowser-launcher/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/torbrowser-launcher/template b/srcpkgs/torbrowser-launcher/template
index a4aa707495c..4986b6b3240 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.2
-revision=1
+revision=2
 archs="i686 x86_64" # limited by Tor Browser itself
 build_style=python3-module
 pycompile_module="torbrowser_launcher"
@@ -15,6 +15,10 @@ changelog="https://raw.githubusercontent.com/micahflee/torbrowser-launcher/maste
 distfiles="https://github.com/micahflee/torbrowser-launcher/archive/v${version}.tar.gz"
 checksum=25ad4b0c70579628bf18f4cdcd18ac303fe4f7f1c590cc48df2a87651c92991c
 
+post_extract() { 
+	# Python 3.8 removed platform.dist()
+	sed -i 's/distro =.*/distro = "Void"/' setup.py
+}
 post_install() {
 	vlicense LICENSE
 	rm ${DESTDIR}/usr/share/locale/torbrowser-launcher.mo # installed twice

From c66dda5131119abe071425664238ca389de34d8f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 792/873] tox: rebuild for Python 3.8.

---
 srcpkgs/tox/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tox/template b/srcpkgs/tox/template
index 8c6b63a3cb1..908cb86bb38 100644
--- a/srcpkgs/tox/template
+++ b/srcpkgs/tox/template
@@ -1,7 +1,7 @@
 # Template file for 'tox'
 pkgname=tox
 version=3.14.0
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="tox"
 hostmakedepends="python3-setuptools"

From c37ef482e10fb14da3d6cb396c8904257dc2c7c0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 793/873] trackma: rebuild for Python 3.8.

---
 srcpkgs/trackma/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/trackma/template b/srcpkgs/trackma/template
index 96833382346..4c29bb8a35d 100644
--- a/srcpkgs/trackma/template
+++ b/srcpkgs/trackma/template
@@ -1,7 +1,7 @@
 # Template file for 'trackma'
 pkgname=trackma
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 0a1f54dd6467927b77f9371a41381a01608228e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 794/873] trash-cli: rebuild for Python 3.8.

---
 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 2a08548c7c8..4ab724d8cb1 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.17.1.14
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3"

From 58a2a91ed22dcbe5fab5c49b6cb5b04cacb0bec6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 795/873] tryton: rebuild for Python 3.8.

---
 srcpkgs/tryton/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tryton/template b/srcpkgs/tryton/template
index 196033361f6..61e0f733dc9 100644
--- a/srcpkgs/tryton/template
+++ b/srcpkgs/tryton/template
@@ -1,7 +1,7 @@
 # Template file for 'tryton'
 pkgname=tryton
 version=5.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tryton"

From 0334c761ba939e24db0b4c619858a9e37a119b2d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 796/873] tuimoji: rebuild for Python 3.8.

---
 srcpkgs/tuimoji/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuimoji/template b/srcpkgs/tuimoji/template
index 71e0bf540c0..73f5cff281f 100644
--- a/srcpkgs/tuimoji/template
+++ b/srcpkgs/tuimoji/template
@@ -1,7 +1,7 @@
 # Template file for 'tuimoji'
 pkgname=tuimoji
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tuimoji"

From 7c8600b2683e37b9ae3b8d28fdf26fda4c4f5c41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 797/873] tuir: rebuild for Python 3.8.

---
 srcpkgs/tuir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuir/template b/srcpkgs/tuir/template
index dfc0b15c535..a98f4484544 100644
--- a/srcpkgs/tuir/template
+++ b/srcpkgs/tuir/template
@@ -1,7 +1,7 @@
 # Template file for 'tuir'
 pkgname=tuir
 version=1.28.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=python3-module

From fa94d7c83f3c15bf441526ff78dcfaa2e1a0e4fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 798/873] tzupdate: rebuild for Python 3.8.

---
 srcpkgs/tzupdate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tzupdate/template b/srcpkgs/tzupdate/template
index 9531f0f7540..de2217476bd 100644
--- a/srcpkgs/tzupdate/template
+++ b/srcpkgs/tzupdate/template
@@ -1,7 +1,7 @@
 # Template file for 'tzupdate'
 pkgname=tzupdate
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tzupdate.py"

From 8246b4d5c37f08891fb4b91655ad97e368d4b404 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 799/873] udiskie: rebuild for Python 3.8.

---
 srcpkgs/udiskie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/udiskie/template b/srcpkgs/udiskie/template
index 536f4d5609d..06d58236046 100644
--- a/srcpkgs/udiskie/template
+++ b/srcpkgs/udiskie/template
@@ -1,7 +1,7 @@
 # Template file for 'udiskie'
 pkgname=udiskie
 version=1.7.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="udiskie"

From c58f7d10a7748b8cf418991f3d804ce8631a137e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 800/873] ueberzug: rebuild for Python 3.8.

---
 srcpkgs/ueberzug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ueberzug/template b/srcpkgs/ueberzug/template
index e0c474ff63e..dfa1ab29d96 100644
--- a/srcpkgs/ueberzug/template
+++ b/srcpkgs/ueberzug/template
@@ -1,7 +1,7 @@
 # Template file for 'ueberzug'
 pkgname=ueberzug
 version=18.1.3
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel libX11-devel libXext-devel"

From e6ca68fa761e2b3df26f06a7b44e30331de08220 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 801/873] ufw: rebuild for Python 3.8.

---
 srcpkgs/ufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ufw/template b/srcpkgs/ufw/template
index ac7dfa45cdd..0bf2a3a0b76 100644
--- a/srcpkgs/ufw/template
+++ b/srcpkgs/ufw/template
@@ -1,7 +1,7 @@
 # Template file for 'ufw'
 pkgname=ufw
 version=0.36
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="ufw"

From 14dcd23aa719947cc774b71ef0820127a4865ef0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 802/873] unicorn: rebuild for Python 3.8.

---
 srcpkgs/unicorn/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/unicorn/template b/srcpkgs/unicorn/template
index 317e261ae88..971d44752ca 100644
--- a/srcpkgs/unicorn/template
+++ b/srcpkgs/unicorn/template
@@ -1,7 +1,7 @@
 # Template file for 'unicorn'
 pkgname=unicorn
 version=1.0.1
-revision=2
+revision=3
 archs="x86_64* i686*"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"
 short_desc="Lightweight multi-platform, multi-architecture CPU emulator framework"

From 1ae8d35f7645adeab1e7f8afafd996c92f0c08b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 803/873] unknown-horizons: rebuild for Python 3.8.

---
 srcpkgs/unknown-horizons/patches/py38.patch | 14 ++++++++++++++
 srcpkgs/unknown-horizons/template           |  2 +-
 2 files changed, 15 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/unknown-horizons/patches/py38.patch

diff --git a/srcpkgs/unknown-horizons/patches/py38.patch b/srcpkgs/unknown-horizons/patches/py38.patch
new file mode 100644
index 00000000000..59194750cd1
--- /dev/null
+++ b/srcpkgs/unknown-horizons/patches/py38.patch
@@ -0,0 +1,14 @@
+--- setup.py.orig
++++ setup.py
+@@ -39,10 +39,7 @@
+ # Ensure we are in the correct directory
+ os.chdir(os.path.realpath(os.path.dirname(__file__)))
+ 
+-if platform.dist()[0].lower() in ('debian', 'ubuntu'):
+-	executable_path = 'games'
+-else:
+-	executable_path = 'bin'
++executable_path = 'bin'
+ 
+ 
+ # this trick is for setting RELEASE_VERSION if the code is cloned from git repository
diff --git a/srcpkgs/unknown-horizons/template b/srcpkgs/unknown-horizons/template
index b5fc593b744..6e81970800d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3 intltool git python3-Pillow"

From 615d1baa489feab3864039bee37dad2e1ba9977d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 804/873] urh: rebuild for Python 3.8.

---
 srcpkgs/urh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urh/template b/srcpkgs/urh/template
index 2cec83082fd..31f28bb366b 100644
--- a/srcpkgs/urh/template
+++ b/srcpkgs/urh/template
@@ -1,7 +1,7 @@
 # Template file for 'urh'
 pkgname=urh
 version=2.7.5
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="urh"
 hostmakedepends="python3-setuptools python3-Cython"

From da0ab011d8839f3a6ddc2367fc8e1c879825ec29 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 805/873] urlscan: rebuild for Python 3.8.

---
 srcpkgs/urlscan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlscan/template b/srcpkgs/urlscan/template
index f6f0d1db07b..2bb1688dad7 100644
--- a/srcpkgs/urlscan/template
+++ b/srcpkgs/urlscan/template
@@ -1,7 +1,7 @@
 # Template file for 'urlscan'
 pkgname=urlscan
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlscan"

From d23be20fa55a06ffcdf1acd3d7018f833d4337c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 806/873] urlwatch: rebuild for Python 3.8.

---
 srcpkgs/urlwatch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlwatch/template b/srcpkgs/urlwatch/template
index e8a5e403c92..1166fe101a7 100644
--- a/srcpkgs/urlwatch/template
+++ b/srcpkgs/urlwatch/template
@@ -1,7 +1,7 @@
 # Template file for 'urlwatch'
 pkgname=urlwatch
 version=2.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlwatch"

From 758ae9723decfd1886b28f363eb103c16dbaa04b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 807/873] vapoursynth: fix and rebuild for Python 3.8.

---
 srcpkgs/vapoursynth/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/vapoursynth/template b/srcpkgs/vapoursynth/template
index dd85e8b39dc..1c417a624c3 100644
--- a/srcpkgs/vapoursynth/template
+++ b/srcpkgs/vapoursynth/template
@@ -1,7 +1,7 @@
 # Template file for 'vapoursynth'
 pkgname=vapoursynth
 version=R47.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake pkg-config libtool nasm python3-Cython"
 makedepends="python3-devel zimg-devel libmagick-devel libass-devel ffmpeg-devel
@@ -21,6 +21,7 @@ case $XBPS_TARGET_MACHINE in
 esac
 
 pre_configure() {
+	sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION/&-embed/g' configure.ac
 	./autogen.sh
 	case $XBPS_TARGET_MACHINE in
 		arm*musl)

From 2765c9f1b1e0d4395e629f6ff66e1003221cbb27 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 808/873] variety: rebuild for Python 3.8.

---
 srcpkgs/variety/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/variety/template b/srcpkgs/variety/template
index b4ea756c0c9..4d327a830f8 100644
--- a/srcpkgs/variety/template
+++ b/srcpkgs/variety/template
@@ -1,7 +1,7 @@
 # Template file for 'variety'
 pkgname=variety
 version=0.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="jumble variety variety_lib"

From 090c4bfcfc2db73eba64fcab8dec459707ad2676 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 809/873] vdirsyncer: rebuild for Python 3.8.

---
 srcpkgs/vdirsyncer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vdirsyncer/template b/srcpkgs/vdirsyncer/template
index 24080413456..708204afda2 100644
--- a/srcpkgs/vdirsyncer/template
+++ b/srcpkgs/vdirsyncer/template
@@ -1,7 +1,7 @@
 # Template file for 'vdirsyncer'
 pkgname=vdirsyncer
 version=0.16.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="vdirsyncer"

From fb3a977a1a5a3fd2be779201a4dd819512a4351a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 810/873] vidcutter: rebuild for Python 3.8.

---
 srcpkgs/vidcutter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vidcutter/template b/srcpkgs/vidcutter/template
index 4f30b888805..6ca85d4e766 100644
--- a/srcpkgs/vidcutter/template
+++ b/srcpkgs/vidcutter/template
@@ -1,7 +1,7 @@
 # Template file for 'vidcutter'
 pkgname=vidcutter
 version=6.0.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="vidcutter"

From 0addee01c86811593babb5238c415197cb01b03e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 811/873] vimiv: rebuild for Python 3.8.

---
 srcpkgs/vimiv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vimiv/template b/srcpkgs/vimiv/template
index 20fcbe7a03f..a560d4c9d81 100644
--- a/srcpkgs/vimiv/template
+++ b/srcpkgs/vimiv/template
@@ -1,7 +1,7 @@
 # Template file for 'vimiv'
 pkgname="vimiv"
 version=0.9.1
-revision=2
+revision=3
 build_style=gnu-makefile
 pycompile_module=vimiv
 hostmakedepends="python3-setuptools python3-devel"

From 0e236f27837583bf861e3984a19f4cf7827cbac1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 812/873] virtme: rebuild for Python 3.8.

---
 srcpkgs/virtme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtme/template b/srcpkgs/virtme/template
index 3905cb24b1d..30035a734f3 100644
--- a/srcpkgs/virtme/template
+++ b/srcpkgs/virtme/template
@@ -1,7 +1,7 @@
 # Template file for 'virtme'
 pkgname=virtme
 version=0.0.3.20180725
-revision=1
+revision=2
 archs=noarch
 _commit=60100bea82183b5d32ed9fca6534cd0fc60d5eb2
 wrksrc="${_commit}"

From 977bedee2b9cf218b33b79b6a30d782088e693be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 813/873] virtualenvwrapper: rebuild for Python 3.8.

---
 srcpkgs/virtualenvwrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtualenvwrapper/template b/srcpkgs/virtualenvwrapper/template
index 6007cc5d2ed..1f0c2efee86 100644
--- a/srcpkgs/virtualenvwrapper/template
+++ b/srcpkgs/virtualenvwrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'virtualenvwrapper'
 pkgname=virtualenvwrapper
 version=4.8.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="virtualenvwrapper"

From 13d514ee50452908bb52a5f4c379b8543e8aae2e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 814/873] visidata: rebuild for Python 3.8.

---
 srcpkgs/visidata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/visidata/template b/srcpkgs/visidata/template
index 715896e5f7c..c5c3ae7c82e 100644
--- a/srcpkgs/visidata/template
+++ b/srcpkgs/visidata/template
@@ -1,7 +1,7 @@
 # Template file for 'visidata'
 pkgname=visidata
 version=1.5.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="visidata"

From 9ed4ec9bfee68875daad74ea3f07f0378d1b0009 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 815/873] volctl: rebuild for Python 3.8.

---
 srcpkgs/volctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template
index 2b01750b9eb..585aabd2495 100644
--- a/srcpkgs/volctl/template
+++ b/srcpkgs/volctl/template
@@ -1,7 +1,7 @@
 # Template file for 'volctl'
 pkgname=volctl
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="volctl"

From 0db272695e88b29ee9216db4cc2572e0020b4df0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 816/873] voltron: rebuild for Python 3.8.

---
 srcpkgs/voltron/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/voltron/template b/srcpkgs/voltron/template
index c258bb9bab9..38f47a824e3 100644
--- a/srcpkgs/voltron/template
+++ b/srcpkgs/voltron/template
@@ -1,7 +1,7 @@
 # Template file for 'voltron'
 pkgname=voltron
 version=0.1.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="voltron"

From 12dedac32ff8a0f576ad19fc3147b4b386831c3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 817/873] volume_key: rebuild for Python 3.8.

---
 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 11d7b16bed8..14431cb70e9 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=1
+revision=2
 build_style=gnu-configure
 make_build_args="PYTHON3_CFLAGS=-I${XBPS_CROSS_BASE}/${py3_inc}
  PYTHON_CFLAGS=-I${XBPS_CROSS_BASE}/${py2_inc}"

From 3ce63c210ee385583504492fdf75f2ae859f05a4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 818/873] weather: rebuild for Python 3.8.

---
 srcpkgs/weather/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weather/template b/srcpkgs/weather/template
index ffa8a828b36..3ac33bfac15 100644
--- a/srcpkgs/weather/template
+++ b/srcpkgs/weather/template
@@ -1,7 +1,7 @@
 # Template file for 'weather'
 pkgname=weather
 version=2.3
-revision=2
+revision=3
 archs=noarch
 hostmakedepends="python3"
 depends="python3"

From 6b24b9871b5a34bb13b50f506793021986de04d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 819/873] wfuzz: rebuild for Python 3.8.

---
 srcpkgs/wfuzz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wfuzz/template b/srcpkgs/wfuzz/template
index b03c1f28add..4a88ab67407 100644
--- a/srcpkgs/wfuzz/template
+++ b/srcpkgs/wfuzz/template
@@ -1,7 +1,7 @@
 # Template file for 'wfuzz'
 pkgname=wfuzz
 version=2.4
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="wfuzz"

From ffffd630d47635e9948e7264798154dcf5cf4862 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 820/873] wpgtk: rebuild for Python 3.8.

---
 srcpkgs/wpgtk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpgtk/template b/srcpkgs/wpgtk/template
index 7e9d52b4f81..a722da58f22 100644
--- a/srcpkgs/wpgtk/template
+++ b/srcpkgs/wpgtk/template
@@ -1,7 +1,7 @@
 # Template file for 'wpgtk'
 pkgname=wpgtk
 version=6.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpgtk"

From ad6d5b938b34863f749429277206983bd33a9592 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 821/873] wpull: rebuild for Python 3.8.

---
 srcpkgs/wpull/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpull/template b/srcpkgs/wpull/template
index 5e9b9dcc641..621e1c85428 100644
--- a/srcpkgs/wpull/template
+++ b/srcpkgs/wpull/template
@@ -1,7 +1,7 @@
 # Template file for 'wpull'
 pkgname=wpull
 version=2.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpull"

From c0ba430699f94546d60abaeba6f248ef6d36ef84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 822/873] wxPython4: rebuild for Python 3.8.

---
 srcpkgs/wxPython4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wxPython4/template b/srcpkgs/wxPython4/template
index 2aa7117d5e0..b65e0b2ffe1 100644
--- a/srcpkgs/wxPython4/template
+++ b/srcpkgs/wxPython4/template
@@ -1,7 +1,7 @@
 # Template file for 'wxPython4'
 pkgname=wxPython4
 version=4.0.6
-revision=2
+revision=3
 wrksrc="wxPython-${version}"
 build_style=python3-module
 pycompile_module="wx"

From eae81cc7d657c1f863b8ae9a32aa075cc25328f4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 823/873] xcb-proto: rebuild for Python 3.8.

---
 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 1b26ecd73f3..020524bda87 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.13
-revision=2
+revision=3
 archs=noarch
 build_style=gnu-configure
 pycompile_module="xcbgen"

From c879f24aa56efd90bcd1b2031c3a7e194ee93abb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 824/873] xdot: rebuild for Python 3.8.

---
 srcpkgs/xdot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xdot/template b/srcpkgs/xdot/template
index 23f7b1f17e0..f7507ffb8c5 100644
--- a/srcpkgs/xdot/template
+++ b/srcpkgs/xdot/template
@@ -1,7 +1,7 @@
 # Template file for 'xdot'
 pkgname=xdot
 version=1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="xdot.py-${version}"
 build_style=python3-module

From ba48e65ee5332c30c40c9015ffd4f97f902bdcc1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 825/873] xkcdpass: rebuild for Python 3.8.

---
 srcpkgs/xkcdpass/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xkcdpass/template b/srcpkgs/xkcdpass/template
index 46b4a9635f9..37fb6872079 100644
--- a/srcpkgs/xkcdpass/template
+++ b/srcpkgs/xkcdpass/template
@@ -1,7 +1,7 @@
 # Template file for 'xkcdpass'
 pkgname=xkcdpass
 version=1.17.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="XKCD-password-generator-xkcdpass-${version}"
 build_style=python3-module

From f604c57acf10fb9091080955e88a704447aab0cb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 826/873] xonsh: rebuild for Python 3.8.

---
 srcpkgs/xonsh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xonsh/template b/srcpkgs/xonsh/template
index 768ebf36022..2dca267d0d1 100644
--- a/srcpkgs/xonsh/template
+++ b/srcpkgs/xonsh/template
@@ -1,7 +1,7 @@
 # Template file for 'xonsh'
 pkgname=xonsh
 version=0.9.12
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="xonsh xontrib"

From 8cdb99abdc99eefcc53ff3ab7418d4d830558c63 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 827/873] yq: rebuild for Python 3.8.

---
 srcpkgs/yq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yq/template b/srcpkgs/yq/template
index 7c3af7f43c2..dda886c6c40 100644
--- a/srcpkgs/yq/template
+++ b/srcpkgs/yq/template
@@ -1,7 +1,7 @@
 # Template file for 'yq'
 pkgname=yq
 version=2.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 6e757a227ac3953cc8567422ce6b473e6df30cc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 828/873] ytcc: rebuild for Python 3.8.

---
 srcpkgs/ytcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ytcc/template b/srcpkgs/ytcc/template
index feafa404b75..df4195758c7 100644
--- a/srcpkgs/ytcc/template
+++ b/srcpkgs/ytcc/template
@@ -1,7 +1,7 @@
 # Template file for 'ytcc'
 pkgname=ytcc
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ytcc"

From 1742b15ff06a60216eae8f7a016b441d18572e03 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 829/873] yturl: rebuild for Python 3.8.

---
 srcpkgs/yturl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yturl/template b/srcpkgs/yturl/template
index 6fa3e9872ee..ee14b77b5a0 100644
--- a/srcpkgs/yturl/template
+++ b/srcpkgs/yturl/template
@@ -1,7 +1,7 @@
 # Template file for 'yturl'
 pkgname=yturl
 version=2.0.2
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From b6302f7cf81ad28b08db1f9b8e986b9a6c3d59c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 830/873] yubikey-manager: rebuild for Python 3.8.

---
 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 af0330e8e15..fcc7b7cb737 100644
--- a/srcpkgs/yubikey-manager/template
+++ b/srcpkgs/yubikey-manager/template
@@ -1,7 +1,7 @@
 # Template file for 'yubikey-manager'
 pkgname=yubikey-manager
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 87bab1c9de0d25f72a5520b2adcd72c53599a433 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 831/873] z3: rebuild for Python 3.8.

---
 srcpkgs/z3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/z3/template b/srcpkgs/z3/template
index d632a285019..e054915df91 100644
--- a/srcpkgs/z3/template
+++ b/srcpkgs/z3/template
@@ -1,7 +1,7 @@
 # Template file for 'z3'
 pkgname=z3
 version=4.8.6
-revision=2
+revision=3
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=configure
 configure_args="--prefix=/usr -g --python $(vopt_if ocaml --ml)"

From 08edebe2ef2c613536937e6ee2d3fc6e9f067b72 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 832/873] zim: rebuild for Python 3.8.

---
 srcpkgs/zim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/zim/template b/srcpkgs/zim/template
index 45b9df5357c..dff4ad22081 100644
--- a/srcpkgs/zim/template
+++ b/srcpkgs/zim/template
@@ -1,7 +1,7 @@
 # Template file for 'zim'
 pkgname=zim
 version=0.71.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="zim"

From b4ef921e58656c77eb688ee4e2af7b20b3c8bfd2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 833/873] python3-pafy: rebuild for Python 3.8.

---
 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 ce26f770c69..b59c9a0adff 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.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pafy-${version}"
 build_style=python3-module

From bf4e7780fb8dcc15680cd79ddef83f8183bb3375 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 834/873] python3-perf: rebuild for Python 3.8.

---
 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 a03251f97e8..3d57ddb1c1a 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.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyperf-${version}"
 build_style=python3-module

From 80bbe375d025a8f2df0fa0878b5089c83f181e95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 835/873] python3-yara: rebuild for Python 3.8.

---
 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 4a6c56dd083..3bdff14a0da 100644
--- a/srcpkgs/python3-yara/template
+++ b/srcpkgs/python3-yara/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-yara'
 pkgname=python3-yara
 version=3.11.0
-revision=1
+revision=2
 wrksrc="yara-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From dfbf656d20e2c60d70d38432d72796e45a07530a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:31 +0200
Subject: [PATCH 836/873] azote: rebuild for Python 3.8.

---
 srcpkgs/azote/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/azote/template b/srcpkgs/azote/template
index 0a23c209551..2748cb98733 100644
--- a/srcpkgs/azote/template
+++ b/srcpkgs/azote/template
@@ -1,7 +1,7 @@
 # Template file for 'azote'
 pkgname=azote
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="azote"

From 6f9b552c053623ad5214d1b8401f41cb4e56734c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 837/873] binwalk: rebuild for Python 3.8.

---
 srcpkgs/binwalk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/binwalk/template b/srcpkgs/binwalk/template
index 461ea4b547a..fccd523d584 100644
--- a/srcpkgs/binwalk/template
+++ b/srcpkgs/binwalk/template
@@ -1,7 +1,7 @@
 # Template file for 'binwalk'
 pkgname=binwalk
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="binwalk"

From cdf9d0c94b7363a5bab761faa1a5119852db14c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 838/873] gnome-builder: rebuild for Python 3.8.

---
 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 9ae9ff9d94c..85aeeee9a15 100644
--- a/srcpkgs/gnome-builder/template
+++ b/srcpkgs/gnome-builder/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-builder'
 pkgname=gnome-builder
 version=3.34.1
-revision=1
+revision=2
 build_style=meson
 configure_args="-Dwith_webkit=true -Dwith_sysprof=true -Dhelp=true"
 hostmakedepends="appdata-tools desktop-file-utils flex gobject-introspection

From c0bccc27652b15e34572ed02503df5ae7b1dbebb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 839/873] gnome-tweaks: rebuild for Python 3.8.

---
 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 ac1f8bdb873..d0879253ac5 100644
--- a/srcpkgs/gnome-tweaks/template
+++ b/srcpkgs/gnome-tweaks/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-tweaks'
 pkgname=gnome-tweaks
 version=3.34.0
-revision=2
+revision=3
 archs=noarch
 build_style=meson
 pycompile_module="gtweak"

From c86e2d08bfa3e52c769e2b8c76e993af14c698bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 840/873] meson: rebuild for Python 3.8.

---
 srcpkgs/meson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meson/template b/srcpkgs/meson/template
index 315a0f27a92..76791451681 100644
--- a/srcpkgs/meson/template
+++ b/srcpkgs/meson/template
@@ -2,7 +2,7 @@
 pkgname=meson
 reverts="0.52.0_1 0.52.0_2"
 version=0.51.2
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mesonbuild"

From 1259e701609ac87f299b515b612f6b5589a6a5e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 841/873] onionshare: rebuild for Python 3.8.

---
 srcpkgs/onionshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onionshare/template b/srcpkgs/onionshare/template
index c585ae6101e..c37c5962736 100644
--- a/srcpkgs/onionshare/template
+++ b/srcpkgs/onionshare/template
@@ -1,7 +1,7 @@
 # Template file for 'onionshare'
 pkgname=onionshare
 version=2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="onionshare"

From e24fbb347a50db8d9adc3c2e21abfa2926516285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 842/873] portage: rebuild for Python 3.8.

---
 srcpkgs/portage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/portage/template b/srcpkgs/portage/template
index b0f34731035..9610428bbf4 100644
--- a/srcpkgs/portage/template
+++ b/srcpkgs/portage/template
@@ -1,7 +1,7 @@
 # Template file for 'portage'
 pkgname=portage
 version=2.3.77
-revision=1
+revision=2
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=python3-module
 pycompile_module="portage _emerge"

From 3d8944805a3fcbe269c633fd504f8156014b9743 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 843/873] rpm: fix and rebuild for Python 3.8.

---
 srcpkgs/rpm/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/rpm/template b/srcpkgs/rpm/template
index 98e35930c4c..695195323fd 100644
--- a/srcpkgs/rpm/template
+++ b/srcpkgs/rpm/template
@@ -1,7 +1,7 @@
 # Template file for 'rpm'
 pkgname=rpm
 version=4.15.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--with-lua --with-cap --with-acl --with-external-db
  --enable-python PYTHON=python3"
@@ -18,7 +18,7 @@ distfiles="http://ftp.rpm.org/releases/rpm-4.15.x/rpm-${version}.tar.bz2"
 checksum=1e06723b13591e57c99ebe2006fb8daddc4cf72efb366a64a34673ba5f61c201
 conflicts="rpmextract>=0" # Both provide rpm2cpio
 
-CFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6"
+CFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nss"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nspr"
 

From 72f86e0f7af627c04b12bdf23f9811e4ae8da247 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 844/873] youtube-dl: rebuild for Python 3.8.

---
 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 d6596b80bd3..f1ae3aa1a74 100644
--- a/srcpkgs/youtube-dl/template
+++ b/srcpkgs/youtube-dl/template
@@ -1,7 +1,7 @@
 # Template file for 'youtube-dl'
 pkgname=youtube-dl
 version=2019.10.16
-revision=1
+revision=2
 archs=noarch
 wrksrc=youtube-dl
 build_style=python3-module

From fb04151cb309fc8ff7a84dfe9204c113fb159d19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 845/873] blender: rebuild for Python 3.8.

---
 srcpkgs/blender/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template
index 758d1235185..47cb8f8ad13 100644
--- a/srcpkgs/blender/template
+++ b/srcpkgs/blender/template
@@ -1,7 +1,7 @@
 # Template file for 'blender'
 pkgname=blender
 version=2.79b
-revision=9
+revision=10
 build_style="cmake"
 makedepends="
  libgomp-devel libpng-devel tiff-devel python3-devel glu-devel

From 7a05e07582c4f2dad1e5ce7b472de4dd50f5ffc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 846/873] freecad: fix and rebuild for Python 3.8.

---
 srcpkgs/freecad/patches/090-py38.patch | 22 ++++++++++++++++++++++
 srcpkgs/freecad/template               |  2 +-
 2 files changed, 23 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/freecad/patches/090-py38.patch

diff --git a/srcpkgs/freecad/patches/090-py38.patch b/srcpkgs/freecad/patches/090-py38.patch
new file mode 100644
index 00000000000..92566df9df3
--- /dev/null
+++ b/srcpkgs/freecad/patches/090-py38.patch
@@ -0,0 +1,22 @@
+From 174011749d836f3b6c6ae2630f53b2f4c1f9d3fc Mon Sep 17 00:00:00 2001
+From: Richard <hobbes1069@gmail.com>
+Date: Thu, 17 Oct 2019 11:20:10 -0500
+Subject: [PATCH] Update swigpyrun.in for Python 3.8
+
+In Python 3.8 some functions related to thread state were intentionally made private.
+
+This fix (specific to FreeCAD) was suggested here:
+
+https://bugs.python.org/issue35886
+
+--- src/Base/swigpyrun.inl
++++ src/Base/swigpyrun.inl
+@@ -72,7 +72,7 @@ void cleanupSWIG_T(const char* TypeName)
+ 
+     PyObject *module, *dict;
+     PyInterpreterState *interp = PyThreadState_GET()->interp;
+-    PyObject *modules = interp->modules;
++    PyObject *modules = PyImport_GetModuleDict();
+     module = PyDict_GetItemString(modules, "__builtin__");
+     if (module != NULL && PyModule_Check(module)) {
+         dict = PyModule_GetDict(module);
diff --git a/srcpkgs/freecad/template b/srcpkgs/freecad/template
index 9e9375c4444..26bf34702a2 100644
--- a/srcpkgs/freecad/template
+++ b/srcpkgs/freecad/template
@@ -1,7 +1,7 @@
 # Template file for 'freecad'
 pkgname=freecad
 version=0.18.3
-revision=2
+revision=3
 wrksrc="FreeCAD-${version}"
 build_style=cmake
 

From 718d5c572ffaa708c4160791eb058eabf0caf143 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 847/873] gdb: rebuild for Python 3.8.

---
 srcpkgs/gdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gdb/template b/srcpkgs/gdb/template
index 9f84e4869e9..39aab79d08a 100644
--- a/srcpkgs/gdb/template
+++ b/srcpkgs/gdb/template
@@ -1,7 +1,7 @@
 # Template file for 'gdb'
 pkgname=gdb
 version=8.3.1
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="/usr/share/gdb"
 configure_args="--disable-werror --disable-nls --with-system-readline

From e89ecd13e39e0d4ffa50beaae64ee63aa2febcdc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 848/873] hexchat: rebuild for Python 3.8.

---
 srcpkgs/hexchat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hexchat/template b/srcpkgs/hexchat/template
index fbeaf28ae8a..9f7d7957b76 100644
--- a/srcpkgs/hexchat/template
+++ b/srcpkgs/hexchat/template
@@ -1,7 +1,7 @@
 # Template file for 'hexchat'
 pkgname=hexchat
 version=2.14.2
-revision=6
+revision=7
 build_style=meson
 configure_args="-Dwith-dbus=true -Dwith-ssl=true -Dwith-text=false
  -Dwith-perl=/usr/bin/perl -Dwith-python=python3

From 295d2fcdb8e6c8981469ea3f0881d7acc0d7a5a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 849/873] hyperion: rebuild for Python 3.8.

---
 srcpkgs/hyperion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hyperion/template b/srcpkgs/hyperion/template
index 0befdbe7064..7ce415e929e 100644
--- a/srcpkgs/hyperion/template
+++ b/srcpkgs/hyperion/template
@@ -1,7 +1,7 @@
 # Template file for 'hyperion'
 pkgname=hyperion
 version=1.03.2
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DUSE_SYSTEM_PROTO_LIBS=ON -DENABLE_QT5=ON
  -DPROTOBUF_PROTOC_EXECUTABLE=/usr/bin/protoc -DENABLE_AMLOGIC=ON

From c6846e2a15765deae100b5a9a32307270668a58c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 850/873] kdevelop-python: rebuild for Python 3.8.

---
 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 0265916a3d0..a306eb8f442 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.4.2
-revision=1
+revision=2
 wrksrc="kdev-python-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/kdevpythonsupport"

From a61462c12e1549e93d89a2be3d1fbc1c899f8fc7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 851/873] kitty: rebuild for Python 3.8.

---
 srcpkgs/kitty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/kitty/template b/srcpkgs/kitty/template
index d79bcc4acce..54cd08c23ec 100644
--- a/srcpkgs/kitty/template
+++ b/srcpkgs/kitty/template
@@ -1,7 +1,7 @@
 # Template file for 'kitty'
 pkgname=kitty
 version=0.14.6
-revision=1
+revision=2
 pycompile_dirs="usr/lib/kitty"
 hostmakedepends="ncurses pkg-config python3 wayland-devel wayland-protocols"
 makedepends="gettext-devel glfw-devel harfbuzz-devel libxkbcommon-devel

From eb1971689e3b6e8804a1e503f9487d80a97a132a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 852/873] krita: rebuild for Python 3.8, fix sha256sum.

Tarball was yanked for trivial fix.
---
 srcpkgs/krita/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/krita/template b/srcpkgs/krita/template
index 7a59fc9ac58..67f128c61ce 100644
--- a/srcpkgs/krita/template
+++ b/srcpkgs/krita/template
@@ -1,7 +1,7 @@
 # Template file for 'krita'
 pkgname=krita
 version=4.2.7.1
-revision=1
+revision=2
 build_style=cmake
 configure_args="-Wno-dev -DBUILD_TESTING=OFF"
 hostmakedepends="extra-cmake-modules pkg-config python3"
@@ -18,6 +18,6 @@ license="GPL-3.0-only"
 homepage="https://krita.org/"
 KDE_SITE="http://ftp5.gwdg.de/pub/linux/kde/stable/"
 distfiles="${KDE_SITE}/krita/${version}/krita-${version}.tar.gz"
-checksum=28218030edca9dfa1c7e255401ca6fc8fe0e5329f7611cfc196e35746d312086
+checksum=3ed29fd9d8e067def55e703fc55312815c21041d274727e228bdbe0478c09c3d
 nocross=yes
 replaces="calligra-krita>=0"

From 221123967fa111191496b9e08e2c9c76756c13b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:26:38 +0200
Subject: [PATCH 853/873] libpeas: rebuild for Python 3.8.

---
 srcpkgs/libpeas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index a69238bf823..d4dcf8b5941 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,7 +1,7 @@
 # Template file for 'libpeas'
 pkgname=libpeas
 version=1.22.0
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"

From 365648c1fccc0285703eeddac9324f2f4a91218f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 854/873] libreoffice: rebuild for Python 3.8.

---
 srcpkgs/libreoffice/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template
index 6e8685ac0fd..98f04a40304 100644
--- a/srcpkgs/libreoffice/template
+++ b/srcpkgs/libreoffice/template
@@ -1,7 +1,7 @@
 # Template file for 'libreoffice'
 pkgname=libreoffice
 version=6.2.5.2
-revision=2
+revision=3
 build_style=meta
 make_build_args="build-nocheck"
 nocross=yes

From 1c313604728a7106e5854243e06f9cb65c997436 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 855/873] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index 1f9c8043b46..34174be7535 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=5
+revision=6
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From aef507d5b726f510663f6e9c2bfd9f7eb3eeab4e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 856/873] libsigrokdecode: rebuild for Python 3.8.

---
 srcpkgs/libsigrokdecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsigrokdecode/template b/srcpkgs/libsigrokdecode/template
index 59e15dd61b9..cc9d9a10367 100644
--- a/srcpkgs/libsigrokdecode/template
+++ b/srcpkgs/libsigrokdecode/template
@@ -1,7 +1,7 @@
 # Template file for 'libsigrokdecode'
 pkgname=libsigrokdecode
 version=0.5.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="glib-devel python3-devel"

From ca583906dfd0c97c9a4c36d862bf85a55ad07f90 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 857/873] luxrays: rebuild for Python 3.8.

---
 srcpkgs/luxrays/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/luxrays/template b/srcpkgs/luxrays/template
index c783e9fe3e5..58037fbfc05 100644
--- a/srcpkgs/luxrays/template
+++ b/srcpkgs/luxrays/template
@@ -1,7 +1,7 @@
 # Template file for 'luxrays'
 pkgname=luxrays
 version=3.1
-revision=13
+revision=14
 build_style=cmake
 configure_args="-DLUXRAYS_DISABLE_OPENCL=OFF -DCMAKE_SKIP_RPATH=ON"
 hostmakedepends="flex bison boost-devel"

From ef66922c11033d027b7badec1e15a0a0fb3aacbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 858/873] navit: rebuild for Python 3.8.

---
 srcpkgs/navit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/navit/template b/srcpkgs/navit/template
index 461689a3c73..24cd151c64b 100644
--- a/srcpkgs/navit/template
+++ b/srcpkgs/navit/template
@@ -1,7 +1,7 @@
 # Template file for 'navit'
 pkgname=navit
 version=0.5.3
-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 f8cae9038ecc7f293e820f51664bfd59aac52b73 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 859/873] obs: rebuild for Python 3.8.

---
 srcpkgs/obs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/obs/template b/srcpkgs/obs/template
index 3ed426b1583..45bf81803e4 100644
--- a/srcpkgs/obs/template
+++ b/srcpkgs/obs/template
@@ -1,7 +1,7 @@
 # Template file for 'obs'
 pkgname=obs
 version=24.0.1
-revision=1
+revision=2
 _commit_hash_obs_browser="693498b518cf893876f454ef581e13106e8370ec"
 _commit_hash_obs_vst="fde438f7a8afdf41a7ab386a0aa1a61175fc8427"
 _commit_hash_ftl_sdk="98289f7c2ed754c647d451899b3356850c0c1fa3"

From dbfccd5a0bab2df75f326e85613243fa4867cd8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 860/873] renderdoc: fix and rebuild for Python 3.8.

---
 srcpkgs/renderdoc/files/swig-py38.patch    | 28 +++++++++++++
 srcpkgs/renderdoc/patches/cmake-py38.patch | 48 ++++++++++++++++++++++
 srcpkgs/renderdoc/template                 |  8 ++--
 3 files changed, 81 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/renderdoc/files/swig-py38.patch
 create mode 100644 srcpkgs/renderdoc/patches/cmake-py38.patch

diff --git a/srcpkgs/renderdoc/files/swig-py38.patch b/srcpkgs/renderdoc/files/swig-py38.patch
new file mode 100644
index 00000000000..0595599c658
--- /dev/null
+++ b/srcpkgs/renderdoc/files/swig-py38.patch
@@ -0,0 +1,28 @@
+From dbe955dd0300d55a32fd73a4eef730b3e30ed5c4 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 20:32:03 +0200
+Subject: [PATCH] swig: avoid use of _PyObject_GC_UNTRACK
+
+It is deprecated[1]. Use PyObject_GC_UnTrack instead.
+
+[1] https://docs.python.org/3/c-api/gcsupport.html#c._PyObject_GC_UNTRACK
+---
+ Lib/python/builtin.swg | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Lib/python/builtin.swg b/Lib/python/builtin.swg
+index 9597653b7..6af45a9d1 100644
+--- a/Lib/python/builtin.swg
++++ b/Lib/python/builtin.swg
+@@ -120,7 +120,7 @@ SwigPyBuiltin_FunpackSetterClosure (PyObject *obj, PyObject *val, void *closure)
+ 
+ SWIGINTERN void
+ SwigPyStaticVar_dealloc(PyDescrObject *descr) {
+-  _PyObject_GC_UNTRACK(descr);
++  PyObject_GC_UnTrack(descr);
+   Py_XDECREF(PyDescr_TYPE(descr));
+   Py_XDECREF(PyDescr_NAME(descr));
+   PyObject_GC_Del(descr);
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/patches/cmake-py38.patch b/srcpkgs/renderdoc/patches/cmake-py38.patch
new file mode 100644
index 00000000000..fc1adb9ddbc
--- /dev/null
+++ b/srcpkgs/renderdoc/patches/cmake-py38.patch
@@ -0,0 +1,48 @@
+From 56769d3e2cc12670b73a1ddd9dfaab959340c2e2 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 21:27:02 +0200
+Subject: [PATCH] CMake: py3.8 support, ability to patch swig
+
+Add 3.8 to list of python versions and ability to patch the custom
+swig, also needed for 3.8
+---
+ CMakeLists.txt            | 2 +-
+ qrenderdoc/CMakeLists.txt | 2 ++
+ 2 files changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 13818e5b8..00feda2ad 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -308,7 +308,7 @@ add_subdirectory(renderdoc)
+ # are handled in common
+ if(ENABLE_QRENDERDOC OR ENABLE_PYRENDERDOC)
+     # Make sure Python 3 is found
+-    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7)
++    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7 3.8)
+     find_package(PythonInterp 3 REQUIRED)
+     find_package(PythonLibs 3 REQUIRED)
+     # we also need python3-config for swig
+diff --git a/qrenderdoc/CMakeLists.txt b/qrenderdoc/CMakeLists.txt
+index 9fd65b2d3..1ef284349 100644
+--- a/qrenderdoc/CMakeLists.txt
++++ b/qrenderdoc/CMakeLists.txt
+@@ -7,6 +7,7 @@ endif()
+ 
+ set(QMAKE_QT5_COMMAND ${QT_QMAKE_EXECUTABLE} CACHE STRING "Command to run to invoke Qt5's qmake. Normally this is qmake, possibly with qtchooser, but might be qmake-qt5")
+ set(RENDERDOC_SWIG_PACKAGE https://github.com/baldurk/swig/archive/renderdoc-modified-6.zip CACHE STRING "The location where RenderDoc's swig fork source can be found. By default points to the URL on github but can be pointed to a local file.")
++set(RENDERDOC_SWIG_PATCH "" CACHE STRING "The location for the patch to apply to swig.")
+ 
+ set(QMAKE_CONFIG "debug")
+ set(QMAKE_LDFLAGS "")
+@@ -99,6 +100,7 @@ ExternalProject_Add(custom_swig
+     # using an URL to a zip directly so we don't clone the history etc
+     URL ${RENDERDOC_SWIG_PACKAGE}
+     BUILD_IN_SOURCE 1
++    PATCH_COMMAND patch -p1 -i ${RENDERDOC_SWIG_PATCH} > /dev/null
+     CONFIGURE_COMMAND ./autogen.sh > /dev/null 2>&1
+     COMMAND CC=${SWIG_CONFIGURE_CC} CXX=${SWIG_CONFIGURE_CXX} CFLAGS=-fPIC CXXFLAGS=-fPIC ./configure --with-pcre=yes --prefix=${CMAKE_BINARY_DIR} > /dev/null
+     BUILD_COMMAND ${GENERATOR_MAKE} > /dev/null 2>&1
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/template b/srcpkgs/renderdoc/template
index 32d051864d3..9972d9435b0 100644
--- a/srcpkgs/renderdoc/template
+++ b/srcpkgs/renderdoc/template
@@ -1,11 +1,13 @@
 # Template file for 'renderdoc'
 pkgname=renderdoc
 version=1.4
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DENABLE_GL=ON -DENABLE_GLES=ON -DENABLE_QRENDERDOC=ON
  -DENABLE_RENDERDOCCMD=ON -DENABLE_VULKAN=ON -DENABLE_XCB=ON -DENABLE_XLIB=ON
- -DENABLE_PYRENDERDOC=ON"
+ -DENABLE_PYRENDERDOC=ON
+ -DRENDERDOC_SWIG_PATCH=${XBPS_SRCPKGDIR}/${pkgname}/files/swig-py38.patch"
+patch_args="-p1"
 hostmakedepends="bison autoconf automake pkg-config python3"
 makedepends="libX11-devel libxcb-devel xcb-util-keysyms-devel libGL qt5-devel
  qt5-svg-devel qt5-x11extras-devel pcre-devel python3-devel"
@@ -17,7 +19,7 @@ distfiles="https://github.com/baldurk/${pkgname}/archive/v${version}.tar.gz"
 checksum=9a78951f386fb7c3ecf7df6919d300db59719d14f0621438963ae30a75d33677
 
 case "$XBPS_TARGET_MACHINE" in
-	*-musl) broken="This package uses execnfo.h which is not available on musl"
+	*-musl) broken="This package uses execinfo.h which is not available on musl"
 esac
 
 if [ "$CROSS_BUILD" ]; then

From 459b63795ca01a8fe746aec6d9f97141bdc3fc35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 861/873] sigil: rebuild for Python 3.8.

---
 srcpkgs/sigil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sigil/template b/srcpkgs/sigil/template
index 4a90ef95798..1d577ee3487 100644
--- a/srcpkgs/sigil/template
+++ b/srcpkgs/sigil/template
@@ -1,7 +1,7 @@
 # Template file for 'sigil'
 pkgname=sigil
 version=0.9.13
-revision=1
+revision=2
 wrksrc="Sigil-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/sigil/python3lib"

From eb0492cef63d32f08e51495ae261b150a7b3f1b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 862/873] uwsgi: rebuild for Python 3.8.

---
 srcpkgs/uwsgi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/uwsgi/template b/srcpkgs/uwsgi/template
index 2e96cd2e38e..e283d6bc357 100644
--- a/srcpkgs/uwsgi/template
+++ b/srcpkgs/uwsgi/template
@@ -1,7 +1,7 @@
 # Template file for 'uwsgi'
 pkgname=uwsgi
 version=2.0.18
-revision=1
+revision=2
 hostmakedepends="python python3"
 makedepends="python-devel python3-devel"
 short_desc="Fast, self-healing application container server"

From 107450e305e9c38e02604604d47fd38619481bc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 863/873] vim: rebuild for Python 3.8.

---
 srcpkgs/vim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vim/template b/srcpkgs/vim/template
index 8f543069d19..7c7fd4a30f7 100644
--- a/srcpkgs/vim/template
+++ b/srcpkgs/vim/template
@@ -1,7 +1,7 @@
 # Template file for 'vim'
 pkgname=vim
 version=8.1.2021
-revision=3
+revision=4
 hostmakedepends="glib-devel pkg-config"
 makedepends="acl-devel gtk+3-devel libXt-devel lua-devel ncurses-devel
  perl python-devel python3-devel ruby-devel"

From e5c9ab9b7773855271a75cfe5d4dc6cc5d230b59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 864/873] weechat: rebuild for Python 3.8.

---
 srcpkgs/weechat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weechat/template b/srcpkgs/weechat/template
index 19f8af4fd8f..14c3e2360f5 100644
--- a/srcpkgs/weechat/template
+++ b/srcpkgs/weechat/template
@@ -1,7 +1,7 @@
 # Template file for 'weechat'
 pkgname=weechat
 version=2.6
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_MAN=ON -DENABLE_ENCHANT=ON -DENABLE_PERL=ON
  -DENABLE_LUA=ON -DENABLE_RUBY=ON -DENABLE_SPELL=ON

From a86ea0eef792b9b5666ffe67d6f3c6549467f704 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 865/873] znc: rebuild for Python 3.8.

---
 srcpkgs/znc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/znc/template b/srcpkgs/znc/template
index 8af8f23a145..696b59133c8 100644
--- a/srcpkgs/znc/template
+++ b/srcpkgs/znc/template
@@ -1,7 +1,7 @@
 # Template file for 'znc'
 pkgname=znc
 version=1.7.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="
  --enable-python

From 2cfcf24e55b5aae1d192c7345b5ede0401a4486b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:18:51 +0200
Subject: [PATCH 866/873] boost: rebuild for Python 3.8.

---
 srcpkgs/boost/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 40a4fe67730..1fb0e8ed519 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=5
+revision=6
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"

From dab8bf9a36920b36c01351b0e78a3d894d95e438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:10 +0200
Subject: [PATCH 867/873] python-pyside: remove, obsolete.

---
 srcpkgs/python-pyside/INSTALL.msg | 1 -
 srcpkgs/python-pyside/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/python-pyside/INSTALL.msg
 delete mode 100644 srcpkgs/python-pyside/template

diff --git a/srcpkgs/python-pyside/INSTALL.msg b/srcpkgs/python-pyside/INSTALL.msg
deleted file mode 100644
index 6de207b7aa2..00000000000
--- a/srcpkgs/python-pyside/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-python-pyside is no longer provided by Void Linux, and will be fully removed from the repos on 2019-07-17
diff --git a/srcpkgs/python-pyside/template b/srcpkgs/python-pyside/template
deleted file mode 100644
index 7053f0e7fc3..00000000000
--- a/srcpkgs/python-pyside/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'python-pyside'
-pkgname=python-pyside
-version=1.2.2
-revision=7
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="http://www.pyside.org/"

From 56c4a66cb73f8c03aa1d75d0f3aeffc5558c4047 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:52 +0200
Subject: [PATCH 868/873] pyside-tools: remove, obsolete.

---
 srcpkgs/pyside-tools/INSTALL.msg | 1 -
 srcpkgs/pyside-tools/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/pyside-tools/INSTALL.msg
 delete mode 100644 srcpkgs/pyside-tools/template

diff --git a/srcpkgs/pyside-tools/INSTALL.msg b/srcpkgs/pyside-tools/INSTALL.msg
deleted file mode 100644
index fdb45eb0f42..00000000000
--- a/srcpkgs/pyside-tools/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-pyside-tools is no longer provided by Void Linux, and will be fully removed from the repos on 2019-10-30
diff --git a/srcpkgs/pyside-tools/template b/srcpkgs/pyside-tools/template
deleted file mode 100644
index 27cfc18eea4..00000000000
--- a/srcpkgs/pyside-tools/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'pyside-tools'
-pkgname=pyside-tools
-version=0.2.15
-revision=2
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="https://wiki.qt.io/"

From a4caf17102b2a8d6832ab3be41174a163b7a0573 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:22:03 +0200
Subject: [PATCH 869/873] shiboken: remove, obsolete.

---
 srcpkgs/shiboken/patches/python3.6.patch |  11 ---
 srcpkgs/shiboken/template                | 110 -----------------------
 2 files changed, 121 deletions(-)
 delete mode 100644 srcpkgs/shiboken/patches/python3.6.patch
 delete mode 100644 srcpkgs/shiboken/template

diff --git a/srcpkgs/shiboken/patches/python3.6.patch b/srcpkgs/shiboken/patches/python3.6.patch
deleted file mode 100644
index 7145fb4308b..00000000000
--- a/srcpkgs/shiboken/patches/python3.6.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- cmake/Modules/FindPython3Libs.cmake.orig
-+++ cmake/Modules/FindPython3Libs.cmake
-@@ -27,7 +27,7 @@
- # Search for the python framework on Apple.
- # CMAKE_FIND_FRAMEWORKS(Python)
- 
--FOREACH(_CURRENT_VERSION 3.4 3.3 3.2 3.1 3.0)
-+FOREACH(_CURRENT_VERSION 3.6 3.5 3.4 3.3 3.2 3.1 3.0)
-   IF(_CURRENT_VERSION GREATER 3.1)
-       SET(_32FLAGS "m" "u" "mu" "dm" "du" "dmu" "")
-   ELSE()
diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
deleted file mode 100644
index 34174be7535..00000000000
--- a/srcpkgs/shiboken/template
+++ /dev/null
@@ -1,110 +0,0 @@
-# Template file for 'shiboken'
-pkgname=shiboken
-version=1.2.2
-revision=6
-wrksrc="shiboken-${version}"
-hostmakedepends="cmake"
-makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"
-short_desc="CPython bindings generator for C++ libraries"
-maintainer="Enno Boland <gottox@voidlinux.org>"
-homepage="http://www.pyside.org"
-license="LGPL-2.1"
-distfiles="https://download.qt.io/official_releases/pyside/shiboken-${version}.tar.bz2"
-checksum=7625bbcf1fe313fd910c6b8c9cf49ac5495499f9d00867115a2f1f2a69fce5c4
-
-nocross="https://travis-ci.org/voidlinux/void-packages/jobs/269193001#L906"
-
-pre_build() {
-	# Fix inconsistent naming of libshiboken.so and ShibokenConfig.cmake
-	sed -i "/get_config_var('SOABI')/d" cmake/Modules/FindPython3InterpWithDebug.cmake
-}
-do_build() {
-	local args= configure_args="
-		-DCMAKE_INSTALL_PREFIX=/usr \
-		-DCMAKE_BUILD_TYPE=Release \
-		-DBUILD_TESTS=OFF"
-
-	for pyver in $py2_ver $py3_ver; do
-		args=
-		if [ "$pyver" = "$py2_ver" ]; then
-			args="-DPYTHON_SUFFIX=-python$py2_ver"
-		else
-			args="-DUSE_PYTHON3=yes"
-		fi
-
-		[ ! -d build-${pyver} ] && mkdir build-${pyver}
-		pushd build-${pyver}
-		cmake .. ${configure_args} ${args}
-		make ${makejobs}
-		popd
-	done
-}
-do_install() {
-	for pyver in $py2_ver $py3_ver; do
-		make -C build-${pyver} DESTDIR=${DESTDIR} install
-	done
-}
-post_install() {
-	# Fix conflict between .pc files
-	rm -f ${DESTDIR}/usr/lib/pkgconfig/*
-	for pyver in $py2_ver $py3_ver; do
-		vinstall build-${pyver}/data/shiboken.pc 644 \
-			usr/lib/pkgconfig shiboken-python${pyver}.pc
-	done
-}
-
-libshiboken-common-devel_package() {
-	depends="${sourcepkg}-${version}_${revision}"
-	short_desc+=" - common development files"
-	pkg_install() {
-		vmove usr/include
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig.cmake
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfigVersion.cmake
-	}
-}
-libshiboken-python-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python-${version}_${revision}"
-	short_desc="Python2 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py2_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py2_ver}.pc
-		vmove usr/lib/libshiboken-python${py2_ver}.so
-	}
-}
-libshiboken-python_package() {
-	short_desc="Python2 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version}
-	}
-}
-python-shiboken_package() {
-	short_desc="Python2 shiboken bindings"
-	pkg_install() {
-		vmove ${py2_sitelib}/shiboken.so
-	}
-}
-libshiboken-python3-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python3-${version}_${revision}"
-	short_desc="Python3 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py3_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py3_ver}.pc
-		vmove usr/lib/libshiboken-python${py3_ver}.so
-	}
-}
-libshiboken-python3_package() {
-	short_desc="Python3 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version}
-	}
-}
-python3-shiboken_package() {
-	short_desc="Python3 shiboken bindings"
-	pkg_install() {
-		vmove ${py3_sitelib}/shiboken.so
-	}
-}

From b8a76a958a1e28d96f0bf8a93acb982d756937b3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:34:00 +0200
Subject: [PATCH 870/873] boost: rebuild for Python 3.8.

Also ensure bjam is called with the same parameters, to avoid
a full rebuild with -j1 in do_install.
---
 common/shlibs          |  2 +-
 srcpkgs/boost/template | 13 +++++++------
 2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/common/shlibs b/common/shlibs
index f5133935773..92dae1c282c 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -683,7 +683,7 @@ libboost_stacktrace_noop.so.1.69.0 libboost_stacktrace_noop1.69-1.69.0_1<1.70.0
 libboost_stacktrace_addr2line.so.1.69.0 libboost_stacktrace_addr2line1.69-1.69.0_1<1.70.0
 libboost_stacktrace_basic.so.1.69.0 libboost_stacktrace_basic1.69-1.69.0_1<1.70.0
 libboost_python27.so.1.69.0 boost-python1.69-1.69.0_1<1.70.0
-libboost_python36.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
+libboost_python38.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
 libexempi.so.8 exempi-2.5.0_1
 libatasmart.so.4 libatasmart-0.17_1
 libsgutils2.so.2 libsgutils-1.42_1
diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 1fb0e8ed519..b516b348b14 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=6
+revision=7
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"
@@ -60,9 +60,9 @@ do_build() {
 	using python : ${py3_ver} : ${XBPS_CROSS_BASE}/usr/bin/python3 : ${XBPS_CROSS_BASE}${py3_inc} : ${XBPS_CROSS_BASE}${py3_lib} ;
 
 	__EOF
-	./bjam ${makejobs} \
+	./bjam ${makejobs} --prefix=${DESTDIR}/usr \
 		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam --debug-building \
+		--user-config=${wrksrc}/user-config.jam \
 		python=2.7,${py3_ver}
 }
 do_install() {
@@ -72,9 +72,10 @@ do_install() {
 	done
 
 	# Install headers/libs
-	./bjam --prefix=${DESTDIR}/usr abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam python=2.7,${py3_ver} install
-
+	./bjam --prefix=${DESTDIR}/usr \
+		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
+		--user-config=${wrksrc}/user-config.jam \
+		python=2.7,${py3_ver} install
 	# Install Boost.Build stuff.
 	vmkdir usr/share/boost-build
 	cd ${wrksrc}/tools/build && cp -a . ${DESTDIR}/usr/share/boost-build

From 4c0b1ce20aabdbed98b49e903ea6d0c9f531ad2f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 19:40:03 +0200
Subject: [PATCH 871/873] libpeas: update to 1.24.0.

---
 srcpkgs/libpeas/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index d4dcf8b5941..1ff2598c527 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,8 +1,8 @@
 # Template file for 'libpeas'
 pkgname=libpeas
-version=1.22.0
-revision=6
-build_style=gnu-configure
+version=1.24.0
+revision=1
+build_style=meson
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"
 makedepends="vala-devel gtk+3-devel python3-gobject-devel
@@ -13,7 +13,7 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://wiki.gnome.org/Projects/Libpeas"
 distfiles="${GNOME_SITE}/${pkgname}/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=5b2fc0f53962b25bca131a5ec0139e6fef8e254481b6e777975f7a1d2702a962
+checksum=0b9a00138c129a663de3eef5569b00ace03ce31d345f7af783768e9f35c8e6f9
 
 pre_build() {
 	if [ "$CROSS_BUILD" ]; then
@@ -35,7 +35,6 @@ libpeas-devel_package() {
 		vmove usr/lib/pkgconfig
 		vmove "usr/lib/*.so"
 		vmove usr/share/gir-1.0
-		vmove usr/share/gtk-doc
 		vmove usr/share/glade
 	}
 }

From 2be9ae0e45df517724574e5d873706b5377a17af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 20:33:53 +0200
Subject: [PATCH 872/873] scudcloud: upstream dead.

---
 srcpkgs/scudcloud/template | 21 ---------------------
 1 file changed, 21 deletions(-)
 delete mode 100644 srcpkgs/scudcloud/template

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
deleted file mode 100644
index 1ab2618066e..00000000000
--- a/srcpkgs/scudcloud/template
+++ /dev/null
@@ -1,21 +0,0 @@
-# Template file for 'scudcloud'
-pkgname=scudcloud
-version=1.65
-revision=2
-build_style=python3-module
-pycompile_module="scudcloud"
-hostmakedepends="python3-setuptools"
-makedepends="python3-setuptools python-PyQt5 python-dbus python3-PyQt5-dbus"
-depends="python3-setuptools python-PyQt5 python3-PyQt5-dbus
- python3-PyQt5-webkit xdg-utils"
-short_desc="Non official desktop client app for Slack"
-archs=noarch
-maintainer="Gurpreet Singh <gurpreet@mailfence.com>"
-license="MIT"
-homepage="https://launchpad.net/~rael-gc/+archive/ubuntu/scudcloud"
-distfiles="https://github.com/raelgc/${pkgname}/archive/v${version}.tar.gz"
-checksum=1b5420a868a37e181655e9799a3d1fcbbc0b0112349c44ac3d7936b626334791
-
-post_install() {
-	vlicense LICENSE
-}

From 3a020a359d0dc5eb9dce69bbca262e3e3a811f49 Mon Sep 17 00:00:00 2001
From: John <johnz@posteo.net>
Date: Tue, 30 Jul 2019 21:26:02 +0200
Subject: [PATCH 873/873] blender: update to 2.80.

---
 srcpkgs/blender/patches/D6038.diff            |  49 ++++++++
 .../blender/patches/blender-2.78a-musl.patch  |  49 ++++----
 .../collada-1.6.68_DocumentImporter.cpp.patch |  14 ---
 .../collada-1.6.68_DocumentImporter.h.patch   |  11 --
 srcpkgs/blender/patches/ffmpeg4.patch         | 116 ------------------
 srcpkgs/blender/patches/gcc9-elbeem.patch     |  31 -----
 srcpkgs/blender/patches/tree_hpp.patch        |  11 --
 srcpkgs/blender/patches/util_sseb.patch       |  11 --
 srcpkgs/blender/template                      |  15 ++-
 9 files changed, 84 insertions(+), 223 deletions(-)
 create mode 100644 srcpkgs/blender/patches/D6038.diff
 delete mode 100644 srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch
 delete mode 100644 srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch
 delete mode 100644 srcpkgs/blender/patches/ffmpeg4.patch
 delete mode 100644 srcpkgs/blender/patches/gcc9-elbeem.patch
 delete mode 100644 srcpkgs/blender/patches/tree_hpp.patch
 delete mode 100644 srcpkgs/blender/patches/util_sseb.patch

diff --git a/srcpkgs/blender/patches/D6038.diff b/srcpkgs/blender/patches/D6038.diff
new file mode 100644
index 00000000000..c26934e3447
--- /dev/null
+++ b/srcpkgs/blender/patches/D6038.diff
@@ -0,0 +1,49 @@
+Index: blender-2.80_patched/source/blender/python/generic/py_capi_utils.c
+===================================================================
+--- blender-2.80_patched/source/blender/python/generic/py_capi_utils.c
++++ blender-2.80_patched/source/blender/python/generic/py_capi_utils.c
+@@ -717,9 +717,11 @@
+  ****************************************************************************/
+ PyObject *PyC_DefaultNameSpace(const char *filename)
+ {
+-  PyInterpreterState *interp = PyThreadState_GET()->interp;
++  PyObject *modules = PyImport_GetModuleDict();
++  PyObject *builtins = PyDict_GetItemString(modules, "builtins");
++
+   PyObject *mod_main = PyModule_New("__main__");
+-  PyDict_SetItemString(interp->modules, "__main__", mod_main);
++  PyDict_SetItemString(modules, "__main__", mod_main);
+   Py_DECREF(mod_main); /* sys.modules owns now */
+   PyModule_AddStringConstant(mod_main, "__name__", "__main__");
+   if (filename) {
+@@ -727,8 +729,8 @@
+      * note: this wont map to a real file when executing text-blocks and buttons. */
+     PyModule_AddObject(mod_main, "__file__", PyC_UnicodeFromByte(filename));
+   }
+-  PyModule_AddObject(mod_main, "__builtins__", interp->builtins);
+-  Py_INCREF(interp->builtins); /* AddObject steals a reference */
++  PyModule_AddObject(mod_main, "__builtins__", builtins);
++  Py_INCREF(builtins); /* AddObject steals a reference */
+   return PyModule_GetDict(mod_main);
+ }
+ 
+@@ -755,15 +757,15 @@
+ /* restore MUST be called after this */
+ void PyC_MainModule_Backup(PyObject **main_mod)
+ {
+-  PyInterpreterState *interp = PyThreadState_GET()->interp;
+-  *main_mod = PyDict_GetItemString(interp->modules, "__main__");
++  PyObject *modules = PyImport_GetModuleDict();
++  *main_mod = PyDict_GetItemString(modules, "__main__");
+   Py_XINCREF(*main_mod); /* don't free */
+ }
+ 
+ void PyC_MainModule_Restore(PyObject *main_mod)
+ {
+-  PyInterpreterState *interp = PyThreadState_GET()->interp;
+-  PyDict_SetItemString(interp->modules, "__main__", main_mod);
++  PyObject *modules = PyImport_GetModuleDict();
++  PyDict_SetItemString(modules, "__main__", main_mod);
+   Py_XDECREF(main_mod);
+ }
+ 
diff --git a/srcpkgs/blender/patches/blender-2.78a-musl.patch b/srcpkgs/blender/patches/blender-2.78a-musl.patch
index 1ffd09cd57d..bddae1f8d3c 100644
--- a/srcpkgs/blender/patches/blender-2.78a-musl.patch
+++ b/srcpkgs/blender/patches/blender-2.78a-musl.patch
@@ -20,30 +20,9 @@ diff -ru blender-2.78.orig/CMakeLists.txt blender-2.78a/CMakeLists.txt
  elseif(WIN32)
  	set(_init_JACK                           OFF)
  elseif(APPLE)
-diff -ru blender-2.78.orig/intern/guardedalloc/intern/mallocn_intern.h blender-2.78a/intern/guardedalloc/intern/mallocn_intern.h
---- blender-2.78.orig/intern/guardedalloc/intern/mallocn_intern.h	2016-09-28 09:26:55.000000000 +0000
-+++ blender-2.78a/intern/guardedalloc/intern/mallocn_intern.h	2017-02-07 14:44:35.213040733 +0000
-@@ -52,7 +52,7 @@
- #undef HAVE_MALLOC_STATS
- #define USE_MALLOC_USABLE_SIZE  /* internal, when we have malloc_usable_size() */
- 
--#if defined(__linux__) || (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || defined(__GLIBC__)
-+#if (defined(__linux__) && defined(HAVE_EXECINFO_H)) || (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || defined(__GLIBC__)
- #  include <malloc.h>
- #  define HAVE_MALLOC_STATS
- #elif defined(__FreeBSD__)
 diff -ru blender-2.78.orig/source/blender/blenlib/intern/system.c blender-2.78a/source/blender/blenlib/intern/system.c
 --- blender-2.78.orig/source/blender/blenlib/intern/system.c	2016-10-25 09:59:23.000000000 +0000
 +++ blender-2.78a/source/blender/blenlib/intern/system.c	2017-02-07 14:44:35.213040733 +0000
-@@ -31,7 +31,7 @@
- #include "MEM_guardedalloc.h"
- 
- /* for backtrace */
--#if defined(__linux__) || defined(__APPLE__)
-+#if (defined(__linux__) && defined(HAVE_EXECINFO_H)) || defined(__APPLE__)
- #  include <execinfo.h>
- #elif defined(WIN32)
- #  include <windows.h>
 @@ -77,7 +77,7 @@
  {
  	/* ------------- */
@@ -65,3 +44,31 @@ diff -ru blender-2.78.orig/source/creator/creator_signals.c blender-2.78a/source
  	feenableexcept(FE_DIVBYZERO | FE_INVALID | FE_OVERFLOW);
  # endif /* defined(__linux__) && defined(__GNUC__) */
  # if defined(OSX_SSE_FPE)
+--- a/source/blender/blenlib/intern/system.c	2019-07-30 21:05:30.702224608 +0200
++++ -	2019-07-30 21:13:21.535328709 +0200
+@@ -38,10 +38,13 @@
+ #  include <dbghelp.h>
+ #  pragma warning(pop)
+ #else
+-#  include <execinfo.h>
+ #  include <unistd.h>
+ #endif
+ 
++#if (defined(__linux__) && defined(HAVE_EXECINFO_H)) || defined(__APPLE__)
++#  include <execinfo.h>
++#endif
++
+ int BLI_cpu_support_sse2(void)
+ {
+ #if defined(__x86_64__) || defined(_M_X64)
+--- a/intern/guardedalloc/intern/mallocn_intern.h	2019-07-24 09:41:39.000000000 +0200
++++ -	2019-10-20 00:03:13.450031866 +0200
+@@ -40,7 +40,7 @@
+ #undef HAVE_MALLOC_STATS
+ #define USE_MALLOC_USABLE_SIZE /* internal, when we have malloc_usable_size() */
+ 
+-#if defined(__linux__) || (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || \
++#if (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || \
+     defined(__GLIBC__)
+ #  include <malloc.h>
+ #  define HAVE_MALLOC_STATS
diff --git a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch b/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch
deleted file mode 100644
index e181a004379..00000000000
--- a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/source/blender/collada/DocumentImporter.cpp
-+++ b/source/blender/collada/DocumentImporter.cpp
-@@ -1340,6 +1340,11 @@ bool DocumentImporter::writeAnimationLis
- 	return anim_importer.write_animation_list(animationList);
- }
- 
-+bool DocumentImporter::writeAnimationClip(const COLLADAFW::AnimationClip *AnimationClip)
-+{
-+	return true;
-+}
-+
- /** When this method is called, the writer must write the skin controller data.
-  * \return The writer should return true, if writing succeeded, false otherwise.*/
- bool DocumentImporter::writeSkinControllerData(const COLLADAFW::SkinControllerData *skin)
diff --git a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch b/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch
deleted file mode 100644
index af0d2b4dded..00000000000
--- a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/source/blender/collada/DocumentImporter.h.orig	2018-12-03 07:38:12 UTC
-+++ b/source/blender/collada/DocumentImporter.h
-@@ -107,6 +107,8 @@ public:
- 	bool writeAnimation(const COLLADAFW::Animation*);
- 
- 	bool writeAnimationList(const COLLADAFW::AnimationList*);
-+	
-+	bool writeAnimationClip( const COLLADAFW::AnimationClip* );
- 
- 	bool writeGeometry(const COLLADAFW::Geometry*);
- 
diff --git a/srcpkgs/blender/patches/ffmpeg4.patch b/srcpkgs/blender/patches/ffmpeg4.patch
deleted file mode 100644
index 6b29e58f273..00000000000
--- a/srcpkgs/blender/patches/ffmpeg4.patch
+++ /dev/null
@@ -1,116 +0,0 @@
-source: https://git.archlinux.org/svntogit/community.git/plain/trunk/ffmpeg4.0.patch?h=packages/blender
-
-diff --git a/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp b/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp
-index e9eea195208..84aea330313 100644
---- a/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp
-+++ b/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp
-@@ -264,9 +264,9 @@ AUD_FFMPEGReader::AUD_FFMPEGReader(boost::shared_ptr<AUD_Buffer> buffer) :
- 		m_membuffer(buffer),
- 		m_membufferpos(0)
- {
--	m_membuf = reinterpret_cast<data_t*>(av_malloc(FF_MIN_BUFFER_SIZE + FF_INPUT_BUFFER_PADDING_SIZE));
-+	m_membuf = reinterpret_cast<data_t*>(av_malloc(AV_INPUT_BUFFER_MIN_SIZE + AV_INPUT_BUFFER_PADDING_SIZE));
- 
--	m_aviocontext = avio_alloc_context(m_membuf, FF_MIN_BUFFER_SIZE, 0, this,
-+	m_aviocontext = avio_alloc_context(m_membuf, AV_INPUT_BUFFER_MIN_SIZE, 0, this,
- 									   read_packet, NULL, seek_packet);
- 
- 	if(!m_aviocontext)
-diff --git a/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp b/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
-index 3f95ac7a4da..2c2f0916406 100644
---- a/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
-+++ b/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
-@@ -163,7 +163,7 @@ AUD_FFMPEGWriter::AUD_FFMPEGWriter(std::string filename, AUD_DeviceSpecs specs,
- 		try
- 		{
- 			if(m_formatCtx->oformat->flags & AVFMT_GLOBALHEADER)
--				m_codecCtx->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+				m_codecCtx->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 
- 			AVCodec* codec = avcodec_find_encoder(m_codecCtx->codec_id);
- 			if(!codec)
-@@ -185,11 +185,11 @@ AUD_FFMPEGWriter::AUD_FFMPEGWriter(std::string filename, AUD_DeviceSpecs specs,
- 			if(avcodec_open2(m_codecCtx, codec, NULL))
- 				AUD_THROW(AUD_ERROR_FFMPEG, codec_error);
- 
--			m_output_buffer.resize(FF_MIN_BUFFER_SIZE);
-+			m_output_buffer.resize(AV_INPUT_BUFFER_MIN_SIZE);
- 			int samplesize = AUD_MAX(AUD_SAMPLE_SIZE(m_specs), AUD_DEVICE_SAMPLE_SIZE(m_specs));
- 
- 			if(m_codecCtx->frame_size <= 1) {
--				m_input_size = FF_MIN_BUFFER_SIZE * 8 / m_codecCtx->bits_per_coded_sample / m_codecCtx->channels;
-+				m_input_size = AV_INPUT_BUFFER_MIN_SIZE * 8 / m_codecCtx->bits_per_coded_sample / m_codecCtx->channels;
- 				m_input_buffer.resize(m_input_size * samplesize);
- 			}
- 			else
-diff --git a/source/blender/blenkernel/intern/writeffmpeg.c b/source/blender/blenkernel/intern/writeffmpeg.c
-index d7fcd896e11..9e82df17dce 100644
---- a/source/blender/blenkernel/intern/writeffmpeg.c
-+++ b/source/blender/blenkernel/intern/writeffmpeg.c
-@@ -619,8 +619,6 @@ static AVStream *alloc_video_stream(FFMpegContext *context, RenderData *rd, int
- 	c->rc_buffer_aggressivity = 1.0;
- #endif
- 
--	c->me_method = ME_EPZS;
--	
- 	codec = avcodec_find_encoder(c->codec_id);
- 	if (!codec)
- 		return NULL;
-@@ -682,14 +680,14 @@ static AVStream *alloc_video_stream(FFMpegContext *context, RenderData *rd, int
- 	    )
- 	{
- 		PRINT("Using global header\n");
--		c->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+		c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 	}
- 	
- 	/* Determine whether we are encoding interlaced material or not */
- 	if (rd->mode & R_FIELDS) {
- 		PRINT("Encoding interlaced video\n");
--		c->flags |= CODEC_FLAG_INTERLACED_DCT;
--		c->flags |= CODEC_FLAG_INTERLACED_ME;
-+		c->flags |= AV_CODEC_FLAG_INTERLACED_DCT;
-+		c->flags |= AV_CODEC_FLAG_INTERLACED_ME;
- 	}
- 
- 	/* xasp & yasp got float lately... */
-@@ -779,7 +777,7 @@ static AVStream *alloc_audio_stream(FFMpegContext *context, RenderData *rd, int
- 	}
- 
- 	if (of->oformat->flags & AVFMT_GLOBALHEADER) {
--		c->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+		c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 	}
- 
- 	set_ffmpeg_properties(rd, c, "audio", &opts);
-@@ -798,14 +796,14 @@ static AVStream *alloc_audio_stream(FFMpegContext *context, RenderData *rd, int
- 	st->codec->time_base.den = st->codec->sample_rate;
- 
- #ifndef FFMPEG_HAVE_ENCODE_AUDIO2
--	context->audio_outbuf_size = FF_MIN_BUFFER_SIZE;
-+	context->audio_outbuf_size = AV_INPUT_BUFFER_MIN_SIZE;
- #endif
- 
- 	if (c->frame_size == 0)
- 		// used to be if ((c->codec_id >= CODEC_ID_PCM_S16LE) && (c->codec_id <= CODEC_ID_PCM_DVD))
- 		// not sure if that is needed anymore, so let's try out if there are any
- 		// complaints regarding some ffmpeg versions users might have
--		context->audio_input_samples = FF_MIN_BUFFER_SIZE * 8 / c->bits_per_coded_sample / c->channels;
-+		context->audio_input_samples = AV_INPUT_BUFFER_MIN_SIZE * 8 / c->bits_per_coded_sample / c->channels;
- 	else {
- 		context->audio_input_samples = c->frame_size;
- #ifndef FFMPEG_HAVE_ENCODE_AUDIO2
-diff --git a/source/blender/imbuf/intern/indexer.c b/source/blender/imbuf/intern/indexer.c
-index eaf4dfd84b4..9c2f42feb52 100644
---- a/source/blender/imbuf/intern/indexer.c
-+++ b/source/blender/imbuf/intern/indexer.c
-@@ -537,7 +537,7 @@ static struct proxy_output_ctx *alloc_proxy_output_ffmpeg(
- 	av_opt_set_int(rv->c, "qmax", ffmpeg_quality, 0);
- 
- 	if (rv->of->flags & AVFMT_GLOBALHEADER) {
--		rv->c->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+		rv->c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 	}
- 
- 	if (avio_open(&rv->of->pb, fname, AVIO_FLAG_WRITE) < 0) {
-
diff --git a/srcpkgs/blender/patches/gcc9-elbeem.patch b/srcpkgs/blender/patches/gcc9-elbeem.patch
deleted file mode 100644
index 26c58e7d988..00000000000
--- a/srcpkgs/blender/patches/gcc9-elbeem.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-https://bugs.gentoo.org/685922
-
---- a/intern/elbeem/intern/solver_main.cpp
-+++ b/intern/elbeem/intern/solver_main.cpp
-@@ -381,7 +381,7 @@ LbmFsgrSolver::mainLoop(const int lev)
- 	GRID_REGION_INIT();
- #if PARALLEL==1
- 	const int gDebugLevel = ::gDebugLevel;
--#pragma omp parallel default(none) num_threads(mNumOMPThreads) \
-+#pragma omp parallel default(none) firstprivate(gDebugLevel,iend,lev,cutConst) num_threads(mNumOMPThreads) \
-   reduction(+: \
- 	  calcCurrentMass,calcCurrentVolume, \
- 		calcCellsFilled,calcCellsEmptied, \
-@@ -1126,7 +1126,7 @@ LbmFsgrSolver::preinitGrids()
- 		GRID_REGION_INIT();
- #if PARALLEL==1
- 	const int gDebugLevel = ::gDebugLevel;
--#pragma omp parallel default(none) num_threads(mNumOMPThreads) \
-+#pragma omp parallel default(none) firstprivate(gDebugLevel,iend,lev) num_threads(mNumOMPThreads) \
-   reduction(+: \
- 	  calcCurrentMass,calcCurrentVolume, \
- 		calcCellsFilled,calcCellsEmptied, \
-@@ -1164,7 +1164,7 @@ LbmFsgrSolver::standingFluidPreinit()
- 	GRID_REGION_INIT();
- #if PARALLEL==1
- 	const int gDebugLevel = ::gDebugLevel;
--#pragma omp parallel default(none) num_threads(mNumOMPThreads) \
-+#pragma omp parallel default(none) firstprivate(gDebugLevel,iend,lev) num_threads(mNumOMPThreads) \
-   reduction(+: \
- 	  calcCurrentMass,calcCurrentVolume, \
- 		calcCellsFilled,calcCellsEmptied, \
diff --git a/srcpkgs/blender/patches/tree_hpp.patch b/srcpkgs/blender/patches/tree_hpp.patch
deleted file mode 100644
index 7c9fbca1821..00000000000
--- a/srcpkgs/blender/patches/tree_hpp.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/intern/itasc/kdl/tree.hpp	2018-03-23 16:22:25.000000000 +0100
-+++ b/intern/itasc/kdl/tree.hpp	2018-08-13 19:31:32.101185313 +0200
-@@ -34,7 +34,7 @@
-     //Forward declaration
-     class TreeElement;
-     // Eigen allocator is needed for alignment of Eigen data types
--    typedef std::map<std::string,TreeElement, std::less<std::string>, Eigen::aligned_allocator<std::pair<std::string, TreeElement> > > SegmentMap;
-+    typedef std::map<std::string,TreeElement, std::less<std::string>, Eigen::aligned_allocator<std::pair<const std::string, TreeElement> > > SegmentMap;
- 
-     class TreeElement
-     {
diff --git a/srcpkgs/blender/patches/util_sseb.patch b/srcpkgs/blender/patches/util_sseb.patch
deleted file mode 100644
index 85396282d81..00000000000
--- a/srcpkgs/blender/patches/util_sseb.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/intern/cycles/util/util_sseb.h
-+++ b/intern/cycles/util/util_sseb.h
-@@ -116,7 +116,7 @@ __forceinline const sseb unpacklo( const sseb& a, const sseb& b ) { return _mm_u
- __forceinline const sseb unpackhi( const sseb& a, const sseb& b ) { return _mm_unpackhi_ps(a, b); }
- 
- template<size_t i0, size_t i1, size_t i2, size_t i3> __forceinline const sseb shuffle( const sseb& a ) {
--	return _mm_shuffle_epi32(a, _MM_SHUFFLE(i3, i2, i1, i0));
-+	return _mm_castsi128_ps(_mm_shuffle_epi32(a, _MM_SHUFFLE(i3, i2, i1, i0)));
- }
- 
- template<> __forceinline const sseb shuffle<0, 1, 0, 1>( const sseb& a ) {
diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template
index 47cb8f8ad13..2beb7f96dd8 100644
--- a/srcpkgs/blender/template
+++ b/srcpkgs/blender/template
@@ -1,21 +1,22 @@
 # Template file for 'blender'
 pkgname=blender
-version=2.79b
-revision=10
+version=2.80
+revision=1
 build_style="cmake"
 makedepends="
  libgomp-devel libpng-devel tiff-devel python3-devel glu-devel
  glew-devel freetype-devel jack-devel libopenal-devel libsndfile-devel
  libsamplerate-devel ffmpeg-devel fftw-devel boost-devel pcre-devel llvm
  libopenexr-devel libopenjpeg-devel libXi-devel openimageio-devel
- opencolorio-devel opencollada-devel"
+ opencolorio-devel opencollada-devel python3-numpy"
 depends="desktop-file-utils hicolor-icon-theme"
 short_desc="3D graphics creation suite"
 maintainer="Enno Boland <gottox@voidlinux.org>"
-license="GPL-2"
+license="GPL-2.0-or-later"
 homepage="http://www.blender.org"
-distfiles="http://download.blender.org/source/${pkgname}-${version}.tar.gz"
-checksum=4c944c304a49e68ac687ea06f5758204def049b66dc211e1cffa1857716393bc
+#distfiles="http://download.blender.org/source/${pkgname}-${version}.tar.gz"
+distfiles="https://ftp.halifax.rwth-aachen.de/blender/source/blender-${version}.tar.gz"
+checksum=cd9d7e505c1f6e63a4f72366ed04d446859977eeb34cde21283aaea6a304a5c0
 patch_args="-Np1"
 
 pycompile_version="$py3_ver"
@@ -25,9 +26,7 @@ archs="x86_64* i686* ppc64*"
 configure_args="
 -DWITH_INSTALL_PORTABLE=OFF
 -DWITH_PYTHON_INSTALL=OFF
--DWITH_GAMEENGINE=ON
 -DWITH_JACK=ON
--DWITH_PLAYER=ON
 -DWITH_CODEC_FFMPEG=ON
 -DWITH_CODEC_SNDFILE=ON
 -DWITH_OPENMP=ON

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (14 preceding siblings ...)
  2019-10-20 15:23 ` voidlinux-github
@ 2019-10-21 10:49 ` voidlinux-github
  2019-10-21 12:41 ` voidlinux-github
                   ` (16 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-10-21 10:49 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 348 bytes --]

New comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/15623#issuecomment-544460067

Comment:
>     * attic -> upstream dead, remove?

I'd say so, yes. I'd assume everyone has moved onto borgbackup (fork/successor of attic) by now, and if they haven't, removing attic might remind them to do so.

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (15 preceding siblings ...)
  2019-10-21 10:49 ` voidlinux-github
@ 2019-10-21 12:41 ` voidlinux-github
  2019-10-21 12:42 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (15 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-10-21 12:41 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 256 bytes --]

New comment by leahneukirchen on void-packages repository

https://github.com/void-linux/void-packages/pull/15623#issuecomment-544496331

Comment:
Still annoying to remove software to access old backups.

But worst case, people could rebuild it for 2.7.

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PR PATCH] [Updated] [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (17 preceding siblings ...)
  2019-10-21 12:42 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-10-21 12:42 ` voidlinux-github
  2019-11-02 15:43 ` voidlinux-github
                   ` (13 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-10-21 12:42 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1067 bytes --]

There is an updated pull request by leahneukirchen against master on the void-packages repository

https://github.com/leahneukirchen/void-packages python38
https://github.com/void-linux/void-packages/pull/15623

[WIP] Python 3.8
This huge PR tries to bump all packages that either shlib-require
libpython3.6m.so.1.0 or put files into /usr/lib/python3.6/site-packages.

Broken packages (on x86_64):

- [ ] attic -> upstream dead, remove?
- [x] blender -> update to 2.80
- [ ] eolie -> meson
- [x] fontforge
- [x] freecad
- [ ] gst1-python -> meson
- [ ] libopenshot -> gcc9 issue, but supposedly fixed? @Spencer-H 
- [x] libpeas
- [x] nagstamon
- [x] paraview
- [x] pockyt
- [x] ~~scudcloud~~
- [x] torbrowser-launcher
- [x] unknown-horizons
- [x] vapoursynth
- [x] variety
- [ ] kdevelop-python -> upstream: https://bugs.kde.org/show_bug.cgi?id=411956
- [x] krita: SHA256 mismatch
- [x] ~~shiboken~~
- [x] renderdoc

Untested:

- [ ] libreoffice


A patch file from https://github.com/void-linux/void-packages/pull/15623.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python38-15623.patch --]
[-- Type: text/x-diff, Size: 655161 bytes --]

From 9907b26ec9aacb2c9c990c665c32502ef0f7c808 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:06:59 +0200
Subject: [PATCH 001/874] python3: update to 3.8.0.

---
 common/shlibs                                 |  3 ++-
 .../python3/patches/fix-xattrs-glibc.patch    | 13 ----------
 srcpkgs/python3/patches/libressl-2.6.patch    | 26 -------------------
 srcpkgs/python3/template                      | 23 ++++++++--------
 4 files changed, 13 insertions(+), 52 deletions(-)
 delete mode 100644 srcpkgs/python3/patches/fix-xattrs-glibc.patch
 delete mode 100644 srcpkgs/python3/patches/libressl-2.6.patch

diff --git a/common/shlibs b/common/shlibs
index cc3fd8383d8..f5133935773 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1698,8 +1698,9 @@ libefiboot.so.1 libefivar-31_1
 libportaudio.so.2 portaudio-19.20140130_1
 libportaudiocpp.so.0 portaudio-cpp-19.20140130_1
 libdar.so.5000 libdar-2.4.14_1
-libpython3.so python3-3.6.2_1
 libpython3.6m.so.1.0 python3-3.6.2_1
+libpython3.so python3-3.8.0_1
+libpython3.8.so.1.0 python3-3.8.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.25.28_1
diff --git a/srcpkgs/python3/patches/fix-xattrs-glibc.patch b/srcpkgs/python3/patches/fix-xattrs-glibc.patch
deleted file mode 100644
index 909901293d5..00000000000
--- a/srcpkgs/python3/patches/fix-xattrs-glibc.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- Modules/posixmodule.c.orig
-+++ Modules/posixmodule.c
-@@ -103,8 +103,9 @@ corresponding Unix manual entries for more information on calls.");
- #undef HAVE_SCHED_SETAFFINITY
- #endif
- 
--#if defined(HAVE_SYS_XATTR_H) && defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
-+#if defined(HAVE_SYS_XATTR_H) && defined(__linux__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
- #define USE_XATTRS
-+#include <linux/limits.h>
- #endif
- 
- #ifdef USE_XATTRS
diff --git a/srcpkgs/python3/patches/libressl-2.6.patch b/srcpkgs/python3/patches/libressl-2.6.patch
deleted file mode 100644
index 92dcf1ef06e..00000000000
--- a/srcpkgs/python3/patches/libressl-2.6.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-https://github.com/python/cpython/pull/4930
-
---- Lib/test/test_ssl.py.orig
-+++ Lib/test/test_ssl.py
-@@ -29,6 +29,12 @@
- PROTOCOLS = sorted(ssl._PROTOCOL_NAMES)
- HOST = support.HOST
- IS_LIBRESSL = ssl.OPENSSL_VERSION.startswith('LibreSSL')
-+if IS_LIBRESSL:
-+    LIBRESSL_VERSION = tuple(
-+        int(s) for s in ssl.OPENSSL_VERSION.rsplit(' ')[-1].split('.')
-+    )
-+else:
-+    LIBRESSL_VERSION = ()
- IS_OPENSSL_1_1 = not IS_LIBRESSL and ssl.OPENSSL_VERSION_INFO >= (1, 1, 0)
- 
- 
-@@ -3392,6 +3398,8 @@ def test_selected_npn_protocol(self):
-                                        chatty=True, connectionchatty=True)
-             self.assertIs(stats['client_npn_protocol'], None)
- 
-+        @unittest.skipIf(IS_LIBRESSL and LIBRESSL_VERSION >= (2, 6, 1),
-+                         "LibreSSL 2.6.1+ has broken NPN support")
-         @unittest.skipUnless(ssl.HAS_NPN, "NPN support needed for this test")
-         def test_npn_protocols(self):
-             server_protocols = ['http/1.1', 'spdy/2']
diff --git a/srcpkgs/python3/template b/srcpkgs/python3/template
index 60bd4411ba8..b03a59beea8 100644
--- a/srcpkgs/python3/template
+++ b/srcpkgs/python3/template
@@ -3,7 +3,7 @@
 # THIS PKG MUST BE SYNCHRONIZED WITH "srcpkgs/python3-tkinter".
 #
 pkgname=python3
-version=3.6.9
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 short_desc="Interpreted, interactive, object-oriented programming language (${version%.*} series)"
@@ -11,7 +11,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=5e2f5f554e3f8f7f0296f7e73d8600c4e9acbaee6b2555b83206edf5153870da
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pycompile_dirs="usr/lib/python${version%.*}"
 hostmakedepends="pkg-config"
@@ -27,8 +27,7 @@ alternatives="
  python:python.1:/usr/share/man/man1/python${version%.*}.1"
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,13 +71,13 @@ do_install() {
 	rm -rf ${DESTDIR}/usr/lib/python${version%.*}/lib2to3/tests
 	# Remove references to the install(1) wrapper.
 	sed -e "s,${XBPS_WRAPPERDIR},/usr/bin,g" -i \
-		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/Makefile
 	if [ "$CROSS_BUILD" ]; then
 		# Remove references to cross toolchain.
 		sed -i "s/$XBPS_CROSS_TRIPLET-//g" \
-			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}/Makefile
 	fi
 }
 
@@ -89,10 +88,10 @@ python3-devel_package() {
 		vmove usr/bin/python*-config
 		vmove usr/lib/pkgconfig
 		vmove usr/include
-		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/libpython${version%.*}m.a \
+		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/libpython${version%.*}*.a \
 			${PKGDESTDIR}/usr/lib
-		mkdir -p ${DESTDIR}/usr/include/python${version%.*}m
-		mv ${PKGDESTDIR}/usr/include/python${version%.*}m/pyconfig.h \
-			${DESTDIR}/usr/include/python${version%.*}m
+		mkdir -p ${DESTDIR}/usr/include/python${version%.*}
+		mv ${PKGDESTDIR}/usr/include/python${version%.*}/pyconfig.h \
+			${DESTDIR}/usr/include/python${version%.*}
 	}
 }

From 82deb1f06d09e93aabaa46495a066cec2647de81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 17:09:57 +0200
Subject: [PATCH 002/874] python3-tkinter: update to 3.8.0.

---
 srcpkgs/python3-tkinter/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template
index 83906219af8..874be51ebdf 100644
--- a/srcpkgs/python3-tkinter/template
+++ b/srcpkgs/python3-tkinter/template
@@ -7,7 +7,7 @@
 _desc="Interpreted, interactive, object-oriented programming language"
 
 pkgname=python3-tkinter
-version=3.6.8
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 pycompile_dirs="
@@ -22,11 +22,10 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=35446241e995773b1bed7d196f4b624dadcadc8429f26282e756b2fb8a351193
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used.
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used.
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,7 +71,7 @@ do_install() {
 		mv ${wrksrc}/${pkgname}-${version}-install/usr/lib/python${version%.*}/${lib} \
 			${DESTDIR}/usr/lib/python${version%.*}/
 	done
-	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*m*.so \
+	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*.so \
 		${DESTDIR}/usr/lib/python${version%.*}/lib-dynload/
 	ln -sf idle${version%.*} ${DESTDIR}/usr/bin/idle3
 }

From 8bb33f77d591103b56f40685a4b61f57b43219cd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:42:15 +0200
Subject: [PATCH 003/874] common/environment/setup/python.sh: update to Python
 3.8.

---
 common/build-style/python-module.sh | 14 ++++----------
 common/environment/setup/python.sh  |  4 ++--
 2 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/common/build-style/python-module.sh b/common/build-style/python-module.sh
index da6ed586cff..ff8f107745f 100644
--- a/common/build-style/python-module.sh
+++ b/common/build-style/python-module.sh
@@ -4,7 +4,7 @@
 
 do_build() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
+	local pyver= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
@@ -12,10 +12,7 @@ do_build() {
 			LDFLAGS="$tmp_ldflags"
 
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
@@ -49,15 +46,12 @@ do_check() {
 
 do_install() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx=
+	local pyver=
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
diff --git a/common/environment/setup/python.sh b/common/environment/setup/python.sh
index d1f4d49a10a..ba181d45361 100644
--- a/common/environment/setup/python.sh
+++ b/common/environment/setup/python.sh
@@ -10,8 +10,8 @@ py2_lib="/usr/lib/python${py2_ver}"
 py2_sitelib="${py2_lib}/site-packages"
 py2_inc="/usr/include/python${py2_ver}"
 
-py3_ver="3.6"
-py3_abiver="m"
+py3_ver="3.8"
+py3_abiver=""
 py3_lib="/usr/lib/python${py3_ver}"
 py3_sitelib="${py3_lib}/site-packages"
 py3_inc="/usr/include/python${py3_ver}${py3_abiver}"

From 75fdcb94c7c7be7dc2c232d271de721d74dc1a6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 004/874] python3-3to2: rebuild for Python 3.8.

---
 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 b6ab94fe7c9..38558f1fcff 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=1
+revision=2
 archs=noarch
 wrksrc="3to2-${version}"
 build_style=python3-module

From 043957a8bcc69ef2ef270f7acd2753a544054759 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 005/874] python-Arrow: rebuild for Python 3.8.

---
 srcpkgs/python-Arrow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Arrow/template b/srcpkgs/python-Arrow/template
index 456e3776188..a3785d60075 100644
--- a/srcpkgs/python-Arrow/template
+++ b/srcpkgs/python-Arrow/template
@@ -2,7 +2,7 @@
 pkgname=python-Arrow
 reverts=0.13.1_1
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="arrow-${version}"
 build_style=python-module

From 5d1bc07743d348083ebd7dfbd1a4ece4913e6a70 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 006/874] python-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Babel/template b/srcpkgs/python-Babel/template
index 34d7a7728ce..619ae432ba4 100644
--- a/srcpkgs/python-Babel/template
+++ b/srcpkgs/python-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Babel'
 pkgname=python-Babel
 version=2.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38e28e565317345549892f5b8da9e3ab1cc3d513 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 007/874] python-BeautifulSoup4: rebuild for Python 3.8.

---
 srcpkgs/python-BeautifulSoup4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-BeautifulSoup4/template b/srcpkgs/python-BeautifulSoup4/template
index 70e4f8a58da..1f6074230c2 100644
--- a/srcpkgs/python-BeautifulSoup4/template
+++ b/srcpkgs/python-BeautifulSoup4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-BeautifulSoup4'
 pkgname=python-BeautifulSoup4
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="beautifulsoup4-${version}"
 build_style=python-module

From 193dc4fe709e1bccd18b84a58f880fde1e4394e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 008/874] python-Bottleneck: rebuild for Python 3.8.

---
 srcpkgs/python-Bottleneck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Bottleneck/template b/srcpkgs/python-Bottleneck/template
index 0c308d5dbb5..28195e99bca 100644
--- a/srcpkgs/python-Bottleneck/template
+++ b/srcpkgs/python-Bottleneck/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Bottleneck'
 pkgname=python-Bottleneck
 version=1.2.1
-revision=4
+revision=5
 wrksrc="Bottleneck-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ff4c422045070300d874353cc6c9750143422e2b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 009/874] python-Cheroot: rebuild for Python 3.8.

---
 srcpkgs/python-Cheroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Cheroot/template b/srcpkgs/python-Cheroot/template
index fcfdf76e69d..7a5375258f4 100644
--- a/srcpkgs/python-Cheroot/template
+++ b/srcpkgs/python-Cheroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Cheroot'
 pkgname=python-Cheroot
 version=8.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cheroot-${version}"
 build_style=python-module

From 6eb51b02b428d8054b1d3a3aa21e6bdcde31cf9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 010/874] python3-CherryPy: rebuild for Python 3.8.

---
 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 b78c01eba2c..450e5791508 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.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python3-module

From 8522b77c798415c2f59fc3b26adc757f66aa0fa7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 011/874] python-ConfigArgParse: rebuild for Python 3.8.

---
 srcpkgs/python-ConfigArgParse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ConfigArgParse/template b/srcpkgs/python-ConfigArgParse/template
index c9a00a04508..d90ca739aee 100644
--- a/srcpkgs/python-ConfigArgParse/template
+++ b/srcpkgs/python-ConfigArgParse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ConfigArgParse'
 pkgname=python-ConfigArgParse
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ConfigArgParse-${version}"
 build_style=python-module

From 3dcbda27301f3e918539317bc411ff556115ef1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 012/874] python-Cython: rebuild for Python 3.8.

---
 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 dc39d54e9c2..675160b3744 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.13
-revision=1
+revision=2
 wrksrc="Cython-${version}"
 build_style=python-module
 pycompile_module="Cython pyximport cython.py"

From 7c69ef59e0a628c13ece955c9f7322631824adca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 013/874] python-Django: rebuild for Python 3.8.

---
 srcpkgs/python-Django/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Django/template b/srcpkgs/python-Django/template
index 21aa405fba1..65a98e41032 100644
--- a/srcpkgs/python-Django/template
+++ b/srcpkgs/python-Django/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Django'
 pkgname=python-Django
 version=1.11.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="Django-${version}"
 build_style=python-module

From 33b250adb0abf2e46663f0a05749097633fce228 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 014/874] python-Flask: rebuild for Python 3.8.

---
 srcpkgs/python-Flask/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask/template b/srcpkgs/python-Flask/template
index 149a76c077e..b75b306701b 100644
--- a/srcpkgs/python-Flask/template
+++ b/srcpkgs/python-Flask/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask'
 pkgname=python-Flask
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9167e534992bd8d17a79a70e22a3b06c68c9762b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 015/874] python-Flask-Assets: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Assets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Assets/template b/srcpkgs/python-Flask-Assets/template
index 339f629f77a..eb81201396b 100644
--- a/srcpkgs/python-Flask-Assets/template
+++ b/srcpkgs/python-Flask-Assets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Assets'
 pkgname=python-Flask-Assets
 version=0.12
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c65d524eb8ee83f7c8eae3ca16878857a374e06c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 016/874] python-Flask-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Babel/template b/srcpkgs/python-Flask-Babel/template
index 3028d15d7bd..b3cc35f230e 100644
--- a/srcpkgs/python-Flask-Babel/template
+++ b/srcpkgs/python-Flask-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Babel'
 pkgname=python-Flask-Babel
 version=0.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From d52f7742820844af3ec25f4b6d4d6d58b19ad722 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 017/874] python-Flask-Login: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Login/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Login/template b/srcpkgs/python-Flask-Login/template
index 8fecf240963..ccaab92d857 100644
--- a/srcpkgs/python-Flask-Login/template
+++ b/srcpkgs/python-Flask-Login/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Login'
 pkgname=python-Flask-Login
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 112c53663ece086d477e4d4fcbc667ae6a2fb518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 018/874] python-Flask-OAuthlib: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-OAuthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-OAuthlib/template b/srcpkgs/python-Flask-OAuthlib/template
index d53157e37b2..958f05a836c 100644
--- a/srcpkgs/python-Flask-OAuthlib/template
+++ b/srcpkgs/python-Flask-OAuthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-OAuthlib'
 pkgname=python-Flask-OAuthlib
 version=0.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From aca82b53b5330ee4a154f2246569006b2d3a38c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 019/874] python3-Flask-RESTful: rebuild for Python 3.8.

---
 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 d0ed467f666..5a05eed0e93 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.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="flask-restful-${version}"
 build_style=python3-module

From 3121295fb06a2b12c0e42b9a6412c1fa52bb86fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 020/874] python-Flask-Script: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Script/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Script/template b/srcpkgs/python-Flask-Script/template
index 19d13887b8e..41312eae57f 100644
--- a/srcpkgs/python-Flask-Script/template
+++ b/srcpkgs/python-Flask-Script/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Script'
 pkgname=python-Flask-Script
 version=2.0.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From cfadd6a4c47e4e611c9d739113006da88f9cb8e7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 021/874] python-Flask-WTF: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-WTF/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-WTF/template b/srcpkgs/python-Flask-WTF/template
index 8edb1d39e35..b2be1e630fb 100644
--- a/srcpkgs/python-Flask-WTF/template
+++ b/srcpkgs/python-Flask-WTF/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-WTF'
 pkgname=python-Flask-WTF
 version=0.14.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 11896d4bd9e1767f6ad8b10e737f0e6a0f5df44f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 022/874] python-GitPython: rebuild for Python 3.8.

---
 srcpkgs/python-GitPython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-GitPython/template b/srcpkgs/python-GitPython/template
index 0edb43cc811..232429265f1 100644
--- a/srcpkgs/python-GitPython/template
+++ b/srcpkgs/python-GitPython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-GitPython'
 pkgname=python-GitPython
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="GitPython-${version}"
 build_style=python-module

From 7008fe32294cead7ef25084a09f874e87cad05e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 023/874] python-IPy: rebuild for Python 3.8.

---
 srcpkgs/python-IPy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-IPy/template b/srcpkgs/python-IPy/template
index d28276383ce..aaae9fcd002 100644
--- a/srcpkgs/python-IPy/template
+++ b/srcpkgs/python-IPy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-IPy'
 pkgname=python-IPy
 version=1.00
-revision=1
+revision=2
 archs=noarch
 wrksrc="IPy-${version}"
 build_style=python-module

From 4ee5b9129c818c4db475e75f899f1f21eb9c312c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 024/874] python3-Inflector: rebuild for Python 3.8.

---
 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 1bfe9ccef7c..e9ee0ffe8d1 100644
--- a/srcpkgs/python3-Inflector/template
+++ b/srcpkgs/python3-Inflector/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-Inflector'
 pkgname=python3-Inflector
 version=2.0.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="Inflector-${version}"
 build_style=python3-module

From 631236d908cbeed8345c2fb159c73e7c54fe1571 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 025/874] python-Jinja2: rebuild for Python 3.8.

---
 srcpkgs/python-Jinja2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Jinja2/template b/srcpkgs/python-Jinja2/template
index c67e6f47f06..3fcd44dc198 100644
--- a/srcpkgs/python-Jinja2/template
+++ b/srcpkgs/python-Jinja2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Jinja2'
 pkgname=python-Jinja2
 version=2.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Jinja2-${version}"
 build_style=python-module

From 3a7808b9f47226adec7dd1e59bef222cf38d7e9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 026/874] python-Levenshtein: rebuild for Python 3.8.

---
 srcpkgs/python-Levenshtein/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Levenshtein/template b/srcpkgs/python-Levenshtein/template
index 26f57d90e70..7d97147ccc8 100644
--- a/srcpkgs/python-Levenshtein/template
+++ b/srcpkgs/python-Levenshtein/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Levenshtein'
 pkgname=python-Levenshtein
 version=0.12.0
-revision=2
+revision=3
 build_style=python-module
 pycompile_module="Levenshtein"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"

From 6d2a898ccc971553cf9dab7239daf8d626350b19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 027/874] python-M2Crypto: rebuild for Python 3.8.

---
 srcpkgs/python-M2Crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-M2Crypto/template b/srcpkgs/python-M2Crypto/template
index 102dbb7261e..6febd5a9ea1 100644
--- a/srcpkgs/python-M2Crypto/template
+++ b/srcpkgs/python-M2Crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-M2Crypto'
 pkgname=python-M2Crypto
 version=0.35.2
-revision=1
+revision=2
 wrksrc="M2Crypto-${version}"
 build_style=python-module
 pycompile_module="M2Crypto"

From 3597aa866d7cb1ff4d5316a0cfe52c8aa8ab717c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 028/874] python-Mako: rebuild for Python 3.8.

---
 srcpkgs/python-Mako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Mako/template b/srcpkgs/python-Mako/template
index e5c3c76170c..f0184179b83 100644
--- a/srcpkgs/python-Mako/template
+++ b/srcpkgs/python-Mako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Mako'
 pkgname=python-Mako
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Mako-${version}"
 build_style=python-module

From 164d5bbfa645fb7b1ddbfbccebb7b85e407c578f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 029/874] python-Markdown: rebuild for Python 3.8.

---
 srcpkgs/python-Markdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markdown/template b/srcpkgs/python-Markdown/template
index 935dcc12bca..03a0d18e23b 100644
--- a/srcpkgs/python-Markdown/template
+++ b/srcpkgs/python-Markdown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markdown'
 pkgname=python-Markdown
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python-module

From c5fcb10688938a17e3acb9f9c630c300f5fe9672 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 030/874] python-MarkupSafe: rebuild for Python 3.8.

---
 srcpkgs/python-MarkupSafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MarkupSafe/template b/srcpkgs/python-MarkupSafe/template
index c12dbb7e656..ae22857aa7a 100644
--- a/srcpkgs/python-MarkupSafe/template
+++ b/srcpkgs/python-MarkupSafe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MarkupSafe'
 pkgname=python-MarkupSafe
 version=1.1.1
-revision=1
+revision=2
 wrksrc="MarkupSafe-${version}"
 build_style=python-module
 pycompile_module="markupsafe"

From b7a4bc0f45110c5c3bd019a437078724336d1888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 031/874] python-Markups: rebuild for Python 3.8.

---
 srcpkgs/python-Markups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markups/template b/srcpkgs/python-Markups/template
index d4817feb430..02ba25ee05c 100644
--- a/srcpkgs/python-Markups/template
+++ b/srcpkgs/python-Markups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markups'
 pkgname=python-Markups
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markups-${version}"
 build_style=python-module

From af8fe2e4b17c908737f599cc43d860493f7da689 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 032/874] python3-MechanicalSoup: rebuild for Python 3.8.

---
 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 b1bbfa4184c..5a3b0b3eb03 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=1
+revision=2
 archs=noarch
 wrksrc=MechanicalSoup-${version}
 build_style=python3-module

From 4d05157344a63fb3d617b00a4268732231187cb4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 033/874] python-MiniMock: rebuild for Python 3.8.

---
 srcpkgs/python-MiniMock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MiniMock/template b/srcpkgs/python-MiniMock/template
index 38c0723f374..8b8c4f5f1e6 100644
--- a/srcpkgs/python-MiniMock/template
+++ b/srcpkgs/python-MiniMock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MiniMock'
 pkgname=python-MiniMock
 version=1.2.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 25b62a34488966009bf8450b60653f01872e2310 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 034/874] python-Pillow: rebuild for Python 3.8.

---
 srcpkgs/python-Pillow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pillow/template b/srcpkgs/python-Pillow/template
index e43d22b8f62..f1791b46d79 100644
--- a/srcpkgs/python-Pillow/template
+++ b/srcpkgs/python-Pillow/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pillow'
 pkgname=python-Pillow
 version=6.2.0
-revision=1
+revision=2
 wrksrc="Pillow-${version}"
 build_style=python-module
 pycompile_module="PIL"

From f79ffe3fe477b7fff206250125a96da96c80c086 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 035/874] python-PyAudio: rebuild for Python 3.8.

---
 srcpkgs/python-PyAudio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyAudio/template b/srcpkgs/python-PyAudio/template
index 5c3286caae0..2e84cf5cc8f 100644
--- a/srcpkgs/python-PyAudio/template
+++ b/srcpkgs/python-PyAudio/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyAudio'
 pkgname=python-PyAudio
 version=0.2.11
-revision=2
+revision=3
 wrksrc="PyAudio-${version}"
 build_style=python-module
 pycompile_module="pyaudio.py"

From 11c99c939a4791ec394842255e6aac23eaae5920 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 036/874] python3-PyBrowserID: rebuild for Python 3.8.

---
 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 abec9dac54e..eefd0175f1b 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=2
+revision=3
 archs=noarch
 wrksrc="PyBrowserID-${version}"
 build_style=python3-module

From d49beb289c07b8d33e8e2f286e068c0e8b3fe4b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 037/874] python3-PyFxA: rebuild for Python 3.8.

---
 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 31175c92435..6fc6791efdd 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=1
+revision=2
 archs=noarch
 wrksrc="PyFxA-${version}"
 build_style=python3-module

From d0eb109c7435d396e67de8f37a376ca0a2958d93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 038/874] python-PyHamcrest: rebuild for Python 3.8.

---
 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 61078241d8a..48f001595aa 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=1
+revision=2
 archs=noarch
 wrksrc="PyHamcrest-${version}"
 build_style=python-module

From 4afc9e488b53ee7025095fe93072953c256fc630 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 039/874] python-PyICU: rebuild for Python 3.8.

---
 srcpkgs/python-PyICU/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyICU/template b/srcpkgs/python-PyICU/template
index be4aaf88639..aab2934cbbd 100644
--- a/srcpkgs/python-PyICU/template
+++ b/srcpkgs/python-PyICU/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyICU'
 pkgname=python-PyICU
 version=2.3.1
-revision=2
+revision=3
 wrksrc="PyICU-${version}"
 build_style=python-module
 pycompile_module="icu PyICU.py"

From a0c3f96b4df2b1efda070832287f3728314c717a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 040/874] python3-PyJWT: rebuild for Python 3.8.

---
 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 6f0830125c1..bf1dda0753e 100644
--- a/srcpkgs/python3-PyJWT/template
+++ b/srcpkgs/python3-PyJWT/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-PyJWT'
 pkgname=python3-PyJWT
 version=1.7.1
-revision=1
+revision=2
 wrksrc="PyJWT-${version}"
 build_style=python3-module
 pycompile_module="PyJWT.py"

From 0355fd4b78af7fbf4ffad4b12dc8e153b70d703d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 041/874] python-PyOpenGL: rebuild for Python 3.8.

---
 srcpkgs/python-PyOpenGL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyOpenGL/template b/srcpkgs/python-PyOpenGL/template
index ec08e0bd667..eafc3be1210 100644
--- a/srcpkgs/python-PyOpenGL/template
+++ b/srcpkgs/python-PyOpenGL/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL'
 pkgname=python-PyOpenGL
 version=3.1.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="PyOpenGL-${version}"
 build_style=python-module

From 1a8da5c4a7dbf53ec6c03efd5387e02d2b0be720 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 17:15:54 +0200
Subject: [PATCH 042/874] python-PyOpenGL-accelerate: update to 3.1.3b1.

---
 srcpkgs/python-PyOpenGL-accelerate/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python-PyOpenGL-accelerate/template b/srcpkgs/python-PyOpenGL-accelerate/template
index 25d84abffcb..5d16a82b845 100644
--- a/srcpkgs/python-PyOpenGL-accelerate/template
+++ b/srcpkgs/python-PyOpenGL-accelerate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL-accelerate'
 pkgname=python-PyOpenGL-accelerate
-version=3.1.0
-revision=5
+version=3.1.3b1
+revision=1
 wrksrc="PyOpenGL-accelerate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"
@@ -9,10 +9,10 @@ makedepends="python-devel python3-devel python-numpy python3-numpy"
 depends="python-numpy"
 short_desc="Acceleration code for PyOpenGL (Python2)"
 maintainer="Alain Kalker <a.c.kalker@gmail.com>"
-license="3-clause-BSD"
+license="BSD-3-Clause"
 homepage="http://pyopengl.sourceforge.net/"
 distfiles="${PYPI_SITE}/P/PyOpenGL-accelerate/PyOpenGL-accelerate-${version}.tar.gz"
-checksum=927f4670b893d46e2f6273ae938bf0a1db27ffae3336eba94813ccef6260c410
+checksum=e687eea7e006d65f531933b49b3b3d2feaaf51279147a904247f9d189762a36f
 
 post_install() {
 	vlicense license.txt LICENSE

From 2f6b6f2c3880b16991df568d3ac18efca5c970c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 043/874] python-PyQt5: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5/template b/srcpkgs/python-PyQt5/template
index 6534d4e22e6..9eba20dc514 100644
--- a/srcpkgs/python-PyQt5/template
+++ b/srcpkgs/python-PyQt5/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5'
 pkgname=python-PyQt5
 version=5.13.0
-revision=1
+revision=2
 _sipver=4.19.18
 lib32disabled=yes
 wrksrc="PyQt5_gpl-${version}"

From cf20a1f23e0c305d2e9672610364b2fd4f566695 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 044/874] python-PyQt5-webengine: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5-webengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5-webengine/template b/srcpkgs/python-PyQt5-webengine/template
index 996ef6b00e2..af7162d20cb 100644
--- a/srcpkgs/python-PyQt5-webengine/template
+++ b/srcpkgs/python-PyQt5-webengine/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5-webengine'
 pkgname=python-PyQt5-webengine
 version=5.13.0
-revision=1
+revision=2
 wrksrc="PyQtWebEngine_gpl-${version}"
 pycompile_module="PyQt5WebEngine"
 hostmakedepends="pkg-config qt5-qmake

From 84502fbd3a591ad0db01072998b5a2b3fcfcf192 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 045/874] python-Pygments: rebuild for Python 3.8.

---
 srcpkgs/python-Pygments/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pygments/template b/srcpkgs/python-Pygments/template
index f5a72ca6cea..8d2214a6bfc 100644
--- a/srcpkgs/python-Pygments/template
+++ b/srcpkgs/python-Pygments/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pygments'
 pkgname=python-Pygments
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Pygments-${version}"
 build_style=python-module

From ef2467b2248b773e2d940058876cf81a2b935043 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 046/874] python-Pyro4: rebuild for Python 3.8.

---
 srcpkgs/python-Pyro4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pyro4/template b/srcpkgs/python-Pyro4/template
index d8925aa141f..0417e9f6a8a 100644
--- a/srcpkgs/python-Pyro4/template
+++ b/srcpkgs/python-Pyro4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pyro4'
 pkgname=python-Pyro4
 version=4.75
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a80785231122d63ad91b973744bf59b0a1b59506 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 047/874] python3-ReParser: rebuild for Python 3.8.

---
 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 5e7b5de3790..5959de9d0e3 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=1
+revision=2
 archs=noarch
 wrksrc=ReParser-${version}
 build_style=python3-module

From 543272b7ff22e6f0642d879c60f19717643fec8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 048/874] python-SPARQLWrapper: rebuild for Python 3.8.

---
 srcpkgs/python-SPARQLWrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-SPARQLWrapper/template b/srcpkgs/python-SPARQLWrapper/template
index d014eb8aab4..8d2db9a02b3 100644
--- a/srcpkgs/python-SPARQLWrapper/template
+++ b/srcpkgs/python-SPARQLWrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'python-SPARQLWrapper'
 pkgname=python-SPARQLWrapper
 version=1.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a01a9e6bc3bd9fddfdd13341f78e625b063be5c8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 049/874] python-SQLAlchemy: rebuild for Python 3.8.

---
 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 7b529ade621..110430ff9f5 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.8
-revision=1
+revision=2
 wrksrc="SQLAlchemy-${version}"
 build_style=python-module
 pycompile_module="sqlalchemy"

From 46382571cad86b54ca46e129f7c2988772d0a48e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 050/874] python3-SecretStorage: rebuild for Python 3.8.

---
 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 8df813ad247..b19d4865f7e 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.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="SecretStorage-${version}"
 build_style=python3-module

From c79427640956f1961211ce3322c3811958e0f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 051/874] python3-SoCo: rebuild for Python 3.8.

---
 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 f0ac9825f57..01ebbeff15a 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="SoCo-${version}"
 build_style=python3-module

From 20a1ac5477ca4a76e0257e06bf6f353835eac7bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 052/874] python-Sphinx: rebuild for Python 3.8.

---
 srcpkgs/python-Sphinx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Sphinx/template b/srcpkgs/python-Sphinx/template
index e70dc9b238e..42969925f9e 100644
--- a/srcpkgs/python-Sphinx/template
+++ b/srcpkgs/python-Sphinx/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Sphinx'
 pkgname=python-Sphinx
 version=1.8.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="Sphinx-${version}"
 build_style=python-module

From 863c01ff80faa4de651a55ba2a354f8da5e6b025 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 053/874] python3-Telethon: rebuild for Python 3.8.

---
 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 b0786559591..d0fa8e34d3f 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.10.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="Telethon-${version}"
 build_style=python3-module

From efc9766b9866c660a4cb508c49be4df48f1e5809 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 054/874] python-Twisted: rebuild for Python 3.8.

---
 srcpkgs/python-Twisted/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Twisted/template b/srcpkgs/python-Twisted/template
index 519a1e251a9..e94e0edf26e 100644
--- a/srcpkgs/python-Twisted/template
+++ b/srcpkgs/python-Twisted/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Twisted'
 pkgname=python-Twisted
 version=18.9.0
-revision=3
+revision=4
 wrksrc="Twisted-${version}"
 build_style=python-module
 pycompile_module="twisted"

From 5fd974f3940d5ee91fe712fef2e93ce539743b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 055/874] python3-TxSNI: rebuild for Python 3.8.

---
 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 403010da5be..d9d7c2a0c83 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.1.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="TxSNI-${version}"
 build_style=python3-module

From 559184031fe43c0ff648fb7fab55ede08fff2c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 056/874] python-Unidecode: rebuild for Python 3.8.

---
 srcpkgs/python-Unidecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Unidecode/template b/srcpkgs/python-Unidecode/template
index 035c5d846be..444eb1427d6 100644
--- a/srcpkgs/python-Unidecode/template
+++ b/srcpkgs/python-Unidecode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Unidecode'
 pkgname=python-Unidecode
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Unidecode-${version}"
 build_style=python-module

From 07f0904b4cb8f2de0b7bc39c0ca28d225c91257d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 057/874] python-WTForms: rebuild for Python 3.8.

---
 srcpkgs/python-WTForms/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-WTForms/template b/srcpkgs/python-WTForms/template
index 06af2366050..98dff7d092f 100644
--- a/srcpkgs/python-WTForms/template
+++ b/srcpkgs/python-WTForms/template
@@ -1,7 +1,7 @@
 # Template file for 'python-WTForms'
 pkgname=python-WTForms
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="WTForms-${version}"
 build_style=python-module

From ec81beba1921fe189a8dd80810da306514a86c1a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 058/874] python3-WebOb: rebuild for Python 3.8.

---
 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 c360542a1f2..53e63879f2c 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=1
+revision=2
 archs=noarch
 wrksrc="WebOb-${version}"
 build_style=python3-module

From 0b7a4a756b3ead4c188a3819311c4471c1b0a21c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 059/874] python-Werkzeug: rebuild for Python 3.8.

---
 srcpkgs/python-Werkzeug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Werkzeug/template b/srcpkgs/python-Werkzeug/template
index 24fff62f1ae..1ca303822e8 100644
--- a/srcpkgs/python-Werkzeug/template
+++ b/srcpkgs/python-Werkzeug/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Werkzeug'
 pkgname=python-Werkzeug
 version=0.15.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c530a6e11127606a3b29b73da4cb31f010d97b5c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 060/874] python-Whoosh: rebuild for Python 3.8.

---
 srcpkgs/python-Whoosh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Whoosh/template b/srcpkgs/python-Whoosh/template
index f2118ed0af2..66856b206a7 100644
--- a/srcpkgs/python-Whoosh/template
+++ b/srcpkgs/python-Whoosh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-whoosh'
 pkgname=python-Whoosh
 version=2.7.4
-revision=1
+revision=2
 wrksrc="Whoosh-${version}"
 archs=noarch
 build_style=python-module

From 3e3ad6526265ded86e6e1b5539061302a3890381 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 061/874] python3-XlsxWriter: rebuild for Python 3.8.

---
 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 ea68ced9a03..b991457e01e 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.1.8
-revision=1
+revision=2
 archs="noarch"
 wrksrc="XlsxWriter-RELEASE_${version}"
 build_style=python3-module

From ed808be70fb42a5a7e827e43a5d8a9954d85823a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 062/874] python-Yapsy: rebuild for Python 3.8.

---
 srcpkgs/python-Yapsy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Yapsy/template b/srcpkgs/python-Yapsy/template
index 9f79423f91d..5ad8b234f5d 100644
--- a/srcpkgs/python-Yapsy/template
+++ b/srcpkgs/python-Yapsy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Yapsy'
 pkgname=python-Yapsy
 version=1.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Yapsy-${version}"
 build_style=python-module

From ef3f8b60f72752d3ec1c7676df4597cc6cfdfb42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 063/874] python-aalib: rebuild for Python 3.8.

---
 srcpkgs/python-aalib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-aalib/template b/srcpkgs/python-aalib/template
index 349b8407343..f9621a9c8dc 100644
--- a/srcpkgs/python-aalib/template
+++ b/srcpkgs/python-aalib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-aalib'
 pkgname=python-aalib
 version=0.3.2
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="aalib.py"
 hostmakedepends="python-setuptools python3-setuptools"

From 1aee008231a9354b62bbf679e89e620deeba0d34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 064/874] python3-acme: rebuild for Python 3.8.

---
 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 d7ef20f2301..844dde9c814 100644
--- a/srcpkgs/python3-acme/template
+++ b/srcpkgs/python3-acme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-acme'
 pkgname=python3-acme
 version=0.39.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="acme-${version}"
 build_style=python3-module

From 877668118087bb2d0bd4b8ebf34db7c6c4308c31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 065/874] python3-aiodns: rebuild for Python 3.8.

---
 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 cca9f45dbf5..8e06ea6e614 100644
--- a/srcpkgs/python3-aiodns/template
+++ b/srcpkgs/python3-aiodns/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiodns'
 pkgname=python3-aiodns
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiodns-${version}"
 build_style=python3-module

From de87766918ac8688cf8992433b56e9b1ad222108 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 066/874] python3-aiohttp: rebuild for Python 3.8.

---
 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 fbe98e07b2b..67e450e6aab 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.5.4
-revision=3
+revision=4
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 0c2d285f8d7edc438e657ec9bc4a2b16982a4a57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 067/874] python3-aiohttp-cors: rebuild for Python 3.8.

---
 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 8a643ca1797..b621716e3cd 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=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 4643a6f9e03d1657e1ac2f5ca93bf616979b58de Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 068/874] python3-aiohttp-cors2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp-cors2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp-cors2/template b/srcpkgs/python3-aiohttp-cors2/template
index 7ff1206538b..f13b0598456 100644
--- a/srcpkgs/python3-aiohttp-cors2/template
+++ b/srcpkgs/python3-aiohttp-cors2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp-cors2'
 pkgname=python3-aiohttp-cors2
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 9db81023f9f60f7a78d62f9f9b8f1fa8afbb9fa8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 069/874] python3-aiohttp2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp2/template b/srcpkgs/python3-aiohttp2/template
index b570043baba..db3704b5700 100644
--- a/srcpkgs/python3-aiohttp2/template
+++ b/srcpkgs/python3-aiohttp2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp2'
 pkgname=python3-aiohttp2
 version=2.3.10
-revision=2
+revision=3
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 9bf56f834aca73a7ea8141ab0c95b4aed0d1f09a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 070/874] python3-aiohttp_socks: rebuild for Python 3.8.

---
 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 93c45ff24c4..10ab967ef76 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.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp_socks-${version}"
 build_style=python3-module

From acad4e265f43c8bc2098168adb1c0442a0c22445 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 071/874] python3-aiorpcx: rebuild for Python 3.8.

---
 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 42b6dc541bf..07922e15ccd 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.17.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiorpcX-${version}"
 build_style=python3-module

From b4945f68890b617f5b513871e533769a2149f07f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 072/874] python-alabaster: rebuild for Python 3.8.

---
 srcpkgs/python-alabaster/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alabaster/template b/srcpkgs/python-alabaster/template
index e4ece5c2991..b33009d5efb 100644
--- a/srcpkgs/python-alabaster/template
+++ b/srcpkgs/python-alabaster/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alabaster'
 pkgname=python-alabaster
 version=0.7.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="alabaster-${version}"
 build_style=python-module

From 04c416b8fb310277c61713ee1b8dd702a970240b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 073/874] python-alembic: rebuild for Python 3.8.

---
 srcpkgs/python-alembic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alembic/template b/srcpkgs/python-alembic/template
index 4011b33c0fa..aecbe10e7d0 100644
--- a/srcpkgs/python-alembic/template
+++ b/srcpkgs/python-alembic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alembic'
 pkgname=python-alembic
 version=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="alembic-${version}"
 build_style=python-module

From 5c2d4bcc3255cb59561524d151fe84b3a70e8ad4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 074/874] python3-altgraph: rebuild for Python 3.8.

---
 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 eff10f7aef4..2bf433edb6e 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.16.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="altgraph-${version}"
 build_style=python3-module

From 3c6234d42f7adffca219ea7f98f11d5283dce900 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 075/874] python3-aniso8601: rebuild for Python 3.8.

---
 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 26540bc8c3f..0253b89b5a3 100644
--- a/srcpkgs/python3-aniso8601/template
+++ b/srcpkgs/python3-aniso8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aniso8601'
 pkgname=python3-aniso8601
 version=8.0.0
-revision=1
+revision=2
 archs=noarch
 _gitver=0ec13b9d81c9
 wrksrc="nielsenb-aniso8601-${_gitver}"

From b4fecde90241517d0629d46de55f99a1ef7edbaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 076/874] python-ansicolor: rebuild for Python 3.8.

---
 srcpkgs/python-ansicolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ansicolor/template b/srcpkgs/python-ansicolor/template
index af18c5b946d..3663a82f0cc 100644
--- a/srcpkgs/python-ansicolor/template
+++ b/srcpkgs/python-ansicolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ansicolor'
 pkgname=python-ansicolor
 version=0.2.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="ansicolor-${version}"
 build_style=python-module

From 3983fbed547fd194f9eefaaf58d10c7770e27350 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 077/874] python3-anytree: rebuild for Python 3.8.

---
 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 5a37dba6581..7368754c426 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.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="anytree-${version}"
 build_style=python3-module

From 6d797f541c2cb160f9cfebd0a3e71dace50cceb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 078/874] python-appdirs: rebuild for Python 3.8.

---
 srcpkgs/python-appdirs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-appdirs/template b/srcpkgs/python-appdirs/template
index fdae1fe184b..15354ec5768 100644
--- a/srcpkgs/python-appdirs/template
+++ b/srcpkgs/python-appdirs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-appdirs'
 pkgname=python-appdirs
 version=1.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 7a7c86554157d7224efc221e706b9aebfc1ff796 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 079/874] python3-applib: rebuild for Python 3.8.

---
 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 95f589dc65a..0fb5a42e618 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=1
+revision=2
 archs=noarch
 wrksrc="applib-${version}"
 build_style=python3-module

From 642416934e5f74b49e1a38fe6e941287cbccbf83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 080/874] python-apsw: rebuild for Python 3.8.

---
 srcpkgs/python-apsw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-apsw/template b/srcpkgs/python-apsw/template
index ed47b4a7803..6146ea639db 100644
--- a/srcpkgs/python-apsw/template
+++ b/srcpkgs/python-apsw/template
@@ -3,7 +3,7 @@ pkgname=python-apsw
 _distver=3.29.0
 _patchver=r1
 version=${_distver}${_patchver}
-revision=1
+revision=2
 wrksrc="apsw-${_distver}-${_patchver}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 765bd2f2b82c6226b12a5d6bbe156b07c03a1bca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 081/874] python-argh: rebuild for Python 3.8.

---
 srcpkgs/python-argh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argh/template b/srcpkgs/python-argh/template
index 4b7aec3b525..656da441757 100644
--- a/srcpkgs/python-argh/template
+++ b/srcpkgs/python-argh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argh'
 pkgname=python-argh
 version=0.26.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="argh-${version}"
 build_style=python-module

From 1f6f709fcbb4353d419be8d129ce581747dae1ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 082/874] python-argon2: rebuild for Python 3.8.

---
 srcpkgs/python-argon2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argon2/template b/srcpkgs/python-argon2/template
index 0b4b132cddd..1b5216cc9c0 100644
--- a/srcpkgs/python-argon2/template
+++ b/srcpkgs/python-argon2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argon2'
 pkgname=python-argon2
 version=18.3.0
-revision=2
+revision=3
 wrksrc="argon2_cffi-${version}"
 build_style=python-module
 pycompile_module="argon2"

From 26f299203792a3fe43e8944054d8c61c83416097 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 083/874] python-arxiv2bib: rebuild for Python 3.8.

---
 srcpkgs/python-arxiv2bib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-arxiv2bib/template b/srcpkgs/python-arxiv2bib/template
index 8bbc6bcf78e..4f245755dcf 100644
--- a/srcpkgs/python-arxiv2bib/template
+++ b/srcpkgs/python-arxiv2bib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-arxiv2bib'
 pkgname=python-arxiv2bib
 version=1.0.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="arxiv2bib-${version}"
 build_style=python-module

From 5d25b8642b8f8043e54a95f2ff5efc880044395a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 084/874] python-asn1crypto: rebuild for Python 3.8.

---
 srcpkgs/python-asn1crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-asn1crypto/template b/srcpkgs/python-asn1crypto/template
index 369c20af98f..e7ffe7415fc 100644
--- a/srcpkgs/python-asn1crypto/template
+++ b/srcpkgs/python-asn1crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-asn1crypto'
 pkgname=python-asn1crypto
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="asn1crypto-${version}"
 build_style=python-module

From c0625af704339d35d7423cd750ef2620c53c39bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 085/874] python-astral: rebuild for Python 3.8.

---
 srcpkgs/python-astral/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-astral/template b/srcpkgs/python-astral/template
index b8fdaee27ac..07aaeee166b 100644
--- a/srcpkgs/python-astral/template
+++ b/srcpkgs/python-astral/template
@@ -1,7 +1,7 @@
 # Template file for 'python-astral'
 pkgname=python-astral
 version=1.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python-}-${version}"
 build_style=python-module

From 6cdbd1584336605868e949368279bb6c2143b1d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 086/874] python3-astroid: rebuild for Python 3.8.

---
 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 28f01bd4445..d964fd2cdf3 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.2.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="astroid-${version}"
 build_style=python3-module

From c0642f6c760884c3209a89e643de35660419627a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 087/874] python3-async-timeout: rebuild for Python 3.8.

---
 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 d949a4fdf9a..854584fb5b2 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=1
+revision=2
 archs=noarch
 wrksrc="async-timeout-${version}"
 build_style=python3-module

From 17cdd1aac68337b8859ce0d970b309f841b8a456 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 088/874] python3-async_generator: rebuild for Python 3.8.

---
 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 c2053d7bf1f..20d9f7ea0d1 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=1
+revision=2
 archs=noarch
 wrksrc="async_generator-${version}"
 build_style=python3-module

From e57ec7e6820968645a23bcc13867add4c9a62399 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 089/874] python-atomicwrites: rebuild for Python 3.8.

---
 srcpkgs/python-atomicwrites/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atomicwrites/template b/srcpkgs/python-atomicwrites/template
index 849272e53f9..ec411d981d4 100644
--- a/srcpkgs/python-atomicwrites/template
+++ b/srcpkgs/python-atomicwrites/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atomicwrites'
 pkgname=python-atomicwrites
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="atomicwrites-${version}"
 build_style=python-module

From 61df9fa27dc05bc6bb5d5a2c5e806fd041d9adb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 090/874] python-atspi: rebuild for Python 3.8.

---
 srcpkgs/python-atspi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atspi/template b/srcpkgs/python-atspi/template
index 4a2007fa319..cfa1ef35377 100644
--- a/srcpkgs/python-atspi/template
+++ b/srcpkgs/python-atspi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atspi'
 pkgname=python-atspi
 version=2.32.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure

From d24c76e2f70e9a9dd9a6aa66a323bf79f37f9110 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 091/874] python-attrs: rebuild for Python 3.8.

---
 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 aaddb13f5be..6e2297a9553 100644
--- a/srcpkgs/python-attrs/template
+++ b/srcpkgs/python-attrs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-attrs'
 pkgname=python-attrs
 version=19.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="attrs-${version}"
 build_style=python-module

From dba37b5f26f28057cb10e86a08a4d2281ee09b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 092/874] python-audioread: rebuild for Python 3.8.

---
 srcpkgs/python-audioread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-audioread/template b/srcpkgs/python-audioread/template
index fc788a2778c..bc878d4b82d 100644
--- a/srcpkgs/python-audioread/template
+++ b/srcpkgs/python-audioread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-audioread'
 pkgname=python-audioread
 version=2.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="audioread-${version}"
 build_style=python-module

From 789a6f2ae1cd503ad69b6a968651c7745f878718 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 093/874] audit: rebuild for Python 3.8.

---
 srcpkgs/audit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/audit/template b/srcpkgs/audit/template
index c624aae0f6d..3e0d21784c0 100644
--- a/srcpkgs/audit/template
+++ b/srcpkgs/audit/template
@@ -1,7 +1,7 @@
 # Template file for 'audit'
 pkgname=audit
 version=2.8.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--libdir=/usr/lib --enable-shared=audit --enable-gssapi-krb5
  --with-apparmor --with-libcap-ng --with-python3"

From e2efc441ba2dda6eac89d6d19f7960be2fb6cb6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 094/874] python3-autobahn: rebuild for Python 3.8.

---
 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 053e45608e5..524ba4b4566 100644
--- a/srcpkgs/python3-autobahn/template
+++ b/srcpkgs/python3-autobahn/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-autobahn'
 pkgname=python3-autobahn
 version=19.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="autobahn-${version}"
 build_style=python3-module

From 9ad07e924752896ad77bccca2019163eb738ebc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 095/874] python-automat: rebuild for Python 3.8.

---
 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 4d0f89a89f5..984f5e9642a 100644
--- a/srcpkgs/python-automat/template
+++ b/srcpkgs/python-automat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-automat'
 pkgname=python-automat
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Automat-${version}"
 build_style=python-module

From a104c6986268b798f373e1fb36de2b20efb9f618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 096/874] python-axolotl: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl/template b/srcpkgs/python-axolotl/template
index cf24db1b6e7..74480b5a9fe 100644
--- a/srcpkgs/python-axolotl/template
+++ b/srcpkgs/python-axolotl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl'
 pkgname=python-axolotl
 version=0.2.3
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="axolotl"

From c0e16521a2125c2ae2c155dd483904a3dce7bd8c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 097/874] python-axolotl-curve25519: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl-curve25519/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl-curve25519/template b/srcpkgs/python-axolotl-curve25519/template
index f7b273b8385..897de4e7cdf 100644
--- a/srcpkgs/python-axolotl-curve25519/template
+++ b/srcpkgs/python-axolotl-curve25519/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl-curve25519'
 pkgname=python-axolotl-curve25519
 version=0.4.1.post2
-revision=2
+revision=3
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 makedepends="python-devel python3-devel"

From 6c250811341de25ed60e2bdfaae58eb8f5a8c159 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 098/874] python-babelfish: rebuild for Python 3.8.

---
 srcpkgs/python-babelfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-babelfish/template b/srcpkgs/python-babelfish/template
index c156255f418..47d5bb176cc 100644
--- a/srcpkgs/python-babelfish/template
+++ b/srcpkgs/python-babelfish/template
@@ -1,7 +1,7 @@
 # Template file for 'python-babelfish'
 pkgname=python-babelfish
 version=0.5.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="babelfish-${version}"
 build_style=python-module

From 3bbb2fa6599ab0470a4209080a69ad4f8476f1ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 099/874] python-backcall: rebuild for Python 3.8.

---
 srcpkgs/python-backcall/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-backcall/template b/srcpkgs/python-backcall/template
index 01dfab9c25d..a55af727ab6 100644
--- a/srcpkgs/python-backcall/template
+++ b/srcpkgs/python-backcall/template
@@ -1,7 +1,7 @@
 # Template file for 'python-backcall'
 pkgname=python-backcall
 version=0.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="backcall-${version}"
 build_style=python-module

From d263efaab1b83cfdc94e9b33011f3cfefc52dcd2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 100/874] bcc: rebuild for Python 3.8.

---
 srcpkgs/bcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template
index a4d32bce7a4..e872cb6a4a8 100644
--- a/srcpkgs/bcc/template
+++ b/srcpkgs/bcc/template
@@ -1,7 +1,7 @@
 # Template file for 'bcc'
 pkgname=bcc
 version=0.11.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DREVISION=${version}"
 hostmakedepends="flex"

From 95aa25d2f02529207de0d9d62aa57353f202d9a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 101/874] python-bcrypt: rebuild for Python 3.8.

---
 srcpkgs/python-bcrypt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bcrypt/template b/srcpkgs/python-bcrypt/template
index 1ccac21ee94..664b5c9df07 100644
--- a/srcpkgs/python-bcrypt/template
+++ b/srcpkgs/python-bcrypt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bcrypt'
 pkgname=python-bcrypt
 version=3.1.7
-revision=1
+revision=2
 wrksrc="bcrypt-${version}"
 build_style=python-module
 pycompile_module="bcrypt"

From 91e29d8f93186f3c597658d4746f864cc6ed9fb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 102/874] python-bibtexparser: rebuild for Python 3.8.

---
 srcpkgs/python-bibtexparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bibtexparser/template b/srcpkgs/python-bibtexparser/template
index 1eff201e6b8..c40115c9fb8 100644
--- a/srcpkgs/python-bibtexparser/template
+++ b/srcpkgs/python-bibtexparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bibtexparser'
 pkgname=python-bibtexparser
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bibtexparser-${version}"
 build_style=python-module

From 6a95de33763230908ad4e9ae408dedcdd2cc431d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 103/874] python-bitarray: rebuild for Python 3.8.

---
 srcpkgs/python-bitarray/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitarray/template b/srcpkgs/python-bitarray/template
index 4f2b4ee392c..f928718a9df 100644
--- a/srcpkgs/python-bitarray/template
+++ b/srcpkgs/python-bitarray/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitarray'
 pkgname=python-bitarray
 version=1.0.1
-revision=1
+revision=2
 wrksrc="bitarray-${version}"
 build_style=python-module
 pycompile_module="bitarray"

From 1f892b7a3495cc0eddd59d14baf8fa6473521ce4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 104/874] python-bitbucket-api: rebuild for Python 3.8.

---
 srcpkgs/python-bitbucket-api/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitbucket-api/template b/srcpkgs/python-bitbucket-api/template
index 27747866baf..448ea60d53d 100644
--- a/srcpkgs/python-bitbucket-api/template
+++ b/srcpkgs/python-bitbucket-api/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitbucket-api'
 pkgname=python-bitbucket-api
 version=0.5.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="bitbucket-api-${version}"
 build_style=python-module

From 9f464ba19a5d403e830d05b84d5b86c6a9bf0209 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 105/874] python-bleach: rebuild for Python 3.8.

---
 srcpkgs/python-bleach/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bleach/template b/srcpkgs/python-bleach/template
index da389c319a5..6e3d4a3bf4c 100644
--- a/srcpkgs/python-bleach/template
+++ b/srcpkgs/python-bleach/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bleach'
 pkgname=python-bleach
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bleach-${version}"
 build_style=python-module

From a79c0811d86d64b345ee5b056c280a062c8e810a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 106/874] python3-blessed: rebuild for Python 3.8.

---
 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 4d494883f9a..8527379351f 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.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessed-${version}"
 build_style=python3-module

From ec38850242ede1700a4b6234199fba116a530b3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 107/874] python-blessings: rebuild for Python 3.8.

---
 srcpkgs/python-blessings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blessings/template b/srcpkgs/python-blessings/template
index f8e396da5c5..baa4938c328 100644
--- a/srcpkgs/python-blessings/template
+++ b/srcpkgs/python-blessings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blessings'
 pkgname=python-blessings
 version=1.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessings-${version}"
 build_style=python-module

From 19252293b6f311e3a280441f83e7ec1589711b77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 108/874] python-blinker: rebuild for Python 3.8.

---
 srcpkgs/python-blinker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blinker/template b/srcpkgs/python-blinker/template
index e34a4a9721a..b6d1d63d19a 100644
--- a/srcpkgs/python-blinker/template
+++ b/srcpkgs/python-blinker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blinker'
 pkgname=python-blinker
 version=1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="blinker-${version}"
 build_style=python-module

From 7cd7b832b55b68ab081454f2b86c254476bd5132 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 109/874] python-bluez: rebuild for Python 3.8.

---
 srcpkgs/python-bluez/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bluez/template b/srcpkgs/python-bluez/template
index 1112352e8ab..4734e47038d 100644
--- a/srcpkgs/python-bluez/template
+++ b/srcpkgs/python-bluez/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bluez'
 pkgname=python-bluez
 version=0.22
-revision=4
+revision=5
 wrksrc="pybluez-${version}"
 build_style=python-module
 pycompile_module="bluetooth"

From 47f9a18cc42f2afe1e8f31696b6928e35b8105c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 110/874] python3-boltons: rebuild for Python 3.8.

---
 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 84a991feef4..1083eb98c51 100644
--- a/srcpkgs/python3-boltons/template
+++ b/srcpkgs/python3-boltons/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-boltons'
 pkgname=python3-boltons
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boltons-${version}"
 build_style=python3-module

From 05f9cb79aa092e2ddeede56d09676742c60cb788 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 111/874] python-boto: rebuild for Python 3.8.

---
 srcpkgs/python-boto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-boto/template b/srcpkgs/python-boto/template
index 40bd3d888b9..684c00feee0 100644
--- a/srcpkgs/python-boto/template
+++ b/srcpkgs/python-boto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-boto'
 pkgname=python-boto
 version=2.49.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boto-${version}"
 build_style=python-module

From ad258b30e35aadb84fd8cd6395bb3d382b429ce9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 112/874] python-botocore: rebuild for Python 3.8.

---
 srcpkgs/python-botocore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-botocore/template b/srcpkgs/python-botocore/template
index ae1a4c17964..0610007f36e 100644
--- a/srcpkgs/python-botocore/template
+++ b/srcpkgs/python-botocore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-botocore'
 pkgname=python-botocore
 version=1.12.243
-revision=1
+revision=2
 archs=noarch
 wrksrc="botocore-${version}"
 build_style=python-module

From 5bc87295c4d5b8af514da116d9b83154488da331 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 113/874] python-bottle: rebuild for Python 3.8.

---
 srcpkgs/python-bottle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bottle/template b/srcpkgs/python-bottle/template
index 8e3a2ad5ad7..0ffc8adfec7 100644
--- a/srcpkgs/python-bottle/template
+++ b/srcpkgs/python-bottle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bottle'
 pkgname=python-bottle
 version=0.12.17
-revision=1
+revision=2
 archs=noarch
 wrksrc="bottle-${version}"
 build_style=python-module

From 86d7964c563357cfa4aec17ced1fefb9e2c974d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 114/874] brltty: rebuild for Python 3.8.

---
 srcpkgs/brltty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/brltty/template b/srcpkgs/brltty/template
index 33f3354a219..a838cd62d55 100644
--- a/srcpkgs/brltty/template
+++ b/srcpkgs/brltty/template
@@ -1,7 +1,7 @@
 # Template file for 'brltty'
 pkgname=brltty
 version=6.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-gpm --with-screen-driver=lx,sc
  --with-tables-directory=/usr/share/brltty PYTHON=/usr/bin/python3"

From 59305e4244220895606aef8a8016d356cee63dff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 115/874] python-bsddb3: rebuild for Python 3.8.

---
 srcpkgs/python-bsddb3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bsddb3/template b/srcpkgs/python-bsddb3/template
index f719a3f9560..1df37cc0e71 100644
--- a/srcpkgs/python-bsddb3/template
+++ b/srcpkgs/python-bsddb3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bsddb3'
 pkgname=python-bsddb3
 version=6.2.6
-revision=2
+revision=3
 wrksrc="bsddb3-${version}"
 build_style=python-module
 make_build_args="--berkeley-db=${XBPS_CROSS_BASE}/usr"

From 8e91ab0e55145cdc83aae10c6f0277d467cb5057 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 116/874] python-cached-property: rebuild for Python 3.8.

---
 srcpkgs/python-cached-property/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cached-property/template b/srcpkgs/python-cached-property/template
index ca2f8536260..16c89346565 100644
--- a/srcpkgs/python-cached-property/template
+++ b/srcpkgs/python-cached-property/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cached-property'
 pkgname=python-cached-property
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cached-property-${version}"
 build_style=python-module

From 3047633291296a9279b5c2a9c0ff04a0cea875f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 117/874] python-cachetools: rebuild for Python 3.8.

---
 srcpkgs/python-cachetools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cachetools/template b/srcpkgs/python-cachetools/template
index ee3ed3a4c94..0f2fdcaed32 100644
--- a/srcpkgs/python-cachetools/template
+++ b/srcpkgs/python-cachetools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cachetools'
 pkgname=python-cachetools
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cachetools-${version}"
 build_style=python-module

From 52e0110b2dc8419583a18babfa62796ef6410ac7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 118/874] python3-cairo: rebuild for Python 3.8.

---
 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 cdde1b83d20..ac158237dd2 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.18.1
-revision=1
+revision=2
 wrksrc="pycairo-${version}"
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From d8f9c3f93f495874237c23477fb548be8b2c0da2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 119/874] python-cairocffi: rebuild for Python 3.8.

---
 srcpkgs/python-cairocffi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cairocffi/template b/srcpkgs/python-cairocffi/template
index baa61334a2a..c057739b03d 100644
--- a/srcpkgs/python-cairocffi/template
+++ b/srcpkgs/python-cairocffi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cairocffi'
 pkgname=python-cairocffi
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cairocffi-${version}"
 build_style=python-module

From bc01f22fb9a5d16bae1b724b675fc57b1f732baa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 120/874] python3-canonicaljson: rebuild for Python 3.8.

---
 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 abc8e95820d..1cbe15f14ae 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.1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="canonicaljson-${version}"
 build_style=python3-module

From e4cba931e3e55f565bc084f8171dea2a8baa9aaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 121/874] python3-casttube: rebuild for Python 3.8.

---
 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 ccd95f3f31c..9e5544b0101 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=1
+revision=2
 archs=noarch
 wrksrc="casttube-${version}"
 build_style=python3-module

From 255661e350728911e6dc85db4bd8a0a0f059b561 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 122/874] python-cffi: rebuild for Python 3.8.

---
 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 27ae03879ac..8501b202bf2 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.12.3
-revision=1
+revision=2
 wrksrc="cffi-${version}"
 build_style=python-module
 pycompile_module="cffi"

From 1b85c0971a1d2d810331d3392d4ecedf140eeb47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 123/874] python3-changelogs: rebuild for Python 3.8.

---
 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 5c2a4889959..d9a7784cf3b 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.14.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="changelogs-${version}"
 build_style=python3-module

From 38e9561402e4ea4c3c4b27c8c747e6b710aec2fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 124/874] python-chardet: rebuild for Python 3.8.

---
 srcpkgs/python-chardet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chardet/template b/srcpkgs/python-chardet/template
index 685d3ab767f..bd502bbbddf 100644
--- a/srcpkgs/python-chardet/template
+++ b/srcpkgs/python-chardet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chardet'
 pkgname=python-chardet
 version=3.0.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="chardet-${version}"
 build_style=python-module

From de1193127ae80857e0f21f1d0499748b6ccafa40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 125/874] python3-cheetah3: rebuild for Python 3.8.

---
 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 40dfee6e322..b2149b2bc22 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.4
-revision=1
+revision=2
 wrksrc="Cheetah3-${version}"
 build_style=python3-module
 pycompile_module="Cheetah"

From 654378c7da0932e5e48085409868c2639efb5294 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 126/874] python3-chess: rebuild for Python 3.8.

---
 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 54b397517cf..e87dab6ca02 100644
--- a/srcpkgs/python3-chess/template
+++ b/srcpkgs/python3-chess/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chess'
 pkgname=python3-chess
 version=0.27.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-chess-${version}"
 build_style=python3-module

From 10db1a1daa9e65a8a20ebc6e20f512884e23f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 127/874] python3-chromecast: rebuild for Python 3.8.

---
 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 16df7502633..cfa41c5dfb5 100644
--- a/srcpkgs/python3-chromecast/template
+++ b/srcpkgs/python3-chromecast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chromecast'
 pkgname=python3-chromecast
 version=4.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychromecast-${version}"
 build_style=python3-module

From 9ff3e7dae7d0ebe28421538f18f150ecd58104e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 128/874] python-chroot: rebuild for Python 3.8.

---
 srcpkgs/python-chroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chroot/template b/srcpkgs/python-chroot/template
index 36853e9f2c0..7faa0f4cce9 100644
--- a/srcpkgs/python-chroot/template
+++ b/srcpkgs/python-chroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chroot'
 pkgname=python-chroot
 version=0.9.18
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychroot-${version}"
 build_style=python-module

From 8d2b57d7f0075beb9134ebd5f7e517ef8a7f20a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 129/874] python3-cli-ui: rebuild for Python 3.8.

---
 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 8303d44eed2..15a9bd32fce 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.9.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-cli-ui-${version}"
 build_style=python3-module

From ecf175e67cdb7bd1e27d29cc47a7e945a6660996 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 130/874] python3-cli_helpers: rebuild for Python 3.8.

---
 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 74b4abf2200..87b284e3cb5 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=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cli_helpers-${version}"
 build_style=python3-module

From aa87c50665110997328e9b80b9b6ba62c47f18bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 131/874] python-click: rebuild for Python 3.8.

---
 srcpkgs/python-click/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click/template b/srcpkgs/python-click/template
index 217e617e73e..4014cb66a83 100644
--- a/srcpkgs/python-click/template
+++ b/srcpkgs/python-click/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click'
 pkgname=python-click
 version=7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Click-${version}"
 build_style="python-module"

From cac08babb361a709a7b7a93c7a825b4682273115 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 132/874] python-click-log: rebuild for Python 3.8.

---
 srcpkgs/python-click-log/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-log/template b/srcpkgs/python-click-log/template
index 37b53f04af0..b57a7a74b4a 100644
--- a/srcpkgs/python-click-log/template
+++ b/srcpkgs/python-click-log/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-log'
 pkgname=python-click-log
 version=0.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-log-${version}"
 build_style="python-module"

From 5a0f06ded0599ac889d808c93865db1723b2ed95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 133/874] python3-click-plugins: rebuild for Python 3.8.

---
 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 cee484018d1..0ef6ce6b248 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=1
+revision=2
 archs=noarch
 wrksrc="click-plugins-${version}"
 build_style=python3-module

From cf104fe4106995307daeb70eb8d34554c238b5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 134/874] python-click-threading: rebuild for Python 3.8.

---
 srcpkgs/python-click-threading/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-threading/template b/srcpkgs/python-click-threading/template
index 76125224992..49b4a4a9aae 100644
--- a/srcpkgs/python-click-threading/template
+++ b/srcpkgs/python-click-threading/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-threading'
 pkgname=python-click-threading
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-threading-${version}"
 build_style="python-module"

From 4bcf653af73bc8e5a6492eee92e5d2826a779d38 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 135/874] python3-cmdln: rebuild for Python 3.8.

---
 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 f00c9a63908..2b7e21f3980 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=1
+revision=2
 archs=noarch
 wrksrc="cmdln-${version}"
 build_style=python3-module

From 52e9257d3be602d0748918c1440a3eae0b6baa51 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 136/874] python-codespell: rebuild for Python 3.8.

---
 srcpkgs/python-codespell/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-codespell/template b/srcpkgs/python-codespell/template
index 92134285a58..211626f33d7 100644
--- a/srcpkgs/python-codespell/template
+++ b/srcpkgs/python-codespell/template
@@ -1,7 +1,7 @@
 # Template file for 'python-codespell'
 pkgname=python-codespell
 version=1.14.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="codespell-${version}"
 build_style=python-module

From 65299f402e3d3a2991e33defee28d85043e0b40f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 137/874] python-colorama: rebuild for Python 3.8.

---
 srcpkgs/python-colorama/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-colorama/template b/srcpkgs/python-colorama/template
index 98ea0d3be78..09562385243 100644
--- a/srcpkgs/python-colorama/template
+++ b/srcpkgs/python-colorama/template
@@ -1,7 +1,7 @@
 # Template file for 'python-colorama'
 pkgname=python-colorama
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="colorama-${version}"
 build_style=python-module

From ec6a8fb7b9e3330e2d7f3fbe139c7a3742013bd8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 138/874] python3-colorclass: rebuild for Python 3.8.

---
 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 4a80f379206..ed8d2d2ea02 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=1
+revision=2
 archs=noarch
 wrksrc="colorclass-${version}"
 build_style=python3-module

From 4b254d3097fa01cb641af24639c6b9a230345954 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 139/874] python-configobj: rebuild for Python 3.8.

---
 srcpkgs/python-configobj/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-configobj/template b/srcpkgs/python-configobj/template
index 95f30d4631a..a8cb5d5d34e 100644
--- a/srcpkgs/python-configobj/template
+++ b/srcpkgs/python-configobj/template
@@ -1,7 +1,7 @@
 # Template file for 'python-configobj'
 pkgname=python-configobj
 version=5.0.6
-revision=5
+revision=6
 archs=noarch
 wrksrc="configobj-${version}"
 build_style=python-module

From 530a6b84ff81274981ed1aa92a2ff85a78dc9775 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 140/874] python-constantly: rebuild for Python 3.8.

---
 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 b5530908ac4..9160aec9edd 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=2
+revision=3
 archs=noarch
 wrksrc="constantly-${version}"
 build_style=python-module

From d2c0a853f5cd6634cca304f7db191fcb1d9a6afa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 141/874] python-construct: rebuild for Python 3.8.

---
 srcpkgs/python-construct/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-construct/template b/srcpkgs/python-construct/template
index 2afe435652c..d6d0b8010e2 100644
--- a/srcpkgs/python-construct/template
+++ b/srcpkgs/python-construct/template
@@ -1,7 +1,7 @@
 # Template file for 'python-construct'
 pkgname=python-construct
 version=2.9.45
-revision=2
+revision=3
 archs=noarch
 wrksrc="construct-${version}"
 build_style=python-module

From 9ba618aa4a4db0062002fcb1ad540bee9b702ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 142/874] python-coverage: rebuild for Python 3.8.

---
 srcpkgs/python-coverage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-coverage/template b/srcpkgs/python-coverage/template
index df6064b9879..1c44b5e18fb 100644
--- a/srcpkgs/python-coverage/template
+++ b/srcpkgs/python-coverage/template
@@ -1,7 +1,7 @@
 # Template file for 'python-coverage'
 pkgname=python-coverage
 version=4.5.4
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="coverage"

From 9adf4621a4960d8a331e1b723971cb326ad2429f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 143/874] python-cram: rebuild for Python 3.8.

---
 srcpkgs/python-cram/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cram/template b/srcpkgs/python-cram/template
index f1fce32149f..8c5d65fe260 100644
--- a/srcpkgs/python-cram/template
+++ b/srcpkgs/python-cram/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cram'
 pkgname=python-cram
 version=0.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="cram-${version}"
 build_style=python-module

From 47ef41a3931be5da08ee8d6fb0ff35b5e1a95d62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 144/874] python3-crcmod: rebuild for Python 3.8.

---
 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 4cd433d2420..9311dedc8ac 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=1
+revision=2
 wrksrc="crcmod-${version}"
 build_style=python3-module
 pycompile_module="crcmod"

From 8b8750f3919e1f23aa6930671f096a365391611a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 145/874] python-cryptography: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography/template b/srcpkgs/python-cryptography/template
index ce3184715dd..39e63d22f7d 100644
--- a/srcpkgs/python-cryptography/template
+++ b/srcpkgs/python-cryptography/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography'
 pkgname=python-cryptography
 version=2.7
-revision=1
+revision=2
 wrksrc="cryptography-${version}"
 build_style=python-module
 pycompile_module="cryptography"

From 676ecf3ea008b8ccabdd3d2798c449a061abb9dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 146/874] python-cryptography_vectors: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography_vectors/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography_vectors/template b/srcpkgs/python-cryptography_vectors/template
index d52e5f5e47c..8fba3a0ce27 100644
--- a/srcpkgs/python-cryptography_vectors/template
+++ b/srcpkgs/python-cryptography_vectors/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography_vectors'
 pkgname=python-cryptography_vectors
 version=2.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="cryptography_vectors-${version}"
 build_style=python-module

From b78a89dedf3b15094ae7febdff460a2cbf547464 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 147/874] python-css-parser: rebuild for Python 3.8.

---
 srcpkgs/python-css-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-css-parser/template b/srcpkgs/python-css-parser/template
index e90b103e4a0..f6d2d0cbf8b 100644
--- a/srcpkgs/python-css-parser/template
+++ b/srcpkgs/python-css-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-css-parser'
 pkgname=python-css-parser
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="css-parser-${version}"
 build_style=python-module

From 036f8b87a68dcb362c7037f58abcffb763571601 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 148/874] python-cssselect: rebuild for Python 3.8.

---
 srcpkgs/python-cssselect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssselect/template b/srcpkgs/python-cssselect/template
index d7dbcebc0ea..c7f43ebca9f 100644
--- a/srcpkgs/python-cssselect/template
+++ b/srcpkgs/python-cssselect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssselect'
 pkgname=python-cssselect
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d4b52974f5f9e8a86060d3dfccc041298c1d666 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 149/874] python-cssutils: rebuild for Python 3.8.

---
 srcpkgs/python-cssutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssutils/template b/srcpkgs/python-cssutils/template
index 648c4754c22..5f08903b9a0 100644
--- a/srcpkgs/python-cssutils/template
+++ b/srcpkgs/python-cssutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssutils'
 pkgname=python-cssutils
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="cssutils-${version}"
 build_style=python-module

From bfb2835290dfefddc0781e2b463d410bf121efa5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 150/874] python-cups: rebuild for Python 3.8.

---
 srcpkgs/python-cups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cups/template b/srcpkgs/python-cups/template
index 2c26e9ef3d0..62c384c9db8 100644
--- a/srcpkgs/python-cups/template
+++ b/srcpkgs/python-cups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cups'
 pkgname=python-cups
 version=1.9.74
-revision=2
+revision=3
 wrksrc="pycups-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 32daac09af71a30483e9985028381670b4ab6245 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 151/874] system-config-printer: rebuild for Python 3.8.

---
 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 e8f8eca46ae..04fe74ff808 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.11
-revision=5
+revision=6
 build_style=gnu-configure
 configure_args="--with-udev-rules"
 make_build_args="udevhelperdir=/usr/lib/udev"

From 582813b2756ce1d1d397113a752b81189680c001 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 152/874] python-curl: rebuild for Python 3.8.

---
 srcpkgs/python-curl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curl/template b/srcpkgs/python-curl/template
index f1f9051d53a..685c63ce68a 100644
--- a/srcpkgs/python-curl/template
+++ b/srcpkgs/python-curl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curl'
 pkgname=python-curl
 version=7.43.0.3
-revision=4
+revision=5
 wrksrc="pycurl-${version}"
 build_style=python-module
 pycompile_module="curl"

From 0eda981910702bfaac2a8af2041fe2c534c13618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 153/874] python-curtsies: rebuild for Python 3.8.

---
 srcpkgs/python-curtsies/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curtsies/template b/srcpkgs/python-curtsies/template
index 158d1c5ce76..6126a11e9b4 100644
--- a/srcpkgs/python-curtsies/template
+++ b/srcpkgs/python-curtsies/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curtsies'
 pkgname=python-curtsies
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="curtsies-${version}"
 build_style=python-module

From 7db16365daaa931d774701441c01b698be457cb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 154/874] python-cycler: rebuild for Python 3.8.

---
 srcpkgs/python-cycler/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cycler/template b/srcpkgs/python-cycler/template
index ee6c985b288..0b53c195dae 100644
--- a/srcpkgs/python-cycler/template
+++ b/srcpkgs/python-cycler/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cycler'
 pkgname=python-cycler
 version=0.10.0
-revision=4
+revision=5
 archs=noarch
 wrksrc="cycler-${version}"
 build_style=python-module

From 2c59e6772ee31b855fe302a27b9b9544cd865e6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 155/874] python-daemonize: rebuild for Python 3.8.

---
 srcpkgs/python-daemonize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-daemonize/template b/srcpkgs/python-daemonize/template
index 699a156b26b..efaf163e573 100644
--- a/srcpkgs/python-daemonize/template
+++ b/srcpkgs/python-daemonize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-daemonize'
 pkgname=python-daemonize
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="daemonize-${version}"
 build_style=python-module

From 84cc63fece0763c8b6920e56e78508551e0fc727 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 156/874] python-dateutil: rebuild for Python 3.8.

---
 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 d9c0f73c883..7675b8f9447 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.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="dateutil"

From 9a19173186ae564f17114f530ac8077484d43c82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 157/874] python-dbus: rebuild for Python 3.8.

---
 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 869c10b2969..3845f6ce34a 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.12
-revision=1
+revision=2
 wrksrc="dbus-python-${version}"
 build_style=gnu-configure
 pycompile_module="dbus"

From 06a9a5b6965485369e669181d99123d7beabf81f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 158/874] python3-dbusmock: rebuild for Python 3.8.

---
 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 67e0ed68078..4abd47843cc 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.18.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-dbusmock-${version}"
 build_style=python3-module

From 694c57d69d63d9f59bef9d31d20a0b16dc73a2a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 159/874] python-decorator: rebuild for Python 3.8.

---
 srcpkgs/python-decorator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-decorator/template b/srcpkgs/python-decorator/template
index 14090c537c9..7f14fef90a6 100644
--- a/srcpkgs/python-decorator/template
+++ b/srcpkgs/python-decorator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-decorator'
 pkgname=python-decorator
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="decorator-${version}"
 build_style=python-module

From 3bd4b100eb970e16e93bbbed8ce2ac91a36e3df5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 160/874] python-defusedxml: rebuild for Python 3.8.

---
 srcpkgs/python-defusedxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-defusedxml/template b/srcpkgs/python-defusedxml/template
index afd62e94414..96234eb18c7 100644
--- a/srcpkgs/python-defusedxml/template
+++ b/srcpkgs/python-defusedxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-defusedxml'
 pkgname=python-defusedxml
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="defusedxml-${version}"
 build_style=python-module

From 442acbe58cd337c55658908f41ec5b6221ca8fcb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 161/874] python3-discid: rebuild for Python 3.8.

---
 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 be5eae1f07f..cc4bc27a1aa 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=1
+revision=2
 archs=noarch
 wrksrc="discid-${version}"
 build_style=python3-module

From 31db2101853fbced7b2655f48906b9054bce07ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 162/874] python-discogs_client: rebuild for Python 3.8.

---
 srcpkgs/python-discogs_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-discogs_client/template b/srcpkgs/python-discogs_client/template
index a27cc50f93c..5af18eda664 100644
--- a/srcpkgs/python-discogs_client/template
+++ b/srcpkgs/python-discogs_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-discogs_client'
 pkgname=python-discogs_client
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="discogs-client-${version}"
 build_style=python-module

From 0aba2b232148b832c27ebd8703c24f42c5018f15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 163/874] python3-distro: rebuild for Python 3.8.

---
 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 86e94572ed7..f1205ace151 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.4.0
-revision=1
+revision=2
 wrksrc=distro-${version}
 build_style=python3-module
 pycompile_module="distro"

From 990a3bd7cef20bd21b781caccd807a7cadf6a0fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 164/874] python-distutils-extra: rebuild for Python 3.8.

---
 srcpkgs/python-distutils-extra/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-distutils-extra/template b/srcpkgs/python-distutils-extra/template
index 9e5728ba08f..46bb0cccc31 100644
--- a/srcpkgs/python-distutils-extra/template
+++ b/srcpkgs/python-distutils-extra/template
@@ -1,7 +1,7 @@
 # Template file for 'python-distutils-extra'
 pkgname=python-distutils-extra
 version=2.39
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 pycompile_module="DistUtilsExtra"

From cc8c6f7c74e5660152cb87b99e7d7b88b5c3d077 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 165/874] python-dkimpy: rebuild for Python 3.8.

---
 srcpkgs/python-dkimpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dkimpy/template b/srcpkgs/python-dkimpy/template
index 4ca5ad386b0..1da26c5de5d 100644
--- a/srcpkgs/python-dkimpy/template
+++ b/srcpkgs/python-dkimpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dkimpy'
 pkgname=python-dkimpy
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="dkimpy-${version}"
 build_style=python-module

From 8560c730ee4396275d04f5b5649fc0b2a1a8819e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 166/874] python-dnspython: rebuild for Python 3.8.

---
 srcpkgs/python-dnspython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dnspython/template b/srcpkgs/python-dnspython/template
index 15d4d7a8a73..66d237e89ee 100644
--- a/srcpkgs/python-dnspython/template
+++ b/srcpkgs/python-dnspython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dnspython'
 pkgname=python-dnspython
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dnspython-${version}"
 build_style=python-module

From c723160d02d838faad8761fcdaa9cfaed2df756f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 167/874] python-docker: rebuild for Python 3.8.

---
 srcpkgs/python-docker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker/template b/srcpkgs/python-docker/template
index b3f8cb2076b..83265bbb606 100644
--- a/srcpkgs/python-docker/template
+++ b/srcpkgs/python-docker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker'
 pkgname=python-docker
 version=3.7.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-${version}"
 build_style=python-module

From 116d9592b10bcde7a5b2f78ed23e0c2e382394da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 168/874] python-docker-pycreds: rebuild for Python 3.8.

---
 srcpkgs/python-docker-pycreds/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker-pycreds/template b/srcpkgs/python-docker-pycreds/template
index c478ded9de6..2224be0d21d 100644
--- a/srcpkgs/python-docker-pycreds/template
+++ b/srcpkgs/python-docker-pycreds/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker-pycreds'
 pkgname=python-docker-pycreds
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-pycreds-${version}"
 build_style=python-module

From 339d2fc160bc67c015b61704b1ade0e15a729050 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 169/874] python-dockerpty: rebuild for Python 3.8.

---
 srcpkgs/python-dockerpty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dockerpty/template b/srcpkgs/python-dockerpty/template
index 78ba5bc3b09..4a0b3a7a33f 100644
--- a/srcpkgs/python-dockerpty/template
+++ b/srcpkgs/python-dockerpty/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dockerpty'
 pkgname=python-dockerpty
 version=0.4.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="dockerpty-${version}"
 build_style=python-module

From 9925e97e6e19313f6899b14640957a47c12c3c6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 170/874] python-docopt: rebuild for Python 3.8.

---
 srcpkgs/python-docopt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docopt/template b/srcpkgs/python-docopt/template
index 4b8661ed2e1..48e5f86c1e0 100644
--- a/srcpkgs/python-docopt/template
+++ b/srcpkgs/python-docopt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docopt'
 pkgname=python-docopt
 version=0.6.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="docopt-${version}"
 build_style=python-module

From b274270fc5a58198a59400d9c8eb825546cf64ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 171/874] python-docutils: rebuild for Python 3.8.

---
 srcpkgs/python-docutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docutils/template b/srcpkgs/python-docutils/template
index 62f080f416a..8fd21a7450b 100644
--- a/srcpkgs/python-docutils/template
+++ b/srcpkgs/python-docutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docutils'
 pkgname=python-docutils
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docutils-${version}"
 build_style=python-module

From 6db8d0a9fb5d7b1cd339f5102d86a29dda19f348 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 172/874] python-dogpile.cache: rebuild for Python 3.8.

---
 srcpkgs/python-dogpile.cache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index f6e106fb4e8..894c6f695bf 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dogpile.cache'
 pkgname=python-dogpile.cache
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dogpile.cache-${version}"
 build_style=python-module

From e603b2f5de239ac8c6e7b8322f560ed5249fe887 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 173/874] python-dominate: rebuild for Python 3.8.

---
 srcpkgs/python-dominate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dominate/template b/srcpkgs/python-dominate/template
index 14ec659bac8..6d6f2caa323 100644
--- a/srcpkgs/python-dominate/template
+++ b/srcpkgs/python-dominate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dominate'
 pkgname=python-dominate
 version=2.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dominate-${version}"
 build_style=python-module

From 2bd7c3e739559614758b25140591fa8bb623a73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 174/874] python-dulwich: rebuild for Python 3.8.

---
 srcpkgs/python-dulwich/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dulwich/template b/srcpkgs/python-dulwich/template
index 0bddda65069..7b8ac45011e 100644
--- a/srcpkgs/python-dulwich/template
+++ b/srcpkgs/python-dulwich/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dulwich'
 pkgname=python-dulwich
 version=0.19.13
-revision=1
+revision=2
 wrksrc="dulwich-${version}"
 build_style=python-module
 pycompile_module="dulwich"

From 9d0b79dad0746da7669be20a38791a7eff4a42dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 175/874] python3-easygui: rebuild for Python 3.8.

---
 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 c1ec4767ae9..a9a2f66d865 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="easygui-${version}"
 build_style=python3-module

From eaa3ee113511523004b2d78a2119becc627b2dcf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 176/874] python-ecdsa: rebuild for Python 3.8.

---
 srcpkgs/python-ecdsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ecdsa/template b/srcpkgs/python-ecdsa/template
index 5e0b217fa73..e6e7d58cd10 100644
--- a/srcpkgs/python-ecdsa/template
+++ b/srcpkgs/python-ecdsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ecdsa'
 pkgname=python-ecdsa
 version=0.13.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 5d7cb5b032b5814415f5b21646b09bceda211fd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 177/874] python-editor: rebuild for Python 3.8.

---
 srcpkgs/python-editor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-editor/template b/srcpkgs/python-editor/template
index 4b86afa6924..3594e407205 100644
--- a/srcpkgs/python-editor/template
+++ b/srcpkgs/python-editor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-editor'
 pkgname=python-editor
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="editor"

From 19c3e09b30ed3cf9c6ffee8cee652d54c672a599 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 178/874] python-efl: rebuild for Python 3.8.

---
 srcpkgs/python-efl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-efl/template b/srcpkgs/python-efl/template
index a49e7d35847..2096f6916da 100644
--- a/srcpkgs/python-efl/template
+++ b/srcpkgs/python-efl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-efl'
 pkgname=python-efl
 version=1.22.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="efl"
 hostmakedepends="pkg-config python-devel python3-devel"

From 82198e93fcca38bb8b5f4f754bcbd6fd7baf59da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 179/874] python3-eliot: rebuild for Python 3.8.

---
 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 15b05dd7331..8453789b688 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="eliot-${version}"
 build_style=python3-module

From bcfe6b0d9db4104d00cb6a16d6012f2258515d59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 180/874] python-empy: rebuild for Python 3.8.

---
 srcpkgs/python-empy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-empy/template b/srcpkgs/python-empy/template
index 97476250cf2..4668a9cc814 100644
--- a/srcpkgs/python-empy/template
+++ b/srcpkgs/python-empy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-empy'
 pkgname=python-empy
 version=3.3.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="empy-${version}"
 build_style=python-module

From 6a91fa7210bd83ced5963d69be69166cd7ad72e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 181/874] python-enchant: rebuild for Python 3.8.

---
 srcpkgs/python-enchant/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enchant/template b/srcpkgs/python-enchant/template
index a443877d821..e499957b47e 100644
--- a/srcpkgs/python-enchant/template
+++ b/srcpkgs/python-enchant/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enchant'
 pkgname=python-enchant
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python-module

From 6ec52886dc67e49d1440bf8d0d1fe8fab07df30a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 182/874] python-entrypoints: rebuild for Python 3.8.

---
 srcpkgs/python-entrypoints/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-entrypoints/template b/srcpkgs/python-entrypoints/template
index ebefb2d04dc..6070650f35d 100644
--- a/srcpkgs/python-entrypoints/template
+++ b/srcpkgs/python-entrypoints/template
@@ -1,7 +1,7 @@
 # Template file for 'python-entrypoints'
 pkgname=python-entrypoints
 version=0.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="entrypoints-${version}"
 build_style=python-module

From 612a78254c1f46db87994e41646495e245a3facf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 183/874] python-envdir: rebuild for Python 3.8.

---
 srcpkgs/python-envdir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-envdir/template b/srcpkgs/python-envdir/template
index 622fcee6b34..b8cccad60ac 100644
--- a/srcpkgs/python-envdir/template
+++ b/srcpkgs/python-envdir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-envdir'
 pkgname=python-envdir
 version=1.0.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 50f8488d9ea7d659590f7d09f42dd5b94e19152c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 184/874] python-enzyme: rebuild for Python 3.8.

---
 srcpkgs/python-enzyme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enzyme/template b/srcpkgs/python-enzyme/template
index 637c858195b..f28f40b0319 100644
--- a/srcpkgs/python-enzyme/template
+++ b/srcpkgs/python-enzyme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enzyme'
 pkgname=python-enzyme
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="enzyme-${version}"
 build_style=python-module

From 0927e611429f29f17290f1e10cf2c0b872d1feb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 185/874] python3-esprima: rebuild for Python 3.8.

---
 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 c3a564123de..aec8930a6bf 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=1
+revision=2
 wrksrc="esprima-${version}"
 build_style=python3-module
 pycompile_module="esprima"

From d10708d4fcebbbc7dccf424ca1a596b43ae8df59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 186/874] python-evdev: rebuild for Python 3.8.

---
 srcpkgs/python-evdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-evdev/template b/srcpkgs/python-evdev/template
index 3c1a5253513..cff10211628 100644
--- a/srcpkgs/python-evdev/template
+++ b/srcpkgs/python-evdev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-evdev'
 pkgname=python-evdev
 version=1.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="evdev"
 hostmakedepends="python-setuptools python3-setuptools"

From d4f74f5bad705da704a6773a834e3939d7700c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 187/874] python-ewmh: rebuild for Python 3.8.

---
 srcpkgs/python-ewmh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ewmh/template b/srcpkgs/python-ewmh/template
index be6d04316b0..a96490fb56d 100644
--- a/srcpkgs/python-ewmh/template
+++ b/srcpkgs/python-ewmh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ewmh'
 pkgname=python-ewmh
 version=0.1.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From afbcc47e23517b6d56ec485dc40f389c1af31701 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 188/874] python-exifread: rebuild for Python 3.8.

---
 srcpkgs/python-exifread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-exifread/template b/srcpkgs/python-exifread/template
index 853f885fff8..834aa7730ee 100644
--- a/srcpkgs/python-exifread/template
+++ b/srcpkgs/python-exifread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-exifread'
 pkgname=python-exifread
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="exif-py-${version}"
 build_style="python-module"

From d05fad06fa4306ef7f685f49a366fcc27e64a40c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 189/874] python-fasteners: rebuild for Python 3.8.

---
 srcpkgs/python-fasteners/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fasteners/template b/srcpkgs/python-fasteners/template
index 34ca4e0e9db..24d2ec0611f 100644
--- a/srcpkgs/python-fasteners/template
+++ b/srcpkgs/python-fasteners/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fasteners'
 pkgname=python-fasteners
 version=0.15
-revision=1
+revision=2
 archs=noarch
 wrksrc="fasteners-${version}"
 build_style=python-module

From 8c663b7a9f12675a94dea8c33eddeededd3c56bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 190/874] python-feedgenerator: rebuild for Python 3.8.

---
 srcpkgs/python-feedgenerator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedgenerator/template b/srcpkgs/python-feedgenerator/template
index 3e5abc4f433..bcffb6728aa 100644
--- a/srcpkgs/python-feedgenerator/template
+++ b/srcpkgs/python-feedgenerator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedgenerator'
 pkgname=python-feedgenerator
 version=1.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="feedgenerator-${version}"
 build_style=python-module

From ab9e5bccaa31f32d93549c21e47bc12c4e5ac181 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 191/874] python-feedparser: rebuild for Python 3.8.

---
 srcpkgs/python-feedparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedparser/template b/srcpkgs/python-feedparser/template
index c5c5e8783eb..94f0a58ec88 100644
--- a/srcpkgs/python-feedparser/template
+++ b/srcpkgs/python-feedparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedparser'
 pkgname=python-feedparser
 version=5.2.1
-revision=5
+revision=6
 archs=noarch
 wrksrc="feedparser-${version}"
 build_style=python-module

From 157719696415e499518e188417324c7d97359d36 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 192/874] python3-fido2: rebuild for Python 3.8.

---
 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 fafb4d61d56..fb737d68d20 100644
--- a/srcpkgs/python3-fido2/template
+++ b/srcpkgs/python3-fido2/template
@@ -2,7 +2,7 @@
 pkgname=python3-fido2
 _pkgname=fido2
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From cbab3fd166f79dc7d2659a802e1953c697f94a95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 193/874] python3-filelock: rebuild for Python 3.8.

---
 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 8e0bc8f1070..9105ff8689d 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.0.12
-revision=1
+revision=2
 wrksrc="filelock-${version}"
 build_style=python3-module
 pycompile_module="filelock.py"

From df9deb02719807bdcb49f7c41040cd8748efd6fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 194/874] python-filetype: rebuild for Python 3.8.

---
 srcpkgs/python-filetype/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-filetype/template b/srcpkgs/python-filetype/template
index 37896cff9d8..10b974794b5 100644
--- a/srcpkgs/python-filetype/template
+++ b/srcpkgs/python-filetype/template
@@ -1,7 +1,7 @@
 # Template file for 'python-filetype'
 pkgname=python-filetype
 version=1.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="filetype-${version}"
 build_style=python-module

From b71ed5528581f9bba57653ff2acb45edf6dcbd81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 195/874] python3-fishnet: rebuild for Python 3.8.

---
 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 9dde60cbb6c..6280ae8e966 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=1
+revision=2
 archs=noarch
 wrksrc="fishnet-${version}"
 build_style=python3-module

From 25bc415f7d96b99e98c97ab0abad6a531786f9e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 196/874] python-flaky: rebuild for Python 3.8.

---
 srcpkgs/python-flaky/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-flaky/template b/srcpkgs/python-flaky/template
index d5211c9cb60..e8e681421f7 100644
--- a/srcpkgs/python-flaky/template
+++ b/srcpkgs/python-flaky/template
@@ -1,7 +1,7 @@
 # Template file for 'python-flaky'
 pkgname=python-flaky
 version=3.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 6dfa18d602ed8d6414a040466c4e0eef4db1d0d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 197/874] python3-flexmock: rebuild for Python 3.8.

---
 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 0663ed5122d..8a7c9a2894d 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.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="flexmock-${version}"
 build_style=python3-module

From 8c90b86b18b06e68260df59166a7228f7af5e5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 198/874] python3-fonttools: rebuild for Python 3.8.

---
 srcpkgs/python3-fonttools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-fonttools/template b/srcpkgs/python3-fonttools/template
index 15cf36585fb..ccd4b66c5d8 100644
--- a/srcpkgs/python3-fonttools/template
+++ b/srcpkgs/python3-fonttools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-fonttools'
 pkgname=python3-fonttools
 version=4.0.2
-revision=1
+revision=2
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 pycompile_module="fonttools"

From 423903ec28541ea1cd89f97400529121dca5e065 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 199/874] python3-frozendict: rebuild for Python 3.8.

---
 srcpkgs/python3-frozendict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-frozendict/template b/srcpkgs/python3-frozendict/template
index d3b4dc91602..739000a887c 100644
--- a/srcpkgs/python3-frozendict/template
+++ b/srcpkgs/python3-frozendict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-frozendict'
 pkgname=python3-frozendict
 version=1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="frozendict-${version}"
 build_style=python3-module

From 0929953d079922e685a9b46372630d69c2c6776d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 200/874] python-fuse: rebuild for Python 3.8.

---
 srcpkgs/python-fuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fuse/template b/srcpkgs/python-fuse/template
index 6449cc36a02..2e99e9866d3 100644
--- a/srcpkgs/python-fuse/template
+++ b/srcpkgs/python-fuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fuse'
 pkgname=python-fuse
 version=0.3.1
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="fuseparts fuse.py"
 hostmakedepends="pkg-config python-setuptools python3-setuptools"

From 505bca67544c8cca26d3f7675eb746bb98abf44e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 201/874] python-future: rebuild for Python 3.8.

---
 srcpkgs/python-future/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-future/template b/srcpkgs/python-future/template
index 1844be2efbc..6cd53908823 100644
--- a/srcpkgs/python-future/template
+++ b/srcpkgs/python-future/template
@@ -1,7 +1,7 @@
 # Template file for 'python-future'
 pkgname=python-future
 version=0.17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="future-${version}"
 build_style=python-module

From 4b595c01c8dcf28a72cf0a96960609ab9788b6ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 202/874] python3-geojson: rebuild for Python 3.8.

---
 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 6bcd0c3092e..90e7d5a0e60 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=1
+revision=2
 archs=noarch
 wrksrc="geojson-${version}"
 build_style=python3-module

From 5e44d64f54a2983f4d5fefba49ef65a6803bd024 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 203/874] python-gevent: rebuild for Python 3.8.

---
 srcpkgs/python-gevent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gevent/template b/srcpkgs/python-gevent/template
index 2bbabee00fc..35c76146d56 100644
--- a/srcpkgs/python-gevent/template
+++ b/srcpkgs/python-gevent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gevent'
 pkgname=python-gevent
 version=1.4.0
-revision=1
+revision=2
 wrksrc="gevent-${version}"
 build_style=python-module
 pycompile_module="gevent"

From 5fed10c6460512a1f1391f079ed47645f9df532e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 204/874] python3-gitchangelog: rebuild for Python 3.8.

---
 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 ed381e07d78..cc1945f2623 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=1
+revision=2
 archs=noarch
 wrksrc="gitchangelog-${version}"
 build_style=python3-module

From b52557ed164619919a05cdf8fae5e77e5b4f53db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 205/874] python-gitdb: rebuild for Python 3.8.

---
 srcpkgs/python-gitdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitdb/template b/srcpkgs/python-gitdb/template
index d9e624b9f53..253ddaa07bd 100644
--- a/srcpkgs/python-gitdb/template
+++ b/srcpkgs/python-gitdb/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitdb'
 pkgname=python-gitdb
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="gitdb2-${version}"
 build_style=python-module

From 53365dcec4eb25138ea4bb248d57c1b2aa7aa311 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 206/874] python-github3: rebuild for Python 3.8.

---
 srcpkgs/python-github3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-github3/template b/srcpkgs/python-github3/template
index 2cb71368f3d..425fe1b7362 100644
--- a/srcpkgs/python-github3/template
+++ b/srcpkgs/python-github3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-github3'
 pkgname=python-github3
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="github3.py-${version}"
 build_style=python-module

From 2b4c90de9a0cbcbb5902a9407f229864bd81a7f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 207/874] python-gitlab: rebuild for Python 3.8.

---
 srcpkgs/python-gitlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitlab/template b/srcpkgs/python-gitlab/template
index 7db583b54c4..0f71b4c7153 100644
--- a/srcpkgs/python-gitlab/template
+++ b/srcpkgs/python-gitlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitlab'
 pkgname=python-gitlab
 version=1.12.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gitlab"

From 51613301779bb891e87daba6b634dca18654d29f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 208/874] python-gmpy2: rebuild for Python 3.8.

---
 srcpkgs/python-gmpy2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gmpy2/template b/srcpkgs/python-gmpy2/template
index c41a9f4595b..74e9b583288 100644
--- a/srcpkgs/python-gmpy2/template
+++ b/srcpkgs/python-gmpy2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gmpy2'
 pkgname=python-gmpy2
 version=2.0.8
-revision=5
+revision=6
 wrksrc="gmpy2-${version}"
 build_style=python-module
 hostmakedepends="unzip python-setuptools python3-setuptools

From a6f4b9ed74b787b741e6297520186bd60de2b46e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 209/874] python-gntp: rebuild for Python 3.8.

---
 srcpkgs/python-gntp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gntp/template b/srcpkgs/python-gntp/template
index 14bd36518f8..7b3bb5a7bb7 100644
--- a/srcpkgs/python-gntp/template
+++ b/srcpkgs/python-gntp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gntp'
 pkgname=python-gntp
 version=1.0.3
-revision=4
+revision=5
 archs=noarch
 wrksrc="gntp-${version}"
 build_style=python-module

From 0730dc20e341ef5247184f85a47f2d1200750698 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 210/874] python-gnupg: rebuild for Python 3.8.

---
 srcpkgs/python-gnupg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gnupg/template b/srcpkgs/python-gnupg/template
index ae6f49c7e27..24c0943d1e4 100644
--- a/srcpkgs/python-gnupg/template
+++ b/srcpkgs/python-gnupg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gnupg'
 pkgname=python-gnupg
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gnupg.py"

From 2c78f38b921da1d4ac2ddf5c200a378cadd75590 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 211/874] python3-gobject: rebuild for Python 3.8.

---
 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 242d33ed3ac..8713ddf5334 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.32.2
-revision=1
+revision=2
 wrksrc="pygobject-${version}"
 build_style=meson
 build_helper="gir"

From 15ed888e45d37128f9852cfc492a14182186f1a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 212/874] python-gogs-client: rebuild for Python 3.8.

---
 srcpkgs/python-gogs-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gogs-client/template b/srcpkgs/python-gogs-client/template
index e8189bc8805..027135d430c 100644
--- a/srcpkgs/python-gogs-client/template
+++ b/srcpkgs/python-gogs-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gogs-client'
 pkgname=python-gogs-client
 version=1.0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="gogs_client-${version}"
 build_style=python-module

From 1ce661eb8f15d8e6d56a3f1e197897c332fa224e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 213/874] python-google-api-python-client: rebuild for Python
 3.8.

---
 srcpkgs/python-google-api-python-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-api-python-client/template b/srcpkgs/python-google-api-python-client/template
index 273cd0722b8..69c2d4e96eb 100644
--- a/srcpkgs/python-google-api-python-client/template
+++ b/srcpkgs/python-google-api-python-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-api-python-client'
 pkgname=python-google-api-python-client
 version=1.7.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From abc55893b0e34778f73646713ec111220a9cafbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 214/874] python-google-auth: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth/template b/srcpkgs/python-google-auth/template
index 708fe08325a..1de6800e3d2 100644
--- a/srcpkgs/python-google-auth/template
+++ b/srcpkgs/python-google-auth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth'
 pkgname=python-google-auth
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 345385c7c36d4b9e58aad80d36b1cd93575ecd95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 215/874] python-google-auth-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth-httplib2/template b/srcpkgs/python-google-auth-httplib2/template
index 9a7fd093ce5..9e43bc92292 100644
--- a/srcpkgs/python-google-auth-httplib2/template
+++ b/srcpkgs/python-google-auth-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth-httplib2'
 pkgname=python-google-auth-httplib2
 version=0.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 659bb740f4ecc98b01dc400608f6b524416a0b86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 216/874] python-gpg: rebuild for Python 3.8.

---
 srcpkgs/python-gpg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gpg/template b/srcpkgs/python-gpg/template
index 4ef85846b42..a17a0324af8 100644
--- a/srcpkgs/python-gpg/template
+++ b/srcpkgs/python-gpg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gpg'
 pkgname=python-gpg
 version=1.10.0
-revision=3
+revision=4
 wrksrc="gpg-${version}"
 build_style=python-module
 hostmakedepends="swig gpgme-devel python-devel python3-devel"

From 873dc5b9b60d819c83e9d76fd366d7e22b1e3bc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 217/874] python-grako: rebuild for Python 3.8.

---
 srcpkgs/python-grako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-grako/template b/srcpkgs/python-grako/template
index cc02973b31e..2b401732735 100644
--- a/srcpkgs/python-grako/template
+++ b/srcpkgs/python-grako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-grako'
 pkgname=python-grako
 version=3.99.9
-revision=3
+revision=4
 wrksrc="neogeny-${pkgname/python-/}-275d3c4fe4ac"
 build_style=python-module
 pycompile_module="grako"

From d47059d2656db0b58c65856428cabac0432d40b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 218/874] python-graphviz: rebuild for Python 3.8.

---
 srcpkgs/python-graphviz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-graphviz/template b/srcpkgs/python-graphviz/template
index 521f2e81213..e3d487a2db7 100644
--- a/srcpkgs/python-graphviz/template
+++ b/srcpkgs/python-graphviz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-graphviz'
 pkgname=python-graphviz
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 604137947acf2b7cd302f3f32e778c96a0f521f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 219/874] python-greenlet: rebuild for Python 3.8.

---
 srcpkgs/python-greenlet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-greenlet/template b/srcpkgs/python-greenlet/template
index d1e63ac7adb..b540e9a286b 100644
--- a/srcpkgs/python-greenlet/template
+++ b/srcpkgs/python-greenlet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-greenlet'
 pkgname=python-greenlet
 version=0.4.15
-revision=2
+revision=3
 wrksrc="greenlet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From c75b3ed338515fef098deb3e5b0d7a6afb7e4027 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 220/874] python-guessit: rebuild for Python 3.8.

---
 srcpkgs/python-guessit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-guessit/template b/srcpkgs/python-guessit/template
index 5029048a041..a962f14522f 100644
--- a/srcpkgs/python-guessit/template
+++ b/srcpkgs/python-guessit/template
@@ -1,7 +1,7 @@
 # Template file for 'python-guessit'
 pkgname=python-guessit
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="guessit-${version}"
 build_style=python-module

From be7acc08bc4f5ffb222fcebc23a391553273ece1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 221/874] python-h11: rebuild for Python 3.8.

---
 srcpkgs/python-h11/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-h11/template b/srcpkgs/python-h11/template
index 88040dfadec..b2e007533a7 100644
--- a/srcpkgs/python-h11/template
+++ b/srcpkgs/python-h11/template
@@ -1,7 +1,7 @@
 # Template file for 'python-h11'
 pkgname=python-h11
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=h11-${version}
 build_style=python-module

From bdf55bd416f8bc2ed44be6c4c54d162c18a8ea97 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 222/874] python-habanero: rebuild for Python 3.8.

---
 srcpkgs/python-habanero/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-habanero/template b/srcpkgs/python-habanero/template
index 86d66befc3d..a914f21ecb7 100644
--- a/srcpkgs/python-habanero/template
+++ b/srcpkgs/python-habanero/template
@@ -1,7 +1,7 @@
 # Template file for 'python-habanero'
 pkgname=python-habanero
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="habanero-${version}"
 build_style=python-module

From 9c07301e6c8b8cbc8282f2c49eee7ea5572650fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 223/874] python3-hawkauthlib: rebuild for Python 3.8.

---
 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 fd7f1405790..1456fa7d814 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=2
+revision=3
 archs=noarch
 wrksrc="hawkauthlib-${version}"
 build_style=python3-module

From 66941ef99dc3f45dea432a38889d9aedcbc58e8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 224/874] python-hiredis: rebuild for Python 3.8.

---
 srcpkgs/python-hiredis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hiredis/template b/srcpkgs/python-hiredis/template
index 23694ae92d7..82a97d5eaf3 100644
--- a/srcpkgs/python-hiredis/template
+++ b/srcpkgs/python-hiredis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hiredis'
 pkgname=python-hiredis
 version=0.2.0
-revision=4
+revision=5
 wrksrc="hiredis-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 335237d6c8ffbf9d850fddc0047cb4ea28057efd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 225/874] python3-hkdf: rebuild for Python 3.8.

---
 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 fabc91ee974..0faaf05b5fe 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=1
+revision=2
 archs=noarch
 wrksrc="hkdf-${version}"
 build_style=python3-module

From fa28e1e2a5b4f298ee9762f0f595a5b1b16db0c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 226/874] python-hoedown: rebuild for Python 3.8.

---
 srcpkgs/python-hoedown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hoedown/template b/srcpkgs/python-hoedown/template
index a964fbbb709..4b82aba9afc 100644
--- a/srcpkgs/python-hoedown/template
+++ b/srcpkgs/python-hoedown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hoedown'
 pkgname=python-hoedown
 version=0.3.0
-revision=2
+revision=3
 wrksrc="hoedown-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 1b9ab7e23ce8f84563cdaac18cbe35d6b5b377eb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 227/874] python-hpack: rebuild for Python 3.8.

---
 srcpkgs/python-hpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hpack/template b/srcpkgs/python-hpack/template
index c69e91daa0e..ffbac313103 100644
--- a/srcpkgs/python-hpack/template
+++ b/srcpkgs/python-hpack/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hpack'
 pkgname=python-hpack
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hpack-${version}
 build_style=python-module

From b6095882129bc28d1a3eec0f996353011126ed10 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 228/874] python3-html2text: rebuild for Python 3.8.

---
 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 006f2a127ad..c74e236a053 100644
--- a/srcpkgs/python3-html2text/template
+++ b/srcpkgs/python3-html2text/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-html2text'
 pkgname=python3-html2text
 version=2019.9.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module

From 78741dc5f018f23c93acabc2cdd16c97d5e08012 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 229/874] python-html5-parser: rebuild for Python 3.8.

---
 srcpkgs/python-html5-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5-parser/template b/srcpkgs/python-html5-parser/template
index 130c5037e57..41bbd0ea157 100644
--- a/srcpkgs/python-html5-parser/template
+++ b/srcpkgs/python-html5-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5-parser'
 pkgname=python-html5-parser
 version=0.4.8
-revision=1
+revision=2
 wrksrc="html5-parser-${version}"
 build_style=python-module
 pycompile_module="html5_parser"

From f69efbb44a9aa15f6b7468ff70a20786ec1a04d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 230/874] python-html5lib: rebuild for Python 3.8.

---
 srcpkgs/python-html5lib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5lib/template b/srcpkgs/python-html5lib/template
index 81e683f7bcf..2565de64fd2 100644
--- a/srcpkgs/python-html5lib/template
+++ b/srcpkgs/python-html5lib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5lib'
 pkgname=python-html5lib
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="html5lib-${version}"
 build_style=python-module

From 6bd979521876c876eea2022ebe023cdbb30777c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 231/874] python-httmock: rebuild for Python 3.8.

---
 srcpkgs/python-httmock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httmock/template b/srcpkgs/python-httmock/template
index 61a60126936..e798b4fc1b3 100644
--- a/srcpkgs/python-httmock/template
+++ b/srcpkgs/python-httmock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httmock'
 pkgname=python-httmock
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="httmock-${version}"
 build_style=python-module

From 7f5b2e5c5738ca5824c255406195ff59f30f2c80 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 232/874] python-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httplib2/template b/srcpkgs/python-httplib2/template
index edcb6abf0c1..fe76a729328 100644
--- a/srcpkgs/python-httplib2/template
+++ b/srcpkgs/python-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httplib2'
 pkgname=python-httplib2
 version=0.13.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="httplib2-${version}"
 build_style=python-module

From 9bd4d3d3c99054f61ceb650933dcd9c5740d5ff0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 233/874] python3-humanize: rebuild for Python 3.8.

---
 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 c82c20fb0f2..d1011fb92e9 100644
--- a/srcpkgs/python3-humanize/template
+++ b/srcpkgs/python3-humanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-humanize'
 pkgname=python3-humanize
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="humanize-${version}"
 build_style=python3-module

From ead6f9504cd4015bc13944d58d676ef457b0fb34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 234/874] python-hyper-h2: rebuild for Python 3.8.

---
 srcpkgs/python-hyper-h2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyper-h2/template b/srcpkgs/python-hyper-h2/template
index 5dcf7ed1c4d..9e5eee3b69b 100644
--- a/srcpkgs/python-hyper-h2/template
+++ b/srcpkgs/python-hyper-h2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyper-h2'
 pkgname=python-hyper-h2
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyper-h2-${version}"
 build_style=python-module

From 8ac54f95c067c3f715c23a58d7f2b6d0683988cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 235/874] python-hyperframe: rebuild for Python 3.8.

---
 srcpkgs/python-hyperframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyperframe/template b/srcpkgs/python-hyperframe/template
index e4cea346f7e..6b544c2061c 100644
--- a/srcpkgs/python-hyperframe/template
+++ b/srcpkgs/python-hyperframe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperframe'
 pkgname=python-hyperframe
 version=5.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hyperframe-${version}
 build_style=python-module

From cb929edb0d026e58d2d6c7e6f9baeee9fedf523e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 236/874] python-hyperlink: rebuild for Python 3.8.

---
 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 1cc7aa0670a..945bf72ee59 100644
--- a/srcpkgs/python-hyperlink/template
+++ b/srcpkgs/python-hyperlink/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperlink'
 pkgname=python-hyperlink
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyperlink-${version}"
 build_style=python-module

From da7a9015ccf93b07d390988b03b1403702cfa14a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 237/874] python-hypothesis: rebuild for Python 3.8.

---
 srcpkgs/python-hypothesis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hypothesis/template b/srcpkgs/python-hypothesis/template
index f3eb931e410..de55593fc02 100644
--- a/srcpkgs/python-hypothesis/template
+++ b/srcpkgs/python-hypothesis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hypothesis'
 pkgname=python-hypothesis
 version=4.38.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="hypothesis-hypothesis-python-${version}"
 build_wrksrc=hypothesis-python

From f091030376534d6a6f7c625b82a8405350e7cdcd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 238/874] python-icalendar: rebuild for Python 3.8.

---
 srcpkgs/python-icalendar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-icalendar/template b/srcpkgs/python-icalendar/template
index b2129648ea6..be45f2d608d 100644
--- a/srcpkgs/python-icalendar/template
+++ b/srcpkgs/python-icalendar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-icalendar'
 pkgname=python-icalendar
 version=4.0.3
-revision=1
+revision=2
 wrksrc="icalendar-${version}"
 archs=noarch
 build_style=python-module

From 474626af886f96ef30849e5aca015775f7edfb8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 239/874] icdiff: rebuild for Python 3.8.

---
 srcpkgs/icdiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template
index 31cfc3e2354..396448b86f4 100644
--- a/srcpkgs/icdiff/template
+++ b/srcpkgs/icdiff/template
@@ -1,7 +1,7 @@
 # Template file for 'icdiff'
 pkgname=icdiff
 version=1.9.5
-revision=1
+revision=2
 wrksrc="${pkgname}-release-${version}"
 archs=noarch
 build_style=python-module

From 21e5ba4fadd590c9e0dd7afde206429c99c46c56 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 240/874] python-idna: rebuild for Python 3.8.

---
 srcpkgs/python-idna/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-idna/template b/srcpkgs/python-idna/template
index 4c6baefd41b..446a04da7d7 100644
--- a/srcpkgs/python-idna/template
+++ b/srcpkgs/python-idna/template
@@ -1,7 +1,7 @@
 # Template file for 'python-idna'
 pkgname=python-idna
 version=2.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-${version}"
 build_style=python-module

From a012eff0de75e8caab0be24964731b749fe6ad8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 241/874] python3-idna-ssl: rebuild for Python 3.8.

---
 srcpkgs/python3-idna-ssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-idna-ssl/template b/srcpkgs/python3-idna-ssl/template
index df953f4d0d9..0608fb7278c 100644
--- a/srcpkgs/python3-idna-ssl/template
+++ b/srcpkgs/python3-idna-ssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-idna-ssl'
 pkgname=python3-idna-ssl
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-ssl-${version}"
 build_style=python3-module

From ac112b7dfc3aadb93225736a4504f7965af29838 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 242/874] python3-ifaddr: rebuild for Python 3.8.

---
 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 37bc2bbaf73..683d76662a3 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ifaddr-${version}"
 build_style=python3-module

From 32d0218ef7a7a721759e4c421d70255f49b3cfd0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 243/874] python-imagesize: rebuild for Python 3.8.

---
 srcpkgs/python-imagesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-imagesize/template b/srcpkgs/python-imagesize/template
index ee231eb9f24..f64c86812b5 100644
--- a/srcpkgs/python-imagesize/template
+++ b/srcpkgs/python-imagesize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-imagesize'
 pkgname=python-imagesize
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="imagesize-${version}"
 build_style=python-module

From f0bf351c50949a7348409d8c132926c401dabf43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 244/874] python3-importlib_metadata: rebuild for Python 3.8.

---
 srcpkgs/python3-importlib_metadata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-importlib_metadata/template b/srcpkgs/python3-importlib_metadata/template
index 9acbe968e10..f88e9d9b780 100644
--- a/srcpkgs/python3-importlib_metadata/template
+++ b/srcpkgs/python3-importlib_metadata/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-importlib_metadata'
 pkgname=python3-importlib_metadata
 version=0.23
-revision=1
+revision=2
 archs=noarch
 wrksrc="importlib_metadata-${version}"
 build_style=python3-module

From 73cc1c05e8e0ccf9063a33dd203d70df2ab135ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 245/874] python-incremental: rebuild for Python 3.8.

---
 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 a1c07042365..70477e26866 100644
--- a/srcpkgs/python-incremental/template
+++ b/srcpkgs/python-incremental/template
@@ -1,7 +1,7 @@
 # Template file for 'python-incremental'
 pkgname=python-incremental
 version=17.5.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="incremental-${version}"
 build_style=python-module

From 82a10b837fff5c5ce2f37ede93dad161025a109c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 246/874] python-inotify: rebuild for Python 3.8.

---
 srcpkgs/python-inotify/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-inotify/template b/srcpkgs/python-inotify/template
index f8e26bcc415..64e48fd9330 100644
--- a/srcpkgs/python-inotify/template
+++ b/srcpkgs/python-inotify/template
@@ -1,7 +1,7 @@
 # Template file for 'python-inotify'
 pkgname=python-inotify
 version=0.9.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="pyinotify-${version}"
 build_style=python-module

From 70f558982c4846e9de5243694f048c7014c7089a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 247/874] python-iptools: rebuild for Python 3.8.

---
 srcpkgs/python-iptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iptools/template b/srcpkgs/python-iptools/template
index 599a85ccdba..3c53013fb9d 100644
--- a/srcpkgs/python-iptools/template
+++ b/srcpkgs/python-iptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iptools'
 pkgname=python-iptools
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9962727fd608ce59af5a55c73c8b4c3d0c17fe71 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 248/874] python3-ipython: rebuild for Python 3.8.

---
 srcpkgs/python3-ipython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template
index 63242f382db..2c08bad1e41 100644
--- a/srcpkgs/python3-ipython/template
+++ b/srcpkgs/python3-ipython/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-ipython'
 pkgname=python3-ipython
 version=7.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipython-${version}"
 build_style=python3-module

From ecafa2b5530001ac56b03e639dff4ae00027d1ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 249/874] python-ipython_genutils: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_genutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_genutils/template b/srcpkgs/python-ipython_genutils/template
index 9af9604ca00..d46a3b0b716 100644
--- a/srcpkgs/python-ipython_genutils/template
+++ b/srcpkgs/python-ipython_genutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_genutils'
 pkgname=python-ipython_genutils
 version=0.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="ipython_genutils-${version}"
 build_style=python-module

From 1349d0a55b00bc5b30629934ad23ae1ed8839d98 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 250/874] python-ipython_ipykernel: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_ipykernel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_ipykernel/template b/srcpkgs/python-ipython_ipykernel/template
index 5ddc333798a..ca17b58c006 100644
--- a/srcpkgs/python-ipython_ipykernel/template
+++ b/srcpkgs/python-ipython_ipykernel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_ipykernel'
 pkgname=python-ipython_ipykernel
 version=4.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipykernel-${version}"
 build_style=python-module

From 1b146320a422b57ba1db41491ccff040d9ee719d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 251/874] python3-irc: rebuild for Python 3.8.

---
 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 eea3a629128..714c11dc943 100644
--- a/srcpkgs/python3-irc/template
+++ b/srcpkgs/python3-irc/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-irc'
 pkgname=python3-irc
 version=17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="irc-${version}"
 build_style=python3-module

From e04c4f250fda964ab555eb6b636f701d995009e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 252/874] python-isbnlib: rebuild for Python 3.8.

---
 srcpkgs/python-isbnlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isbnlib/template b/srcpkgs/python-isbnlib/template
index 3e2f66c6b66..1cc46a060d6 100644
--- a/srcpkgs/python-isbnlib/template
+++ b/srcpkgs/python-isbnlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isbnlib'
 pkgname=python-isbnlib
 version=3.9.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="isbnlib-${version}"
 build_style=python-module

From 2debe6131c52d94acd065961f9ea9ae22176a34c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 253/874] python-iso-8601: rebuild for Python 3.8.

---
 srcpkgs/python-iso-8601/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iso-8601/template b/srcpkgs/python-iso-8601/template
index a483e55b0bd..a841866d439 100644
--- a/srcpkgs/python-iso-8601/template
+++ b/srcpkgs/python-iso-8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iso-8601'
 pkgname=python-iso-8601
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="iso-8601-${version}"
 build_style=python-module

From 8b4be7b5324ac1347d55cc4f4e9eaa552465beec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 254/874] python-isodate: rebuild for Python 3.8.

---
 srcpkgs/python-isodate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isodate/template b/srcpkgs/python-isodate/template
index b2a7eb46591..74e4e813e64 100644
--- a/srcpkgs/python-isodate/template
+++ b/srcpkgs/python-isodate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isodate'
 pkgname=python-isodate
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="isodate-${version}"
 build_style=python-module

From a9c9e144908d37411616dd357e9fdc7575aaa8c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 255/874] python-isort: rebuild for Python 3.8.

---
 srcpkgs/python-isort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isort/template b/srcpkgs/python-isort/template
index df7fcfbf2d2..cd8e43b69ea 100644
--- a/srcpkgs/python-isort/template
+++ b/srcpkgs/python-isort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isort'
 pkgname=python-isort
 version=4.3.21
-revision=1
+revision=2
 archs=noarch
 wrksrc="isort-${version}"
 build_style=python-module

From a81f38d5db390cc4ae2c6be89747bebd3f1f15dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 256/874] python-itsdangerous: rebuild for Python 3.8.

---
 srcpkgs/python-itsdangerous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-itsdangerous/template b/srcpkgs/python-itsdangerous/template
index d1d9234df88..6e6fe5dcb2b 100644
--- a/srcpkgs/python-itsdangerous/template
+++ b/srcpkgs/python-itsdangerous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-itsdangerous'
 pkgname=python-itsdangerous
 version=0.24
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 2d842da30a2a65a2405487fdd5929ca2a0555251 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 257/874] python-iwlib: rebuild for Python 3.8.

---
 srcpkgs/python-iwlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iwlib/template b/srcpkgs/python-iwlib/template
index 2c58d4c8d29..2f4149b4e92 100644
--- a/srcpkgs/python-iwlib/template
+++ b/srcpkgs/python-iwlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iwlib'
 pkgname=python-iwlib
 version=1.6.2
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="iwlib"

From c09cc84b06cf4332a02b0a826494a74c81409175 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 258/874] python-jedi: rebuild for Python 3.8.

---
 srcpkgs/python-jedi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jedi/template b/srcpkgs/python-jedi/template
index 136e6adbea4..a994f0e2861 100644
--- a/srcpkgs/python-jedi/template
+++ b/srcpkgs/python-jedi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jedi'
 pkgname=python-jedi
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 _parsover=0.5.0
 wrksrc="jedi-${version}"

From 235b9031c126ebf53355a5ef0c337423c0df1d95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 259/874] python3-jeepney: rebuild for Python 3.8.

---
 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 2ae308a6fc6..9c5c007aa17 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.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="jeepney-${version}"
 build_style=python3-module

From 4868c0871bc763937dd6b8573e91ee86064e0595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 260/874] python3-jellyfish: rebuild for Python 3.8.

---
 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 dec74539e3f..5d0a614c397 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.7.2
-revision=1
+revision=2
 wrksrc="jellyfish-${version}"
 build_style=python3-module
 pycompile_module="jellyfish"

From a9c225f19782a27d8e5e28a508ea0acc39991390 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 261/874] python-jmespath: rebuild for Python 3.8.

---
 srcpkgs/python-jmespath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jmespath/template b/srcpkgs/python-jmespath/template
index 47508a3a0c2..220f1a33c07 100644
--- a/srcpkgs/python-jmespath/template
+++ b/srcpkgs/python-jmespath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jmespath'
 pkgname=python-jmespath
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jmespath.py-${version}"
 build_style=python-module

From 30e8e2e1619bdf45652db8c6ecdd0e0a4fc90d8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 262/874] python3-josepy: rebuild for Python 3.8.

---
 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 6d6e4547d38..903bd7028ed 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="josepy-${version}"
 build_style=python3-module

From c06d36cf857257f3cf63a7e677498487d37168d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 263/874] python-jsonpointer: rebuild for Python 3.8.

---
 srcpkgs/python-jsonpointer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonpointer/template b/srcpkgs/python-jsonpointer/template
index ed865fbfcba..fd103d123aa 100644
--- a/srcpkgs/python-jsonpointer/template
+++ b/srcpkgs/python-jsonpointer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonpointer'
 pkgname=python-jsonpointer
 version=2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonpointer-${version}"
 build_style=python-module

From be483d0bbf53a22e23a3c2db3d77dc61bff17915 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 264/874] python-jsonrpclib: rebuild for Python 3.8.

---
 srcpkgs/python-jsonrpclib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonrpclib/template b/srcpkgs/python-jsonrpclib/template
index 7253607fe57..a245168a824 100644
--- a/srcpkgs/python-jsonrpclib/template
+++ b/srcpkgs/python-jsonrpclib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonrpclib'
 pkgname=python-jsonrpclib
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonrpclib-pelix-${version}"
 build_style=python-module

From 15ad75adf989474229acc1fdac0c5d5887528bd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 265/874] python-jsonschema: rebuild for Python 3.8.

---
 srcpkgs/python-jsonschema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonschema/template b/srcpkgs/python-jsonschema/template
index 63c30ce6863..326b5609d36 100644
--- a/srcpkgs/python-jsonschema/template
+++ b/srcpkgs/python-jsonschema/template
@@ -2,7 +2,7 @@
 pkgname=python-jsonschema
 reverts="3.0.2_1"
 version=2.6.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="jsonschema-${version}"
 build_style=python-module

From 8bf3797435c040a1682d5e3e4c6c41f650d82b34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 266/874] python-jupyter_client: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_client/template b/srcpkgs/python-jupyter_client/template
index ab5cd0c5b3c..6365dd9e175 100644
--- a/srcpkgs/python-jupyter_client/template
+++ b/srcpkgs/python-jupyter_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_client'
 pkgname=python-jupyter_client
 version=5.2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_client-${version}"
 build_style=python-module

From e732ed651c399cb8d7e96a618444e815bf86ce4b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 267/874] python3-jupyter_console: rebuild for Python 3.8.

---
 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 25b2eda4c2f..3837e5b3bbf 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_console-${version}"
 build_style=python3-module

From b264bc5200c6942b1507777e0bc169838cb6a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 268/874] python-jupyter_core: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_core/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_core/template b/srcpkgs/python-jupyter_core/template
index fcce4e0fe0b..f1629208e86 100644
--- a/srcpkgs/python-jupyter_core/template
+++ b/srcpkgs/python-jupyter_core/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_core'
 pkgname=python-jupyter_core
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_core-${version}"
 build_style=python-module

From 54845c515258535f8793ff37241d0daad10fcddc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 269/874] python-jupyter_ipywidgets: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_ipywidgets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_ipywidgets/template b/srcpkgs/python-jupyter_ipywidgets/template
index 3d511a25152..44570cf390a 100644
--- a/srcpkgs/python-jupyter_ipywidgets/template
+++ b/srcpkgs/python-jupyter_ipywidgets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_ipywidgets'
 pkgname=python-jupyter_ipywidgets
 version=7.4.2
-revision=1
+revision=2
 archs=noarch
 _widgetsnbextver=3.4.0
 wrksrc="ipywidgets-${version}"

From da9dc8f246174d7b5fed1a61f1b4bb127c2bc9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 270/874] python-jupyter_nbconvert: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbconvert/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbconvert/template b/srcpkgs/python-jupyter_nbconvert/template
index 57ac5cce23f..e6cdad7d21c 100644
--- a/srcpkgs/python-jupyter_nbconvert/template
+++ b/srcpkgs/python-jupyter_nbconvert/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbconvert'
 pkgname=python-jupyter_nbconvert
 version=5.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="nbconvert-${version}"
 build_style=python-module

From 8e126f65404eaa5a5b69bca1aa41b4be58abe4b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 271/874] python-jupyter_nbformat: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbformat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbformat/template b/srcpkgs/python-jupyter_nbformat/template
index 11098fd3f90..e2addc8866f 100644
--- a/srcpkgs/python-jupyter_nbformat/template
+++ b/srcpkgs/python-jupyter_nbformat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbformat'
 pkgname=python-jupyter_nbformat
 version=4.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="nbformat-${version}"
 build_style=python-module

From 3d7a11f09a2f159b9e42c935154654a47117f3a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 272/874] python-jupyter_notebook: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_notebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_notebook/template b/srcpkgs/python-jupyter_notebook/template
index c3f478c1fb4..4f6de0f642d 100644
--- a/srcpkgs/python-jupyter_notebook/template
+++ b/srcpkgs/python-jupyter_notebook/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_notebook'
 pkgname=python-jupyter_notebook
 version=5.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="notebook-${version}"
 build_style=python-module

From eab8a5bd67b168048f40a3d2fe199e073715a1b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 273/874] python-jupyter_qtconsole: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_qtconsole/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_qtconsole/template b/srcpkgs/python-jupyter_qtconsole/template
index f8f85534bbd..ea7f89a62af 100644
--- a/srcpkgs/python-jupyter_qtconsole/template
+++ b/srcpkgs/python-jupyter_qtconsole/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_qtconsole'
 pkgname=python-jupyter_qtconsole
 version=4.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="qtconsole-${version}"
 build_style=python-module

From 96c7c1f6f484f9a33a17b0213142b8a97a7c69e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 274/874] python-jupyter_widgetsnbextension: rebuild for Python
 3.8.

---
 srcpkgs/python-jupyter_widgetsnbextension/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_widgetsnbextension/template b/srcpkgs/python-jupyter_widgetsnbextension/template
index dacd88ccb4f..05e9c0d00a3 100644
--- a/srcpkgs/python-jupyter_widgetsnbextension/template
+++ b/srcpkgs/python-jupyter_widgetsnbextension/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_widgetsnbextension'
 pkgname=python-jupyter_widgetsnbextension
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="widgetsnbextension-${version}"
 build_style=python-module

From 6175c117f039e76b8fff45d549f50360a92742b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 275/874] python-kaptan: rebuild for Python 3.8.

---
 srcpkgs/python-kaptan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kaptan/template b/srcpkgs/python-kaptan/template
index 649eeec8568..6668b240008 100644
--- a/srcpkgs/python-kaptan/template
+++ b/srcpkgs/python-kaptan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kaptan'
 pkgname=python-kaptan
 version=0.5.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="kaptan-${version}"
 build_style=python-module

From 6668dcf37c32ef8390c8f45e6cd206d8478b963b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 276/874] python-keepalive: rebuild for Python 3.8.

---
 srcpkgs/python-keepalive/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keepalive/template b/srcpkgs/python-keepalive/template
index deb95a07236..50e1d7e6e78 100644
--- a/srcpkgs/python-keepalive/template
+++ b/srcpkgs/python-keepalive/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keepalive'
 pkgname=python-keepalive
 version=0.5
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9e9d4a781427bc1296f59529a4d83b4a1271c5e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 277/874] python-keyring: rebuild for Python 3.8.

---
 srcpkgs/python-keyring/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyring/template b/srcpkgs/python-keyring/template
index df1c21ee1be..2a87160b04d 100644
--- a/srcpkgs/python-keyring/template
+++ b/srcpkgs/python-keyring/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyring'
 pkgname=python-keyring
 version=18.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyring-${version}"
 build_style=python-module

From 8fea0f10f3e8aebfe92a9d090368b1cda777a405 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 278/874] python3-keyrings-alt: rebuild for Python 3.8.

---
 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 d5820535e54..ed09cfac4a7 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=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyrings.alt-${version}"
 build_style=python3-module

From 271539dc3ed1e21733c374ff971770403194a1d1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 279/874] python-keyutils: rebuild for Python 3.8.

---
 srcpkgs/python-keyutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyutils/template b/srcpkgs/python-keyutils/template
index d56ada0e30e..a72819e963a 100644
--- a/srcpkgs/python-keyutils/template
+++ b/srcpkgs/python-keyutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyutils'
 pkgname=python-keyutils
 version=0.6
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="keyutils"
 hostmakedepends="python-setuptools python3-setuptools"

From 0556a11defcdebd2c4319e286451ce3f45f87ebd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 280/874] python-kitchen: rebuild for Python 3.8.

---
 srcpkgs/python-kitchen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kitchen/template b/srcpkgs/python-kitchen/template
index 2bbd68c13c9..68a46986de9 100644
--- a/srcpkgs/python-kitchen/template
+++ b/srcpkgs/python-kitchen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kitchen'
 pkgname=python-kitchen
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="kitchen-${version}"
 build_style=python-module

From fe5070b00515733fcafbeebc62a10ba2029b40db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 281/874] python-kiwisolver: rebuild for Python 3.8.

---
 srcpkgs/python-kiwisolver/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kiwisolver/template b/srcpkgs/python-kiwisolver/template
index 072bd5af038..67f0805aa51 100644
--- a/srcpkgs/python-kiwisolver/template
+++ b/srcpkgs/python-kiwisolver/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kiwisolver'
 pkgname=python-kiwisolver
 version=1.0.1
-revision=2
+revision=3
 wrksrc="kiwisolver-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From d1c550f6959162ec91e7bb39c54ecdd1d5b7c0ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 282/874] python-lazy-object-proxy: rebuild for Python 3.8.

---
 srcpkgs/python-lazy-object-proxy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lazy-object-proxy/template b/srcpkgs/python-lazy-object-proxy/template
index 07efb7b4777..ab2c6dce05c 100644
--- a/srcpkgs/python-lazy-object-proxy/template
+++ b/srcpkgs/python-lazy-object-proxy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lazy-object-proxy'
 pkgname=python-lazy-object-proxy
 version=1.3.1
-revision=3
+revision=4
 wrksrc="lazy-object-proxy-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e5c9a0cf8e6e0714fba4433b9deb1aaf40d43ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 283/874] python-ldap: rebuild for Python 3.8.

---
 srcpkgs/python-ldap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap/template b/srcpkgs/python-ldap/template
index 7770baa8774..e3efc2fc6b3 100644
--- a/srcpkgs/python-ldap/template
+++ b/srcpkgs/python-ldap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap'
 pkgname=python-ldap
 version=3.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="ldap ldapurl.py ldif.py slapdtest"
 hostmakedepends="python-setuptools python3-setuptools"

From dca16bc247cccf1bc7020afca5594d857514100a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 284/874] python-ldap3: rebuild for Python 3.8.

---
 srcpkgs/python-ldap3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap3/template b/srcpkgs/python-ldap3/template
index 676251a85ff..e8e4cade72b 100644
--- a/srcpkgs/python-ldap3/template
+++ b/srcpkgs/python-ldap3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap3'
 pkgname=python-ldap3
 version=2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ldap3-${version}"
 build_style=python-module

From 8f3e1b0bf64fb527d029fec15229e079f326c373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 285/874] python3-libevdev: rebuild for Python 3.8.

---
 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 0a79893726c..f0295cdee9b 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.8
-revision=1
+revision=2
 _githash=1827bebcf789adee8492cbfcc7cf8d56059a42a4
 wrksrc="python-libevdev-${version}-${_githash}"
 build_style=python3-module

From a5b674c4366c36182e29f21b8071faff59006106 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 286/874] libsmbios: rebuild for Python 3.8.

---
 srcpkgs/libsmbios/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsmbios/template b/srcpkgs/libsmbios/template
index 31d8ffda65f..161cb79deb9 100644
--- a/srcpkgs/libsmbios/template
+++ b/srcpkgs/libsmbios/template
@@ -1,7 +1,7 @@
 # Template file for 'libsmbios'
 pkgname=libsmbios
 version=2.4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--sbindir=/usr/bin --disable-static"
 hostmakedepends="automake doxygen gettext-devel help2man libtool pkg-config"

From 7762c8392d1a03ae7a320bdec0b5402b7147d0b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 287/874] python-libtmux: rebuild for Python 3.8.

---
 srcpkgs/python-libtmux/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-libtmux/template b/srcpkgs/python-libtmux/template
index 36fa7ca7ffd..20f43af5f7d 100644
--- a/srcpkgs/python-libtmux/template
+++ b/srcpkgs/python-libtmux/template
@@ -1,7 +1,7 @@
 # Template file for 'python-libtmux'
 pkgname=python-libtmux
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="libtmux-${version}"
 build_style=python-module

From 16a2a1b8ba0ad9f9032d52092294e8a39041bba2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 288/874] python-llfuse: rebuild for Python 3.8.

---
 srcpkgs/python-llfuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-llfuse/template b/srcpkgs/python-llfuse/template
index 203c5e2fd84..b453c67e91d 100644
--- a/srcpkgs/python-llfuse/template
+++ b/srcpkgs/python-llfuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-llfuse'
 pkgname=python-llfuse
 version=1.3.6
-revision=1
+revision=2
 wrksrc="llfuse-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pkg-config"

From ae7f34ffc994fc4606c9209683fae6625f3e781e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 289/874] python-lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lockfile/template b/srcpkgs/python-lockfile/template
index 4c4612ed144..778cecba7e9 100644
--- a/srcpkgs/python-lockfile/template
+++ b/srcpkgs/python-lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lockfile'
 pkgname=python-lockfile
 version=0.12.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="lockfile-${version}"
 build_style=python-module

From 5fd2f78e26b399ed936b12f51886dae3a8d35cb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 290/874] python-logfury: rebuild for Python 3.8.

---
 srcpkgs/python-logfury/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-logfury/template b/srcpkgs/python-logfury/template
index 4b1c435e34a..1b52d2d7fdf 100644
--- a/srcpkgs/python-logfury/template
+++ b/srcpkgs/python-logfury/template
@@ -1,7 +1,7 @@
 # Template file for 'python-logfury'
 pkgname=python-logfury
 version=0.1.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="logfury-${version}"
 build_style=python-module

From 747dc28bedc27e7b5c8738113573012f545333a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 291/874] python-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lxml/template b/srcpkgs/python-lxml/template
index c3aeabfbf1b..1a6a3ac9113 100644
--- a/srcpkgs/python-lxml/template
+++ b/srcpkgs/python-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lxml'
 pkgname=python-lxml
 version=4.4.1
-revision=1
+revision=2
 wrksrc="lxml-lxml-${version}"
 build_style=python-module
 pycompile_module="lxml"

From ebc274c0463316f63fe99e5df0c704e3d324c885 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 292/874] python-lz4: rebuild for Python 3.8.

---
 srcpkgs/python-lz4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lz4/template b/srcpkgs/python-lz4/template
index dab8e8ed542..76a2e800e38 100644
--- a/srcpkgs/python-lz4/template
+++ b/srcpkgs/python-lz4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lz4'
 pkgname=python-lz4
 version=2.1.6
-revision=2
+revision=3
 wrksrc="lz4-${version}"
 build_style=python-module
 pycompile_module="lz4"

From 8eb3f4d6193b25ae716fa2fdfae1f929deb65a91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 293/874] python3-macaroons: rebuild for Python 3.8.

---
 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 d44100c20f2..420f5aff043 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=1
+revision=2
 archs=noarch
 wrksrc="pymacaroons-${version}"
 build_style=python3-module

From 437e300b76670db404728daad9f6224630daaa3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 294/874] python3-macholib: rebuild for Python 3.8.

---
 srcpkgs/python3-macholib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-macholib/template b/srcpkgs/python3-macholib/template
index a2738f57eb0..525b5f7106b 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.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="macholib-${version}"
 build_style=python3-module

From b08f229d26f5b2c915caabe213234afc1e4002e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 295/874] python-magic: rebuild for Python 3.8.

---
 srcpkgs/python-magic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-magic/template b/srcpkgs/python-magic/template
index 98e3c0802ab..5a59efa4808 100644
--- a/srcpkgs/python-magic/template
+++ b/srcpkgs/python-magic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-magic'
 pkgname=python-magic
 version=0.4.15
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="magic.py"

From c597fee1945d8f994f591622074acf3670a81484 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 296/874] python-marisa-trie: rebuild for Python 3.8.

---
 srcpkgs/python-marisa-trie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-marisa-trie/template b/srcpkgs/python-marisa-trie/template
index bb09c933335..5e46b686ace 100644
--- a/srcpkgs/python-marisa-trie/template
+++ b/srcpkgs/python-marisa-trie/template
@@ -1,7 +1,7 @@
 # Template file for 'python-marisa-trie'
 pkgname=python-marisa-trie
 version=0.7.5
-revision=2
+revision=3
 wrksrc="marisa-trie-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 5366314fc7ba3b340ccf5b4658edff33f5ec148a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 297/874] python-markdown2: rebuild for Python 3.8.

---
 srcpkgs/python-markdown2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-markdown2/template b/srcpkgs/python-markdown2/template
index 2d352ba029d..e9068f64202 100644
--- a/srcpkgs/python-markdown2/template
+++ b/srcpkgs/python-markdown2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-markdown2'
 pkgname=python-markdown2
 version=2.3.8
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="markdown2"

From b56d284bcbb50ddece287bde845145e6481e4d39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 298/874] python3-matplotlib: rebuild for Python 3.8.

---
 srcpkgs/python3-matplotlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template
index 857ba17cacf..be02817a4d3 100644
--- a/srcpkgs/python3-matplotlib/template
+++ b/srcpkgs/python3-matplotlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-matplotlib'
 pkgname=python3-matplotlib
 version=3.1.1
-revision=1
+revision=2
 wrksrc="matplotlib-${version}"
 build_style=python3-module
 pycompile_module="matplotlib mpl_toolkits pylab.py"

From 8b3780e8f6f50712735239defc569952763e8894 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 299/874] python-mccabe: rebuild for Python 3.8.

---
 srcpkgs/python-mccabe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mccabe/template b/srcpkgs/python-mccabe/template
index b6a01929540..1e2ed6328b8 100644
--- a/srcpkgs/python-mccabe/template
+++ b/srcpkgs/python-mccabe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mccabe'
 pkgname=python-mccabe
 version=0.6.1
-revision=2
+revision=3
 archs=noarch
 replaces="mccabe>=0"
 wrksrc="mccabe-${version}"

From 954d38992e9a83e3214b79375b895ee1072db4e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 300/874] python-mechanize: rebuild for Python 3.8.

---
 srcpkgs/python-mechanize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mechanize/template b/srcpkgs/python-mechanize/template
index c5b2b5789a7..ca29bbd0d23 100644
--- a/srcpkgs/python-mechanize/template
+++ b/srcpkgs/python-mechanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mechanize'
 pkgname=python-mechanize
 version=0.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="mechanize-${version}"
 build_style=python-module

From e8762f4af80ad5b1cb6a41af3183141ec903485f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 301/874] python3-minidb: rebuild for Python 3.8.

---
 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 50490794600..140964b7a8a 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.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="minidb-${version}"
 build_style=python3-module

From 93febdb59f89cf4939f3684acd832f879fc774d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 302/874] python-miniupnpc: rebuild for Python 3.8.

---
 srcpkgs/python-miniupnpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-miniupnpc/template b/srcpkgs/python-miniupnpc/template
index 500c217c78e..f7892bab073 100644
--- a/srcpkgs/python-miniupnpc/template
+++ b/srcpkgs/python-miniupnpc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-miniupnpc'
 pkgname=python-miniupnpc
 version=2.0.2
-revision=2
+revision=3
 wrksrc="${pkgname#python-}-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ab280bf26207a66e5e3f418768bf3358cc2c76ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 303/874] python-mistune: rebuild for Python 3.8.

---
 srcpkgs/python-mistune/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mistune/template b/srcpkgs/python-mistune/template
index 0ee8dfde5b1..ef5c054ba75 100644
--- a/srcpkgs/python-mistune/template
+++ b/srcpkgs/python-mistune/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mistune'
 pkgname=python-mistune
 version=0.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="mistune-${version}"
 build_style=python-module

From 05abf67487f6ac161862195dfb2069fade248fbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 304/874] python3-more-itertools: rebuild for Python 3.8.

---
 srcpkgs/python3-more-itertools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-more-itertools/template b/srcpkgs/python3-more-itertools/template
index b089992f84e..a765da98495 100644
--- a/srcpkgs/python3-more-itertools/template
+++ b/srcpkgs/python3-more-itertools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-more-itertools'
 pkgname=python3-more-itertools
 version=7.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python3-module

From efcbd7f439e04ca5dc43be057047c93f1051b5cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 305/874] python-mpd2: rebuild for Python 3.8.

---
 srcpkgs/python-mpd2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template
index 682d9a85f5e..0389f8c2a28 100644
--- a/srcpkgs/python-mpd2/template
+++ b/srcpkgs/python-mpd2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpd2'
 pkgname=python-mpd2
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mpd"

From 507a89e7a29ba5dd81f66830577542bb3a098780 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 306/874] python3-mpi4py: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-mpi4py/template | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/python3-mpi4py/template b/srcpkgs/python3-mpi4py/template
index 94a83b688f2..8f9e76867cc 100644
--- a/srcpkgs/python3-mpi4py/template
+++ b/srcpkgs/python3-mpi4py/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpi4py'
 pkgname=python3-mpi4py
 version=3.0.2
-revision=1
+revision=2
 wrksrc="mpi4py-${version}"
 build_style=python3-module
 pycompile_module="mpi4py"
@@ -15,6 +15,12 @@ homepage="https://bitbucket.org/mpi4py/mpi4py"
 distfiles="$PYPI_SITE/m/mpi4py/mpi4py-${version}.tar.gz"
 checksum=f8d629d1e3e3b7b89cb99d0e3bc5505e76cc42089829807950d5c56606ed48e0
 
+post_extract() {
+	# recythonize
+	rm src/mpi4py/include/mpi4py/mpi4py.MPI.h \
+		src/mpi4py/include/mpi4py/mpi4py.MPI_api.h \
+		src/mpi4py.MPI.c
+}
 post_install() {
 	vlicense LICENSE.rst
 }

From d71d04b6dbfad4ce9460041fe001aab7c4cab301 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 307/874] python-mpmath: rebuild for Python 3.8.

---
 srcpkgs/python-mpmath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpmath/template b/srcpkgs/python-mpmath/template
index b0a38c01514..8fd4873dd62 100644
--- a/srcpkgs/python-mpmath/template
+++ b/srcpkgs/python-mpmath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpmath'
 pkgname=python-mpmath
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="mpmath-${version}"
 build_style=python-module

From f050643cc3d8a1927b2b43a4d6bc3a47fce265d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 308/874] python3-mpv: rebuild for Python 3.8.

---
 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 2780c02610b..1910a4d231d 100644
--- a/srcpkgs/python3-mpv/template
+++ b/srcpkgs/python3-mpv/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpv'
 pkgname=python3-mpv
 version=0.3.9
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-mpv-${version}"
 build_style=python3-module

From 076ab982ba68fae19b6a637c3190d501b6f11afb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 309/874] python-msgpack: rebuild for Python 3.8.

---
 srcpkgs/python-msgpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-msgpack/template b/srcpkgs/python-msgpack/template
index 395d854d638..59571d6a208 100644
--- a/srcpkgs/python-msgpack/template
+++ b/srcpkgs/python-msgpack/template
@@ -2,7 +2,7 @@
 pkgname=python-msgpack
 reverts="0.6.0_1"
 version=0.5.6
-revision=3
+revision=4
 wrksrc="msgpack-${version}"
 build_style=python-module
 pycompile_module="msgpack"

From c0b498d4aabae1c0cc1564a796b43c28045b08f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 310/874] python3-msoffcrypto-tool: rebuild for Python 3.8.

---
 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 5996d3bf355..d1b369fc773 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=4.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="msoffcrypto-tool-${version}"
 build_style=python3-module

From a02ae9dc7e657d6823c09d222a46aaaad0b52e6e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 311/874] python-mtranslate: rebuild for Python 3.8.

---
 srcpkgs/python-mtranslate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mtranslate/template b/srcpkgs/python-mtranslate/template
index d56fa18f0f0..992c7b76fe9 100644
--- a/srcpkgs/python-mtranslate/template
+++ b/srcpkgs/python-mtranslate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mtranslate'
 pkgname=python-mtranslate
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="mtranslate-${version}"
 build_style=python-module

From 1db5126bddf0129431159c083c0e8c7feeda0e24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 312/874] python3-multidict: rebuild for Python 3.8.

---
 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 82888db842f..62054db71f1 100644
--- a/srcpkgs/python3-multidict/template
+++ b/srcpkgs/python3-multidict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-multidict'
 pkgname=python3-multidict
 version=4.5.2
-revision=2
+revision=3
 wrksrc="multidict-${version}"
 build_style=python3-module
 pycompile_module="multidict"

From db397601599182d62444486443fe7887f1bf0869 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 313/874] python3-munkres: rebuild for Python 3.8.

---
 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 15767afe3fe..d0d0a013e80 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python3-module

From f6bec8102ac4a1433f716928258d680f0546e9f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 314/874] python-musicbrainzngs: rebuild for Python 3.8.

---
 srcpkgs/python-musicbrainzngs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-musicbrainzngs/template b/srcpkgs/python-musicbrainzngs/template
index 588c25f7cd8..3d738f0c3c0 100644
--- a/srcpkgs/python-musicbrainzngs/template
+++ b/srcpkgs/python-musicbrainzngs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-musicbrainzngs'
 pkgname=python-musicbrainzngs
 version=0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="musicbrainzngs-${version}"
 build_style="python-module"

From 59d602d19ea627b5ddd3ac33170326df511f1b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 315/874] python3-musicpd: rebuild for Python 3.8.

---
 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 3328b2f4bbf..8c6ba2fb451 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=1
+revision=2
 archs=noarch
 wrksrc="python-musicpd-${version}"
 build_style=python3-module

From e4271deae6b4b0258165475e34a0174f837576d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 316/874] mutagen: rebuild for Python 3.8.

---
 srcpkgs/mutagen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mutagen/template b/srcpkgs/mutagen/template
index cbf05ea8583..8b24cc82dc8 100644
--- a/srcpkgs/mutagen/template
+++ b/srcpkgs/mutagen/template
@@ -1,7 +1,7 @@
 # Template file for 'mutagen'
 pkgname=mutagen
 version=1.42.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mutagen"

From c726c7e86676ccc5612045570a6821438d6541cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 317/874] python-mygpoclient: rebuild for Python 3.8.

---
 srcpkgs/python-mygpoclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mygpoclient/template b/srcpkgs/python-mygpoclient/template
index 3f85c72cc0c..ffad63a70a1 100644
--- a/srcpkgs/python-mygpoclient/template
+++ b/srcpkgs/python-mygpoclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mygpoclient'
 pkgname=python-mygpoclient
 version=1.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="mygpoclient-${version}"
 build_style=python-module

From 1d17c7a2672083ac8c194b767f1be1d8778d6f42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 318/874] python3-mypy: rebuild for Python 3.8.

---
 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 37ecd732c06..564c0a4d47c 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.730
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy-${version}"
 build_style=python3-module

From d44ba12caf9958f6f6d708b0e5061d3ca01990e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 319/874] python3-mypy_extensions: rebuild for Python 3.8.

---
 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 2761924248e..25de48ea141 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy_extensions-${version}"
 build_style=python3-module

From 8c03f1eb83b224187a7b0fb11b5c780c96875438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 320/874] python-mysqlclient: rebuild for Python 3.8.

---
 srcpkgs/python-mysqlclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mysqlclient/template b/srcpkgs/python-mysqlclient/template
index 43fed28d4f0..079666a6dab 100644
--- a/srcpkgs/python-mysqlclient/template
+++ b/srcpkgs/python-mysqlclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mysqlclient'
 pkgname=python-mysqlclient
 version=1.3.14
-revision=2
+revision=3
 wrksrc="mysqlclient-${version}"
 build_style=python-module
 pycompile_module="MySQLdb _mysql_exceptions.py"

From 8b80cedc0b4331f2c1827c959c67be32d904a6b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 321/874] python3-nacl: rebuild for Python 3.8.

---
 srcpkgs/python3-nacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-nacl/template b/srcpkgs/python3-nacl/template
index 5dd6a71ad6a..b59ea0196ac 100644
--- a/srcpkgs/python3-nacl/template
+++ b/srcpkgs/python3-nacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-nacl'
 pkgname=python3-nacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python3-module
 pycompile_module="nacl"

From 4b93d8f922559d3f9f9693969307cdb0dedd22c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 322/874] python-namedlist: rebuild for Python 3.8.

---
 srcpkgs/python-namedlist/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-namedlist/template b/srcpkgs/python-namedlist/template
index 4c6e6f1f3d5..75626b9f6d5 100644
--- a/srcpkgs/python-namedlist/template
+++ b/srcpkgs/python-namedlist/template
@@ -1,7 +1,7 @@
 # Template file for 'python-namedlist'
 pkgname=python-namedlist
 version=1.7
-revision=5
+revision=6
 archs=noarch
 wrksrc="namedlist-${version}"
 build_style=python-module

From 643225c4205051b03e6b58dd88dd0fe79a960880 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 323/874] python-natsort: rebuild for Python 3.8.

---
 srcpkgs/python-natsort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-natsort/template b/srcpkgs/python-natsort/template
index 754ac50c419..7101e297aad 100644
--- a/srcpkgs/python-natsort/template
+++ b/srcpkgs/python-natsort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-natsort'
 pkgname=python-natsort
 version=6.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="natsort-${version}"
 build_style=python-module

From 1b4401089b676f8d76d5cbdf86f7cff95a90063f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 324/874] python-nbxmpp: rebuild for Python 3.8.

---
 srcpkgs/python-nbxmpp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nbxmpp/template b/srcpkgs/python-nbxmpp/template
index 4952ee1e102..8c39a93bca7 100644
--- a/srcpkgs/python-nbxmpp/template
+++ b/srcpkgs/python-nbxmpp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nbxmpp'
 pkgname=python-nbxmpp
 version=0.6.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 1ee192bdc19afbca9bbbc456945aaed8e882dc3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 325/874] python-ndg_httpsclient: rebuild for Python 3.8.

---
 srcpkgs/python-ndg_httpsclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ndg_httpsclient/template b/srcpkgs/python-ndg_httpsclient/template
index 908d7137391..54b653f68a9 100644
--- a/srcpkgs/python-ndg_httpsclient/template
+++ b/srcpkgs/python-ndg_httpsclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ndg_httpsclient'
 pkgname=python-ndg_httpsclient
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ndg_httpsclient-${version}"
 build_style=python-module

From 37b5c7920c617c4f55d5abe58df690c621598a93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 326/874] python3-neovim: rebuild for Python 3.8.

---
 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 44068f17b66..2730cd1b92b 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.3.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="pynvim-${version}"
 build_style="python3-module"

From 8136ec791e98badf101712f4f44830a6721d4849 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 327/874] python-netaddr: rebuild for Python 3.8.

---
 srcpkgs/python-netaddr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netaddr/template b/srcpkgs/python-netaddr/template
index 851095a3c7c..20cc1c93134 100644
--- a/srcpkgs/python-netaddr/template
+++ b/srcpkgs/python-netaddr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netaddr'
 pkgname=python-netaddr
 version=0.7.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="netaddr-${version}"
 build_style=python-module

From ebe247f557b410a62febae438785f8f011964023 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 328/874] python-netifaces: rebuild for Python 3.8.

---
 srcpkgs/python-netifaces/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netifaces/template b/srcpkgs/python-netifaces/template
index b8d6e505879..760f657aaba 100644
--- a/srcpkgs/python-netifaces/template
+++ b/srcpkgs/python-netifaces/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netifaces'
 pkgname=python-netifaces
 version=0.10.9
-revision=1
+revision=2
 wrksrc="netifaces-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 07d0e05094764c4ef127de2a4d489537d8ab5708 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 329/874] python3-networkx: rebuild for Python 3.8.

---
 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 eae29038d94..84acd3e929c 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.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="networkx-${version}"
 build_style=python3-module

From 8a3aeb59a75fbf1b7f0394b94c325ef8827b6b5d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 330/874] python-nose: rebuild for Python 3.8.

---
 srcpkgs/python-nose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose/template b/srcpkgs/python-nose/template
index c9fbe9d28d3..f2cd7fe5c3f 100644
--- a/srcpkgs/python-nose/template
+++ b/srcpkgs/python-nose/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose'
 pkgname=python-nose
 version=1.3.7
-revision=3
+revision=4
 archs=noarch
 wrksrc="nose-${version}"
 build_style=python-module

From f86abdbaaaa9e7e8236c4d39cd7e46a733425805 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 331/874] python-nose2: rebuild for Python 3.8.

---
 srcpkgs/python-nose2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose2/template b/srcpkgs/python-nose2/template
index a9ddf5969a1..058abbd4253 100644
--- a/srcpkgs/python-nose2/template
+++ b/srcpkgs/python-nose2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose2'
 pkgname=python-nose2
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 18b92c10ef3291636c1e7e28d721c5e994bf6302 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 332/874] python-npyscreen: rebuild for Python 3.8.

---
 srcpkgs/python-npyscreen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-npyscreen/template b/srcpkgs/python-npyscreen/template
index 0457fa1aaed..2223850f22e 100644
--- a/srcpkgs/python-npyscreen/template
+++ b/srcpkgs/python-npyscreen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-npyscreen'
 pkgname=python-npyscreen
 version=4.10.5.1
-revision=1
+revision=2
 wrksrc="npyscreen-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 9ea98fac2c37960db9a7b76cea2be115e8a2bed7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 333/874] python-ntplib: rebuild for Python 3.8.

---
 srcpkgs/python-ntplib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ntplib/template b/srcpkgs/python-ntplib/template
index 81bac24971e..0582fb326c1 100644
--- a/srcpkgs/python-ntplib/template
+++ b/srcpkgs/python-ntplib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ntplib'
 pkgname=python-ntplib
 version=0.3.3
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 wrksrc="ntplib-${version}"

From 42e7c3606ad17794721afef48ff01de438abbfde Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 334/874] python-numexpr: rebuild for Python 3.8.

---
 srcpkgs/python-numexpr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numexpr/template b/srcpkgs/python-numexpr/template
index 1db40092411..baf91175a33 100644
--- a/srcpkgs/python-numexpr/template
+++ b/srcpkgs/python-numexpr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numexpr'
 pkgname=python-numexpr
 version=2.7.0
-revision=1
+revision=2
 wrksrc="numexpr-${version}"
 build_style=python-module
 pycompile_module="numexpr"

From 30d9e4a8b4a096dfdf5ebfa58ffcadefb1dc1208 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 335/874] python3-numpy: rebuild for Python 3.8.

---
 srcpkgs/python3-numpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-numpy/template b/srcpkgs/python3-numpy/template
index c4c1936cc0d..f5e8ce2cc32 100644
--- a/srcpkgs/python3-numpy/template
+++ b/srcpkgs/python3-numpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-numpy'
 pkgname=python3-numpy
 version=1.17.2
-revision=1
+revision=2
 wrksrc="numpy-${version}"
 build_style=python3-module
 pycompile_module="numpy"

From 0172497dfdbc4c61b890a5cb33fdf7a4c4f8d99a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 336/874] python-numpy-stl: rebuild for Python 3.8.

---
 srcpkgs/python-numpy-stl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numpy-stl/template b/srcpkgs/python-numpy-stl/template
index 3eed838e4f6..cce1a8ead1f 100644
--- a/srcpkgs/python-numpy-stl/template
+++ b/srcpkgs/python-numpy-stl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numpy-stl'
 pkgname=python-numpy-stl
 version=2.10.1
-revision=1
+revision=2
 wrksrc="numpy-stl-v${version}"
 build_style=python-module
 pycompile_module="stl"

From f24b29a48d74aeaddb7b697a5daffdddbd861096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 337/874] python-oauth2client: rebuild for Python 3.8.

---
 srcpkgs/python-oauth2client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauth2client/template b/srcpkgs/python-oauth2client/template
index fd135e4e98f..2398adba276 100644
--- a/srcpkgs/python-oauth2client/template
+++ b/srcpkgs/python-oauth2client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauth2client'
 pkgname=python-oauth2client
 version=4.1.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 4c0ff2a063a36adf86c97b9d4c835ca20b5edfc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 338/874] python-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauthlib/template b/srcpkgs/python-oauthlib/template
index 5bbaa7df29b..036f1b31c92 100644
--- a/srcpkgs/python-oauthlib/template
+++ b/srcpkgs/python-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauthlib'
 pkgname=python-oauthlib
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 661bc27cfe08965221daa2747362d72e4fc27178 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 339/874] python-olefile: rebuild for Python 3.8.

---
 srcpkgs/python-olefile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-olefile/template b/srcpkgs/python-olefile/template
index 4346cfcf667..803d7b67cd8 100644
--- a/srcpkgs/python-olefile/template
+++ b/srcpkgs/python-olefile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-olefile'
 pkgname=python-olefile
 version=0.46
-revision=1
+revision=2
 archs=noarch
 wrksrc="olefile-${version}"
 build_style=python-module

From 81ad48cc99baa98fff2bb93d2c9ddbfe5bd36422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 340/874] python3-oletools: rebuild for Python 3.8.

---
 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 af9a91ff273..a4fda46427b 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.54.2b
-revision=1
+revision=2
 archs=noarch
 wrksrc="oletools-${version}"
 build_style=python3-module

From 0ae1454dacdb40d36d6c46872241d8b7f943ac15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 341/874] openrazer-meta: rebuild for Python 3.8.

---
 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 d4bd24878b2..112cb9e900b 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=1
+revision=2
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 827b1a86d790e29df3f5448f95b7d7583439ebc7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 342/874] python-openssl: rebuild for Python 3.8.

---
 srcpkgs/python-openssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-openssl/template b/srcpkgs/python-openssl/template
index 94bccaa166f..8aabda074fa 100644
--- a/srcpkgs/python-openssl/template
+++ b/srcpkgs/python-openssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-openssl'
 pkgname=python-openssl
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyOpenSSL-${version}"
 build_style=python-module

From 0b35d1d0b8e9ec0f17cb71edb12538b78cf15fa9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 343/874] python3-orocos-kdl: rebuild for Python 3.8.

---
 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 df3e27d5e7b..85b573b2fa4 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=1
+revision=2
 wrksrc=orocos_kinematics_dynamics-${version}
 build_wrksrc=python_orocos_kdl
 build_style=cmake

From 1f599cbc677804bd62252474063a3f44bab1963f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 344/874] python3-owm: rebuild for Python 3.8.

---
 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 d51e01831e6..acdb960ab45 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=1
+revision=2
 wrksrc="pyowm-${version}"
 build_style=python3-module
 pycompile_module="pyowm"

From 04d5ca1141107a7e08a15eccec26eae0cef6ddfc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 345/874] python-packaging: rebuild for Python 3.8.

---
 srcpkgs/python-packaging/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-packaging/template b/srcpkgs/python-packaging/template
index 505631bb29c..06042d12b90 100644
--- a/srcpkgs/python-packaging/template
+++ b/srcpkgs/python-packaging/template
@@ -1,7 +1,7 @@
 # Template file for 'python-packaging'
 pkgname=python-packaging
 version=19.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="packaging-${version}"
 build_style=python-module

From 3d4f635d1909bcc10be550a6ba92c93bab657d24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 346/874] python-pam: rebuild for Python 3.8.

---
 srcpkgs/python-pam/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pam/template b/srcpkgs/python-pam/template
index e696a05ae7f..28c22cfd6ea 100644
--- a/srcpkgs/python-pam/template
+++ b/srcpkgs/python-pam/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pam'
 pkgname=python-pam
 version=1.8.4
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="pam.py"

From 7906adb846a053b93372b360401c778862703de5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 347/874] python3-pandas: rebuild for Python 3.8.

---
 srcpkgs/python3-pandas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pandas/template b/srcpkgs/python3-pandas/template
index ad282b4d5d4..10f9d5a77d9 100644
--- a/srcpkgs/python3-pandas/template
+++ b/srcpkgs/python3-pandas/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pandas'
 pkgname=python3-pandas
 version=0.25.1
-revision=1
+revision=2
 wrksrc="pandas-${version}"
 build_style=python3-module
 pycompile_module="pandas"

From 5f63764964faf4b0d244098f5f64ba1225e14c5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 348/874] python-pandocfilters: rebuild for Python 3.8.

---
 srcpkgs/python-pandocfilters/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pandocfilters/template b/srcpkgs/python-pandocfilters/template
index a7a3d442052..8650d20256f 100644
--- a/srcpkgs/python-pandocfilters/template
+++ b/srcpkgs/python-pandocfilters/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pandocfilters'
 pkgname=python-pandocfilters
 version=1.4.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="pandocfilters-${version}"
 build_style=python-module

From cedefda1104de9c58b20c6b7e1d8a0f4d5385b24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 349/874] python-paramiko: rebuild for Python 3.8.

---
 srcpkgs/python-paramiko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-paramiko/template b/srcpkgs/python-paramiko/template
index c512ceb951f..d6f75508a03 100644
--- a/srcpkgs/python-paramiko/template
+++ b/srcpkgs/python-paramiko/template
@@ -1,7 +1,7 @@
 # Template file for 'python-paramiko'
 pkgname=python-paramiko
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 6c5cdbb0603a5742137ad2399e1f282d7135ecbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 350/874] python-parse: rebuild for Python 3.8.

---
 srcpkgs/python-parse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parse/template b/srcpkgs/python-parse/template
index 298d0b65e78..ded581b4420 100644
--- a/srcpkgs/python-parse/template
+++ b/srcpkgs/python-parse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parse'
 pkgname=python-parse
 version=1.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="parse-${version}"
 build_style=python-module

From 06c32d13c6ecc8f5c59fd3d28c856cddb7e55b69 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 351/874] python3-parsedatetime: rebuild for Python 3.8.

---
 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 d3ac21d7d34..34e9ba0f416 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="parsedatetime-${version}"
 build_style=python3-module

From 149092afd6b238ec9977aa2ba8d8f244d5357e67 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 352/874] python-parsing: rebuild for Python 3.8.

---
 srcpkgs/python-parsing/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parsing/template b/srcpkgs/python-parsing/template
index 0cc744eaf79..bd6cf2c2238 100644
--- a/srcpkgs/python-parsing/template
+++ b/srcpkgs/python-parsing/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parsing'
 pkgname=python-parsing
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyparsing-pyparsing_${version}"
 build_style=python-module

From c302574bea31ba81d3f2e4d6c1b8b8212592985d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 353/874] python-parso: rebuild for Python 3.8.

---
 srcpkgs/python-parso/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parso/template b/srcpkgs/python-parso/template
index 20e5fe306c0..1959b42622a 100644
--- a/srcpkgs/python-parso/template
+++ b/srcpkgs/python-parso/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parso'
 pkgname=python-parso
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="parso-${version}"
 build_style=python-module

From 6b9c95f942435b16d67021b0ce8f182c24bb943f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 354/874] python-passlib: rebuild for Python 3.8.

---
 srcpkgs/python-passlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-passlib/template b/srcpkgs/python-passlib/template
index 3af12ce7b1b..f46a3e92642 100644
--- a/srcpkgs/python-passlib/template
+++ b/srcpkgs/python-passlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-passlib'
 pkgname=python-passlib
 version=1.7.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="passlib-${version}"
 build_style=python-module

From 49600da0619f7152e3ea828c366d9a4680ebac40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 355/874] python-pathlib2: rebuild for Python 3.8.

---
 srcpkgs/python-pathlib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathlib2/template b/srcpkgs/python-pathlib2/template
index bb7bec778f5..fa600b78fbe 100644
--- a/srcpkgs/python-pathlib2/template
+++ b/srcpkgs/python-pathlib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathlib2'
 pkgname=python-pathlib2
 version=2.3.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pathlib2-${version}"
 build_style=python-module

From a0a108aec87134d5b6d2e03e731f48739e1226c0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 356/874] python-pathspec: rebuild for Python 3.8.

---
 srcpkgs/python-pathspec/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathspec/template b/srcpkgs/python-pathspec/template
index 7c5fe04097a..2fa8fa1a811 100644
--- a/srcpkgs/python-pathspec/template
+++ b/srcpkgs/python-pathspec/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathspec'
 pkgname=python-pathspec
 version=0.5.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathspec-${version}"
 build_style=python-module

From c66de315dc6f359ddb581056e8ef350e92acb135 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 357/874] python-pathtools: rebuild for Python 3.8.

---
 srcpkgs/python-pathtools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathtools/template b/srcpkgs/python-pathtools/template
index 218e6ed2f57..47dc6ef6a71 100644
--- a/srcpkgs/python-pathtools/template
+++ b/srcpkgs/python-pathtools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathtools'
 pkgname=python-pathtools
 version=0.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathtools-${version}"
 build_style=python-module

From d3d8ba877ce3e383a472c68a51b4eb6138da7d25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 358/874] python-pbkdf2: rebuild for Python 3.8.

---
 srcpkgs/python-pbkdf2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pbkdf2/template b/srcpkgs/python-pbkdf2/template
index edc50f824c2..956d0b4cad9 100644
--- a/srcpkgs/python-pbkdf2/template
+++ b/srcpkgs/python-pbkdf2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pbkdf2'
 pkgname=python-pbkdf2
 version=1.3
-revision=3
+revision=4
 archs=noarch
 wrksrc="pbkdf2-${version}"
 build_style=python-module

From 92b150f4aee95d71074c2bc7e253e089372033b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 359/874] python-pbr: rebuild for Python 3.8.

---
 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 7ab0b39539f..9c7216056fe 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.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pbr-${version}"
 build_style=python-module

From a5f7f198ba9557855d1662cf7b3d806286d735b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 360/874] python3-pcodedmp: rebuild for Python 3.8.

---
 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 efe8cc83ee7..eb52c809fae 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=1
+revision=2
 archs=noarch
 wrksrc="pcodedmp-${version}"
 build_style=python3-module

From c6f7d3cab5a62a3302eedc82e3ce1b5af007e967 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 361/874] python-pdfrw: rebuild for Python 3.8.

---
 srcpkgs/python-pdfrw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pdfrw/template b/srcpkgs/python-pdfrw/template
index ddb43b928fc..ef7db98e491 100644
--- a/srcpkgs/python-pdfrw/template
+++ b/srcpkgs/python-pdfrw/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pdfrw'
 pkgname=python-pdfrw
 version=0.4
-revision=2
+revision=3
 archs=noarch
 replaces="python-pdfrw-example<${version}_${revision}"
 wrksrc="${pkgname/python-//}-${version}"

From 8f02a9d6b13212de51e3921f641914d153244a1d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 362/874] python-peewee: rebuild for Python 3.8.

---
 srcpkgs/python-peewee/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-peewee/template b/srcpkgs/python-peewee/template
index 9b07ed413b9..de0068a330e 100644
--- a/srcpkgs/python-peewee/template
+++ b/srcpkgs/python-peewee/template
@@ -1,7 +1,7 @@
 # Template file for 'python-peewee'
 pkgname=python-peewee
 version=3.11.2
-revision=1
+revision=2
 wrksrc="peewee-${version}"
 build_style=python-module
 pycompile_module="playhouse peewee.py pwiz.py"

From 8c541b3666a838b55909e5f7ca46b7318c1e315e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 363/874] python3-pefile: rebuild for Python 3.8.

---
 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 305d64e0758..8791f06640b 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=1
+revision=2
 archs=noarch
 wrksrc="pefile-${version}"
 build_style=python3-module

From edc8e4f2bb803865815c3d0bd64a2e50bfdf5da8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 364/874] python3-pem: rebuild for Python 3.8.

---
 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 3517c80b66a..15417666597 100644
--- a/srcpkgs/python3-pem/template
+++ b/srcpkgs/python3-pem/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pem'
 pkgname=python3-pem
 version=19.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pem-${version}"
 build_style=python3-module

From 164760eb3d8d28400ea4be2967d7678696839866 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 365/874] python-pex: rebuild for Python 3.8.

---
 srcpkgs/python-pex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pex/template b/srcpkgs/python-pex/template
index 4beafcf7b4b..e36ccda8180 100644
--- a/srcpkgs/python-pex/template
+++ b/srcpkgs/python-pex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pex'
 pkgname=python-pex
 version=1.6.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="pex-${version}"
 build_style=python-module

From b4043ec822756e0711d025e31db342f81853fc0b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 366/874] python-pexpect: rebuild for Python 3.8.

---
 srcpkgs/python-pexpect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pexpect/template b/srcpkgs/python-pexpect/template
index 8d03a1945f3..03102c3d294 100644
--- a/srcpkgs/python-pexpect/template
+++ b/srcpkgs/python-pexpect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pexpect'
 pkgname=python-pexpect
 version=4.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pexpect-${version}"
 build_style=python-module

From 50f6291ca752dc88af34a7df4987b99f11369c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 367/874] python-pgmigrate: rebuild for Python 3.8.

---
 srcpkgs/python-pgmigrate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgmigrate/template b/srcpkgs/python-pgmigrate/template
index b441ba2a89f..767b6cf8921 100644
--- a/srcpkgs/python-pgmigrate/template
+++ b/srcpkgs/python-pgmigrate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgmigrate'
 pkgname=python-pgmigrate
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgmigrate-${version}"
 build_style=python-module

From 19bc6f8c731b45f52c358d34830221558e54f36f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 368/874] python-pgpdump: rebuild for Python 3.8.

---
 srcpkgs/python-pgpdump/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgpdump/template b/srcpkgs/python-pgpdump/template
index 58be9116feb..a28b6e209e7 100644
--- a/srcpkgs/python-pgpdump/template
+++ b/srcpkgs/python-pgpdump/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgpdump'
 pkgname=python-pgpdump
 version=1.5
-revision=5
+revision=6
 archs=noarch
 build_style=python-module
 pycompile_module="pgpdump"

From d3bc17a7484bd198f2f0e5d449b183920ca6ef9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 369/874] python3-pgspecial: rebuild for Python 3.8.

---
 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 dc52d12c214..c4f67a707f1 100644
--- a/srcpkgs/python3-pgspecial/template
+++ b/srcpkgs/python3-pgspecial/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pgspecial'
 pkgname=python3-pgspecial
 version=1.11.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgspecial-${version}"
 build_style=python3-module

From 630e0f8ca443d21d7a84c4cb44ab119db356b6fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 370/874] python3-pgzero: rebuild for Python 3.8.

---
 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 9653505acda..8b8f477112d 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgzero-${version}"
 build_style=python3-module

From b39841f2f8458d2865aac460282b318538b727c4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 371/874] python3-phonenumbers: rebuild for Python 3.8.

---
 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 ebf33f226e4..7b4e889fd8d 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.10.20
-revision=1
+revision=2
 archs=noarch
 wrksrc="phonenumbers-${version}"
 build_style=python3-module

From c4dbacfe25a16b0526190c66a838b7e407125426 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 372/874] python-picamera: rebuild for Python 3.8.

---
 srcpkgs/python-picamera/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-picamera/template b/srcpkgs/python-picamera/template
index 92bc2a57a6d..e3c9a17bfdc 100644
--- a/srcpkgs/python-picamera/template
+++ b/srcpkgs/python-picamera/template
@@ -1,7 +1,7 @@
 # Template file for 'python-picamera'
 pkgname=python-picamera
 version=1.13
-revision=1
+revision=2
 archs=noarch
 wrksrc="picamera-${version}"
 build_style=python-module

From 29473c016c6cd2d720c417714e89e9eaba3b321e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 373/874] python-pickleshare: rebuild for Python 3.8.

---
 srcpkgs/python-pickleshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pickleshare/template b/srcpkgs/python-pickleshare/template
index 2485c95230a..c1d86826c15 100644
--- a/srcpkgs/python-pickleshare/template
+++ b/srcpkgs/python-pickleshare/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pickleshare'
 pkgname=python-pickleshare
 version=0.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pickleshare-${version}"
 build_style=python-module

From 7c358da397b1273369bbeb98240a250157d4fe9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 374/874] python3-pillow-simd: rebuild for Python 3.8.

---
 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 7bab9fb20c3..4c756b07c79 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=5.3.0.post1
-revision=1
+revision=2
 archs="x86_64*"
 wrksrc="pillow-simd-${version}"
 build_style=python3-module

From 06b38c4e7a2c4a5ec22c8a9c530dbe56d846260f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 375/874] python-pip: rebuild for Python 3.8.

---
 srcpkgs/python-pip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pip/template b/srcpkgs/python-pip/template
index 75f11561816..9d4607095c7 100644
--- a/srcpkgs/python-pip/template
+++ b/srcpkgs/python-pip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pip'
 pkgname=python-pip
 version=19.2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pip-${version}"
 build_style=python-module

From 16067b9358434ea80b4b86a4dcd5a60f6b9e575b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 376/874] python-pipenv: rebuild for Python 3.8.

---
 srcpkgs/python-pipenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pipenv/template b/srcpkgs/python-pipenv/template
index e7ce3922875..210a0813673 100644
--- a/srcpkgs/python-pipenv/template
+++ b/srcpkgs/python-pipenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pipenv'
 pkgname=python-pipenv
 version=2018.11.26
-revision=3
+revision=4
 archs=noarch
 wrksrc="pipenv-${version}"
 build_style=python-module

From cb995aed1307a20f4ffe7746dbe54e4099ce9670 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 377/874] python-pkgconfig: rebuild for Python 3.8.

---
 srcpkgs/python-pkgconfig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pkgconfig/template b/srcpkgs/python-pkgconfig/template
index 13e1dcd3bf7..e9e5480907d 100644
--- a/srcpkgs/python-pkgconfig/template
+++ b/srcpkgs/python-pkgconfig/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pkgconfig'
 pkgname=python-pkgconfig
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pkgconfig-${version}"
 build_style=python-module

From f284340f35211b5c0879b7a5338c325e6cfe62da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 378/874] python-plotly: rebuild for Python 3.8.

---
 srcpkgs/python-plotly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-plotly/template b/srcpkgs/python-plotly/template
index fbbb3a3a520..1593b108f7a 100644
--- a/srcpkgs/python-plotly/template
+++ b/srcpkgs/python-plotly/template
@@ -1,7 +1,7 @@
 # Template file for 'python-plotly'
 pkgname=python-plotly
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 #wrksrc="${pkgname#*-}-${version}"
 wrksrc="plotly.py-${version}"

From ee0d515dc265db17d6c90029fc5ffad4fbfb17ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 379/874] python3-pluggy: rebuild for Python 3.8.

---
 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 37ebc2dae40..6f97cb25f21 100644
--- a/srcpkgs/python3-pluggy/template
+++ b/srcpkgs/python3-pluggy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pluggy'
 pkgname=python3-pluggy
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python3-module

From 60f109b4924812d3cbb6107b8d070a2fdb642962 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 380/874] python-ply: rebuild for Python 3.8.

---
 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 034fbcfa531..04a3defa6aa 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=1
+revision=2
 archs=noarch
 wrksrc="ply-${version}"
 build_style=python-module

From 95b0bc668a60a91dbbd68944bdc712d271e93723 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 381/874] python3-pmw: rebuild for Python 3.8.

---
 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 646e7129443..289b5ef1d0d 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=1
+revision=2
 archs=noarch
 short_desc="Python 3 Tkinter widget toolkit"
 homepage="http://pmw.sourceforge.net/"

From 760b2aa66f385f882c6da4545bc93c906a387d73 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 382/874] python-podcastparser: rebuild for Python 3.8.

---
 srcpkgs/python-podcastparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-podcastparser/template b/srcpkgs/python-podcastparser/template
index e4847d3ed65..61702f0d28b 100644
--- a/srcpkgs/python-podcastparser/template
+++ b/srcpkgs/python-podcastparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-podcastparser'
 pkgname=python-podcastparser
 version=0.6.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="podcastparser-${version}"
 build_style=python-module

From e0ad0641945e1dea937fb2ca555a61603e4560b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 383/874] python-polib: rebuild for Python 3.8.

---
 srcpkgs/python-polib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-polib/template b/srcpkgs/python-polib/template
index b0ade05d90d..8b8d4b66c68 100644
--- a/srcpkgs/python-polib/template
+++ b/srcpkgs/python-polib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-polib'
 pkgname=python-polib
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="polib-${version}"
 build_style=python-module

From 0030be5c9ea47539a72b9d5b5131abeac8412e47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 384/874] python-portend: rebuild for Python 3.8.

---
 srcpkgs/python-portend/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python-portend/template b/srcpkgs/python-portend/template
index 216ae413d09..0538f68083f 100644
--- a/srcpkgs/python-portend/template
+++ b/srcpkgs/python-portend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-portend'
 pkgname=python-portend
 version=2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="portend-${version}"
 build_style=python-module
@@ -14,7 +14,7 @@ license="MIT"
 homepage="https://github.com/jaraco/portend"
 changelog="https://github.com/jaraco/portend/blob/master/CHANGES.rst"
 distfiles="https://github.com/jaraco/portend/archive/${version}.tar.gz"
-checksum=61aa1a8fd76d64bd6093e4151a2bfeda177d5083bf2e2bcc92a053bd2104fde3
+checksum=c0740375a19168e117d291e7ed307e985d2c0e2dc732ca97444bc58a28076dfa
 
 pre_build() {
 	sed -i setup.py \

From 86c2211e1837e156275077b9efe1e25572514867 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 385/874] python-prctl: rebuild for Python 3.8.

---
 srcpkgs/python-prctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prctl/template b/srcpkgs/python-prctl/template
index 2b420d655cf..e8bf54b98fd 100644
--- a/srcpkgs/python-prctl/template
+++ b/srcpkgs/python-prctl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prctl'
 pkgname=python-prctl
 version=1.7
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="prctl.py"
 hostmakedepends="python-setuptools python3-setuptools libcap-devel"

From e7c53afc196d066076f9117158bd6a0b7b28bf52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 386/874] python3-precis-i18n: rebuild for Python 3.8.

---
 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 19612bc818b..be7bb0b0b56 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=1
+revision=2
 archs=noarch
 wrksrc="precis_i18n-${version}"
 build_style=python3-module

From fc6a6a6ae9e2454bc6e5aa117ab2f5f747f1c3d2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 387/874] python-pretend: rebuild for Python 3.8.

---
 srcpkgs/python-pretend/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pretend/template b/srcpkgs/python-pretend/template
index 9a647271b57..6d8063fc43a 100644
--- a/srcpkgs/python-pretend/template
+++ b/srcpkgs/python-pretend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pretend'
 pkgname=python-pretend
 version=1.0.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pretend-${version}"
 build_style=python-module

From 990266b8ce207f64d2a8e2f2f2c11473236e4a2d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 388/874] python-progress: rebuild for Python 3.8.

---
 srcpkgs/python-progress/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-progress/template b/srcpkgs/python-progress/template
index 7d3924e3618..0d6bd1db69d 100644
--- a/srcpkgs/python-progress/template
+++ b/srcpkgs/python-progress/template
@@ -1,7 +1,7 @@
 # Template file for 'python-progress'
 pkgname=python-progress
 version=1.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="progress-${version}"
 build_style=python-module

From 1259abece823637c18eaca058493cebdf15842ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 389/874] python-prometheus_client: rebuild for Python 3.8.

---
 srcpkgs/python-prometheus_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prometheus_client/template b/srcpkgs/python-prometheus_client/template
index 46df561f7d4..7b71fbeffc2 100644
--- a/srcpkgs/python-prometheus_client/template
+++ b/srcpkgs/python-prometheus_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prometheus_client'
 pkgname=python-prometheus_client
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="prometheus_client-${version}"
 build_style=python-module

From 67527aa7cf723b45f2c49017717337d56884bf4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 390/874] python-prompt_toolkit1: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit1/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit1/template b/srcpkgs/python-prompt_toolkit1/template
index d117d620ba5..7afe6179f33 100644
--- a/srcpkgs/python-prompt_toolkit1/template
+++ b/srcpkgs/python-prompt_toolkit1/template
@@ -2,7 +2,7 @@
 pkgname=python-prompt_toolkit1
 reverts="2.0.9_1"
 version=1.0.15
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From ad672131c8ab27e3e4dfa04ab7264c23d46f206e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 391/874] python-prompt_toolkit2: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit2/template b/srcpkgs/python-prompt_toolkit2/template
index 0fa71fa06dc..d7f2fd11e14 100644
--- a/srcpkgs/python-prompt_toolkit2/template
+++ b/srcpkgs/python-prompt_toolkit2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prompt_toolkit2'
 pkgname=python-prompt_toolkit2
 version=2.0.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From 2d3dfe28989a26dbea6bd90097a7a4046839373e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 392/874] python-proselint: rebuild for Python 3.8.

---
 srcpkgs/python-proselint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-proselint/template b/srcpkgs/python-proselint/template
index c017c497386..b1da90de474 100644
--- a/srcpkgs/python-proselint/template
+++ b/srcpkgs/python-proselint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-proselint'
 pkgname=python-proselint
 version=0.10.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="proselint-${version}"
 build_style=python-module

From 3dceefa27e529cfd28f51c8b96cec007bd4464e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 393/874] python-protobuf: rebuild for Python 3.8.

---
 srcpkgs/python-protobuf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-protobuf/template b/srcpkgs/python-protobuf/template
index 4b736f1e7af..7dbed97fb76 100644
--- a/srcpkgs/python-protobuf/template
+++ b/srcpkgs/python-protobuf/template
@@ -1,7 +1,7 @@
 # Template file for 'python-protobuf'
 pkgname=python-protobuf
 version=3.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="protobuf-${version}"
 build_style=python-module

From abc13cfff04878580efaf4333ca9548112b11049 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 394/874] python-psutil: rebuild for Python 3.8.

---
 srcpkgs/python-psutil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psutil/template b/srcpkgs/python-psutil/template
index 96cbb3c399f..11353ed2179 100644
--- a/srcpkgs/python-psutil/template
+++ b/srcpkgs/python-psutil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psutil'
 pkgname=python-psutil
 version=5.6.3
-revision=1
+revision=2
 wrksrc="psutil-${version}"
 build_style=python-module
 pycompile_module="psutil"

From 970bcf29dafb825894593f644c2fb7b4f1b86aff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 395/874] python-psycopg2: rebuild for Python 3.8.

---
 srcpkgs/python-psycopg2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psycopg2/template b/srcpkgs/python-psycopg2/template
index f41de2880e6..14b28b8aed1 100644
--- a/srcpkgs/python-psycopg2/template
+++ b/srcpkgs/python-psycopg2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psycopg2'
 pkgname=python-psycopg2
 version=2.8.3
-revision=1
+revision=2
 wrksrc="psycopg2-${version}"
 build_style=python-module
 pycompile_module="psycopg2"

From f987fad321d899f07d159588838ad3f3bfd1eb12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 396/874] python-ptyprocess: rebuild for Python 3.8.

---
 srcpkgs/python-ptyprocess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ptyprocess/template b/srcpkgs/python-ptyprocess/template
index 04c4cf89391..fd2e51fa3ac 100644
--- a/srcpkgs/python-ptyprocess/template
+++ b/srcpkgs/python-ptyprocess/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ptyprocess'
 pkgname=python-ptyprocess
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ptyprocess-${version}"
 build_style=python-module

From 6854ff4b103875e8ed393d695b71afd7a2589626 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 397/874] python3-pulsectl: rebuild for Python 3.8.

---
 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 429dd1abe45..045afdb411b 100644
--- a/srcpkgs/python3-pulsectl/template
+++ b/srcpkgs/python3-pulsectl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pulsectl'
 pkgname=python3-pulsectl
 version=19.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pulsectl-${version}"
 build_style=python3-module

From e8331ef1c889bc2b1756c6ed55a1cc93186445af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 398/874] python-py: rebuild for Python 3.8.

---
 srcpkgs/python-py/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-py/template b/srcpkgs/python-py/template
index 99644bc228a..07a1ae2a21b 100644
--- a/srcpkgs/python-py/template
+++ b/srcpkgs/python-py/template
@@ -1,7 +1,7 @@
 # Template file for 'python-py'
 pkgname=python-py
 version=1.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="py-${version}"
 build_style=python-module

From 1f71c5025d9cb40d86e4245b6a90731b3f25c6fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 399/874] python-pyPEG2: rebuild for Python 3.8.

---
 srcpkgs/python-pyPEG2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyPEG2/template b/srcpkgs/python-pyPEG2/template
index 113948af730..6ba175687f1 100644
--- a/srcpkgs/python-pyPEG2/template
+++ b/srcpkgs/python-pyPEG2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyPEG2'
 pkgname=python-pyPEG2
 version=2.15.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 3f82483327ba7958b0a6f8b67e63abf009c360ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 400/874] python-pyacoustid: rebuild for Python 3.8.

---
 srcpkgs/python-pyacoustid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyacoustid/template b/srcpkgs/python-pyacoustid/template
index 068d3d52649..d5b2d967f4e 100644
--- a/srcpkgs/python-pyacoustid/template
+++ b/srcpkgs/python-pyacoustid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyacoustid'
 pkgname=python-pyacoustid
 version=1.1.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyacoustid-${version}"
 build_style=python-module

From da477a37411d7cf0d00da2dea60d734072705be7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 401/874] python-pyaes: rebuild for Python 3.8.

---
 srcpkgs/python-pyaes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyaes/template b/srcpkgs/python-pyaes/template
index a8c812a9e01..d31766d0481 100644
--- a/srcpkgs/python-pyaes/template
+++ b/srcpkgs/python-pyaes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyaes'
 pkgname=python-pyaes
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyaes-${version}"
 build_style=python-module

From 9e2b6fe7e7b67777d70eb25705c27d4ed6462a3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 402/874] python-pyasn1: rebuild for Python 3.8.

---
 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 510dfa09816..fcddad43633 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyasn1-${version}"
 build_style=python-module

From 712c6a81632d8741a302138a46ffd3b1c8fb079f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 403/874] python-pyasn1-modules: rebuild for Python 3.8.

---
 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 bc19e4940ed..b142819a272 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 989e8e1bc0a51f2fa1a88ec8f99eae20dd3e21ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 404/874] python3-pycares: rebuild for Python 3.8.

---
 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 c52702904b4..ed82808bada 100644
--- a/srcpkgs/python3-pycares/template
+++ b/srcpkgs/python3-pycares/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pycares'
 pkgname=python3-pycares
 version=2.3.0
-revision=2
+revision=3
 wrksrc="pycares-${version}"
 build_style=python3-module
 pycompile_module="pycares"

From 0885c6a30ff0765b465e0e4c84803b48b9090dc5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 405/874] python-pycodestyle: rebuild for Python 3.8.

---
 srcpkgs/python-pycodestyle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycodestyle/template b/srcpkgs/python-pycodestyle/template
index ca20d8e0c97..08bc8c8bec7 100644
--- a/srcpkgs/python-pycodestyle/template
+++ b/srcpkgs/python-pycodestyle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycodestyle'
 pkgname=python-pycodestyle
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycodestyle-${version}"
 build_style=python-module

From 61d0268320bb8306c2b2823a663588c885a01df6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 406/874] python-pycountry: rebuild for Python 3.8.

---
 srcpkgs/python-pycountry/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycountry/template b/srcpkgs/python-pycountry/template
index 88a0025f258..205db6240b7 100644
--- a/srcpkgs/python-pycountry/template
+++ b/srcpkgs/python-pycountry/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycountry'
 pkgname=python-pycountry
 version=18.12.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycountry-${version}"
 build_style=python-module

From e3a689e939cf482e09d50cf25b8f244cbec3dc12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 407/874] python-pycparser: rebuild for Python 3.8.

---
 srcpkgs/python-pycparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycparser/template b/srcpkgs/python-pycparser/template
index a521b3494ab..d2e83aa79b2 100644
--- a/srcpkgs/python-pycparser/template
+++ b/srcpkgs/python-pycparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycparser'
 pkgname=python-pycparser
 version=2.19
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycparser-${version}"
 build_style=python-module

From a86a5e2a75c91a868bf9b10f7ad9d86ca4df85d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 408/874] python-pycryptodome: rebuild for Python 3.8.

---
 srcpkgs/python-pycryptodome/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycryptodome/template b/srcpkgs/python-pycryptodome/template
index f01b5731c45..a4368d61b39 100644
--- a/srcpkgs/python-pycryptodome/template
+++ b/srcpkgs/python-pycryptodome/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycryptodome'
 pkgname=python-pycryptodome
 version=3.9.0
-revision=1
+revision=2
 wrksrc="pycryptodome-${version}"
 build_style=python-module
 pycompile_module="Crypto"

From 0cd2d63524942e2cfe5220436720dab24ef75308 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 409/874] python-pyelftools: rebuild for Python 3.8.

---
 srcpkgs/python-pyelftools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyelftools/template b/srcpkgs/python-pyelftools/template
index a6e9e9b644e..193650442fc 100644
--- a/srcpkgs/python-pyelftools/template
+++ b/srcpkgs/python-pyelftools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyelftools'
 pkgname=python-pyelftools
 version=0.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyelftools-${version}"
 build_style=python-module

From 61ae993767f544e608a601e6727e58b8c73400fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 410/874] python3-pyfiglet: rebuild for Python 3.8.

---
 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 d00b4fda62a..a4a67b12d42 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=1
+revision=2
 archs=noarch
 wrksrc="pyfiglet-${version}"
 build_style="python3-module"

From 7f5bd3a27f56badc9d95d3b2b7a684604262af1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 411/874] python-pyflakes: rebuild for Python 3.8.

---
 srcpkgs/python-pyflakes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyflakes/template b/srcpkgs/python-pyflakes/template
index 86d477c47f2..19229ebb3a4 100644
--- a/srcpkgs/python-pyflakes/template
+++ b/srcpkgs/python-pyflakes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyflakes'
 pkgname=python-pyflakes
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyflakes-${version}"
 build_style=python-module

From a811c56d34b1f53ac8aeca03f5247410137fe8d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 412/874] python-pygame: rebuild for Python 3.8.

---
 srcpkgs/python-pygame/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pygame/template b/srcpkgs/python-pygame/template
index a510333df6e..a900d62dbe3 100644
--- a/srcpkgs/python-pygame/template
+++ b/srcpkgs/python-pygame/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pygame'
 pkgname=python-pygame
 version=1.9.4
-revision=2
+revision=3
 wrksrc="pygame-${version}"
 build_style=python-module
 pycompile_module="pygame"

From e62822b2e5fa56868e80f10a019c7a0d66abbcbd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 413/874] python-pyglet: rebuild for Python 3.8.

---
 srcpkgs/python-pyglet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyglet/template b/srcpkgs/python-pyglet/template
index f8315bdf616..ee6ed16064c 100644
--- a/srcpkgs/python-pyglet/template
+++ b/srcpkgs/python-pyglet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyglet'
 pkgname=python-pyglet
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyglet-${version}"
 build_style=python-module

From 1f0bf2cea3a10c9982132fbe81c5ebd884defa35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 414/874] python3-pykeepass: rebuild for Python 3.8.

---
 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 c0e0fd4db41..135da6fea65 100644
--- a/srcpkgs/python3-pykeepass/template
+++ b/srcpkgs/python3-pykeepass/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pykeepass'
 pkgname=python3-pykeepass
 version=3.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="pykeepass-${version}"
 build_style=python3-module

From f2d7f9a6199d6780975ad9efb639642e96acc8c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 415/874] python3-pykwalify: rebuild for Python 3.8.

---
 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 27bc0c37355..b3727aba651 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pykwalify-${version}"
 build_style=python3-module

From cb348b8cc013bee10cb1adcdd5b9dac8e8f37a83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 416/874] python3-pylast: rebuild for Python 3.8.

---
 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 187b51943a8..60184348d80 100644
--- a/srcpkgs/python3-pylast/template
+++ b/srcpkgs/python3-pylast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylast'
 pkgname=python3-pylast
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylast-${version}"
 build_style=python3-module

From 6629ec0088134c22cfb115f29fd4a90a9b38e7a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 417/874] python3-pylibgen: rebuild for Python 3.8.

---
 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 641bf649c17..540ccb32790 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylibgen-${version}"
 build_style=python3-module

From 953751fa6deeafefea78df4f5ec27ee5c5c9902d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 418/874] python3-pylint: rebuild for Python 3.8.

---
 srcpkgs/python3-pylint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pylint/template b/srcpkgs/python3-pylint/template
index 6c8800069f0..315dbffb3fc 100644
--- a/srcpkgs/python3-pylint/template
+++ b/srcpkgs/python3-pylint/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylint'
 pkgname=python3-pylint
 version=2.3.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="pylint-${version}"
 build_style=python3-module

From 96bc4e17e1f144c3528e0ec3b455d501c2c3efdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 419/874] python-pynacl: rebuild for Python 3.8.

---
 srcpkgs/python-pynacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pynacl/template b/srcpkgs/python-pynacl/template
index 6ead91820b1..7a7fe246821 100644
--- a/srcpkgs/python-pynacl/template
+++ b/srcpkgs/python-pynacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pynacl'
 pkgname=python-pynacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python-module
 pycompile_module="nacl"

From ec1da9dfd353e059b23780a676ef1561f56f9b2e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 420/874] python-pyotp: rebuild for Python 3.8.

---
 srcpkgs/python-pyotp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyotp/template b/srcpkgs/python-pyotp/template
index 54714ee2ebb..b70bd73d4aa 100644
--- a/srcpkgs/python-pyotp/template
+++ b/srcpkgs/python-pyotp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyotp'
 pkgname=python-pyotp
 version=2.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyotp-${version}"
 build_style=python-module

From 3c83515599af94f7483a3e165f03547f9daa2835 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 421/874] python-pyperclip: rebuild for Python 3.8.

---
 srcpkgs/python-pyperclip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyperclip/template b/srcpkgs/python-pyperclip/template
index 512dc8d3dfb..b173f1479a5 100644
--- a/srcpkgs/python-pyperclip/template
+++ b/srcpkgs/python-pyperclip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyperclip'
 pkgname=python-pyperclip
 version=1.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=pyperclip-${version}
 build_style=python-module

From 6d17f7510d6ce4ec430e8bf72567fecdbd521681 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 422/874] python-pyqtgraph: rebuild for Python 3.8.

---
 srcpkgs/python-pyqtgraph/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyqtgraph/template b/srcpkgs/python-pyqtgraph/template
index f90e2b15319..1bea9c2ffdf 100644
--- a/srcpkgs/python-pyqtgraph/template
+++ b/srcpkgs/python-pyqtgraph/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyqtgraph'
 pkgname=python-pyqtgraph
 version=0.10.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${pkgname#*-}-${version}"
 build_style=python-module

From fff21c3dd38242e2992b276e00f6970f96a34293 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 423/874] python-pyrfc3339: rebuild for Python 3.8.

---
 srcpkgs/python-pyrfc3339/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyrfc3339/template b/srcpkgs/python-pyrfc3339/template
index 618e46d1c4b..cd81c4d0624 100644
--- a/srcpkgs/python-pyrfc3339/template
+++ b/srcpkgs/python-pyrfc3339/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyrfc3339'
 pkgname=python-pyrfc3339
 version=1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="pyrfc3339"

From bdfc6ef4d47bd373ff649510c96f640b48da738a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 424/874] python-pyscss: rebuild for Python 3.8.

---
 srcpkgs/python-pyscss/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyscss/template b/srcpkgs/python-pyscss/template
index 1f7d8b7d8cd..1a8e9c44d7d 100644
--- a/srcpkgs/python-pyscss/template
+++ b/srcpkgs/python-pyscss/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyscss'
 pkgname=python-pyscss
 version=1.3.5
-revision=6
+revision=7
 wrksrc="pyScss-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pcre-devel"

From 6bdfad32f6894df0a7f3eb185662fa32228408ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 425/874] python3-pysdl2: rebuild for Python 3.8.

---
 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 d59ea7d7fa2..3efdca5b667 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=1
+revision=2
 archs=noarch
 wrksrc="py-sdl2-rel_${version//./_}"
 build_style=python3-module

From 67dab081767478a600fbc44d5333dc2746a683ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 426/874] python-pyserial: rebuild for Python 3.8.

---
 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 8808e76d206..354be493b16 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=2
+revision=3
 archs=noarch
 wrksrc="pyserial-${version}"
 build_style=python-module

From a6914f6aa35af001fd954260658bed6e1e5df2bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 427/874] python3-pyside2: rebuild for Python 3.8.

---
 srcpkgs/python3-pyside2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pyside2/template b/srcpkgs/python3-pyside2/template
index a5d60b17568..1da3400f239 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.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From deee942f64ef5e0e70f6a45a7f9e3a2593d53add Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 428/874] python3-pysigset: rebuild for Python 3.8.

---
 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 8de87145a09..50d9162ea70 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.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysigset-${version}"
 build_style=python3-module

From 913752d5b84f0054c829fc060939c366bf5b28cb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 429/874] python-pysocks: rebuild for Python 3.8.

---
 srcpkgs/python-pysocks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysocks/template b/srcpkgs/python-pysocks/template
index 68a27819e3d..d9b216aeab8 100644
--- a/srcpkgs/python-pysocks/template
+++ b/srcpkgs/python-pysocks/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysocks'
 pkgname=python-pysocks
 version=1.6.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="PySocks-${version}"
 build_style=python-module

From e256b35c573b66ccaaffbf92ee92ecad250db3c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 430/874] python3-pysol_cards: rebuild for Python 3.8.

---
 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 e03d92fe077..a37429754a2 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.8.6
-revision=1
+revision=2
 wrksrc="pysol_cards-${version}"
 build_style=python3-module
 pycompile_module="pysol_cards"

From d29dab0ddee296649a1f4ace5c33678cc349d6ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 431/874] python-pysrt: rebuild for Python 3.8.

---
 srcpkgs/python-pysrt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysrt/template b/srcpkgs/python-pysrt/template
index 061435a52c7..7e154825bef 100644
--- a/srcpkgs/python-pysrt/template
+++ b/srcpkgs/python-pysrt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysrt'
 pkgname=python-pysrt
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysrt-${version}"
 build_style=python-module

From 4ba7eb802460f8e4e15f1389bebd64237c6f1aec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 432/874] python-pystache: rebuild for Python 3.8.

---
 srcpkgs/python-pystache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pystache/template b/srcpkgs/python-pystache/template
index 13f8b04aa88..c1a5bcd57d9 100644
--- a/srcpkgs/python-pystache/template
+++ b/srcpkgs/python-pystache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pystache'
 pkgname=python-pystache
 version=0.5.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pystache-${version}"
 build_style=python-module

From a6a1d8010f3909cc551f70485efc660b22168f46 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 433/874] python-pyte: rebuild for Python 3.8.

---
 srcpkgs/python-pyte/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyte/template b/srcpkgs/python-pyte/template
index 43b708adc66..76efbec91d1 100644
--- a/srcpkgs/python-pyte/template
+++ b/srcpkgs/python-pyte/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyte'
 pkgname=python-pyte
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyte-${version}"
 build_style=python-module

From 03679e357b0bdbd90ddbb6deba5693594ef9d592 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 434/874] python-pytest: rebuild for Python 3.8.

---
 srcpkgs/python-pytest/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest/template b/srcpkgs/python-pytest/template
index 6481f21e677..d5c246599c6 100644
--- a/srcpkgs/python-pytest/template
+++ b/srcpkgs/python-pytest/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest'
 pkgname=python-pytest
 version=3.7.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From d8ff8818fa4f90c63cf468feb2bba5d8b9dca026 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 435/874] python3-pytest-asyncio: rebuild for Python 3.8.

---
 srcpkgs/python3-pytest-asyncio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template
index bd104f99e2c..0c90d33a9e5 100644
--- a/srcpkgs/python3-pytest-asyncio/template
+++ b/srcpkgs/python3-pytest-asyncio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pytest-asyncio'
 pkgname=python3-pytest-asyncio
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytest-asyncio-${version}"
 build_style=python3-module

From 8bdff4905b1d2e832656b8dde532b566e516752c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 436/874] python-pytest-fixture-config: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-fixture-config/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-fixture-config/template b/srcpkgs/python-pytest-fixture-config/template
index cd3e38a592a..14255af8a35 100644
--- a/srcpkgs/python-pytest-fixture-config/template
+++ b/srcpkgs/python-pytest-fixture-config/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-fixture-config'
 pkgname=python-pytest-fixture-config
 version=1.3.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 89c93c6cebe4d9e57d61a6e1c0d1782514496073 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 437/874] python-pytest-mock: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-mock/template b/srcpkgs/python-pytest-mock/template
index f3dc85810b6..240e8773aaa 100644
--- a/srcpkgs/python-pytest-mock/template
+++ b/srcpkgs/python-pytest-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-mock'
 pkgname=python-pytest-mock
 version=1.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From e10ffc843814c368a7fd76e24e6afa8512ce198c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 438/874] python-pytz: rebuild for Python 3.8.

---
 srcpkgs/python-pytz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytz/template b/srcpkgs/python-pytz/template
index d6becf829a7..40f582962c8 100644
--- a/srcpkgs/python-pytz/template
+++ b/srcpkgs/python-pytz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytz'
 pkgname=python-pytz
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytz-${version}"
 build_style=python-module

From 562767d788b8e163bcde2dbd45de9eca2899bd90 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 439/874] python-pyudev: rebuild for Python 3.8.

---
 srcpkgs/python-pyudev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyudev/template b/srcpkgs/python-pyudev/template
index d059b7882a2..2ec53088636 100644
--- a/srcpkgs/python-pyudev/template
+++ b/srcpkgs/python-pyudev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyudev'
 pkgname=python-pyudev
 version=0.21.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyudev-${version}"
 build_style=python-module

From bb91a3d4616a0e9dbf1a34b271d62527a455f4ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 440/874] python3-pyx: rebuild for Python 3.8.

---
 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 87608c43428..89963bed89f 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.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="PyX-${version}"
 build_style=python3-module

From caa3ad83cde6d2b66687ae0ac2bb87dfd8eb100f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 441/874] python-pyzbar: rebuild for Python 3.8.

---
 srcpkgs/python-pyzbar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzbar/template b/srcpkgs/python-pyzbar/template
index 06ae37a5708..35b568eb4e6 100644
--- a/srcpkgs/python-pyzbar/template
+++ b/srcpkgs/python-pyzbar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzbar'
 pkgname=python-pyzbar
 version=0.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyzbar-${version}"
 build_style=python-module

From 83e0ba8fd12c3f07b4f3c2f8109ff0cd9a69353b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 442/874] python-pyzmq: rebuild for Python 3.8.

---
 srcpkgs/python-pyzmq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzmq/template b/srcpkgs/python-pyzmq/template
index 859aab5983d..27dbe29e516 100644
--- a/srcpkgs/python-pyzmq/template
+++ b/srcpkgs/python-pyzmq/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzmq'
 pkgname=python-pyzmq
 version=18.0.1
-revision=1
+revision=2
 wrksrc="pyzmq-${version}"
 build_style=python-module
 make_build_args="--zmq=${XBPS_CROSS_BASE}/usr"

From 2d71150f372801e322d8ee5f31b2bc67795fc3a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 443/874] python-qrcode: rebuild for Python 3.8.

---
 srcpkgs/python-qrcode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-qrcode/template b/srcpkgs/python-qrcode/template
index 9deb485855f..bf35c82757e 100644
--- a/srcpkgs/python-qrcode/template
+++ b/srcpkgs/python-qrcode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-qrcode'
 pkgname=python-qrcode
 version=6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="qrcode-${version}"
 build_style=python-module

From 55eeefa7bb378b38024ce5c57d228c5d2c24875f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 444/874] python-random2: rebuild for Python 3.8.

---
 srcpkgs/python-random2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-random2/template b/srcpkgs/python-random2/template
index 92f36fee139..2603cae3584 100644
--- a/srcpkgs/python-random2/template
+++ b/srcpkgs/python-random2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-random2'
 pkgname=python-random2
 version=1.0.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="random2-${version}"
 build_style=python-module

From 4aa520f994404a836b859a95bf53280ec662d779 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 445/874] python-rarfile: rebuild for Python 3.8.

---
 srcpkgs/python-rarfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rarfile/template b/srcpkgs/python-rarfile/template
index e0c597c1fb1..e3b6f3e2887 100644
--- a/srcpkgs/python-rarfile/template
+++ b/srcpkgs/python-rarfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rarfile'
 pkgname=python-rarfile
 version=3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="rarfile-${version}"
 build_style=python-module

From 77edc413dd0a2b7d7423d47946137d1db7452b91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 446/874] python-raven: rebuild for Python 3.8.

---
 srcpkgs/python-raven/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-raven/template b/srcpkgs/python-raven/template
index eec4e5f49b6..87382c21602 100644
--- a/srcpkgs/python-raven/template
+++ b/srcpkgs/python-raven/template
@@ -1,7 +1,7 @@
 # Template file for 'python-raven'
 pkgname=python-raven
 version=6.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="raven-${version}"
 build_style=python-module

From 0fd244bc29d49109b475295b68c11c496626bd43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 447/874] python-rdflib: rebuild for Python 3.8.

---
 srcpkgs/python-rdflib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rdflib/template b/srcpkgs/python-rdflib/template
index 0512abb0e5a..f676dedfb2f 100644
--- a/srcpkgs/python-rdflib/template
+++ b/srcpkgs/python-rdflib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rdflib'
 pkgname=python-rdflib
 version=4.2.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="rdflib-${version}"
 build_style=python-module

From 52682c54b0a7808306dcb6c0c9af5436d056d6a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 448/874] python-readability-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-readability-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-readability-lxml/template b/srcpkgs/python-readability-lxml/template
index ddf0602b730..19dadaa336f 100644
--- a/srcpkgs/python-readability-lxml/template
+++ b/srcpkgs/python-readability-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-readability-lxml'
 pkgname=python-readability-lxml
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="readability-lxml-${version}"
 build_style=python-module

From 5b239aeb5613465b0d414e14b8b37a83f65232fc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 449/874] python3-readlike: rebuild for Python 3.8.

---
 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 cbba969b076..43159962442 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=1
+revision=2
 archs=noarch
 wrksrc=readlike-${version}
 build_style=python3-module

From 10ff7da432e0f1563ed8c4feb921648f20e75246 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 450/874] python-rebulk: rebuild for Python 3.8.

---
 srcpkgs/python-rebulk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rebulk/template b/srcpkgs/python-rebulk/template
index 1cf6cf623c8..8f9c2621304 100644
--- a/srcpkgs/python-rebulk/template
+++ b/srcpkgs/python-rebulk/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rebulk'
 pkgname=python-rebulk
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rebulk-${version}"
 build_style=python-module

From b720f89f9fb6ecb79aa43ff92f151239049cb9c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 451/874] python-redis: rebuild for Python 3.8.

---
 srcpkgs/python-redis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-redis/template b/srcpkgs/python-redis/template
index f57c0d841b3..b7e773fde54 100644
--- a/srcpkgs/python-redis/template
+++ b/srcpkgs/python-redis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-redis'
 pkgname=python-redis
 version=2.10.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="redis-${version}"
 build_style=python-module

From 90d47f03a3f7a55f623c0b5019b0b58b6169aae5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 452/874] python-regex: rebuild for Python 3.8.

---
 srcpkgs/python-regex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-regex/template b/srcpkgs/python-regex/template
index 33e99b0127b..7a624db9477 100644
--- a/srcpkgs/python-regex/template
+++ b/srcpkgs/python-regex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-regex'
 pkgname=python-regex
 version=2019.08.19
-revision=1
+revision=2
 wrksrc="regex-${version}"
 build_style=python-module
 pycompile_module="_regex_core.py regex.py test_regex.py"

From e132fc559392a2f2a5268100218ef2061759c476 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 453/874] python-rencode: rebuild for Python 3.8.

---
 srcpkgs/python-rencode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rencode/template b/srcpkgs/python-rencode/template
index 7176038a60a..021e1d414b8 100644
--- a/srcpkgs/python-rencode/template
+++ b/srcpkgs/python-rencode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rencode'
 pkgname=python-rencode
 version=1.0.6
-revision=2
+revision=3
 wrksrc="rencode-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"

From 635743944483bd5fdbf4a909ef4874532f1035b9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 454/874] python-reportlab: rebuild for Python 3.8.

---
 srcpkgs/python-reportlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-reportlab/template b/srcpkgs/python-reportlab/template
index 7f153d65a2a..3915767b6d3 100644
--- a/srcpkgs/python-reportlab/template
+++ b/srcpkgs/python-reportlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-reportlab'
 pkgname=python-reportlab
 version=3.5.23
-revision=1
+revision=2
 wrksrc="reportlab-${version}"
 build_style=python-module
 pycompile_module="reportlab"

From 4a6d7b1e5e0d64a6834cc210da11806cbe217453 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 455/874] python-requests: rebuild for Python 3.8.

---
 srcpkgs/python-requests/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests/template b/srcpkgs/python-requests/template
index fc806b611e9..73d2d5945ef 100644
--- a/srcpkgs/python-requests/template
+++ b/srcpkgs/python-requests/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests'
 pkgname=python-requests
 version=2.22.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-${version}"
 build_style=python-module

From 61f6560b710773eab8296ef28bd943f5dc0d290d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 456/874] python-requests-mock: rebuild for Python 3.8.

---
 srcpkgs/python-requests-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-mock/template b/srcpkgs/python-requests-mock/template
index 5b89b5ed3b8..2d1410fcd1b 100644
--- a/srcpkgs/python-requests-mock/template
+++ b/srcpkgs/python-requests-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-mock'
 pkgname=python-requests-mock
 version=1.5.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="requests-mock-${version}"
 build_style=python-module

From f4f04d85ce7abb39fbbf306bc3c1dcfc467cdf14 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 457/874] python-requests-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-requests-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-oauthlib/template b/srcpkgs/python-requests-oauthlib/template
index b011ea17a36..8cd838090a7 100644
--- a/srcpkgs/python-requests-oauthlib/template
+++ b/srcpkgs/python-requests-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-oauthlib'
 pkgname=python-requests-oauthlib
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5853f21b57bde4c4e66293b132fba4fc03804518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 458/874] python-requests-toolbelt: rebuild for Python 3.8.

---
 srcpkgs/python-requests-toolbelt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-toolbelt/template b/srcpkgs/python-requests-toolbelt/template
index 3ba66a0a007..13a81586221 100644
--- a/srcpkgs/python-requests-toolbelt/template
+++ b/srcpkgs/python-requests-toolbelt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-toolbelt'
 pkgname=python-requests-toolbelt
 version=0.9.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 14171483829854051f0c8030562c1052094d78c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 459/874] python3-requests-unixsocket: rebuild for Python 3.8.

---
 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 ec9e1074566..fd389ec2d13 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-unixsocket-${version}"
 build_style=python3-module

From 9b589212b423bd7e2dfbb7ab7ef63c65b9dd07cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 460/874] python-rfc6555: rebuild for Python 3.8.

---
 srcpkgs/python-rfc6555/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rfc6555/template b/srcpkgs/python-rfc6555/template
index c3babc25b93..2522872cc32 100644
--- a/srcpkgs/python-rfc6555/template
+++ b/srcpkgs/python-rfc6555/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rfc6555'
 pkgname=python-rfc6555
 version=0.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rfc6555-${version}"
 build_style=python-module

From a399a96d8293a9387f5648001a03178d2550059b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 461/874] python-ripe-atlas-cousteau: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-cousteau/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-cousteau/template b/srcpkgs/python-ripe-atlas-cousteau/template
index ac16300fe3d..72f32a9da0d 100644
--- a/srcpkgs/python-ripe-atlas-cousteau/template
+++ b/srcpkgs/python-ripe-atlas-cousteau/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-cousteau'
 pkgname=python-ripe-atlas-cousteau
 version=1.4.2
-revision=1
+revision=2
 build_style=python-module
 archs=noarch
 pycompile_module="ripe/atlas/cousteau"

From 4c2ddc085f45f52b438013ad3d494f8f59859504 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 462/874] python-ripe-atlas-sagan: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-sagan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-sagan/template b/srcpkgs/python-ripe-atlas-sagan/template
index 60a9b883b93..22abb48af46 100644
--- a/srcpkgs/python-ripe-atlas-sagan/template
+++ b/srcpkgs/python-ripe-atlas-sagan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-sagan'
 pkgname=python-ripe-atlas-sagan
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ripe.atlas.sagan-${version}"
 build_style=python-module

From 10e7db3d51d8370e317d667edc372d0fcfd5bad9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 463/874] python-rsa: rebuild for Python 3.8.

---
 srcpkgs/python-rsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rsa/template b/srcpkgs/python-rsa/template
index a4ae59846ff..11e9bf2c60d 100644
--- a/srcpkgs/python-rsa/template
+++ b/srcpkgs/python-rsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rsa'
 pkgname=python-rsa
 version=4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a3bbda3918c5b4bb668860ba5bbd81f83f1a4925 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 464/874] python3-rsistent: rebuild for Python 3.8.

---
 srcpkgs/python3-rsistent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-rsistent/template b/srcpkgs/python3-rsistent/template
index 13019f472cd..7897e107b2b 100644
--- a/srcpkgs/python3-rsistent/template
+++ b/srcpkgs/python3-rsistent/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-rsistent'
 pkgname=python3-rsistent
 version=0.15.4
-revision=1
+revision=2
 wrksrc="pyrsistent-${version}"
 build_style=python3-module
 pycompile_module="pyrsistent"

From 7d4c9082b7051c6ce978ca21f34f138189c7f2d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 465/874] python3-rss2email: rebuild for Python 3.8.

---
 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 d07984d33d8..34e7d4e65a6 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.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="rss2email-${version}"
 build_style=python3-module

From a0a5e6df8a02d98f37c3c22c043adb325c8a8a62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 466/874] python-ruamel.yaml: rebuild for Python 3.8.

---
 srcpkgs/python-ruamel.yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ruamel.yaml/template b/srcpkgs/python-ruamel.yaml/template
index d86ddfc67c9..789f8a7acd2 100644
--- a/srcpkgs/python-ruamel.yaml/template
+++ b/srcpkgs/python-ruamel.yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ruamel.yaml'
 pkgname=python-ruamel.yaml
 version=0.15.92
-revision=1
+revision=2
 wrksrc="ruamel.yaml-${version}"
 build_style=python-module
 pycompile_module="ruamel/yaml"

From 6b579f083949bbd67a78d66ae983de1f36f03a82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 467/874] python3-s-tui: rebuild for Python 3.8.

---
 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 4c7db6ff3c9..85a945b1b09 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=0.8.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="s-tui-${version}"
 build_style=python3-module

From 5cc92799a690ba40dd26192e3f0182e07089683a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 468/874] python-s3transfer: rebuild for Python 3.8.

---
 srcpkgs/python-s3transfer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-s3transfer/template b/srcpkgs/python-s3transfer/template
index e306c3c3b1a..dd92eeff657 100644
--- a/srcpkgs/python-s3transfer/template
+++ b/srcpkgs/python-s3transfer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-s3transfer'
 pkgname=python-s3transfer
 version=0.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="s3transfer-${version}"
 build_style=python-module

From 2ec5386706a289e510b5b03e33cf74e0a23596a6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 469/874] python3-saml2: rebuild for Python 3.8.

---
 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 e94602a82ea..c0dabb5e9d0 100644
--- a/srcpkgs/python3-saml2/template
+++ b/srcpkgs/python3-saml2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-saml2'
 pkgname=python3-saml2
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysaml2-${version}"
 build_style=python3-module

From e856d28eb580f0af5442d11d24ffacdd7fade12b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 470/874] python-scandir: rebuild for Python 3.8.

---
 srcpkgs/python-scandir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scandir/template b/srcpkgs/python-scandir/template
index 774fac91b8f..b02fe6d0281 100644
--- a/srcpkgs/python-scandir/template
+++ b/srcpkgs/python-scandir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scandir'
 pkgname=python-scandir
 version=1.10.0
-revision=2
+revision=3
 wrksrc="scandir-${version}"
 build_style=python-module
 pycompile_module="scandir.py"

From 3b5e1eeb2ce0519b51592cebffc1bd89dce0f96c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 471/874] python3-scard: rebuild for Python 3.8.

---
 srcpkgs/python3-scard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scard/template b/srcpkgs/python3-scard/template
index 793f144a74b..279419ac3e3 100644
--- a/srcpkgs/python3-scard/template
+++ b/srcpkgs/python3-scard/template
@@ -2,7 +2,7 @@
 pkgname=python3-scard
 _pkgname=pyscard
 version=1.9.8
-revision=1
+revision=2
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module
 pycompile_module=smartcard

From f62ba61eaebce26c267e2d453d8e0ea6e005a285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 472/874] python3-scikit-learn: rebuild for Python 3.8.

---
 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 73799b9f420..8ac82167832 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.20.4
-revision=1
+revision=2
 wrksrc="scikit-learn-${version}"
 build_style=python3-module
 pycompile_module="sklearn"

From ccf4f6aa1bd0ba8aaf9499dcacb1320a77221004 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 473/874] python3-scipy: rebuild for Python 3.8.

---
 srcpkgs/python3-scipy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scipy/template b/srcpkgs/python3-scipy/template
index 291ac3734f1..2cef9ac33e1 100644
--- a/srcpkgs/python3-scipy/template
+++ b/srcpkgs/python3-scipy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-scipy'
 pkgname=python3-scipy
 version=1.3.1
-revision=1
+revision=2
 wrksrc="scipy-${version}"
 build_style=python3-module
 pycompile_module="scipy"

From 04cbe0c6403a4ecd9cda36e10bba5d06e472823d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 474/874] python-scour: rebuild for Python 3.8.

---
 srcpkgs/python-scour/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scour/template b/srcpkgs/python-scour/template
index b78cf37f057..0db5b157ce1 100644
--- a/srcpkgs/python-scour/template
+++ b/srcpkgs/python-scour/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scour'
 pkgname=python-scour
 version=0.37
-revision=1
+revision=2
 archs=noarch
 wrksrc="scour-${version}"
 build_style=python-module

From 0fd08871993ece59d562feb8472d05249ae1d76a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 475/874] python3-scruffy: rebuild for Python 3.8.

---
 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 e797b110f42..62a21a74eca 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="scruffy-${version}"
 build_style=python3-module

From 65cb259cf8f67f78fe484e4423fe0006aae17045 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 476/874] python-send2trash: rebuild for Python 3.8.

---
 srcpkgs/python-send2trash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-send2trash/template b/srcpkgs/python-send2trash/template
index 49c3a2b3d77..94f56545695 100644
--- a/srcpkgs/python-send2trash/template
+++ b/srcpkgs/python-send2trash/template
@@ -1,7 +1,7 @@
 # Template file for 'python-send2trash'
 pkgname=python-send2trash
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="send2trash-${version}"
 build_style=python-module

From 04a4413d706d49df8a415b9714091b0e4bb0fdfa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 477/874] python-serpent: rebuild for Python 3.8.

---
 srcpkgs/python-serpent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-serpent/template b/srcpkgs/python-serpent/template
index b60d390c1ab..a40f0d44515 100644
--- a/srcpkgs/python-serpent/template
+++ b/srcpkgs/python-serpent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-serpent'
 pkgname=python-serpent
 version=1.28
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38131f811a874463c71c55408ef6e629166a5b8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 478/874] python-service_identity: rebuild for Python 3.8.

---
 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 eae084c858f..e21a1520a75 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=1
+revision=2
 archs=noarch
 wrksrc="service_identity-${version}"
 build_style=python-module

From 9a538d41d8b848da9da43cd5d6f80428b7208be8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 479/874] setconf: rebuild for Python 3.8.

---
 srcpkgs/setconf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/setconf/template b/srcpkgs/setconf/template
index a3d22376a5b..1911c558c77 100644
--- a/srcpkgs/setconf/template
+++ b/srcpkgs/setconf/template
@@ -1,7 +1,7 @@
 # Template file for 'setconf'
 pkgname=setconf
 version=0.7.6
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="setconf.py"

From aacff3894cc42a49ab1becc06f64f23197302443 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 480/874] python-setproctitle: rebuild for Python 3.8.

---
 srcpkgs/python-setproctitle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setproctitle/template b/srcpkgs/python-setproctitle/template
index d0d41ae888d..c47e3a9db53 100644
--- a/srcpkgs/python-setproctitle/template
+++ b/srcpkgs/python-setproctitle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setproctitle'
 pkgname=python-setproctitle
 version=1.1.10
-revision=5
+revision=6
 wrksrc="setproctitle-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e2b8c2ac8d355cdb0f221b80ab39e2ef92beb3e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 481/874] python-setuptools: rebuild for Python 3.8.

---
 srcpkgs/python-setuptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setuptools/template b/srcpkgs/python-setuptools/template
index 382a9b45bcd..a172f8e8e09 100644
--- a/srcpkgs/python-setuptools/template
+++ b/srcpkgs/python-setuptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setuptools'
 pkgname=python-setuptools
 version=41.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python-module

From 5feb793ba33633318f41644f84b5ffd5428e2d4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 482/874] python-sh: rebuild for Python 3.8.

---
 srcpkgs/python-sh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sh/template b/srcpkgs/python-sh/template
index 1826986b25c..76985dc1f01 100644
--- a/srcpkgs/python-sh/template
+++ b/srcpkgs/python-sh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sh'
 pkgname=python-sh
 version=1.12.14
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From f0cfe151eea6fcf86d1196385a1ac0057a65ab48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 483/874] python-shapely: rebuild for Python 3.8.

---
 srcpkgs/python-shapely/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-shapely/template b/srcpkgs/python-shapely/template
index 25cc875a02c..114726838f9 100644
--- a/srcpkgs/python-shapely/template
+++ b/srcpkgs/python-shapely/template
@@ -1,7 +1,7 @@
 # Template file for 'python-shapely'
 pkgname=python-shapely
 version=1.7a1
-revision=2
+revision=3
 wrksrc="Shapely-${version}"
 build_style=python-module
 pycompile_module="shapely"

From 0908618383925caf43243de8097dbf6491149f8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 484/874] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index d552ce8432d..1f9c8043b46 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=4
+revision=5
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From 14af86f199e28c6eae170b10c1c662bd0184b73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 485/874] shiboken2: rebuild for Python 3.8.

---
 srcpkgs/shiboken2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken2/template b/srcpkgs/shiboken2/template
index 394d9ba4f94..a08edf3f2a0 100644
--- a/srcpkgs/shiboken2/template
+++ b/srcpkgs/shiboken2/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken2'
 pkgname=shiboken2
 version=5.11.2
-revision=2
+revision=3
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From 9ea535c3baf70c69a2bbe07d057742af1877d648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 486/874] python3-shodan: rebuild for Python 3.8.

---
 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 858a0b921f8..033b5a269ff 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.19.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="shodan-python-${version}"
 build_style=python3-module

From 76805ea236fc7f4ecd5948a492413602efff91e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 487/874] python3-signedjson: rebuild for Python 3.8.

---
 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 6f6fb339fd2..d8f9b06b22f 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-signedjson-${version}"
 build_style=python3-module

From 12e9d209470a13cdd9063e5544ffd00c5952138e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 488/874] python-simplebayes: rebuild for Python 3.8.

---
 srcpkgs/python-simplebayes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplebayes/template b/srcpkgs/python-simplebayes/template
index e76b94ad549..6c95222fa7e 100644
--- a/srcpkgs/python-simplebayes/template
+++ b/srcpkgs/python-simplebayes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplebayes'
 pkgname=python-simplebayes
 version=1.5.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="simplebayes-${version}"
 build_style=python-module

From d1ad830144a3e370bbac6e82affb1d06805dfdbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 489/874] python-simplegeneric: rebuild for Python 3.8.

---
 srcpkgs/python-simplegeneric/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplegeneric/template b/srcpkgs/python-simplegeneric/template
index 3dc4e1dda94..f352387fa1f 100644
--- a/srcpkgs/python-simplegeneric/template
+++ b/srcpkgs/python-simplegeneric/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplegeneric'
 pkgname=python-simplegeneric
 version=0.8.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="simplegeneric-${version}"
 build_style=python-module

From f6d990c1a1436b305f8b5af6f58c1f6430d96dc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 490/874] python-simplejson: rebuild for Python 3.8.

---
 srcpkgs/python-simplejson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplejson/template b/srcpkgs/python-simplejson/template
index b453ae952ba..1b8523d0d46 100644
--- a/srcpkgs/python-simplejson/template
+++ b/srcpkgs/python-simplejson/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplejson'
 pkgname=python-simplejson
 version=3.16.1
-revision=2
+revision=3
 wrksrc="simplejson-${version}"
 build_style=python-module
 pycompile_module="simplejson"

From b6f0878a2894ffdd731251a64a26cb1ddf40038a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 491/874] sip: rebuild for Python 3.8.

---
 srcpkgs/sip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sip/template b/srcpkgs/sip/template
index 9d09b823bb6..0e8a81000b1 100644
--- a/srcpkgs/sip/template
+++ b/srcpkgs/sip/template
@@ -1,7 +1,7 @@
 # Template file for 'sip'
 pkgname=sip
 version=4.19.18
-revision=1
+revision=2
 wrksrc="sip-${version}"
 hostmakedepends="python-devel python3-devel"
 makedepends="${hostmakedepends}"

From 5f24e47fb2b044495bbf0ee108d18220ad3b3bd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 492/874] python-six: rebuild for Python 3.8.

---
 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 c6d91f5ece9..a25323caa2a 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.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="six-${version}"
 build_style=python-module

From 09784cf129c5a66b731964fcda119a53dd9dbb7b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 493/874] python3-slixmpp: rebuild for Python 3.8.

---
 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 db367c3d0ab..cbbde6f394b 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.4.2
-revision=1
+revision=2
 wrksrc="slixmpp-${version}"
 build_style=python3-module
 pycompile_module="slixmpp"

From 5e4eb88ccd16957dc33f6923ae3a72151385e9ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 494/874] python3-slugify: rebuild for Python 3.8.

---
 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 44d37f2aed7..012bb98f063 100644
--- a/srcpkgs/python3-slugify/template
+++ b/srcpkgs/python3-slugify/template
@@ -3,7 +3,7 @@ pkgname=python3-slugify
 # Please don't update. Only required by Transifx-client,
 # doesn't work with newer versions
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-slugify-${version}"
 build_style=python3-module

From 3673d2d0b57421bb69e3ed7407630c26169fab96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 495/874] python-smbc: rebuild for Python 3.8.

---
 srcpkgs/python-smbc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smbc/template b/srcpkgs/python-smbc/template
index abc745f8982..6a280139a25 100644
--- a/srcpkgs/python-smbc/template
+++ b/srcpkgs/python-smbc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smbc'
 pkgname=python-smbc
 version=1.0.16
-revision=1
+revision=2
 wrksrc="pysmbc-${version}"
 build_style=python-module
 pycompile_module="smbc"

From 2e7eca88dff9a562419fb01bfafbdaf55a6c2bd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 496/874] python-smmap: rebuild for Python 3.8.

---
 srcpkgs/python-smmap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smmap/template b/srcpkgs/python-smmap/template
index 4aa0c37ff40..8c8ea952285 100644
--- a/srcpkgs/python-smmap/template
+++ b/srcpkgs/python-smmap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smmap'
 pkgname=python-smmap
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="smmap-${version}"
 build_style=python-module

From fd787d6092a892885c1a37ff836d919c3268746b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 497/874] python-snakeoil: rebuild for Python 3.8.

---
 srcpkgs/python-snakeoil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snakeoil/template b/srcpkgs/python-snakeoil/template
index 9c98461c555..79e964d9254 100644
--- a/srcpkgs/python-snakeoil/template
+++ b/srcpkgs/python-snakeoil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snakeoil'
 pkgname=python-snakeoil
 version=0.7.5
-revision=2
+revision=3
 wrksrc="snakeoil-${version}"
 build_style=python-module
 pycompile_module="snakeoil"

From c023c48bda41f4e9b16718923037b0abc4c9cc57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 498/874] python-snappy: rebuild for Python 3.8.

---
 srcpkgs/python-snappy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snappy/template b/srcpkgs/python-snappy/template
index ac386f64fae..b1870cbe681 100644
--- a/srcpkgs/python-snappy/template
+++ b/srcpkgs/python-snappy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snappy'
 pkgname=python-snappy
 version=0.5.4
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="snappy"
 hostmakedepends="python-setuptools python3-setuptools"

From cf3b5c203b490e3aa45e74d0cef8b0d0c4d9cbd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 499/874] python-snowballstemmer: rebuild for Python 3.8.

---
 srcpkgs/python-snowballstemmer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snowballstemmer/template b/srcpkgs/python-snowballstemmer/template
index 6c21632cffa..221478860e5 100644
--- a/srcpkgs/python-snowballstemmer/template
+++ b/srcpkgs/python-snowballstemmer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snowballstemmer'
 pkgname=python-snowballstemmer
 version=1.2.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="snowballstemmer-${version}"
 build_style=python-module

From ebbd083848ced4227417bedacb81db1e46b3b0d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 500/874] python-socketIO-client: rebuild for Python 3.8.

---
 srcpkgs/python-socketIO-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-socketIO-client/template b/srcpkgs/python-socketIO-client/template
index 32fdac4117d..9495d7cf40b 100644
--- a/srcpkgs/python-socketIO-client/template
+++ b/srcpkgs/python-socketIO-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-socketIO-client'
 pkgname=python-socketIO-client
 version=0.7.2
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="socketIO_client"

From bf4912c1b4d342f253c99ee2ff30408cc72ef150 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 501/874] python3-sortedcontainers: rebuild for Python 3.8.

---
 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 2b531ded9b6..41d87d4ebd0 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.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="sortedcontainers-${version}"
 build_style=python3-module

From d111b9221a51cf160ffadb598d8ab186bac3562f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 502/874] python-soupsieve: rebuild for Python 3.8.

---
 srcpkgs/python-soupsieve/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-soupsieve/template b/srcpkgs/python-soupsieve/template
index 586553ca759..63b65c5910f 100644
--- a/srcpkgs/python-soupsieve/template
+++ b/srcpkgs/python-soupsieve/template
@@ -1,7 +1,7 @@
 # Template file for 'python-soupsieve'
 pkgname=python-soupsieve
 version=1.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="soupsieve-${version}"
 build_style=python-module

From 505955408532e39107891c66bb40c986d8a5da3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 503/874] python3-spake2: rebuild for Python 3.8.

---
 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 ff83afed1d6..dc0cdced747 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=1
+revision=2
 archs=noarch
 wrksrc="python-spake2-${version}"
 build_style=python3-module

From ed28cd6c33b5a607891182e27d4edc4b33e42c75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 504/874] python-sphinx_rtd_theme: rebuild for Python 3.8.

---
 srcpkgs/python-sphinx_rtd_theme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinx_rtd_theme/template b/srcpkgs/python-sphinx_rtd_theme/template
index 90def1c9d1d..ebd4f13da8f 100644
--- a/srcpkgs/python-sphinx_rtd_theme/template
+++ b/srcpkgs/python-sphinx_rtd_theme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinx_rtd_theme'
 pkgname=python-sphinx_rtd_theme
 version=0.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinx_rtd_theme-${version}"
 build_style=python-module

From dc5c184f3eb8653ed7620ead5c8c28a67daed07d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 505/874] python-sphinxcontrib: rebuild for Python 3.8.

---
 srcpkgs/python-sphinxcontrib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib/template b/srcpkgs/python-sphinxcontrib/template
index ce3befc56d7..c6789cc77f5 100644
--- a/srcpkgs/python-sphinxcontrib/template
+++ b/srcpkgs/python-sphinxcontrib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib'
 pkgname=python-sphinxcontrib
 version=1.0
-revision=2
+revision=3
 archs=noarch
 create_wrksrc=yes
 pycompile_module="sphinxcontrib"

From 044129ada15eeb9695b554976702e8af049dcfd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 506/874] python-sphinxcontrib-websupport: rebuild for Python
 3.8.

---
 srcpkgs/python-sphinxcontrib-websupport/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib-websupport/template b/srcpkgs/python-sphinxcontrib-websupport/template
index 2236e50b25b..5387dec6519 100644
--- a/srcpkgs/python-sphinxcontrib-websupport/template
+++ b/srcpkgs/python-sphinxcontrib-websupport/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib-websupport'
 pkgname=python-sphinxcontrib-websupport
 version=1.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinxcontrib-websupport-${version}"
 build_style=python-module

From d4fb3b78447ca7349e0a94033b436c3e0caa5dc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 507/874] python-sqlalchemy-migrate: rebuild for Python 3.8.

---
 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 cfdf6166695..bb002660c0f 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=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 863a48d9543b2461c699350ad32bb2ae925e30c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 508/874] python-sqlparse: rebuild for Python 3.8.

---
 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 29a477db392..0f8c6f8ea2e 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=1
+revision=2
 archs=noarch
 wrksrc="sqlparse-${version}"
 build_style=python-module

From b477355bf26b723b8ab7cab61902be1e4aaee7bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 509/874] python-stem: rebuild for Python 3.8.

---
 srcpkgs/python-stem/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index e04ae0a848c..e16e79d84bb 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stem'
 pkgname=python-stem
 version=1.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stem-${version/b/}"
 build_style=python-module

From 82d435bdfc12ea7b4a3dabd17da5113470bffe26 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 510/874] python-stevedore: rebuild for Python 3.8.

---
 srcpkgs/python-stevedore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stevedore/template b/srcpkgs/python-stevedore/template
index 281538211af..4f781304d3f 100644
--- a/srcpkgs/python-stevedore/template
+++ b/srcpkgs/python-stevedore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stevedore'
 pkgname=python-stevedore
 version=1.30.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stevedore-${version}"
 build_style=python-module

From 2afe8f7a4ce71437484d9258f44ead34ae2f6647 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 511/874] python-stormssh: rebuild for Python 3.8.

---
 srcpkgs/python-stormssh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stormssh/template b/srcpkgs/python-stormssh/template
index 250e838e582..11f63f67bba 100644
--- a/srcpkgs/python-stormssh/template
+++ b/srcpkgs/python-stormssh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stormssh'
 pkgname=python-stormssh
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=storm-${version}
 build_style=python-module

From 754addaa6845cd505b5d744fa4e54a66dba9c4ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 512/874] python-subliminal: rebuild for Python 3.8.

---
 srcpkgs/python-subliminal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-subliminal/template b/srcpkgs/python-subliminal/template
index 035ca844880..216c11bb4c0 100644
--- a/srcpkgs/python-subliminal/template
+++ b/srcpkgs/python-subliminal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-subliminal'
 pkgname=python-subliminal
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="subliminal-${version}"
 build_style=python-module

From da488d7b04fb3b00046be4293c33ae0809dad8e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 513/874] python-sympy: rebuild for Python 3.8.

---
 srcpkgs/python-sympy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sympy/template b/srcpkgs/python-sympy/template
index 21d8cf69840..d41c8a392b0 100644
--- a/srcpkgs/python-sympy/template
+++ b/srcpkgs/python-sympy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sympy'
 pkgname=python-sympy
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="sympy-${version}"
 build_style=python-module

From 78857098e3058d7f0df7ece8be24b84196d16921 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 514/874] python-tables: rebuild for Python 3.8.

---
 srcpkgs/python-tables/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tables/template b/srcpkgs/python-tables/template
index 644ae3d1a35..5f61fe8fb88 100644
--- a/srcpkgs/python-tables/template
+++ b/srcpkgs/python-tables/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tables'
 pkgname=python-tables
 version=3.5.2
-revision=1
+revision=2
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="tables"

From 45955cd565bccabbc642dce6684af05ad7651ba5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 515/874] python3-tabulate: rebuild for Python 3.8.

---
 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 19b61edd88c..6f142077300 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="tabulate-${version}"
 build_style=python3-module

From 285f369cadcf0d14f66db8045bb3fb979e69937f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 516/874] python-tempita: rebuild for Python 3.8.

---
 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 9e7123fbd9d..c1c75ee1cac 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=3
+revision=4
 archs=noarch
 wrksrc="Tempita-${version}"
 build_style=python-module

From efa04f85df83993e48813e00587c05cd6c722387 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 517/874] python-tempora: rebuild for Python 3.8.

---
 srcpkgs/python-tempora/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tempora/template b/srcpkgs/python-tempora/template
index fa1cbd4fbd1..866d163f367 100644
--- a/srcpkgs/python-tempora/template
+++ b/srcpkgs/python-tempora/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tempora'
 pkgname=python-tempora
 version=1.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tempora-${version}"
 build_style=python-module

From 783b09196fc04d62a7e7a220ffffc941acedfeeb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 518/874] python-termcolor: rebuild for Python 3.8.

---
 srcpkgs/python-termcolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-termcolor/template b/srcpkgs/python-termcolor/template
index 877e5e59d9b..73c18fc79eb 100644
--- a/srcpkgs/python-termcolor/template
+++ b/srcpkgs/python-termcolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-termcolor'
 pkgname=python-termcolor
 version=1.1.0
-revision=5
+revision=6
 archs=noarch
 wrksrc="termcolor-${version}"
 build_style=python-module

From 469ef1b462bbb9fb2d5d97b38e357b662f5009d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 519/874] python-terminado: rebuild for Python 3.8.

---
 srcpkgs/python-terminado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-terminado/template b/srcpkgs/python-terminado/template
index cdfe6163991..d649364d88d 100644
--- a/srcpkgs/python-terminado/template
+++ b/srcpkgs/python-terminado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-terminado'
 pkgname=python-terminado
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="terminado-${version}"
 build_style=python-module

From ced3b80cce126ab9d23dd2a4bc9505e23b5a4888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 520/874] python3-terminaltables: rebuild for Python 3.8.

---
 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 60ada7ffcb6..4f781eab76d 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=1
+revision=2
 archs=noarch
 wrksrc="terminaltables-${version}"
 build_style=python3-module

From 7a90fec1dbe0347ede0762e747d8edf378bd497c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 521/874] python-testpath: rebuild for Python 3.8.

---
 srcpkgs/python-testpath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-testpath/template b/srcpkgs/python-testpath/template
index bac7270fd40..abfc59900c0 100644
--- a/srcpkgs/python-testpath/template
+++ b/srcpkgs/python-testpath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-testpath'
 pkgname=python-testpath
 version=0.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="testpath-${version}"
 build_style=python-module

From f8761f2f7116f9b2691807d35d9836a34fbbbf32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 522/874] python3-text-unidecode: rebuild for Python 3.8.

---
 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 77163d9e0b6..b3b5aa95575 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="text-unidecode-${version}"
 build_style=python3-module

From 2d2f99664b0644e22e4876b9d54048008a392289 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 523/874] python-texttable: rebuild for Python 3.8.

---
 srcpkgs/python-texttable/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-texttable/template b/srcpkgs/python-texttable/template
index a9c5ec66db1..24bac87af6a 100644
--- a/srcpkgs/python-texttable/template
+++ b/srcpkgs/python-texttable/template
@@ -1,7 +1,7 @@
 # Template file for 'python-texttable'
 pkgname=python-texttable
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="texttable-${version}"
 build_style=python-module

From c671c144e8fe81895f6995347d19725f72165b25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 524/874] python3-tinycss: rebuild for Python 3.8.

---
 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 91fda6f808d..3b4717c234e 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=1
+revision=2
 archs=noarch
 wrksrc=tinycss-${version}
 build_style=python3-module

From 9aa3e8105128dc5e3b86a83bd0ae76e7d9c9cf86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 525/874] python-tmuxp: rebuild for Python 3.8.

---
 srcpkgs/python-tmuxp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tmuxp/template b/srcpkgs/python-tmuxp/template
index 00c86730cbe..45b4a9772b2 100644
--- a/srcpkgs/python-tmuxp/template
+++ b/srcpkgs/python-tmuxp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tmuxp'
 pkgname=python-tmuxp
 version=1.5.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="tmuxp-${version}"
 build_style=python-module

From 995158f34c29d704b44eae2b32df801023781096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 526/874] python-toml: rebuild for Python 3.8.

---
 srcpkgs/python-toml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-toml/template b/srcpkgs/python-toml/template
index 0eee1b0b2c3..2fd6eaa0cea 100644
--- a/srcpkgs/python-toml/template
+++ b/srcpkgs/python-toml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-toml'
 pkgname=python-toml
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="toml-${version}"
 build_style=python-module

From 6270afd962719dd0e9b876b40ab7bf9be9936cf5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 527/874] python-tornado: rebuild for Python 3.8.

---
 srcpkgs/python-tornado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tornado/template b/srcpkgs/python-tornado/template
index 7e5700177f5..bd558d251f5 100644
--- a/srcpkgs/python-tornado/template
+++ b/srcpkgs/python-tornado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tornado'
 pkgname=python-tornado
 version=5.1.1
-revision=1
+revision=2
 wrksrc="tornado-${version}"
 build_style=python-module
 pycompile_module="tornado"

From cd9e416288ae101465f91c75453326fdead7d148 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 528/874] python-tqdm: rebuild for Python 3.8.

---
 srcpkgs/python-tqdm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tqdm/template b/srcpkgs/python-tqdm/template
index 69369bfd6b9..ef1f07127ad 100644
--- a/srcpkgs/python-tqdm/template
+++ b/srcpkgs/python-tqdm/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tqdm'
 pkgname=python-tqdm
 version=4.36.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tqdm-${version}"
 build_style=python-module

From 4ef8d34c3ab05cf43591d92220fc001007644a6d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 529/874] python-traitlets: rebuild for Python 3.8.

---
 srcpkgs/python-traitlets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-traitlets/template b/srcpkgs/python-traitlets/template
index d2d1b85edb6..797dd0268da 100644
--- a/srcpkgs/python-traitlets/template
+++ b/srcpkgs/python-traitlets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-traitlets'
 pkgname=python-traitlets
 version=4.3.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="traitlets-${version}"
 build_style=python-module

From f41edcb16535bb92b415439644ee01a61da14478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 530/874] python3-transifex-client: rebuild for Python 3.8.

---
 srcpkgs/python3-transifex-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-transifex-client/template b/srcpkgs/python3-transifex-client/template
index 77ca15313e0..5ea767b5a7d 100644
--- a/srcpkgs/python3-transifex-client/template
+++ b/srcpkgs/python3-transifex-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-transifex-client'
 pkgname=python3-transifex-client
 version=0.13.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="transifex-client-${version}"
 build_style=python3-module

From d2c27a7fe61e206ccbf655146feec32e4b13cfc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 531/874] python3-treq: rebuild for Python 3.8.

---
 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 8f210d13489..e46e1e7e7a5 100644
--- a/srcpkgs/python3-treq/template
+++ b/srcpkgs/python3-treq/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-treq'
 pkgname=python3-treq
 version=18.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="treq-${version}"
 build_style=python3-module

From 26b5427ba0e26d8712ebe081a774396e3ea39d76 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 532/874] python-ttystatus: rebuild for Python 3.8.

---
 srcpkgs/python-ttystatus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ttystatus/template b/srcpkgs/python-ttystatus/template
index 9fbefad3461..43e87ddcdf0 100644
--- a/srcpkgs/python-ttystatus/template
+++ b/srcpkgs/python-ttystatus/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ttystatus'
 pkgname=python-ttystatus
 version=0.38
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="ttystatus"

From dbf349fac2110dc33ad6d676748e46240dec1fbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 533/874] python-twitter: rebuild for Python 3.8.

---
 srcpkgs/python-twitter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-twitter/template b/srcpkgs/python-twitter/template
index c299b28dedf..e5e7194078a 100644
--- a/srcpkgs/python-twitter/template
+++ b/srcpkgs/python-twitter/template
@@ -1,7 +1,7 @@
 # Template file for 'python-twitter'
 pkgname=python-twitter
 version=3.5
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="twitter"

From 58eab12e88f689c694ef474e09d2266b77b5bcc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 534/874] python3-txacme: rebuild for Python 3.8.

---
 srcpkgs/python3-txacme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-txacme/template b/srcpkgs/python3-txacme/template
index e6becf593e7..c678addda4d 100644
--- a/srcpkgs/python3-txacme/template
+++ b/srcpkgs/python3-txacme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txacme'
 pkgname=python3-txacme
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="txacme-${version}"
 build_style=python3-module

From a1a3464258c255e0b73cbdb47e0337d3b8af473e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 535/874] python3-txaio: rebuild for Python 3.8.

---
 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 fa13338cd30..8163f5c90fd 100644
--- a/srcpkgs/python3-txaio/template
+++ b/srcpkgs/python3-txaio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txaio'
 pkgname=python3-txaio
 version=18.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="txaio-${version}"
 build_style=python3-module

From 66d08c9f4945499ccd01b127d7ec1f8cfd468dd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 536/874] python3-txtorcon: rebuild for Python 3.8.

---
 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 3018a65e457..a10ab59c582 100644
--- a/srcpkgs/python3-txtorcon/template
+++ b/srcpkgs/python3-txtorcon/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txtorcon'
 pkgname=python3-txtorcon
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="txtorcon-${version}"
 build_style=python3-module

From f3bf9db3f8b699c67eebc7fa0278fca9de892d75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 537/874] python3-typed-ast: update to 1.4.0.

---
 srcpkgs/python3-typed-ast/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-typed-ast/template b/srcpkgs/python3-typed-ast/template
index ec5b5b9df11..b38f0fe065c 100644
--- a/srcpkgs/python3-typed-ast/template
+++ b/srcpkgs/python3-typed-ast/template
@@ -1,8 +1,8 @@
 # Template file for 'python3-typed-ast'
 pkgname=python3-typed-ast
-version=1.3.4
+version=1.4.0
 revision=1
-wrksrc="typed-ast-${version}"
+wrksrc="typed_ast-${version}"
 build_style=python3-module
 pycompile_module="typed_ast"
 hostmakedepends="python3-devel python3-setuptools"
@@ -11,6 +11,6 @@ short_desc="Ast module with type comment support"
 maintainer="whoami <whoami@systemli.org>"
 license="Apache-2.0"
 homepage="https://github.com/python/typed_ast"
-distfiles="${PYPI_SITE}/t/typed-ast/typed-ast-${version}.tar.gz"
-checksum=68c362848d9fb71d3c3e5f43c09974a0ae319144634e7a47db62f0f2a54a7fa7
+distfiles="${PYPI_SITE}/t/typed-ast/typed_ast-${version}.tar.gz"
+checksum=66480f95b8167c9c5c5c87f32cf437d585937970f3fc24386f313a4c97b44e34
 nocross="https://travis-ci.org/void-linux/void-packages/jobs/509366923#L1009"

From d977434aa35e2c6bc03c5db7514f5409eb21a2a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 538/874] python3-typing_extensions: rebuild for Python 3.8.

---
 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 ab96df4eb2d..605af46216d 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=3.6.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module

From d1368b489e196a385edf9b15df4da773505f8a5e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 539/874] python-tzlocal: rebuild for Python 3.8.

---
 srcpkgs/python-tzlocal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tzlocal/template b/srcpkgs/python-tzlocal/template
index 396eada3982..684d2a21b40 100644
--- a/srcpkgs/python-tzlocal/template
+++ b/srcpkgs/python-tzlocal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tzlocal'
 pkgname=python-tzlocal
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tzlocal-${version}"
 build_style=python-module

From 0ec72579de99edead05daf85e7cac5e0e2ab641b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 540/874] python-unittest-mixins: rebuild for Python 3.8.

---
 srcpkgs/python-unittest-mixins/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-unittest-mixins/template b/srcpkgs/python-unittest-mixins/template
index 6f7c7204112..2ff5c497523 100644
--- a/srcpkgs/python-unittest-mixins/template
+++ b/srcpkgs/python-unittest-mixins/template
@@ -1,7 +1,7 @@
 # Template file for 'python-unittest-mixins'
 pkgname=python-unittest-mixins
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From a5e3289470d7f0e25e09237aa9463d28817818c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 541/874] python3-unpaddedbase64: rebuild for Python 3.8.

---
 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 37df2c1d642..06a47db3b64 100644
--- a/srcpkgs/python3-unpaddedbase64/template
+++ b/srcpkgs/python3-unpaddedbase64/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-unpaddedbase64'
 pkgname=python3-unpaddedbase64
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-unpaddedbase64-${version}"
 build_style=python3-module

From 13043751d10b741546f419a7e9089a5b252fd5c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 542/874] python-urbandict: rebuild for Python 3.8.

---
 srcpkgs/python-urbandict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urbandict/template b/srcpkgs/python-urbandict/template
index ff09e963fa7..ed359c744be 100644
--- a/srcpkgs/python-urbandict/template
+++ b/srcpkgs/python-urbandict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urbandict'
 pkgname=python-urbandict
 version=0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="urbandict-${version}"
 build_style=python-module

From a15bf0893e7a65a070751099b3ddca9172b49912 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 543/874] python-uritemplate: rebuild for Python 3.8.

---
 srcpkgs/python-uritemplate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-uritemplate/template b/srcpkgs/python-uritemplate/template
index 7a530fee03b..cdcda419efe 100644
--- a/srcpkgs/python-uritemplate/template
+++ b/srcpkgs/python-uritemplate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-uritemplate'
 pkgname=python-uritemplate
 version=3.0.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 43c97a015ea83b2b0934ea864a84b324ec83f31a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 544/874] python3-urlgrabber: rebuild for Python 3.8.

---
 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 087087d5ed1..eef67c8e13c 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=1
+revision=2
 archs=noarch
 wrksrc="urlgrabber-${version}"
 build_style=python3-module

From 016dbcff2bb0c1709814f4da4fe214d551e3d4cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 545/874] python-urllib3: rebuild for Python 3.8.

---
 srcpkgs/python-urllib3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urllib3/template b/srcpkgs/python-urllib3/template
index 8056518c9c1..1ff21f7555d 100644
--- a/srcpkgs/python-urllib3/template
+++ b/srcpkgs/python-urllib3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urllib3'
 pkgname=python-urllib3
 version=1.25.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="urllib3-${version}"
 build_style=python-module

From 9629da352be38a0f14bcb680c7fc05dd1d1167f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 546/874] python-urwid: rebuild for Python 3.8.

---
 srcpkgs/python-urwid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwid/template b/srcpkgs/python-urwid/template
index ae6722b1135..7adf8b76b96 100644
--- a/srcpkgs/python-urwid/template
+++ b/srcpkgs/python-urwid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwid'
 pkgname=python-urwid
 version=2.0.1
-revision=2
+revision=3
 wrksrc="urwid-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"

From 4be978b1173afce93e7ff39f6e577059f4c7dd4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 547/874] python-urwidtrees: rebuild for Python 3.8.

---
 srcpkgs/python-urwidtrees/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwidtrees/template b/srcpkgs/python-urwidtrees/template
index be0e906addf..62d214489e2 100644
--- a/srcpkgs/python-urwidtrees/template
+++ b/srcpkgs/python-urwidtrees/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwidtrees'
 pkgname=python-urwidtrees
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="urwidtrees-${version}"
 build_style=python-module

From c9f3ad0ed793593060952aa365e888244dfd07e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 548/874] python3-usb: rebuild for Python 3.8.

---
 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 a081ee5ba76..d26c24df669 100644
--- a/srcpkgs/python3-usb/template
+++ b/srcpkgs/python3-usb/template
@@ -2,7 +2,7 @@
 pkgname=python3-usb
 _pkgname=pyusb
 version=1.0.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From 454ef49754696a81de599e7fa6cf9cab31ccbc31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 549/874] python-utils: rebuild for Python 3.8.

---
 srcpkgs/python-utils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-utils/template b/srcpkgs/python-utils/template
index e881e70c0f0..6745df121a6 100644
--- a/srcpkgs/python-utils/template
+++ b/srcpkgs/python-utils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-utils'
 pkgname=python-utils
 version=2.3.0
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 wrksrc="python-utils-${version}"

From eef5c75b93453defdcb8def5b34c20f20cda0fc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 550/874] python3-validators: rebuild for Python 3.8.

---
 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 29b9fc74c30..6d9da94c4bb 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.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="validators-${version}"
 build_style=python3-module

From 53ce0ff21de84f26405d0314002bb11e85903128 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 551/874] python3-vdf: rebuild for Python 3.8.

---
 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 44c635ecdd6..88bd521beaa 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.2
-revision=1
+revision=2
 wrksrc=vdf-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From f720d6ed8267fa4b27a7ce83dd3a265a18cd13b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 552/874] python-vint: rebuild for Python 3.8.

---
 srcpkgs/python-vint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vint/template b/srcpkgs/python-vint/template
index 4ca693f7eb2..62c663bf18e 100644
--- a/srcpkgs/python-vint/template
+++ b/srcpkgs/python-vint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vint'
 pkgname=python-vint
 version=0.3.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="vim-vint-${version}"
 build_style=python-module

From 573eadbcb861065b712050cf6e7fd200c33a73b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 553/874] python-virtualenv: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv/template b/srcpkgs/python-virtualenv/template
index 1f9166e79a2..cdeda28c53e 100644
--- a/srcpkgs/python-virtualenv/template
+++ b/srcpkgs/python-virtualenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv'
 pkgname=python-virtualenv
 version=16.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="virtualenv-${version}"
 build_style=python-module

From 25eda2949787b488dfc7cfc6512d02a4971d4f96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 554/874] python-virtualenv-clone: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv-clone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv-clone/template b/srcpkgs/python-virtualenv-clone/template
index 3c9f601bc6e..273b9ddf6d3 100644
--- a/srcpkgs/python-virtualenv-clone/template
+++ b/srcpkgs/python-virtualenv-clone/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv-clone'
 pkgname=python-virtualenv-clone
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5a922ea064a496fb01ff970e45a43ef51561b373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 555/874] python3-virustotal-api: rebuild for Python 3.8.

---
 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 2bc6592c91f..fc362c03b39 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=1
+revision=2
 archs=noarch
 wrksrc="virustotal-api-${version}"
 build_style=python3-module

From 65deaff01a3a9a5d82641fe121fdb2964b75346f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 556/874] python-vispy: rebuild for Python 3.8.

---
 srcpkgs/python-vispy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vispy/template b/srcpkgs/python-vispy/template
index b757e5a271f..624ade6f12b 100644
--- a/srcpkgs/python-vispy/template
+++ b/srcpkgs/python-vispy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vispy'
 pkgname=python-vispy
 version=0.6.1
-revision=1
+revision=2
 wrksrc="vispy-${version}"
 build_style=python-module
 pycompile_module="vispy"

From 5e47d846dedfdbef61bd10a33928ce13b600c648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 557/874] python-vobject: rebuild for Python 3.8.

---
 srcpkgs/python-vobject/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vobject/template b/srcpkgs/python-vobject/template
index 54f575aa1a1..2c1c215527c 100644
--- a/srcpkgs/python-vobject/template
+++ b/srcpkgs/python-vobject/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vobject'
 pkgname=python-vobject
 version=0.9.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="vobject-${version}"
 build_style=python-module

From 8125ffd3d4822ca6bf81508ed8b859e079cd9437 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 558/874] python-voluptuous: rebuild for Python 3.8.

---
 srcpkgs/python-voluptuous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-voluptuous/template b/srcpkgs/python-voluptuous/template
index fd44ae2e324..1dd5de27491 100644
--- a/srcpkgs/python-voluptuous/template
+++ b/srcpkgs/python-voluptuous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-voluptuous'
 pkgname=python-voluptuous
 version=0.11.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="voluptuous-${version}"
 build_style=python-module

From 608126ee8043f8d45a8e56608f99e0df6cc2ee9e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 559/874] python-watchdog: rebuild for Python 3.8.

---
 srcpkgs/python-watchdog/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchdog/template b/srcpkgs/python-watchdog/template
index f6027c3b5ca..2eea6397f00 100644
--- a/srcpkgs/python-watchdog/template
+++ b/srcpkgs/python-watchdog/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchdog'
 pkgname=python-watchdog
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="watchdog-${version}"
 build_style=python-module

From a54fc09b58f905a0ed5cd5892db67b7c4ea6ae9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 560/874] python-watchman: rebuild for Python 3.8.

---
 srcpkgs/python-watchman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchman/template b/srcpkgs/python-watchman/template
index 4c41c275ca2..97400668d64 100644
--- a/srcpkgs/python-watchman/template
+++ b/srcpkgs/python-watchman/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchman'
 pkgname=python-watchman
 version=1.4.1
-revision=2
+revision=3
 wrksrc="pywatchman-${version}"
 build_style=python-module
 pycompile_module="pywatchman"

From 4dd6084e6c30a25fb4ff3c44bf2c751eaab07715 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 561/874] python-wcwidth: rebuild for Python 3.8.

---
 srcpkgs/python-wcwidth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wcwidth/template b/srcpkgs/python-wcwidth/template
index 34bc22cbcb6..8ec6d17450c 100644
--- a/srcpkgs/python-wcwidth/template
+++ b/srcpkgs/python-wcwidth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wcwidth'
 pkgname=python-wcwidth
 version=0.1.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="wcwidth-${version}"
 build_style=python-module

From cafaf5868e58cb26c2cdd29d0d1b52f9cf1e31ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 562/874] python-webassets: rebuild for Python 3.8.

---
 srcpkgs/python-webassets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webassets/template b/srcpkgs/python-webassets/template
index 3ad5475bd17..789be9684f7 100644
--- a/srcpkgs/python-webassets/template
+++ b/srcpkgs/python-webassets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webassets'
 pkgname=python-webassets
 version=0.12.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 88d8fa4eb1ca72857d5a1cab8a4f7495a9af1595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 563/874] python-webencodings: rebuild for Python 3.8.

---
 srcpkgs/python-webencodings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webencodings/template b/srcpkgs/python-webencodings/template
index 5a05af10835..f047a9e3c52 100644
--- a/srcpkgs/python-webencodings/template
+++ b/srcpkgs/python-webencodings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webencodings'
 pkgname=python-webencodings
 version=0.5.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="webencodings-${version}"
 build_style=python-module

From 81c9d07c0e756cc87a6cd2c444c0b2f0987463da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 564/874] python-websocket-client: rebuild for Python 3.8.

---
 srcpkgs/python-websocket-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-websocket-client/template b/srcpkgs/python-websocket-client/template
index 8aa276655cb..3df8ab42b36 100644
--- a/srcpkgs/python-websocket-client/template
+++ b/srcpkgs/python-websocket-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-websocket-client'
 pkgname=python-websocket-client
 version=0.56.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="websocket_client-${version}"
 build_style=python-module

From 97fc927913b3f2682b7ddf73982008e9fdc1e42d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 565/874] python-wheel: rebuild for Python 3.8.

---
 srcpkgs/python-wheel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wheel/template b/srcpkgs/python-wheel/template
index 11c50bd65e6..11aeaf42316 100644
--- a/srcpkgs/python-wheel/template
+++ b/srcpkgs/python-wheel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wheel'
 pkgname=python-wheel
 version=0.32.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="wheel-${version}"
 build_style=python-module

From 861d20f2f112cd829f2f06f746680e2c034a812f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 566/874] python-wikipedia: rebuild for Python 3.8.

---
 srcpkgs/python-wikipedia/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wikipedia/template b/srcpkgs/python-wikipedia/template
index e6ebf65f7c2..f8a69755b74 100644
--- a/srcpkgs/python-wikipedia/template
+++ b/srcpkgs/python-wikipedia/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wikipedia'
 pkgname=python-wikipedia
 version=1.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="wikipedia-${version}"
 build_style=python-module

From c58e9b08de69bd19aa3bcf91ec42d1b626a2a6bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 567/874] python-wrapt: rebuild for Python 3.8.

---
 srcpkgs/python-wrapt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wrapt/template b/srcpkgs/python-wrapt/template
index a3a237aa08d..c2d2850bf5a 100644
--- a/srcpkgs/python-wrapt/template
+++ b/srcpkgs/python-wrapt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wrapt'
 pkgname=python-wrapt
 version=1.10.11
-revision=3
+revision=4
 wrksrc="wrapt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From f65cbaf6b92acb78d54d3b498924285bce64fb66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 568/874] python-wsproto: rebuild for Python 3.8.

---
 srcpkgs/python-wsproto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wsproto/template b/srcpkgs/python-wsproto/template
index 88b08f796d4..a93a799be0a 100644
--- a/srcpkgs/python-wsproto/template
+++ b/srcpkgs/python-wsproto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wsproto'
 pkgname=python-wsproto
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="wsproto-${version}"
 build_style=python-module

From 1b60fb796f8ac377a2e31dc0503df215c27fc59e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 569/874] python-xapp: rebuild for Python 3.8.

---
 srcpkgs/python-xapp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xapp/template b/srcpkgs/python-xapp/template
index 9b6938113f2..798041eb946 100644
--- a/srcpkgs/python-xapp/template
+++ b/srcpkgs/python-xapp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xapp'
 pkgname=python-xapp
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="xapp"

From 415bec8de0abe2772c407df9db650bd06ba122ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 570/874] python-xdg: rebuild for Python 3.8.

---
 srcpkgs/python-xdg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xdg/template b/srcpkgs/python-xdg/template
index afa6c180043..4e819c8bec7 100644
--- a/srcpkgs/python-xdg/template
+++ b/srcpkgs/python-xdg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xdg'
 pkgname=python-xdg
 version=0.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyxdg-${version}"
 build_style=python-module

From 4518feeb499caa6631ef29ead0439c5bcc67a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 571/874] python-xlib: rebuild for Python 3.8.

---
 srcpkgs/python-xlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xlib/template b/srcpkgs/python-xlib/template
index 1f97c4117d4..e67d1d82e73 100644
--- a/srcpkgs/python-xlib/template
+++ b/srcpkgs/python-xlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xlib'
 pkgname=python-xlib
 version=0.25
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="Xlib"

From 1cef928049b5216468e701acce714fc14d79694f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 572/874] python-xmldiff: rebuild for Python 3.8.

---
 srcpkgs/python-xmldiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmldiff/template b/srcpkgs/python-xmldiff/template
index a0a8004ea7b..4f3cc2d27b7 100644
--- a/srcpkgs/python-xmldiff/template
+++ b/srcpkgs/python-xmldiff/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmldiff'
 pkgname=python-xmldiff
 version=2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmldiff-${version}"
 build_style=python-module

From cefcbea2ec7904b0c1ad16ec32963bf430b27c4a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 573/874] python-xmltodict: rebuild for Python 3.8.

---
 srcpkgs/python-xmltodict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmltodict/template b/srcpkgs/python-xmltodict/template
index a48e6d46aa6..b3d7ef042e8 100644
--- a/srcpkgs/python-xmltodict/template
+++ b/srcpkgs/python-xmltodict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmltodict'
 pkgname=python-xmltodict
 version=0.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmltodict-${version}"
 build_style=python-module

From 889d5fe9fe9f1830bec336ac52bd8bd32f47f0a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 574/874] python-yaml: rebuild for Python 3.8.

---
 srcpkgs/python-yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yaml/template b/srcpkgs/python-yaml/template
index 8a7caf1d99e..e3bad0ae59b 100644
--- a/srcpkgs/python-yaml/template
+++ b/srcpkgs/python-yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yaml'
 pkgname=python-yaml
 version=5.1.2
-revision=1
+revision=2
 wrksrc="PyYAML-${version}"
 build_style=python-module
 pycompile_module="yaml"

From 1b3e89ca272ae28a62064bf83eaff84332307682 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 575/874] python-yamllint: rebuild for Python 3.8.

---
 srcpkgs/python-yamllint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yamllint/template b/srcpkgs/python-yamllint/template
index 1a05e1043bb..d0b51ba637a 100644
--- a/srcpkgs/python-yamllint/template
+++ b/srcpkgs/python-yamllint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yamllint'
 pkgname=python-yamllint
 version=1.15.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="yamllint-${version}"
 build_style=python-module

From b233bcb50542e39ba02899ef3d1b833e385204e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 576/874] python3-yarl: rebuild for Python 3.8.

---
 srcpkgs/python3-yarl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-yarl/template b/srcpkgs/python3-yarl/template
index 222f176cfcf..ecb79a3cc9c 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.3.0
-revision=2
+revision=3
 wrksrc="yarl-${version}"
 build_style=python3-module
 pycompile_module="yarl"

From 484c2559f18644c63342db467c703e2e998e89b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 577/874] python-zc.lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-zc.lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zc.lockfile/template b/srcpkgs/python-zc.lockfile/template
index cb0bee99506..b77071af04f 100644
--- a/srcpkgs/python-zc.lockfile/template
+++ b/srcpkgs/python-zc.lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zc.lockfile'
 pkgname=python-zc.lockfile
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 364e398c8dd7e3dd141ceb1c22626ecf2a5b9b32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 578/874] python3-zeroconf: rebuild for Python 3.8.

---
 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 497a8bc6b69..dda37bd3dc4 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.23.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-zeroconf-${version}"
 build_style=python3-module

From 22b5d6236d8f0ff0050135b2e77eca608519b1ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 579/874] python3-zipp: rebuild for Python 3.8.

---
 srcpkgs/python3-zipp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-zipp/template b/srcpkgs/python3-zipp/template
index 8445c10825c..ba682915beb 100644
--- a/srcpkgs/python3-zipp/template
+++ b/srcpkgs/python3-zipp/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-zipp'
 pkgname=python3-zipp
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="zipp-${version}"
 build_style=python3-module

From c5c37d6e890a553e458333e610ab56b1a5c9b516 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 580/874] python-zipstream: rebuild for Python 3.8.

---
 srcpkgs/python-zipstream/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zipstream/template b/srcpkgs/python-zipstream/template
index 89079e21b22..2c7390127ac 100644
--- a/srcpkgs/python-zipstream/template
+++ b/srcpkgs/python-zipstream/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zipstream'
 pkgname=python-zipstream
 version=1.1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="python-zipstream-${version}"
 build_style=python-module

From bc31e25a00839c9d3cc5ac70edf0485ee4b21d4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 581/874] python3-zope.cachedescriptors: rebuild for Python
 3.8.

---
 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 bdd5ef41e21..1f1fae5b27b 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.3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="zope.cachedescriptors-${version}"
 build_style=python3-module

From 40a63988f3c2db41391f0a7ab6cde24a9b79ed05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 582/874] python-zope.component: rebuild for Python 3.8.

---
 srcpkgs/python-zope.component/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.component/template b/srcpkgs/python-zope.component/template
index 7cea5b9d71d..66ef109a4aa 100644
--- a/srcpkgs/python-zope.component/template
+++ b/srcpkgs/python-zope.component/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.component'
 pkgname=python-zope.component
 version=4.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 799496c35db93c88e6d00e4b41eeca8b4af5b188 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 583/874] python-zope.event: rebuild for Python 3.8.

---
 srcpkgs/python-zope.event/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.event/template b/srcpkgs/python-zope.event/template
index 3c7fb8dfd6e..6518cb4529b 100644
--- a/srcpkgs/python-zope.event/template
+++ b/srcpkgs/python-zope.event/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.event'
 pkgname=python-zope.event
 version=4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d77b16ecad39877131af8a9c01ea925b33737b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 584/874] python-zope.interface: rebuild for Python 3.8.

---
 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 d3c57be85f7..1dbcbecd377 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=4.6.0
-revision=2
+revision=3
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="zope"

From e5cb80612a71c54facf607c52c7a385badeba668 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 585/874] python3-pivy: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-pivy/patches/73cd928f.patch | 36 +++++++++++++++++++++
 srcpkgs/python3-pivy/template               |  2 +-
 2 files changed, 37 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/python3-pivy/patches/73cd928f.patch

diff --git a/srcpkgs/python3-pivy/patches/73cd928f.patch b/srcpkgs/python3-pivy/patches/73cd928f.patch
new file mode 100644
index 00000000000..edff803822a
--- /dev/null
+++ b/srcpkgs/python3-pivy/patches/73cd928f.patch
@@ -0,0 +1,36 @@
+From 73cd928fe1a9c2abbe6f28844a7fc695ad11d7cf Mon Sep 17 00:00:00 2001
+From: Peter Lama <peterldev94@gmail.com>
+Date: Fri, 24 Aug 2018 17:25:47 -0700
+Subject: [PATCH] Fix issue #39: PyUnicode_AsUTF8 returns const char*
+
+Even with python 2, it doesn't seem like char* is needed
+
+--- Inventor/nodes/SoMarkerSet.i
++++ Inventor/nodes/SoMarkerSet.i
+@@ -5,7 +5,7 @@
+         short WIDTH, HEIGHT;
+         size.getValue(WIDTH, HEIGHT);
+         short BYTEWIDTH = (WIDTH + 7) / 2;
+-        char* coin_marker;
++        const char* coin_marker;
+ #ifdef PY_2
+         if (PyString_Check(string))
+         {
+@@ -49,4 +49,4 @@
+         delete[] bitmapbytes;
+         bitmapbytes = NULL;
+     }
+-}
+\ No newline at end of file
++}
+--- Inventor/sensors/SoSensor.i
++++ Inventor/sensors/SoSensor.i
+@@ -4,7 +4,7 @@ SoSensorPythonCB(void * data, SoSensor * sensor)
+ {
+   PyGILState_STATE gil = PyGILState_Ensure();
+   swig_type_info * swig_type = 0;
+-  char * sensor_cast_name = NULL;
++  const char * sensor_cast_name = NULL;
+   PyObject * func, * arglist;
+   PyObject * result, * pysensor;
+ 
diff --git a/srcpkgs/python3-pivy/template b/srcpkgs/python3-pivy/template
index 4a733e805e3..9caa13837e2 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.4
-revision=1
+revision=2
 wrksrc="Coin3D-${pkgname#python3-}-a84100beff22"
 build_style=python3-module
 pycompile_module="pivy"

From 7d8cfe1721327d4b8695c6abc56d012b27989c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 586/874] python-tweepy: update to 3.8.0.

---
 srcpkgs/python-tweepy/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python-tweepy/template b/srcpkgs/python-tweepy/template
index ef61039dac5..4605bbf83ea 100644
--- a/srcpkgs/python-tweepy/template
+++ b/srcpkgs/python-tweepy/template
@@ -1,6 +1,6 @@
 # Template file for 'python-tweepy'
 pkgname=python-tweepy
-version=3.7.0
+version=3.8.0
 revision=1
 archs=noarch
 wrksrc="tweepy-${version}"
@@ -14,8 +14,8 @@ license="MIT"
 homepage="https://github.com/tweepy/tweepy"
 distfiles="${PYPI_SITE}/t/tweepy/tweepy-${version}.tar.gz
  https://raw.githubusercontent.com/tweepy/tweepy/master/LICENSE>LICENSE.txt"
-checksum="fe85a79f58a01dd335968523b91c5fce760e7fe78bf25a6e71c72204fe499d0b
- deeeae0dcc22dbf108a801b8dc4e484bcc1bfb541b1a4f4615ab3e61def44fb5"
+checksum="8abd828ba51a85a2b5bb7373715d6d3bb32d18ac624e3a4db02e4ef8ab48316b
+ bf9bc5b9dcb8421bb3c342bb7fd29194688e1262b50766bd71b21a07461e74b7"
 
 post_install() {
 	vlicense ../LICENSE.txt

From 5f654f2f6a7eca9a50adb53af9037466723dd82c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 587/874] Electron-Cash: rebuild for Python 3.8.

---
 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 2db05c94832..08670c5f08d 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.0.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electroncash electroncash_gui electroncash_plugins"

From 931f125f8699e33cb16c8ed43a5e910d0056db6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 588/874] OpenLP: rebuild for Python 3.8.

---
 srcpkgs/OpenLP/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/OpenLP/template b/srcpkgs/OpenLP/template
index fb417f8d05e..ccae6d0282e 100644
--- a/srcpkgs/OpenLP/template
+++ b/srcpkgs/OpenLP/template
@@ -1,7 +1,7 @@
 # Template file for 'OpenLP'
 pkgname=OpenLP
 version=2.4.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="openlp"

From 21b02367e81c8635c88830fd008c0ba44ffcccff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 589/874] PhotoCollage: rebuild for Python 3.8.

---
 srcpkgs/PhotoCollage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/PhotoCollage/template b/srcpkgs/PhotoCollage/template
index 2c55ca87ce0..9997d1e7d98 100644
--- a/srcpkgs/PhotoCollage/template
+++ b/srcpkgs/PhotoCollage/template
@@ -1,7 +1,7 @@
 # Template file for 'PhotoCollage'
 pkgname=PhotoCollage
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="photocollage"

From 49dffe4070ca7dff3c38379b8df9d9b0d04395ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 590/874] ReText: rebuild for Python 3.8.

---
 srcpkgs/ReText/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ReText/template b/srcpkgs/ReText/template
index cc092ee6a36..a6551fbdf7c 100644
--- a/srcpkgs/ReText/template
+++ b/srcpkgs/ReText/template
@@ -1,7 +1,7 @@
 # Template file for 'ReText'
 pkgname=ReText
 version=7.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ReText"

From 225e30aaea5daebb0d4fc36c6d73424ad6fb1ec5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 591/874] SoapySDR: rebuild for Python 3.8.

---
 srcpkgs/SoapySDR/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/SoapySDR/template b/srcpkgs/SoapySDR/template
index 1bb66ce0689..bcfe45dc78a 100644
--- a/srcpkgs/SoapySDR/template
+++ b/srcpkgs/SoapySDR/template
@@ -1,7 +1,7 @@
 # Template file for 'SoapySDR'
 pkgname=SoapySDR
 version=0.7.1
-revision=1
+revision=2
 wrksrc="${pkgname}-soapy-sdr-${version}"
 build_style=cmake
 pycompile_module="SoapySDR.py"

From 2e64750e75e61296567ebb0053c46081cbab8e13 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 592/874] Solaar: rebuild for Python 3.8.

---
 srcpkgs/Solaar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Solaar/template b/srcpkgs/Solaar/template
index 2e8f4112e0e..86cab83d497 100644
--- a/srcpkgs/Solaar/template
+++ b/srcpkgs/Solaar/template
@@ -1,7 +1,7 @@
 # Template file for 'Solaar'
 pkgname=Solaar
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="hidapi logitech_receiver solaar"

From 21eb59c332d0765268a9b3a5442e4e265144a4ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 593/874] Trimage: rebuild for Python 3.8.

---
 srcpkgs/Trimage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Trimage/template b/srcpkgs/Trimage/template
index 14fc1d1bd1c..c9f4b047ccd 100644
--- a/srcpkgs/Trimage/template
+++ b/srcpkgs/Trimage/template
@@ -1,7 +1,7 @@
 # Template file for 'Trimage'
 pkgname=Trimage
 version=1.0.6
-revision=1
+revision=2
 wrksrc="Trimage-${version}"
 build_style=python3-module
 hostmakedepends="python3"

From 51428dec66979d2e47361fb2af5e7ad35acbe530 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 594/874] TwitchNotifier: rebuild for Python 3.8.

---
 srcpkgs/TwitchNotifier/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/TwitchNotifier/template b/srcpkgs/TwitchNotifier/template
index 01153bcc710..3bbba11db49 100644
--- a/srcpkgs/TwitchNotifier/template
+++ b/srcpkgs/TwitchNotifier/template
@@ -1,7 +1,7 @@
 # Template file for 'TwitchNotifier'
 pkgname=TwitchNotifier
 version=0.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-devel"
 makedepends="python3-devel"

From 18ad02f16088cf17e66f60da882ead88b4872617 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 595/874] Uranium: rebuild for Python 3.8.

---
 srcpkgs/Uranium/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Uranium/template b/srcpkgs/Uranium/template
index 193d5e211df..7a9509c2079 100644
--- a/srcpkgs/Uranium/template
+++ b/srcpkgs/Uranium/template
@@ -1,7 +1,7 @@
 # Template file for 'Uranium'
 pkgname=Uranium
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=cmake
 pycompile_module="UM"

From 1bfabd6cc63a8b03b99500dc59e362061f7549e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 596/874] afew: rebuild for Python 3.8.

---
 srcpkgs/afew/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/afew/template b/srcpkgs/afew/template
index a9156bbc902..f4b10098e66 100644
--- a/srcpkgs/afew/template
+++ b/srcpkgs/afew/template
@@ -1,7 +1,7 @@
 # Template file for 'afew'
 pkgname=afew
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="afew"

From f0695c0a0e527ead9d61cbbd52e872f5a6e7f422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 597/874] alot: rebuild for Python 3.8.

---
 srcpkgs/alot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/alot/template b/srcpkgs/alot/template
index 4ff75637282..c8e29e36297 100644
--- a/srcpkgs/alot/template
+++ b/srcpkgs/alot/template
@@ -1,7 +1,7 @@
 # Template file for 'alot'
 pkgname=alot
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="alot"

From ec032cb507b4dca0034eab7e0281dedd3b7dc418 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 598/874] ansible: rebuild for Python 3.8.

---
 srcpkgs/ansible/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ansible/template b/srcpkgs/ansible/template
index 413e6f8803e..773f890e114 100644
--- a/srcpkgs/ansible/template
+++ b/srcpkgs/ansible/template
@@ -1,7 +1,7 @@
 # Template file for 'ansible'
 pkgname=ansible
 version=2.8.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ansible"

From a97554cec966a402d73b894865fe2d37f1833cec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 599/874] apparmor: rebuild for Python 3.8.

---
 srcpkgs/apparmor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/apparmor/template b/srcpkgs/apparmor/template
index c0ef28bae03..e4f8e3fb3ae 100644
--- a/srcpkgs/apparmor/template
+++ b/srcpkgs/apparmor/template
@@ -1,7 +1,7 @@
 # Template file for 'apparmor'
 pkgname=apparmor
 version=2.13.3
-revision=1
+revision=2
 wrksrc="${pkgname}-v${version}"
 build_wrksrc=libraries/libapparmor
 build_style=gnu-configure

From 57116ea3c564f2a1852b8583df85c35aefe177a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 600/874] arandr: rebuild for Python 3.8.

---
 srcpkgs/arandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/arandr/template b/srcpkgs/arandr/template
index 71c8cbcd6ed..610dbc28bca 100644
--- a/srcpkgs/arandr/template
+++ b/srcpkgs/arandr/template
@@ -1,7 +1,7 @@
 # Template file for 'arandr'
 pkgname=arandr
 version=0.1.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenlayout"

From 4dbfc32dae63dc77f95207dc5aa5a79d26d2c9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 601/874] asciinema: rebuild for Python 3.8.

---
 srcpkgs/asciinema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/asciinema/template b/srcpkgs/asciinema/template
index 961b2756301..38b8871753c 100644
--- a/srcpkgs/asciinema/template
+++ b/srcpkgs/asciinema/template
@@ -1,7 +1,7 @@
 # Template file for 'asciinema'
 pkgname=asciinema
 version=2.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="asciinema"

From 956b672f4c6db0ea67d9ad05a8308ec5ea193930 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 602/874] attic: rebuild for Python 3.8.

---
 srcpkgs/attic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/attic/template b/srcpkgs/attic/template
index 533ef7377bc..ed454302ce4 100644
--- a/srcpkgs/attic/template
+++ b/srcpkgs/attic/template
@@ -1,7 +1,7 @@
 # Template file for 'attic'
 pkgname=attic
 version=0.16
-revision=14
+revision=15
 wrksrc="Attic-$version"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel python3-Sphinx"

From 3a21ab47b75c96c91b8447979356e5d4d4027fd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 603/874] autorandr: rebuild for Python 3.8.

---
 srcpkgs/autorandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/autorandr/template b/srcpkgs/autorandr/template
index bf38b833632..7f9796be18f 100644
--- a/srcpkgs/autorandr/template
+++ b/srcpkgs/autorandr/template
@@ -1,7 +1,7 @@
 # Template file for 'autorandr'
 pkgname=autorandr
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="autorandr.py"

From ca443f3bf2b2ea4c91fa81f47ea823293476950b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 604/874] avideo: rebuild for Python 3.8.

---
 srcpkgs/avideo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/avideo/template b/srcpkgs/avideo/template
index e4d004aafff..6430d391286 100644
--- a/srcpkgs/avideo/template
+++ b/srcpkgs/avideo/template
@@ -1,7 +1,7 @@
 # Template file for 'avideo'
 pkgname=avideo
 version=2017.9.27
-revision=3
+revision=4
 archs=noarch
 wrksrc="avideo"
 build_style=python3-module

From b1abf9d1270b34913e7bd6dbfcd004dba8a8c5ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 605/874] aws-cli: rebuild for Python 3.8.

---
 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 4e5e200e3f9..4328e203c3c 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.16.253
-revision=1
+revision=2
 archs=noarch
 wrksrc="aws-cli-${version}"
 build_style=python3-module

From af6fd86e4f623114e23d8cd19217a8ba196231c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 606/874] bandit: rebuild for Python 3.8.

---
 srcpkgs/bandit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bandit/template b/srcpkgs/bandit/template
index e6c1aa52d7c..d29873ecf61 100644
--- a/srcpkgs/bandit/template
+++ b/srcpkgs/bandit/template
@@ -1,7 +1,7 @@
 # Template file for 'bandit'
 pkgname=bandit
 version=1.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="bandit"

From acb296380ef65f2682ec382f88706be8dc3bf79f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 607/874] beancount: rebuild for Python 3.8.

---
 srcpkgs/beancount/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beancount/template b/srcpkgs/beancount/template
index b1e2a121668..0ba68fc8f4e 100644
--- a/srcpkgs/beancount/template
+++ b/srcpkgs/beancount/template
@@ -1,7 +1,7 @@
 # Template file for 'beancount'
 pkgname=beancount
 version=2.2.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="beancount"
 hostmakedepends="python3-setuptools"

From 4d085c5998e4472b4e7b4fceabecba11440daceb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 608/874] beets: rebuild for Python 3.8.

---
 srcpkgs/beets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beets/template b/srcpkgs/beets/template
index 7dab56ceef8..975e6ec9f86 100644
--- a/srcpkgs/beets/template
+++ b/srcpkgs/beets/template
@@ -1,7 +1,7 @@
 # Template file for 'beets'
 pkgname=beets
 version=1.4.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="beets beetsplug"

From 1640cb62a84da8a46aff2a9c6ee5f75c0ab73224 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 609/874] black: rebuild for Python 3.8.

---
 srcpkgs/black/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/black/template b/srcpkgs/black/template
index f6d433038b9..38498a1db07 100644
--- a/srcpkgs/black/template
+++ b/srcpkgs/black/template
@@ -1,7 +1,7 @@
 # Template file for 'black'
 pkgname=black
 version=19.3b0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="black.py blib2to3"

From 5939f3d169c384cfe92957888f7b53678a69e770 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 610/874] blueman: rebuild for Python 3.8.

---
 srcpkgs/blueman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blueman/template b/srcpkgs/blueman/template
index 83f9b899583..3616aee7da3 100644
--- a/srcpkgs/blueman/template
+++ b/srcpkgs/blueman/template
@@ -1,7 +1,7 @@
 # Template file for 'blueman'
 pkgname=blueman
 version=2.1.1
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="blueman"
 configure_args="--disable-static"

From 325ad86e9fdcfc900e695cdcb3b40bc448b85d06 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 611/874] borg: rebuild for Python 3.8.

---
 srcpkgs/borg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borg/template b/srcpkgs/borg/template
index 520b1b2f65a..b69c7d3418e 100644
--- a/srcpkgs/borg/template
+++ b/srcpkgs/borg/template
@@ -1,7 +1,7 @@
 # Template file for 'borg'
 pkgname=borg
 version=1.1.10
-revision=2
+revision=3
 wrksrc="borgbackup-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel"

From 73a17277e22d3252a93a66237bf81a04393fc244 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 612/874] borgmatic: rebuild for Python 3.8.

---
 srcpkgs/borgmatic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borgmatic/template b/srcpkgs/borgmatic/template
index 8ef7c0568a6..bdc6446243c 100644
--- a/srcpkgs/borgmatic/template
+++ b/srcpkgs/borgmatic/template
@@ -1,7 +1,7 @@
 # Template file for 'borgmatic'
 pkgname=borgmatic
 version=1.3.24
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="borgmatic"

From 482c5d69113ad10842dfe91f0ac4a0631660ac77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 613/874] btrfs-backup: rebuild for Python 3.8.

---
 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 07d08a1b62b..55a3800a857 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=1
+revision=2
 wrksrc="${pkgname/-/_}-${version}"
 archs=noarch
 build_style=python3-module

From 4fce3c4f00a44852e3f9fcab80a10d4acfc04ad6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 614/874] bum: rebuild for Python 3.8.

---
 srcpkgs/bum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bum/template b/srcpkgs/bum/template
index 58d0bb2b7f7..20f200e74d6 100644
--- a/srcpkgs/bum/template
+++ b/srcpkgs/bum/template
@@ -1,7 +1,7 @@
 # Template file for 'bum'
 pkgname=bum
 version=0.1.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="bum"

From a384e5462965e984f1abca2ca12b7f62b1a415d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 615/874] caffeine-ng: rebuild for Python 3.8.

---
 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 36287fbef5b..455b2f225c4 100644
--- a/srcpkgs/caffeine-ng/template
+++ b/srcpkgs/caffeine-ng/template
@@ -1,7 +1,7 @@
 # Template file for 'caffeine-ng'
 pkgname=caffeine-ng
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="caffeine"

From b857565a7a7fddfbffbcf40b9e784593d099a0a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 616/874] cairo-dock-plugins: rebuild for Python 3.8.

---
 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 9e6149c617f..0c23a7f6928 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=11
+revision=12
 build_style=cmake
 hostmakedepends="pkg-config"
 # XXX libetpan, libdbusmenu, etc

From c0c15488d9189a782c2ab6436de598620d4d2435 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 617/874] canto-curses: rebuild for Python 3.8.

---
 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 0905972b480..4270d61c2e0 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=4
+revision=5
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel ncurses-devel readline-devel"

From a821add22450c016c7b851ee1a0309da5b5d83af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 618/874] canto-next: rebuild for Python 3.8.

---
 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 fff7e82e238..fa28bde891b 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.7
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From fa2afe1224ee7d1e031e769bf84bd596e5ac6de2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 619/874] capstone: rebuild for Python 3.8.

---
 srcpkgs/capstone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/capstone/template b/srcpkgs/capstone/template
index e13c7666ed1..fded7c7157e 100644
--- a/srcpkgs/capstone/template
+++ b/srcpkgs/capstone/template
@@ -1,7 +1,7 @@
 # Template file for 'capstone'
 pkgname=capstone
 version=4.0.1
-revision=1
+revision=2
 build_style=gnu-makefile
 make_use_env=1
 hostmakedepends="python-setuptools python3-setuptools"

From 923fca0cf844d03c602bbae81add86e8be495762 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 620/874] catfish: rebuild for Python 3.8.

---
 srcpkgs/catfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/catfish/template b/srcpkgs/catfish/template
index 1b28ffcafff..b53de6b8ea6 100644
--- a/srcpkgs/catfish/template
+++ b/srcpkgs/catfish/template
@@ -1,7 +1,7 @@
 # Template file for 'catfish'
 pkgname=catfish
 version=1.4.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="catfish catfish_lib"

From fb71b3b941c7341384c307ef6e1654b8d0b54a3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 621/874] ccsm: rebuild for Python 3.8.

---
 srcpkgs/ccsm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ccsm/template b/srcpkgs/ccsm/template
index 0421e587b23..3067003017f 100644
--- a/srcpkgs/ccsm/template
+++ b/srcpkgs/ccsm/template
@@ -1,7 +1,7 @@
 # Template file for 'ccsm'
 pkgname=ccsm
 version=0.8.16
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 hostmakedepends="automake intltool libtool pkg-config python3"

From f4212d55b3ec84e188189bc74a572c728a37c66a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 622/874] cheat: rebuild for Python 3.8.

---
 srcpkgs/cheat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cheat/template b/srcpkgs/cheat/template
index b60b4ba53b2..f1e419c3c5a 100644
--- a/srcpkgs/cheat/template
+++ b/srcpkgs/cheat/template
@@ -1,7 +1,7 @@
 # Template file for 'cheat'
 pkgname=cheat
 version=2.5.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="cheat"
 conf_files="/etc/cheat"

From eb72b0be44091e56a3e5b73cdf6d11ff80ecb8ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 623/874] clearine: rebuild for Python 3.8.

---
 srcpkgs/clearine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/clearine/template b/srcpkgs/clearine/template
index 419bb3c4550..539d494b79b 100644
--- a/srcpkgs/clearine/template
+++ b/srcpkgs/clearine/template
@@ -1,7 +1,7 @@
 # Template file for 'clearine'
 pkgname=clearine
 version=0.7
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="Clearine"
 hostmakedepends="python3-setuptools"

From ca7e63827b68cba4586e81da6e622e70addc8b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 624/874] coccigrep: rebuild for Python 3.8.

---
 srcpkgs/coccigrep/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/coccigrep/template b/srcpkgs/coccigrep/template
index 736f16a458e..a02c2f78bb2 100644
--- a/srcpkgs/coccigrep/template
+++ b/srcpkgs/coccigrep/template
@@ -1,7 +1,7 @@
 # Template file for 'coccigrep'
 pkgname=coccigrep
 version=1.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coccigrep"

From 8b0269365914ae7e030b07b30f4a76f2f1726270 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 625/874] compizconfig-python: rebuild for Python 3.8.

---
 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 b9d9ce2892b..77d53c97f46 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.16
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static"
 hostmakedepends="automake intltool libtool pkg-config glib-devel gettext-devel python3-Cython"

From c7955381746f2b68e5bb140afe81526fd62a2d16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 626/874] coursera-dl: rebuild for Python 3.8.

---
 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 0dfdd73083f..2b09e53d836 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.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coursera"

From 1bf8d7143694f636186cfbdcf357f9b86f5a635b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 627/874] cozy: rebuild for Python 3.8.

---
 srcpkgs/cozy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cozy/template b/srcpkgs/cozy/template
index a35aff61f37..2515388da18 100644
--- a/srcpkgs/cozy/template
+++ b/srcpkgs/cozy/template
@@ -1,7 +1,7 @@
 # Template file for 'cozy'
 pkgname=cozy
 version=0.6.8
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 pycompile_module="cozy"

From 7b58e6f69ae54c84b50dfe4d6041cf861a698c60 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 628/874] cpuset: rebuild for Python 3.8.

---
 srcpkgs/cpuset/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cpuset/template b/srcpkgs/cpuset/template
index cf3910d2304..12b54631617 100644
--- a/srcpkgs/cpuset/template
+++ b/srcpkgs/cpuset/template
@@ -1,7 +1,7 @@
 # Template file for 'cpuset'
 pkgname=cpuset
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="cpuset"

From a542aca478f0e84bbc23d3fd91a236635712a9f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 629/874] ctop: rebuild for Python 3.8.

---
 srcpkgs/ctop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ctop/template b/srcpkgs/ctop/template
index b8ea58515b2..5231b4a4cb3 100644
--- a/srcpkgs/ctop/template
+++ b/srcpkgs/ctop/template
@@ -1,7 +1,7 @@
 # Template file for 'ctop'
 pkgname=ctop
 version=1.0.0
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="cgroup_top.py"

From b3065c411c5e0b3e48432c6901e1e7fb20eb00d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 630/874] cura: rebuild for Python 3.8.

---
 srcpkgs/cura/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cura/template b/srcpkgs/cura/template
index 31318e5aecf..ab5cd315f21 100644
--- a/srcpkgs/cura/template
+++ b/srcpkgs/cura/template
@@ -1,7 +1,7 @@
 # Template file for 'cura'
 pkgname=cura
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Cura-${version}"
 build_style=cmake

From 9f4eb67830feb2103a78edc7651e1f73cc606074 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 631/874] curseradio: rebuild for Python 3.8.

---
 srcpkgs/curseradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/curseradio/template b/srcpkgs/curseradio/template
index 4fe2306364a..f5afe3bba34 100644
--- a/srcpkgs/curseradio/template
+++ b/srcpkgs/curseradio/template
@@ -1,7 +1,7 @@
 # Template file for 'curseradio'
 pkgname=curseradio
 version=0.0.20171017
-revision=3
+revision=4
 archs=noarch
 _commit=1bd4bd0faeec675e0647bac9a100b526cba19f8d
 wrksrc="curseradio-${_commit}"

From fa4e6156adf5c317bb85ee1d8271c9e6ce57b3e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 632/874] d-feet: rebuild for Python 3.8.

---
 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 6930eddf582..7f7d593f30a 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.15
-revision=1
+revision=2
 build_style=meson
 maintainer="Enno Boland <gottox@voidlinux.org>"
 hostmakedepends="pkg-config intltool itstool python3-pycodestyle"

From d6145053ac873c90f6383dee8ec4d696463928f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 633/874] deluge: rebuild for Python 3.8.

---
 srcpkgs/deluge/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/deluge/template b/srcpkgs/deluge/template
index 6dc7f26184d..8148c68033c 100644
--- a/srcpkgs/deluge/template
+++ b/srcpkgs/deluge/template
@@ -1,7 +1,7 @@
 # Template file for 'deluge'
 pkgname=deluge
 version=2.0.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="deluge"

From 0b2691a90e5de63e49a3c3f3adfa709d618b0a05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 634/874] devedeng: rebuild for Python 3.8.

---
 srcpkgs/devedeng/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/devedeng/template b/srcpkgs/devedeng/template
index d971b2e207b..2d0516cedd3 100644
--- a/srcpkgs/devedeng/template
+++ b/srcpkgs/devedeng/template
@@ -1,7 +1,7 @@
 # Template file for 'devedeng'
 pkgname=devedeng
 version=4.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="devedeng"

From 8b7c3bcfced7b21089b0a64ac1c375eb973af343 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 635/874] distcc: rebuild for Python 3.8.

---
 srcpkgs/distcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/distcc/template b/srcpkgs/distcc/template
index ded4255becd..4d6a450533f 100644
--- a/srcpkgs/distcc/template
+++ b/srcpkgs/distcc/template
@@ -1,7 +1,7 @@
 # Template file for 'distcc'
 pkgname=distcc
 version=3.3.3
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-Werror --with-gtk"
 conf_files="

From 98151a807bebdc6d5e41e0b6a1bd0d65659fbb7e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 636/874] docker-compose: rebuild for Python 3.8.

---
 srcpkgs/docker-compose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/docker-compose/template b/srcpkgs/docker-compose/template
index c3383fdf1ad..f4a34005c83 100644
--- a/srcpkgs/docker-compose/template
+++ b/srcpkgs/docker-compose/template
@@ -1,7 +1,7 @@
 # Template file for 'docker-compose'
 pkgname=docker-compose
 version=1.24.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="compose-${version}"
 build_style=python3-module

From 9dc2f62edc54b5e314c24fe7bb303496223adb45 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 637/874] edx-dl: rebuild for Python 3.8.

---
 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 209884640c6..a51c917d606 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.10
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="edx_dl"

From 6a769ff00b2fc959627e96d44172f8a656548751 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 638/874] electrum: rebuild for Python 3.8.

---
 srcpkgs/electrum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template
index 3861becdda9..7525e08e9e2 100644
--- a/srcpkgs/electrum/template
+++ b/srcpkgs/electrum/template
@@ -1,7 +1,7 @@
 # Template file for 'electrum'
 pkgname=electrum
 version=3.3.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electrum electrum_gui electrum_plugins"

From be52dccd4b30af3377095664bf239767a0f7be39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 639/874] electrum-ltc: rebuild for Python 3.8.

---
 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 ad6f745e152..cf7265fbec8 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.6.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"

From 45951afeb4bab3066e0459cf1441d9c3570c85dc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 640/874] eolie: rebuild for Python 3.8.

---
 srcpkgs/eolie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eolie/template b/srcpkgs/eolie/template
index b3da3dcd829..94514510c98 100644
--- a/srcpkgs/eolie/template
+++ b/srcpkgs/eolie/template
@@ -1,7 +1,7 @@
 # Template file for 'eolie'
 pkgname=eolie
 version=0.9.62
-revision=1
+revision=2
 _eolie_hash=bb4aad19272cc636bd17f2f6602127fe
 build_style=meson
 pycompile_module="eolie"

From ad02dba2226dbfc6b1fb5e715af8b58821cd8c07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 641/874] eyeD3: rebuild for Python 3.8.

---
 srcpkgs/eyeD3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eyeD3/template b/srcpkgs/eyeD3/template
index 7be047810bd..211553f0adb 100644
--- a/srcpkgs/eyeD3/template
+++ b/srcpkgs/eyeD3/template
@@ -1,7 +1,7 @@
 # Template file for 'eyeD3'
 pkgname=eyeD3
 version=0.8.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="eyed3"

From 5333d561e8831b7103f00f5e4564ce20bc26e9b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 642/874] fail2ban: rebuild for Python 3.8.

---
 srcpkgs/fail2ban/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 829e93385dc..361bcd12edd 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,7 +1,7 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
 version=0.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From 6ed6f50c8422b21b0f8244e983014120a3467562 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 643/874] fava: rebuild for Python 3.8.

---
 srcpkgs/fava/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fava/template b/srcpkgs/fava/template
index 24e66cac45b..890858b095b 100644
--- a/srcpkgs/fava/template
+++ b/srcpkgs/fava/template
@@ -1,7 +1,7 @@
 # Template file for 'fava'
 pkgname=fava
 version=1.11
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fava"

From cfe04c8e627d5d3626d852a05f3a87ecf053557f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 644/874] fierce: rebuild for Python 3.8.

---
 srcpkgs/fierce/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fierce/template b/srcpkgs/fierce/template
index 86dedb39ad2..86692c6457b 100644
--- a/srcpkgs/fierce/template
+++ b/srcpkgs/fierce/template
@@ -1,7 +1,7 @@
 # Template file for 'fierce'
 pkgname=fierce
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fierce"

From c67a6380bd6f21a660d10cde09cb2930536faee5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 645/874] fifengine: rebuild for Python 3.8.

---
 srcpkgs/fifengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fifengine/template b/srcpkgs/fifengine/template
index 1d4bcbb9297..871c94ad7e0 100644
--- a/srcpkgs/fifengine/template
+++ b/srcpkgs/fifengine/template
@@ -1,7 +1,7 @@
 # Template file for 'fifengine'
 pkgname=fifengine
 version=0.4.2
-revision=1
+revision=2
 build_style=cmake
 pycompile_module="fife"
 hostmakedepends="swig python3"

From 407bb3354f4705ac3e7d9c40479ff7272cbf5478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 646/874] flake8: rebuild for Python 3.8.

---
 srcpkgs/flake8/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/flake8/template b/srcpkgs/flake8/template
index d8f2b095644..4d7ebeba176 100644
--- a/srcpkgs/flake8/template
+++ b/srcpkgs/flake8/template
@@ -1,7 +1,7 @@
 # Template file for 'flake8'
 pkgname=flake8
 version=3.7.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="flake8"

From 770a2460b2b1f167fe87687c22ab0ff3d925964d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 647/874] fontforge: fix and rebuild for Python 3.8.

---
 srcpkgs/fontforge/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/fontforge/template b/srcpkgs/fontforge/template
index 7fb02d7e371..2893bc52cfb 100644
--- a/srcpkgs/fontforge/template
+++ b/srcpkgs/fontforge/template
@@ -1,7 +1,7 @@
 # Template file for 'fontforge'
 pkgname=fontforge
 version=20190801
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake ca-certificates git libltdl-devel libtool m4
  pkg-config python3"
@@ -20,6 +20,7 @@ checksum="e4501de5bd8e7f6c68fe7d3abd4667bf44a07b981d342ffa00e8f42e155ce633
  1bf9c7eb8835e6ed94e62cb49f1141bc046c562849e52e6c3c7f1d7cfc95c7b3"
 
 pre_configure() {
+        sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION}/&-embed/g' m4/fontforge_arg_enable.m4
 	./bootstrap
 }
 

From b878e1d66ee439999393e2aa55941b07f8e6c745 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 648/874] gajim: rebuild for Python 3.8.

---
 srcpkgs/gajim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gajim/template b/srcpkgs/gajim/template
index 8c49c0cf6ef..e81015b3906 100644
--- a/srcpkgs/gajim/template
+++ b/srcpkgs/gajim/template
@@ -1,7 +1,7 @@
 # Template file for 'gajim'
 pkgname=gajim
 version=1.1.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gajim"

From e0ad178e264be367206a16d9b96524e6d37e4b22 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 649/874] gajim-omemo: rebuild for Python 3.8.

---
 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 803f94713be..64d47228496 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.6.29
-revision=1
+revision=2
 wrksrc="omemo"
 hostmakedepends="unzip"
 depends="python3 python3-setuptools python3-cryptography python3-axolotl python3-qrcode"

From 4988da06fe14563631406801f6b22795355576a4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 650/874] gallery-dl: rebuild for Python 3.8.

---
 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 a1e8c633fe3..62b338a32e3 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.10.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gallery_dl"

From 7d5c0c0d7a1dcc5f3c504ed769a3730c7d688ed3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 651/874] gandi-cli: rebuild for Python 3.8.

---
 srcpkgs/gandi-cli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gandi-cli/template b/srcpkgs/gandi-cli/template
index c5e805a09fd..4193bfe4638 100644
--- a/srcpkgs/gandi-cli/template
+++ b/srcpkgs/gandi-cli/template
@@ -1,7 +1,7 @@
 # Template file for 'gandi-cli'
 pkgname=gandi-cli
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="gandi.cli-${version}"
 build_style=python3-module

From 7ae81741d5a1d24c19e0950a8631b2afb2f66301 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 652/874] gcovr: rebuild for Python 3.8.

---
 srcpkgs/gcovr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gcovr/template b/srcpkgs/gcovr/template
index 2b9ff94bf2a..0d4addfc8a7 100644
--- a/srcpkgs/gcovr/template
+++ b/srcpkgs/gcovr/template
@@ -1,7 +1,7 @@
 # Template file for 'gcovr'
 pkgname=gcovr
 version=4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gcovr"

From ff745f27bbeb2148c202a6cfde42c27c27ffb081 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 653/874] gedit: rebuild for Python 3.8.

---
 srcpkgs/gedit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gedit/template b/srcpkgs/gedit/template
index 904d3b7c3c4..6666c331c52 100644
--- a/srcpkgs/gedit/template
+++ b/srcpkgs/gedit/template
@@ -1,7 +1,7 @@
 # Template file for 'gedit'
 pkgname=gedit
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gi/overrides"

From 6d37a1560ee94e42e383c5bc4cba87d59366a1bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 654/874] geis: rebuild for Python 3.8.

---
 srcpkgs/geis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/geis/template b/srcpkgs/geis/template
index fe31a3d2aeb..20afe76b0d8 100644
--- a/srcpkgs/geis/template
+++ b/srcpkgs/geis/template
@@ -1,7 +1,7 @@
 # Template file for 'geis'
 pkgname=geis
 version=2.2.17
-revision=4
+revision=5
 hostmakedepends="pkg-config python3-devel"
 makedepends="dbus-devel grail-devel frame-devel libXi-devel python3-devel xorg-server-devel"
 build_style="gnu-configure"

From 83ad8dc7e8dc71c64a9004e04aba36ca30c051fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 655/874] git-cola: rebuild for Python 3.8.

---
 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 7eaba90f3be..fd0bbf971d3 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.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/share/git-cola/lib"

From 69e4bac4c10842ce70ce2a1db26f883af407e79c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 656/874] git-review: rebuild for Python 3.8.

---
 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 d999dc87b16..c180cc60780 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="git_review"

From 7c0a260d7120bd5e0e4e27c6b30b83e9dfe60359 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 657/874] git-revise: rebuild for Python 3.8.

---
 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 4179a52bddc..a1bf51dc447 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.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gitrevise"

From 49a8265f4cd71c84814307928cbbd2eb33c4bbad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 658/874] gitg: rebuild for Python 3.8.

---
 srcpkgs/gitg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gitg/template b/srcpkgs/gitg/template
index e0da8e9490d..a3381fdb3a7 100644
--- a/srcpkgs/gitg/template
+++ b/srcpkgs/gitg/template
@@ -1,7 +1,7 @@
 # Template file for 'gitg'
 pkgname=gitg
 version=3.32.1
-revision=1
+revision=2
 build_style=meson
 hostmakedepends="intltool pkg-config gobject-introspection vala glib-devel"
 makedepends="gtksourceview-devel libgit2-glib-devel libgee08-devel gtkspell3-devel

From 5b5919636d70cb1259ebd7740e9b55936a7c29f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 659/874] glances: rebuild for Python 3.8.

---
 srcpkgs/glances/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glances/template b/srcpkgs/glances/template
index 6d4766493c3..753d9e20c92 100644
--- a/srcpkgs/glances/template
+++ b/srcpkgs/glances/template
@@ -1,7 +1,7 @@
 # Template file for 'glances'
 pkgname=glances
 version=3.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Glances-${version}"
 build_style=python3-module

From 8b16492c679f3eb6c6ae2d4573f9adeb356715be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 660/874] glusterfs: rebuild for Python 3.8.

---
 srcpkgs/glusterfs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glusterfs/template b/srcpkgs/glusterfs/template
index a1304e266fe..90093864286 100644
--- a/srcpkgs/glusterfs/template
+++ b/srcpkgs/glusterfs/template
@@ -1,7 +1,7 @@
 # Template file for 'glusterfs'
 pkgname=glusterfs
 version=6.5
-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 22925c23326876f7422d67e1f21f0e629b9c7ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 661/874] gnome-authenticator: rebuild for Python 3.8.

---
 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 52d161897c7..ab7c505c0fe 100644
--- a/srcpkgs/gnome-authenticator/template
+++ b/srcpkgs/gnome-authenticator/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-authenticator'
 pkgname=gnome-authenticator
 version=0.2.4
-revision=2
+revision=3
 _libgd_hash=7ae254bfc5f641c60566614e08245176f7bc5aa8
 wrksrc="Authenticator-${version}"
 build_style=meson

From 4130139a7454a2050f48c6feac4f9312c50219d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 662/874] gnome-music: rebuild for Python 3.8.

---
 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 bceb7c369c8..e2fbbcbdeca 100644
--- a/srcpkgs/gnome-music/template
+++ b/srcpkgs/gnome-music/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-music'
 pkgname=gnome-music
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gnomemusic"

From 94b0589cc1f42f2505ac86d6596ab748ab75e02f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 663/874] gnome-passbook: rebuild for Python 3.8.

---
 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 54035dc920b..89047338503 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.1
-revision=1
+revision=2
 _release_hash=0a227cfdf706f4bfcc0b782026f1aeb2
 wrksrc="passbook-${version}"
 build_style=meson

From 76dae990f2ec69291f7826391c7a375014867fb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 664/874] gnome-passwordsafe: rebuild for Python 3.8.

---
 srcpkgs/gnome-passwordsafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnome-passwordsafe/template b/srcpkgs/gnome-passwordsafe/template
index f310ce03a08..8f1f19174d2 100644
--- a/srcpkgs/gnome-passwordsafe/template
+++ b/srcpkgs/gnome-passwordsafe/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-passwordsafe'
 pkgname=gnome-passwordsafe
 version=3.32.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="PasswordSafe-${version}"
 build_style=meson

From ebb227d14a2271cc033506f2dd54957eecc5b719 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 665/874] gns3-gui: rebuild for Python 3.8.

---
 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 38751dea59b..f4318dc6afc 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.1.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3"

From b44e9cf882e059036ed7e3834cafdf689c956e32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 666/874] gns3-net-converter: rebuild for Python 3.8.

---
 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 b9b7403e8a6..70b6c90e8c8 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=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3converter"

From eaf37536ad96d1421cc95823589d2cd21779089d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 667/874] gns3-server: rebuild for Python 3.8.

---
 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 6bd9c067b20..739c584cb7c 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.1.21
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="gns3server"
 hostmakedepends="python3-setuptools"

From 3a2540b9e2143af7b07dcaee0ed3930b9016dc1e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 668/874] gnucash: rebuild for Python 3.8.

---
 srcpkgs/gnucash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnucash/template b/srcpkgs/gnucash/template
index 68bb811fc42..d8ff0a8ec86 100644
--- a/srcpkgs/gnucash/template
+++ b/srcpkgs/gnucash/template
@@ -1,7 +1,7 @@
 # Template file for 'gnucash'
 pkgname=gnucash
 version=3.7
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DWITH_SQL=0 -DWITH_PYTHON=1"
 hostmakedepends="pkg-config guile python3 libxslt perl"

From c1420969fc916318d29dfdc3836adf0580095969 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 669/874] gom: rebuild for Python 3.8.

---
 srcpkgs/gom/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gom/template b/srcpkgs/gom/template
index 6ec2a5e338f..0b45e19def4 100644
--- a/srcpkgs/gom/template
+++ b/srcpkgs/gom/template
@@ -1,7 +1,7 @@
 # Template file for 'gom'
 pkgname=gom
 version=0.3.3
-revision=3
+revision=4
 build_style=meson
 build_helper="gir"
 configure_args="-Denable-introspection=$(vopt_if gir true false)

From e55d5d66739df70ca67793cbca3b12aa5f01e751 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 670/874] gpodder: rebuild for Python 3.8.

---
 srcpkgs/gpodder/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gpodder/template b/srcpkgs/gpodder/template
index 7c7414e19cd..5cc63ab4205 100644
--- a/srcpkgs/gpodder/template
+++ b/srcpkgs/gpodder/template
@@ -1,7 +1,7 @@
 # Template file for 'gpodder'
 pkgname=gpodder
 version=3.10.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="gpodder-${version}"
 make_check_target=unittest

From d91d30f5f2b0b5e6323da1f35eaf923fed0a111f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 671/874] gramps: rebuild for Python 3.8.

---
 srcpkgs/gramps/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gramps/template b/srcpkgs/gramps/template
index 9d1d1a4616a..5d40aeefb49 100644
--- a/srcpkgs/gramps/template
+++ b/srcpkgs/gramps/template
@@ -1,7 +1,7 @@
 # Template file for 'gramps'
 pkgname=gramps
 version=5.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gramps"

From bb3e960f11dda36c822c8bd1e8575b2a69ce9a66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 672/874] greg: rebuild for Python 3.8.

---
 srcpkgs/greg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/greg/template b/srcpkgs/greg/template
index 9c15ba82f4b..d898d5fdf61 100644
--- a/srcpkgs/greg/template
+++ b/srcpkgs/greg/template
@@ -1,7 +1,7 @@
 # Template file for 'greg'
 pkgname=greg
 version=0.4.7
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 pycompile_module="greg"

From be202bce8c20fb165e811e32683e96aae42b1452 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 673/874] gst1-python3: rebuild for Python 3.8.

---
 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 6f02f19aca3..bf946f6a8bf 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.16.1
-revision=1
+revision=2
 wrksrc="gst-python-${version}"
 build_style=meson
 pycompile_module="gi/overrides"

From b9ef9fe5fb2d7b03831106592cfae54a25c41a0f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 674/874] guake: rebuild for Python 3.8.

---
 srcpkgs/guake/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/guake/template b/srcpkgs/guake/template
index 86eaba649a7..d92fdf89355 100644
--- a/srcpkgs/guake/template
+++ b/srcpkgs/guake/template
@@ -1,7 +1,7 @@
 # Template file for 'guake'
 pkgname=guake
 version=3.6.3
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 wrksrc="Guake-${version}"

From a53d49cbf26761960b1d159a12df007b627e7650 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 675/874] gufw: rebuild for Python 3.8.

---
 srcpkgs/gufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gufw/template b/srcpkgs/gufw/template
index d2b8a4b025d..a4e7d861d71 100644
--- a/srcpkgs/gufw/template
+++ b/srcpkgs/gufw/template
@@ -1,7 +1,7 @@
 # Template file for 'gufw'
 pkgname=gufw
 version=19.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="gui-ufw-${version}"
 build_style=python3-module

From 165d3546e52431e5cb6d8f7534344eb7da2982a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 676/874] hamlib: rebuild for Python 3.8.

---
 srcpkgs/hamlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hamlib/template b/srcpkgs/hamlib/template
index c28a069cd6f..d52436c0893 100644
--- a/srcpkgs/hamlib/template
+++ b/srcpkgs/hamlib/template
@@ -1,7 +1,7 @@
 # Template file for 'hamlib'
 pkgname=hamlib
 version=3.3
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static --with-perl-binding --with-python-binding
  --with-tcl-binding --with-xml-support"

From fe67c3b8e01dac359eba93dada80286f4b7bd546 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 677/874] hangups: rebuild for Python 3.8.

---
 srcpkgs/hangups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hangups/template b/srcpkgs/hangups/template
index 0a2f2db16b4..0837a2c47c3 100644
--- a/srcpkgs/hangups/template
+++ b/srcpkgs/hangups/template
@@ -1,7 +1,7 @@
 # Template file for 'hangups'
 pkgname=hangups
 version=0.4.9
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="hangups"
 hostmakedepends="python3-setuptools"

From 54c05618d6ea2a636e7649b6dfb4df7e9097df99 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 678/874] hplip: rebuild for Python 3.8.

---
 srcpkgs/hplip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hplip/template b/srcpkgs/hplip/template
index 07a707569f6..3ef76e4591b 100644
--- a/srcpkgs/hplip/template
+++ b/srcpkgs/hplip/template
@@ -1,7 +1,7 @@
 # Template file for 'hplip'
 pkgname=hplip
 version=3.19.8
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="usr/share/hplip"
 configure_args="

From b9133921feebbc073c9d3cecdc138c34dd553caa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 679/874] httpie: rebuild for Python 3.8.

---
 srcpkgs/httpie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/httpie/template b/srcpkgs/httpie/template
index 387af8ebf05..61fc1499d35 100644
--- a/srcpkgs/httpie/template
+++ b/srcpkgs/httpie/template
@@ -1,7 +1,7 @@
 # Template file for 'httpie'
 pkgname=httpie
 version=1.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="httpie"

From 6c6626a47930ae266d4f95bc011f99e15b7237a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 680/874] ibus: rebuild for Python 3.8.

---
 srcpkgs/ibus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ibus/template b/srcpkgs/ibus/template
index 4875c7535d6..d3c35d786a4 100644
--- a/srcpkgs/ibus/template
+++ b/srcpkgs/ibus/template
@@ -1,7 +1,7 @@
 # Template file for 'ibus'
 pkgname=ibus
 version=1.5.20
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 configure_args="--enable-ui --enable-gtk3 --disable-tests

From ad8f78bd52e9d9925d746e1bbca9a926040dc866 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 681/874] iotop: rebuild for Python 3.8.

---
 srcpkgs/iotop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template
index 146a9e97791..522bf32a7c2 100644
--- a/srcpkgs/iotop/template
+++ b/srcpkgs/iotop/template
@@ -1,7 +1,7 @@
 # Template file for 'iotop'
 pkgname=iotop
 version=0.6
-revision=5
+revision=6
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From bf6b1d411e5f8d2459161a4599d66d7148220c48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 682/874] jrnl: rebuild for Python 3.8.

---
 srcpkgs/jrnl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template
index 3d08f129885..b184ef09508 100644
--- a/srcpkgs/jrnl/template
+++ b/srcpkgs/jrnl/template
@@ -1,7 +1,7 @@
 # Template file for 'jrnl'
 pkgname=jrnl
 version=1.9.8
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="jrnl"

From 3262fda476f3282359c09dd2902deac5997a3394 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 683/874] khal: rebuild for Python 3.8.

---
 srcpkgs/khal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khal/template b/srcpkgs/khal/template
index 39d08a66ba8..a73516695bf 100644
--- a/srcpkgs/khal/template
+++ b/srcpkgs/khal/template
@@ -1,7 +1,7 @@
 # Template file for 'khal'
 pkgname=khal
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khal"

From be7f25caca1d74c5f9f58c4cc40c3f3f889971d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 684/874] khard: rebuild for Python 3.8.

---
 srcpkgs/khard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khard/template b/srcpkgs/khard/template
index 6c6f3024be1..3ec9f398d99 100644
--- a/srcpkgs/khard/template
+++ b/srcpkgs/khard/template
@@ -1,7 +1,7 @@
 # Template file for 'khard'
 pkgname=khard
 version=0.14.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khard"

From 0509f15447526a6132348baf9eb600d22a0c20f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 685/874] lfm: rebuild for Python 3.8.

---
 srcpkgs/lfm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lfm/template b/srcpkgs/lfm/template
index 0a0a3b4f563..1e0e7cf29fa 100644
--- a/srcpkgs/lfm/template
+++ b/srcpkgs/lfm/template
@@ -1,7 +1,7 @@
 # Template file for 'lfm'
 pkgname=lfm
 version=3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 9ac423037b0a4806134116f0b6501d27f2bb3047 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 686/874] libArcus: rebuild for Python 3.8.

---
 srcpkgs/libArcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libArcus/template b/srcpkgs/libArcus/template
index 8e6c97ada21..d2ffda576d4 100644
--- a/srcpkgs/libArcus/template
+++ b/srcpkgs/libArcus/template
@@ -1,7 +1,7 @@
 # Template file for 'libArcus'
 pkgname=libArcus
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DBUILD_EXAMPLES=OFF"
 hostmakedepends="protobuf python3-sip-devel"

From 8a5c0bc1b4d750fbb633dcfb68645bdb8e23ac37 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 687/874] libSavitar: rebuild for Python 3.8.

---
 srcpkgs/libSavitar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libSavitar/template b/srcpkgs/libSavitar/template
index a9d3020158f..213f02f4d65 100644
--- a/srcpkgs/libSavitar/template
+++ b/srcpkgs/libSavitar/template
@@ -1,7 +1,7 @@
 # Template file for 'libSavitar'
 pkgname=libSavitar
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 hostmakedepends="python3"
 makedepends="python3-sip-devel python3-devel pugixml-devel"

From 888da49c1bb8061c80359b4015485b151f0d74d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 688/874] libaccounts-glib: rebuild for Python 3.8.

---
 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 717be24f209..239f9307261 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=2
+revision=3
 wrksrc="${pkgname}-VERSION_${version}-8948717702424ce15f4e23e5db2c8ce0799ec120"
 build_style=meson
 hostmakedepends="gtk-doc pkg-config glib-devel gobject-introspection vala"

From bd98c3c06982e10c3f9df1df66d5b04f1a5ef434 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 689/874] libblockdev: rebuild for Python 3.8.

---
 srcpkgs/libblockdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libblockdev/template b/srcpkgs/libblockdev/template
index 1df156e3c5b..ff20fc70618 100644
--- a/srcpkgs/libblockdev/template
+++ b/srcpkgs/libblockdev/template
@@ -1,7 +1,7 @@
 # Template file for 'libblockdev'
 pkgname=libblockdev
 version=2.21
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="cryptsetup-devel device-mapper-devel dmraid-devel libbytesize-devel

From 41b298fd633e7e588071f06e8d421ed9b2c21a8c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 690/874] libbytesize: rebuild for Python 3.8.

---
 srcpkgs/libbytesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libbytesize/template b/srcpkgs/libbytesize/template
index ee1862d889d..e07cdf29a82 100644
--- a/srcpkgs/libbytesize/template
+++ b/srcpkgs/libbytesize/template
@@ -1,7 +1,7 @@
 # Template file for 'libbytesize'
 pkgname=libbytesize
 version=1.4
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python3"
 makedepends="mpfr-devel pcre-devel"

From bdb495aaf63cb8b79a83eda9623e54e67de33d75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 691/874] libcap-ng: rebuild for Python 3.8.

---
 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 f462636c4c1..c6ec4f0a216 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.7.10
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-python --without-python3"
 short_desc="Alternate POSIX capabilities library"

From 64a29440ad0bb81db7db97e461b4b68478993d17 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 692/874] libffado: rebuild for Python 3.8.

---
 srcpkgs/libffado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libffado/template b/srcpkgs/libffado/template
index a9b6a5ec6a8..d566806bd82 100644
--- a/srcpkgs/libffado/template
+++ b/srcpkgs/libffado/template
@@ -1,7 +1,7 @@
 # Template file for 'libffado'
 pkgname=libffado
 version=2.4.1
-revision=1
+revision=2
 build_style=scons
 make_build_args="PREFIX=/usr MANDIR=/usr/share/man
  UDEVDIR=/usr/lib/udev/rules.d CUSTOM_ENV=1 BUILD_TESTS=0

From 3ac32b19e51680d2330b26da6cb8d640904fcb75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 693/874] libgit2-glib: rebuild for Python 3.8.

---
 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 05389a18258..ce68cb35d66 100644
--- a/srcpkgs/libgit2-glib/template
+++ b/srcpkgs/libgit2-glib/template
@@ -1,7 +1,7 @@
 # Template file for 'libgit2-glib'
 pkgname=libgit2-glib
 version=0.28.0.1
-revision=1
+revision=2
 build_style=meson
 build_helper="gir"
 configure_args="-Dintrospection=$(vopt_if gir true false)

From 6950f9e7571c268c087d93d7e94d169a8fb8291b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 694/874] libixion: rebuild for Python 3.8.

---
 srcpkgs/libixion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libixion/template b/srcpkgs/libixion/template
index 5d2c58ee7c0..dbc05d8b9c1 100644
--- a/srcpkgs/libixion/template
+++ b/srcpkgs/libixion/template
@@ -2,7 +2,7 @@
 pkgname=libixion
 reverts="0.15.0_1"
 version=0.14.1
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="boost-devel mdds python3-devel"

From 45a847c34a550d9cc64985d24ef9b306aade5790 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 695/874] liblouis: rebuild for Python 3.8.

---
 srcpkgs/liblouis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liblouis/template b/srcpkgs/liblouis/template
index 77194ad8820..13c29b62b21 100644
--- a/srcpkgs/liblouis/template
+++ b/srcpkgs/liblouis/template
@@ -1,7 +1,7 @@
 # Template file for 'liblouis'
 pkgname=liblouis
 version=3.9.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--enable-ucs4"
 pycompile_module="louis"

From f79d54ca6d5162f4f17a9cae76f0bd941deaf438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 696/874] opencv: rebuild for Python 3.8.

---
 srcpkgs/opencv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/opencv/template b/srcpkgs/opencv/template
index fcc38299f23..474b77be181 100644
--- a/srcpkgs/opencv/template
+++ b/srcpkgs/opencv/template
@@ -1,7 +1,7 @@
 # Template file for 'opencv'
 pkgname=opencv
 version=3.4.5
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_PRECOMPILED_HEADERS=OFF -DWITH_OPENMP=ON
  -DWITH_OPENCL=ON -DENABLE_CXX11=ON -DOPENCV_SKIP_PYTHON_LOADER=ON

From f3399fca6f67a8990fa1adc144bd949c0a5c66c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 697/874] libopenshot: rebuild for Python 3.8.

---
 srcpkgs/libopenshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libopenshot/template b/srcpkgs/libopenshot/template
index e1ac18faf93..dab1f2ae1e3 100644
--- a/srcpkgs/libopenshot/template
+++ b/srcpkgs/libopenshot/template
@@ -1,7 +1,7 @@
 # Template file for 'libopenshot'
 pkgname=libopenshot
 version=0.2.3
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 build_style=cmake
 pycompile_module="openshot.py"

From c7902fc599bfc61c600307df6f75acfadf8e612e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 698/874] liborcus: rebuild for Python 3.8.

---
 srcpkgs/liborcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liborcus/template b/srcpkgs/liborcus/template
index 3523d7830d8..e7704c43974 100644
--- a/srcpkgs/liborcus/template
+++ b/srcpkgs/liborcus/template
@@ -2,7 +2,7 @@
 pkgname=liborcus
 reverts="0.15.0_1"
 version=0.14.1
-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 aec13b74f5953d86ed1dab8574a9bb836924a3da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 699/874] libpwquality: rebuild for Python 3.8.

---
 srcpkgs/libpwquality/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpwquality/template b/srcpkgs/libpwquality/template
index e5a656236d7..6c2209155a3 100644
--- a/srcpkgs/libpwquality/template
+++ b/srcpkgs/libpwquality/template
@@ -1,7 +1,7 @@
 # Template file for 'libpwquality'
 pkgname=libpwquality
 version=1.4.1
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static --enable-pam --with-securedir=/usr/lib/security"
 hostmakedepends="libtool automake gettext-devel"

From a5604d1184badc5a3b5afb2426bc910d703ee0f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 700/874] libsearpc: rebuild for Python 3.8.

---
 srcpkgs/libsearpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsearpc/template b/srcpkgs/libsearpc/template
index 61f68e5e7de..a7e0b9ce05c 100644
--- a/srcpkgs/libsearpc/template
+++ b/srcpkgs/libsearpc/template
@@ -1,7 +1,7 @@
 # Template file for 'libsearpc'
 pkgname=libsearpc
 version=3.1.0
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="pysearpc"
 configure_args="PYTHON=python3 --disable-static --disable-compile-demo"

From 5aaa024e287c3460065dbe861abc25499a281e07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 701/874] libtorrent-rasterbar: fix and rebuild for Python 3.8.

---
 srcpkgs/libtorrent-rasterbar/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libtorrent-rasterbar/template b/srcpkgs/libtorrent-rasterbar/template
index 118108c6184..51b7175fb81 100644
--- a/srcpkgs/libtorrent-rasterbar/template
+++ b/srcpkgs/libtorrent-rasterbar/template
@@ -1,9 +1,9 @@
 # Template file for 'libtorrent-rasterbar'
 pkgname=libtorrent-rasterbar
 version=1.1.13
-revision=3
+revision=4
 build_style=gnu-configure
-configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=boost_python36"
+configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=libboost_python${py3_ver/./}"
 hostmakedepends="automake pkg-config intltool libtool python3-devel"
 makedepends="libressl-devel boost-devel geoip-devel python3-devel"
 short_desc="C++ bittorrent library by Rasterbar Software"
@@ -14,9 +14,9 @@ distfiles="https://github.com/arvidn/libtorrent/releases/download/libtorrent-${v
 checksum=30040719858e3c06634764e0c1778738eb42ecd0b45e814afa746329a948ead7
 
 pre_configure() {
-	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython3.6m"
+	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython${py3_ver}${py3_abiver}"
 	autoreconf -fi
 }
 

From 75ce8cab25904eeb4975663fb77b4f29c10c1dbe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 702/874] libvirt-python: rebuild for Python 3.8.

---
 srcpkgs/libvirt-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvirt-python/template b/srcpkgs/libvirt-python/template
index a2f0e038166..56253c9d3b0 100644
--- a/srcpkgs/libvirt-python/template
+++ b/srcpkgs/libvirt-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libvirt-python'
 pkgname=libvirt-python
 version=5.8.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="libvirt.py libvirt_lxc.py libvirt_qemu.py"
 hostmakedepends="pkg-config python-devel python3-devel libvirt-devel"

From 5e9842585a68fb832637cdd1b5adcd50bc48841b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 703/874] libvoikko: rebuild for Python 3.8.

---
 srcpkgs/libvoikko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvoikko/template b/srcpkgs/libvoikko/template
index 8d21b0f9c71..ba8eef837ee 100644
--- a/srcpkgs/libvoikko/template
+++ b/srcpkgs/libvoikko/template
@@ -1,7 +1,7 @@
 # Template file for 'libvoikko'
 pkgname=libvoikko
 version=4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-hfst=false --with-dictionary-path=/usr/share/voikko"
 pycompile_module="libvoikko.py"

From 8141b26019c7a2414b15fcf8b8672eb24047f49d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 704/874] libxml2-python: rebuild for Python 3.8.

---
 srcpkgs/libxml2-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libxml2-python/template b/srcpkgs/libxml2-python/template
index a80208823c2..5514ed43437 100644
--- a/srcpkgs/libxml2-python/template
+++ b/srcpkgs/libxml2-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libxml2-python'
 pkgname=libxml2-python
 version=2.9.9
-revision=3
+revision=4
 wrksrc="${pkgname%-python}-${version}"
 build_wrksrc=python
 build_style=python-module

From 70f5881f1b341100ddc517ba0f4b54e161303165 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 705/874] lightdm-gtk-greeter-settings: rebuild for Python 3.8.

---
 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 715f41bbef4..76a25b91e4c 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=1
+revision=2
 build_style=python3-module
 pycompile_module="lightdm_gtk_greeter_settings"
 hostmakedepends="python3-distutils-extra intltool"

From 04c380043914f79a0c6cd3199748bb0fb2e37967 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 706/874] llvm9: rebuild for Python 3.8.

---
 srcpkgs/llvm9/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/llvm9/template b/srcpkgs/llvm9/template
index 3c1a1a3451b..890a93855d8 100644
--- a/srcpkgs/llvm9/template
+++ b/srcpkgs/llvm9/template
@@ -1,7 +1,7 @@
 # Template file for 'llvm9'
 pkgname=llvm9
 version=9.0.0
-revision=2
+revision=3
 wrksrc="llvm-${version}.src"
 build_style=cmake
 configure_args="

From 4778e7a0c73ffa2fae833fee20ac790fef99fff9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 707/874] lollypop: rebuild for Python 3.8.

---
 srcpkgs/lollypop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lollypop/template b/srcpkgs/lollypop/template
index 56ace773bf3..3bd13c0d387 100644
--- a/srcpkgs/lollypop/template
+++ b/srcpkgs/lollypop/template
@@ -1,7 +1,7 @@
 # Template file for 'lollypop'
 pkgname=lollypop
 version=1.1.4.16
-revision=1
+revision=2
 # Gitlab upload tag hash
 _uhash=6b4e4e7a2c17f0770c1e2b3354ae5a3a
 archs=noarch

From 6041a22c11224f7e771c92e9f61adf7eaf37450a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 708/874] lutris: rebuild for Python 3.8.

---
 srcpkgs/lutris/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lutris/template b/srcpkgs/lutris/template
index 8f54d693a12..75be521cc7c 100644
--- a/srcpkgs/lutris/template
+++ b/srcpkgs/lutris/template
@@ -1,7 +1,7 @@
 # Template file for 'lutris'
 pkgname=lutris
 version=0.5.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 build_helper="gir"

From 768559bee2d66197ffebf07de70d31e1098fe2a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 709/874] magic-wormhole: rebuild for Python 3.8.

---
 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 c07753ce6ad..d93a1bbe1fc 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.11.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wormhole"

From 2a5b126fdf712642756c4d70a6a679f4479b504c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 710/874] mate-tweak: rebuild for Python 3.8.

---
 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 85b829e85e8..76b79524269 100644
--- a/srcpkgs/mate-tweak/template
+++ b/srcpkgs/mate-tweak/template
@@ -1,7 +1,7 @@
 # Template file for 'mate-tweak'
 pkgname=mate-tweak
 version=19.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-pbr python3-setuptools"

From 2717d85b6903ce0f45484d5f051e477d27e68ff3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 711/874] med: rebuild for Python 3.8.

---
 srcpkgs/med/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/med/template b/srcpkgs/med/template
index 34dd6d006d6..acd79293246 100644
--- a/srcpkgs/med/template
+++ b/srcpkgs/med/template
@@ -1,7 +1,7 @@
 # Template file for 'med'
 pkgname=med
 version=4.0.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--with-swig=yes --includedir=/usr/include/med"
 pycompile_module=med

From e6073b9b26be31845b922008dc6d5083ec2516e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 712/874] meld: rebuild for Python 3.8.

---
 srcpkgs/meld/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meld/template b/srcpkgs/meld/template
index 9ed6114299e..7cbac065ce6 100644
--- a/srcpkgs/meld/template
+++ b/srcpkgs/meld/template
@@ -1,7 +1,7 @@
 # Template file for 'meld'
 pkgname=meld
 version=3.20.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="meld"

From 30bbbb75eda44c4dfeac15c27223fe671d4703ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 713/874] menulibre: rebuild for Python 3.8.

---
 srcpkgs/menulibre/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/menulibre/template b/srcpkgs/menulibre/template
index 64311115bec..f16c5f64337 100644
--- a/srcpkgs/menulibre/template
+++ b/srcpkgs/menulibre/template
@@ -1,7 +1,7 @@
 # Template file for 'menulibre'
 pkgname=menulibre
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="menulibre menulibre_lib"

From 7f5fb6f6a41e18474dce397f36f38f5cce8f9eca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 714/874] meson-cmake-wrapper: rebuild for Python 3.8.

---
 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 ca14e533431..57eea159ca8 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mcw"

From 2c4c7008df31cd5ec9699fe3aba2f53facd423e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 715/874] mimeo: rebuild for Python 3.8.

---
 srcpkgs/mimeo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mimeo/template b/srcpkgs/mimeo/template
index bef8dcde863..991c61d9df8 100644
--- a/srcpkgs/mimeo/template
+++ b/srcpkgs/mimeo/template
@@ -1,7 +1,7 @@
 # Template file for 'mimeo'
 pkgname=mimeo
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="Mimeo.py"

From 533400db8d1d7673cb8a5b187cf4510495a5d6fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 716/874] mozo: rebuild for Python 3.8.

---
 srcpkgs/mozo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template
index 041f2454c3d..7bc18f017c7 100644
--- a/srcpkgs/mozo/template
+++ b/srcpkgs/mozo/template
@@ -1,7 +1,7 @@
 # Template file for 'mozo'
 pkgname=mozo
 version=1.22.2
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="Mozo"

From 79476ba290c89d038ce38a9ed875bed6b5bf69e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 717/874] mpd-sima: rebuild for Python 3.8.

---
 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 fb72f0d2632..831fec709b7 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=1
+revision=2
 archs=noarch
 wrksrc="MPD_sima-${version}"
 build_style=python3-module

From 9d547673ab95e2aeb2d2405f6fff480cbd9afa5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 718/874] mps-youtube: rebuild for Python 3.8.

---
 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 7b104aa706f..2141b3e627d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mps_youtube"

From 8e1db2d48466dc2bdc06e1330eeefaa727da6356 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 719/874] mugshot: rebuild for Python 3.8.

---
 srcpkgs/mugshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mugshot/template b/srcpkgs/mugshot/template
index cf27b30acac..1e695654a86 100644
--- a/srcpkgs/mugshot/template
+++ b/srcpkgs/mugshot/template
@@ -1,7 +1,7 @@
 # Template file for 'mugshot'
 pkgname=mugshot
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra"

From dd0ad3b8c52088d1809fd214b32ed7b0acdd2f66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 720/874] multibootusb: rebuild for Python 3.8.

---
 srcpkgs/multibootusb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/multibootusb/template b/srcpkgs/multibootusb/template
index 049b641c5fd..70cb07a85ac 100644
--- a/srcpkgs/multibootusb/template
+++ b/srcpkgs/multibootusb/template
@@ -1,7 +1,7 @@
 # Template file for 'multibootusb'
 pkgname=multibootusb
 version=9.2.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="scripts"

From 85356b30501f219e78afd8cb95f1a6cb09193ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 721/874] mymcplus: rebuild for Python 3.8.

---
 srcpkgs/mymcplus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mymcplus/template b/srcpkgs/mymcplus/template
index 369ac8048ed..f30c62b09f4 100644
--- a/srcpkgs/mymcplus/template
+++ b/srcpkgs/mymcplus/template
@@ -1,7 +1,7 @@
 # Template file for 'mymcplus'
 pkgname=mymcplus
 version=3.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mymcplus"

From f10ceae15759ab2c42d786a23926a759967abb41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 722/874] nagstamon: fix and rebuild for Python 3.8.

---
 srcpkgs/nagstamon/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/nagstamon/template b/srcpkgs/nagstamon/template
index 3a63bb5f1d9..0eb5bc75d27 100644
--- a/srcpkgs/nagstamon/template
+++ b/srcpkgs/nagstamon/template
@@ -1,7 +1,7 @@
 # Template file for 'nagstamon'
 pkgname=nagstamon
 version=3.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=Nagstamon
 build_style=python3-module
@@ -16,6 +16,10 @@ homepage="https://nagstamon.ifw-dresden.de"
 distfiles="https://nagstamon.ifw-dresden.de/files/stable/Nagstamon-${version}.tar.gz"
 checksum=a834460e78dc01f62171a83c4a11d890702264ed662863dff39edaf14ae98880
 
+post_extract() {
+	# Gone in python 3.8, but these where the python 3.6 values.  ;)
+	vsed -i -e 's/platform.dist()/("","","")/g' setup.py
+}
 post_install() {
 	chmod 644 ${DESTDIR}/usr/share/pixmaps/nagstamon.svg
 	mv -v ${DESTDIR}/usr/bin/nagstamon.py ${DESTDIR}/usr/bin/nagstamon

From 52acf83950d25bcf72b3fc81796436543c409ce8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 723/874] neovim-remote: rebuild for Python 3.8.

---
 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 d8473bf0521..7391f9df2ee 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.2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nvr"

From ae77cba0468f1ab1fe3e89bf758d2d153c6b8725 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 724/874] newt: rebuild for Python 3.8.

---
 srcpkgs/newt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/newt/template b/srcpkgs/newt/template
index 3971bbfdbf7..25ccc946f51 100644
--- a/srcpkgs/newt/template
+++ b/srcpkgs/newt/template
@@ -1,7 +1,7 @@
 # Template file for 'newt'
 pkgname=newt
 version=0.52.21
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python-devel python3-devel"
 makedepends="slang-devel popt-devel python3-devel python-devel"

From 5d77f30f98b4d84c2807418deb840acda4016790 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 725/874] notmuch: rebuild for Python 3.8.

---
 srcpkgs/notmuch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/notmuch/template b/srcpkgs/notmuch/template
index ced670a59d4..a3085fd4c27 100644
--- a/srcpkgs/notmuch/template
+++ b/srcpkgs/notmuch/template
@@ -1,7 +1,7 @@
 # Template file for 'notmuch'
 pkgname=notmuch
 version=0.29.1
-revision=1
+revision=2
 hostmakedepends="perl pkg-config python-devel python3-Sphinx python3-devel"
 makedepends="bash-completion gmime3-devel talloc-devel xapian-core-devel"
 short_desc="Thread-based email index, search, and tagging"

From 2a004663318b9be9e0b13e69c2f89b9682ece8e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 726/874] nyx: rebuild for Python 3.8.

---
 srcpkgs/nyx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/nyx/template b/srcpkgs/nyx/template
index 201ab5856ff..4b265771793 100644
--- a/srcpkgs/nyx/template
+++ b/srcpkgs/nyx/template
@@ -1,7 +1,7 @@
 # Template file for 'nyx'
 pkgname=nyx
 version=2.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nyx"

From 9ff1df8e1d687a5a38d373d51d32e4e428dbe286 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 727/874] olm-python: rebuild for Python 3.8.

---
 srcpkgs/olm-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/olm-python/template b/srcpkgs/olm-python/template
index 57ac1cfa01b..0141611ea3f 100644
--- a/srcpkgs/olm-python/template
+++ b/srcpkgs/olm-python/template
@@ -1,7 +1,7 @@
 # Template file for 'olm-python'
 pkgname=olm-python
 version=3.1.4
-revision=1
+revision=2
 wrksrc="olm-${version}"
 build_wrksrc=python
 build_style=python-module

From b5b9070e7d35511535cee5a401bcdb4ea6359959 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 728/874] onboard: rebuild for Python 3.8.

---
 srcpkgs/onboard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onboard/template b/srcpkgs/onboard/template
index 844744038d8..467ed8f0ea5 100644
--- a/srcpkgs/onboard/template
+++ b/srcpkgs/onboard/template
@@ -1,7 +1,7 @@
 # Template file for 'onboard'
 pkgname=onboard
 version=1.4.1
-revision=4
+revision=5
 build_style=python3-module
 pycompile_module="Onboard"
 patch_args="-Np1"

From c23e1317c4a493f2967ade1da8cf6eb9806b2066 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 729/874] openrazer-meta: rebuild for Python 3.8.

---
 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 112cb9e900b..60dc8212a73 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=2
+revision=3
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 0c8dabe0616d85f801dfefea1b22748ee6055bdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 730/874] openshot: rebuild for Python 3.8.

---
 srcpkgs/openshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/openshot/template b/srcpkgs/openshot/template
index 605ea7305c2..d71b4d09fae 100644
--- a/srcpkgs/openshot/template
+++ b/srcpkgs/openshot/template
@@ -1,7 +1,7 @@
 # Template file for 'openshot'
 pkgname=openshot
 version=2.4.4
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 wrksrc="${pkgname}-qt-${version}"
 build_style=python3-module

From e14cf6e0c5c985078aade34a1f21446e153dbeed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 731/874] orca: rebuild for Python 3.8.

---
 srcpkgs/orca/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/orca/template b/srcpkgs/orca/template
index ac1c0e1dc0e..57d1495c10a 100644
--- a/srcpkgs/orca/template
+++ b/srcpkgs/orca/template
@@ -1,7 +1,7 @@
 # Template file for 'orca'
 pkgname=orca
 version=3.34.0
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="orca"

From ef83881d95547fbaa4f216958aa7f49b0b2c98b3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 732/874] papis: rebuild for Python 3.8.

---
 srcpkgs/papis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/papis/template b/srcpkgs/papis/template
index 95044b2a6a4..d99f358fc0d 100644
--- a/srcpkgs/papis/template
+++ b/srcpkgs/papis/template
@@ -1,7 +1,7 @@
 # Template file for 'papis'
 pkgname=papis
 version=0.8
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-requests python3-yaml python3-chardet python3-BeautifulSoup4

From f4cf98a67a63c679f47a66c6b67ab7309b5769f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 733/874] paraview: rebuild for Python 3.8.

---
 srcpkgs/paraview/template | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/paraview/template b/srcpkgs/paraview/template
index 3b721b1833a..d928a5ea095 100644
--- a/srcpkgs/paraview/template
+++ b/srcpkgs/paraview/template
@@ -1,7 +1,7 @@
 # Template file for 'paraview'
 pkgname=paraview
 version=5.6.1
-revision=1
+revision=2
 wrksrc=ParaView-v${version}
 build_style=cmake
 configure_args="-DPARAVIEW_ENABLE_FFMPEG=ON
@@ -58,6 +58,11 @@ checksum=50ef01f54db6358b402e50d1460ef47c04d675bf26f250c6937737169f1e6612
 CFLAGS="-D_GNU_SOURCE"
 CXXFLAGS="-D_GNU_SOURCE"
 
+post_extract() {
+	# Python 3.8 API change: https://docs.python.org/3/c-api/typeobj.html
+	sed -i '/\/\/ tp_print/s/nullptr/0/' \
+		VTK/Wrapping/Tools/*.c VTK/Wrapping/PythonCore/*.cxx
+}
 post_install() {
 	vlicense Copyright.txt
 }

From 726b01acdb0c9e145291f4e36011c0aaa709684d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 734/874] pass-git-helper: rebuild for Python 3.8.

---
 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 dfeed3ba4f0..6d7f25bd8a7 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.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 78ecdb2c1a4374ceaca2d5093af3a91996be3350 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 735/874] peframe: rebuild for Python 3.8.

---
 srcpkgs/peframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peframe/template b/srcpkgs/peframe/template
index b9d64f7a5a6..5ecede6cf56 100644
--- a/srcpkgs/peframe/template
+++ b/srcpkgs/peframe/template
@@ -1,7 +1,7 @@
 # Template file for 'peframe'
 pkgname=peframe
 version=6.0.3
-revision=1
+revision=2
 archs=noarch
 build_style="python3-module"
 pycompile_module="peframe"

From 78841509335c273af19896de5b79ea31c3168e1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 736/874] peru: rebuild for Python 3.8.

---
 srcpkgs/peru/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peru/template b/srcpkgs/peru/template
index 682440f0b50..10d4689338d 100644
--- a/srcpkgs/peru/template
+++ b/srcpkgs/peru/template
@@ -1,7 +1,7 @@
 # Template file for 'peru'
 pkgname=peru
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="peru"

From 9513806ce9175a7e7f042c9a8aa445525747c64b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 737/874] pgcli: rebuild for Python 3.8.

---
 srcpkgs/pgcli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index b967287e9cb..b187a0a4440 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,7 +1,7 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pgcli"

From 9b06f6f2643e97359ce83918b636d83617530e9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 738/874] picard: rebuild for Python 3.8.

---
 srcpkgs/picard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/picard/template b/srcpkgs/picard/template
index 1bae142434a..08404a88475 100644
--- a/srcpkgs/picard/template
+++ b/srcpkgs/picard/template
@@ -1,7 +1,7 @@
 # Template file for 'picard'
 pkgname=picard
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname}-release-${version}"
 build_style=python3-module

From f046b5d0d02d0350b9b4b0d012941d73a64d7674 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 739/874] piper: rebuild for Python 3.8.

---
 srcpkgs/piper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/piper/template b/srcpkgs/piper/template
index af8cc854991..91a31131f84 100644
--- a/srcpkgs/piper/template
+++ b/srcpkgs/piper/template
@@ -1,7 +1,7 @@
 # Template file for 'piper'
 pkgname=piper
 version=0.2.904
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 hostmakedepends="libratbag pkg-config glib-devel"

From 35264de163d55cc30160d954c08f635a5fa12285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 740/874] playitslowly: rebuild for Python 3.8.

---
 srcpkgs/playitslowly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/playitslowly/template b/srcpkgs/playitslowly/template
index d26cea3510a..6d3483ae251 100644
--- a/srcpkgs/playitslowly/template
+++ b/srcpkgs/playitslowly/template
@@ -1,7 +1,7 @@
 # Template file for 'playitslowly'
 pkgname=playitslowly
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From e81422f6d1d5c7623368d70897172c813b3de9b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 741/874] pmbootstrap: rebuild for Python 3.8.

---
 srcpkgs/pmbootstrap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pmbootstrap/template b/srcpkgs/pmbootstrap/template
index 1bfa8183a84..15e606439c2 100644
--- a/srcpkgs/pmbootstrap/template
+++ b/srcpkgs/pmbootstrap/template
@@ -1,7 +1,7 @@
 # Template file for 'pmbootstrap'
 pkgname=pmbootstrap
 version=1.9.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pmb"

From 527e6a4630f16baca7fc343a5a1d9a05342d82ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 742/874] pockyt: fix and rebuild for Python 3.8.

---
 srcpkgs/pockyt/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/pockyt/template b/srcpkgs/pockyt/template
index 760573904b1..ff12361d443 100644
--- a/srcpkgs/pockyt/template
+++ b/srcpkgs/pockyt/template
@@ -1,7 +1,7 @@
 # Template file for 'pockyt'
 pkgname=pockyt
 version=1.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -13,3 +13,7 @@ license="GPL-3.0-or-later"
 homepage="https://github.com/arvindch/pockyt"
 distfiles="${homepage}/archive/${version}.tar.gz"
 checksum=cd9561e126a6a01c73762639eb7e38b8c509ed1412f72fcc4729b12565b9962c
+
+post_extract() {
+	sed -i 's/(3, 7)/&, (3, 8)/' setup.py
+}

From b17ef4dbbbef2220a50989dc81f76cba0decd84a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 743/874] poezio: rebuild for Python 3.8.

---
 srcpkgs/poezio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/poezio/template b/srcpkgs/poezio/template
index 56f8138bb5e..4b318419dab 100644
--- a/srcpkgs/poezio/template
+++ b/srcpkgs/poezio/template
@@ -1,7 +1,7 @@
 # Template file for 'poezio'
 pkgname=poezio
 version=0.12.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="poezio poezio_plugins poezio_themes"
 hostmakedepends="python3-setuptools pkg-config"

From 3b5be45e96733313ad2473bc51a7d8eee1702577 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 744/874] protontricks: rebuild for Python 3.8.

---
 srcpkgs/protontricks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/protontricks/template b/srcpkgs/protontricks/template
index a32f51c4845..dc003b63690 100644
--- a/srcpkgs/protontricks/template
+++ b/srcpkgs/protontricks/template
@@ -1,7 +1,7 @@
 # Template file for 'protontricks'
 pkgname=protontricks
 version=1.2.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-setuptools"

From 6b17e630c97868c3510f8e786c4c0a4d3b250ecf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 745/874] pulseaudio-equalizer-ladspa: rebuild for Python 3.8.

---
 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 62d7eef2a65..10198de2c08 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=1
+revision=2
 wrksrc="equalizer-${version}"
 build_style=meson
 pycompile_module="pulseeq"

From 70dbb53c2ba650d2fc146e7837f700dec9df6062 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 746/874] pulseeffects: rebuild for Python 3.8.

---
 srcpkgs/pulseeffects/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pulseeffects/template b/srcpkgs/pulseeffects/template
index 7fc44f938d9..dc9044cad32 100644
--- a/srcpkgs/pulseeffects/template
+++ b/srcpkgs/pulseeffects/template
@@ -2,7 +2,7 @@
 pkgname=pulseeffects
 reverts="4.3.4_1"
 version=3.2.3
-revision=3
+revision=4
 build_style=meson
 pycompile_module="PulseEffects PulseEffectsTest"
 hostmakedepends="pkg-config"

From b1dc43e0f84322bbc809630267fe0e51c5e1b41e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 747/874] py3status: rebuild for Python 3.8.

---
 srcpkgs/py3status/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/py3status/template b/srcpkgs/py3status/template
index b7a263270e4..01709cfd14d 100644
--- a/srcpkgs/py3status/template
+++ b/srcpkgs/py3status/template
@@ -1,7 +1,7 @@
 # Template file for 'py3status'
 pkgname=py3status
 version=3.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="py3status"

From 0644b2ee33752b76bc1875c86123ab77a073fc53 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 748/874] pychess: rebuild for Python 3.8.

---
 srcpkgs/pychess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pychess/template b/srcpkgs/pychess/template
index 2c6ecef7bf9..d0594aa77f4 100644
--- a/srcpkgs/pychess/template
+++ b/srcpkgs/pychess/template
@@ -1,7 +1,7 @@
 # Template file for 'pychess'
 pkgname=pychess
 version=0.12.4
-revision=2
+revision=3
 build_style=python3-module
 pycompile_module="pychess"
 archs=noarch

From 5cf19da1be32229c7b04dffba15cd724042a2e9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 749/874] pycp: rebuild for Python 3.8.

---
 srcpkgs/pycp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pycp/template b/srcpkgs/pycp/template
index 770eb50d3f4..c9066259862 100644
--- a/srcpkgs/pycp/template
+++ b/srcpkgs/pycp/template
@@ -1,7 +1,7 @@
 # Template file for 'pycp'
 pkgname=pycp
 version=8.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pycp"

From d88382e9fb382116d88e9ccd60e69a7320462f5c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 750/874] pymol: rebuild for Python 3.8.

---
 srcpkgs/pymol/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pymol/template b/srcpkgs/pymol/template
index 428ba7a6deb..e1031f325c0 100644
--- a/srcpkgs/pymol/template
+++ b/srcpkgs/pymol/template
@@ -1,7 +1,7 @@
 # Template file for 'pymol'
 pkgname=pymol
 version=2.3.0
-revision=1
+revision=2
 wrksrc=${pkgname}-open-source-${version}
 build_style="python3-module"
 makedepends="msgpack-devel python3-numpy freetype-devel libfreeglut-devel glew-devel

From 1245dfb2ab23badf279042adca4caff2deba10a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 751/874] pyradio: rebuild for Python 3.8.

---
 srcpkgs/pyradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyradio/template b/srcpkgs/pyradio/template
index 10d7d8c6fbb..d2d5feddbdd 100644
--- a/srcpkgs/pyradio/template
+++ b/srcpkgs/pyradio/template
@@ -1,7 +1,7 @@
 # Template file for 'pyradio'
 pkgname=pyradio
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pyradio"

From f677cdf12f3d405d1bcb43aab8dd1fc258ee91d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 752/874] pyside2-tools: rebuild for Python 3.8.

---
 srcpkgs/pyside2-tools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyside2-tools/template b/srcpkgs/pyside2-tools/template
index 4ba0044452d..0a153de8c15 100644
--- a/srcpkgs/pyside2-tools/template
+++ b/srcpkgs/pyside2-tools/template
@@ -1,7 +1,7 @@
 # Template file for 'pyside2-tools'
 pkgname=pyside2-tools
 version=5.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release

From 727e69b5ed47b99d25354a6a6d6f42b907a7b696 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 753/874] pysolfc: rebuild for Python 3.8.

---
 srcpkgs/pysolfc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pysolfc/template b/srcpkgs/pysolfc/template
index 62eb90009af..1631e9619d3 100644
--- a/srcpkgs/pysolfc/template
+++ b/srcpkgs/pysolfc/template
@@ -1,7 +1,7 @@
 # Template file for 'pysolfc'
 pkgname=pysolfc
 version=2.6.4
-revision=2
+revision=3
 archs="noarch"
 wrksrc="PySolFC-${pkgname}-${version}"
 build_style=python3-module

From 837440a9d7d89a3bcfe00ffd798f18212ea374e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 754/874] pywal: rebuild for Python 3.8.

---
 srcpkgs/pywal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pywal/template b/srcpkgs/pywal/template
index 214a36698f2..98c4e1581e4 100644
--- a/srcpkgs/pywal/template
+++ b/srcpkgs/pywal/template
@@ -1,7 +1,7 @@
 # Template file for 'pywal'
 pkgname=pywal
 version=3.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pywal"

From 168ac3cd6bd43efb1d6d4192cd9b426cffb66930 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 755/874] qomui: rebuild for Python 3.8.

---
 srcpkgs/qomui/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qomui/template b/srcpkgs/qomui/template
index 4e68864252d..8063350ba06 100644
--- a/srcpkgs/qomui/template
+++ b/srcpkgs/qomui/template
@@ -1,7 +1,7 @@
 # Template file for 'qomui'
 pkgname=qomui
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qomui"

From 26a0119ac8b90d7cd7d6f2c49b3d1c927325b552 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 756/874] quodlibet: rebuild for Python 3.8.

---
 srcpkgs/quodlibet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/quodlibet/template b/srcpkgs/quodlibet/template
index 53f6e926315..4b0c4ba0de5 100644
--- a/srcpkgs/quodlibet/template
+++ b/srcpkgs/quodlibet/template
@@ -1,7 +1,7 @@
 # Template file for 'quodlibet'
 pkgname=quodlibet
 version=4.2.1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="quodlibet"

From c8788e4bb387cdc48040e3af5663a0a23e068ed2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 757/874] qutebrowser: rebuild for Python 3.8.

---
 srcpkgs/qutebrowser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qutebrowser/template b/srcpkgs/qutebrowser/template
index 11b74e4445d..07257c2d84b 100644
--- a/srcpkgs/qutebrowser/template
+++ b/srcpkgs/qutebrowser/template
@@ -1,7 +1,7 @@
 # Template file for 'qutebrowser'
 pkgname=qutebrowser
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qutebrowser"

From 2a2f8aeebe7cb2c4d3783dcdf5725f4c8e717d03 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 758/874] r128gain: rebuild for Python 3.8.

---
 srcpkgs/r128gain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/r128gain/template b/srcpkgs/r128gain/template
index cdea955828e..1cb30c786f8 100644
--- a/srcpkgs/r128gain/template
+++ b/srcpkgs/r128gain/template
@@ -1,7 +1,7 @@
 # Template file for 'r128gain'
 pkgname=r128gain
 version=0.9.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="r128gain"
 hostmakedepends="python3-setuptools"

From b923fdcd9bc9204affa69740d34e582e6712ed4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 759/874] radicale2: rebuild for Python 3.8.

---
 srcpkgs/radicale2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/radicale2/template b/srcpkgs/radicale2/template
index 0d8a27d89f3..310bc8cb3cf 100644
--- a/srcpkgs/radicale2/template
+++ b/srcpkgs/radicale2/template
@@ -1,7 +1,7 @@
 # Template file for 'radicale2'
 pkgname=radicale2
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module

From befc14e8b9ff96c37104bf2441216707df5bcc8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 760/874] ranger: rebuild for Python 3.8.

---
 srcpkgs/ranger/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template
index a387eac4ed7..a49716971a5 100644
--- a/srcpkgs/ranger/template
+++ b/srcpkgs/ranger/template
@@ -1,7 +1,7 @@
 # Template file for 'ranger'
 pkgname=ranger
 version=1.9.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ranger"

From d490364b5c373b46163f36731a39754e04556e98 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 761/874] rednotebook: rebuild for Python 3.8.

---
 srcpkgs/rednotebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rednotebook/template b/srcpkgs/rednotebook/template
index ac870a7a992..af7dea12fd5 100644
--- a/srcpkgs/rednotebook/template
+++ b/srcpkgs/rednotebook/template
@@ -1,7 +1,7 @@
 # Template file for 'rednotebook'
 pkgname=rednotebook
 version=2.11.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rednotebook"

From 44a5a4b73859a74fb915e7613fce5caeabd8acf1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 762/874] redshift: rebuild for Python 3.8.

---
 srcpkgs/redshift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/redshift/template b/srcpkgs/redshift/template
index bb31e7cec05..c58b8daeb76 100644
--- a/srcpkgs/redshift/template
+++ b/srcpkgs/redshift/template
@@ -1,7 +1,7 @@
 # Template file for 'redshift'
 pkgname=redshift
 version=1.12
-revision=1
+revision=2
 build_style=gnu-configure
 build_options="geoclue2"
 configure_args="--enable-gui --disable-geoclue $(vopt_enable geoclue2)"

From c0649b58de59e8a68aff332807f3240430e3ee7c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 763/874] ripe-atlas-tools: rebuild for Python 3.8.

---
 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 c8eef786962..c5e21c4b8dc 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=2.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ripe/atlas/tools"

From 8af034434b8588027b9c7e0f1b0abc587ad462bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 764/874] rmlint: rebuild for Python 3.8.

---
 srcpkgs/rmlint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rmlint/template b/srcpkgs/rmlint/template
index dc8d904d0c2..894a9a1dd01 100644
--- a/srcpkgs/rmlint/template
+++ b/srcpkgs/rmlint/template
@@ -1,7 +1,7 @@
 # Template file for 'rmlint'
 pkgname=rmlint
 version=2.9.0
-revision=1
+revision=2
 build_style=scons
 hostmakedepends="pkg-config python3-Sphinx glib-devel"
 makedepends="libblkid-devel elfutils-devel json-glib-devel"

From 04462f15c08bdd92062a53e420054fdfd65da92b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 765/874] rtv: rebuild for Python 3.8.

---
 srcpkgs/rtv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rtv/template b/srcpkgs/rtv/template
index 1a089e3e88d..1fc137b2e5b 100644
--- a/srcpkgs/rtv/template
+++ b/srcpkgs/rtv/template
@@ -1,7 +1,7 @@
 # Template file for 'rtv'
 pkgname=rtv
 version=1.27.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rtv"

From deb18b1928007c6e0a1042dab8adfe94a801bc28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 766/874] rubber: rebuild for Python 3.8.

---
 srcpkgs/rubber/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rubber/template b/srcpkgs/rubber/template
index cf668638cef..c7fe4cbbd06 100644
--- a/srcpkgs/rubber/template
+++ b/srcpkgs/rubber/template
@@ -1,7 +1,7 @@
 # Template file for 'rubber'
 pkgname=rubber
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From d19b0a94a22decc29f95aa94f2398a30133f2211 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 767/874] safeeyes: rebuild for Python 3.8.

---
 srcpkgs/safeeyes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/safeeyes/template b/srcpkgs/safeeyes/template
index bc35f302011..e7019662316 100644
--- a/srcpkgs/safeeyes/template
+++ b/srcpkgs/safeeyes/template
@@ -1,7 +1,7 @@
 # Template file for 'safeeyes'
 pkgname=safeeyes
 version=2.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="safeeyes"

From c2dacb3fb6e6380df395bffb3460d67524ddf348 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 768/874] scapy: rebuild for Python 3.8.

---
 srcpkgs/scapy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scapy/template b/srcpkgs/scapy/template
index 65242f332a8..36972bfd461 100644
--- a/srcpkgs/scapy/template
+++ b/srcpkgs/scapy/template
@@ -1,7 +1,7 @@
 # Template file for 'scapy'
 pkgname=scapy
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="scapy"

From 6b1ebeaf3648f62790dbf2c394c4060d12cb23d0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 769/874] screenplain: rebuild for Python 3.8.

---
 srcpkgs/screenplain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/screenplain/template b/srcpkgs/screenplain/template
index 8410ab45e40..8eb759ae6a6 100644
--- a/srcpkgs/screenplain/template
+++ b/srcpkgs/screenplain/template
@@ -1,7 +1,7 @@
 # Template file for 'screenplain'
 pkgname=screenplain
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenplain"

From 483229f73350818a1571180552a37954f26fe29d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 770/874] scudcloud: rebuild for Python 3.8.

---
 srcpkgs/scudcloud/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
index 1b9f5f27d8a..1ab2618066e 100644
--- a/srcpkgs/scudcloud/template
+++ b/srcpkgs/scudcloud/template
@@ -1,7 +1,7 @@
 # Template file for 'scudcloud'
 pkgname=scudcloud
 version=1.65
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="scudcloud"
 hostmakedepends="python3-setuptools"

From 123ca799b85c1e8c6cb93162214eead9f92e0baa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 771/874] seafile-libclient: rebuild for Python 3.8.

---
 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 47c49d5ceb2..5eda59c1041 100644
--- a/srcpkgs/seafile-libclient/template
+++ b/srcpkgs/seafile-libclient/template
@@ -1,7 +1,7 @@
 # Template file for 'seafile-libclient'
 pkgname=seafile-libclient
 version=7.0.2
-revision=1
+revision=2
 _distname="${pkgname/-libclient/}"
 wrksrc="${_distname}-${version}"
 build_style=gnu-configure

From dadf6fedad6d6851a5b944f873d4d86cd36ed505 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 772/874] sonata: rebuild for Python 3.8.

---
 srcpkgs/sonata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template
index 3e07610d1e5..fc2d86e6c1a 100644
--- a/srcpkgs/sonata/template
+++ b/srcpkgs/sonata/template
@@ -1,7 +1,7 @@
 # Template file for 'sonata'
 pkgname=sonata
 version=1.7b1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="sonata"

From 430726310d4a2c6f4487784216744a0ba8d42a97 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 773/874] speech-dispatcher: rebuild for Python 3.8.

---
 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 0c27951586a..39cebf1f320 100644
--- a/srcpkgs/speech-dispatcher/template
+++ b/srcpkgs/speech-dispatcher/template
@@ -1,7 +1,7 @@
 # Template build file for 'speech-dispatcher'.
 pkgname=speech-dispatcher
 version=0.8.8
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static"
 short_desc="High-level device independent layer for speech synthesis interface"

From 4bea1bb7754629dcc5164d4be09697dacdc27f52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 774/874] speedtest-cli: rebuild for Python 3.8.

---
 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 6746ea3a35e..c65d9fd631d 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.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="speedtest.py"

From b24b9d876eb69c9d222b4115f375b535b41d8e34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 775/874] sshuttle: rebuild for Python 3.8.

---
 srcpkgs/sshuttle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sshuttle/template b/srcpkgs/sshuttle/template
index e74d90171f2..04bae9a15c3 100644
--- a/srcpkgs/sshuttle/template
+++ b/srcpkgs/sshuttle/template
@@ -1,7 +1,7 @@
 # Template file for 'sshuttle'
 pkgname=sshuttle
 version=0.78.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="sshuttle"

From a94cf196bb0163b8ceac1e90b0c8aacf242262a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 776/874] sssd: rebuild for Python 3.8.

---
 srcpkgs/sssd/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sssd/template b/srcpkgs/sssd/template
index 2ea28d21bee..13d0da0ba99 100644
--- a/srcpkgs/sssd/template
+++ b/srcpkgs/sssd/template
@@ -1,7 +1,7 @@
 # Template file for 'sssd'
 pkgname=sssd
 version=2.0.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-selinux --without-semanage
  --disable-cifs-idmap-plugin --without-samba --with-os=fedora

From 70d497d5a57f21eb299193883523ee44fa71ea5a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 777/874] stcgal: rebuild for Python 3.8.

---
 srcpkgs/stcgal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stcgal/template b/srcpkgs/stcgal/template
index 3410ccf8678..d75e88837cc 100644
--- a/srcpkgs/stcgal/template
+++ b/srcpkgs/stcgal/template
@@ -1,7 +1,7 @@
 # Template file for 'stcgal'
 pkgname=stcgal
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="stcgal"

From cdf4a89e4e281111a817c4c7113ad77d40c5c6be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 778/874] stig: rebuild for Python 3.8.

---
 srcpkgs/stig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stig/template b/srcpkgs/stig/template
index 0777c5f0cc2..abe5f3b563c 100644
--- a/srcpkgs/stig/template
+++ b/srcpkgs/stig/template
@@ -1,7 +1,7 @@
 # Template file for 'stig'
 pkgname=stig
 version=0.10.1a
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 930f6e549836c3d39fd851a831e39a14e72633bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 779/874] streamlink: rebuild for Python 3.8.

---
 srcpkgs/streamlink/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/streamlink/template b/srcpkgs/streamlink/template
index abcdc12c4ac..59caa85dc8a 100644
--- a/srcpkgs/streamlink/template
+++ b/srcpkgs/streamlink/template
@@ -1,7 +1,7 @@
 # Template file for 'streamlink'
 pkgname=streamlink
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="streamlink streamlink_cli"

From ba9febf35412930fc49b70b49d56a17aa23ec4db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 780/874] subuser: rebuild for Python 3.8.

---
 srcpkgs/subuser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/subuser/template b/srcpkgs/subuser/template
index 50444246b29..0bc3e71db36 100644
--- a/srcpkgs/subuser/template
+++ b/srcpkgs/subuser/template
@@ -1,7 +1,7 @@
 # Template file for 'subuser'
 pkgname=subuser
 version=0.6.2
-revision=2
+revision=3
 archs="x86_64*"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From e15b7d83da234e08cd82b0718dee84173dfe4966 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 781/874] synapse: rebuild for Python 3.8.

---
 srcpkgs/synapse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template
index daae80e5792..0c0fd6841fb 100644
--- a/srcpkgs/synapse/template
+++ b/srcpkgs/synapse/template
@@ -1,7 +1,7 @@
 # Template file for 'synapse'
 pkgname=synapse
 version=1.3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From b4a3fa9e78a0b408df1d5ebbe41cd3ac56907dc4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 782/874] tekaim: rebuild for Python 3.8.

---
 srcpkgs/tekaim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tekaim/template b/srcpkgs/tekaim/template
index e3cc5335ecc..bd60dcc57a6 100644
--- a/srcpkgs/tekaim/template
+++ b/srcpkgs/tekaim/template
@@ -1,7 +1,7 @@
 # Template file for 'tekaim'
 pkgname=tekaim
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From 7224199b765cb4f2b66887ffe6244532da34b988 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 783/874] telepresence: rebuild for Python 3.8.

---
 srcpkgs/telepresence/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/telepresence/template b/srcpkgs/telepresence/template
index 17300f3b548..fa7f916f66f 100644
--- a/srcpkgs/telepresence/template
+++ b/srcpkgs/telepresence/template
@@ -1,7 +1,7 @@
 # Template file for 'telepresence'
 pkgname=telepresence
 version=0.102
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="telepresence"

From f585c9fe61cb8e3a7275817bb40e60bd92406046 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 784/874] termdown: rebuild for Python 3.8.

---
 srcpkgs/termdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/termdown/template b/srcpkgs/termdown/template
index 90a4a894d42..299de920389 100644
--- a/srcpkgs/termdown/template
+++ b/srcpkgs/termdown/template
@@ -1,7 +1,7 @@
 # Template file for 'termdown'
 pkgname=termdown
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="termdown.py"

From 52c4dcee8ca0ed8b268907b88b218d7b8e6f9593 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 785/874] terminal_markdown_viewer: rebuild for Python 3.8.

---
 srcpkgs/terminal_markdown_viewer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/terminal_markdown_viewer/template b/srcpkgs/terminal_markdown_viewer/template
index e5d0f38aae2..ba3fcfdc8d6 100644
--- a/srcpkgs/terminal_markdown_viewer/template
+++ b/srcpkgs/terminal_markdown_viewer/template
@@ -1,7 +1,7 @@
 # Template file for 'terminal_markdown_viewer'
 pkgname=terminal_markdown_viewer
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mdv"

From c4298b68d0f7694e8a23e689420f2a3d1f085606 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 786/874] thefuck: rebuild for Python 3.8.

---
 srcpkgs/thefuck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thefuck/template b/srcpkgs/thefuck/template
index 714cd7982c7..a0de1c7b6a3 100644
--- a/srcpkgs/thefuck/template
+++ b/srcpkgs/thefuck/template
@@ -1,7 +1,7 @@
 # Template file for 'thefuck'
 pkgname=thefuck
 version=3.29
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="thefuck"

From b18d19065aa9bd9b335b3ee939bb0bd64efade58 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 787/874] thinkpad-scripts: rebuild for Python 3.8.

---
 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 8d26cf23e77..855d42492fb 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tps"

From 1770ed9b1c9c751304b91a6f6e53da7de1648214 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 788/874] thrift: rebuild for Python 3.8.

---
 srcpkgs/thrift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thrift/template b/srcpkgs/thrift/template
index 73b0f59d4f6..e379ac35a09 100644
--- a/srcpkgs/thrift/template
+++ b/srcpkgs/thrift/template
@@ -1,7 +1,7 @@
 # Template file for 'thrift'
 pkgname=thrift
 version=0.12.0
-revision=2
+revision=3
 build_style=gnu-configure
 makedepends="boost-devel libressl-devel"
 short_desc="Apache Thrift compiler"

From 524283aef8b8fdd32035330913bfd16958f21979 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 789/874] todoman: rebuild for Python 3.8.

---
 srcpkgs/todoman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/todoman/template b/srcpkgs/todoman/template
index 2e0489ff49e..676412b8d0b 100644
--- a/srcpkgs/todoman/template
+++ b/srcpkgs/todoman/template
@@ -1,7 +1,7 @@
 # Template file for 'todoman'
 pkgname=todoman
 version=3.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="todoman"

From 7180afa5a1715531304f6a36a9eac431039f64f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 790/874] toot: rebuild for Python 3.8.

---
 srcpkgs/toot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template
index b6dcdc9ede6..7f9fac6ca01 100644
--- a/srcpkgs/toot/template
+++ b/srcpkgs/toot/template
@@ -1,7 +1,7 @@
 # Template file for 'toot'
 pkgname=toot
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="toot"

From d56207a1678134019b4f169934f0c50a78cf7588 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 791/874] torbrowser-launcher: fix and rebuild for Python 3.8.

---
 srcpkgs/torbrowser-launcher/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/torbrowser-launcher/template b/srcpkgs/torbrowser-launcher/template
index a4aa707495c..4986b6b3240 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.2
-revision=1
+revision=2
 archs="i686 x86_64" # limited by Tor Browser itself
 build_style=python3-module
 pycompile_module="torbrowser_launcher"
@@ -15,6 +15,10 @@ changelog="https://raw.githubusercontent.com/micahflee/torbrowser-launcher/maste
 distfiles="https://github.com/micahflee/torbrowser-launcher/archive/v${version}.tar.gz"
 checksum=25ad4b0c70579628bf18f4cdcd18ac303fe4f7f1c590cc48df2a87651c92991c
 
+post_extract() { 
+	# Python 3.8 removed platform.dist()
+	sed -i 's/distro =.*/distro = "Void"/' setup.py
+}
 post_install() {
 	vlicense LICENSE
 	rm ${DESTDIR}/usr/share/locale/torbrowser-launcher.mo # installed twice

From c66dda5131119abe071425664238ca389de34d8f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 792/874] tox: rebuild for Python 3.8.

---
 srcpkgs/tox/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tox/template b/srcpkgs/tox/template
index 8c6b63a3cb1..908cb86bb38 100644
--- a/srcpkgs/tox/template
+++ b/srcpkgs/tox/template
@@ -1,7 +1,7 @@
 # Template file for 'tox'
 pkgname=tox
 version=3.14.0
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="tox"
 hostmakedepends="python3-setuptools"

From c37ef482e10fb14da3d6cb396c8904257dc2c7c0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 793/874] trackma: rebuild for Python 3.8.

---
 srcpkgs/trackma/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/trackma/template b/srcpkgs/trackma/template
index 96833382346..4c29bb8a35d 100644
--- a/srcpkgs/trackma/template
+++ b/srcpkgs/trackma/template
@@ -1,7 +1,7 @@
 # Template file for 'trackma'
 pkgname=trackma
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 0a1f54dd6467927b77f9371a41381a01608228e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 794/874] trash-cli: rebuild for Python 3.8.

---
 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 2a08548c7c8..4ab724d8cb1 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.17.1.14
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3"

From 58a2a91ed22dcbe5fab5c49b6cb5b04cacb0bec6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 795/874] tryton: rebuild for Python 3.8.

---
 srcpkgs/tryton/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tryton/template b/srcpkgs/tryton/template
index 196033361f6..61e0f733dc9 100644
--- a/srcpkgs/tryton/template
+++ b/srcpkgs/tryton/template
@@ -1,7 +1,7 @@
 # Template file for 'tryton'
 pkgname=tryton
 version=5.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tryton"

From 0334c761ba939e24db0b4c619858a9e37a119b2d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 796/874] tuimoji: rebuild for Python 3.8.

---
 srcpkgs/tuimoji/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuimoji/template b/srcpkgs/tuimoji/template
index 71e0bf540c0..73f5cff281f 100644
--- a/srcpkgs/tuimoji/template
+++ b/srcpkgs/tuimoji/template
@@ -1,7 +1,7 @@
 # Template file for 'tuimoji'
 pkgname=tuimoji
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tuimoji"

From 7c8600b2683e37b9ae3b8d28fdf26fda4c4f5c41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 797/874] tuir: rebuild for Python 3.8.

---
 srcpkgs/tuir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuir/template b/srcpkgs/tuir/template
index dfc0b15c535..a98f4484544 100644
--- a/srcpkgs/tuir/template
+++ b/srcpkgs/tuir/template
@@ -1,7 +1,7 @@
 # Template file for 'tuir'
 pkgname=tuir
 version=1.28.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=python3-module

From fa94d7c83f3c15bf441526ff78dcfaa2e1a0e4fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 798/874] tzupdate: rebuild for Python 3.8.

---
 srcpkgs/tzupdate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tzupdate/template b/srcpkgs/tzupdate/template
index 9531f0f7540..de2217476bd 100644
--- a/srcpkgs/tzupdate/template
+++ b/srcpkgs/tzupdate/template
@@ -1,7 +1,7 @@
 # Template file for 'tzupdate'
 pkgname=tzupdate
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tzupdate.py"

From 8246b4d5c37f08891fb4b91655ad97e368d4b404 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 799/874] udiskie: rebuild for Python 3.8.

---
 srcpkgs/udiskie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/udiskie/template b/srcpkgs/udiskie/template
index 536f4d5609d..06d58236046 100644
--- a/srcpkgs/udiskie/template
+++ b/srcpkgs/udiskie/template
@@ -1,7 +1,7 @@
 # Template file for 'udiskie'
 pkgname=udiskie
 version=1.7.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="udiskie"

From c58f7d10a7748b8cf418991f3d804ce8631a137e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 800/874] ueberzug: rebuild for Python 3.8.

---
 srcpkgs/ueberzug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ueberzug/template b/srcpkgs/ueberzug/template
index e0c474ff63e..dfa1ab29d96 100644
--- a/srcpkgs/ueberzug/template
+++ b/srcpkgs/ueberzug/template
@@ -1,7 +1,7 @@
 # Template file for 'ueberzug'
 pkgname=ueberzug
 version=18.1.3
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel libX11-devel libXext-devel"

From e6ca68fa761e2b3df26f06a7b44e30331de08220 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 801/874] ufw: rebuild for Python 3.8.

---
 srcpkgs/ufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ufw/template b/srcpkgs/ufw/template
index ac7dfa45cdd..0bf2a3a0b76 100644
--- a/srcpkgs/ufw/template
+++ b/srcpkgs/ufw/template
@@ -1,7 +1,7 @@
 # Template file for 'ufw'
 pkgname=ufw
 version=0.36
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="ufw"

From 14dcd23aa719947cc774b71ef0820127a4865ef0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 802/874] unicorn: rebuild for Python 3.8.

---
 srcpkgs/unicorn/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/unicorn/template b/srcpkgs/unicorn/template
index 317e261ae88..971d44752ca 100644
--- a/srcpkgs/unicorn/template
+++ b/srcpkgs/unicorn/template
@@ -1,7 +1,7 @@
 # Template file for 'unicorn'
 pkgname=unicorn
 version=1.0.1
-revision=2
+revision=3
 archs="x86_64* i686*"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"
 short_desc="Lightweight multi-platform, multi-architecture CPU emulator framework"

From 1ae8d35f7645adeab1e7f8afafd996c92f0c08b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 803/874] unknown-horizons: rebuild for Python 3.8.

---
 srcpkgs/unknown-horizons/patches/py38.patch | 14 ++++++++++++++
 srcpkgs/unknown-horizons/template           |  2 +-
 2 files changed, 15 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/unknown-horizons/patches/py38.patch

diff --git a/srcpkgs/unknown-horizons/patches/py38.patch b/srcpkgs/unknown-horizons/patches/py38.patch
new file mode 100644
index 00000000000..59194750cd1
--- /dev/null
+++ b/srcpkgs/unknown-horizons/patches/py38.patch
@@ -0,0 +1,14 @@
+--- setup.py.orig
++++ setup.py
+@@ -39,10 +39,7 @@
+ # Ensure we are in the correct directory
+ os.chdir(os.path.realpath(os.path.dirname(__file__)))
+ 
+-if platform.dist()[0].lower() in ('debian', 'ubuntu'):
+-	executable_path = 'games'
+-else:
+-	executable_path = 'bin'
++executable_path = 'bin'
+ 
+ 
+ # this trick is for setting RELEASE_VERSION if the code is cloned from git repository
diff --git a/srcpkgs/unknown-horizons/template b/srcpkgs/unknown-horizons/template
index b5fc593b744..6e81970800d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3 intltool git python3-Pillow"

From 615d1baa489feab3864039bee37dad2e1ba9977d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 804/874] urh: rebuild for Python 3.8.

---
 srcpkgs/urh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urh/template b/srcpkgs/urh/template
index 2cec83082fd..31f28bb366b 100644
--- a/srcpkgs/urh/template
+++ b/srcpkgs/urh/template
@@ -1,7 +1,7 @@
 # Template file for 'urh'
 pkgname=urh
 version=2.7.5
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="urh"
 hostmakedepends="python3-setuptools python3-Cython"

From da0ab011d8839f3a6ddc2367fc8e1c879825ec29 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 805/874] urlscan: rebuild for Python 3.8.

---
 srcpkgs/urlscan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlscan/template b/srcpkgs/urlscan/template
index f6f0d1db07b..2bb1688dad7 100644
--- a/srcpkgs/urlscan/template
+++ b/srcpkgs/urlscan/template
@@ -1,7 +1,7 @@
 # Template file for 'urlscan'
 pkgname=urlscan
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlscan"

From d23be20fa55a06ffcdf1acd3d7018f833d4337c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 806/874] urlwatch: rebuild for Python 3.8.

---
 srcpkgs/urlwatch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlwatch/template b/srcpkgs/urlwatch/template
index e8a5e403c92..1166fe101a7 100644
--- a/srcpkgs/urlwatch/template
+++ b/srcpkgs/urlwatch/template
@@ -1,7 +1,7 @@
 # Template file for 'urlwatch'
 pkgname=urlwatch
 version=2.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlwatch"

From 758ae9723decfd1886b28f363eb103c16dbaa04b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 807/874] vapoursynth: fix and rebuild for Python 3.8.

---
 srcpkgs/vapoursynth/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/vapoursynth/template b/srcpkgs/vapoursynth/template
index dd85e8b39dc..1c417a624c3 100644
--- a/srcpkgs/vapoursynth/template
+++ b/srcpkgs/vapoursynth/template
@@ -1,7 +1,7 @@
 # Template file for 'vapoursynth'
 pkgname=vapoursynth
 version=R47.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake pkg-config libtool nasm python3-Cython"
 makedepends="python3-devel zimg-devel libmagick-devel libass-devel ffmpeg-devel
@@ -21,6 +21,7 @@ case $XBPS_TARGET_MACHINE in
 esac
 
 pre_configure() {
+	sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION/&-embed/g' configure.ac
 	./autogen.sh
 	case $XBPS_TARGET_MACHINE in
 		arm*musl)

From 2765c9f1b1e0d4395e629f6ff66e1003221cbb27 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 808/874] variety: rebuild for Python 3.8.

---
 srcpkgs/variety/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/variety/template b/srcpkgs/variety/template
index b4ea756c0c9..4d327a830f8 100644
--- a/srcpkgs/variety/template
+++ b/srcpkgs/variety/template
@@ -1,7 +1,7 @@
 # Template file for 'variety'
 pkgname=variety
 version=0.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="jumble variety variety_lib"

From 090c4bfcfc2db73eba64fcab8dec459707ad2676 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 809/874] vdirsyncer: rebuild for Python 3.8.

---
 srcpkgs/vdirsyncer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vdirsyncer/template b/srcpkgs/vdirsyncer/template
index 24080413456..708204afda2 100644
--- a/srcpkgs/vdirsyncer/template
+++ b/srcpkgs/vdirsyncer/template
@@ -1,7 +1,7 @@
 # Template file for 'vdirsyncer'
 pkgname=vdirsyncer
 version=0.16.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="vdirsyncer"

From fb3a977a1a5a3fd2be779201a4dd819512a4351a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 810/874] vidcutter: rebuild for Python 3.8.

---
 srcpkgs/vidcutter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vidcutter/template b/srcpkgs/vidcutter/template
index 4f30b888805..6ca85d4e766 100644
--- a/srcpkgs/vidcutter/template
+++ b/srcpkgs/vidcutter/template
@@ -1,7 +1,7 @@
 # Template file for 'vidcutter'
 pkgname=vidcutter
 version=6.0.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="vidcutter"

From 0addee01c86811593babb5238c415197cb01b03e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 811/874] vimiv: rebuild for Python 3.8.

---
 srcpkgs/vimiv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vimiv/template b/srcpkgs/vimiv/template
index 20fcbe7a03f..a560d4c9d81 100644
--- a/srcpkgs/vimiv/template
+++ b/srcpkgs/vimiv/template
@@ -1,7 +1,7 @@
 # Template file for 'vimiv'
 pkgname="vimiv"
 version=0.9.1
-revision=2
+revision=3
 build_style=gnu-makefile
 pycompile_module=vimiv
 hostmakedepends="python3-setuptools python3-devel"

From 0e236f27837583bf861e3984a19f4cf7827cbac1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 812/874] virtme: rebuild for Python 3.8.

---
 srcpkgs/virtme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtme/template b/srcpkgs/virtme/template
index 3905cb24b1d..30035a734f3 100644
--- a/srcpkgs/virtme/template
+++ b/srcpkgs/virtme/template
@@ -1,7 +1,7 @@
 # Template file for 'virtme'
 pkgname=virtme
 version=0.0.3.20180725
-revision=1
+revision=2
 archs=noarch
 _commit=60100bea82183b5d32ed9fca6534cd0fc60d5eb2
 wrksrc="${_commit}"

From 977bedee2b9cf218b33b79b6a30d782088e693be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 813/874] virtualenvwrapper: rebuild for Python 3.8.

---
 srcpkgs/virtualenvwrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtualenvwrapper/template b/srcpkgs/virtualenvwrapper/template
index 6007cc5d2ed..1f0c2efee86 100644
--- a/srcpkgs/virtualenvwrapper/template
+++ b/srcpkgs/virtualenvwrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'virtualenvwrapper'
 pkgname=virtualenvwrapper
 version=4.8.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="virtualenvwrapper"

From 13d514ee50452908bb52a5f4c379b8543e8aae2e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 814/874] visidata: rebuild for Python 3.8.

---
 srcpkgs/visidata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/visidata/template b/srcpkgs/visidata/template
index 715896e5f7c..c5c3ae7c82e 100644
--- a/srcpkgs/visidata/template
+++ b/srcpkgs/visidata/template
@@ -1,7 +1,7 @@
 # Template file for 'visidata'
 pkgname=visidata
 version=1.5.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="visidata"

From 9ed4ec9bfee68875daad74ea3f07f0378d1b0009 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 815/874] volctl: rebuild for Python 3.8.

---
 srcpkgs/volctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template
index 2b01750b9eb..585aabd2495 100644
--- a/srcpkgs/volctl/template
+++ b/srcpkgs/volctl/template
@@ -1,7 +1,7 @@
 # Template file for 'volctl'
 pkgname=volctl
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="volctl"

From 0db272695e88b29ee9216db4cc2572e0020b4df0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 816/874] voltron: rebuild for Python 3.8.

---
 srcpkgs/voltron/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/voltron/template b/srcpkgs/voltron/template
index c258bb9bab9..38f47a824e3 100644
--- a/srcpkgs/voltron/template
+++ b/srcpkgs/voltron/template
@@ -1,7 +1,7 @@
 # Template file for 'voltron'
 pkgname=voltron
 version=0.1.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="voltron"

From 12dedac32ff8a0f576ad19fc3147b4b386831c3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 817/874] volume_key: rebuild for Python 3.8.

---
 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 11d7b16bed8..14431cb70e9 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=1
+revision=2
 build_style=gnu-configure
 make_build_args="PYTHON3_CFLAGS=-I${XBPS_CROSS_BASE}/${py3_inc}
  PYTHON_CFLAGS=-I${XBPS_CROSS_BASE}/${py2_inc}"

From 3ce63c210ee385583504492fdf75f2ae859f05a4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 818/874] weather: rebuild for Python 3.8.

---
 srcpkgs/weather/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weather/template b/srcpkgs/weather/template
index ffa8a828b36..3ac33bfac15 100644
--- a/srcpkgs/weather/template
+++ b/srcpkgs/weather/template
@@ -1,7 +1,7 @@
 # Template file for 'weather'
 pkgname=weather
 version=2.3
-revision=2
+revision=3
 archs=noarch
 hostmakedepends="python3"
 depends="python3"

From 6b24b9871b5a34bb13b50f506793021986de04d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 819/874] wfuzz: rebuild for Python 3.8.

---
 srcpkgs/wfuzz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wfuzz/template b/srcpkgs/wfuzz/template
index b03c1f28add..4a88ab67407 100644
--- a/srcpkgs/wfuzz/template
+++ b/srcpkgs/wfuzz/template
@@ -1,7 +1,7 @@
 # Template file for 'wfuzz'
 pkgname=wfuzz
 version=2.4
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="wfuzz"

From ffffd630d47635e9948e7264798154dcf5cf4862 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 820/874] wpgtk: rebuild for Python 3.8.

---
 srcpkgs/wpgtk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpgtk/template b/srcpkgs/wpgtk/template
index 7e9d52b4f81..a722da58f22 100644
--- a/srcpkgs/wpgtk/template
+++ b/srcpkgs/wpgtk/template
@@ -1,7 +1,7 @@
 # Template file for 'wpgtk'
 pkgname=wpgtk
 version=6.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpgtk"

From ad6d5b938b34863f749429277206983bd33a9592 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 821/874] wpull: rebuild for Python 3.8.

---
 srcpkgs/wpull/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpull/template b/srcpkgs/wpull/template
index 5e9b9dcc641..621e1c85428 100644
--- a/srcpkgs/wpull/template
+++ b/srcpkgs/wpull/template
@@ -1,7 +1,7 @@
 # Template file for 'wpull'
 pkgname=wpull
 version=2.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpull"

From c0ba430699f94546d60abaeba6f248ef6d36ef84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 822/874] wxPython4: rebuild for Python 3.8.

---
 srcpkgs/wxPython4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wxPython4/template b/srcpkgs/wxPython4/template
index 2aa7117d5e0..b65e0b2ffe1 100644
--- a/srcpkgs/wxPython4/template
+++ b/srcpkgs/wxPython4/template
@@ -1,7 +1,7 @@
 # Template file for 'wxPython4'
 pkgname=wxPython4
 version=4.0.6
-revision=2
+revision=3
 wrksrc="wxPython-${version}"
 build_style=python3-module
 pycompile_module="wx"

From eae81cc7d657c1f863b8ae9a32aa075cc25328f4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 823/874] xcb-proto: rebuild for Python 3.8.

---
 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 1b26ecd73f3..020524bda87 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.13
-revision=2
+revision=3
 archs=noarch
 build_style=gnu-configure
 pycompile_module="xcbgen"

From c879f24aa56efd90bcd1b2031c3a7e194ee93abb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 824/874] xdot: rebuild for Python 3.8.

---
 srcpkgs/xdot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xdot/template b/srcpkgs/xdot/template
index 23f7b1f17e0..f7507ffb8c5 100644
--- a/srcpkgs/xdot/template
+++ b/srcpkgs/xdot/template
@@ -1,7 +1,7 @@
 # Template file for 'xdot'
 pkgname=xdot
 version=1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="xdot.py-${version}"
 build_style=python3-module

From ba48e65ee5332c30c40c9015ffd4f97f902bdcc1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 825/874] xkcdpass: rebuild for Python 3.8.

---
 srcpkgs/xkcdpass/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xkcdpass/template b/srcpkgs/xkcdpass/template
index 46b4a9635f9..37fb6872079 100644
--- a/srcpkgs/xkcdpass/template
+++ b/srcpkgs/xkcdpass/template
@@ -1,7 +1,7 @@
 # Template file for 'xkcdpass'
 pkgname=xkcdpass
 version=1.17.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="XKCD-password-generator-xkcdpass-${version}"
 build_style=python3-module

From f604c57acf10fb9091080955e88a704447aab0cb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 826/874] xonsh: rebuild for Python 3.8.

---
 srcpkgs/xonsh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xonsh/template b/srcpkgs/xonsh/template
index 768ebf36022..2dca267d0d1 100644
--- a/srcpkgs/xonsh/template
+++ b/srcpkgs/xonsh/template
@@ -1,7 +1,7 @@
 # Template file for 'xonsh'
 pkgname=xonsh
 version=0.9.12
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="xonsh xontrib"

From 8cdb99abdc99eefcc53ff3ab7418d4d830558c63 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 827/874] yq: rebuild for Python 3.8.

---
 srcpkgs/yq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yq/template b/srcpkgs/yq/template
index 7c3af7f43c2..dda886c6c40 100644
--- a/srcpkgs/yq/template
+++ b/srcpkgs/yq/template
@@ -1,7 +1,7 @@
 # Template file for 'yq'
 pkgname=yq
 version=2.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 6e757a227ac3953cc8567422ce6b473e6df30cc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 828/874] ytcc: rebuild for Python 3.8.

---
 srcpkgs/ytcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ytcc/template b/srcpkgs/ytcc/template
index feafa404b75..df4195758c7 100644
--- a/srcpkgs/ytcc/template
+++ b/srcpkgs/ytcc/template
@@ -1,7 +1,7 @@
 # Template file for 'ytcc'
 pkgname=ytcc
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ytcc"

From 1742b15ff06a60216eae8f7a016b441d18572e03 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 829/874] yturl: rebuild for Python 3.8.

---
 srcpkgs/yturl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yturl/template b/srcpkgs/yturl/template
index 6fa3e9872ee..ee14b77b5a0 100644
--- a/srcpkgs/yturl/template
+++ b/srcpkgs/yturl/template
@@ -1,7 +1,7 @@
 # Template file for 'yturl'
 pkgname=yturl
 version=2.0.2
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From b6302f7cf81ad28b08db1f9b8e986b9a6c3d59c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 830/874] yubikey-manager: rebuild for Python 3.8.

---
 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 af0330e8e15..fcc7b7cb737 100644
--- a/srcpkgs/yubikey-manager/template
+++ b/srcpkgs/yubikey-manager/template
@@ -1,7 +1,7 @@
 # Template file for 'yubikey-manager'
 pkgname=yubikey-manager
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 87bab1c9de0d25f72a5520b2adcd72c53599a433 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 831/874] z3: rebuild for Python 3.8.

---
 srcpkgs/z3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/z3/template b/srcpkgs/z3/template
index d632a285019..e054915df91 100644
--- a/srcpkgs/z3/template
+++ b/srcpkgs/z3/template
@@ -1,7 +1,7 @@
 # Template file for 'z3'
 pkgname=z3
 version=4.8.6
-revision=2
+revision=3
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=configure
 configure_args="--prefix=/usr -g --python $(vopt_if ocaml --ml)"

From 08edebe2ef2c613536937e6ee2d3fc6e9f067b72 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 832/874] zim: rebuild for Python 3.8.

---
 srcpkgs/zim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/zim/template b/srcpkgs/zim/template
index 45b9df5357c..dff4ad22081 100644
--- a/srcpkgs/zim/template
+++ b/srcpkgs/zim/template
@@ -1,7 +1,7 @@
 # Template file for 'zim'
 pkgname=zim
 version=0.71.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="zim"

From b4ef921e58656c77eb688ee4e2af7b20b3c8bfd2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 833/874] python3-pafy: rebuild for Python 3.8.

---
 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 ce26f770c69..b59c9a0adff 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.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pafy-${version}"
 build_style=python3-module

From bf4e7780fb8dcc15680cd79ddef83f8183bb3375 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 834/874] python3-perf: rebuild for Python 3.8.

---
 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 a03251f97e8..3d57ddb1c1a 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.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyperf-${version}"
 build_style=python3-module

From 80bbe375d025a8f2df0fa0878b5089c83f181e95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 835/874] python3-yara: rebuild for Python 3.8.

---
 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 4a6c56dd083..3bdff14a0da 100644
--- a/srcpkgs/python3-yara/template
+++ b/srcpkgs/python3-yara/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-yara'
 pkgname=python3-yara
 version=3.11.0
-revision=1
+revision=2
 wrksrc="yara-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From dfbf656d20e2c60d70d38432d72796e45a07530a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:31 +0200
Subject: [PATCH 836/874] azote: rebuild for Python 3.8.

---
 srcpkgs/azote/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/azote/template b/srcpkgs/azote/template
index 0a23c209551..2748cb98733 100644
--- a/srcpkgs/azote/template
+++ b/srcpkgs/azote/template
@@ -1,7 +1,7 @@
 # Template file for 'azote'
 pkgname=azote
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="azote"

From 6f9b552c053623ad5214d1b8401f41cb4e56734c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 837/874] binwalk: rebuild for Python 3.8.

---
 srcpkgs/binwalk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/binwalk/template b/srcpkgs/binwalk/template
index 461ea4b547a..fccd523d584 100644
--- a/srcpkgs/binwalk/template
+++ b/srcpkgs/binwalk/template
@@ -1,7 +1,7 @@
 # Template file for 'binwalk'
 pkgname=binwalk
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="binwalk"

From cdf9d0c94b7363a5bab761faa1a5119852db14c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 838/874] gnome-builder: rebuild for Python 3.8.

---
 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 9ae9ff9d94c..85aeeee9a15 100644
--- a/srcpkgs/gnome-builder/template
+++ b/srcpkgs/gnome-builder/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-builder'
 pkgname=gnome-builder
 version=3.34.1
-revision=1
+revision=2
 build_style=meson
 configure_args="-Dwith_webkit=true -Dwith_sysprof=true -Dhelp=true"
 hostmakedepends="appdata-tools desktop-file-utils flex gobject-introspection

From c0bccc27652b15e34572ed02503df5ae7b1dbebb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 839/874] gnome-tweaks: rebuild for Python 3.8.

---
 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 ac1f8bdb873..d0879253ac5 100644
--- a/srcpkgs/gnome-tweaks/template
+++ b/srcpkgs/gnome-tweaks/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-tweaks'
 pkgname=gnome-tweaks
 version=3.34.0
-revision=2
+revision=3
 archs=noarch
 build_style=meson
 pycompile_module="gtweak"

From c86e2d08bfa3e52c769e2b8c76e993af14c698bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 840/874] meson: rebuild for Python 3.8.

---
 srcpkgs/meson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meson/template b/srcpkgs/meson/template
index 315a0f27a92..76791451681 100644
--- a/srcpkgs/meson/template
+++ b/srcpkgs/meson/template
@@ -2,7 +2,7 @@
 pkgname=meson
 reverts="0.52.0_1 0.52.0_2"
 version=0.51.2
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mesonbuild"

From 1259e701609ac87f299b515b612f6b5589a6a5e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 841/874] onionshare: rebuild for Python 3.8.

---
 srcpkgs/onionshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onionshare/template b/srcpkgs/onionshare/template
index c585ae6101e..c37c5962736 100644
--- a/srcpkgs/onionshare/template
+++ b/srcpkgs/onionshare/template
@@ -1,7 +1,7 @@
 # Template file for 'onionshare'
 pkgname=onionshare
 version=2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="onionshare"

From e24fbb347a50db8d9adc3c2e21abfa2926516285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 842/874] portage: rebuild for Python 3.8.

---
 srcpkgs/portage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/portage/template b/srcpkgs/portage/template
index b0f34731035..9610428bbf4 100644
--- a/srcpkgs/portage/template
+++ b/srcpkgs/portage/template
@@ -1,7 +1,7 @@
 # Template file for 'portage'
 pkgname=portage
 version=2.3.77
-revision=1
+revision=2
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=python3-module
 pycompile_module="portage _emerge"

From 3d8944805a3fcbe269c633fd504f8156014b9743 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 843/874] rpm: fix and rebuild for Python 3.8.

---
 srcpkgs/rpm/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/rpm/template b/srcpkgs/rpm/template
index 98e35930c4c..695195323fd 100644
--- a/srcpkgs/rpm/template
+++ b/srcpkgs/rpm/template
@@ -1,7 +1,7 @@
 # Template file for 'rpm'
 pkgname=rpm
 version=4.15.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--with-lua --with-cap --with-acl --with-external-db
  --enable-python PYTHON=python3"
@@ -18,7 +18,7 @@ distfiles="http://ftp.rpm.org/releases/rpm-4.15.x/rpm-${version}.tar.bz2"
 checksum=1e06723b13591e57c99ebe2006fb8daddc4cf72efb366a64a34673ba5f61c201
 conflicts="rpmextract>=0" # Both provide rpm2cpio
 
-CFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6"
+CFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nss"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nspr"
 

From 72f86e0f7af627c04b12bdf23f9811e4ae8da247 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 844/874] youtube-dl: rebuild for Python 3.8.

---
 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 d6596b80bd3..f1ae3aa1a74 100644
--- a/srcpkgs/youtube-dl/template
+++ b/srcpkgs/youtube-dl/template
@@ -1,7 +1,7 @@
 # Template file for 'youtube-dl'
 pkgname=youtube-dl
 version=2019.10.16
-revision=1
+revision=2
 archs=noarch
 wrksrc=youtube-dl
 build_style=python3-module

From fb04151cb309fc8ff7a84dfe9204c113fb159d19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 845/874] blender: rebuild for Python 3.8.

---
 srcpkgs/blender/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template
index 758d1235185..47cb8f8ad13 100644
--- a/srcpkgs/blender/template
+++ b/srcpkgs/blender/template
@@ -1,7 +1,7 @@
 # Template file for 'blender'
 pkgname=blender
 version=2.79b
-revision=9
+revision=10
 build_style="cmake"
 makedepends="
  libgomp-devel libpng-devel tiff-devel python3-devel glu-devel

From 7a05e07582c4f2dad1e5ce7b472de4dd50f5ffc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 846/874] freecad: fix and rebuild for Python 3.8.

---
 srcpkgs/freecad/patches/090-py38.patch | 22 ++++++++++++++++++++++
 srcpkgs/freecad/template               |  2 +-
 2 files changed, 23 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/freecad/patches/090-py38.patch

diff --git a/srcpkgs/freecad/patches/090-py38.patch b/srcpkgs/freecad/patches/090-py38.patch
new file mode 100644
index 00000000000..92566df9df3
--- /dev/null
+++ b/srcpkgs/freecad/patches/090-py38.patch
@@ -0,0 +1,22 @@
+From 174011749d836f3b6c6ae2630f53b2f4c1f9d3fc Mon Sep 17 00:00:00 2001
+From: Richard <hobbes1069@gmail.com>
+Date: Thu, 17 Oct 2019 11:20:10 -0500
+Subject: [PATCH] Update swigpyrun.in for Python 3.8
+
+In Python 3.8 some functions related to thread state were intentionally made private.
+
+This fix (specific to FreeCAD) was suggested here:
+
+https://bugs.python.org/issue35886
+
+--- src/Base/swigpyrun.inl
++++ src/Base/swigpyrun.inl
+@@ -72,7 +72,7 @@ void cleanupSWIG_T(const char* TypeName)
+ 
+     PyObject *module, *dict;
+     PyInterpreterState *interp = PyThreadState_GET()->interp;
+-    PyObject *modules = interp->modules;
++    PyObject *modules = PyImport_GetModuleDict();
+     module = PyDict_GetItemString(modules, "__builtin__");
+     if (module != NULL && PyModule_Check(module)) {
+         dict = PyModule_GetDict(module);
diff --git a/srcpkgs/freecad/template b/srcpkgs/freecad/template
index 9e9375c4444..26bf34702a2 100644
--- a/srcpkgs/freecad/template
+++ b/srcpkgs/freecad/template
@@ -1,7 +1,7 @@
 # Template file for 'freecad'
 pkgname=freecad
 version=0.18.3
-revision=2
+revision=3
 wrksrc="FreeCAD-${version}"
 build_style=cmake
 

From 718d5c572ffaa708c4160791eb058eabf0caf143 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 847/874] gdb: rebuild for Python 3.8.

---
 srcpkgs/gdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gdb/template b/srcpkgs/gdb/template
index 9f84e4869e9..39aab79d08a 100644
--- a/srcpkgs/gdb/template
+++ b/srcpkgs/gdb/template
@@ -1,7 +1,7 @@
 # Template file for 'gdb'
 pkgname=gdb
 version=8.3.1
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="/usr/share/gdb"
 configure_args="--disable-werror --disable-nls --with-system-readline

From e89ecd13e39e0d4ffa50beaae64ee63aa2febcdc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 848/874] hexchat: rebuild for Python 3.8.

---
 srcpkgs/hexchat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hexchat/template b/srcpkgs/hexchat/template
index fbeaf28ae8a..9f7d7957b76 100644
--- a/srcpkgs/hexchat/template
+++ b/srcpkgs/hexchat/template
@@ -1,7 +1,7 @@
 # Template file for 'hexchat'
 pkgname=hexchat
 version=2.14.2
-revision=6
+revision=7
 build_style=meson
 configure_args="-Dwith-dbus=true -Dwith-ssl=true -Dwith-text=false
  -Dwith-perl=/usr/bin/perl -Dwith-python=python3

From 295d2fcdb8e6c8981469ea3f0881d7acc0d7a5a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 849/874] hyperion: rebuild for Python 3.8.

---
 srcpkgs/hyperion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hyperion/template b/srcpkgs/hyperion/template
index 0befdbe7064..7ce415e929e 100644
--- a/srcpkgs/hyperion/template
+++ b/srcpkgs/hyperion/template
@@ -1,7 +1,7 @@
 # Template file for 'hyperion'
 pkgname=hyperion
 version=1.03.2
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DUSE_SYSTEM_PROTO_LIBS=ON -DENABLE_QT5=ON
  -DPROTOBUF_PROTOC_EXECUTABLE=/usr/bin/protoc -DENABLE_AMLOGIC=ON

From c6846e2a15765deae100b5a9a32307270668a58c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 850/874] kdevelop-python: rebuild for Python 3.8.

---
 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 0265916a3d0..a306eb8f442 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.4.2
-revision=1
+revision=2
 wrksrc="kdev-python-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/kdevpythonsupport"

From a61462c12e1549e93d89a2be3d1fbc1c899f8fc7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 851/874] kitty: rebuild for Python 3.8.

---
 srcpkgs/kitty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/kitty/template b/srcpkgs/kitty/template
index d79bcc4acce..54cd08c23ec 100644
--- a/srcpkgs/kitty/template
+++ b/srcpkgs/kitty/template
@@ -1,7 +1,7 @@
 # Template file for 'kitty'
 pkgname=kitty
 version=0.14.6
-revision=1
+revision=2
 pycompile_dirs="usr/lib/kitty"
 hostmakedepends="ncurses pkg-config python3 wayland-devel wayland-protocols"
 makedepends="gettext-devel glfw-devel harfbuzz-devel libxkbcommon-devel

From eb1971689e3b6e8804a1e503f9487d80a97a132a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 852/874] krita: rebuild for Python 3.8, fix sha256sum.

Tarball was yanked for trivial fix.
---
 srcpkgs/krita/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/krita/template b/srcpkgs/krita/template
index 7a59fc9ac58..67f128c61ce 100644
--- a/srcpkgs/krita/template
+++ b/srcpkgs/krita/template
@@ -1,7 +1,7 @@
 # Template file for 'krita'
 pkgname=krita
 version=4.2.7.1
-revision=1
+revision=2
 build_style=cmake
 configure_args="-Wno-dev -DBUILD_TESTING=OFF"
 hostmakedepends="extra-cmake-modules pkg-config python3"
@@ -18,6 +18,6 @@ license="GPL-3.0-only"
 homepage="https://krita.org/"
 KDE_SITE="http://ftp5.gwdg.de/pub/linux/kde/stable/"
 distfiles="${KDE_SITE}/krita/${version}/krita-${version}.tar.gz"
-checksum=28218030edca9dfa1c7e255401ca6fc8fe0e5329f7611cfc196e35746d312086
+checksum=3ed29fd9d8e067def55e703fc55312815c21041d274727e228bdbe0478c09c3d
 nocross=yes
 replaces="calligra-krita>=0"

From 221123967fa111191496b9e08e2c9c76756c13b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:26:38 +0200
Subject: [PATCH 853/874] libpeas: rebuild for Python 3.8.

---
 srcpkgs/libpeas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index a69238bf823..d4dcf8b5941 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,7 +1,7 @@
 # Template file for 'libpeas'
 pkgname=libpeas
 version=1.22.0
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"

From 365648c1fccc0285703eeddac9324f2f4a91218f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 854/874] libreoffice: rebuild for Python 3.8.

---
 srcpkgs/libreoffice/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template
index 6e8685ac0fd..98f04a40304 100644
--- a/srcpkgs/libreoffice/template
+++ b/srcpkgs/libreoffice/template
@@ -1,7 +1,7 @@
 # Template file for 'libreoffice'
 pkgname=libreoffice
 version=6.2.5.2
-revision=2
+revision=3
 build_style=meta
 make_build_args="build-nocheck"
 nocross=yes

From 1c313604728a7106e5854243e06f9cb65c997436 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 855/874] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index 1f9c8043b46..34174be7535 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=5
+revision=6
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From aef507d5b726f510663f6e9c2bfd9f7eb3eeab4e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 856/874] libsigrokdecode: rebuild for Python 3.8.

---
 srcpkgs/libsigrokdecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsigrokdecode/template b/srcpkgs/libsigrokdecode/template
index 59e15dd61b9..cc9d9a10367 100644
--- a/srcpkgs/libsigrokdecode/template
+++ b/srcpkgs/libsigrokdecode/template
@@ -1,7 +1,7 @@
 # Template file for 'libsigrokdecode'
 pkgname=libsigrokdecode
 version=0.5.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="glib-devel python3-devel"

From ca583906dfd0c97c9a4c36d862bf85a55ad07f90 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 857/874] luxrays: rebuild for Python 3.8.

---
 srcpkgs/luxrays/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/luxrays/template b/srcpkgs/luxrays/template
index c783e9fe3e5..58037fbfc05 100644
--- a/srcpkgs/luxrays/template
+++ b/srcpkgs/luxrays/template
@@ -1,7 +1,7 @@
 # Template file for 'luxrays'
 pkgname=luxrays
 version=3.1
-revision=13
+revision=14
 build_style=cmake
 configure_args="-DLUXRAYS_DISABLE_OPENCL=OFF -DCMAKE_SKIP_RPATH=ON"
 hostmakedepends="flex bison boost-devel"

From ef66922c11033d027b7badec1e15a0a0fb3aacbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 858/874] navit: rebuild for Python 3.8.

---
 srcpkgs/navit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/navit/template b/srcpkgs/navit/template
index 461689a3c73..24cd151c64b 100644
--- a/srcpkgs/navit/template
+++ b/srcpkgs/navit/template
@@ -1,7 +1,7 @@
 # Template file for 'navit'
 pkgname=navit
 version=0.5.3
-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 f8cae9038ecc7f293e820f51664bfd59aac52b73 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 859/874] obs: rebuild for Python 3.8.

---
 srcpkgs/obs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/obs/template b/srcpkgs/obs/template
index 3ed426b1583..45bf81803e4 100644
--- a/srcpkgs/obs/template
+++ b/srcpkgs/obs/template
@@ -1,7 +1,7 @@
 # Template file for 'obs'
 pkgname=obs
 version=24.0.1
-revision=1
+revision=2
 _commit_hash_obs_browser="693498b518cf893876f454ef581e13106e8370ec"
 _commit_hash_obs_vst="fde438f7a8afdf41a7ab386a0aa1a61175fc8427"
 _commit_hash_ftl_sdk="98289f7c2ed754c647d451899b3356850c0c1fa3"

From dbfccd5a0bab2df75f326e85613243fa4867cd8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 860/874] renderdoc: fix and rebuild for Python 3.8.

---
 srcpkgs/renderdoc/files/swig-py38.patch    | 28 +++++++++++++
 srcpkgs/renderdoc/patches/cmake-py38.patch | 48 ++++++++++++++++++++++
 srcpkgs/renderdoc/template                 |  8 ++--
 3 files changed, 81 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/renderdoc/files/swig-py38.patch
 create mode 100644 srcpkgs/renderdoc/patches/cmake-py38.patch

diff --git a/srcpkgs/renderdoc/files/swig-py38.patch b/srcpkgs/renderdoc/files/swig-py38.patch
new file mode 100644
index 00000000000..0595599c658
--- /dev/null
+++ b/srcpkgs/renderdoc/files/swig-py38.patch
@@ -0,0 +1,28 @@
+From dbe955dd0300d55a32fd73a4eef730b3e30ed5c4 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 20:32:03 +0200
+Subject: [PATCH] swig: avoid use of _PyObject_GC_UNTRACK
+
+It is deprecated[1]. Use PyObject_GC_UnTrack instead.
+
+[1] https://docs.python.org/3/c-api/gcsupport.html#c._PyObject_GC_UNTRACK
+---
+ Lib/python/builtin.swg | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Lib/python/builtin.swg b/Lib/python/builtin.swg
+index 9597653b7..6af45a9d1 100644
+--- a/Lib/python/builtin.swg
++++ b/Lib/python/builtin.swg
+@@ -120,7 +120,7 @@ SwigPyBuiltin_FunpackSetterClosure (PyObject *obj, PyObject *val, void *closure)
+ 
+ SWIGINTERN void
+ SwigPyStaticVar_dealloc(PyDescrObject *descr) {
+-  _PyObject_GC_UNTRACK(descr);
++  PyObject_GC_UnTrack(descr);
+   Py_XDECREF(PyDescr_TYPE(descr));
+   Py_XDECREF(PyDescr_NAME(descr));
+   PyObject_GC_Del(descr);
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/patches/cmake-py38.patch b/srcpkgs/renderdoc/patches/cmake-py38.patch
new file mode 100644
index 00000000000..fc1adb9ddbc
--- /dev/null
+++ b/srcpkgs/renderdoc/patches/cmake-py38.patch
@@ -0,0 +1,48 @@
+From 56769d3e2cc12670b73a1ddd9dfaab959340c2e2 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 21:27:02 +0200
+Subject: [PATCH] CMake: py3.8 support, ability to patch swig
+
+Add 3.8 to list of python versions and ability to patch the custom
+swig, also needed for 3.8
+---
+ CMakeLists.txt            | 2 +-
+ qrenderdoc/CMakeLists.txt | 2 ++
+ 2 files changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 13818e5b8..00feda2ad 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -308,7 +308,7 @@ add_subdirectory(renderdoc)
+ # are handled in common
+ if(ENABLE_QRENDERDOC OR ENABLE_PYRENDERDOC)
+     # Make sure Python 3 is found
+-    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7)
++    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7 3.8)
+     find_package(PythonInterp 3 REQUIRED)
+     find_package(PythonLibs 3 REQUIRED)
+     # we also need python3-config for swig
+diff --git a/qrenderdoc/CMakeLists.txt b/qrenderdoc/CMakeLists.txt
+index 9fd65b2d3..1ef284349 100644
+--- a/qrenderdoc/CMakeLists.txt
++++ b/qrenderdoc/CMakeLists.txt
+@@ -7,6 +7,7 @@ endif()
+ 
+ set(QMAKE_QT5_COMMAND ${QT_QMAKE_EXECUTABLE} CACHE STRING "Command to run to invoke Qt5's qmake. Normally this is qmake, possibly with qtchooser, but might be qmake-qt5")
+ set(RENDERDOC_SWIG_PACKAGE https://github.com/baldurk/swig/archive/renderdoc-modified-6.zip CACHE STRING "The location where RenderDoc's swig fork source can be found. By default points to the URL on github but can be pointed to a local file.")
++set(RENDERDOC_SWIG_PATCH "" CACHE STRING "The location for the patch to apply to swig.")
+ 
+ set(QMAKE_CONFIG "debug")
+ set(QMAKE_LDFLAGS "")
+@@ -99,6 +100,7 @@ ExternalProject_Add(custom_swig
+     # using an URL to a zip directly so we don't clone the history etc
+     URL ${RENDERDOC_SWIG_PACKAGE}
+     BUILD_IN_SOURCE 1
++    PATCH_COMMAND patch -p1 -i ${RENDERDOC_SWIG_PATCH} > /dev/null
+     CONFIGURE_COMMAND ./autogen.sh > /dev/null 2>&1
+     COMMAND CC=${SWIG_CONFIGURE_CC} CXX=${SWIG_CONFIGURE_CXX} CFLAGS=-fPIC CXXFLAGS=-fPIC ./configure --with-pcre=yes --prefix=${CMAKE_BINARY_DIR} > /dev/null
+     BUILD_COMMAND ${GENERATOR_MAKE} > /dev/null 2>&1
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/template b/srcpkgs/renderdoc/template
index 32d051864d3..9972d9435b0 100644
--- a/srcpkgs/renderdoc/template
+++ b/srcpkgs/renderdoc/template
@@ -1,11 +1,13 @@
 # Template file for 'renderdoc'
 pkgname=renderdoc
 version=1.4
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DENABLE_GL=ON -DENABLE_GLES=ON -DENABLE_QRENDERDOC=ON
  -DENABLE_RENDERDOCCMD=ON -DENABLE_VULKAN=ON -DENABLE_XCB=ON -DENABLE_XLIB=ON
- -DENABLE_PYRENDERDOC=ON"
+ -DENABLE_PYRENDERDOC=ON
+ -DRENDERDOC_SWIG_PATCH=${XBPS_SRCPKGDIR}/${pkgname}/files/swig-py38.patch"
+patch_args="-p1"
 hostmakedepends="bison autoconf automake pkg-config python3"
 makedepends="libX11-devel libxcb-devel xcb-util-keysyms-devel libGL qt5-devel
  qt5-svg-devel qt5-x11extras-devel pcre-devel python3-devel"
@@ -17,7 +19,7 @@ distfiles="https://github.com/baldurk/${pkgname}/archive/v${version}.tar.gz"
 checksum=9a78951f386fb7c3ecf7df6919d300db59719d14f0621438963ae30a75d33677
 
 case "$XBPS_TARGET_MACHINE" in
-	*-musl) broken="This package uses execnfo.h which is not available on musl"
+	*-musl) broken="This package uses execinfo.h which is not available on musl"
 esac
 
 if [ "$CROSS_BUILD" ]; then

From 459b63795ca01a8fe746aec6d9f97141bdc3fc35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 861/874] sigil: rebuild for Python 3.8.

---
 srcpkgs/sigil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sigil/template b/srcpkgs/sigil/template
index 4a90ef95798..1d577ee3487 100644
--- a/srcpkgs/sigil/template
+++ b/srcpkgs/sigil/template
@@ -1,7 +1,7 @@
 # Template file for 'sigil'
 pkgname=sigil
 version=0.9.13
-revision=1
+revision=2
 wrksrc="Sigil-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/sigil/python3lib"

From eb0492cef63d32f08e51495ae261b150a7b3f1b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 862/874] uwsgi: rebuild for Python 3.8.

---
 srcpkgs/uwsgi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/uwsgi/template b/srcpkgs/uwsgi/template
index 2e96cd2e38e..e283d6bc357 100644
--- a/srcpkgs/uwsgi/template
+++ b/srcpkgs/uwsgi/template
@@ -1,7 +1,7 @@
 # Template file for 'uwsgi'
 pkgname=uwsgi
 version=2.0.18
-revision=1
+revision=2
 hostmakedepends="python python3"
 makedepends="python-devel python3-devel"
 short_desc="Fast, self-healing application container server"

From 107450e305e9c38e02604604d47fd38619481bc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 863/874] vim: rebuild for Python 3.8.

---
 srcpkgs/vim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vim/template b/srcpkgs/vim/template
index 8f543069d19..7c7fd4a30f7 100644
--- a/srcpkgs/vim/template
+++ b/srcpkgs/vim/template
@@ -1,7 +1,7 @@
 # Template file for 'vim'
 pkgname=vim
 version=8.1.2021
-revision=3
+revision=4
 hostmakedepends="glib-devel pkg-config"
 makedepends="acl-devel gtk+3-devel libXt-devel lua-devel ncurses-devel
  perl python-devel python3-devel ruby-devel"

From e5c9ab9b7773855271a75cfe5d4dc6cc5d230b59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 864/874] weechat: rebuild for Python 3.8.

---
 srcpkgs/weechat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weechat/template b/srcpkgs/weechat/template
index 19f8af4fd8f..14c3e2360f5 100644
--- a/srcpkgs/weechat/template
+++ b/srcpkgs/weechat/template
@@ -1,7 +1,7 @@
 # Template file for 'weechat'
 pkgname=weechat
 version=2.6
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_MAN=ON -DENABLE_ENCHANT=ON -DENABLE_PERL=ON
  -DENABLE_LUA=ON -DENABLE_RUBY=ON -DENABLE_SPELL=ON

From a86ea0eef792b9b5666ffe67d6f3c6549467f704 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 865/874] znc: rebuild for Python 3.8.

---
 srcpkgs/znc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/znc/template b/srcpkgs/znc/template
index 8af8f23a145..696b59133c8 100644
--- a/srcpkgs/znc/template
+++ b/srcpkgs/znc/template
@@ -1,7 +1,7 @@
 # Template file for 'znc'
 pkgname=znc
 version=1.7.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="
  --enable-python

From 2cfcf24e55b5aae1d192c7345b5ede0401a4486b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:18:51 +0200
Subject: [PATCH 866/874] boost: rebuild for Python 3.8.

---
 srcpkgs/boost/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 40a4fe67730..1fb0e8ed519 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=5
+revision=6
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"

From dab8bf9a36920b36c01351b0e78a3d894d95e438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:10 +0200
Subject: [PATCH 867/874] python-pyside: remove, obsolete.

---
 srcpkgs/python-pyside/INSTALL.msg | 1 -
 srcpkgs/python-pyside/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/python-pyside/INSTALL.msg
 delete mode 100644 srcpkgs/python-pyside/template

diff --git a/srcpkgs/python-pyside/INSTALL.msg b/srcpkgs/python-pyside/INSTALL.msg
deleted file mode 100644
index 6de207b7aa2..00000000000
--- a/srcpkgs/python-pyside/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-python-pyside is no longer provided by Void Linux, and will be fully removed from the repos on 2019-07-17
diff --git a/srcpkgs/python-pyside/template b/srcpkgs/python-pyside/template
deleted file mode 100644
index 7053f0e7fc3..00000000000
--- a/srcpkgs/python-pyside/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'python-pyside'
-pkgname=python-pyside
-version=1.2.2
-revision=7
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="http://www.pyside.org/"

From 56c4a66cb73f8c03aa1d75d0f3aeffc5558c4047 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:52 +0200
Subject: [PATCH 868/874] pyside-tools: remove, obsolete.

---
 srcpkgs/pyside-tools/INSTALL.msg | 1 -
 srcpkgs/pyside-tools/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/pyside-tools/INSTALL.msg
 delete mode 100644 srcpkgs/pyside-tools/template

diff --git a/srcpkgs/pyside-tools/INSTALL.msg b/srcpkgs/pyside-tools/INSTALL.msg
deleted file mode 100644
index fdb45eb0f42..00000000000
--- a/srcpkgs/pyside-tools/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-pyside-tools is no longer provided by Void Linux, and will be fully removed from the repos on 2019-10-30
diff --git a/srcpkgs/pyside-tools/template b/srcpkgs/pyside-tools/template
deleted file mode 100644
index 27cfc18eea4..00000000000
--- a/srcpkgs/pyside-tools/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'pyside-tools'
-pkgname=pyside-tools
-version=0.2.15
-revision=2
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="https://wiki.qt.io/"

From a4caf17102b2a8d6832ab3be41174a163b7a0573 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:22:03 +0200
Subject: [PATCH 869/874] shiboken: remove, obsolete.

---
 srcpkgs/shiboken/patches/python3.6.patch |  11 ---
 srcpkgs/shiboken/template                | 110 -----------------------
 2 files changed, 121 deletions(-)
 delete mode 100644 srcpkgs/shiboken/patches/python3.6.patch
 delete mode 100644 srcpkgs/shiboken/template

diff --git a/srcpkgs/shiboken/patches/python3.6.patch b/srcpkgs/shiboken/patches/python3.6.patch
deleted file mode 100644
index 7145fb4308b..00000000000
--- a/srcpkgs/shiboken/patches/python3.6.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- cmake/Modules/FindPython3Libs.cmake.orig
-+++ cmake/Modules/FindPython3Libs.cmake
-@@ -27,7 +27,7 @@
- # Search for the python framework on Apple.
- # CMAKE_FIND_FRAMEWORKS(Python)
- 
--FOREACH(_CURRENT_VERSION 3.4 3.3 3.2 3.1 3.0)
-+FOREACH(_CURRENT_VERSION 3.6 3.5 3.4 3.3 3.2 3.1 3.0)
-   IF(_CURRENT_VERSION GREATER 3.1)
-       SET(_32FLAGS "m" "u" "mu" "dm" "du" "dmu" "")
-   ELSE()
diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
deleted file mode 100644
index 34174be7535..00000000000
--- a/srcpkgs/shiboken/template
+++ /dev/null
@@ -1,110 +0,0 @@
-# Template file for 'shiboken'
-pkgname=shiboken
-version=1.2.2
-revision=6
-wrksrc="shiboken-${version}"
-hostmakedepends="cmake"
-makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"
-short_desc="CPython bindings generator for C++ libraries"
-maintainer="Enno Boland <gottox@voidlinux.org>"
-homepage="http://www.pyside.org"
-license="LGPL-2.1"
-distfiles="https://download.qt.io/official_releases/pyside/shiboken-${version}.tar.bz2"
-checksum=7625bbcf1fe313fd910c6b8c9cf49ac5495499f9d00867115a2f1f2a69fce5c4
-
-nocross="https://travis-ci.org/voidlinux/void-packages/jobs/269193001#L906"
-
-pre_build() {
-	# Fix inconsistent naming of libshiboken.so and ShibokenConfig.cmake
-	sed -i "/get_config_var('SOABI')/d" cmake/Modules/FindPython3InterpWithDebug.cmake
-}
-do_build() {
-	local args= configure_args="
-		-DCMAKE_INSTALL_PREFIX=/usr \
-		-DCMAKE_BUILD_TYPE=Release \
-		-DBUILD_TESTS=OFF"
-
-	for pyver in $py2_ver $py3_ver; do
-		args=
-		if [ "$pyver" = "$py2_ver" ]; then
-			args="-DPYTHON_SUFFIX=-python$py2_ver"
-		else
-			args="-DUSE_PYTHON3=yes"
-		fi
-
-		[ ! -d build-${pyver} ] && mkdir build-${pyver}
-		pushd build-${pyver}
-		cmake .. ${configure_args} ${args}
-		make ${makejobs}
-		popd
-	done
-}
-do_install() {
-	for pyver in $py2_ver $py3_ver; do
-		make -C build-${pyver} DESTDIR=${DESTDIR} install
-	done
-}
-post_install() {
-	# Fix conflict between .pc files
-	rm -f ${DESTDIR}/usr/lib/pkgconfig/*
-	for pyver in $py2_ver $py3_ver; do
-		vinstall build-${pyver}/data/shiboken.pc 644 \
-			usr/lib/pkgconfig shiboken-python${pyver}.pc
-	done
-}
-
-libshiboken-common-devel_package() {
-	depends="${sourcepkg}-${version}_${revision}"
-	short_desc+=" - common development files"
-	pkg_install() {
-		vmove usr/include
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig.cmake
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfigVersion.cmake
-	}
-}
-libshiboken-python-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python-${version}_${revision}"
-	short_desc="Python2 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py2_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py2_ver}.pc
-		vmove usr/lib/libshiboken-python${py2_ver}.so
-	}
-}
-libshiboken-python_package() {
-	short_desc="Python2 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version}
-	}
-}
-python-shiboken_package() {
-	short_desc="Python2 shiboken bindings"
-	pkg_install() {
-		vmove ${py2_sitelib}/shiboken.so
-	}
-}
-libshiboken-python3-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python3-${version}_${revision}"
-	short_desc="Python3 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py3_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py3_ver}.pc
-		vmove usr/lib/libshiboken-python${py3_ver}.so
-	}
-}
-libshiboken-python3_package() {
-	short_desc="Python3 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version}
-	}
-}
-python3-shiboken_package() {
-	short_desc="Python3 shiboken bindings"
-	pkg_install() {
-		vmove ${py3_sitelib}/shiboken.so
-	}
-}

From b8a76a958a1e28d96f0bf8a93acb982d756937b3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:34:00 +0200
Subject: [PATCH 870/874] boost: rebuild for Python 3.8.

Also ensure bjam is called with the same parameters, to avoid
a full rebuild with -j1 in do_install.
---
 common/shlibs          |  2 +-
 srcpkgs/boost/template | 13 +++++++------
 2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/common/shlibs b/common/shlibs
index f5133935773..92dae1c282c 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -683,7 +683,7 @@ libboost_stacktrace_noop.so.1.69.0 libboost_stacktrace_noop1.69-1.69.0_1<1.70.0
 libboost_stacktrace_addr2line.so.1.69.0 libboost_stacktrace_addr2line1.69-1.69.0_1<1.70.0
 libboost_stacktrace_basic.so.1.69.0 libboost_stacktrace_basic1.69-1.69.0_1<1.70.0
 libboost_python27.so.1.69.0 boost-python1.69-1.69.0_1<1.70.0
-libboost_python36.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
+libboost_python38.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
 libexempi.so.8 exempi-2.5.0_1
 libatasmart.so.4 libatasmart-0.17_1
 libsgutils2.so.2 libsgutils-1.42_1
diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 1fb0e8ed519..b516b348b14 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=6
+revision=7
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"
@@ -60,9 +60,9 @@ do_build() {
 	using python : ${py3_ver} : ${XBPS_CROSS_BASE}/usr/bin/python3 : ${XBPS_CROSS_BASE}${py3_inc} : ${XBPS_CROSS_BASE}${py3_lib} ;
 
 	__EOF
-	./bjam ${makejobs} \
+	./bjam ${makejobs} --prefix=${DESTDIR}/usr \
 		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam --debug-building \
+		--user-config=${wrksrc}/user-config.jam \
 		python=2.7,${py3_ver}
 }
 do_install() {
@@ -72,9 +72,10 @@ do_install() {
 	done
 
 	# Install headers/libs
-	./bjam --prefix=${DESTDIR}/usr abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam python=2.7,${py3_ver} install
-
+	./bjam --prefix=${DESTDIR}/usr \
+		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
+		--user-config=${wrksrc}/user-config.jam \
+		python=2.7,${py3_ver} install
 	# Install Boost.Build stuff.
 	vmkdir usr/share/boost-build
 	cd ${wrksrc}/tools/build && cp -a . ${DESTDIR}/usr/share/boost-build

From 4c0b1ce20aabdbed98b49e903ea6d0c9f531ad2f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 19:40:03 +0200
Subject: [PATCH 871/874] libpeas: update to 1.24.0.

---
 srcpkgs/libpeas/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index d4dcf8b5941..1ff2598c527 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,8 +1,8 @@
 # Template file for 'libpeas'
 pkgname=libpeas
-version=1.22.0
-revision=6
-build_style=gnu-configure
+version=1.24.0
+revision=1
+build_style=meson
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"
 makedepends="vala-devel gtk+3-devel python3-gobject-devel
@@ -13,7 +13,7 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://wiki.gnome.org/Projects/Libpeas"
 distfiles="${GNOME_SITE}/${pkgname}/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=5b2fc0f53962b25bca131a5ec0139e6fef8e254481b6e777975f7a1d2702a962
+checksum=0b9a00138c129a663de3eef5569b00ace03ce31d345f7af783768e9f35c8e6f9
 
 pre_build() {
 	if [ "$CROSS_BUILD" ]; then
@@ -35,7 +35,6 @@ libpeas-devel_package() {
 		vmove usr/lib/pkgconfig
 		vmove "usr/lib/*.so"
 		vmove usr/share/gir-1.0
-		vmove usr/share/gtk-doc
 		vmove usr/share/glade
 	}
 }

From 2be9ae0e45df517724574e5d873706b5377a17af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 20:33:53 +0200
Subject: [PATCH 872/874] scudcloud: upstream dead.

---
 srcpkgs/scudcloud/template | 21 ---------------------
 1 file changed, 21 deletions(-)
 delete mode 100644 srcpkgs/scudcloud/template

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
deleted file mode 100644
index 1ab2618066e..00000000000
--- a/srcpkgs/scudcloud/template
+++ /dev/null
@@ -1,21 +0,0 @@
-# Template file for 'scudcloud'
-pkgname=scudcloud
-version=1.65
-revision=2
-build_style=python3-module
-pycompile_module="scudcloud"
-hostmakedepends="python3-setuptools"
-makedepends="python3-setuptools python-PyQt5 python-dbus python3-PyQt5-dbus"
-depends="python3-setuptools python-PyQt5 python3-PyQt5-dbus
- python3-PyQt5-webkit xdg-utils"
-short_desc="Non official desktop client app for Slack"
-archs=noarch
-maintainer="Gurpreet Singh <gurpreet@mailfence.com>"
-license="MIT"
-homepage="https://launchpad.net/~rael-gc/+archive/ubuntu/scudcloud"
-distfiles="https://github.com/raelgc/${pkgname}/archive/v${version}.tar.gz"
-checksum=1b5420a868a37e181655e9799a3d1fcbbc0b0112349c44ac3d7936b626334791
-
-post_install() {
-	vlicense LICENSE
-}

From 3a020a359d0dc5eb9dce69bbca262e3e3a811f49 Mon Sep 17 00:00:00 2001
From: John <johnz@posteo.net>
Date: Tue, 30 Jul 2019 21:26:02 +0200
Subject: [PATCH 873/874] blender: update to 2.80.

---
 srcpkgs/blender/patches/D6038.diff            |  49 ++++++++
 .../blender/patches/blender-2.78a-musl.patch  |  49 ++++----
 .../collada-1.6.68_DocumentImporter.cpp.patch |  14 ---
 .../collada-1.6.68_DocumentImporter.h.patch   |  11 --
 srcpkgs/blender/patches/ffmpeg4.patch         | 116 ------------------
 srcpkgs/blender/patches/gcc9-elbeem.patch     |  31 -----
 srcpkgs/blender/patches/tree_hpp.patch        |  11 --
 srcpkgs/blender/patches/util_sseb.patch       |  11 --
 srcpkgs/blender/template                      |  15 ++-
 9 files changed, 84 insertions(+), 223 deletions(-)
 create mode 100644 srcpkgs/blender/patches/D6038.diff
 delete mode 100644 srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch
 delete mode 100644 srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch
 delete mode 100644 srcpkgs/blender/patches/ffmpeg4.patch
 delete mode 100644 srcpkgs/blender/patches/gcc9-elbeem.patch
 delete mode 100644 srcpkgs/blender/patches/tree_hpp.patch
 delete mode 100644 srcpkgs/blender/patches/util_sseb.patch

diff --git a/srcpkgs/blender/patches/D6038.diff b/srcpkgs/blender/patches/D6038.diff
new file mode 100644
index 00000000000..c26934e3447
--- /dev/null
+++ b/srcpkgs/blender/patches/D6038.diff
@@ -0,0 +1,49 @@
+Index: blender-2.80_patched/source/blender/python/generic/py_capi_utils.c
+===================================================================
+--- blender-2.80_patched/source/blender/python/generic/py_capi_utils.c
++++ blender-2.80_patched/source/blender/python/generic/py_capi_utils.c
+@@ -717,9 +717,11 @@
+  ****************************************************************************/
+ PyObject *PyC_DefaultNameSpace(const char *filename)
+ {
+-  PyInterpreterState *interp = PyThreadState_GET()->interp;
++  PyObject *modules = PyImport_GetModuleDict();
++  PyObject *builtins = PyDict_GetItemString(modules, "builtins");
++
+   PyObject *mod_main = PyModule_New("__main__");
+-  PyDict_SetItemString(interp->modules, "__main__", mod_main);
++  PyDict_SetItemString(modules, "__main__", mod_main);
+   Py_DECREF(mod_main); /* sys.modules owns now */
+   PyModule_AddStringConstant(mod_main, "__name__", "__main__");
+   if (filename) {
+@@ -727,8 +729,8 @@
+      * note: this wont map to a real file when executing text-blocks and buttons. */
+     PyModule_AddObject(mod_main, "__file__", PyC_UnicodeFromByte(filename));
+   }
+-  PyModule_AddObject(mod_main, "__builtins__", interp->builtins);
+-  Py_INCREF(interp->builtins); /* AddObject steals a reference */
++  PyModule_AddObject(mod_main, "__builtins__", builtins);
++  Py_INCREF(builtins); /* AddObject steals a reference */
+   return PyModule_GetDict(mod_main);
+ }
+ 
+@@ -755,15 +757,15 @@
+ /* restore MUST be called after this */
+ void PyC_MainModule_Backup(PyObject **main_mod)
+ {
+-  PyInterpreterState *interp = PyThreadState_GET()->interp;
+-  *main_mod = PyDict_GetItemString(interp->modules, "__main__");
++  PyObject *modules = PyImport_GetModuleDict();
++  *main_mod = PyDict_GetItemString(modules, "__main__");
+   Py_XINCREF(*main_mod); /* don't free */
+ }
+ 
+ void PyC_MainModule_Restore(PyObject *main_mod)
+ {
+-  PyInterpreterState *interp = PyThreadState_GET()->interp;
+-  PyDict_SetItemString(interp->modules, "__main__", main_mod);
++  PyObject *modules = PyImport_GetModuleDict();
++  PyDict_SetItemString(modules, "__main__", main_mod);
+   Py_XDECREF(main_mod);
+ }
+ 
diff --git a/srcpkgs/blender/patches/blender-2.78a-musl.patch b/srcpkgs/blender/patches/blender-2.78a-musl.patch
index 1ffd09cd57d..bddae1f8d3c 100644
--- a/srcpkgs/blender/patches/blender-2.78a-musl.patch
+++ b/srcpkgs/blender/patches/blender-2.78a-musl.patch
@@ -20,30 +20,9 @@ diff -ru blender-2.78.orig/CMakeLists.txt blender-2.78a/CMakeLists.txt
  elseif(WIN32)
  	set(_init_JACK                           OFF)
  elseif(APPLE)
-diff -ru blender-2.78.orig/intern/guardedalloc/intern/mallocn_intern.h blender-2.78a/intern/guardedalloc/intern/mallocn_intern.h
---- blender-2.78.orig/intern/guardedalloc/intern/mallocn_intern.h	2016-09-28 09:26:55.000000000 +0000
-+++ blender-2.78a/intern/guardedalloc/intern/mallocn_intern.h	2017-02-07 14:44:35.213040733 +0000
-@@ -52,7 +52,7 @@
- #undef HAVE_MALLOC_STATS
- #define USE_MALLOC_USABLE_SIZE  /* internal, when we have malloc_usable_size() */
- 
--#if defined(__linux__) || (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || defined(__GLIBC__)
-+#if (defined(__linux__) && defined(HAVE_EXECINFO_H)) || (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || defined(__GLIBC__)
- #  include <malloc.h>
- #  define HAVE_MALLOC_STATS
- #elif defined(__FreeBSD__)
 diff -ru blender-2.78.orig/source/blender/blenlib/intern/system.c blender-2.78a/source/blender/blenlib/intern/system.c
 --- blender-2.78.orig/source/blender/blenlib/intern/system.c	2016-10-25 09:59:23.000000000 +0000
 +++ blender-2.78a/source/blender/blenlib/intern/system.c	2017-02-07 14:44:35.213040733 +0000
-@@ -31,7 +31,7 @@
- #include "MEM_guardedalloc.h"
- 
- /* for backtrace */
--#if defined(__linux__) || defined(__APPLE__)
-+#if (defined(__linux__) && defined(HAVE_EXECINFO_H)) || defined(__APPLE__)
- #  include <execinfo.h>
- #elif defined(WIN32)
- #  include <windows.h>
 @@ -77,7 +77,7 @@
  {
  	/* ------------- */
@@ -65,3 +44,31 @@ diff -ru blender-2.78.orig/source/creator/creator_signals.c blender-2.78a/source
  	feenableexcept(FE_DIVBYZERO | FE_INVALID | FE_OVERFLOW);
  # endif /* defined(__linux__) && defined(__GNUC__) */
  # if defined(OSX_SSE_FPE)
+--- a/source/blender/blenlib/intern/system.c	2019-07-30 21:05:30.702224608 +0200
++++ -	2019-07-30 21:13:21.535328709 +0200
+@@ -38,10 +38,13 @@
+ #  include <dbghelp.h>
+ #  pragma warning(pop)
+ #else
+-#  include <execinfo.h>
+ #  include <unistd.h>
+ #endif
+ 
++#if (defined(__linux__) && defined(HAVE_EXECINFO_H)) || defined(__APPLE__)
++#  include <execinfo.h>
++#endif
++
+ int BLI_cpu_support_sse2(void)
+ {
+ #if defined(__x86_64__) || defined(_M_X64)
+--- a/intern/guardedalloc/intern/mallocn_intern.h	2019-07-24 09:41:39.000000000 +0200
++++ -	2019-10-20 00:03:13.450031866 +0200
+@@ -40,7 +40,7 @@
+ #undef HAVE_MALLOC_STATS
+ #define USE_MALLOC_USABLE_SIZE /* internal, when we have malloc_usable_size() */
+ 
+-#if defined(__linux__) || (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || \
++#if (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || \
+     defined(__GLIBC__)
+ #  include <malloc.h>
+ #  define HAVE_MALLOC_STATS
diff --git a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch b/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch
deleted file mode 100644
index e181a004379..00000000000
--- a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/source/blender/collada/DocumentImporter.cpp
-+++ b/source/blender/collada/DocumentImporter.cpp
-@@ -1340,6 +1340,11 @@ bool DocumentImporter::writeAnimationLis
- 	return anim_importer.write_animation_list(animationList);
- }
- 
-+bool DocumentImporter::writeAnimationClip(const COLLADAFW::AnimationClip *AnimationClip)
-+{
-+	return true;
-+}
-+
- /** When this method is called, the writer must write the skin controller data.
-  * \return The writer should return true, if writing succeeded, false otherwise.*/
- bool DocumentImporter::writeSkinControllerData(const COLLADAFW::SkinControllerData *skin)
diff --git a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch b/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch
deleted file mode 100644
index af0d2b4dded..00000000000
--- a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/source/blender/collada/DocumentImporter.h.orig	2018-12-03 07:38:12 UTC
-+++ b/source/blender/collada/DocumentImporter.h
-@@ -107,6 +107,8 @@ public:
- 	bool writeAnimation(const COLLADAFW::Animation*);
- 
- 	bool writeAnimationList(const COLLADAFW::AnimationList*);
-+	
-+	bool writeAnimationClip( const COLLADAFW::AnimationClip* );
- 
- 	bool writeGeometry(const COLLADAFW::Geometry*);
- 
diff --git a/srcpkgs/blender/patches/ffmpeg4.patch b/srcpkgs/blender/patches/ffmpeg4.patch
deleted file mode 100644
index 6b29e58f273..00000000000
--- a/srcpkgs/blender/patches/ffmpeg4.patch
+++ /dev/null
@@ -1,116 +0,0 @@
-source: https://git.archlinux.org/svntogit/community.git/plain/trunk/ffmpeg4.0.patch?h=packages/blender
-
-diff --git a/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp b/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp
-index e9eea195208..84aea330313 100644
---- a/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp
-+++ b/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp
-@@ -264,9 +264,9 @@ AUD_FFMPEGReader::AUD_FFMPEGReader(boost::shared_ptr<AUD_Buffer> buffer) :
- 		m_membuffer(buffer),
- 		m_membufferpos(0)
- {
--	m_membuf = reinterpret_cast<data_t*>(av_malloc(FF_MIN_BUFFER_SIZE + FF_INPUT_BUFFER_PADDING_SIZE));
-+	m_membuf = reinterpret_cast<data_t*>(av_malloc(AV_INPUT_BUFFER_MIN_SIZE + AV_INPUT_BUFFER_PADDING_SIZE));
- 
--	m_aviocontext = avio_alloc_context(m_membuf, FF_MIN_BUFFER_SIZE, 0, this,
-+	m_aviocontext = avio_alloc_context(m_membuf, AV_INPUT_BUFFER_MIN_SIZE, 0, this,
- 									   read_packet, NULL, seek_packet);
- 
- 	if(!m_aviocontext)
-diff --git a/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp b/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
-index 3f95ac7a4da..2c2f0916406 100644
---- a/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
-+++ b/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
-@@ -163,7 +163,7 @@ AUD_FFMPEGWriter::AUD_FFMPEGWriter(std::string filename, AUD_DeviceSpecs specs,
- 		try
- 		{
- 			if(m_formatCtx->oformat->flags & AVFMT_GLOBALHEADER)
--				m_codecCtx->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+				m_codecCtx->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 
- 			AVCodec* codec = avcodec_find_encoder(m_codecCtx->codec_id);
- 			if(!codec)
-@@ -185,11 +185,11 @@ AUD_FFMPEGWriter::AUD_FFMPEGWriter(std::string filename, AUD_DeviceSpecs specs,
- 			if(avcodec_open2(m_codecCtx, codec, NULL))
- 				AUD_THROW(AUD_ERROR_FFMPEG, codec_error);
- 
--			m_output_buffer.resize(FF_MIN_BUFFER_SIZE);
-+			m_output_buffer.resize(AV_INPUT_BUFFER_MIN_SIZE);
- 			int samplesize = AUD_MAX(AUD_SAMPLE_SIZE(m_specs), AUD_DEVICE_SAMPLE_SIZE(m_specs));
- 
- 			if(m_codecCtx->frame_size <= 1) {
--				m_input_size = FF_MIN_BUFFER_SIZE * 8 / m_codecCtx->bits_per_coded_sample / m_codecCtx->channels;
-+				m_input_size = AV_INPUT_BUFFER_MIN_SIZE * 8 / m_codecCtx->bits_per_coded_sample / m_codecCtx->channels;
- 				m_input_buffer.resize(m_input_size * samplesize);
- 			}
- 			else
-diff --git a/source/blender/blenkernel/intern/writeffmpeg.c b/source/blender/blenkernel/intern/writeffmpeg.c
-index d7fcd896e11..9e82df17dce 100644
---- a/source/blender/blenkernel/intern/writeffmpeg.c
-+++ b/source/blender/blenkernel/intern/writeffmpeg.c
-@@ -619,8 +619,6 @@ static AVStream *alloc_video_stream(FFMpegContext *context, RenderData *rd, int
- 	c->rc_buffer_aggressivity = 1.0;
- #endif
- 
--	c->me_method = ME_EPZS;
--	
- 	codec = avcodec_find_encoder(c->codec_id);
- 	if (!codec)
- 		return NULL;
-@@ -682,14 +680,14 @@ static AVStream *alloc_video_stream(FFMpegContext *context, RenderData *rd, int
- 	    )
- 	{
- 		PRINT("Using global header\n");
--		c->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+		c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 	}
- 	
- 	/* Determine whether we are encoding interlaced material or not */
- 	if (rd->mode & R_FIELDS) {
- 		PRINT("Encoding interlaced video\n");
--		c->flags |= CODEC_FLAG_INTERLACED_DCT;
--		c->flags |= CODEC_FLAG_INTERLACED_ME;
-+		c->flags |= AV_CODEC_FLAG_INTERLACED_DCT;
-+		c->flags |= AV_CODEC_FLAG_INTERLACED_ME;
- 	}
- 
- 	/* xasp & yasp got float lately... */
-@@ -779,7 +777,7 @@ static AVStream *alloc_audio_stream(FFMpegContext *context, RenderData *rd, int
- 	}
- 
- 	if (of->oformat->flags & AVFMT_GLOBALHEADER) {
--		c->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+		c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 	}
- 
- 	set_ffmpeg_properties(rd, c, "audio", &opts);
-@@ -798,14 +796,14 @@ static AVStream *alloc_audio_stream(FFMpegContext *context, RenderData *rd, int
- 	st->codec->time_base.den = st->codec->sample_rate;
- 
- #ifndef FFMPEG_HAVE_ENCODE_AUDIO2
--	context->audio_outbuf_size = FF_MIN_BUFFER_SIZE;
-+	context->audio_outbuf_size = AV_INPUT_BUFFER_MIN_SIZE;
- #endif
- 
- 	if (c->frame_size == 0)
- 		// used to be if ((c->codec_id >= CODEC_ID_PCM_S16LE) && (c->codec_id <= CODEC_ID_PCM_DVD))
- 		// not sure if that is needed anymore, so let's try out if there are any
- 		// complaints regarding some ffmpeg versions users might have
--		context->audio_input_samples = FF_MIN_BUFFER_SIZE * 8 / c->bits_per_coded_sample / c->channels;
-+		context->audio_input_samples = AV_INPUT_BUFFER_MIN_SIZE * 8 / c->bits_per_coded_sample / c->channels;
- 	else {
- 		context->audio_input_samples = c->frame_size;
- #ifndef FFMPEG_HAVE_ENCODE_AUDIO2
-diff --git a/source/blender/imbuf/intern/indexer.c b/source/blender/imbuf/intern/indexer.c
-index eaf4dfd84b4..9c2f42feb52 100644
---- a/source/blender/imbuf/intern/indexer.c
-+++ b/source/blender/imbuf/intern/indexer.c
-@@ -537,7 +537,7 @@ static struct proxy_output_ctx *alloc_proxy_output_ffmpeg(
- 	av_opt_set_int(rv->c, "qmax", ffmpeg_quality, 0);
- 
- 	if (rv->of->flags & AVFMT_GLOBALHEADER) {
--		rv->c->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+		rv->c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 	}
- 
- 	if (avio_open(&rv->of->pb, fname, AVIO_FLAG_WRITE) < 0) {
-
diff --git a/srcpkgs/blender/patches/gcc9-elbeem.patch b/srcpkgs/blender/patches/gcc9-elbeem.patch
deleted file mode 100644
index 26c58e7d988..00000000000
--- a/srcpkgs/blender/patches/gcc9-elbeem.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-https://bugs.gentoo.org/685922
-
---- a/intern/elbeem/intern/solver_main.cpp
-+++ b/intern/elbeem/intern/solver_main.cpp
-@@ -381,7 +381,7 @@ LbmFsgrSolver::mainLoop(const int lev)
- 	GRID_REGION_INIT();
- #if PARALLEL==1
- 	const int gDebugLevel = ::gDebugLevel;
--#pragma omp parallel default(none) num_threads(mNumOMPThreads) \
-+#pragma omp parallel default(none) firstprivate(gDebugLevel,iend,lev,cutConst) num_threads(mNumOMPThreads) \
-   reduction(+: \
- 	  calcCurrentMass,calcCurrentVolume, \
- 		calcCellsFilled,calcCellsEmptied, \
-@@ -1126,7 +1126,7 @@ LbmFsgrSolver::preinitGrids()
- 		GRID_REGION_INIT();
- #if PARALLEL==1
- 	const int gDebugLevel = ::gDebugLevel;
--#pragma omp parallel default(none) num_threads(mNumOMPThreads) \
-+#pragma omp parallel default(none) firstprivate(gDebugLevel,iend,lev) num_threads(mNumOMPThreads) \
-   reduction(+: \
- 	  calcCurrentMass,calcCurrentVolume, \
- 		calcCellsFilled,calcCellsEmptied, \
-@@ -1164,7 +1164,7 @@ LbmFsgrSolver::standingFluidPreinit()
- 	GRID_REGION_INIT();
- #if PARALLEL==1
- 	const int gDebugLevel = ::gDebugLevel;
--#pragma omp parallel default(none) num_threads(mNumOMPThreads) \
-+#pragma omp parallel default(none) firstprivate(gDebugLevel,iend,lev) num_threads(mNumOMPThreads) \
-   reduction(+: \
- 	  calcCurrentMass,calcCurrentVolume, \
- 		calcCellsFilled,calcCellsEmptied, \
diff --git a/srcpkgs/blender/patches/tree_hpp.patch b/srcpkgs/blender/patches/tree_hpp.patch
deleted file mode 100644
index 7c9fbca1821..00000000000
--- a/srcpkgs/blender/patches/tree_hpp.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/intern/itasc/kdl/tree.hpp	2018-03-23 16:22:25.000000000 +0100
-+++ b/intern/itasc/kdl/tree.hpp	2018-08-13 19:31:32.101185313 +0200
-@@ -34,7 +34,7 @@
-     //Forward declaration
-     class TreeElement;
-     // Eigen allocator is needed for alignment of Eigen data types
--    typedef std::map<std::string,TreeElement, std::less<std::string>, Eigen::aligned_allocator<std::pair<std::string, TreeElement> > > SegmentMap;
-+    typedef std::map<std::string,TreeElement, std::less<std::string>, Eigen::aligned_allocator<std::pair<const std::string, TreeElement> > > SegmentMap;
- 
-     class TreeElement
-     {
diff --git a/srcpkgs/blender/patches/util_sseb.patch b/srcpkgs/blender/patches/util_sseb.patch
deleted file mode 100644
index 85396282d81..00000000000
--- a/srcpkgs/blender/patches/util_sseb.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/intern/cycles/util/util_sseb.h
-+++ b/intern/cycles/util/util_sseb.h
-@@ -116,7 +116,7 @@ __forceinline const sseb unpacklo( const sseb& a, const sseb& b ) { return _mm_u
- __forceinline const sseb unpackhi( const sseb& a, const sseb& b ) { return _mm_unpackhi_ps(a, b); }
- 
- template<size_t i0, size_t i1, size_t i2, size_t i3> __forceinline const sseb shuffle( const sseb& a ) {
--	return _mm_shuffle_epi32(a, _MM_SHUFFLE(i3, i2, i1, i0));
-+	return _mm_castsi128_ps(_mm_shuffle_epi32(a, _MM_SHUFFLE(i3, i2, i1, i0)));
- }
- 
- template<> __forceinline const sseb shuffle<0, 1, 0, 1>( const sseb& a ) {
diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template
index 47cb8f8ad13..2beb7f96dd8 100644
--- a/srcpkgs/blender/template
+++ b/srcpkgs/blender/template
@@ -1,21 +1,22 @@
 # Template file for 'blender'
 pkgname=blender
-version=2.79b
-revision=10
+version=2.80
+revision=1
 build_style="cmake"
 makedepends="
  libgomp-devel libpng-devel tiff-devel python3-devel glu-devel
  glew-devel freetype-devel jack-devel libopenal-devel libsndfile-devel
  libsamplerate-devel ffmpeg-devel fftw-devel boost-devel pcre-devel llvm
  libopenexr-devel libopenjpeg-devel libXi-devel openimageio-devel
- opencolorio-devel opencollada-devel"
+ opencolorio-devel opencollada-devel python3-numpy"
 depends="desktop-file-utils hicolor-icon-theme"
 short_desc="3D graphics creation suite"
 maintainer="Enno Boland <gottox@voidlinux.org>"
-license="GPL-2"
+license="GPL-2.0-or-later"
 homepage="http://www.blender.org"
-distfiles="http://download.blender.org/source/${pkgname}-${version}.tar.gz"
-checksum=4c944c304a49e68ac687ea06f5758204def049b66dc211e1cffa1857716393bc
+#distfiles="http://download.blender.org/source/${pkgname}-${version}.tar.gz"
+distfiles="https://ftp.halifax.rwth-aachen.de/blender/source/blender-${version}.tar.gz"
+checksum=cd9d7e505c1f6e63a4f72366ed04d446859977eeb34cde21283aaea6a304a5c0
 patch_args="-Np1"
 
 pycompile_version="$py3_ver"
@@ -25,9 +26,7 @@ archs="x86_64* i686* ppc64*"
 configure_args="
 -DWITH_INSTALL_PORTABLE=OFF
 -DWITH_PYTHON_INSTALL=OFF
--DWITH_GAMEENGINE=ON
 -DWITH_JACK=ON
--DWITH_PLAYER=ON
 -DWITH_CODEC_FFMPEG=ON
 -DWITH_CODEC_SNDFILE=ON
 -DWITH_OPENMP=ON

From a95fe8004999356c26cfa84e0e1d30c60d89c294 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Mon, 21 Oct 2019 14:41:53 +0200
Subject: [PATCH 874/874] attic: remove, upstream dead.

---
 srcpkgs/attic/template | 29 -----------------------------
 1 file changed, 29 deletions(-)
 delete mode 100644 srcpkgs/attic/template

diff --git a/srcpkgs/attic/template b/srcpkgs/attic/template
deleted file mode 100644
index ed454302ce4..00000000000
--- a/srcpkgs/attic/template
+++ /dev/null
@@ -1,29 +0,0 @@
-# Template file for 'attic'
-pkgname=attic
-version=0.16
-revision=15
-wrksrc="Attic-$version"
-build_style=python3-module
-hostmakedepends="python3-setuptools python3-devel libressl-devel python3-Sphinx"
-makedepends="${hostmakedepends/python3-setuptools/} acl-devel"
-depends="python3-msgpack python3-llfuse"
-pycompile_module="attic"
-short_desc="A deduplicating backup program for efficient and secure backups"
-maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
-homepage="https://attic-backup.org/"
-license="BSD"
-distfiles="${PYPI_SITE}/A/Attic/Attic-0.16.tar.gz"
-checksum=6650cd28072101c2e05941e77b93a62f91da6179785e4e4b4880916c469bba2c
-
-pre_build() {
-	if [ "$CROSS_BUILD" ]; then
-		sed -i "s|\(possible_openssl_prefixes\) =.*|\1 = ['${XBPS_CROSS_BASE}/usr']|" setup.py
-	fi
-}
-post_build() {
-	PYTHONPATH=.. make -C docs man SPHINXBUILD=sphinx-build3
-}
-post_install() {
-	vlicense LICENSE
-	vman docs/_build/man/attic-deduplicatingarchiver.1 attic.1
-}

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PR PATCH] [Updated] [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (16 preceding siblings ...)
  2019-10-21 12:41 ` voidlinux-github
@ 2019-10-21 12:42 ` voidlinux-github
  2019-10-21 12:42 ` voidlinux-github
                   ` (14 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-10-21 12:42 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1067 bytes --]

There is an updated pull request by leahneukirchen against master on the void-packages repository

https://github.com/leahneukirchen/void-packages python38
https://github.com/void-linux/void-packages/pull/15623

[WIP] Python 3.8
This huge PR tries to bump all packages that either shlib-require
libpython3.6m.so.1.0 or put files into /usr/lib/python3.6/site-packages.

Broken packages (on x86_64):

- [ ] attic -> upstream dead, remove?
- [x] blender -> update to 2.80
- [ ] eolie -> meson
- [x] fontforge
- [x] freecad
- [ ] gst1-python -> meson
- [ ] libopenshot -> gcc9 issue, but supposedly fixed? @Spencer-H 
- [x] libpeas
- [x] nagstamon
- [x] paraview
- [x] pockyt
- [x] ~~scudcloud~~
- [x] torbrowser-launcher
- [x] unknown-horizons
- [x] vapoursynth
- [x] variety
- [ ] kdevelop-python -> upstream: https://bugs.kde.org/show_bug.cgi?id=411956
- [x] krita: SHA256 mismatch
- [x] ~~shiboken~~
- [x] renderdoc

Untested:

- [ ] libreoffice


A patch file from https://github.com/void-linux/void-packages/pull/15623.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python38-15623.patch --]
[-- Type: text/x-diff, Size: 655161 bytes --]

From 9907b26ec9aacb2c9c990c665c32502ef0f7c808 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:06:59 +0200
Subject: [PATCH 001/874] python3: update to 3.8.0.

---
 common/shlibs                                 |  3 ++-
 .../python3/patches/fix-xattrs-glibc.patch    | 13 ----------
 srcpkgs/python3/patches/libressl-2.6.patch    | 26 -------------------
 srcpkgs/python3/template                      | 23 ++++++++--------
 4 files changed, 13 insertions(+), 52 deletions(-)
 delete mode 100644 srcpkgs/python3/patches/fix-xattrs-glibc.patch
 delete mode 100644 srcpkgs/python3/patches/libressl-2.6.patch

diff --git a/common/shlibs b/common/shlibs
index cc3fd8383d8..f5133935773 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1698,8 +1698,9 @@ libefiboot.so.1 libefivar-31_1
 libportaudio.so.2 portaudio-19.20140130_1
 libportaudiocpp.so.0 portaudio-cpp-19.20140130_1
 libdar.so.5000 libdar-2.4.14_1
-libpython3.so python3-3.6.2_1
 libpython3.6m.so.1.0 python3-3.6.2_1
+libpython3.so python3-3.8.0_1
+libpython3.8.so.1.0 python3-3.8.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.25.28_1
diff --git a/srcpkgs/python3/patches/fix-xattrs-glibc.patch b/srcpkgs/python3/patches/fix-xattrs-glibc.patch
deleted file mode 100644
index 909901293d5..00000000000
--- a/srcpkgs/python3/patches/fix-xattrs-glibc.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- Modules/posixmodule.c.orig
-+++ Modules/posixmodule.c
-@@ -103,8 +103,9 @@ corresponding Unix manual entries for more information on calls.");
- #undef HAVE_SCHED_SETAFFINITY
- #endif
- 
--#if defined(HAVE_SYS_XATTR_H) && defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
-+#if defined(HAVE_SYS_XATTR_H) && defined(__linux__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
- #define USE_XATTRS
-+#include <linux/limits.h>
- #endif
- 
- #ifdef USE_XATTRS
diff --git a/srcpkgs/python3/patches/libressl-2.6.patch b/srcpkgs/python3/patches/libressl-2.6.patch
deleted file mode 100644
index 92dcf1ef06e..00000000000
--- a/srcpkgs/python3/patches/libressl-2.6.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-https://github.com/python/cpython/pull/4930
-
---- Lib/test/test_ssl.py.orig
-+++ Lib/test/test_ssl.py
-@@ -29,6 +29,12 @@
- PROTOCOLS = sorted(ssl._PROTOCOL_NAMES)
- HOST = support.HOST
- IS_LIBRESSL = ssl.OPENSSL_VERSION.startswith('LibreSSL')
-+if IS_LIBRESSL:
-+    LIBRESSL_VERSION = tuple(
-+        int(s) for s in ssl.OPENSSL_VERSION.rsplit(' ')[-1].split('.')
-+    )
-+else:
-+    LIBRESSL_VERSION = ()
- IS_OPENSSL_1_1 = not IS_LIBRESSL and ssl.OPENSSL_VERSION_INFO >= (1, 1, 0)
- 
- 
-@@ -3392,6 +3398,8 @@ def test_selected_npn_protocol(self):
-                                        chatty=True, connectionchatty=True)
-             self.assertIs(stats['client_npn_protocol'], None)
- 
-+        @unittest.skipIf(IS_LIBRESSL and LIBRESSL_VERSION >= (2, 6, 1),
-+                         "LibreSSL 2.6.1+ has broken NPN support")
-         @unittest.skipUnless(ssl.HAS_NPN, "NPN support needed for this test")
-         def test_npn_protocols(self):
-             server_protocols = ['http/1.1', 'spdy/2']
diff --git a/srcpkgs/python3/template b/srcpkgs/python3/template
index 60bd4411ba8..b03a59beea8 100644
--- a/srcpkgs/python3/template
+++ b/srcpkgs/python3/template
@@ -3,7 +3,7 @@
 # THIS PKG MUST BE SYNCHRONIZED WITH "srcpkgs/python3-tkinter".
 #
 pkgname=python3
-version=3.6.9
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 short_desc="Interpreted, interactive, object-oriented programming language (${version%.*} series)"
@@ -11,7 +11,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=5e2f5f554e3f8f7f0296f7e73d8600c4e9acbaee6b2555b83206edf5153870da
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pycompile_dirs="usr/lib/python${version%.*}"
 hostmakedepends="pkg-config"
@@ -27,8 +27,7 @@ alternatives="
  python:python.1:/usr/share/man/man1/python${version%.*}.1"
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,13 +71,13 @@ do_install() {
 	rm -rf ${DESTDIR}/usr/lib/python${version%.*}/lib2to3/tests
 	# Remove references to the install(1) wrapper.
 	sed -e "s,${XBPS_WRAPPERDIR},/usr/bin,g" -i \
-		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/Makefile
 	if [ "$CROSS_BUILD" ]; then
 		# Remove references to cross toolchain.
 		sed -i "s/$XBPS_CROSS_TRIPLET-//g" \
-			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}/Makefile
 	fi
 }
 
@@ -89,10 +88,10 @@ python3-devel_package() {
 		vmove usr/bin/python*-config
 		vmove usr/lib/pkgconfig
 		vmove usr/include
-		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/libpython${version%.*}m.a \
+		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/libpython${version%.*}*.a \
 			${PKGDESTDIR}/usr/lib
-		mkdir -p ${DESTDIR}/usr/include/python${version%.*}m
-		mv ${PKGDESTDIR}/usr/include/python${version%.*}m/pyconfig.h \
-			${DESTDIR}/usr/include/python${version%.*}m
+		mkdir -p ${DESTDIR}/usr/include/python${version%.*}
+		mv ${PKGDESTDIR}/usr/include/python${version%.*}/pyconfig.h \
+			${DESTDIR}/usr/include/python${version%.*}
 	}
 }

From 82deb1f06d09e93aabaa46495a066cec2647de81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 17:09:57 +0200
Subject: [PATCH 002/874] python3-tkinter: update to 3.8.0.

---
 srcpkgs/python3-tkinter/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template
index 83906219af8..874be51ebdf 100644
--- a/srcpkgs/python3-tkinter/template
+++ b/srcpkgs/python3-tkinter/template
@@ -7,7 +7,7 @@
 _desc="Interpreted, interactive, object-oriented programming language"
 
 pkgname=python3-tkinter
-version=3.6.8
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 pycompile_dirs="
@@ -22,11 +22,10 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=35446241e995773b1bed7d196f4b624dadcadc8429f26282e756b2fb8a351193
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used.
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used.
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,7 +71,7 @@ do_install() {
 		mv ${wrksrc}/${pkgname}-${version}-install/usr/lib/python${version%.*}/${lib} \
 			${DESTDIR}/usr/lib/python${version%.*}/
 	done
-	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*m*.so \
+	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*.so \
 		${DESTDIR}/usr/lib/python${version%.*}/lib-dynload/
 	ln -sf idle${version%.*} ${DESTDIR}/usr/bin/idle3
 }

From 8bb33f77d591103b56f40685a4b61f57b43219cd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:42:15 +0200
Subject: [PATCH 003/874] common/environment/setup/python.sh: update to Python
 3.8.

---
 common/build-style/python-module.sh | 14 ++++----------
 common/environment/setup/python.sh  |  4 ++--
 2 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/common/build-style/python-module.sh b/common/build-style/python-module.sh
index da6ed586cff..ff8f107745f 100644
--- a/common/build-style/python-module.sh
+++ b/common/build-style/python-module.sh
@@ -4,7 +4,7 @@
 
 do_build() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
+	local pyver= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
@@ -12,10 +12,7 @@ do_build() {
 			LDFLAGS="$tmp_ldflags"
 
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
@@ -49,15 +46,12 @@ do_check() {
 
 do_install() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx=
+	local pyver=
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
diff --git a/common/environment/setup/python.sh b/common/environment/setup/python.sh
index d1f4d49a10a..ba181d45361 100644
--- a/common/environment/setup/python.sh
+++ b/common/environment/setup/python.sh
@@ -10,8 +10,8 @@ py2_lib="/usr/lib/python${py2_ver}"
 py2_sitelib="${py2_lib}/site-packages"
 py2_inc="/usr/include/python${py2_ver}"
 
-py3_ver="3.6"
-py3_abiver="m"
+py3_ver="3.8"
+py3_abiver=""
 py3_lib="/usr/lib/python${py3_ver}"
 py3_sitelib="${py3_lib}/site-packages"
 py3_inc="/usr/include/python${py3_ver}${py3_abiver}"

From 75fdcb94c7c7be7dc2c232d271de721d74dc1a6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 004/874] python3-3to2: rebuild for Python 3.8.

---
 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 b6ab94fe7c9..38558f1fcff 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=1
+revision=2
 archs=noarch
 wrksrc="3to2-${version}"
 build_style=python3-module

From 043957a8bcc69ef2ef270f7acd2753a544054759 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 005/874] python-Arrow: rebuild for Python 3.8.

---
 srcpkgs/python-Arrow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Arrow/template b/srcpkgs/python-Arrow/template
index 456e3776188..a3785d60075 100644
--- a/srcpkgs/python-Arrow/template
+++ b/srcpkgs/python-Arrow/template
@@ -2,7 +2,7 @@
 pkgname=python-Arrow
 reverts=0.13.1_1
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="arrow-${version}"
 build_style=python-module

From 5d1bc07743d348083ebd7dfbd1a4ece4913e6a70 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 006/874] python-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Babel/template b/srcpkgs/python-Babel/template
index 34d7a7728ce..619ae432ba4 100644
--- a/srcpkgs/python-Babel/template
+++ b/srcpkgs/python-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Babel'
 pkgname=python-Babel
 version=2.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38e28e565317345549892f5b8da9e3ab1cc3d513 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 007/874] python-BeautifulSoup4: rebuild for Python 3.8.

---
 srcpkgs/python-BeautifulSoup4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-BeautifulSoup4/template b/srcpkgs/python-BeautifulSoup4/template
index 70e4f8a58da..1f6074230c2 100644
--- a/srcpkgs/python-BeautifulSoup4/template
+++ b/srcpkgs/python-BeautifulSoup4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-BeautifulSoup4'
 pkgname=python-BeautifulSoup4
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="beautifulsoup4-${version}"
 build_style=python-module

From 193dc4fe709e1bccd18b84a58f880fde1e4394e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 008/874] python-Bottleneck: rebuild for Python 3.8.

---
 srcpkgs/python-Bottleneck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Bottleneck/template b/srcpkgs/python-Bottleneck/template
index 0c308d5dbb5..28195e99bca 100644
--- a/srcpkgs/python-Bottleneck/template
+++ b/srcpkgs/python-Bottleneck/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Bottleneck'
 pkgname=python-Bottleneck
 version=1.2.1
-revision=4
+revision=5
 wrksrc="Bottleneck-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ff4c422045070300d874353cc6c9750143422e2b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 009/874] python-Cheroot: rebuild for Python 3.8.

---
 srcpkgs/python-Cheroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Cheroot/template b/srcpkgs/python-Cheroot/template
index fcfdf76e69d..7a5375258f4 100644
--- a/srcpkgs/python-Cheroot/template
+++ b/srcpkgs/python-Cheroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Cheroot'
 pkgname=python-Cheroot
 version=8.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cheroot-${version}"
 build_style=python-module

From 6eb51b02b428d8054b1d3a3aa21e6bdcde31cf9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 010/874] python3-CherryPy: rebuild for Python 3.8.

---
 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 b78c01eba2c..450e5791508 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.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python3-module

From 8522b77c798415c2f59fc3b26adc757f66aa0fa7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 011/874] python-ConfigArgParse: rebuild for Python 3.8.

---
 srcpkgs/python-ConfigArgParse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ConfigArgParse/template b/srcpkgs/python-ConfigArgParse/template
index c9a00a04508..d90ca739aee 100644
--- a/srcpkgs/python-ConfigArgParse/template
+++ b/srcpkgs/python-ConfigArgParse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ConfigArgParse'
 pkgname=python-ConfigArgParse
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ConfigArgParse-${version}"
 build_style=python-module

From 3dcbda27301f3e918539317bc411ff556115ef1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 012/874] python-Cython: rebuild for Python 3.8.

---
 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 dc39d54e9c2..675160b3744 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.13
-revision=1
+revision=2
 wrksrc="Cython-${version}"
 build_style=python-module
 pycompile_module="Cython pyximport cython.py"

From 7c69ef59e0a628c13ece955c9f7322631824adca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 013/874] python-Django: rebuild for Python 3.8.

---
 srcpkgs/python-Django/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Django/template b/srcpkgs/python-Django/template
index 21aa405fba1..65a98e41032 100644
--- a/srcpkgs/python-Django/template
+++ b/srcpkgs/python-Django/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Django'
 pkgname=python-Django
 version=1.11.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="Django-${version}"
 build_style=python-module

From 33b250adb0abf2e46663f0a05749097633fce228 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 014/874] python-Flask: rebuild for Python 3.8.

---
 srcpkgs/python-Flask/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask/template b/srcpkgs/python-Flask/template
index 149a76c077e..b75b306701b 100644
--- a/srcpkgs/python-Flask/template
+++ b/srcpkgs/python-Flask/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask'
 pkgname=python-Flask
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9167e534992bd8d17a79a70e22a3b06c68c9762b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 015/874] python-Flask-Assets: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Assets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Assets/template b/srcpkgs/python-Flask-Assets/template
index 339f629f77a..eb81201396b 100644
--- a/srcpkgs/python-Flask-Assets/template
+++ b/srcpkgs/python-Flask-Assets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Assets'
 pkgname=python-Flask-Assets
 version=0.12
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c65d524eb8ee83f7c8eae3ca16878857a374e06c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 016/874] python-Flask-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Babel/template b/srcpkgs/python-Flask-Babel/template
index 3028d15d7bd..b3cc35f230e 100644
--- a/srcpkgs/python-Flask-Babel/template
+++ b/srcpkgs/python-Flask-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Babel'
 pkgname=python-Flask-Babel
 version=0.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From d52f7742820844af3ec25f4b6d4d6d58b19ad722 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 017/874] python-Flask-Login: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Login/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Login/template b/srcpkgs/python-Flask-Login/template
index 8fecf240963..ccaab92d857 100644
--- a/srcpkgs/python-Flask-Login/template
+++ b/srcpkgs/python-Flask-Login/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Login'
 pkgname=python-Flask-Login
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 112c53663ece086d477e4d4fcbc667ae6a2fb518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 018/874] python-Flask-OAuthlib: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-OAuthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-OAuthlib/template b/srcpkgs/python-Flask-OAuthlib/template
index d53157e37b2..958f05a836c 100644
--- a/srcpkgs/python-Flask-OAuthlib/template
+++ b/srcpkgs/python-Flask-OAuthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-OAuthlib'
 pkgname=python-Flask-OAuthlib
 version=0.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From aca82b53b5330ee4a154f2246569006b2d3a38c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 019/874] python3-Flask-RESTful: rebuild for Python 3.8.

---
 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 d0ed467f666..5a05eed0e93 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.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="flask-restful-${version}"
 build_style=python3-module

From 3121295fb06a2b12c0e42b9a6412c1fa52bb86fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 020/874] python-Flask-Script: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Script/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Script/template b/srcpkgs/python-Flask-Script/template
index 19d13887b8e..41312eae57f 100644
--- a/srcpkgs/python-Flask-Script/template
+++ b/srcpkgs/python-Flask-Script/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Script'
 pkgname=python-Flask-Script
 version=2.0.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From cfadd6a4c47e4e611c9d739113006da88f9cb8e7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 021/874] python-Flask-WTF: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-WTF/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-WTF/template b/srcpkgs/python-Flask-WTF/template
index 8edb1d39e35..b2be1e630fb 100644
--- a/srcpkgs/python-Flask-WTF/template
+++ b/srcpkgs/python-Flask-WTF/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-WTF'
 pkgname=python-Flask-WTF
 version=0.14.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 11896d4bd9e1767f6ad8b10e737f0e6a0f5df44f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 022/874] python-GitPython: rebuild for Python 3.8.

---
 srcpkgs/python-GitPython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-GitPython/template b/srcpkgs/python-GitPython/template
index 0edb43cc811..232429265f1 100644
--- a/srcpkgs/python-GitPython/template
+++ b/srcpkgs/python-GitPython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-GitPython'
 pkgname=python-GitPython
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="GitPython-${version}"
 build_style=python-module

From 7008fe32294cead7ef25084a09f874e87cad05e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 023/874] python-IPy: rebuild for Python 3.8.

---
 srcpkgs/python-IPy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-IPy/template b/srcpkgs/python-IPy/template
index d28276383ce..aaae9fcd002 100644
--- a/srcpkgs/python-IPy/template
+++ b/srcpkgs/python-IPy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-IPy'
 pkgname=python-IPy
 version=1.00
-revision=1
+revision=2
 archs=noarch
 wrksrc="IPy-${version}"
 build_style=python-module

From 4ee5b9129c818c4db475e75f899f1f21eb9c312c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 024/874] python3-Inflector: rebuild for Python 3.8.

---
 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 1bfe9ccef7c..e9ee0ffe8d1 100644
--- a/srcpkgs/python3-Inflector/template
+++ b/srcpkgs/python3-Inflector/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-Inflector'
 pkgname=python3-Inflector
 version=2.0.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="Inflector-${version}"
 build_style=python3-module

From 631236d908cbeed8345c2fb159c73e7c54fe1571 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 025/874] python-Jinja2: rebuild for Python 3.8.

---
 srcpkgs/python-Jinja2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Jinja2/template b/srcpkgs/python-Jinja2/template
index c67e6f47f06..3fcd44dc198 100644
--- a/srcpkgs/python-Jinja2/template
+++ b/srcpkgs/python-Jinja2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Jinja2'
 pkgname=python-Jinja2
 version=2.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Jinja2-${version}"
 build_style=python-module

From 3a7808b9f47226adec7dd1e59bef222cf38d7e9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 026/874] python-Levenshtein: rebuild for Python 3.8.

---
 srcpkgs/python-Levenshtein/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Levenshtein/template b/srcpkgs/python-Levenshtein/template
index 26f57d90e70..7d97147ccc8 100644
--- a/srcpkgs/python-Levenshtein/template
+++ b/srcpkgs/python-Levenshtein/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Levenshtein'
 pkgname=python-Levenshtein
 version=0.12.0
-revision=2
+revision=3
 build_style=python-module
 pycompile_module="Levenshtein"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"

From 6d2a898ccc971553cf9dab7239daf8d626350b19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 027/874] python-M2Crypto: rebuild for Python 3.8.

---
 srcpkgs/python-M2Crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-M2Crypto/template b/srcpkgs/python-M2Crypto/template
index 102dbb7261e..6febd5a9ea1 100644
--- a/srcpkgs/python-M2Crypto/template
+++ b/srcpkgs/python-M2Crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-M2Crypto'
 pkgname=python-M2Crypto
 version=0.35.2
-revision=1
+revision=2
 wrksrc="M2Crypto-${version}"
 build_style=python-module
 pycompile_module="M2Crypto"

From 3597aa866d7cb1ff4d5316a0cfe52c8aa8ab717c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 028/874] python-Mako: rebuild for Python 3.8.

---
 srcpkgs/python-Mako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Mako/template b/srcpkgs/python-Mako/template
index e5c3c76170c..f0184179b83 100644
--- a/srcpkgs/python-Mako/template
+++ b/srcpkgs/python-Mako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Mako'
 pkgname=python-Mako
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Mako-${version}"
 build_style=python-module

From 164d5bbfa645fb7b1ddbfbccebb7b85e407c578f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 029/874] python-Markdown: rebuild for Python 3.8.

---
 srcpkgs/python-Markdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markdown/template b/srcpkgs/python-Markdown/template
index 935dcc12bca..03a0d18e23b 100644
--- a/srcpkgs/python-Markdown/template
+++ b/srcpkgs/python-Markdown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markdown'
 pkgname=python-Markdown
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python-module

From c5fcb10688938a17e3acb9f9c630c300f5fe9672 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 030/874] python-MarkupSafe: rebuild for Python 3.8.

---
 srcpkgs/python-MarkupSafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MarkupSafe/template b/srcpkgs/python-MarkupSafe/template
index c12dbb7e656..ae22857aa7a 100644
--- a/srcpkgs/python-MarkupSafe/template
+++ b/srcpkgs/python-MarkupSafe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MarkupSafe'
 pkgname=python-MarkupSafe
 version=1.1.1
-revision=1
+revision=2
 wrksrc="MarkupSafe-${version}"
 build_style=python-module
 pycompile_module="markupsafe"

From b7a4bc0f45110c5c3bd019a437078724336d1888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 031/874] python-Markups: rebuild for Python 3.8.

---
 srcpkgs/python-Markups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markups/template b/srcpkgs/python-Markups/template
index d4817feb430..02ba25ee05c 100644
--- a/srcpkgs/python-Markups/template
+++ b/srcpkgs/python-Markups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markups'
 pkgname=python-Markups
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markups-${version}"
 build_style=python-module

From af8fe2e4b17c908737f599cc43d860493f7da689 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 032/874] python3-MechanicalSoup: rebuild for Python 3.8.

---
 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 b1bbfa4184c..5a3b0b3eb03 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=1
+revision=2
 archs=noarch
 wrksrc=MechanicalSoup-${version}
 build_style=python3-module

From 4d05157344a63fb3d617b00a4268732231187cb4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 033/874] python-MiniMock: rebuild for Python 3.8.

---
 srcpkgs/python-MiniMock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MiniMock/template b/srcpkgs/python-MiniMock/template
index 38c0723f374..8b8c4f5f1e6 100644
--- a/srcpkgs/python-MiniMock/template
+++ b/srcpkgs/python-MiniMock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MiniMock'
 pkgname=python-MiniMock
 version=1.2.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 25b62a34488966009bf8450b60653f01872e2310 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 034/874] python-Pillow: rebuild for Python 3.8.

---
 srcpkgs/python-Pillow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pillow/template b/srcpkgs/python-Pillow/template
index e43d22b8f62..f1791b46d79 100644
--- a/srcpkgs/python-Pillow/template
+++ b/srcpkgs/python-Pillow/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pillow'
 pkgname=python-Pillow
 version=6.2.0
-revision=1
+revision=2
 wrksrc="Pillow-${version}"
 build_style=python-module
 pycompile_module="PIL"

From f79ffe3fe477b7fff206250125a96da96c80c086 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 035/874] python-PyAudio: rebuild for Python 3.8.

---
 srcpkgs/python-PyAudio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyAudio/template b/srcpkgs/python-PyAudio/template
index 5c3286caae0..2e84cf5cc8f 100644
--- a/srcpkgs/python-PyAudio/template
+++ b/srcpkgs/python-PyAudio/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyAudio'
 pkgname=python-PyAudio
 version=0.2.11
-revision=2
+revision=3
 wrksrc="PyAudio-${version}"
 build_style=python-module
 pycompile_module="pyaudio.py"

From 11c99c939a4791ec394842255e6aac23eaae5920 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 036/874] python3-PyBrowserID: rebuild for Python 3.8.

---
 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 abec9dac54e..eefd0175f1b 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=2
+revision=3
 archs=noarch
 wrksrc="PyBrowserID-${version}"
 build_style=python3-module

From d49beb289c07b8d33e8e2f286e068c0e8b3fe4b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 037/874] python3-PyFxA: rebuild for Python 3.8.

---
 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 31175c92435..6fc6791efdd 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=1
+revision=2
 archs=noarch
 wrksrc="PyFxA-${version}"
 build_style=python3-module

From d0eb109c7435d396e67de8f37a376ca0a2958d93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 038/874] python-PyHamcrest: rebuild for Python 3.8.

---
 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 61078241d8a..48f001595aa 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=1
+revision=2
 archs=noarch
 wrksrc="PyHamcrest-${version}"
 build_style=python-module

From 4afc9e488b53ee7025095fe93072953c256fc630 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 039/874] python-PyICU: rebuild for Python 3.8.

---
 srcpkgs/python-PyICU/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyICU/template b/srcpkgs/python-PyICU/template
index be4aaf88639..aab2934cbbd 100644
--- a/srcpkgs/python-PyICU/template
+++ b/srcpkgs/python-PyICU/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyICU'
 pkgname=python-PyICU
 version=2.3.1
-revision=2
+revision=3
 wrksrc="PyICU-${version}"
 build_style=python-module
 pycompile_module="icu PyICU.py"

From a0c3f96b4df2b1efda070832287f3728314c717a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 040/874] python3-PyJWT: rebuild for Python 3.8.

---
 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 6f0830125c1..bf1dda0753e 100644
--- a/srcpkgs/python3-PyJWT/template
+++ b/srcpkgs/python3-PyJWT/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-PyJWT'
 pkgname=python3-PyJWT
 version=1.7.1
-revision=1
+revision=2
 wrksrc="PyJWT-${version}"
 build_style=python3-module
 pycompile_module="PyJWT.py"

From 0355fd4b78af7fbf4ffad4b12dc8e153b70d703d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 041/874] python-PyOpenGL: rebuild for Python 3.8.

---
 srcpkgs/python-PyOpenGL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyOpenGL/template b/srcpkgs/python-PyOpenGL/template
index ec08e0bd667..eafc3be1210 100644
--- a/srcpkgs/python-PyOpenGL/template
+++ b/srcpkgs/python-PyOpenGL/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL'
 pkgname=python-PyOpenGL
 version=3.1.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="PyOpenGL-${version}"
 build_style=python-module

From 1a8da5c4a7dbf53ec6c03efd5387e02d2b0be720 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 17:15:54 +0200
Subject: [PATCH 042/874] python-PyOpenGL-accelerate: update to 3.1.3b1.

---
 srcpkgs/python-PyOpenGL-accelerate/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python-PyOpenGL-accelerate/template b/srcpkgs/python-PyOpenGL-accelerate/template
index 25d84abffcb..5d16a82b845 100644
--- a/srcpkgs/python-PyOpenGL-accelerate/template
+++ b/srcpkgs/python-PyOpenGL-accelerate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL-accelerate'
 pkgname=python-PyOpenGL-accelerate
-version=3.1.0
-revision=5
+version=3.1.3b1
+revision=1
 wrksrc="PyOpenGL-accelerate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"
@@ -9,10 +9,10 @@ makedepends="python-devel python3-devel python-numpy python3-numpy"
 depends="python-numpy"
 short_desc="Acceleration code for PyOpenGL (Python2)"
 maintainer="Alain Kalker <a.c.kalker@gmail.com>"
-license="3-clause-BSD"
+license="BSD-3-Clause"
 homepage="http://pyopengl.sourceforge.net/"
 distfiles="${PYPI_SITE}/P/PyOpenGL-accelerate/PyOpenGL-accelerate-${version}.tar.gz"
-checksum=927f4670b893d46e2f6273ae938bf0a1db27ffae3336eba94813ccef6260c410
+checksum=e687eea7e006d65f531933b49b3b3d2feaaf51279147a904247f9d189762a36f
 
 post_install() {
 	vlicense license.txt LICENSE

From 2f6b6f2c3880b16991df568d3ac18efca5c970c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 043/874] python-PyQt5: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5/template b/srcpkgs/python-PyQt5/template
index 6534d4e22e6..9eba20dc514 100644
--- a/srcpkgs/python-PyQt5/template
+++ b/srcpkgs/python-PyQt5/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5'
 pkgname=python-PyQt5
 version=5.13.0
-revision=1
+revision=2
 _sipver=4.19.18
 lib32disabled=yes
 wrksrc="PyQt5_gpl-${version}"

From cf20a1f23e0c305d2e9672610364b2fd4f566695 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 044/874] python-PyQt5-webengine: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5-webengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5-webengine/template b/srcpkgs/python-PyQt5-webengine/template
index 996ef6b00e2..af7162d20cb 100644
--- a/srcpkgs/python-PyQt5-webengine/template
+++ b/srcpkgs/python-PyQt5-webengine/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5-webengine'
 pkgname=python-PyQt5-webengine
 version=5.13.0
-revision=1
+revision=2
 wrksrc="PyQtWebEngine_gpl-${version}"
 pycompile_module="PyQt5WebEngine"
 hostmakedepends="pkg-config qt5-qmake

From 84502fbd3a591ad0db01072998b5a2b3fcfcf192 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 045/874] python-Pygments: rebuild for Python 3.8.

---
 srcpkgs/python-Pygments/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pygments/template b/srcpkgs/python-Pygments/template
index f5a72ca6cea..8d2214a6bfc 100644
--- a/srcpkgs/python-Pygments/template
+++ b/srcpkgs/python-Pygments/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pygments'
 pkgname=python-Pygments
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Pygments-${version}"
 build_style=python-module

From ef2467b2248b773e2d940058876cf81a2b935043 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 046/874] python-Pyro4: rebuild for Python 3.8.

---
 srcpkgs/python-Pyro4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pyro4/template b/srcpkgs/python-Pyro4/template
index d8925aa141f..0417e9f6a8a 100644
--- a/srcpkgs/python-Pyro4/template
+++ b/srcpkgs/python-Pyro4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pyro4'
 pkgname=python-Pyro4
 version=4.75
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a80785231122d63ad91b973744bf59b0a1b59506 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 047/874] python3-ReParser: rebuild for Python 3.8.

---
 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 5e7b5de3790..5959de9d0e3 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=1
+revision=2
 archs=noarch
 wrksrc=ReParser-${version}
 build_style=python3-module

From 543272b7ff22e6f0642d879c60f19717643fec8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 048/874] python-SPARQLWrapper: rebuild for Python 3.8.

---
 srcpkgs/python-SPARQLWrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-SPARQLWrapper/template b/srcpkgs/python-SPARQLWrapper/template
index d014eb8aab4..8d2db9a02b3 100644
--- a/srcpkgs/python-SPARQLWrapper/template
+++ b/srcpkgs/python-SPARQLWrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'python-SPARQLWrapper'
 pkgname=python-SPARQLWrapper
 version=1.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a01a9e6bc3bd9fddfdd13341f78e625b063be5c8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 049/874] python-SQLAlchemy: rebuild for Python 3.8.

---
 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 7b529ade621..110430ff9f5 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.8
-revision=1
+revision=2
 wrksrc="SQLAlchemy-${version}"
 build_style=python-module
 pycompile_module="sqlalchemy"

From 46382571cad86b54ca46e129f7c2988772d0a48e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 050/874] python3-SecretStorage: rebuild for Python 3.8.

---
 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 8df813ad247..b19d4865f7e 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.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="SecretStorage-${version}"
 build_style=python3-module

From c79427640956f1961211ce3322c3811958e0f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 051/874] python3-SoCo: rebuild for Python 3.8.

---
 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 f0ac9825f57..01ebbeff15a 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="SoCo-${version}"
 build_style=python3-module

From 20a1ac5477ca4a76e0257e06bf6f353835eac7bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 052/874] python-Sphinx: rebuild for Python 3.8.

---
 srcpkgs/python-Sphinx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Sphinx/template b/srcpkgs/python-Sphinx/template
index e70dc9b238e..42969925f9e 100644
--- a/srcpkgs/python-Sphinx/template
+++ b/srcpkgs/python-Sphinx/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Sphinx'
 pkgname=python-Sphinx
 version=1.8.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="Sphinx-${version}"
 build_style=python-module

From 863c01ff80faa4de651a55ba2a354f8da5e6b025 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 053/874] python3-Telethon: rebuild for Python 3.8.

---
 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 b0786559591..d0fa8e34d3f 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.10.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="Telethon-${version}"
 build_style=python3-module

From efc9766b9866c660a4cb508c49be4df48f1e5809 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 054/874] python-Twisted: rebuild for Python 3.8.

---
 srcpkgs/python-Twisted/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Twisted/template b/srcpkgs/python-Twisted/template
index 519a1e251a9..e94e0edf26e 100644
--- a/srcpkgs/python-Twisted/template
+++ b/srcpkgs/python-Twisted/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Twisted'
 pkgname=python-Twisted
 version=18.9.0
-revision=3
+revision=4
 wrksrc="Twisted-${version}"
 build_style=python-module
 pycompile_module="twisted"

From 5fd974f3940d5ee91fe712fef2e93ce539743b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 055/874] python3-TxSNI: rebuild for Python 3.8.

---
 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 403010da5be..d9d7c2a0c83 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.1.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="TxSNI-${version}"
 build_style=python3-module

From 559184031fe43c0ff648fb7fab55ede08fff2c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 056/874] python-Unidecode: rebuild for Python 3.8.

---
 srcpkgs/python-Unidecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Unidecode/template b/srcpkgs/python-Unidecode/template
index 035c5d846be..444eb1427d6 100644
--- a/srcpkgs/python-Unidecode/template
+++ b/srcpkgs/python-Unidecode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Unidecode'
 pkgname=python-Unidecode
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Unidecode-${version}"
 build_style=python-module

From 07f0904b4cb8f2de0b7bc39c0ca28d225c91257d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 057/874] python-WTForms: rebuild for Python 3.8.

---
 srcpkgs/python-WTForms/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-WTForms/template b/srcpkgs/python-WTForms/template
index 06af2366050..98dff7d092f 100644
--- a/srcpkgs/python-WTForms/template
+++ b/srcpkgs/python-WTForms/template
@@ -1,7 +1,7 @@
 # Template file for 'python-WTForms'
 pkgname=python-WTForms
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="WTForms-${version}"
 build_style=python-module

From ec81beba1921fe189a8dd80810da306514a86c1a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 058/874] python3-WebOb: rebuild for Python 3.8.

---
 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 c360542a1f2..53e63879f2c 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=1
+revision=2
 archs=noarch
 wrksrc="WebOb-${version}"
 build_style=python3-module

From 0b7a4a756b3ead4c188a3819311c4471c1b0a21c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 059/874] python-Werkzeug: rebuild for Python 3.8.

---
 srcpkgs/python-Werkzeug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Werkzeug/template b/srcpkgs/python-Werkzeug/template
index 24fff62f1ae..1ca303822e8 100644
--- a/srcpkgs/python-Werkzeug/template
+++ b/srcpkgs/python-Werkzeug/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Werkzeug'
 pkgname=python-Werkzeug
 version=0.15.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c530a6e11127606a3b29b73da4cb31f010d97b5c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 060/874] python-Whoosh: rebuild for Python 3.8.

---
 srcpkgs/python-Whoosh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Whoosh/template b/srcpkgs/python-Whoosh/template
index f2118ed0af2..66856b206a7 100644
--- a/srcpkgs/python-Whoosh/template
+++ b/srcpkgs/python-Whoosh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-whoosh'
 pkgname=python-Whoosh
 version=2.7.4
-revision=1
+revision=2
 wrksrc="Whoosh-${version}"
 archs=noarch
 build_style=python-module

From 3e3ad6526265ded86e6e1b5539061302a3890381 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 061/874] python3-XlsxWriter: rebuild for Python 3.8.

---
 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 ea68ced9a03..b991457e01e 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.1.8
-revision=1
+revision=2
 archs="noarch"
 wrksrc="XlsxWriter-RELEASE_${version}"
 build_style=python3-module

From ed808be70fb42a5a7e827e43a5d8a9954d85823a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 062/874] python-Yapsy: rebuild for Python 3.8.

---
 srcpkgs/python-Yapsy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Yapsy/template b/srcpkgs/python-Yapsy/template
index 9f79423f91d..5ad8b234f5d 100644
--- a/srcpkgs/python-Yapsy/template
+++ b/srcpkgs/python-Yapsy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Yapsy'
 pkgname=python-Yapsy
 version=1.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Yapsy-${version}"
 build_style=python-module

From ef3f8b60f72752d3ec1c7676df4597cc6cfdfb42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 063/874] python-aalib: rebuild for Python 3.8.

---
 srcpkgs/python-aalib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-aalib/template b/srcpkgs/python-aalib/template
index 349b8407343..f9621a9c8dc 100644
--- a/srcpkgs/python-aalib/template
+++ b/srcpkgs/python-aalib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-aalib'
 pkgname=python-aalib
 version=0.3.2
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="aalib.py"
 hostmakedepends="python-setuptools python3-setuptools"

From 1aee008231a9354b62bbf679e89e620deeba0d34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 064/874] python3-acme: rebuild for Python 3.8.

---
 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 d7ef20f2301..844dde9c814 100644
--- a/srcpkgs/python3-acme/template
+++ b/srcpkgs/python3-acme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-acme'
 pkgname=python3-acme
 version=0.39.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="acme-${version}"
 build_style=python3-module

From 877668118087bb2d0bd4b8ebf34db7c6c4308c31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 065/874] python3-aiodns: rebuild for Python 3.8.

---
 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 cca9f45dbf5..8e06ea6e614 100644
--- a/srcpkgs/python3-aiodns/template
+++ b/srcpkgs/python3-aiodns/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiodns'
 pkgname=python3-aiodns
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiodns-${version}"
 build_style=python3-module

From de87766918ac8688cf8992433b56e9b1ad222108 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 066/874] python3-aiohttp: rebuild for Python 3.8.

---
 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 fbe98e07b2b..67e450e6aab 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.5.4
-revision=3
+revision=4
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 0c2d285f8d7edc438e657ec9bc4a2b16982a4a57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 067/874] python3-aiohttp-cors: rebuild for Python 3.8.

---
 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 8a643ca1797..b621716e3cd 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=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 4643a6f9e03d1657e1ac2f5ca93bf616979b58de Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 068/874] python3-aiohttp-cors2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp-cors2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp-cors2/template b/srcpkgs/python3-aiohttp-cors2/template
index 7ff1206538b..f13b0598456 100644
--- a/srcpkgs/python3-aiohttp-cors2/template
+++ b/srcpkgs/python3-aiohttp-cors2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp-cors2'
 pkgname=python3-aiohttp-cors2
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 9db81023f9f60f7a78d62f9f9b8f1fa8afbb9fa8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 069/874] python3-aiohttp2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp2/template b/srcpkgs/python3-aiohttp2/template
index b570043baba..db3704b5700 100644
--- a/srcpkgs/python3-aiohttp2/template
+++ b/srcpkgs/python3-aiohttp2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp2'
 pkgname=python3-aiohttp2
 version=2.3.10
-revision=2
+revision=3
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 9bf56f834aca73a7ea8141ab0c95b4aed0d1f09a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 070/874] python3-aiohttp_socks: rebuild for Python 3.8.

---
 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 93c45ff24c4..10ab967ef76 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.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp_socks-${version}"
 build_style=python3-module

From acad4e265f43c8bc2098168adb1c0442a0c22445 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 071/874] python3-aiorpcx: rebuild for Python 3.8.

---
 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 42b6dc541bf..07922e15ccd 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.17.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiorpcX-${version}"
 build_style=python3-module

From b4945f68890b617f5b513871e533769a2149f07f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 072/874] python-alabaster: rebuild for Python 3.8.

---
 srcpkgs/python-alabaster/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alabaster/template b/srcpkgs/python-alabaster/template
index e4ece5c2991..b33009d5efb 100644
--- a/srcpkgs/python-alabaster/template
+++ b/srcpkgs/python-alabaster/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alabaster'
 pkgname=python-alabaster
 version=0.7.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="alabaster-${version}"
 build_style=python-module

From 04c416b8fb310277c61713ee1b8dd702a970240b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 073/874] python-alembic: rebuild for Python 3.8.

---
 srcpkgs/python-alembic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alembic/template b/srcpkgs/python-alembic/template
index 4011b33c0fa..aecbe10e7d0 100644
--- a/srcpkgs/python-alembic/template
+++ b/srcpkgs/python-alembic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alembic'
 pkgname=python-alembic
 version=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="alembic-${version}"
 build_style=python-module

From 5c2d4bcc3255cb59561524d151fe84b3a70e8ad4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 074/874] python3-altgraph: rebuild for Python 3.8.

---
 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 eff10f7aef4..2bf433edb6e 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.16.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="altgraph-${version}"
 build_style=python3-module

From 3c6234d42f7adffca219ea7f98f11d5283dce900 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 075/874] python3-aniso8601: rebuild for Python 3.8.

---
 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 26540bc8c3f..0253b89b5a3 100644
--- a/srcpkgs/python3-aniso8601/template
+++ b/srcpkgs/python3-aniso8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aniso8601'
 pkgname=python3-aniso8601
 version=8.0.0
-revision=1
+revision=2
 archs=noarch
 _gitver=0ec13b9d81c9
 wrksrc="nielsenb-aniso8601-${_gitver}"

From b4fecde90241517d0629d46de55f99a1ef7edbaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 076/874] python-ansicolor: rebuild for Python 3.8.

---
 srcpkgs/python-ansicolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ansicolor/template b/srcpkgs/python-ansicolor/template
index af18c5b946d..3663a82f0cc 100644
--- a/srcpkgs/python-ansicolor/template
+++ b/srcpkgs/python-ansicolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ansicolor'
 pkgname=python-ansicolor
 version=0.2.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="ansicolor-${version}"
 build_style=python-module

From 3983fbed547fd194f9eefaaf58d10c7770e27350 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 077/874] python3-anytree: rebuild for Python 3.8.

---
 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 5a37dba6581..7368754c426 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.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="anytree-${version}"
 build_style=python3-module

From 6d797f541c2cb160f9cfebd0a3e71dace50cceb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 078/874] python-appdirs: rebuild for Python 3.8.

---
 srcpkgs/python-appdirs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-appdirs/template b/srcpkgs/python-appdirs/template
index fdae1fe184b..15354ec5768 100644
--- a/srcpkgs/python-appdirs/template
+++ b/srcpkgs/python-appdirs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-appdirs'
 pkgname=python-appdirs
 version=1.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 7a7c86554157d7224efc221e706b9aebfc1ff796 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 079/874] python3-applib: rebuild for Python 3.8.

---
 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 95f589dc65a..0fb5a42e618 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=1
+revision=2
 archs=noarch
 wrksrc="applib-${version}"
 build_style=python3-module

From 642416934e5f74b49e1a38fe6e941287cbccbf83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 080/874] python-apsw: rebuild for Python 3.8.

---
 srcpkgs/python-apsw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-apsw/template b/srcpkgs/python-apsw/template
index ed47b4a7803..6146ea639db 100644
--- a/srcpkgs/python-apsw/template
+++ b/srcpkgs/python-apsw/template
@@ -3,7 +3,7 @@ pkgname=python-apsw
 _distver=3.29.0
 _patchver=r1
 version=${_distver}${_patchver}
-revision=1
+revision=2
 wrksrc="apsw-${_distver}-${_patchver}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 765bd2f2b82c6226b12a5d6bbe156b07c03a1bca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 081/874] python-argh: rebuild for Python 3.8.

---
 srcpkgs/python-argh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argh/template b/srcpkgs/python-argh/template
index 4b7aec3b525..656da441757 100644
--- a/srcpkgs/python-argh/template
+++ b/srcpkgs/python-argh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argh'
 pkgname=python-argh
 version=0.26.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="argh-${version}"
 build_style=python-module

From 1f6f709fcbb4353d419be8d129ce581747dae1ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 082/874] python-argon2: rebuild for Python 3.8.

---
 srcpkgs/python-argon2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argon2/template b/srcpkgs/python-argon2/template
index 0b4b132cddd..1b5216cc9c0 100644
--- a/srcpkgs/python-argon2/template
+++ b/srcpkgs/python-argon2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argon2'
 pkgname=python-argon2
 version=18.3.0
-revision=2
+revision=3
 wrksrc="argon2_cffi-${version}"
 build_style=python-module
 pycompile_module="argon2"

From 26f299203792a3fe43e8944054d8c61c83416097 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 083/874] python-arxiv2bib: rebuild for Python 3.8.

---
 srcpkgs/python-arxiv2bib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-arxiv2bib/template b/srcpkgs/python-arxiv2bib/template
index 8bbc6bcf78e..4f245755dcf 100644
--- a/srcpkgs/python-arxiv2bib/template
+++ b/srcpkgs/python-arxiv2bib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-arxiv2bib'
 pkgname=python-arxiv2bib
 version=1.0.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="arxiv2bib-${version}"
 build_style=python-module

From 5d25b8642b8f8043e54a95f2ff5efc880044395a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 084/874] python-asn1crypto: rebuild for Python 3.8.

---
 srcpkgs/python-asn1crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-asn1crypto/template b/srcpkgs/python-asn1crypto/template
index 369c20af98f..e7ffe7415fc 100644
--- a/srcpkgs/python-asn1crypto/template
+++ b/srcpkgs/python-asn1crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-asn1crypto'
 pkgname=python-asn1crypto
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="asn1crypto-${version}"
 build_style=python-module

From c0625af704339d35d7423cd750ef2620c53c39bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 085/874] python-astral: rebuild for Python 3.8.

---
 srcpkgs/python-astral/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-astral/template b/srcpkgs/python-astral/template
index b8fdaee27ac..07aaeee166b 100644
--- a/srcpkgs/python-astral/template
+++ b/srcpkgs/python-astral/template
@@ -1,7 +1,7 @@
 # Template file for 'python-astral'
 pkgname=python-astral
 version=1.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python-}-${version}"
 build_style=python-module

From 6cdbd1584336605868e949368279bb6c2143b1d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 086/874] python3-astroid: rebuild for Python 3.8.

---
 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 28f01bd4445..d964fd2cdf3 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.2.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="astroid-${version}"
 build_style=python3-module

From c0642f6c760884c3209a89e643de35660419627a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 087/874] python3-async-timeout: rebuild for Python 3.8.

---
 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 d949a4fdf9a..854584fb5b2 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=1
+revision=2
 archs=noarch
 wrksrc="async-timeout-${version}"
 build_style=python3-module

From 17cdd1aac68337b8859ce0d970b309f841b8a456 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 088/874] python3-async_generator: rebuild for Python 3.8.

---
 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 c2053d7bf1f..20d9f7ea0d1 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=1
+revision=2
 archs=noarch
 wrksrc="async_generator-${version}"
 build_style=python3-module

From e57ec7e6820968645a23bcc13867add4c9a62399 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 089/874] python-atomicwrites: rebuild for Python 3.8.

---
 srcpkgs/python-atomicwrites/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atomicwrites/template b/srcpkgs/python-atomicwrites/template
index 849272e53f9..ec411d981d4 100644
--- a/srcpkgs/python-atomicwrites/template
+++ b/srcpkgs/python-atomicwrites/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atomicwrites'
 pkgname=python-atomicwrites
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="atomicwrites-${version}"
 build_style=python-module

From 61df9fa27dc05bc6bb5d5a2c5e806fd041d9adb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 090/874] python-atspi: rebuild for Python 3.8.

---
 srcpkgs/python-atspi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atspi/template b/srcpkgs/python-atspi/template
index 4a2007fa319..cfa1ef35377 100644
--- a/srcpkgs/python-atspi/template
+++ b/srcpkgs/python-atspi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atspi'
 pkgname=python-atspi
 version=2.32.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure

From d24c76e2f70e9a9dd9a6aa66a323bf79f37f9110 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 091/874] python-attrs: rebuild for Python 3.8.

---
 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 aaddb13f5be..6e2297a9553 100644
--- a/srcpkgs/python-attrs/template
+++ b/srcpkgs/python-attrs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-attrs'
 pkgname=python-attrs
 version=19.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="attrs-${version}"
 build_style=python-module

From dba37b5f26f28057cb10e86a08a4d2281ee09b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 092/874] python-audioread: rebuild for Python 3.8.

---
 srcpkgs/python-audioread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-audioread/template b/srcpkgs/python-audioread/template
index fc788a2778c..bc878d4b82d 100644
--- a/srcpkgs/python-audioread/template
+++ b/srcpkgs/python-audioread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-audioread'
 pkgname=python-audioread
 version=2.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="audioread-${version}"
 build_style=python-module

From 789a6f2ae1cd503ad69b6a968651c7745f878718 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 093/874] audit: rebuild for Python 3.8.

---
 srcpkgs/audit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/audit/template b/srcpkgs/audit/template
index c624aae0f6d..3e0d21784c0 100644
--- a/srcpkgs/audit/template
+++ b/srcpkgs/audit/template
@@ -1,7 +1,7 @@
 # Template file for 'audit'
 pkgname=audit
 version=2.8.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--libdir=/usr/lib --enable-shared=audit --enable-gssapi-krb5
  --with-apparmor --with-libcap-ng --with-python3"

From e2efc441ba2dda6eac89d6d19f7960be2fb6cb6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 094/874] python3-autobahn: rebuild for Python 3.8.

---
 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 053e45608e5..524ba4b4566 100644
--- a/srcpkgs/python3-autobahn/template
+++ b/srcpkgs/python3-autobahn/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-autobahn'
 pkgname=python3-autobahn
 version=19.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="autobahn-${version}"
 build_style=python3-module

From 9ad07e924752896ad77bccca2019163eb738ebc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 095/874] python-automat: rebuild for Python 3.8.

---
 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 4d0f89a89f5..984f5e9642a 100644
--- a/srcpkgs/python-automat/template
+++ b/srcpkgs/python-automat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-automat'
 pkgname=python-automat
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Automat-${version}"
 build_style=python-module

From a104c6986268b798f373e1fb36de2b20efb9f618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 096/874] python-axolotl: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl/template b/srcpkgs/python-axolotl/template
index cf24db1b6e7..74480b5a9fe 100644
--- a/srcpkgs/python-axolotl/template
+++ b/srcpkgs/python-axolotl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl'
 pkgname=python-axolotl
 version=0.2.3
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="axolotl"

From c0e16521a2125c2ae2c155dd483904a3dce7bd8c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 097/874] python-axolotl-curve25519: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl-curve25519/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl-curve25519/template b/srcpkgs/python-axolotl-curve25519/template
index f7b273b8385..897de4e7cdf 100644
--- a/srcpkgs/python-axolotl-curve25519/template
+++ b/srcpkgs/python-axolotl-curve25519/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl-curve25519'
 pkgname=python-axolotl-curve25519
 version=0.4.1.post2
-revision=2
+revision=3
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 makedepends="python-devel python3-devel"

From 6c250811341de25ed60e2bdfaae58eb8f5a8c159 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 098/874] python-babelfish: rebuild for Python 3.8.

---
 srcpkgs/python-babelfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-babelfish/template b/srcpkgs/python-babelfish/template
index c156255f418..47d5bb176cc 100644
--- a/srcpkgs/python-babelfish/template
+++ b/srcpkgs/python-babelfish/template
@@ -1,7 +1,7 @@
 # Template file for 'python-babelfish'
 pkgname=python-babelfish
 version=0.5.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="babelfish-${version}"
 build_style=python-module

From 3bbb2fa6599ab0470a4209080a69ad4f8476f1ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 099/874] python-backcall: rebuild for Python 3.8.

---
 srcpkgs/python-backcall/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-backcall/template b/srcpkgs/python-backcall/template
index 01dfab9c25d..a55af727ab6 100644
--- a/srcpkgs/python-backcall/template
+++ b/srcpkgs/python-backcall/template
@@ -1,7 +1,7 @@
 # Template file for 'python-backcall'
 pkgname=python-backcall
 version=0.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="backcall-${version}"
 build_style=python-module

From d263efaab1b83cfdc94e9b33011f3cfefc52dcd2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 100/874] bcc: rebuild for Python 3.8.

---
 srcpkgs/bcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template
index a4d32bce7a4..e872cb6a4a8 100644
--- a/srcpkgs/bcc/template
+++ b/srcpkgs/bcc/template
@@ -1,7 +1,7 @@
 # Template file for 'bcc'
 pkgname=bcc
 version=0.11.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DREVISION=${version}"
 hostmakedepends="flex"

From 95aa25d2f02529207de0d9d62aa57353f202d9a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 101/874] python-bcrypt: rebuild for Python 3.8.

---
 srcpkgs/python-bcrypt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bcrypt/template b/srcpkgs/python-bcrypt/template
index 1ccac21ee94..664b5c9df07 100644
--- a/srcpkgs/python-bcrypt/template
+++ b/srcpkgs/python-bcrypt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bcrypt'
 pkgname=python-bcrypt
 version=3.1.7
-revision=1
+revision=2
 wrksrc="bcrypt-${version}"
 build_style=python-module
 pycompile_module="bcrypt"

From 91e29d8f93186f3c597658d4746f864cc6ed9fb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 102/874] python-bibtexparser: rebuild for Python 3.8.

---
 srcpkgs/python-bibtexparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bibtexparser/template b/srcpkgs/python-bibtexparser/template
index 1eff201e6b8..c40115c9fb8 100644
--- a/srcpkgs/python-bibtexparser/template
+++ b/srcpkgs/python-bibtexparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bibtexparser'
 pkgname=python-bibtexparser
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bibtexparser-${version}"
 build_style=python-module

From 6a95de33763230908ad4e9ae408dedcdd2cc431d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 103/874] python-bitarray: rebuild for Python 3.8.

---
 srcpkgs/python-bitarray/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitarray/template b/srcpkgs/python-bitarray/template
index 4f2b4ee392c..f928718a9df 100644
--- a/srcpkgs/python-bitarray/template
+++ b/srcpkgs/python-bitarray/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitarray'
 pkgname=python-bitarray
 version=1.0.1
-revision=1
+revision=2
 wrksrc="bitarray-${version}"
 build_style=python-module
 pycompile_module="bitarray"

From 1f892b7a3495cc0eddd59d14baf8fa6473521ce4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 104/874] python-bitbucket-api: rebuild for Python 3.8.

---
 srcpkgs/python-bitbucket-api/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitbucket-api/template b/srcpkgs/python-bitbucket-api/template
index 27747866baf..448ea60d53d 100644
--- a/srcpkgs/python-bitbucket-api/template
+++ b/srcpkgs/python-bitbucket-api/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitbucket-api'
 pkgname=python-bitbucket-api
 version=0.5.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="bitbucket-api-${version}"
 build_style=python-module

From 9f464ba19a5d403e830d05b84d5b86c6a9bf0209 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 105/874] python-bleach: rebuild for Python 3.8.

---
 srcpkgs/python-bleach/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bleach/template b/srcpkgs/python-bleach/template
index da389c319a5..6e3d4a3bf4c 100644
--- a/srcpkgs/python-bleach/template
+++ b/srcpkgs/python-bleach/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bleach'
 pkgname=python-bleach
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bleach-${version}"
 build_style=python-module

From a79c0811d86d64b345ee5b056c280a062c8e810a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 106/874] python3-blessed: rebuild for Python 3.8.

---
 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 4d494883f9a..8527379351f 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.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessed-${version}"
 build_style=python3-module

From ec38850242ede1700a4b6234199fba116a530b3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 107/874] python-blessings: rebuild for Python 3.8.

---
 srcpkgs/python-blessings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blessings/template b/srcpkgs/python-blessings/template
index f8e396da5c5..baa4938c328 100644
--- a/srcpkgs/python-blessings/template
+++ b/srcpkgs/python-blessings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blessings'
 pkgname=python-blessings
 version=1.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessings-${version}"
 build_style=python-module

From 19252293b6f311e3a280441f83e7ec1589711b77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 108/874] python-blinker: rebuild for Python 3.8.

---
 srcpkgs/python-blinker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blinker/template b/srcpkgs/python-blinker/template
index e34a4a9721a..b6d1d63d19a 100644
--- a/srcpkgs/python-blinker/template
+++ b/srcpkgs/python-blinker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blinker'
 pkgname=python-blinker
 version=1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="blinker-${version}"
 build_style=python-module

From 7cd7b832b55b68ab081454f2b86c254476bd5132 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 109/874] python-bluez: rebuild for Python 3.8.

---
 srcpkgs/python-bluez/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bluez/template b/srcpkgs/python-bluez/template
index 1112352e8ab..4734e47038d 100644
--- a/srcpkgs/python-bluez/template
+++ b/srcpkgs/python-bluez/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bluez'
 pkgname=python-bluez
 version=0.22
-revision=4
+revision=5
 wrksrc="pybluez-${version}"
 build_style=python-module
 pycompile_module="bluetooth"

From 47f9a18cc42f2afe1e8f31696b6928e35b8105c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 110/874] python3-boltons: rebuild for Python 3.8.

---
 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 84a991feef4..1083eb98c51 100644
--- a/srcpkgs/python3-boltons/template
+++ b/srcpkgs/python3-boltons/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-boltons'
 pkgname=python3-boltons
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boltons-${version}"
 build_style=python3-module

From 05f9cb79aa092e2ddeede56d09676742c60cb788 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 111/874] python-boto: rebuild for Python 3.8.

---
 srcpkgs/python-boto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-boto/template b/srcpkgs/python-boto/template
index 40bd3d888b9..684c00feee0 100644
--- a/srcpkgs/python-boto/template
+++ b/srcpkgs/python-boto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-boto'
 pkgname=python-boto
 version=2.49.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boto-${version}"
 build_style=python-module

From ad258b30e35aadb84fd8cd6395bb3d382b429ce9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 112/874] python-botocore: rebuild for Python 3.8.

---
 srcpkgs/python-botocore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-botocore/template b/srcpkgs/python-botocore/template
index ae1a4c17964..0610007f36e 100644
--- a/srcpkgs/python-botocore/template
+++ b/srcpkgs/python-botocore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-botocore'
 pkgname=python-botocore
 version=1.12.243
-revision=1
+revision=2
 archs=noarch
 wrksrc="botocore-${version}"
 build_style=python-module

From 5bc87295c4d5b8af514da116d9b83154488da331 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 113/874] python-bottle: rebuild for Python 3.8.

---
 srcpkgs/python-bottle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bottle/template b/srcpkgs/python-bottle/template
index 8e3a2ad5ad7..0ffc8adfec7 100644
--- a/srcpkgs/python-bottle/template
+++ b/srcpkgs/python-bottle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bottle'
 pkgname=python-bottle
 version=0.12.17
-revision=1
+revision=2
 archs=noarch
 wrksrc="bottle-${version}"
 build_style=python-module

From 86d7964c563357cfa4aec17ced1fefb9e2c974d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 114/874] brltty: rebuild for Python 3.8.

---
 srcpkgs/brltty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/brltty/template b/srcpkgs/brltty/template
index 33f3354a219..a838cd62d55 100644
--- a/srcpkgs/brltty/template
+++ b/srcpkgs/brltty/template
@@ -1,7 +1,7 @@
 # Template file for 'brltty'
 pkgname=brltty
 version=6.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-gpm --with-screen-driver=lx,sc
  --with-tables-directory=/usr/share/brltty PYTHON=/usr/bin/python3"

From 59305e4244220895606aef8a8016d356cee63dff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 115/874] python-bsddb3: rebuild for Python 3.8.

---
 srcpkgs/python-bsddb3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bsddb3/template b/srcpkgs/python-bsddb3/template
index f719a3f9560..1df37cc0e71 100644
--- a/srcpkgs/python-bsddb3/template
+++ b/srcpkgs/python-bsddb3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bsddb3'
 pkgname=python-bsddb3
 version=6.2.6
-revision=2
+revision=3
 wrksrc="bsddb3-${version}"
 build_style=python-module
 make_build_args="--berkeley-db=${XBPS_CROSS_BASE}/usr"

From 8e91ab0e55145cdc83aae10c6f0277d467cb5057 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 116/874] python-cached-property: rebuild for Python 3.8.

---
 srcpkgs/python-cached-property/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cached-property/template b/srcpkgs/python-cached-property/template
index ca2f8536260..16c89346565 100644
--- a/srcpkgs/python-cached-property/template
+++ b/srcpkgs/python-cached-property/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cached-property'
 pkgname=python-cached-property
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cached-property-${version}"
 build_style=python-module

From 3047633291296a9279b5c2a9c0ff04a0cea875f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 117/874] python-cachetools: rebuild for Python 3.8.

---
 srcpkgs/python-cachetools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cachetools/template b/srcpkgs/python-cachetools/template
index ee3ed3a4c94..0f2fdcaed32 100644
--- a/srcpkgs/python-cachetools/template
+++ b/srcpkgs/python-cachetools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cachetools'
 pkgname=python-cachetools
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cachetools-${version}"
 build_style=python-module

From 52e0110b2dc8419583a18babfa62796ef6410ac7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 118/874] python3-cairo: rebuild for Python 3.8.

---
 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 cdde1b83d20..ac158237dd2 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.18.1
-revision=1
+revision=2
 wrksrc="pycairo-${version}"
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From d8f9c3f93f495874237c23477fb548be8b2c0da2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 119/874] python-cairocffi: rebuild for Python 3.8.

---
 srcpkgs/python-cairocffi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cairocffi/template b/srcpkgs/python-cairocffi/template
index baa61334a2a..c057739b03d 100644
--- a/srcpkgs/python-cairocffi/template
+++ b/srcpkgs/python-cairocffi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cairocffi'
 pkgname=python-cairocffi
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cairocffi-${version}"
 build_style=python-module

From bc01f22fb9a5d16bae1b724b675fc57b1f732baa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 120/874] python3-canonicaljson: rebuild for Python 3.8.

---
 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 abc8e95820d..1cbe15f14ae 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.1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="canonicaljson-${version}"
 build_style=python3-module

From e4cba931e3e55f565bc084f8171dea2a8baa9aaf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 121/874] python3-casttube: rebuild for Python 3.8.

---
 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 ccd95f3f31c..9e5544b0101 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=1
+revision=2
 archs=noarch
 wrksrc="casttube-${version}"
 build_style=python3-module

From 255661e350728911e6dc85db4bd8a0a0f059b561 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 122/874] python-cffi: rebuild for Python 3.8.

---
 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 27ae03879ac..8501b202bf2 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.12.3
-revision=1
+revision=2
 wrksrc="cffi-${version}"
 build_style=python-module
 pycompile_module="cffi"

From 1b85c0971a1d2d810331d3392d4ecedf140eeb47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 123/874] python3-changelogs: rebuild for Python 3.8.

---
 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 5c2a4889959..d9a7784cf3b 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.14.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="changelogs-${version}"
 build_style=python3-module

From 38e9561402e4ea4c3c4b27c8c747e6b710aec2fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 124/874] python-chardet: rebuild for Python 3.8.

---
 srcpkgs/python-chardet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chardet/template b/srcpkgs/python-chardet/template
index 685d3ab767f..bd502bbbddf 100644
--- a/srcpkgs/python-chardet/template
+++ b/srcpkgs/python-chardet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chardet'
 pkgname=python-chardet
 version=3.0.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="chardet-${version}"
 build_style=python-module

From de1193127ae80857e0f21f1d0499748b6ccafa40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 125/874] python3-cheetah3: rebuild for Python 3.8.

---
 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 40dfee6e322..b2149b2bc22 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.4
-revision=1
+revision=2
 wrksrc="Cheetah3-${version}"
 build_style=python3-module
 pycompile_module="Cheetah"

From 654378c7da0932e5e48085409868c2639efb5294 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 126/874] python3-chess: rebuild for Python 3.8.

---
 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 54b397517cf..e87dab6ca02 100644
--- a/srcpkgs/python3-chess/template
+++ b/srcpkgs/python3-chess/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chess'
 pkgname=python3-chess
 version=0.27.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-chess-${version}"
 build_style=python3-module

From 10db1a1daa9e65a8a20ebc6e20f512884e23f621 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 127/874] python3-chromecast: rebuild for Python 3.8.

---
 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 16df7502633..cfa41c5dfb5 100644
--- a/srcpkgs/python3-chromecast/template
+++ b/srcpkgs/python3-chromecast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chromecast'
 pkgname=python3-chromecast
 version=4.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychromecast-${version}"
 build_style=python3-module

From 9ff3e7dae7d0ebe28421538f18f150ecd58104e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 128/874] python-chroot: rebuild for Python 3.8.

---
 srcpkgs/python-chroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chroot/template b/srcpkgs/python-chroot/template
index 36853e9f2c0..7faa0f4cce9 100644
--- a/srcpkgs/python-chroot/template
+++ b/srcpkgs/python-chroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chroot'
 pkgname=python-chroot
 version=0.9.18
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychroot-${version}"
 build_style=python-module

From 8d2b57d7f0075beb9134ebd5f7e517ef8a7f20a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 129/874] python3-cli-ui: rebuild for Python 3.8.

---
 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 8303d44eed2..15a9bd32fce 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.9.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-cli-ui-${version}"
 build_style=python3-module

From ecf175e67cdb7bd1e27d29cc47a7e945a6660996 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 130/874] python3-cli_helpers: rebuild for Python 3.8.

---
 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 74b4abf2200..87b284e3cb5 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=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cli_helpers-${version}"
 build_style=python3-module

From aa87c50665110997328e9b80b9b6ba62c47f18bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 131/874] python-click: rebuild for Python 3.8.

---
 srcpkgs/python-click/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click/template b/srcpkgs/python-click/template
index 217e617e73e..4014cb66a83 100644
--- a/srcpkgs/python-click/template
+++ b/srcpkgs/python-click/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click'
 pkgname=python-click
 version=7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Click-${version}"
 build_style="python-module"

From cac08babb361a709a7b7a93c7a825b4682273115 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 132/874] python-click-log: rebuild for Python 3.8.

---
 srcpkgs/python-click-log/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-log/template b/srcpkgs/python-click-log/template
index 37b53f04af0..b57a7a74b4a 100644
--- a/srcpkgs/python-click-log/template
+++ b/srcpkgs/python-click-log/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-log'
 pkgname=python-click-log
 version=0.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-log-${version}"
 build_style="python-module"

From 5a0f06ded0599ac889d808c93865db1723b2ed95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 133/874] python3-click-plugins: rebuild for Python 3.8.

---
 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 cee484018d1..0ef6ce6b248 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=1
+revision=2
 archs=noarch
 wrksrc="click-plugins-${version}"
 build_style=python3-module

From cf104fe4106995307daeb70eb8d34554c238b5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 134/874] python-click-threading: rebuild for Python 3.8.

---
 srcpkgs/python-click-threading/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-threading/template b/srcpkgs/python-click-threading/template
index 76125224992..49b4a4a9aae 100644
--- a/srcpkgs/python-click-threading/template
+++ b/srcpkgs/python-click-threading/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-threading'
 pkgname=python-click-threading
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-threading-${version}"
 build_style="python-module"

From 4bcf653af73bc8e5a6492eee92e5d2826a779d38 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 135/874] python3-cmdln: rebuild for Python 3.8.

---
 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 f00c9a63908..2b7e21f3980 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=1
+revision=2
 archs=noarch
 wrksrc="cmdln-${version}"
 build_style=python3-module

From 52e9257d3be602d0748918c1440a3eae0b6baa51 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 136/874] python-codespell: rebuild for Python 3.8.

---
 srcpkgs/python-codespell/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-codespell/template b/srcpkgs/python-codespell/template
index 92134285a58..211626f33d7 100644
--- a/srcpkgs/python-codespell/template
+++ b/srcpkgs/python-codespell/template
@@ -1,7 +1,7 @@
 # Template file for 'python-codespell'
 pkgname=python-codespell
 version=1.14.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="codespell-${version}"
 build_style=python-module

From 65299f402e3d3a2991e33defee28d85043e0b40f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 137/874] python-colorama: rebuild for Python 3.8.

---
 srcpkgs/python-colorama/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-colorama/template b/srcpkgs/python-colorama/template
index 98ea0d3be78..09562385243 100644
--- a/srcpkgs/python-colorama/template
+++ b/srcpkgs/python-colorama/template
@@ -1,7 +1,7 @@
 # Template file for 'python-colorama'
 pkgname=python-colorama
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="colorama-${version}"
 build_style=python-module

From ec6a8fb7b9e3330e2d7f3fbe139c7a3742013bd8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 138/874] python3-colorclass: rebuild for Python 3.8.

---
 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 4a80f379206..ed8d2d2ea02 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=1
+revision=2
 archs=noarch
 wrksrc="colorclass-${version}"
 build_style=python3-module

From 4b254d3097fa01cb641af24639c6b9a230345954 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 139/874] python-configobj: rebuild for Python 3.8.

---
 srcpkgs/python-configobj/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-configobj/template b/srcpkgs/python-configobj/template
index 95f30d4631a..a8cb5d5d34e 100644
--- a/srcpkgs/python-configobj/template
+++ b/srcpkgs/python-configobj/template
@@ -1,7 +1,7 @@
 # Template file for 'python-configobj'
 pkgname=python-configobj
 version=5.0.6
-revision=5
+revision=6
 archs=noarch
 wrksrc="configobj-${version}"
 build_style=python-module

From 530a6b84ff81274981ed1aa92a2ff85a78dc9775 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 140/874] python-constantly: rebuild for Python 3.8.

---
 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 b5530908ac4..9160aec9edd 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=2
+revision=3
 archs=noarch
 wrksrc="constantly-${version}"
 build_style=python-module

From d2c0a853f5cd6634cca304f7db191fcb1d9a6afa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 141/874] python-construct: rebuild for Python 3.8.

---
 srcpkgs/python-construct/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-construct/template b/srcpkgs/python-construct/template
index 2afe435652c..d6d0b8010e2 100644
--- a/srcpkgs/python-construct/template
+++ b/srcpkgs/python-construct/template
@@ -1,7 +1,7 @@
 # Template file for 'python-construct'
 pkgname=python-construct
 version=2.9.45
-revision=2
+revision=3
 archs=noarch
 wrksrc="construct-${version}"
 build_style=python-module

From 9ba618aa4a4db0062002fcb1ad540bee9b702ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 142/874] python-coverage: rebuild for Python 3.8.

---
 srcpkgs/python-coverage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-coverage/template b/srcpkgs/python-coverage/template
index df6064b9879..1c44b5e18fb 100644
--- a/srcpkgs/python-coverage/template
+++ b/srcpkgs/python-coverage/template
@@ -1,7 +1,7 @@
 # Template file for 'python-coverage'
 pkgname=python-coverage
 version=4.5.4
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="coverage"

From 9adf4621a4960d8a331e1b723971cb326ad2429f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 143/874] python-cram: rebuild for Python 3.8.

---
 srcpkgs/python-cram/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cram/template b/srcpkgs/python-cram/template
index f1fce32149f..8c5d65fe260 100644
--- a/srcpkgs/python-cram/template
+++ b/srcpkgs/python-cram/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cram'
 pkgname=python-cram
 version=0.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="cram-${version}"
 build_style=python-module

From 47ef41a3931be5da08ee8d6fb0ff35b5e1a95d62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 144/874] python3-crcmod: rebuild for Python 3.8.

---
 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 4cd433d2420..9311dedc8ac 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=1
+revision=2
 wrksrc="crcmod-${version}"
 build_style=python3-module
 pycompile_module="crcmod"

From 8b8750f3919e1f23aa6930671f096a365391611a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 145/874] python-cryptography: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography/template b/srcpkgs/python-cryptography/template
index ce3184715dd..39e63d22f7d 100644
--- a/srcpkgs/python-cryptography/template
+++ b/srcpkgs/python-cryptography/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography'
 pkgname=python-cryptography
 version=2.7
-revision=1
+revision=2
 wrksrc="cryptography-${version}"
 build_style=python-module
 pycompile_module="cryptography"

From 676ecf3ea008b8ccabdd3d2798c449a061abb9dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 146/874] python-cryptography_vectors: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography_vectors/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography_vectors/template b/srcpkgs/python-cryptography_vectors/template
index d52e5f5e47c..8fba3a0ce27 100644
--- a/srcpkgs/python-cryptography_vectors/template
+++ b/srcpkgs/python-cryptography_vectors/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography_vectors'
 pkgname=python-cryptography_vectors
 version=2.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="cryptography_vectors-${version}"
 build_style=python-module

From b78a89dedf3b15094ae7febdff460a2cbf547464 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 147/874] python-css-parser: rebuild for Python 3.8.

---
 srcpkgs/python-css-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-css-parser/template b/srcpkgs/python-css-parser/template
index e90b103e4a0..f6d2d0cbf8b 100644
--- a/srcpkgs/python-css-parser/template
+++ b/srcpkgs/python-css-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-css-parser'
 pkgname=python-css-parser
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="css-parser-${version}"
 build_style=python-module

From 036f8b87a68dcb362c7037f58abcffb763571601 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 148/874] python-cssselect: rebuild for Python 3.8.

---
 srcpkgs/python-cssselect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssselect/template b/srcpkgs/python-cssselect/template
index d7dbcebc0ea..c7f43ebca9f 100644
--- a/srcpkgs/python-cssselect/template
+++ b/srcpkgs/python-cssselect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssselect'
 pkgname=python-cssselect
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d4b52974f5f9e8a86060d3dfccc041298c1d666 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 149/874] python-cssutils: rebuild for Python 3.8.

---
 srcpkgs/python-cssutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssutils/template b/srcpkgs/python-cssutils/template
index 648c4754c22..5f08903b9a0 100644
--- a/srcpkgs/python-cssutils/template
+++ b/srcpkgs/python-cssutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssutils'
 pkgname=python-cssutils
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="cssutils-${version}"
 build_style=python-module

From bfb2835290dfefddc0781e2b463d410bf121efa5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 150/874] python-cups: rebuild for Python 3.8.

---
 srcpkgs/python-cups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cups/template b/srcpkgs/python-cups/template
index 2c26e9ef3d0..62c384c9db8 100644
--- a/srcpkgs/python-cups/template
+++ b/srcpkgs/python-cups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cups'
 pkgname=python-cups
 version=1.9.74
-revision=2
+revision=3
 wrksrc="pycups-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 32daac09af71a30483e9985028381670b4ab6245 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 151/874] system-config-printer: rebuild for Python 3.8.

---
 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 e8f8eca46ae..04fe74ff808 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.11
-revision=5
+revision=6
 build_style=gnu-configure
 configure_args="--with-udev-rules"
 make_build_args="udevhelperdir=/usr/lib/udev"

From 582813b2756ce1d1d397113a752b81189680c001 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 152/874] python-curl: rebuild for Python 3.8.

---
 srcpkgs/python-curl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curl/template b/srcpkgs/python-curl/template
index f1f9051d53a..685c63ce68a 100644
--- a/srcpkgs/python-curl/template
+++ b/srcpkgs/python-curl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curl'
 pkgname=python-curl
 version=7.43.0.3
-revision=4
+revision=5
 wrksrc="pycurl-${version}"
 build_style=python-module
 pycompile_module="curl"

From 0eda981910702bfaac2a8af2041fe2c534c13618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 153/874] python-curtsies: rebuild for Python 3.8.

---
 srcpkgs/python-curtsies/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curtsies/template b/srcpkgs/python-curtsies/template
index 158d1c5ce76..6126a11e9b4 100644
--- a/srcpkgs/python-curtsies/template
+++ b/srcpkgs/python-curtsies/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curtsies'
 pkgname=python-curtsies
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="curtsies-${version}"
 build_style=python-module

From 7db16365daaa931d774701441c01b698be457cb0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 154/874] python-cycler: rebuild for Python 3.8.

---
 srcpkgs/python-cycler/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cycler/template b/srcpkgs/python-cycler/template
index ee6c985b288..0b53c195dae 100644
--- a/srcpkgs/python-cycler/template
+++ b/srcpkgs/python-cycler/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cycler'
 pkgname=python-cycler
 version=0.10.0
-revision=4
+revision=5
 archs=noarch
 wrksrc="cycler-${version}"
 build_style=python-module

From 2c59e6772ee31b855fe302a27b9b9544cd865e6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 155/874] python-daemonize: rebuild for Python 3.8.

---
 srcpkgs/python-daemonize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-daemonize/template b/srcpkgs/python-daemonize/template
index 699a156b26b..efaf163e573 100644
--- a/srcpkgs/python-daemonize/template
+++ b/srcpkgs/python-daemonize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-daemonize'
 pkgname=python-daemonize
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="daemonize-${version}"
 build_style=python-module

From 84cc63fece0763c8b6920e56e78508551e0fc727 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 156/874] python-dateutil: rebuild for Python 3.8.

---
 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 d9c0f73c883..7675b8f9447 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.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="dateutil"

From 9a19173186ae564f17114f530ac8077484d43c82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 157/874] python-dbus: rebuild for Python 3.8.

---
 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 869c10b2969..3845f6ce34a 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.12
-revision=1
+revision=2
 wrksrc="dbus-python-${version}"
 build_style=gnu-configure
 pycompile_module="dbus"

From 06a9a5b6965485369e669181d99123d7beabf81f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 158/874] python3-dbusmock: rebuild for Python 3.8.

---
 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 67e0ed68078..4abd47843cc 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.18.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-dbusmock-${version}"
 build_style=python3-module

From 694c57d69d63d9f59bef9d31d20a0b16dc73a2a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 159/874] python-decorator: rebuild for Python 3.8.

---
 srcpkgs/python-decorator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-decorator/template b/srcpkgs/python-decorator/template
index 14090c537c9..7f14fef90a6 100644
--- a/srcpkgs/python-decorator/template
+++ b/srcpkgs/python-decorator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-decorator'
 pkgname=python-decorator
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="decorator-${version}"
 build_style=python-module

From 3bd4b100eb970e16e93bbbed8ce2ac91a36e3df5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 160/874] python-defusedxml: rebuild for Python 3.8.

---
 srcpkgs/python-defusedxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-defusedxml/template b/srcpkgs/python-defusedxml/template
index afd62e94414..96234eb18c7 100644
--- a/srcpkgs/python-defusedxml/template
+++ b/srcpkgs/python-defusedxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-defusedxml'
 pkgname=python-defusedxml
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="defusedxml-${version}"
 build_style=python-module

From 442acbe58cd337c55658908f41ec5b6221ca8fcb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 161/874] python3-discid: rebuild for Python 3.8.

---
 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 be5eae1f07f..cc4bc27a1aa 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=1
+revision=2
 archs=noarch
 wrksrc="discid-${version}"
 build_style=python3-module

From 31db2101853fbced7b2655f48906b9054bce07ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 162/874] python-discogs_client: rebuild for Python 3.8.

---
 srcpkgs/python-discogs_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-discogs_client/template b/srcpkgs/python-discogs_client/template
index a27cc50f93c..5af18eda664 100644
--- a/srcpkgs/python-discogs_client/template
+++ b/srcpkgs/python-discogs_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-discogs_client'
 pkgname=python-discogs_client
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="discogs-client-${version}"
 build_style=python-module

From 0aba2b232148b832c27ebd8703c24f42c5018f15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 163/874] python3-distro: rebuild for Python 3.8.

---
 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 86e94572ed7..f1205ace151 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.4.0
-revision=1
+revision=2
 wrksrc=distro-${version}
 build_style=python3-module
 pycompile_module="distro"

From 990a3bd7cef20bd21b781caccd807a7cadf6a0fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 164/874] python-distutils-extra: rebuild for Python 3.8.

---
 srcpkgs/python-distutils-extra/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-distutils-extra/template b/srcpkgs/python-distutils-extra/template
index 9e5728ba08f..46bb0cccc31 100644
--- a/srcpkgs/python-distutils-extra/template
+++ b/srcpkgs/python-distutils-extra/template
@@ -1,7 +1,7 @@
 # Template file for 'python-distutils-extra'
 pkgname=python-distutils-extra
 version=2.39
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 pycompile_module="DistUtilsExtra"

From cc8c6f7c74e5660152cb87b99e7d7b88b5c3d077 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 165/874] python-dkimpy: rebuild for Python 3.8.

---
 srcpkgs/python-dkimpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dkimpy/template b/srcpkgs/python-dkimpy/template
index 4ca5ad386b0..1da26c5de5d 100644
--- a/srcpkgs/python-dkimpy/template
+++ b/srcpkgs/python-dkimpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dkimpy'
 pkgname=python-dkimpy
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="dkimpy-${version}"
 build_style=python-module

From 8560c730ee4396275d04f5b5649fc0b2a1a8819e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 166/874] python-dnspython: rebuild for Python 3.8.

---
 srcpkgs/python-dnspython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dnspython/template b/srcpkgs/python-dnspython/template
index 15d4d7a8a73..66d237e89ee 100644
--- a/srcpkgs/python-dnspython/template
+++ b/srcpkgs/python-dnspython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dnspython'
 pkgname=python-dnspython
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dnspython-${version}"
 build_style=python-module

From c723160d02d838faad8761fcdaa9cfaed2df756f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 167/874] python-docker: rebuild for Python 3.8.

---
 srcpkgs/python-docker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker/template b/srcpkgs/python-docker/template
index b3f8cb2076b..83265bbb606 100644
--- a/srcpkgs/python-docker/template
+++ b/srcpkgs/python-docker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker'
 pkgname=python-docker
 version=3.7.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-${version}"
 build_style=python-module

From 116d9592b10bcde7a5b2f78ed23e0c2e382394da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 168/874] python-docker-pycreds: rebuild for Python 3.8.

---
 srcpkgs/python-docker-pycreds/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker-pycreds/template b/srcpkgs/python-docker-pycreds/template
index c478ded9de6..2224be0d21d 100644
--- a/srcpkgs/python-docker-pycreds/template
+++ b/srcpkgs/python-docker-pycreds/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker-pycreds'
 pkgname=python-docker-pycreds
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-pycreds-${version}"
 build_style=python-module

From 339d2fc160bc67c015b61704b1ade0e15a729050 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 169/874] python-dockerpty: rebuild for Python 3.8.

---
 srcpkgs/python-dockerpty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dockerpty/template b/srcpkgs/python-dockerpty/template
index 78ba5bc3b09..4a0b3a7a33f 100644
--- a/srcpkgs/python-dockerpty/template
+++ b/srcpkgs/python-dockerpty/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dockerpty'
 pkgname=python-dockerpty
 version=0.4.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="dockerpty-${version}"
 build_style=python-module

From 9925e97e6e19313f6899b14640957a47c12c3c6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 170/874] python-docopt: rebuild for Python 3.8.

---
 srcpkgs/python-docopt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docopt/template b/srcpkgs/python-docopt/template
index 4b8661ed2e1..48e5f86c1e0 100644
--- a/srcpkgs/python-docopt/template
+++ b/srcpkgs/python-docopt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docopt'
 pkgname=python-docopt
 version=0.6.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="docopt-${version}"
 build_style=python-module

From b274270fc5a58198a59400d9c8eb825546cf64ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 171/874] python-docutils: rebuild for Python 3.8.

---
 srcpkgs/python-docutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docutils/template b/srcpkgs/python-docutils/template
index 62f080f416a..8fd21a7450b 100644
--- a/srcpkgs/python-docutils/template
+++ b/srcpkgs/python-docutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docutils'
 pkgname=python-docutils
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docutils-${version}"
 build_style=python-module

From 6db8d0a9fb5d7b1cd339f5102d86a29dda19f348 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 172/874] python-dogpile.cache: rebuild for Python 3.8.

---
 srcpkgs/python-dogpile.cache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index f6e106fb4e8..894c6f695bf 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dogpile.cache'
 pkgname=python-dogpile.cache
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dogpile.cache-${version}"
 build_style=python-module

From e603b2f5de239ac8c6e7b8322f560ed5249fe887 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 173/874] python-dominate: rebuild for Python 3.8.

---
 srcpkgs/python-dominate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dominate/template b/srcpkgs/python-dominate/template
index 14ec659bac8..6d6f2caa323 100644
--- a/srcpkgs/python-dominate/template
+++ b/srcpkgs/python-dominate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dominate'
 pkgname=python-dominate
 version=2.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dominate-${version}"
 build_style=python-module

From 2bd7c3e739559614758b25140591fa8bb623a73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 174/874] python-dulwich: rebuild for Python 3.8.

---
 srcpkgs/python-dulwich/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dulwich/template b/srcpkgs/python-dulwich/template
index 0bddda65069..7b8ac45011e 100644
--- a/srcpkgs/python-dulwich/template
+++ b/srcpkgs/python-dulwich/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dulwich'
 pkgname=python-dulwich
 version=0.19.13
-revision=1
+revision=2
 wrksrc="dulwich-${version}"
 build_style=python-module
 pycompile_module="dulwich"

From 9d0b79dad0746da7669be20a38791a7eff4a42dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 175/874] python3-easygui: rebuild for Python 3.8.

---
 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 c1ec4767ae9..a9a2f66d865 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="easygui-${version}"
 build_style=python3-module

From eaa3ee113511523004b2d78a2119becc627b2dcf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 176/874] python-ecdsa: rebuild for Python 3.8.

---
 srcpkgs/python-ecdsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ecdsa/template b/srcpkgs/python-ecdsa/template
index 5e0b217fa73..e6e7d58cd10 100644
--- a/srcpkgs/python-ecdsa/template
+++ b/srcpkgs/python-ecdsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ecdsa'
 pkgname=python-ecdsa
 version=0.13.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 5d7cb5b032b5814415f5b21646b09bceda211fd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 177/874] python-editor: rebuild for Python 3.8.

---
 srcpkgs/python-editor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-editor/template b/srcpkgs/python-editor/template
index 4b86afa6924..3594e407205 100644
--- a/srcpkgs/python-editor/template
+++ b/srcpkgs/python-editor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-editor'
 pkgname=python-editor
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="editor"

From 19c3e09b30ed3cf9c6ffee8cee652d54c672a599 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 178/874] python-efl: rebuild for Python 3.8.

---
 srcpkgs/python-efl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-efl/template b/srcpkgs/python-efl/template
index a49e7d35847..2096f6916da 100644
--- a/srcpkgs/python-efl/template
+++ b/srcpkgs/python-efl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-efl'
 pkgname=python-efl
 version=1.22.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="efl"
 hostmakedepends="pkg-config python-devel python3-devel"

From 82198e93fcca38bb8b5f4f754bcbd6fd7baf59da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 179/874] python3-eliot: rebuild for Python 3.8.

---
 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 15b05dd7331..8453789b688 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="eliot-${version}"
 build_style=python3-module

From bcfe6b0d9db4104d00cb6a16d6012f2258515d59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 180/874] python-empy: rebuild for Python 3.8.

---
 srcpkgs/python-empy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-empy/template b/srcpkgs/python-empy/template
index 97476250cf2..4668a9cc814 100644
--- a/srcpkgs/python-empy/template
+++ b/srcpkgs/python-empy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-empy'
 pkgname=python-empy
 version=3.3.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="empy-${version}"
 build_style=python-module

From 6a91fa7210bd83ced5963d69be69166cd7ad72e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 181/874] python-enchant: rebuild for Python 3.8.

---
 srcpkgs/python-enchant/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enchant/template b/srcpkgs/python-enchant/template
index a443877d821..e499957b47e 100644
--- a/srcpkgs/python-enchant/template
+++ b/srcpkgs/python-enchant/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enchant'
 pkgname=python-enchant
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python-module

From 6ec52886dc67e49d1440bf8d0d1fe8fab07df30a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 182/874] python-entrypoints: rebuild for Python 3.8.

---
 srcpkgs/python-entrypoints/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-entrypoints/template b/srcpkgs/python-entrypoints/template
index ebefb2d04dc..6070650f35d 100644
--- a/srcpkgs/python-entrypoints/template
+++ b/srcpkgs/python-entrypoints/template
@@ -1,7 +1,7 @@
 # Template file for 'python-entrypoints'
 pkgname=python-entrypoints
 version=0.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="entrypoints-${version}"
 build_style=python-module

From 612a78254c1f46db87994e41646495e245a3facf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 183/874] python-envdir: rebuild for Python 3.8.

---
 srcpkgs/python-envdir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-envdir/template b/srcpkgs/python-envdir/template
index 622fcee6b34..b8cccad60ac 100644
--- a/srcpkgs/python-envdir/template
+++ b/srcpkgs/python-envdir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-envdir'
 pkgname=python-envdir
 version=1.0.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 50f8488d9ea7d659590f7d09f42dd5b94e19152c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 184/874] python-enzyme: rebuild for Python 3.8.

---
 srcpkgs/python-enzyme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enzyme/template b/srcpkgs/python-enzyme/template
index 637c858195b..f28f40b0319 100644
--- a/srcpkgs/python-enzyme/template
+++ b/srcpkgs/python-enzyme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enzyme'
 pkgname=python-enzyme
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="enzyme-${version}"
 build_style=python-module

From 0927e611429f29f17290f1e10cf2c0b872d1feb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 185/874] python3-esprima: rebuild for Python 3.8.

---
 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 c3a564123de..aec8930a6bf 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=1
+revision=2
 wrksrc="esprima-${version}"
 build_style=python3-module
 pycompile_module="esprima"

From d10708d4fcebbbc7dccf424ca1a596b43ae8df59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 186/874] python-evdev: rebuild for Python 3.8.

---
 srcpkgs/python-evdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-evdev/template b/srcpkgs/python-evdev/template
index 3c1a5253513..cff10211628 100644
--- a/srcpkgs/python-evdev/template
+++ b/srcpkgs/python-evdev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-evdev'
 pkgname=python-evdev
 version=1.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="evdev"
 hostmakedepends="python-setuptools python3-setuptools"

From d4f74f5bad705da704a6773a834e3939d7700c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 187/874] python-ewmh: rebuild for Python 3.8.

---
 srcpkgs/python-ewmh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ewmh/template b/srcpkgs/python-ewmh/template
index be6d04316b0..a96490fb56d 100644
--- a/srcpkgs/python-ewmh/template
+++ b/srcpkgs/python-ewmh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ewmh'
 pkgname=python-ewmh
 version=0.1.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From afbcc47e23517b6d56ec485dc40f389c1af31701 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 188/874] python-exifread: rebuild for Python 3.8.

---
 srcpkgs/python-exifread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-exifread/template b/srcpkgs/python-exifread/template
index 853f885fff8..834aa7730ee 100644
--- a/srcpkgs/python-exifread/template
+++ b/srcpkgs/python-exifread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-exifread'
 pkgname=python-exifread
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="exif-py-${version}"
 build_style="python-module"

From d05fad06fa4306ef7f685f49a366fcc27e64a40c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 189/874] python-fasteners: rebuild for Python 3.8.

---
 srcpkgs/python-fasteners/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fasteners/template b/srcpkgs/python-fasteners/template
index 34ca4e0e9db..24d2ec0611f 100644
--- a/srcpkgs/python-fasteners/template
+++ b/srcpkgs/python-fasteners/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fasteners'
 pkgname=python-fasteners
 version=0.15
-revision=1
+revision=2
 archs=noarch
 wrksrc="fasteners-${version}"
 build_style=python-module

From 8c663b7a9f12675a94dea8c33eddeededd3c56bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 190/874] python-feedgenerator: rebuild for Python 3.8.

---
 srcpkgs/python-feedgenerator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedgenerator/template b/srcpkgs/python-feedgenerator/template
index 3e5abc4f433..bcffb6728aa 100644
--- a/srcpkgs/python-feedgenerator/template
+++ b/srcpkgs/python-feedgenerator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedgenerator'
 pkgname=python-feedgenerator
 version=1.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="feedgenerator-${version}"
 build_style=python-module

From ab9e5bccaa31f32d93549c21e47bc12c4e5ac181 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 191/874] python-feedparser: rebuild for Python 3.8.

---
 srcpkgs/python-feedparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedparser/template b/srcpkgs/python-feedparser/template
index c5c5e8783eb..94f0a58ec88 100644
--- a/srcpkgs/python-feedparser/template
+++ b/srcpkgs/python-feedparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedparser'
 pkgname=python-feedparser
 version=5.2.1
-revision=5
+revision=6
 archs=noarch
 wrksrc="feedparser-${version}"
 build_style=python-module

From 157719696415e499518e188417324c7d97359d36 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 192/874] python3-fido2: rebuild for Python 3.8.

---
 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 fafb4d61d56..fb737d68d20 100644
--- a/srcpkgs/python3-fido2/template
+++ b/srcpkgs/python3-fido2/template
@@ -2,7 +2,7 @@
 pkgname=python3-fido2
 _pkgname=fido2
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From cbab3fd166f79dc7d2659a802e1953c697f94a95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 193/874] python3-filelock: rebuild for Python 3.8.

---
 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 8e0bc8f1070..9105ff8689d 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.0.12
-revision=1
+revision=2
 wrksrc="filelock-${version}"
 build_style=python3-module
 pycompile_module="filelock.py"

From df9deb02719807bdcb49f7c41040cd8748efd6fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 194/874] python-filetype: rebuild for Python 3.8.

---
 srcpkgs/python-filetype/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-filetype/template b/srcpkgs/python-filetype/template
index 37896cff9d8..10b974794b5 100644
--- a/srcpkgs/python-filetype/template
+++ b/srcpkgs/python-filetype/template
@@ -1,7 +1,7 @@
 # Template file for 'python-filetype'
 pkgname=python-filetype
 version=1.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="filetype-${version}"
 build_style=python-module

From b71ed5528581f9bba57653ff2acb45edf6dcbd81 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 195/874] python3-fishnet: rebuild for Python 3.8.

---
 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 9dde60cbb6c..6280ae8e966 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=1
+revision=2
 archs=noarch
 wrksrc="fishnet-${version}"
 build_style=python3-module

From 25bc415f7d96b99e98c97ab0abad6a531786f9e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 196/874] python-flaky: rebuild for Python 3.8.

---
 srcpkgs/python-flaky/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-flaky/template b/srcpkgs/python-flaky/template
index d5211c9cb60..e8e681421f7 100644
--- a/srcpkgs/python-flaky/template
+++ b/srcpkgs/python-flaky/template
@@ -1,7 +1,7 @@
 # Template file for 'python-flaky'
 pkgname=python-flaky
 version=3.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 6dfa18d602ed8d6414a040466c4e0eef4db1d0d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 197/874] python3-flexmock: rebuild for Python 3.8.

---
 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 0663ed5122d..8a7c9a2894d 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.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="flexmock-${version}"
 build_style=python3-module

From 8c90b86b18b06e68260df59166a7228f7af5e5b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 198/874] python3-fonttools: rebuild for Python 3.8.

---
 srcpkgs/python3-fonttools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-fonttools/template b/srcpkgs/python3-fonttools/template
index 15cf36585fb..ccd4b66c5d8 100644
--- a/srcpkgs/python3-fonttools/template
+++ b/srcpkgs/python3-fonttools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-fonttools'
 pkgname=python3-fonttools
 version=4.0.2
-revision=1
+revision=2
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 pycompile_module="fonttools"

From 423903ec28541ea1cd89f97400529121dca5e065 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 199/874] python3-frozendict: rebuild for Python 3.8.

---
 srcpkgs/python3-frozendict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-frozendict/template b/srcpkgs/python3-frozendict/template
index d3b4dc91602..739000a887c 100644
--- a/srcpkgs/python3-frozendict/template
+++ b/srcpkgs/python3-frozendict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-frozendict'
 pkgname=python3-frozendict
 version=1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="frozendict-${version}"
 build_style=python3-module

From 0929953d079922e685a9b46372630d69c2c6776d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 200/874] python-fuse: rebuild for Python 3.8.

---
 srcpkgs/python-fuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fuse/template b/srcpkgs/python-fuse/template
index 6449cc36a02..2e99e9866d3 100644
--- a/srcpkgs/python-fuse/template
+++ b/srcpkgs/python-fuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fuse'
 pkgname=python-fuse
 version=0.3.1
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="fuseparts fuse.py"
 hostmakedepends="pkg-config python-setuptools python3-setuptools"

From 505bca67544c8cca26d3f7675eb746bb98abf44e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 201/874] python-future: rebuild for Python 3.8.

---
 srcpkgs/python-future/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-future/template b/srcpkgs/python-future/template
index 1844be2efbc..6cd53908823 100644
--- a/srcpkgs/python-future/template
+++ b/srcpkgs/python-future/template
@@ -1,7 +1,7 @@
 # Template file for 'python-future'
 pkgname=python-future
 version=0.17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="future-${version}"
 build_style=python-module

From 4b595c01c8dcf28a72cf0a96960609ab9788b6ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 202/874] python3-geojson: rebuild for Python 3.8.

---
 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 6bcd0c3092e..90e7d5a0e60 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=1
+revision=2
 archs=noarch
 wrksrc="geojson-${version}"
 build_style=python3-module

From 5e44d64f54a2983f4d5fefba49ef65a6803bd024 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 203/874] python-gevent: rebuild for Python 3.8.

---
 srcpkgs/python-gevent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gevent/template b/srcpkgs/python-gevent/template
index 2bbabee00fc..35c76146d56 100644
--- a/srcpkgs/python-gevent/template
+++ b/srcpkgs/python-gevent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gevent'
 pkgname=python-gevent
 version=1.4.0
-revision=1
+revision=2
 wrksrc="gevent-${version}"
 build_style=python-module
 pycompile_module="gevent"

From 5fed10c6460512a1f1391f079ed47645f9df532e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 204/874] python3-gitchangelog: rebuild for Python 3.8.

---
 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 ed381e07d78..cc1945f2623 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=1
+revision=2
 archs=noarch
 wrksrc="gitchangelog-${version}"
 build_style=python3-module

From b52557ed164619919a05cdf8fae5e77e5b4f53db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 205/874] python-gitdb: rebuild for Python 3.8.

---
 srcpkgs/python-gitdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitdb/template b/srcpkgs/python-gitdb/template
index d9e624b9f53..253ddaa07bd 100644
--- a/srcpkgs/python-gitdb/template
+++ b/srcpkgs/python-gitdb/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitdb'
 pkgname=python-gitdb
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="gitdb2-${version}"
 build_style=python-module

From 53365dcec4eb25138ea4bb248d57c1b2aa7aa311 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 206/874] python-github3: rebuild for Python 3.8.

---
 srcpkgs/python-github3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-github3/template b/srcpkgs/python-github3/template
index 2cb71368f3d..425fe1b7362 100644
--- a/srcpkgs/python-github3/template
+++ b/srcpkgs/python-github3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-github3'
 pkgname=python-github3
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="github3.py-${version}"
 build_style=python-module

From 2b4c90de9a0cbcbb5902a9407f229864bd81a7f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 207/874] python-gitlab: rebuild for Python 3.8.

---
 srcpkgs/python-gitlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitlab/template b/srcpkgs/python-gitlab/template
index 7db583b54c4..0f71b4c7153 100644
--- a/srcpkgs/python-gitlab/template
+++ b/srcpkgs/python-gitlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitlab'
 pkgname=python-gitlab
 version=1.12.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gitlab"

From 51613301779bb891e87daba6b634dca18654d29f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 208/874] python-gmpy2: rebuild for Python 3.8.

---
 srcpkgs/python-gmpy2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gmpy2/template b/srcpkgs/python-gmpy2/template
index c41a9f4595b..74e9b583288 100644
--- a/srcpkgs/python-gmpy2/template
+++ b/srcpkgs/python-gmpy2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gmpy2'
 pkgname=python-gmpy2
 version=2.0.8
-revision=5
+revision=6
 wrksrc="gmpy2-${version}"
 build_style=python-module
 hostmakedepends="unzip python-setuptools python3-setuptools

From a6f4b9ed74b787b741e6297520186bd60de2b46e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 209/874] python-gntp: rebuild for Python 3.8.

---
 srcpkgs/python-gntp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gntp/template b/srcpkgs/python-gntp/template
index 14bd36518f8..7b3bb5a7bb7 100644
--- a/srcpkgs/python-gntp/template
+++ b/srcpkgs/python-gntp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gntp'
 pkgname=python-gntp
 version=1.0.3
-revision=4
+revision=5
 archs=noarch
 wrksrc="gntp-${version}"
 build_style=python-module

From 0730dc20e341ef5247184f85a47f2d1200750698 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 210/874] python-gnupg: rebuild for Python 3.8.

---
 srcpkgs/python-gnupg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gnupg/template b/srcpkgs/python-gnupg/template
index ae6f49c7e27..24c0943d1e4 100644
--- a/srcpkgs/python-gnupg/template
+++ b/srcpkgs/python-gnupg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gnupg'
 pkgname=python-gnupg
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gnupg.py"

From 2c78f38b921da1d4ac2ddf5c200a378cadd75590 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 211/874] python3-gobject: rebuild for Python 3.8.

---
 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 242d33ed3ac..8713ddf5334 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.32.2
-revision=1
+revision=2
 wrksrc="pygobject-${version}"
 build_style=meson
 build_helper="gir"

From 15ed888e45d37128f9852cfc492a14182186f1a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 212/874] python-gogs-client: rebuild for Python 3.8.

---
 srcpkgs/python-gogs-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gogs-client/template b/srcpkgs/python-gogs-client/template
index e8189bc8805..027135d430c 100644
--- a/srcpkgs/python-gogs-client/template
+++ b/srcpkgs/python-gogs-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gogs-client'
 pkgname=python-gogs-client
 version=1.0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="gogs_client-${version}"
 build_style=python-module

From 1ce661eb8f15d8e6d56a3f1e197897c332fa224e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 213/874] python-google-api-python-client: rebuild for Python
 3.8.

---
 srcpkgs/python-google-api-python-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-api-python-client/template b/srcpkgs/python-google-api-python-client/template
index 273cd0722b8..69c2d4e96eb 100644
--- a/srcpkgs/python-google-api-python-client/template
+++ b/srcpkgs/python-google-api-python-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-api-python-client'
 pkgname=python-google-api-python-client
 version=1.7.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From abc55893b0e34778f73646713ec111220a9cafbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 214/874] python-google-auth: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth/template b/srcpkgs/python-google-auth/template
index 708fe08325a..1de6800e3d2 100644
--- a/srcpkgs/python-google-auth/template
+++ b/srcpkgs/python-google-auth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth'
 pkgname=python-google-auth
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 345385c7c36d4b9e58aad80d36b1cd93575ecd95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 215/874] python-google-auth-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth-httplib2/template b/srcpkgs/python-google-auth-httplib2/template
index 9a7fd093ce5..9e43bc92292 100644
--- a/srcpkgs/python-google-auth-httplib2/template
+++ b/srcpkgs/python-google-auth-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth-httplib2'
 pkgname=python-google-auth-httplib2
 version=0.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 659bb740f4ecc98b01dc400608f6b524416a0b86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 216/874] python-gpg: rebuild for Python 3.8.

---
 srcpkgs/python-gpg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gpg/template b/srcpkgs/python-gpg/template
index 4ef85846b42..a17a0324af8 100644
--- a/srcpkgs/python-gpg/template
+++ b/srcpkgs/python-gpg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gpg'
 pkgname=python-gpg
 version=1.10.0
-revision=3
+revision=4
 wrksrc="gpg-${version}"
 build_style=python-module
 hostmakedepends="swig gpgme-devel python-devel python3-devel"

From 873dc5b9b60d819c83e9d76fd366d7e22b1e3bc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 217/874] python-grako: rebuild for Python 3.8.

---
 srcpkgs/python-grako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-grako/template b/srcpkgs/python-grako/template
index cc02973b31e..2b401732735 100644
--- a/srcpkgs/python-grako/template
+++ b/srcpkgs/python-grako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-grako'
 pkgname=python-grako
 version=3.99.9
-revision=3
+revision=4
 wrksrc="neogeny-${pkgname/python-/}-275d3c4fe4ac"
 build_style=python-module
 pycompile_module="grako"

From d47059d2656db0b58c65856428cabac0432d40b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 218/874] python-graphviz: rebuild for Python 3.8.

---
 srcpkgs/python-graphviz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-graphviz/template b/srcpkgs/python-graphviz/template
index 521f2e81213..e3d487a2db7 100644
--- a/srcpkgs/python-graphviz/template
+++ b/srcpkgs/python-graphviz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-graphviz'
 pkgname=python-graphviz
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 604137947acf2b7cd302f3f32e778c96a0f521f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 219/874] python-greenlet: rebuild for Python 3.8.

---
 srcpkgs/python-greenlet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-greenlet/template b/srcpkgs/python-greenlet/template
index d1e63ac7adb..b540e9a286b 100644
--- a/srcpkgs/python-greenlet/template
+++ b/srcpkgs/python-greenlet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-greenlet'
 pkgname=python-greenlet
 version=0.4.15
-revision=2
+revision=3
 wrksrc="greenlet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From c75b3ed338515fef098deb3e5b0d7a6afb7e4027 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 220/874] python-guessit: rebuild for Python 3.8.

---
 srcpkgs/python-guessit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-guessit/template b/srcpkgs/python-guessit/template
index 5029048a041..a962f14522f 100644
--- a/srcpkgs/python-guessit/template
+++ b/srcpkgs/python-guessit/template
@@ -1,7 +1,7 @@
 # Template file for 'python-guessit'
 pkgname=python-guessit
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="guessit-${version}"
 build_style=python-module

From be7acc08bc4f5ffb222fcebc23a391553273ece1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 221/874] python-h11: rebuild for Python 3.8.

---
 srcpkgs/python-h11/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-h11/template b/srcpkgs/python-h11/template
index 88040dfadec..b2e007533a7 100644
--- a/srcpkgs/python-h11/template
+++ b/srcpkgs/python-h11/template
@@ -1,7 +1,7 @@
 # Template file for 'python-h11'
 pkgname=python-h11
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=h11-${version}
 build_style=python-module

From bdf55bd416f8bc2ed44be6c4c54d162c18a8ea97 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 222/874] python-habanero: rebuild for Python 3.8.

---
 srcpkgs/python-habanero/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-habanero/template b/srcpkgs/python-habanero/template
index 86d66befc3d..a914f21ecb7 100644
--- a/srcpkgs/python-habanero/template
+++ b/srcpkgs/python-habanero/template
@@ -1,7 +1,7 @@
 # Template file for 'python-habanero'
 pkgname=python-habanero
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="habanero-${version}"
 build_style=python-module

From 9c07301e6c8b8cbc8282f2c49eee7ea5572650fb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 223/874] python3-hawkauthlib: rebuild for Python 3.8.

---
 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 fd7f1405790..1456fa7d814 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=2
+revision=3
 archs=noarch
 wrksrc="hawkauthlib-${version}"
 build_style=python3-module

From 66941ef99dc3f45dea432a38889d9aedcbc58e8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 224/874] python-hiredis: rebuild for Python 3.8.

---
 srcpkgs/python-hiredis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hiredis/template b/srcpkgs/python-hiredis/template
index 23694ae92d7..82a97d5eaf3 100644
--- a/srcpkgs/python-hiredis/template
+++ b/srcpkgs/python-hiredis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hiredis'
 pkgname=python-hiredis
 version=0.2.0
-revision=4
+revision=5
 wrksrc="hiredis-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 335237d6c8ffbf9d850fddc0047cb4ea28057efd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 225/874] python3-hkdf: rebuild for Python 3.8.

---
 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 fabc91ee974..0faaf05b5fe 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=1
+revision=2
 archs=noarch
 wrksrc="hkdf-${version}"
 build_style=python3-module

From fa28e1e2a5b4f298ee9762f0f595a5b1b16db0c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 226/874] python-hoedown: rebuild for Python 3.8.

---
 srcpkgs/python-hoedown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hoedown/template b/srcpkgs/python-hoedown/template
index a964fbbb709..4b82aba9afc 100644
--- a/srcpkgs/python-hoedown/template
+++ b/srcpkgs/python-hoedown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hoedown'
 pkgname=python-hoedown
 version=0.3.0
-revision=2
+revision=3
 wrksrc="hoedown-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 1b9ab7e23ce8f84563cdaac18cbe35d6b5b377eb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 227/874] python-hpack: rebuild for Python 3.8.

---
 srcpkgs/python-hpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hpack/template b/srcpkgs/python-hpack/template
index c69e91daa0e..ffbac313103 100644
--- a/srcpkgs/python-hpack/template
+++ b/srcpkgs/python-hpack/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hpack'
 pkgname=python-hpack
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hpack-${version}
 build_style=python-module

From b6095882129bc28d1a3eec0f996353011126ed10 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 228/874] python3-html2text: rebuild for Python 3.8.

---
 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 006f2a127ad..c74e236a053 100644
--- a/srcpkgs/python3-html2text/template
+++ b/srcpkgs/python3-html2text/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-html2text'
 pkgname=python3-html2text
 version=2019.9.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module

From 78741dc5f018f23c93acabc2cdd16c97d5e08012 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 229/874] python-html5-parser: rebuild for Python 3.8.

---
 srcpkgs/python-html5-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5-parser/template b/srcpkgs/python-html5-parser/template
index 130c5037e57..41bbd0ea157 100644
--- a/srcpkgs/python-html5-parser/template
+++ b/srcpkgs/python-html5-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5-parser'
 pkgname=python-html5-parser
 version=0.4.8
-revision=1
+revision=2
 wrksrc="html5-parser-${version}"
 build_style=python-module
 pycompile_module="html5_parser"

From f69efbb44a9aa15f6b7468ff70a20786ec1a04d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 230/874] python-html5lib: rebuild for Python 3.8.

---
 srcpkgs/python-html5lib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5lib/template b/srcpkgs/python-html5lib/template
index 81e683f7bcf..2565de64fd2 100644
--- a/srcpkgs/python-html5lib/template
+++ b/srcpkgs/python-html5lib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5lib'
 pkgname=python-html5lib
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="html5lib-${version}"
 build_style=python-module

From 6bd979521876c876eea2022ebe023cdbb30777c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 231/874] python-httmock: rebuild for Python 3.8.

---
 srcpkgs/python-httmock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httmock/template b/srcpkgs/python-httmock/template
index 61a60126936..e798b4fc1b3 100644
--- a/srcpkgs/python-httmock/template
+++ b/srcpkgs/python-httmock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httmock'
 pkgname=python-httmock
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="httmock-${version}"
 build_style=python-module

From 7f5b2e5c5738ca5824c255406195ff59f30f2c80 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 232/874] python-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httplib2/template b/srcpkgs/python-httplib2/template
index edcb6abf0c1..fe76a729328 100644
--- a/srcpkgs/python-httplib2/template
+++ b/srcpkgs/python-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httplib2'
 pkgname=python-httplib2
 version=0.13.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="httplib2-${version}"
 build_style=python-module

From 9bd4d3d3c99054f61ceb650933dcd9c5740d5ff0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 233/874] python3-humanize: rebuild for Python 3.8.

---
 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 c82c20fb0f2..d1011fb92e9 100644
--- a/srcpkgs/python3-humanize/template
+++ b/srcpkgs/python3-humanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-humanize'
 pkgname=python3-humanize
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="humanize-${version}"
 build_style=python3-module

From ead6f9504cd4015bc13944d58d676ef457b0fb34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 234/874] python-hyper-h2: rebuild for Python 3.8.

---
 srcpkgs/python-hyper-h2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyper-h2/template b/srcpkgs/python-hyper-h2/template
index 5dcf7ed1c4d..9e5eee3b69b 100644
--- a/srcpkgs/python-hyper-h2/template
+++ b/srcpkgs/python-hyper-h2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyper-h2'
 pkgname=python-hyper-h2
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyper-h2-${version}"
 build_style=python-module

From 8ac54f95c067c3f715c23a58d7f2b6d0683988cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 235/874] python-hyperframe: rebuild for Python 3.8.

---
 srcpkgs/python-hyperframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyperframe/template b/srcpkgs/python-hyperframe/template
index e4cea346f7e..6b544c2061c 100644
--- a/srcpkgs/python-hyperframe/template
+++ b/srcpkgs/python-hyperframe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperframe'
 pkgname=python-hyperframe
 version=5.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hyperframe-${version}
 build_style=python-module

From cb929edb0d026e58d2d6c7e6f9baeee9fedf523e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 236/874] python-hyperlink: rebuild for Python 3.8.

---
 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 1cc7aa0670a..945bf72ee59 100644
--- a/srcpkgs/python-hyperlink/template
+++ b/srcpkgs/python-hyperlink/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperlink'
 pkgname=python-hyperlink
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyperlink-${version}"
 build_style=python-module

From da7a9015ccf93b07d390988b03b1403702cfa14a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 237/874] python-hypothesis: rebuild for Python 3.8.

---
 srcpkgs/python-hypothesis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hypothesis/template b/srcpkgs/python-hypothesis/template
index f3eb931e410..de55593fc02 100644
--- a/srcpkgs/python-hypothesis/template
+++ b/srcpkgs/python-hypothesis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hypothesis'
 pkgname=python-hypothesis
 version=4.38.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="hypothesis-hypothesis-python-${version}"
 build_wrksrc=hypothesis-python

From f091030376534d6a6f7c625b82a8405350e7cdcd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 238/874] python-icalendar: rebuild for Python 3.8.

---
 srcpkgs/python-icalendar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-icalendar/template b/srcpkgs/python-icalendar/template
index b2129648ea6..be45f2d608d 100644
--- a/srcpkgs/python-icalendar/template
+++ b/srcpkgs/python-icalendar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-icalendar'
 pkgname=python-icalendar
 version=4.0.3
-revision=1
+revision=2
 wrksrc="icalendar-${version}"
 archs=noarch
 build_style=python-module

From 474626af886f96ef30849e5aca015775f7edfb8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 239/874] icdiff: rebuild for Python 3.8.

---
 srcpkgs/icdiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template
index 31cfc3e2354..396448b86f4 100644
--- a/srcpkgs/icdiff/template
+++ b/srcpkgs/icdiff/template
@@ -1,7 +1,7 @@
 # Template file for 'icdiff'
 pkgname=icdiff
 version=1.9.5
-revision=1
+revision=2
 wrksrc="${pkgname}-release-${version}"
 archs=noarch
 build_style=python-module

From 21e5ba4fadd590c9e0dd7afde206429c99c46c56 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 240/874] python-idna: rebuild for Python 3.8.

---
 srcpkgs/python-idna/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-idna/template b/srcpkgs/python-idna/template
index 4c6baefd41b..446a04da7d7 100644
--- a/srcpkgs/python-idna/template
+++ b/srcpkgs/python-idna/template
@@ -1,7 +1,7 @@
 # Template file for 'python-idna'
 pkgname=python-idna
 version=2.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-${version}"
 build_style=python-module

From a012eff0de75e8caab0be24964731b749fe6ad8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 241/874] python3-idna-ssl: rebuild for Python 3.8.

---
 srcpkgs/python3-idna-ssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-idna-ssl/template b/srcpkgs/python3-idna-ssl/template
index df953f4d0d9..0608fb7278c 100644
--- a/srcpkgs/python3-idna-ssl/template
+++ b/srcpkgs/python3-idna-ssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-idna-ssl'
 pkgname=python3-idna-ssl
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-ssl-${version}"
 build_style=python3-module

From ac112b7dfc3aadb93225736a4504f7965af29838 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 242/874] python3-ifaddr: rebuild for Python 3.8.

---
 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 37bc2bbaf73..683d76662a3 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ifaddr-${version}"
 build_style=python3-module

From 32d0218ef7a7a721759e4c421d70255f49b3cfd0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 243/874] python-imagesize: rebuild for Python 3.8.

---
 srcpkgs/python-imagesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-imagesize/template b/srcpkgs/python-imagesize/template
index ee231eb9f24..f64c86812b5 100644
--- a/srcpkgs/python-imagesize/template
+++ b/srcpkgs/python-imagesize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-imagesize'
 pkgname=python-imagesize
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="imagesize-${version}"
 build_style=python-module

From f0bf351c50949a7348409d8c132926c401dabf43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 244/874] python3-importlib_metadata: rebuild for Python 3.8.

---
 srcpkgs/python3-importlib_metadata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-importlib_metadata/template b/srcpkgs/python3-importlib_metadata/template
index 9acbe968e10..f88e9d9b780 100644
--- a/srcpkgs/python3-importlib_metadata/template
+++ b/srcpkgs/python3-importlib_metadata/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-importlib_metadata'
 pkgname=python3-importlib_metadata
 version=0.23
-revision=1
+revision=2
 archs=noarch
 wrksrc="importlib_metadata-${version}"
 build_style=python3-module

From 73cc1c05e8e0ccf9063a33dd203d70df2ab135ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 245/874] python-incremental: rebuild for Python 3.8.

---
 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 a1c07042365..70477e26866 100644
--- a/srcpkgs/python-incremental/template
+++ b/srcpkgs/python-incremental/template
@@ -1,7 +1,7 @@
 # Template file for 'python-incremental'
 pkgname=python-incremental
 version=17.5.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="incremental-${version}"
 build_style=python-module

From 82a10b837fff5c5ce2f37ede93dad161025a109c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 246/874] python-inotify: rebuild for Python 3.8.

---
 srcpkgs/python-inotify/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-inotify/template b/srcpkgs/python-inotify/template
index f8e26bcc415..64e48fd9330 100644
--- a/srcpkgs/python-inotify/template
+++ b/srcpkgs/python-inotify/template
@@ -1,7 +1,7 @@
 # Template file for 'python-inotify'
 pkgname=python-inotify
 version=0.9.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="pyinotify-${version}"
 build_style=python-module

From 70f558982c4846e9de5243694f048c7014c7089a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 247/874] python-iptools: rebuild for Python 3.8.

---
 srcpkgs/python-iptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iptools/template b/srcpkgs/python-iptools/template
index 599a85ccdba..3c53013fb9d 100644
--- a/srcpkgs/python-iptools/template
+++ b/srcpkgs/python-iptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iptools'
 pkgname=python-iptools
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9962727fd608ce59af5a55c73c8b4c3d0c17fe71 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 248/874] python3-ipython: rebuild for Python 3.8.

---
 srcpkgs/python3-ipython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template
index 63242f382db..2c08bad1e41 100644
--- a/srcpkgs/python3-ipython/template
+++ b/srcpkgs/python3-ipython/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-ipython'
 pkgname=python3-ipython
 version=7.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipython-${version}"
 build_style=python3-module

From ecafa2b5530001ac56b03e639dff4ae00027d1ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 249/874] python-ipython_genutils: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_genutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_genutils/template b/srcpkgs/python-ipython_genutils/template
index 9af9604ca00..d46a3b0b716 100644
--- a/srcpkgs/python-ipython_genutils/template
+++ b/srcpkgs/python-ipython_genutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_genutils'
 pkgname=python-ipython_genutils
 version=0.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="ipython_genutils-${version}"
 build_style=python-module

From 1349d0a55b00bc5b30629934ad23ae1ed8839d98 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 250/874] python-ipython_ipykernel: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_ipykernel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_ipykernel/template b/srcpkgs/python-ipython_ipykernel/template
index 5ddc333798a..ca17b58c006 100644
--- a/srcpkgs/python-ipython_ipykernel/template
+++ b/srcpkgs/python-ipython_ipykernel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_ipykernel'
 pkgname=python-ipython_ipykernel
 version=4.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipykernel-${version}"
 build_style=python-module

From 1b146320a422b57ba1db41491ccff040d9ee719d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 251/874] python3-irc: rebuild for Python 3.8.

---
 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 eea3a629128..714c11dc943 100644
--- a/srcpkgs/python3-irc/template
+++ b/srcpkgs/python3-irc/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-irc'
 pkgname=python3-irc
 version=17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="irc-${version}"
 build_style=python3-module

From e04c4f250fda964ab555eb6b636f701d995009e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 252/874] python-isbnlib: rebuild for Python 3.8.

---
 srcpkgs/python-isbnlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isbnlib/template b/srcpkgs/python-isbnlib/template
index 3e2f66c6b66..1cc46a060d6 100644
--- a/srcpkgs/python-isbnlib/template
+++ b/srcpkgs/python-isbnlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isbnlib'
 pkgname=python-isbnlib
 version=3.9.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="isbnlib-${version}"
 build_style=python-module

From 2debe6131c52d94acd065961f9ea9ae22176a34c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 253/874] python-iso-8601: rebuild for Python 3.8.

---
 srcpkgs/python-iso-8601/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iso-8601/template b/srcpkgs/python-iso-8601/template
index a483e55b0bd..a841866d439 100644
--- a/srcpkgs/python-iso-8601/template
+++ b/srcpkgs/python-iso-8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iso-8601'
 pkgname=python-iso-8601
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="iso-8601-${version}"
 build_style=python-module

From 8b4be7b5324ac1347d55cc4f4e9eaa552465beec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 254/874] python-isodate: rebuild for Python 3.8.

---
 srcpkgs/python-isodate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isodate/template b/srcpkgs/python-isodate/template
index b2a7eb46591..74e4e813e64 100644
--- a/srcpkgs/python-isodate/template
+++ b/srcpkgs/python-isodate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isodate'
 pkgname=python-isodate
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="isodate-${version}"
 build_style=python-module

From a9c9e144908d37411616dd357e9fdc7575aaa8c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 255/874] python-isort: rebuild for Python 3.8.

---
 srcpkgs/python-isort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isort/template b/srcpkgs/python-isort/template
index df7fcfbf2d2..cd8e43b69ea 100644
--- a/srcpkgs/python-isort/template
+++ b/srcpkgs/python-isort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isort'
 pkgname=python-isort
 version=4.3.21
-revision=1
+revision=2
 archs=noarch
 wrksrc="isort-${version}"
 build_style=python-module

From a81f38d5db390cc4ae2c6be89747bebd3f1f15dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 256/874] python-itsdangerous: rebuild for Python 3.8.

---
 srcpkgs/python-itsdangerous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-itsdangerous/template b/srcpkgs/python-itsdangerous/template
index d1d9234df88..6e6fe5dcb2b 100644
--- a/srcpkgs/python-itsdangerous/template
+++ b/srcpkgs/python-itsdangerous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-itsdangerous'
 pkgname=python-itsdangerous
 version=0.24
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 2d842da30a2a65a2405487fdd5929ca2a0555251 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 257/874] python-iwlib: rebuild for Python 3.8.

---
 srcpkgs/python-iwlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iwlib/template b/srcpkgs/python-iwlib/template
index 2c58d4c8d29..2f4149b4e92 100644
--- a/srcpkgs/python-iwlib/template
+++ b/srcpkgs/python-iwlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iwlib'
 pkgname=python-iwlib
 version=1.6.2
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="iwlib"

From c09cc84b06cf4332a02b0a826494a74c81409175 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 258/874] python-jedi: rebuild for Python 3.8.

---
 srcpkgs/python-jedi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jedi/template b/srcpkgs/python-jedi/template
index 136e6adbea4..a994f0e2861 100644
--- a/srcpkgs/python-jedi/template
+++ b/srcpkgs/python-jedi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jedi'
 pkgname=python-jedi
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 _parsover=0.5.0
 wrksrc="jedi-${version}"

From 235b9031c126ebf53355a5ef0c337423c0df1d95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 259/874] python3-jeepney: rebuild for Python 3.8.

---
 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 2ae308a6fc6..9c5c007aa17 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.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="jeepney-${version}"
 build_style=python3-module

From 4868c0871bc763937dd6b8573e91ee86064e0595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 260/874] python3-jellyfish: rebuild for Python 3.8.

---
 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 dec74539e3f..5d0a614c397 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.7.2
-revision=1
+revision=2
 wrksrc="jellyfish-${version}"
 build_style=python3-module
 pycompile_module="jellyfish"

From a9c225f19782a27d8e5e28a508ea0acc39991390 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 261/874] python-jmespath: rebuild for Python 3.8.

---
 srcpkgs/python-jmespath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jmespath/template b/srcpkgs/python-jmespath/template
index 47508a3a0c2..220f1a33c07 100644
--- a/srcpkgs/python-jmespath/template
+++ b/srcpkgs/python-jmespath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jmespath'
 pkgname=python-jmespath
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jmespath.py-${version}"
 build_style=python-module

From 30e8e2e1619bdf45652db8c6ecdd0e0a4fc90d8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 262/874] python3-josepy: rebuild for Python 3.8.

---
 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 6d6e4547d38..903bd7028ed 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="josepy-${version}"
 build_style=python3-module

From c06d36cf857257f3cf63a7e677498487d37168d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 263/874] python-jsonpointer: rebuild for Python 3.8.

---
 srcpkgs/python-jsonpointer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonpointer/template b/srcpkgs/python-jsonpointer/template
index ed865fbfcba..fd103d123aa 100644
--- a/srcpkgs/python-jsonpointer/template
+++ b/srcpkgs/python-jsonpointer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonpointer'
 pkgname=python-jsonpointer
 version=2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonpointer-${version}"
 build_style=python-module

From be483d0bbf53a22e23a3c2db3d77dc61bff17915 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 264/874] python-jsonrpclib: rebuild for Python 3.8.

---
 srcpkgs/python-jsonrpclib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonrpclib/template b/srcpkgs/python-jsonrpclib/template
index 7253607fe57..a245168a824 100644
--- a/srcpkgs/python-jsonrpclib/template
+++ b/srcpkgs/python-jsonrpclib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonrpclib'
 pkgname=python-jsonrpclib
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonrpclib-pelix-${version}"
 build_style=python-module

From 15ad75adf989474229acc1fdac0c5d5887528bd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 265/874] python-jsonschema: rebuild for Python 3.8.

---
 srcpkgs/python-jsonschema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonschema/template b/srcpkgs/python-jsonschema/template
index 63c30ce6863..326b5609d36 100644
--- a/srcpkgs/python-jsonschema/template
+++ b/srcpkgs/python-jsonschema/template
@@ -2,7 +2,7 @@
 pkgname=python-jsonschema
 reverts="3.0.2_1"
 version=2.6.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="jsonschema-${version}"
 build_style=python-module

From 8bf3797435c040a1682d5e3e4c6c41f650d82b34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 266/874] python-jupyter_client: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_client/template b/srcpkgs/python-jupyter_client/template
index ab5cd0c5b3c..6365dd9e175 100644
--- a/srcpkgs/python-jupyter_client/template
+++ b/srcpkgs/python-jupyter_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_client'
 pkgname=python-jupyter_client
 version=5.2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_client-${version}"
 build_style=python-module

From e732ed651c399cb8d7e96a618444e815bf86ce4b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 267/874] python3-jupyter_console: rebuild for Python 3.8.

---
 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 25b2eda4c2f..3837e5b3bbf 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_console-${version}"
 build_style=python3-module

From b264bc5200c6942b1507777e0bc169838cb6a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 268/874] python-jupyter_core: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_core/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_core/template b/srcpkgs/python-jupyter_core/template
index fcce4e0fe0b..f1629208e86 100644
--- a/srcpkgs/python-jupyter_core/template
+++ b/srcpkgs/python-jupyter_core/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_core'
 pkgname=python-jupyter_core
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_core-${version}"
 build_style=python-module

From 54845c515258535f8793ff37241d0daad10fcddc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 269/874] python-jupyter_ipywidgets: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_ipywidgets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_ipywidgets/template b/srcpkgs/python-jupyter_ipywidgets/template
index 3d511a25152..44570cf390a 100644
--- a/srcpkgs/python-jupyter_ipywidgets/template
+++ b/srcpkgs/python-jupyter_ipywidgets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_ipywidgets'
 pkgname=python-jupyter_ipywidgets
 version=7.4.2
-revision=1
+revision=2
 archs=noarch
 _widgetsnbextver=3.4.0
 wrksrc="ipywidgets-${version}"

From da9dc8f246174d7b5fed1a61f1b4bb127c2bc9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 270/874] python-jupyter_nbconvert: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbconvert/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbconvert/template b/srcpkgs/python-jupyter_nbconvert/template
index 57ac5cce23f..e6cdad7d21c 100644
--- a/srcpkgs/python-jupyter_nbconvert/template
+++ b/srcpkgs/python-jupyter_nbconvert/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbconvert'
 pkgname=python-jupyter_nbconvert
 version=5.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="nbconvert-${version}"
 build_style=python-module

From 8e126f65404eaa5a5b69bca1aa41b4be58abe4b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 271/874] python-jupyter_nbformat: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbformat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbformat/template b/srcpkgs/python-jupyter_nbformat/template
index 11098fd3f90..e2addc8866f 100644
--- a/srcpkgs/python-jupyter_nbformat/template
+++ b/srcpkgs/python-jupyter_nbformat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbformat'
 pkgname=python-jupyter_nbformat
 version=4.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="nbformat-${version}"
 build_style=python-module

From 3d7a11f09a2f159b9e42c935154654a47117f3a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 272/874] python-jupyter_notebook: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_notebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_notebook/template b/srcpkgs/python-jupyter_notebook/template
index c3f478c1fb4..4f6de0f642d 100644
--- a/srcpkgs/python-jupyter_notebook/template
+++ b/srcpkgs/python-jupyter_notebook/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_notebook'
 pkgname=python-jupyter_notebook
 version=5.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="notebook-${version}"
 build_style=python-module

From eab8a5bd67b168048f40a3d2fe199e073715a1b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 273/874] python-jupyter_qtconsole: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_qtconsole/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_qtconsole/template b/srcpkgs/python-jupyter_qtconsole/template
index f8f85534bbd..ea7f89a62af 100644
--- a/srcpkgs/python-jupyter_qtconsole/template
+++ b/srcpkgs/python-jupyter_qtconsole/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_qtconsole'
 pkgname=python-jupyter_qtconsole
 version=4.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="qtconsole-${version}"
 build_style=python-module

From 96c7c1f6f484f9a33a17b0213142b8a97a7c69e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 274/874] python-jupyter_widgetsnbextension: rebuild for Python
 3.8.

---
 srcpkgs/python-jupyter_widgetsnbextension/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_widgetsnbextension/template b/srcpkgs/python-jupyter_widgetsnbextension/template
index dacd88ccb4f..05e9c0d00a3 100644
--- a/srcpkgs/python-jupyter_widgetsnbextension/template
+++ b/srcpkgs/python-jupyter_widgetsnbextension/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_widgetsnbextension'
 pkgname=python-jupyter_widgetsnbextension
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="widgetsnbextension-${version}"
 build_style=python-module

From 6175c117f039e76b8fff45d549f50360a92742b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 275/874] python-kaptan: rebuild for Python 3.8.

---
 srcpkgs/python-kaptan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kaptan/template b/srcpkgs/python-kaptan/template
index 649eeec8568..6668b240008 100644
--- a/srcpkgs/python-kaptan/template
+++ b/srcpkgs/python-kaptan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kaptan'
 pkgname=python-kaptan
 version=0.5.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="kaptan-${version}"
 build_style=python-module

From 6668dcf37c32ef8390c8f45e6cd206d8478b963b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 276/874] python-keepalive: rebuild for Python 3.8.

---
 srcpkgs/python-keepalive/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keepalive/template b/srcpkgs/python-keepalive/template
index deb95a07236..50e1d7e6e78 100644
--- a/srcpkgs/python-keepalive/template
+++ b/srcpkgs/python-keepalive/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keepalive'
 pkgname=python-keepalive
 version=0.5
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9e9d4a781427bc1296f59529a4d83b4a1271c5e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 277/874] python-keyring: rebuild for Python 3.8.

---
 srcpkgs/python-keyring/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyring/template b/srcpkgs/python-keyring/template
index df1c21ee1be..2a87160b04d 100644
--- a/srcpkgs/python-keyring/template
+++ b/srcpkgs/python-keyring/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyring'
 pkgname=python-keyring
 version=18.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyring-${version}"
 build_style=python-module

From 8fea0f10f3e8aebfe92a9d090368b1cda777a405 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 278/874] python3-keyrings-alt: rebuild for Python 3.8.

---
 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 d5820535e54..ed09cfac4a7 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=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyrings.alt-${version}"
 build_style=python3-module

From 271539dc3ed1e21733c374ff971770403194a1d1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 279/874] python-keyutils: rebuild for Python 3.8.

---
 srcpkgs/python-keyutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyutils/template b/srcpkgs/python-keyutils/template
index d56ada0e30e..a72819e963a 100644
--- a/srcpkgs/python-keyutils/template
+++ b/srcpkgs/python-keyutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyutils'
 pkgname=python-keyutils
 version=0.6
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="keyutils"
 hostmakedepends="python-setuptools python3-setuptools"

From 0556a11defcdebd2c4319e286451ce3f45f87ebd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 280/874] python-kitchen: rebuild for Python 3.8.

---
 srcpkgs/python-kitchen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kitchen/template b/srcpkgs/python-kitchen/template
index 2bbd68c13c9..68a46986de9 100644
--- a/srcpkgs/python-kitchen/template
+++ b/srcpkgs/python-kitchen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kitchen'
 pkgname=python-kitchen
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="kitchen-${version}"
 build_style=python-module

From fe5070b00515733fcafbeebc62a10ba2029b40db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 281/874] python-kiwisolver: rebuild for Python 3.8.

---
 srcpkgs/python-kiwisolver/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kiwisolver/template b/srcpkgs/python-kiwisolver/template
index 072bd5af038..67f0805aa51 100644
--- a/srcpkgs/python-kiwisolver/template
+++ b/srcpkgs/python-kiwisolver/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kiwisolver'
 pkgname=python-kiwisolver
 version=1.0.1
-revision=2
+revision=3
 wrksrc="kiwisolver-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From d1c550f6959162ec91e7bb39c54ecdd1d5b7c0ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 282/874] python-lazy-object-proxy: rebuild for Python 3.8.

---
 srcpkgs/python-lazy-object-proxy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lazy-object-proxy/template b/srcpkgs/python-lazy-object-proxy/template
index 07efb7b4777..ab2c6dce05c 100644
--- a/srcpkgs/python-lazy-object-proxy/template
+++ b/srcpkgs/python-lazy-object-proxy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lazy-object-proxy'
 pkgname=python-lazy-object-proxy
 version=1.3.1
-revision=3
+revision=4
 wrksrc="lazy-object-proxy-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e5c9a0cf8e6e0714fba4433b9deb1aaf40d43ce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 283/874] python-ldap: rebuild for Python 3.8.

---
 srcpkgs/python-ldap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap/template b/srcpkgs/python-ldap/template
index 7770baa8774..e3efc2fc6b3 100644
--- a/srcpkgs/python-ldap/template
+++ b/srcpkgs/python-ldap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap'
 pkgname=python-ldap
 version=3.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="ldap ldapurl.py ldif.py slapdtest"
 hostmakedepends="python-setuptools python3-setuptools"

From dca16bc247cccf1bc7020afca5594d857514100a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 284/874] python-ldap3: rebuild for Python 3.8.

---
 srcpkgs/python-ldap3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap3/template b/srcpkgs/python-ldap3/template
index 676251a85ff..e8e4cade72b 100644
--- a/srcpkgs/python-ldap3/template
+++ b/srcpkgs/python-ldap3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap3'
 pkgname=python-ldap3
 version=2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ldap3-${version}"
 build_style=python-module

From 8f3e1b0bf64fb527d029fec15229e079f326c373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 285/874] python3-libevdev: rebuild for Python 3.8.

---
 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 0a79893726c..f0295cdee9b 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.8
-revision=1
+revision=2
 _githash=1827bebcf789adee8492cbfcc7cf8d56059a42a4
 wrksrc="python-libevdev-${version}-${_githash}"
 build_style=python3-module

From a5b674c4366c36182e29f21b8071faff59006106 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 286/874] libsmbios: rebuild for Python 3.8.

---
 srcpkgs/libsmbios/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsmbios/template b/srcpkgs/libsmbios/template
index 31d8ffda65f..161cb79deb9 100644
--- a/srcpkgs/libsmbios/template
+++ b/srcpkgs/libsmbios/template
@@ -1,7 +1,7 @@
 # Template file for 'libsmbios'
 pkgname=libsmbios
 version=2.4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--sbindir=/usr/bin --disable-static"
 hostmakedepends="automake doxygen gettext-devel help2man libtool pkg-config"

From 7762c8392d1a03ae7a320bdec0b5402b7147d0b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 287/874] python-libtmux: rebuild for Python 3.8.

---
 srcpkgs/python-libtmux/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-libtmux/template b/srcpkgs/python-libtmux/template
index 36fa7ca7ffd..20f43af5f7d 100644
--- a/srcpkgs/python-libtmux/template
+++ b/srcpkgs/python-libtmux/template
@@ -1,7 +1,7 @@
 # Template file for 'python-libtmux'
 pkgname=python-libtmux
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="libtmux-${version}"
 build_style=python-module

From 16a2a1b8ba0ad9f9032d52092294e8a39041bba2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 288/874] python-llfuse: rebuild for Python 3.8.

---
 srcpkgs/python-llfuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-llfuse/template b/srcpkgs/python-llfuse/template
index 203c5e2fd84..b453c67e91d 100644
--- a/srcpkgs/python-llfuse/template
+++ b/srcpkgs/python-llfuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-llfuse'
 pkgname=python-llfuse
 version=1.3.6
-revision=1
+revision=2
 wrksrc="llfuse-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pkg-config"

From ae7f34ffc994fc4606c9209683fae6625f3e781e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 289/874] python-lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lockfile/template b/srcpkgs/python-lockfile/template
index 4c4612ed144..778cecba7e9 100644
--- a/srcpkgs/python-lockfile/template
+++ b/srcpkgs/python-lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lockfile'
 pkgname=python-lockfile
 version=0.12.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="lockfile-${version}"
 build_style=python-module

From 5fd2f78e26b399ed936b12f51886dae3a8d35cb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 290/874] python-logfury: rebuild for Python 3.8.

---
 srcpkgs/python-logfury/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-logfury/template b/srcpkgs/python-logfury/template
index 4b1c435e34a..1b52d2d7fdf 100644
--- a/srcpkgs/python-logfury/template
+++ b/srcpkgs/python-logfury/template
@@ -1,7 +1,7 @@
 # Template file for 'python-logfury'
 pkgname=python-logfury
 version=0.1.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="logfury-${version}"
 build_style=python-module

From 747dc28bedc27e7b5c8738113573012f545333a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 291/874] python-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lxml/template b/srcpkgs/python-lxml/template
index c3aeabfbf1b..1a6a3ac9113 100644
--- a/srcpkgs/python-lxml/template
+++ b/srcpkgs/python-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lxml'
 pkgname=python-lxml
 version=4.4.1
-revision=1
+revision=2
 wrksrc="lxml-lxml-${version}"
 build_style=python-module
 pycompile_module="lxml"

From ebc274c0463316f63fe99e5df0c704e3d324c885 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 292/874] python-lz4: rebuild for Python 3.8.

---
 srcpkgs/python-lz4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lz4/template b/srcpkgs/python-lz4/template
index dab8e8ed542..76a2e800e38 100644
--- a/srcpkgs/python-lz4/template
+++ b/srcpkgs/python-lz4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lz4'
 pkgname=python-lz4
 version=2.1.6
-revision=2
+revision=3
 wrksrc="lz4-${version}"
 build_style=python-module
 pycompile_module="lz4"

From 8eb3f4d6193b25ae716fa2fdfae1f929deb65a91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 293/874] python3-macaroons: rebuild for Python 3.8.

---
 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 d44100c20f2..420f5aff043 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=1
+revision=2
 archs=noarch
 wrksrc="pymacaroons-${version}"
 build_style=python3-module

From 437e300b76670db404728daad9f6224630daaa3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 294/874] python3-macholib: rebuild for Python 3.8.

---
 srcpkgs/python3-macholib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-macholib/template b/srcpkgs/python3-macholib/template
index a2738f57eb0..525b5f7106b 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.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="macholib-${version}"
 build_style=python3-module

From b08f229d26f5b2c915caabe213234afc1e4002e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 295/874] python-magic: rebuild for Python 3.8.

---
 srcpkgs/python-magic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-magic/template b/srcpkgs/python-magic/template
index 98e3c0802ab..5a59efa4808 100644
--- a/srcpkgs/python-magic/template
+++ b/srcpkgs/python-magic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-magic'
 pkgname=python-magic
 version=0.4.15
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="magic.py"

From c597fee1945d8f994f591622074acf3670a81484 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 296/874] python-marisa-trie: rebuild for Python 3.8.

---
 srcpkgs/python-marisa-trie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-marisa-trie/template b/srcpkgs/python-marisa-trie/template
index bb09c933335..5e46b686ace 100644
--- a/srcpkgs/python-marisa-trie/template
+++ b/srcpkgs/python-marisa-trie/template
@@ -1,7 +1,7 @@
 # Template file for 'python-marisa-trie'
 pkgname=python-marisa-trie
 version=0.7.5
-revision=2
+revision=3
 wrksrc="marisa-trie-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 5366314fc7ba3b340ccf5b4658edff33f5ec148a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 297/874] python-markdown2: rebuild for Python 3.8.

---
 srcpkgs/python-markdown2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-markdown2/template b/srcpkgs/python-markdown2/template
index 2d352ba029d..e9068f64202 100644
--- a/srcpkgs/python-markdown2/template
+++ b/srcpkgs/python-markdown2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-markdown2'
 pkgname=python-markdown2
 version=2.3.8
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="markdown2"

From b56d284bcbb50ddece287bde845145e6481e4d39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 298/874] python3-matplotlib: rebuild for Python 3.8.

---
 srcpkgs/python3-matplotlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template
index 857ba17cacf..be02817a4d3 100644
--- a/srcpkgs/python3-matplotlib/template
+++ b/srcpkgs/python3-matplotlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-matplotlib'
 pkgname=python3-matplotlib
 version=3.1.1
-revision=1
+revision=2
 wrksrc="matplotlib-${version}"
 build_style=python3-module
 pycompile_module="matplotlib mpl_toolkits pylab.py"

From 8b3780e8f6f50712735239defc569952763e8894 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 299/874] python-mccabe: rebuild for Python 3.8.

---
 srcpkgs/python-mccabe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mccabe/template b/srcpkgs/python-mccabe/template
index b6a01929540..1e2ed6328b8 100644
--- a/srcpkgs/python-mccabe/template
+++ b/srcpkgs/python-mccabe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mccabe'
 pkgname=python-mccabe
 version=0.6.1
-revision=2
+revision=3
 archs=noarch
 replaces="mccabe>=0"
 wrksrc="mccabe-${version}"

From 954d38992e9a83e3214b79375b895ee1072db4e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 300/874] python-mechanize: rebuild for Python 3.8.

---
 srcpkgs/python-mechanize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mechanize/template b/srcpkgs/python-mechanize/template
index c5b2b5789a7..ca29bbd0d23 100644
--- a/srcpkgs/python-mechanize/template
+++ b/srcpkgs/python-mechanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mechanize'
 pkgname=python-mechanize
 version=0.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="mechanize-${version}"
 build_style=python-module

From e8762f4af80ad5b1cb6a41af3183141ec903485f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 301/874] python3-minidb: rebuild for Python 3.8.

---
 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 50490794600..140964b7a8a 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.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="minidb-${version}"
 build_style=python3-module

From 93febdb59f89cf4939f3684acd832f879fc774d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 302/874] python-miniupnpc: rebuild for Python 3.8.

---
 srcpkgs/python-miniupnpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-miniupnpc/template b/srcpkgs/python-miniupnpc/template
index 500c217c78e..f7892bab073 100644
--- a/srcpkgs/python-miniupnpc/template
+++ b/srcpkgs/python-miniupnpc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-miniupnpc'
 pkgname=python-miniupnpc
 version=2.0.2
-revision=2
+revision=3
 wrksrc="${pkgname#python-}-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From ab280bf26207a66e5e3f418768bf3358cc2c76ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 303/874] python-mistune: rebuild for Python 3.8.

---
 srcpkgs/python-mistune/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mistune/template b/srcpkgs/python-mistune/template
index 0ee8dfde5b1..ef5c054ba75 100644
--- a/srcpkgs/python-mistune/template
+++ b/srcpkgs/python-mistune/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mistune'
 pkgname=python-mistune
 version=0.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="mistune-${version}"
 build_style=python-module

From 05abf67487f6ac161862195dfb2069fade248fbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 304/874] python3-more-itertools: rebuild for Python 3.8.

---
 srcpkgs/python3-more-itertools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-more-itertools/template b/srcpkgs/python3-more-itertools/template
index b089992f84e..a765da98495 100644
--- a/srcpkgs/python3-more-itertools/template
+++ b/srcpkgs/python3-more-itertools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-more-itertools'
 pkgname=python3-more-itertools
 version=7.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python3-module

From efcbd7f439e04ca5dc43be057047c93f1051b5cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 305/874] python-mpd2: rebuild for Python 3.8.

---
 srcpkgs/python-mpd2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template
index 682d9a85f5e..0389f8c2a28 100644
--- a/srcpkgs/python-mpd2/template
+++ b/srcpkgs/python-mpd2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpd2'
 pkgname=python-mpd2
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mpd"

From 507a89e7a29ba5dd81f66830577542bb3a098780 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 306/874] python3-mpi4py: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-mpi4py/template | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/python3-mpi4py/template b/srcpkgs/python3-mpi4py/template
index 94a83b688f2..8f9e76867cc 100644
--- a/srcpkgs/python3-mpi4py/template
+++ b/srcpkgs/python3-mpi4py/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpi4py'
 pkgname=python3-mpi4py
 version=3.0.2
-revision=1
+revision=2
 wrksrc="mpi4py-${version}"
 build_style=python3-module
 pycompile_module="mpi4py"
@@ -15,6 +15,12 @@ homepage="https://bitbucket.org/mpi4py/mpi4py"
 distfiles="$PYPI_SITE/m/mpi4py/mpi4py-${version}.tar.gz"
 checksum=f8d629d1e3e3b7b89cb99d0e3bc5505e76cc42089829807950d5c56606ed48e0
 
+post_extract() {
+	# recythonize
+	rm src/mpi4py/include/mpi4py/mpi4py.MPI.h \
+		src/mpi4py/include/mpi4py/mpi4py.MPI_api.h \
+		src/mpi4py.MPI.c
+}
 post_install() {
 	vlicense LICENSE.rst
 }

From d71d04b6dbfad4ce9460041fe001aab7c4cab301 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 307/874] python-mpmath: rebuild for Python 3.8.

---
 srcpkgs/python-mpmath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpmath/template b/srcpkgs/python-mpmath/template
index b0a38c01514..8fd4873dd62 100644
--- a/srcpkgs/python-mpmath/template
+++ b/srcpkgs/python-mpmath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpmath'
 pkgname=python-mpmath
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="mpmath-${version}"
 build_style=python-module

From f050643cc3d8a1927b2b43a4d6bc3a47fce265d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 308/874] python3-mpv: rebuild for Python 3.8.

---
 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 2780c02610b..1910a4d231d 100644
--- a/srcpkgs/python3-mpv/template
+++ b/srcpkgs/python3-mpv/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpv'
 pkgname=python3-mpv
 version=0.3.9
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-mpv-${version}"
 build_style=python3-module

From 076ab982ba68fae19b6a637c3190d501b6f11afb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 309/874] python-msgpack: rebuild for Python 3.8.

---
 srcpkgs/python-msgpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-msgpack/template b/srcpkgs/python-msgpack/template
index 395d854d638..59571d6a208 100644
--- a/srcpkgs/python-msgpack/template
+++ b/srcpkgs/python-msgpack/template
@@ -2,7 +2,7 @@
 pkgname=python-msgpack
 reverts="0.6.0_1"
 version=0.5.6
-revision=3
+revision=4
 wrksrc="msgpack-${version}"
 build_style=python-module
 pycompile_module="msgpack"

From c0b498d4aabae1c0cc1564a796b43c28045b08f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 310/874] python3-msoffcrypto-tool: rebuild for Python 3.8.

---
 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 5996d3bf355..d1b369fc773 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=4.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="msoffcrypto-tool-${version}"
 build_style=python3-module

From a02ae9dc7e657d6823c09d222a46aaaad0b52e6e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 311/874] python-mtranslate: rebuild for Python 3.8.

---
 srcpkgs/python-mtranslate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mtranslate/template b/srcpkgs/python-mtranslate/template
index d56fa18f0f0..992c7b76fe9 100644
--- a/srcpkgs/python-mtranslate/template
+++ b/srcpkgs/python-mtranslate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mtranslate'
 pkgname=python-mtranslate
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="mtranslate-${version}"
 build_style=python-module

From 1db5126bddf0129431159c083c0e8c7feeda0e24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 312/874] python3-multidict: rebuild for Python 3.8.

---
 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 82888db842f..62054db71f1 100644
--- a/srcpkgs/python3-multidict/template
+++ b/srcpkgs/python3-multidict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-multidict'
 pkgname=python3-multidict
 version=4.5.2
-revision=2
+revision=3
 wrksrc="multidict-${version}"
 build_style=python3-module
 pycompile_module="multidict"

From db397601599182d62444486443fe7887f1bf0869 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 313/874] python3-munkres: rebuild for Python 3.8.

---
 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 15767afe3fe..d0d0a013e80 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python3-module

From f6bec8102ac4a1433f716928258d680f0546e9f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 314/874] python-musicbrainzngs: rebuild for Python 3.8.

---
 srcpkgs/python-musicbrainzngs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-musicbrainzngs/template b/srcpkgs/python-musicbrainzngs/template
index 588c25f7cd8..3d738f0c3c0 100644
--- a/srcpkgs/python-musicbrainzngs/template
+++ b/srcpkgs/python-musicbrainzngs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-musicbrainzngs'
 pkgname=python-musicbrainzngs
 version=0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="musicbrainzngs-${version}"
 build_style="python-module"

From 59d602d19ea627b5ddd3ac33170326df511f1b28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 315/874] python3-musicpd: rebuild for Python 3.8.

---
 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 3328b2f4bbf..8c6ba2fb451 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=1
+revision=2
 archs=noarch
 wrksrc="python-musicpd-${version}"
 build_style=python3-module

From e4271deae6b4b0258165475e34a0174f837576d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 316/874] mutagen: rebuild for Python 3.8.

---
 srcpkgs/mutagen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mutagen/template b/srcpkgs/mutagen/template
index cbf05ea8583..8b24cc82dc8 100644
--- a/srcpkgs/mutagen/template
+++ b/srcpkgs/mutagen/template
@@ -1,7 +1,7 @@
 # Template file for 'mutagen'
 pkgname=mutagen
 version=1.42.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mutagen"

From c726c7e86676ccc5612045570a6821438d6541cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 317/874] python-mygpoclient: rebuild for Python 3.8.

---
 srcpkgs/python-mygpoclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mygpoclient/template b/srcpkgs/python-mygpoclient/template
index 3f85c72cc0c..ffad63a70a1 100644
--- a/srcpkgs/python-mygpoclient/template
+++ b/srcpkgs/python-mygpoclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mygpoclient'
 pkgname=python-mygpoclient
 version=1.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="mygpoclient-${version}"
 build_style=python-module

From 1d17c7a2672083ac8c194b767f1be1d8778d6f42 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 318/874] python3-mypy: rebuild for Python 3.8.

---
 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 37ecd732c06..564c0a4d47c 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.730
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy-${version}"
 build_style=python3-module

From d44ba12caf9958f6f6d708b0e5061d3ca01990e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 319/874] python3-mypy_extensions: rebuild for Python 3.8.

---
 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 2761924248e..25de48ea141 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy_extensions-${version}"
 build_style=python3-module

From 8c03f1eb83b224187a7b0fb11b5c780c96875438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 320/874] python-mysqlclient: rebuild for Python 3.8.

---
 srcpkgs/python-mysqlclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mysqlclient/template b/srcpkgs/python-mysqlclient/template
index 43fed28d4f0..079666a6dab 100644
--- a/srcpkgs/python-mysqlclient/template
+++ b/srcpkgs/python-mysqlclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mysqlclient'
 pkgname=python-mysqlclient
 version=1.3.14
-revision=2
+revision=3
 wrksrc="mysqlclient-${version}"
 build_style=python-module
 pycompile_module="MySQLdb _mysql_exceptions.py"

From 8b80cedc0b4331f2c1827c959c67be32d904a6b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 321/874] python3-nacl: rebuild for Python 3.8.

---
 srcpkgs/python3-nacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-nacl/template b/srcpkgs/python3-nacl/template
index 5dd6a71ad6a..b59ea0196ac 100644
--- a/srcpkgs/python3-nacl/template
+++ b/srcpkgs/python3-nacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-nacl'
 pkgname=python3-nacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python3-module
 pycompile_module="nacl"

From 4b93d8f922559d3f9f9693969307cdb0dedd22c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 322/874] python-namedlist: rebuild for Python 3.8.

---
 srcpkgs/python-namedlist/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-namedlist/template b/srcpkgs/python-namedlist/template
index 4c6e6f1f3d5..75626b9f6d5 100644
--- a/srcpkgs/python-namedlist/template
+++ b/srcpkgs/python-namedlist/template
@@ -1,7 +1,7 @@
 # Template file for 'python-namedlist'
 pkgname=python-namedlist
 version=1.7
-revision=5
+revision=6
 archs=noarch
 wrksrc="namedlist-${version}"
 build_style=python-module

From 643225c4205051b03e6b58dd88dd0fe79a960880 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 323/874] python-natsort: rebuild for Python 3.8.

---
 srcpkgs/python-natsort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-natsort/template b/srcpkgs/python-natsort/template
index 754ac50c419..7101e297aad 100644
--- a/srcpkgs/python-natsort/template
+++ b/srcpkgs/python-natsort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-natsort'
 pkgname=python-natsort
 version=6.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="natsort-${version}"
 build_style=python-module

From 1b4401089b676f8d76d5cbdf86f7cff95a90063f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 324/874] python-nbxmpp: rebuild for Python 3.8.

---
 srcpkgs/python-nbxmpp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nbxmpp/template b/srcpkgs/python-nbxmpp/template
index 4952ee1e102..8c39a93bca7 100644
--- a/srcpkgs/python-nbxmpp/template
+++ b/srcpkgs/python-nbxmpp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nbxmpp'
 pkgname=python-nbxmpp
 version=0.6.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 1ee192bdc19afbca9bbbc456945aaed8e882dc3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 325/874] python-ndg_httpsclient: rebuild for Python 3.8.

---
 srcpkgs/python-ndg_httpsclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ndg_httpsclient/template b/srcpkgs/python-ndg_httpsclient/template
index 908d7137391..54b653f68a9 100644
--- a/srcpkgs/python-ndg_httpsclient/template
+++ b/srcpkgs/python-ndg_httpsclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ndg_httpsclient'
 pkgname=python-ndg_httpsclient
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ndg_httpsclient-${version}"
 build_style=python-module

From 37b5c7920c617c4f55d5abe58df690c621598a93 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 326/874] python3-neovim: rebuild for Python 3.8.

---
 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 44068f17b66..2730cd1b92b 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.3.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="pynvim-${version}"
 build_style="python3-module"

From 8136ec791e98badf101712f4f44830a6721d4849 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 327/874] python-netaddr: rebuild for Python 3.8.

---
 srcpkgs/python-netaddr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netaddr/template b/srcpkgs/python-netaddr/template
index 851095a3c7c..20cc1c93134 100644
--- a/srcpkgs/python-netaddr/template
+++ b/srcpkgs/python-netaddr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netaddr'
 pkgname=python-netaddr
 version=0.7.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="netaddr-${version}"
 build_style=python-module

From ebe247f557b410a62febae438785f8f011964023 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 328/874] python-netifaces: rebuild for Python 3.8.

---
 srcpkgs/python-netifaces/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netifaces/template b/srcpkgs/python-netifaces/template
index b8d6e505879..760f657aaba 100644
--- a/srcpkgs/python-netifaces/template
+++ b/srcpkgs/python-netifaces/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netifaces'
 pkgname=python-netifaces
 version=0.10.9
-revision=1
+revision=2
 wrksrc="netifaces-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 07d0e05094764c4ef127de2a4d489537d8ab5708 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 329/874] python3-networkx: rebuild for Python 3.8.

---
 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 eae29038d94..84acd3e929c 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.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="networkx-${version}"
 build_style=python3-module

From 8a3aeb59a75fbf1b7f0394b94c325ef8827b6b5d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 330/874] python-nose: rebuild for Python 3.8.

---
 srcpkgs/python-nose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose/template b/srcpkgs/python-nose/template
index c9fbe9d28d3..f2cd7fe5c3f 100644
--- a/srcpkgs/python-nose/template
+++ b/srcpkgs/python-nose/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose'
 pkgname=python-nose
 version=1.3.7
-revision=3
+revision=4
 archs=noarch
 wrksrc="nose-${version}"
 build_style=python-module

From f86abdbaaaa9e7e8236c4d39cd7e46a733425805 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 331/874] python-nose2: rebuild for Python 3.8.

---
 srcpkgs/python-nose2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose2/template b/srcpkgs/python-nose2/template
index a9ddf5969a1..058abbd4253 100644
--- a/srcpkgs/python-nose2/template
+++ b/srcpkgs/python-nose2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose2'
 pkgname=python-nose2
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 18b92c10ef3291636c1e7e28d721c5e994bf6302 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 332/874] python-npyscreen: rebuild for Python 3.8.

---
 srcpkgs/python-npyscreen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-npyscreen/template b/srcpkgs/python-npyscreen/template
index 0457fa1aaed..2223850f22e 100644
--- a/srcpkgs/python-npyscreen/template
+++ b/srcpkgs/python-npyscreen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-npyscreen'
 pkgname=python-npyscreen
 version=4.10.5.1
-revision=1
+revision=2
 wrksrc="npyscreen-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 9ea98fac2c37960db9a7b76cea2be115e8a2bed7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 333/874] python-ntplib: rebuild for Python 3.8.

---
 srcpkgs/python-ntplib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ntplib/template b/srcpkgs/python-ntplib/template
index 81bac24971e..0582fb326c1 100644
--- a/srcpkgs/python-ntplib/template
+++ b/srcpkgs/python-ntplib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ntplib'
 pkgname=python-ntplib
 version=0.3.3
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 wrksrc="ntplib-${version}"

From 42e7c3606ad17794721afef48ff01de438abbfde Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 334/874] python-numexpr: rebuild for Python 3.8.

---
 srcpkgs/python-numexpr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numexpr/template b/srcpkgs/python-numexpr/template
index 1db40092411..baf91175a33 100644
--- a/srcpkgs/python-numexpr/template
+++ b/srcpkgs/python-numexpr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numexpr'
 pkgname=python-numexpr
 version=2.7.0
-revision=1
+revision=2
 wrksrc="numexpr-${version}"
 build_style=python-module
 pycompile_module="numexpr"

From 30d9e4a8b4a096dfdf5ebfa58ffcadefb1dc1208 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 335/874] python3-numpy: rebuild for Python 3.8.

---
 srcpkgs/python3-numpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-numpy/template b/srcpkgs/python3-numpy/template
index c4c1936cc0d..f5e8ce2cc32 100644
--- a/srcpkgs/python3-numpy/template
+++ b/srcpkgs/python3-numpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-numpy'
 pkgname=python3-numpy
 version=1.17.2
-revision=1
+revision=2
 wrksrc="numpy-${version}"
 build_style=python3-module
 pycompile_module="numpy"

From 0172497dfdbc4c61b890a5cb33fdf7a4c4f8d99a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 336/874] python-numpy-stl: rebuild for Python 3.8.

---
 srcpkgs/python-numpy-stl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numpy-stl/template b/srcpkgs/python-numpy-stl/template
index 3eed838e4f6..cce1a8ead1f 100644
--- a/srcpkgs/python-numpy-stl/template
+++ b/srcpkgs/python-numpy-stl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numpy-stl'
 pkgname=python-numpy-stl
 version=2.10.1
-revision=1
+revision=2
 wrksrc="numpy-stl-v${version}"
 build_style=python-module
 pycompile_module="stl"

From f24b29a48d74aeaddb7b697a5daffdddbd861096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 337/874] python-oauth2client: rebuild for Python 3.8.

---
 srcpkgs/python-oauth2client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauth2client/template b/srcpkgs/python-oauth2client/template
index fd135e4e98f..2398adba276 100644
--- a/srcpkgs/python-oauth2client/template
+++ b/srcpkgs/python-oauth2client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauth2client'
 pkgname=python-oauth2client
 version=4.1.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 4c0ff2a063a36adf86c97b9d4c835ca20b5edfc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 338/874] python-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauthlib/template b/srcpkgs/python-oauthlib/template
index 5bbaa7df29b..036f1b31c92 100644
--- a/srcpkgs/python-oauthlib/template
+++ b/srcpkgs/python-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauthlib'
 pkgname=python-oauthlib
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 661bc27cfe08965221daa2747362d72e4fc27178 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 339/874] python-olefile: rebuild for Python 3.8.

---
 srcpkgs/python-olefile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-olefile/template b/srcpkgs/python-olefile/template
index 4346cfcf667..803d7b67cd8 100644
--- a/srcpkgs/python-olefile/template
+++ b/srcpkgs/python-olefile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-olefile'
 pkgname=python-olefile
 version=0.46
-revision=1
+revision=2
 archs=noarch
 wrksrc="olefile-${version}"
 build_style=python-module

From 81ad48cc99baa98fff2bb93d2c9ddbfe5bd36422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 340/874] python3-oletools: rebuild for Python 3.8.

---
 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 af9a91ff273..a4fda46427b 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.54.2b
-revision=1
+revision=2
 archs=noarch
 wrksrc="oletools-${version}"
 build_style=python3-module

From 0ae1454dacdb40d36d6c46872241d8b7f943ac15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 341/874] openrazer-meta: rebuild for Python 3.8.

---
 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 d4bd24878b2..112cb9e900b 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=1
+revision=2
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 827b1a86d790e29df3f5448f95b7d7583439ebc7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 342/874] python-openssl: rebuild for Python 3.8.

---
 srcpkgs/python-openssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-openssl/template b/srcpkgs/python-openssl/template
index 94bccaa166f..8aabda074fa 100644
--- a/srcpkgs/python-openssl/template
+++ b/srcpkgs/python-openssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-openssl'
 pkgname=python-openssl
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyOpenSSL-${version}"
 build_style=python-module

From 0b35d1d0b8e9ec0f17cb71edb12538b78cf15fa9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 343/874] python3-orocos-kdl: rebuild for Python 3.8.

---
 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 df3e27d5e7b..85b573b2fa4 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=1
+revision=2
 wrksrc=orocos_kinematics_dynamics-${version}
 build_wrksrc=python_orocos_kdl
 build_style=cmake

From 1f599cbc677804bd62252474063a3f44bab1963f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 344/874] python3-owm: rebuild for Python 3.8.

---
 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 d51e01831e6..acdb960ab45 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=1
+revision=2
 wrksrc="pyowm-${version}"
 build_style=python3-module
 pycompile_module="pyowm"

From 04d5ca1141107a7e08a15eccec26eae0cef6ddfc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 345/874] python-packaging: rebuild for Python 3.8.

---
 srcpkgs/python-packaging/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-packaging/template b/srcpkgs/python-packaging/template
index 505631bb29c..06042d12b90 100644
--- a/srcpkgs/python-packaging/template
+++ b/srcpkgs/python-packaging/template
@@ -1,7 +1,7 @@
 # Template file for 'python-packaging'
 pkgname=python-packaging
 version=19.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="packaging-${version}"
 build_style=python-module

From 3d4f635d1909bcc10be550a6ba92c93bab657d24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 346/874] python-pam: rebuild for Python 3.8.

---
 srcpkgs/python-pam/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pam/template b/srcpkgs/python-pam/template
index e696a05ae7f..28c22cfd6ea 100644
--- a/srcpkgs/python-pam/template
+++ b/srcpkgs/python-pam/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pam'
 pkgname=python-pam
 version=1.8.4
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="pam.py"

From 7906adb846a053b93372b360401c778862703de5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 347/874] python3-pandas: rebuild for Python 3.8.

---
 srcpkgs/python3-pandas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pandas/template b/srcpkgs/python3-pandas/template
index ad282b4d5d4..10f9d5a77d9 100644
--- a/srcpkgs/python3-pandas/template
+++ b/srcpkgs/python3-pandas/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pandas'
 pkgname=python3-pandas
 version=0.25.1
-revision=1
+revision=2
 wrksrc="pandas-${version}"
 build_style=python3-module
 pycompile_module="pandas"

From 5f63764964faf4b0d244098f5f64ba1225e14c5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 348/874] python-pandocfilters: rebuild for Python 3.8.

---
 srcpkgs/python-pandocfilters/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pandocfilters/template b/srcpkgs/python-pandocfilters/template
index a7a3d442052..8650d20256f 100644
--- a/srcpkgs/python-pandocfilters/template
+++ b/srcpkgs/python-pandocfilters/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pandocfilters'
 pkgname=python-pandocfilters
 version=1.4.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="pandocfilters-${version}"
 build_style=python-module

From cedefda1104de9c58b20c6b7e1d8a0f4d5385b24 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 349/874] python-paramiko: rebuild for Python 3.8.

---
 srcpkgs/python-paramiko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-paramiko/template b/srcpkgs/python-paramiko/template
index c512ceb951f..d6f75508a03 100644
--- a/srcpkgs/python-paramiko/template
+++ b/srcpkgs/python-paramiko/template
@@ -1,7 +1,7 @@
 # Template file for 'python-paramiko'
 pkgname=python-paramiko
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 6c5cdbb0603a5742137ad2399e1f282d7135ecbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 350/874] python-parse: rebuild for Python 3.8.

---
 srcpkgs/python-parse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parse/template b/srcpkgs/python-parse/template
index 298d0b65e78..ded581b4420 100644
--- a/srcpkgs/python-parse/template
+++ b/srcpkgs/python-parse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parse'
 pkgname=python-parse
 version=1.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="parse-${version}"
 build_style=python-module

From 06c32d13c6ecc8f5c59fd3d28c856cddb7e55b69 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 351/874] python3-parsedatetime: rebuild for Python 3.8.

---
 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 d3ac21d7d34..34e9ba0f416 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="parsedatetime-${version}"
 build_style=python3-module

From 149092afd6b238ec9977aa2ba8d8f244d5357e67 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 352/874] python-parsing: rebuild for Python 3.8.

---
 srcpkgs/python-parsing/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parsing/template b/srcpkgs/python-parsing/template
index 0cc744eaf79..bd6cf2c2238 100644
--- a/srcpkgs/python-parsing/template
+++ b/srcpkgs/python-parsing/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parsing'
 pkgname=python-parsing
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyparsing-pyparsing_${version}"
 build_style=python-module

From c302574bea31ba81d3f2e4d6c1b8b8212592985d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 353/874] python-parso: rebuild for Python 3.8.

---
 srcpkgs/python-parso/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parso/template b/srcpkgs/python-parso/template
index 20e5fe306c0..1959b42622a 100644
--- a/srcpkgs/python-parso/template
+++ b/srcpkgs/python-parso/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parso'
 pkgname=python-parso
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="parso-${version}"
 build_style=python-module

From 6b9c95f942435b16d67021b0ce8f182c24bb943f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 354/874] python-passlib: rebuild for Python 3.8.

---
 srcpkgs/python-passlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-passlib/template b/srcpkgs/python-passlib/template
index 3af12ce7b1b..f46a3e92642 100644
--- a/srcpkgs/python-passlib/template
+++ b/srcpkgs/python-passlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-passlib'
 pkgname=python-passlib
 version=1.7.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="passlib-${version}"
 build_style=python-module

From 49600da0619f7152e3ea828c366d9a4680ebac40 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 355/874] python-pathlib2: rebuild for Python 3.8.

---
 srcpkgs/python-pathlib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathlib2/template b/srcpkgs/python-pathlib2/template
index bb7bec778f5..fa600b78fbe 100644
--- a/srcpkgs/python-pathlib2/template
+++ b/srcpkgs/python-pathlib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathlib2'
 pkgname=python-pathlib2
 version=2.3.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pathlib2-${version}"
 build_style=python-module

From a0a108aec87134d5b6d2e03e731f48739e1226c0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 356/874] python-pathspec: rebuild for Python 3.8.

---
 srcpkgs/python-pathspec/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathspec/template b/srcpkgs/python-pathspec/template
index 7c5fe04097a..2fa8fa1a811 100644
--- a/srcpkgs/python-pathspec/template
+++ b/srcpkgs/python-pathspec/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathspec'
 pkgname=python-pathspec
 version=0.5.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathspec-${version}"
 build_style=python-module

From c66de315dc6f359ddb581056e8ef350e92acb135 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 357/874] python-pathtools: rebuild for Python 3.8.

---
 srcpkgs/python-pathtools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathtools/template b/srcpkgs/python-pathtools/template
index 218e6ed2f57..47dc6ef6a71 100644
--- a/srcpkgs/python-pathtools/template
+++ b/srcpkgs/python-pathtools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathtools'
 pkgname=python-pathtools
 version=0.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathtools-${version}"
 build_style=python-module

From d3d8ba877ce3e383a472c68a51b4eb6138da7d25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 358/874] python-pbkdf2: rebuild for Python 3.8.

---
 srcpkgs/python-pbkdf2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pbkdf2/template b/srcpkgs/python-pbkdf2/template
index edc50f824c2..956d0b4cad9 100644
--- a/srcpkgs/python-pbkdf2/template
+++ b/srcpkgs/python-pbkdf2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pbkdf2'
 pkgname=python-pbkdf2
 version=1.3
-revision=3
+revision=4
 archs=noarch
 wrksrc="pbkdf2-${version}"
 build_style=python-module

From 92b150f4aee95d71074c2bc7e253e089372033b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 359/874] python-pbr: rebuild for Python 3.8.

---
 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 7ab0b39539f..9c7216056fe 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.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pbr-${version}"
 build_style=python-module

From a5f7f198ba9557855d1662cf7b3d806286d735b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 360/874] python3-pcodedmp: rebuild for Python 3.8.

---
 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 efe8cc83ee7..eb52c809fae 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=1
+revision=2
 archs=noarch
 wrksrc="pcodedmp-${version}"
 build_style=python3-module

From c6f7d3cab5a62a3302eedc82e3ce1b5af007e967 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 361/874] python-pdfrw: rebuild for Python 3.8.

---
 srcpkgs/python-pdfrw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pdfrw/template b/srcpkgs/python-pdfrw/template
index ddb43b928fc..ef7db98e491 100644
--- a/srcpkgs/python-pdfrw/template
+++ b/srcpkgs/python-pdfrw/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pdfrw'
 pkgname=python-pdfrw
 version=0.4
-revision=2
+revision=3
 archs=noarch
 replaces="python-pdfrw-example<${version}_${revision}"
 wrksrc="${pkgname/python-//}-${version}"

From 8f02a9d6b13212de51e3921f641914d153244a1d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 362/874] python-peewee: rebuild for Python 3.8.

---
 srcpkgs/python-peewee/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-peewee/template b/srcpkgs/python-peewee/template
index 9b07ed413b9..de0068a330e 100644
--- a/srcpkgs/python-peewee/template
+++ b/srcpkgs/python-peewee/template
@@ -1,7 +1,7 @@
 # Template file for 'python-peewee'
 pkgname=python-peewee
 version=3.11.2
-revision=1
+revision=2
 wrksrc="peewee-${version}"
 build_style=python-module
 pycompile_module="playhouse peewee.py pwiz.py"

From 8c541b3666a838b55909e5f7ca46b7318c1e315e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 363/874] python3-pefile: rebuild for Python 3.8.

---
 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 305d64e0758..8791f06640b 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=1
+revision=2
 archs=noarch
 wrksrc="pefile-${version}"
 build_style=python3-module

From edc8e4f2bb803865815c3d0bd64a2e50bfdf5da8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 364/874] python3-pem: rebuild for Python 3.8.

---
 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 3517c80b66a..15417666597 100644
--- a/srcpkgs/python3-pem/template
+++ b/srcpkgs/python3-pem/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pem'
 pkgname=python3-pem
 version=19.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pem-${version}"
 build_style=python3-module

From 164760eb3d8d28400ea4be2967d7678696839866 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 365/874] python-pex: rebuild for Python 3.8.

---
 srcpkgs/python-pex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pex/template b/srcpkgs/python-pex/template
index 4beafcf7b4b..e36ccda8180 100644
--- a/srcpkgs/python-pex/template
+++ b/srcpkgs/python-pex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pex'
 pkgname=python-pex
 version=1.6.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="pex-${version}"
 build_style=python-module

From b4043ec822756e0711d025e31db342f81853fc0b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 366/874] python-pexpect: rebuild for Python 3.8.

---
 srcpkgs/python-pexpect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pexpect/template b/srcpkgs/python-pexpect/template
index 8d03a1945f3..03102c3d294 100644
--- a/srcpkgs/python-pexpect/template
+++ b/srcpkgs/python-pexpect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pexpect'
 pkgname=python-pexpect
 version=4.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pexpect-${version}"
 build_style=python-module

From 50f6291ca752dc88af34a7df4987b99f11369c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 367/874] python-pgmigrate: rebuild for Python 3.8.

---
 srcpkgs/python-pgmigrate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgmigrate/template b/srcpkgs/python-pgmigrate/template
index b441ba2a89f..767b6cf8921 100644
--- a/srcpkgs/python-pgmigrate/template
+++ b/srcpkgs/python-pgmigrate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgmigrate'
 pkgname=python-pgmigrate
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgmigrate-${version}"
 build_style=python-module

From 19bc6f8c731b45f52c358d34830221558e54f36f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 368/874] python-pgpdump: rebuild for Python 3.8.

---
 srcpkgs/python-pgpdump/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgpdump/template b/srcpkgs/python-pgpdump/template
index 58be9116feb..a28b6e209e7 100644
--- a/srcpkgs/python-pgpdump/template
+++ b/srcpkgs/python-pgpdump/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgpdump'
 pkgname=python-pgpdump
 version=1.5
-revision=5
+revision=6
 archs=noarch
 build_style=python-module
 pycompile_module="pgpdump"

From d3bc17a7484bd198f2f0e5d449b183920ca6ef9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 369/874] python3-pgspecial: rebuild for Python 3.8.

---
 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 dc52d12c214..c4f67a707f1 100644
--- a/srcpkgs/python3-pgspecial/template
+++ b/srcpkgs/python3-pgspecial/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pgspecial'
 pkgname=python3-pgspecial
 version=1.11.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgspecial-${version}"
 build_style=python3-module

From 630e0f8ca443d21d7a84c4cb44ab119db356b6fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 370/874] python3-pgzero: rebuild for Python 3.8.

---
 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 9653505acda..8b8f477112d 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgzero-${version}"
 build_style=python3-module

From b39841f2f8458d2865aac460282b318538b727c4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 371/874] python3-phonenumbers: rebuild for Python 3.8.

---
 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 ebf33f226e4..7b4e889fd8d 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.10.20
-revision=1
+revision=2
 archs=noarch
 wrksrc="phonenumbers-${version}"
 build_style=python3-module

From c4dbacfe25a16b0526190c66a838b7e407125426 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 372/874] python-picamera: rebuild for Python 3.8.

---
 srcpkgs/python-picamera/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-picamera/template b/srcpkgs/python-picamera/template
index 92bc2a57a6d..e3c9a17bfdc 100644
--- a/srcpkgs/python-picamera/template
+++ b/srcpkgs/python-picamera/template
@@ -1,7 +1,7 @@
 # Template file for 'python-picamera'
 pkgname=python-picamera
 version=1.13
-revision=1
+revision=2
 archs=noarch
 wrksrc="picamera-${version}"
 build_style=python-module

From 29473c016c6cd2d720c417714e89e9eaba3b321e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 373/874] python-pickleshare: rebuild for Python 3.8.

---
 srcpkgs/python-pickleshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pickleshare/template b/srcpkgs/python-pickleshare/template
index 2485c95230a..c1d86826c15 100644
--- a/srcpkgs/python-pickleshare/template
+++ b/srcpkgs/python-pickleshare/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pickleshare'
 pkgname=python-pickleshare
 version=0.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pickleshare-${version}"
 build_style=python-module

From 7c358da397b1273369bbeb98240a250157d4fe9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 374/874] python3-pillow-simd: rebuild for Python 3.8.

---
 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 7bab9fb20c3..4c756b07c79 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=5.3.0.post1
-revision=1
+revision=2
 archs="x86_64*"
 wrksrc="pillow-simd-${version}"
 build_style=python3-module

From 06b38c4e7a2c4a5ec22c8a9c530dbe56d846260f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 375/874] python-pip: rebuild for Python 3.8.

---
 srcpkgs/python-pip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pip/template b/srcpkgs/python-pip/template
index 75f11561816..9d4607095c7 100644
--- a/srcpkgs/python-pip/template
+++ b/srcpkgs/python-pip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pip'
 pkgname=python-pip
 version=19.2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pip-${version}"
 build_style=python-module

From 16067b9358434ea80b4b86a4dcd5a60f6b9e575b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 376/874] python-pipenv: rebuild for Python 3.8.

---
 srcpkgs/python-pipenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pipenv/template b/srcpkgs/python-pipenv/template
index e7ce3922875..210a0813673 100644
--- a/srcpkgs/python-pipenv/template
+++ b/srcpkgs/python-pipenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pipenv'
 pkgname=python-pipenv
 version=2018.11.26
-revision=3
+revision=4
 archs=noarch
 wrksrc="pipenv-${version}"
 build_style=python-module

From cb995aed1307a20f4ffe7746dbe54e4099ce9670 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 377/874] python-pkgconfig: rebuild for Python 3.8.

---
 srcpkgs/python-pkgconfig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pkgconfig/template b/srcpkgs/python-pkgconfig/template
index 13e1dcd3bf7..e9e5480907d 100644
--- a/srcpkgs/python-pkgconfig/template
+++ b/srcpkgs/python-pkgconfig/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pkgconfig'
 pkgname=python-pkgconfig
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pkgconfig-${version}"
 build_style=python-module

From f284340f35211b5c0879b7a5338c325e6cfe62da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 378/874] python-plotly: rebuild for Python 3.8.

---
 srcpkgs/python-plotly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-plotly/template b/srcpkgs/python-plotly/template
index fbbb3a3a520..1593b108f7a 100644
--- a/srcpkgs/python-plotly/template
+++ b/srcpkgs/python-plotly/template
@@ -1,7 +1,7 @@
 # Template file for 'python-plotly'
 pkgname=python-plotly
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 #wrksrc="${pkgname#*-}-${version}"
 wrksrc="plotly.py-${version}"

From ee0d515dc265db17d6c90029fc5ffad4fbfb17ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 379/874] python3-pluggy: rebuild for Python 3.8.

---
 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 37ebc2dae40..6f97cb25f21 100644
--- a/srcpkgs/python3-pluggy/template
+++ b/srcpkgs/python3-pluggy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pluggy'
 pkgname=python3-pluggy
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python3-module

From 60f109b4924812d3cbb6107b8d070a2fdb642962 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 380/874] python-ply: rebuild for Python 3.8.

---
 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 034fbcfa531..04a3defa6aa 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=1
+revision=2
 archs=noarch
 wrksrc="ply-${version}"
 build_style=python-module

From 95b0bc668a60a91dbbd68944bdc712d271e93723 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 381/874] python3-pmw: rebuild for Python 3.8.

---
 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 646e7129443..289b5ef1d0d 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=1
+revision=2
 archs=noarch
 short_desc="Python 3 Tkinter widget toolkit"
 homepage="http://pmw.sourceforge.net/"

From 760b2aa66f385f882c6da4545bc93c906a387d73 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 382/874] python-podcastparser: rebuild for Python 3.8.

---
 srcpkgs/python-podcastparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-podcastparser/template b/srcpkgs/python-podcastparser/template
index e4847d3ed65..61702f0d28b 100644
--- a/srcpkgs/python-podcastparser/template
+++ b/srcpkgs/python-podcastparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-podcastparser'
 pkgname=python-podcastparser
 version=0.6.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="podcastparser-${version}"
 build_style=python-module

From e0ad0641945e1dea937fb2ca555a61603e4560b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 383/874] python-polib: rebuild for Python 3.8.

---
 srcpkgs/python-polib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-polib/template b/srcpkgs/python-polib/template
index b0ade05d90d..8b8d4b66c68 100644
--- a/srcpkgs/python-polib/template
+++ b/srcpkgs/python-polib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-polib'
 pkgname=python-polib
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="polib-${version}"
 build_style=python-module

From 0030be5c9ea47539a72b9d5b5131abeac8412e47 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 384/874] python-portend: rebuild for Python 3.8.

---
 srcpkgs/python-portend/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python-portend/template b/srcpkgs/python-portend/template
index 216ae413d09..0538f68083f 100644
--- a/srcpkgs/python-portend/template
+++ b/srcpkgs/python-portend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-portend'
 pkgname=python-portend
 version=2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="portend-${version}"
 build_style=python-module
@@ -14,7 +14,7 @@ license="MIT"
 homepage="https://github.com/jaraco/portend"
 changelog="https://github.com/jaraco/portend/blob/master/CHANGES.rst"
 distfiles="https://github.com/jaraco/portend/archive/${version}.tar.gz"
-checksum=61aa1a8fd76d64bd6093e4151a2bfeda177d5083bf2e2bcc92a053bd2104fde3
+checksum=c0740375a19168e117d291e7ed307e985d2c0e2dc732ca97444bc58a28076dfa
 
 pre_build() {
 	sed -i setup.py \

From 86c2211e1837e156275077b9efe1e25572514867 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 385/874] python-prctl: rebuild for Python 3.8.

---
 srcpkgs/python-prctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prctl/template b/srcpkgs/python-prctl/template
index 2b420d655cf..e8bf54b98fd 100644
--- a/srcpkgs/python-prctl/template
+++ b/srcpkgs/python-prctl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prctl'
 pkgname=python-prctl
 version=1.7
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="prctl.py"
 hostmakedepends="python-setuptools python3-setuptools libcap-devel"

From e7c53afc196d066076f9117158bd6a0b7b28bf52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 386/874] python3-precis-i18n: rebuild for Python 3.8.

---
 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 19612bc818b..be7bb0b0b56 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=1
+revision=2
 archs=noarch
 wrksrc="precis_i18n-${version}"
 build_style=python3-module

From fc6a6a6ae9e2454bc6e5aa117ab2f5f747f1c3d2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 387/874] python-pretend: rebuild for Python 3.8.

---
 srcpkgs/python-pretend/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pretend/template b/srcpkgs/python-pretend/template
index 9a647271b57..6d8063fc43a 100644
--- a/srcpkgs/python-pretend/template
+++ b/srcpkgs/python-pretend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pretend'
 pkgname=python-pretend
 version=1.0.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pretend-${version}"
 build_style=python-module

From 990266b8ce207f64d2a8e2f2f2c11473236e4a2d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 388/874] python-progress: rebuild for Python 3.8.

---
 srcpkgs/python-progress/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-progress/template b/srcpkgs/python-progress/template
index 7d3924e3618..0d6bd1db69d 100644
--- a/srcpkgs/python-progress/template
+++ b/srcpkgs/python-progress/template
@@ -1,7 +1,7 @@
 # Template file for 'python-progress'
 pkgname=python-progress
 version=1.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="progress-${version}"
 build_style=python-module

From 1259abece823637c18eaca058493cebdf15842ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 389/874] python-prometheus_client: rebuild for Python 3.8.

---
 srcpkgs/python-prometheus_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prometheus_client/template b/srcpkgs/python-prometheus_client/template
index 46df561f7d4..7b71fbeffc2 100644
--- a/srcpkgs/python-prometheus_client/template
+++ b/srcpkgs/python-prometheus_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prometheus_client'
 pkgname=python-prometheus_client
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="prometheus_client-${version}"
 build_style=python-module

From 67527aa7cf723b45f2c49017717337d56884bf4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 390/874] python-prompt_toolkit1: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit1/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit1/template b/srcpkgs/python-prompt_toolkit1/template
index d117d620ba5..7afe6179f33 100644
--- a/srcpkgs/python-prompt_toolkit1/template
+++ b/srcpkgs/python-prompt_toolkit1/template
@@ -2,7 +2,7 @@
 pkgname=python-prompt_toolkit1
 reverts="2.0.9_1"
 version=1.0.15
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From ad672131c8ab27e3e4dfa04ab7264c23d46f206e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 391/874] python-prompt_toolkit2: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit2/template b/srcpkgs/python-prompt_toolkit2/template
index 0fa71fa06dc..d7f2fd11e14 100644
--- a/srcpkgs/python-prompt_toolkit2/template
+++ b/srcpkgs/python-prompt_toolkit2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prompt_toolkit2'
 pkgname=python-prompt_toolkit2
 version=2.0.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From 2d3dfe28989a26dbea6bd90097a7a4046839373e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 392/874] python-proselint: rebuild for Python 3.8.

---
 srcpkgs/python-proselint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-proselint/template b/srcpkgs/python-proselint/template
index c017c497386..b1da90de474 100644
--- a/srcpkgs/python-proselint/template
+++ b/srcpkgs/python-proselint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-proselint'
 pkgname=python-proselint
 version=0.10.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="proselint-${version}"
 build_style=python-module

From 3dceefa27e529cfd28f51c8b96cec007bd4464e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 393/874] python-protobuf: rebuild for Python 3.8.

---
 srcpkgs/python-protobuf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-protobuf/template b/srcpkgs/python-protobuf/template
index 4b736f1e7af..7dbed97fb76 100644
--- a/srcpkgs/python-protobuf/template
+++ b/srcpkgs/python-protobuf/template
@@ -1,7 +1,7 @@
 # Template file for 'python-protobuf'
 pkgname=python-protobuf
 version=3.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="protobuf-${version}"
 build_style=python-module

From abc13cfff04878580efaf4333ca9548112b11049 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 394/874] python-psutil: rebuild for Python 3.8.

---
 srcpkgs/python-psutil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psutil/template b/srcpkgs/python-psutil/template
index 96cbb3c399f..11353ed2179 100644
--- a/srcpkgs/python-psutil/template
+++ b/srcpkgs/python-psutil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psutil'
 pkgname=python-psutil
 version=5.6.3
-revision=1
+revision=2
 wrksrc="psutil-${version}"
 build_style=python-module
 pycompile_module="psutil"

From 970bcf29dafb825894593f644c2fb7b4f1b86aff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 395/874] python-psycopg2: rebuild for Python 3.8.

---
 srcpkgs/python-psycopg2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psycopg2/template b/srcpkgs/python-psycopg2/template
index f41de2880e6..14b28b8aed1 100644
--- a/srcpkgs/python-psycopg2/template
+++ b/srcpkgs/python-psycopg2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psycopg2'
 pkgname=python-psycopg2
 version=2.8.3
-revision=1
+revision=2
 wrksrc="psycopg2-${version}"
 build_style=python-module
 pycompile_module="psycopg2"

From f987fad321d899f07d159588838ad3f3bfd1eb12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 396/874] python-ptyprocess: rebuild for Python 3.8.

---
 srcpkgs/python-ptyprocess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ptyprocess/template b/srcpkgs/python-ptyprocess/template
index 04c4cf89391..fd2e51fa3ac 100644
--- a/srcpkgs/python-ptyprocess/template
+++ b/srcpkgs/python-ptyprocess/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ptyprocess'
 pkgname=python-ptyprocess
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ptyprocess-${version}"
 build_style=python-module

From 6854ff4b103875e8ed393d695b71afd7a2589626 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 397/874] python3-pulsectl: rebuild for Python 3.8.

---
 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 429dd1abe45..045afdb411b 100644
--- a/srcpkgs/python3-pulsectl/template
+++ b/srcpkgs/python3-pulsectl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pulsectl'
 pkgname=python3-pulsectl
 version=19.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pulsectl-${version}"
 build_style=python3-module

From e8331ef1c889bc2b1756c6ed55a1cc93186445af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 398/874] python-py: rebuild for Python 3.8.

---
 srcpkgs/python-py/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-py/template b/srcpkgs/python-py/template
index 99644bc228a..07a1ae2a21b 100644
--- a/srcpkgs/python-py/template
+++ b/srcpkgs/python-py/template
@@ -1,7 +1,7 @@
 # Template file for 'python-py'
 pkgname=python-py
 version=1.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="py-${version}"
 build_style=python-module

From 1f71c5025d9cb40d86e4245b6a90731b3f25c6fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 399/874] python-pyPEG2: rebuild for Python 3.8.

---
 srcpkgs/python-pyPEG2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyPEG2/template b/srcpkgs/python-pyPEG2/template
index 113948af730..6ba175687f1 100644
--- a/srcpkgs/python-pyPEG2/template
+++ b/srcpkgs/python-pyPEG2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyPEG2'
 pkgname=python-pyPEG2
 version=2.15.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 3f82483327ba7958b0a6f8b67e63abf009c360ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 400/874] python-pyacoustid: rebuild for Python 3.8.

---
 srcpkgs/python-pyacoustid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyacoustid/template b/srcpkgs/python-pyacoustid/template
index 068d3d52649..d5b2d967f4e 100644
--- a/srcpkgs/python-pyacoustid/template
+++ b/srcpkgs/python-pyacoustid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyacoustid'
 pkgname=python-pyacoustid
 version=1.1.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyacoustid-${version}"
 build_style=python-module

From da477a37411d7cf0d00da2dea60d734072705be7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 401/874] python-pyaes: rebuild for Python 3.8.

---
 srcpkgs/python-pyaes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyaes/template b/srcpkgs/python-pyaes/template
index a8c812a9e01..d31766d0481 100644
--- a/srcpkgs/python-pyaes/template
+++ b/srcpkgs/python-pyaes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyaes'
 pkgname=python-pyaes
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyaes-${version}"
 build_style=python-module

From 9e2b6fe7e7b67777d70eb25705c27d4ed6462a3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 402/874] python-pyasn1: rebuild for Python 3.8.

---
 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 510dfa09816..fcddad43633 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyasn1-${version}"
 build_style=python-module

From 712c6a81632d8741a302138a46ffd3b1c8fb079f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 403/874] python-pyasn1-modules: rebuild for Python 3.8.

---
 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 bc19e4940ed..b142819a272 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 989e8e1bc0a51f2fa1a88ec8f99eae20dd3e21ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 404/874] python3-pycares: rebuild for Python 3.8.

---
 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 c52702904b4..ed82808bada 100644
--- a/srcpkgs/python3-pycares/template
+++ b/srcpkgs/python3-pycares/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pycares'
 pkgname=python3-pycares
 version=2.3.0
-revision=2
+revision=3
 wrksrc="pycares-${version}"
 build_style=python3-module
 pycompile_module="pycares"

From 0885c6a30ff0765b465e0e4c84803b48b9090dc5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 405/874] python-pycodestyle: rebuild for Python 3.8.

---
 srcpkgs/python-pycodestyle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycodestyle/template b/srcpkgs/python-pycodestyle/template
index ca20d8e0c97..08bc8c8bec7 100644
--- a/srcpkgs/python-pycodestyle/template
+++ b/srcpkgs/python-pycodestyle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycodestyle'
 pkgname=python-pycodestyle
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycodestyle-${version}"
 build_style=python-module

From 61d0268320bb8306c2b2823a663588c885a01df6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 406/874] python-pycountry: rebuild for Python 3.8.

---
 srcpkgs/python-pycountry/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycountry/template b/srcpkgs/python-pycountry/template
index 88a0025f258..205db6240b7 100644
--- a/srcpkgs/python-pycountry/template
+++ b/srcpkgs/python-pycountry/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycountry'
 pkgname=python-pycountry
 version=18.12.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycountry-${version}"
 build_style=python-module

From e3a689e939cf482e09d50cf25b8f244cbec3dc12 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 407/874] python-pycparser: rebuild for Python 3.8.

---
 srcpkgs/python-pycparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycparser/template b/srcpkgs/python-pycparser/template
index a521b3494ab..d2e83aa79b2 100644
--- a/srcpkgs/python-pycparser/template
+++ b/srcpkgs/python-pycparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycparser'
 pkgname=python-pycparser
 version=2.19
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycparser-${version}"
 build_style=python-module

From a86a5e2a75c91a868bf9b10f7ad9d86ca4df85d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 408/874] python-pycryptodome: rebuild for Python 3.8.

---
 srcpkgs/python-pycryptodome/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycryptodome/template b/srcpkgs/python-pycryptodome/template
index f01b5731c45..a4368d61b39 100644
--- a/srcpkgs/python-pycryptodome/template
+++ b/srcpkgs/python-pycryptodome/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycryptodome'
 pkgname=python-pycryptodome
 version=3.9.0
-revision=1
+revision=2
 wrksrc="pycryptodome-${version}"
 build_style=python-module
 pycompile_module="Crypto"

From 0cd2d63524942e2cfe5220436720dab24ef75308 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 409/874] python-pyelftools: rebuild for Python 3.8.

---
 srcpkgs/python-pyelftools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyelftools/template b/srcpkgs/python-pyelftools/template
index a6e9e9b644e..193650442fc 100644
--- a/srcpkgs/python-pyelftools/template
+++ b/srcpkgs/python-pyelftools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyelftools'
 pkgname=python-pyelftools
 version=0.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyelftools-${version}"
 build_style=python-module

From 61ae993767f544e608a601e6727e58b8c73400fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 410/874] python3-pyfiglet: rebuild for Python 3.8.

---
 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 d00b4fda62a..a4a67b12d42 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=1
+revision=2
 archs=noarch
 wrksrc="pyfiglet-${version}"
 build_style="python3-module"

From 7f5bd3a27f56badc9d95d3b2b7a684604262af1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 411/874] python-pyflakes: rebuild for Python 3.8.

---
 srcpkgs/python-pyflakes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyflakes/template b/srcpkgs/python-pyflakes/template
index 86d477c47f2..19229ebb3a4 100644
--- a/srcpkgs/python-pyflakes/template
+++ b/srcpkgs/python-pyflakes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyflakes'
 pkgname=python-pyflakes
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyflakes-${version}"
 build_style=python-module

From a811c56d34b1f53ac8aeca03f5247410137fe8d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 412/874] python-pygame: rebuild for Python 3.8.

---
 srcpkgs/python-pygame/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pygame/template b/srcpkgs/python-pygame/template
index a510333df6e..a900d62dbe3 100644
--- a/srcpkgs/python-pygame/template
+++ b/srcpkgs/python-pygame/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pygame'
 pkgname=python-pygame
 version=1.9.4
-revision=2
+revision=3
 wrksrc="pygame-${version}"
 build_style=python-module
 pycompile_module="pygame"

From e62822b2e5fa56868e80f10a019c7a0d66abbcbd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 413/874] python-pyglet: rebuild for Python 3.8.

---
 srcpkgs/python-pyglet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyglet/template b/srcpkgs/python-pyglet/template
index f8315bdf616..ee6ed16064c 100644
--- a/srcpkgs/python-pyglet/template
+++ b/srcpkgs/python-pyglet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyglet'
 pkgname=python-pyglet
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyglet-${version}"
 build_style=python-module

From 1f0bf2cea3a10c9982132fbe81c5ebd884defa35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 414/874] python3-pykeepass: rebuild for Python 3.8.

---
 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 c0e0fd4db41..135da6fea65 100644
--- a/srcpkgs/python3-pykeepass/template
+++ b/srcpkgs/python3-pykeepass/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pykeepass'
 pkgname=python3-pykeepass
 version=3.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="pykeepass-${version}"
 build_style=python3-module

From f2d7f9a6199d6780975ad9efb639642e96acc8c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 415/874] python3-pykwalify: rebuild for Python 3.8.

---
 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 27bc0c37355..b3727aba651 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pykwalify-${version}"
 build_style=python3-module

From cb348b8cc013bee10cb1adcdd5b9dac8e8f37a83 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 416/874] python3-pylast: rebuild for Python 3.8.

---
 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 187b51943a8..60184348d80 100644
--- a/srcpkgs/python3-pylast/template
+++ b/srcpkgs/python3-pylast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylast'
 pkgname=python3-pylast
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylast-${version}"
 build_style=python3-module

From 6629ec0088134c22cfb115f29fd4a90a9b38e7a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 417/874] python3-pylibgen: rebuild for Python 3.8.

---
 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 641bf649c17..540ccb32790 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylibgen-${version}"
 build_style=python3-module

From 953751fa6deeafefea78df4f5ec27ee5c5c9902d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 418/874] python3-pylint: rebuild for Python 3.8.

---
 srcpkgs/python3-pylint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pylint/template b/srcpkgs/python3-pylint/template
index 6c8800069f0..315dbffb3fc 100644
--- a/srcpkgs/python3-pylint/template
+++ b/srcpkgs/python3-pylint/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylint'
 pkgname=python3-pylint
 version=2.3.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="pylint-${version}"
 build_style=python3-module

From 96bc4e17e1f144c3528e0ec3b455d501c2c3efdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 419/874] python-pynacl: rebuild for Python 3.8.

---
 srcpkgs/python-pynacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pynacl/template b/srcpkgs/python-pynacl/template
index 6ead91820b1..7a7fe246821 100644
--- a/srcpkgs/python-pynacl/template
+++ b/srcpkgs/python-pynacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pynacl'
 pkgname=python-pynacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python-module
 pycompile_module="nacl"

From ec1da9dfd353e059b23780a676ef1561f56f9b2e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 420/874] python-pyotp: rebuild for Python 3.8.

---
 srcpkgs/python-pyotp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyotp/template b/srcpkgs/python-pyotp/template
index 54714ee2ebb..b70bd73d4aa 100644
--- a/srcpkgs/python-pyotp/template
+++ b/srcpkgs/python-pyotp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyotp'
 pkgname=python-pyotp
 version=2.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyotp-${version}"
 build_style=python-module

From 3c83515599af94f7483a3e165f03547f9daa2835 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 421/874] python-pyperclip: rebuild for Python 3.8.

---
 srcpkgs/python-pyperclip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyperclip/template b/srcpkgs/python-pyperclip/template
index 512dc8d3dfb..b173f1479a5 100644
--- a/srcpkgs/python-pyperclip/template
+++ b/srcpkgs/python-pyperclip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyperclip'
 pkgname=python-pyperclip
 version=1.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=pyperclip-${version}
 build_style=python-module

From 6d17f7510d6ce4ec430e8bf72567fecdbd521681 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 422/874] python-pyqtgraph: rebuild for Python 3.8.

---
 srcpkgs/python-pyqtgraph/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyqtgraph/template b/srcpkgs/python-pyqtgraph/template
index f90e2b15319..1bea9c2ffdf 100644
--- a/srcpkgs/python-pyqtgraph/template
+++ b/srcpkgs/python-pyqtgraph/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyqtgraph'
 pkgname=python-pyqtgraph
 version=0.10.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${pkgname#*-}-${version}"
 build_style=python-module

From fff21c3dd38242e2992b276e00f6970f96a34293 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 423/874] python-pyrfc3339: rebuild for Python 3.8.

---
 srcpkgs/python-pyrfc3339/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyrfc3339/template b/srcpkgs/python-pyrfc3339/template
index 618e46d1c4b..cd81c4d0624 100644
--- a/srcpkgs/python-pyrfc3339/template
+++ b/srcpkgs/python-pyrfc3339/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyrfc3339'
 pkgname=python-pyrfc3339
 version=1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="pyrfc3339"

From bdfc6ef4d47bd373ff649510c96f640b48da738a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 424/874] python-pyscss: rebuild for Python 3.8.

---
 srcpkgs/python-pyscss/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyscss/template b/srcpkgs/python-pyscss/template
index 1f7d8b7d8cd..1a8e9c44d7d 100644
--- a/srcpkgs/python-pyscss/template
+++ b/srcpkgs/python-pyscss/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyscss'
 pkgname=python-pyscss
 version=1.3.5
-revision=6
+revision=7
 wrksrc="pyScss-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pcre-devel"

From 6bdfad32f6894df0a7f3eb185662fa32228408ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 425/874] python3-pysdl2: rebuild for Python 3.8.

---
 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 d59ea7d7fa2..3efdca5b667 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=1
+revision=2
 archs=noarch
 wrksrc="py-sdl2-rel_${version//./_}"
 build_style=python3-module

From 67dab081767478a600fbc44d5333dc2746a683ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 426/874] python-pyserial: rebuild for Python 3.8.

---
 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 8808e76d206..354be493b16 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=2
+revision=3
 archs=noarch
 wrksrc="pyserial-${version}"
 build_style=python-module

From a6914f6aa35af001fd954260658bed6e1e5df2bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 427/874] python3-pyside2: rebuild for Python 3.8.

---
 srcpkgs/python3-pyside2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pyside2/template b/srcpkgs/python3-pyside2/template
index a5d60b17568..1da3400f239 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.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From deee942f64ef5e0e70f6a45a7f9e3a2593d53add Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 428/874] python3-pysigset: rebuild for Python 3.8.

---
 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 8de87145a09..50d9162ea70 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.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysigset-${version}"
 build_style=python3-module

From 913752d5b84f0054c829fc060939c366bf5b28cb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 429/874] python-pysocks: rebuild for Python 3.8.

---
 srcpkgs/python-pysocks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysocks/template b/srcpkgs/python-pysocks/template
index 68a27819e3d..d9b216aeab8 100644
--- a/srcpkgs/python-pysocks/template
+++ b/srcpkgs/python-pysocks/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysocks'
 pkgname=python-pysocks
 version=1.6.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="PySocks-${version}"
 build_style=python-module

From e256b35c573b66ccaaffbf92ee92ecad250db3c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 430/874] python3-pysol_cards: rebuild for Python 3.8.

---
 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 e03d92fe077..a37429754a2 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.8.6
-revision=1
+revision=2
 wrksrc="pysol_cards-${version}"
 build_style=python3-module
 pycompile_module="pysol_cards"

From d29dab0ddee296649a1f4ace5c33678cc349d6ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 431/874] python-pysrt: rebuild for Python 3.8.

---
 srcpkgs/python-pysrt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysrt/template b/srcpkgs/python-pysrt/template
index 061435a52c7..7e154825bef 100644
--- a/srcpkgs/python-pysrt/template
+++ b/srcpkgs/python-pysrt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysrt'
 pkgname=python-pysrt
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysrt-${version}"
 build_style=python-module

From 4ba7eb802460f8e4e15f1389bebd64237c6f1aec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 432/874] python-pystache: rebuild for Python 3.8.

---
 srcpkgs/python-pystache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pystache/template b/srcpkgs/python-pystache/template
index 13f8b04aa88..c1a5bcd57d9 100644
--- a/srcpkgs/python-pystache/template
+++ b/srcpkgs/python-pystache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pystache'
 pkgname=python-pystache
 version=0.5.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pystache-${version}"
 build_style=python-module

From a6a1d8010f3909cc551f70485efc660b22168f46 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 433/874] python-pyte: rebuild for Python 3.8.

---
 srcpkgs/python-pyte/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyte/template b/srcpkgs/python-pyte/template
index 43b708adc66..76efbec91d1 100644
--- a/srcpkgs/python-pyte/template
+++ b/srcpkgs/python-pyte/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyte'
 pkgname=python-pyte
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyte-${version}"
 build_style=python-module

From 03679e357b0bdbd90ddbb6deba5693594ef9d592 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 434/874] python-pytest: rebuild for Python 3.8.

---
 srcpkgs/python-pytest/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest/template b/srcpkgs/python-pytest/template
index 6481f21e677..d5c246599c6 100644
--- a/srcpkgs/python-pytest/template
+++ b/srcpkgs/python-pytest/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest'
 pkgname=python-pytest
 version=3.7.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From d8ff8818fa4f90c63cf468feb2bba5d8b9dca026 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 435/874] python3-pytest-asyncio: rebuild for Python 3.8.

---
 srcpkgs/python3-pytest-asyncio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template
index bd104f99e2c..0c90d33a9e5 100644
--- a/srcpkgs/python3-pytest-asyncio/template
+++ b/srcpkgs/python3-pytest-asyncio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pytest-asyncio'
 pkgname=python3-pytest-asyncio
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytest-asyncio-${version}"
 build_style=python3-module

From 8bdff4905b1d2e832656b8dde532b566e516752c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 436/874] python-pytest-fixture-config: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-fixture-config/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-fixture-config/template b/srcpkgs/python-pytest-fixture-config/template
index cd3e38a592a..14255af8a35 100644
--- a/srcpkgs/python-pytest-fixture-config/template
+++ b/srcpkgs/python-pytest-fixture-config/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-fixture-config'
 pkgname=python-pytest-fixture-config
 version=1.3.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 89c93c6cebe4d9e57d61a6e1c0d1782514496073 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 437/874] python-pytest-mock: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-mock/template b/srcpkgs/python-pytest-mock/template
index f3dc85810b6..240e8773aaa 100644
--- a/srcpkgs/python-pytest-mock/template
+++ b/srcpkgs/python-pytest-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-mock'
 pkgname=python-pytest-mock
 version=1.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From e10ffc843814c368a7fd76e24e6afa8512ce198c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 438/874] python-pytz: rebuild for Python 3.8.

---
 srcpkgs/python-pytz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytz/template b/srcpkgs/python-pytz/template
index d6becf829a7..40f582962c8 100644
--- a/srcpkgs/python-pytz/template
+++ b/srcpkgs/python-pytz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytz'
 pkgname=python-pytz
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytz-${version}"
 build_style=python-module

From 562767d788b8e163bcde2dbd45de9eca2899bd90 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 439/874] python-pyudev: rebuild for Python 3.8.

---
 srcpkgs/python-pyudev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyudev/template b/srcpkgs/python-pyudev/template
index d059b7882a2..2ec53088636 100644
--- a/srcpkgs/python-pyudev/template
+++ b/srcpkgs/python-pyudev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyudev'
 pkgname=python-pyudev
 version=0.21.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyudev-${version}"
 build_style=python-module

From bb91a3d4616a0e9dbf1a34b271d62527a455f4ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 440/874] python3-pyx: rebuild for Python 3.8.

---
 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 87608c43428..89963bed89f 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.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="PyX-${version}"
 build_style=python3-module

From caa3ad83cde6d2b66687ae0ac2bb87dfd8eb100f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 441/874] python-pyzbar: rebuild for Python 3.8.

---
 srcpkgs/python-pyzbar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzbar/template b/srcpkgs/python-pyzbar/template
index 06ae37a5708..35b568eb4e6 100644
--- a/srcpkgs/python-pyzbar/template
+++ b/srcpkgs/python-pyzbar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzbar'
 pkgname=python-pyzbar
 version=0.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyzbar-${version}"
 build_style=python-module

From 83e0ba8fd12c3f07b4f3c2f8109ff0cd9a69353b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 442/874] python-pyzmq: rebuild for Python 3.8.

---
 srcpkgs/python-pyzmq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzmq/template b/srcpkgs/python-pyzmq/template
index 859aab5983d..27dbe29e516 100644
--- a/srcpkgs/python-pyzmq/template
+++ b/srcpkgs/python-pyzmq/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzmq'
 pkgname=python-pyzmq
 version=18.0.1
-revision=1
+revision=2
 wrksrc="pyzmq-${version}"
 build_style=python-module
 make_build_args="--zmq=${XBPS_CROSS_BASE}/usr"

From 2d71150f372801e322d8ee5f31b2bc67795fc3a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 443/874] python-qrcode: rebuild for Python 3.8.

---
 srcpkgs/python-qrcode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-qrcode/template b/srcpkgs/python-qrcode/template
index 9deb485855f..bf35c82757e 100644
--- a/srcpkgs/python-qrcode/template
+++ b/srcpkgs/python-qrcode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-qrcode'
 pkgname=python-qrcode
 version=6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="qrcode-${version}"
 build_style=python-module

From 55eeefa7bb378b38024ce5c57d228c5d2c24875f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 444/874] python-random2: rebuild for Python 3.8.

---
 srcpkgs/python-random2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-random2/template b/srcpkgs/python-random2/template
index 92f36fee139..2603cae3584 100644
--- a/srcpkgs/python-random2/template
+++ b/srcpkgs/python-random2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-random2'
 pkgname=python-random2
 version=1.0.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="random2-${version}"
 build_style=python-module

From 4aa520f994404a836b859a95bf53280ec662d779 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 445/874] python-rarfile: rebuild for Python 3.8.

---
 srcpkgs/python-rarfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rarfile/template b/srcpkgs/python-rarfile/template
index e0c597c1fb1..e3b6f3e2887 100644
--- a/srcpkgs/python-rarfile/template
+++ b/srcpkgs/python-rarfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rarfile'
 pkgname=python-rarfile
 version=3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="rarfile-${version}"
 build_style=python-module

From 77edc413dd0a2b7d7423d47946137d1db7452b91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 446/874] python-raven: rebuild for Python 3.8.

---
 srcpkgs/python-raven/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-raven/template b/srcpkgs/python-raven/template
index eec4e5f49b6..87382c21602 100644
--- a/srcpkgs/python-raven/template
+++ b/srcpkgs/python-raven/template
@@ -1,7 +1,7 @@
 # Template file for 'python-raven'
 pkgname=python-raven
 version=6.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="raven-${version}"
 build_style=python-module

From 0fd244bc29d49109b475295b68c11c496626bd43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 447/874] python-rdflib: rebuild for Python 3.8.

---
 srcpkgs/python-rdflib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rdflib/template b/srcpkgs/python-rdflib/template
index 0512abb0e5a..f676dedfb2f 100644
--- a/srcpkgs/python-rdflib/template
+++ b/srcpkgs/python-rdflib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rdflib'
 pkgname=python-rdflib
 version=4.2.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="rdflib-${version}"
 build_style=python-module

From 52682c54b0a7808306dcb6c0c9af5436d056d6a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 448/874] python-readability-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-readability-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-readability-lxml/template b/srcpkgs/python-readability-lxml/template
index ddf0602b730..19dadaa336f 100644
--- a/srcpkgs/python-readability-lxml/template
+++ b/srcpkgs/python-readability-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-readability-lxml'
 pkgname=python-readability-lxml
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="readability-lxml-${version}"
 build_style=python-module

From 5b239aeb5613465b0d414e14b8b37a83f65232fc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 449/874] python3-readlike: rebuild for Python 3.8.

---
 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 cbba969b076..43159962442 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=1
+revision=2
 archs=noarch
 wrksrc=readlike-${version}
 build_style=python3-module

From 10ff7da432e0f1563ed8c4feb921648f20e75246 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 450/874] python-rebulk: rebuild for Python 3.8.

---
 srcpkgs/python-rebulk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rebulk/template b/srcpkgs/python-rebulk/template
index 1cf6cf623c8..8f9c2621304 100644
--- a/srcpkgs/python-rebulk/template
+++ b/srcpkgs/python-rebulk/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rebulk'
 pkgname=python-rebulk
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rebulk-${version}"
 build_style=python-module

From b720f89f9fb6ecb79aa43ff92f151239049cb9c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 451/874] python-redis: rebuild for Python 3.8.

---
 srcpkgs/python-redis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-redis/template b/srcpkgs/python-redis/template
index f57c0d841b3..b7e773fde54 100644
--- a/srcpkgs/python-redis/template
+++ b/srcpkgs/python-redis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-redis'
 pkgname=python-redis
 version=2.10.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="redis-${version}"
 build_style=python-module

From 90d47f03a3f7a55f623c0b5019b0b58b6169aae5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 452/874] python-regex: rebuild for Python 3.8.

---
 srcpkgs/python-regex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-regex/template b/srcpkgs/python-regex/template
index 33e99b0127b..7a624db9477 100644
--- a/srcpkgs/python-regex/template
+++ b/srcpkgs/python-regex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-regex'
 pkgname=python-regex
 version=2019.08.19
-revision=1
+revision=2
 wrksrc="regex-${version}"
 build_style=python-module
 pycompile_module="_regex_core.py regex.py test_regex.py"

From e132fc559392a2f2a5268100218ef2061759c476 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 453/874] python-rencode: rebuild for Python 3.8.

---
 srcpkgs/python-rencode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rencode/template b/srcpkgs/python-rencode/template
index 7176038a60a..021e1d414b8 100644
--- a/srcpkgs/python-rencode/template
+++ b/srcpkgs/python-rencode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rencode'
 pkgname=python-rencode
 version=1.0.6
-revision=2
+revision=3
 wrksrc="rencode-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"

From 635743944483bd5fdbf4a909ef4874532f1035b9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 454/874] python-reportlab: rebuild for Python 3.8.

---
 srcpkgs/python-reportlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-reportlab/template b/srcpkgs/python-reportlab/template
index 7f153d65a2a..3915767b6d3 100644
--- a/srcpkgs/python-reportlab/template
+++ b/srcpkgs/python-reportlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-reportlab'
 pkgname=python-reportlab
 version=3.5.23
-revision=1
+revision=2
 wrksrc="reportlab-${version}"
 build_style=python-module
 pycompile_module="reportlab"

From 4a6d7b1e5e0d64a6834cc210da11806cbe217453 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 455/874] python-requests: rebuild for Python 3.8.

---
 srcpkgs/python-requests/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests/template b/srcpkgs/python-requests/template
index fc806b611e9..73d2d5945ef 100644
--- a/srcpkgs/python-requests/template
+++ b/srcpkgs/python-requests/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests'
 pkgname=python-requests
 version=2.22.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-${version}"
 build_style=python-module

From 61f6560b710773eab8296ef28bd943f5dc0d290d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 456/874] python-requests-mock: rebuild for Python 3.8.

---
 srcpkgs/python-requests-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-mock/template b/srcpkgs/python-requests-mock/template
index 5b89b5ed3b8..2d1410fcd1b 100644
--- a/srcpkgs/python-requests-mock/template
+++ b/srcpkgs/python-requests-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-mock'
 pkgname=python-requests-mock
 version=1.5.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="requests-mock-${version}"
 build_style=python-module

From f4f04d85ce7abb39fbbf306bc3c1dcfc467cdf14 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 457/874] python-requests-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-requests-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-oauthlib/template b/srcpkgs/python-requests-oauthlib/template
index b011ea17a36..8cd838090a7 100644
--- a/srcpkgs/python-requests-oauthlib/template
+++ b/srcpkgs/python-requests-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-oauthlib'
 pkgname=python-requests-oauthlib
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5853f21b57bde4c4e66293b132fba4fc03804518 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 458/874] python-requests-toolbelt: rebuild for Python 3.8.

---
 srcpkgs/python-requests-toolbelt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-toolbelt/template b/srcpkgs/python-requests-toolbelt/template
index 3ba66a0a007..13a81586221 100644
--- a/srcpkgs/python-requests-toolbelt/template
+++ b/srcpkgs/python-requests-toolbelt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-toolbelt'
 pkgname=python-requests-toolbelt
 version=0.9.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 14171483829854051f0c8030562c1052094d78c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 459/874] python3-requests-unixsocket: rebuild for Python 3.8.

---
 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 ec9e1074566..fd389ec2d13 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-unixsocket-${version}"
 build_style=python3-module

From 9b589212b423bd7e2dfbb7ab7ef63c65b9dd07cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 460/874] python-rfc6555: rebuild for Python 3.8.

---
 srcpkgs/python-rfc6555/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rfc6555/template b/srcpkgs/python-rfc6555/template
index c3babc25b93..2522872cc32 100644
--- a/srcpkgs/python-rfc6555/template
+++ b/srcpkgs/python-rfc6555/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rfc6555'
 pkgname=python-rfc6555
 version=0.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rfc6555-${version}"
 build_style=python-module

From a399a96d8293a9387f5648001a03178d2550059b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 461/874] python-ripe-atlas-cousteau: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-cousteau/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-cousteau/template b/srcpkgs/python-ripe-atlas-cousteau/template
index ac16300fe3d..72f32a9da0d 100644
--- a/srcpkgs/python-ripe-atlas-cousteau/template
+++ b/srcpkgs/python-ripe-atlas-cousteau/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-cousteau'
 pkgname=python-ripe-atlas-cousteau
 version=1.4.2
-revision=1
+revision=2
 build_style=python-module
 archs=noarch
 pycompile_module="ripe/atlas/cousteau"

From 4c2ddc085f45f52b438013ad3d494f8f59859504 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 462/874] python-ripe-atlas-sagan: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-sagan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-sagan/template b/srcpkgs/python-ripe-atlas-sagan/template
index 60a9b883b93..22abb48af46 100644
--- a/srcpkgs/python-ripe-atlas-sagan/template
+++ b/srcpkgs/python-ripe-atlas-sagan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-sagan'
 pkgname=python-ripe-atlas-sagan
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ripe.atlas.sagan-${version}"
 build_style=python-module

From 10e7db3d51d8370e317d667edc372d0fcfd5bad9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 463/874] python-rsa: rebuild for Python 3.8.

---
 srcpkgs/python-rsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rsa/template b/srcpkgs/python-rsa/template
index a4ae59846ff..11e9bf2c60d 100644
--- a/srcpkgs/python-rsa/template
+++ b/srcpkgs/python-rsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rsa'
 pkgname=python-rsa
 version=4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From a3bbda3918c5b4bb668860ba5bbd81f83f1a4925 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 464/874] python3-rsistent: rebuild for Python 3.8.

---
 srcpkgs/python3-rsistent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-rsistent/template b/srcpkgs/python3-rsistent/template
index 13019f472cd..7897e107b2b 100644
--- a/srcpkgs/python3-rsistent/template
+++ b/srcpkgs/python3-rsistent/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-rsistent'
 pkgname=python3-rsistent
 version=0.15.4
-revision=1
+revision=2
 wrksrc="pyrsistent-${version}"
 build_style=python3-module
 pycompile_module="pyrsistent"

From 7d4c9082b7051c6ce978ca21f34f138189c7f2d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 465/874] python3-rss2email: rebuild for Python 3.8.

---
 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 d07984d33d8..34e7d4e65a6 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.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="rss2email-${version}"
 build_style=python3-module

From a0a5e6df8a02d98f37c3c22c043adb325c8a8a62 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 466/874] python-ruamel.yaml: rebuild for Python 3.8.

---
 srcpkgs/python-ruamel.yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ruamel.yaml/template b/srcpkgs/python-ruamel.yaml/template
index d86ddfc67c9..789f8a7acd2 100644
--- a/srcpkgs/python-ruamel.yaml/template
+++ b/srcpkgs/python-ruamel.yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ruamel.yaml'
 pkgname=python-ruamel.yaml
 version=0.15.92
-revision=1
+revision=2
 wrksrc="ruamel.yaml-${version}"
 build_style=python-module
 pycompile_module="ruamel/yaml"

From 6b579f083949bbd67a78d66ae983de1f36f03a82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 467/874] python3-s-tui: rebuild for Python 3.8.

---
 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 4c7db6ff3c9..85a945b1b09 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=0.8.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="s-tui-${version}"
 build_style=python3-module

From 5cc92799a690ba40dd26192e3f0182e07089683a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 468/874] python-s3transfer: rebuild for Python 3.8.

---
 srcpkgs/python-s3transfer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-s3transfer/template b/srcpkgs/python-s3transfer/template
index e306c3c3b1a..dd92eeff657 100644
--- a/srcpkgs/python-s3transfer/template
+++ b/srcpkgs/python-s3transfer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-s3transfer'
 pkgname=python-s3transfer
 version=0.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="s3transfer-${version}"
 build_style=python-module

From 2ec5386706a289e510b5b03e33cf74e0a23596a6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 469/874] python3-saml2: rebuild for Python 3.8.

---
 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 e94602a82ea..c0dabb5e9d0 100644
--- a/srcpkgs/python3-saml2/template
+++ b/srcpkgs/python3-saml2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-saml2'
 pkgname=python3-saml2
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysaml2-${version}"
 build_style=python3-module

From e856d28eb580f0af5442d11d24ffacdd7fade12b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 470/874] python-scandir: rebuild for Python 3.8.

---
 srcpkgs/python-scandir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scandir/template b/srcpkgs/python-scandir/template
index 774fac91b8f..b02fe6d0281 100644
--- a/srcpkgs/python-scandir/template
+++ b/srcpkgs/python-scandir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scandir'
 pkgname=python-scandir
 version=1.10.0
-revision=2
+revision=3
 wrksrc="scandir-${version}"
 build_style=python-module
 pycompile_module="scandir.py"

From 3b5e1eeb2ce0519b51592cebffc1bd89dce0f96c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 471/874] python3-scard: rebuild for Python 3.8.

---
 srcpkgs/python3-scard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scard/template b/srcpkgs/python3-scard/template
index 793f144a74b..279419ac3e3 100644
--- a/srcpkgs/python3-scard/template
+++ b/srcpkgs/python3-scard/template
@@ -2,7 +2,7 @@
 pkgname=python3-scard
 _pkgname=pyscard
 version=1.9.8
-revision=1
+revision=2
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module
 pycompile_module=smartcard

From f62ba61eaebce26c267e2d453d8e0ea6e005a285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 472/874] python3-scikit-learn: rebuild for Python 3.8.

---
 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 73799b9f420..8ac82167832 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.20.4
-revision=1
+revision=2
 wrksrc="scikit-learn-${version}"
 build_style=python3-module
 pycompile_module="sklearn"

From ccf4f6aa1bd0ba8aaf9499dcacb1320a77221004 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 473/874] python3-scipy: rebuild for Python 3.8.

---
 srcpkgs/python3-scipy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scipy/template b/srcpkgs/python3-scipy/template
index 291ac3734f1..2cef9ac33e1 100644
--- a/srcpkgs/python3-scipy/template
+++ b/srcpkgs/python3-scipy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-scipy'
 pkgname=python3-scipy
 version=1.3.1
-revision=1
+revision=2
 wrksrc="scipy-${version}"
 build_style=python3-module
 pycompile_module="scipy"

From 04cbe0c6403a4ecd9cda36e10bba5d06e472823d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 474/874] python-scour: rebuild for Python 3.8.

---
 srcpkgs/python-scour/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scour/template b/srcpkgs/python-scour/template
index b78cf37f057..0db5b157ce1 100644
--- a/srcpkgs/python-scour/template
+++ b/srcpkgs/python-scour/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scour'
 pkgname=python-scour
 version=0.37
-revision=1
+revision=2
 archs=noarch
 wrksrc="scour-${version}"
 build_style=python-module

From 0fd08871993ece59d562feb8472d05249ae1d76a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 475/874] python3-scruffy: rebuild for Python 3.8.

---
 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 e797b110f42..62a21a74eca 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="scruffy-${version}"
 build_style=python3-module

From 65cb259cf8f67f78fe484e4423fe0006aae17045 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 476/874] python-send2trash: rebuild for Python 3.8.

---
 srcpkgs/python-send2trash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-send2trash/template b/srcpkgs/python-send2trash/template
index 49c3a2b3d77..94f56545695 100644
--- a/srcpkgs/python-send2trash/template
+++ b/srcpkgs/python-send2trash/template
@@ -1,7 +1,7 @@
 # Template file for 'python-send2trash'
 pkgname=python-send2trash
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="send2trash-${version}"
 build_style=python-module

From 04a4413d706d49df8a415b9714091b0e4bb0fdfa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 477/874] python-serpent: rebuild for Python 3.8.

---
 srcpkgs/python-serpent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-serpent/template b/srcpkgs/python-serpent/template
index b60d390c1ab..a40f0d44515 100644
--- a/srcpkgs/python-serpent/template
+++ b/srcpkgs/python-serpent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-serpent'
 pkgname=python-serpent
 version=1.28
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 38131f811a874463c71c55408ef6e629166a5b8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 478/874] python-service_identity: rebuild for Python 3.8.

---
 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 eae084c858f..e21a1520a75 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=1
+revision=2
 archs=noarch
 wrksrc="service_identity-${version}"
 build_style=python-module

From 9a538d41d8b848da9da43cd5d6f80428b7208be8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 479/874] setconf: rebuild for Python 3.8.

---
 srcpkgs/setconf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/setconf/template b/srcpkgs/setconf/template
index a3d22376a5b..1911c558c77 100644
--- a/srcpkgs/setconf/template
+++ b/srcpkgs/setconf/template
@@ -1,7 +1,7 @@
 # Template file for 'setconf'
 pkgname=setconf
 version=0.7.6
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="setconf.py"

From aacff3894cc42a49ab1becc06f64f23197302443 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 480/874] python-setproctitle: rebuild for Python 3.8.

---
 srcpkgs/python-setproctitle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setproctitle/template b/srcpkgs/python-setproctitle/template
index d0d41ae888d..c47e3a9db53 100644
--- a/srcpkgs/python-setproctitle/template
+++ b/srcpkgs/python-setproctitle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setproctitle'
 pkgname=python-setproctitle
 version=1.1.10
-revision=5
+revision=6
 wrksrc="setproctitle-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 6e2b8c2ac8d355cdb0f221b80ab39e2ef92beb3e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 481/874] python-setuptools: rebuild for Python 3.8.

---
 srcpkgs/python-setuptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setuptools/template b/srcpkgs/python-setuptools/template
index 382a9b45bcd..a172f8e8e09 100644
--- a/srcpkgs/python-setuptools/template
+++ b/srcpkgs/python-setuptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setuptools'
 pkgname=python-setuptools
 version=41.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python-module

From 5feb793ba33633318f41644f84b5ffd5428e2d4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 482/874] python-sh: rebuild for Python 3.8.

---
 srcpkgs/python-sh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sh/template b/srcpkgs/python-sh/template
index 1826986b25c..76985dc1f01 100644
--- a/srcpkgs/python-sh/template
+++ b/srcpkgs/python-sh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sh'
 pkgname=python-sh
 version=1.12.14
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From f0cfe151eea6fcf86d1196385a1ac0057a65ab48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 483/874] python-shapely: rebuild for Python 3.8.

---
 srcpkgs/python-shapely/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-shapely/template b/srcpkgs/python-shapely/template
index 25cc875a02c..114726838f9 100644
--- a/srcpkgs/python-shapely/template
+++ b/srcpkgs/python-shapely/template
@@ -1,7 +1,7 @@
 # Template file for 'python-shapely'
 pkgname=python-shapely
 version=1.7a1
-revision=2
+revision=3
 wrksrc="Shapely-${version}"
 build_style=python-module
 pycompile_module="shapely"

From 0908618383925caf43243de8097dbf6491149f8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 484/874] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index d552ce8432d..1f9c8043b46 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=4
+revision=5
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From 14af86f199e28c6eae170b10c1c662bd0184b73d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 485/874] shiboken2: rebuild for Python 3.8.

---
 srcpkgs/shiboken2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken2/template b/srcpkgs/shiboken2/template
index 394d9ba4f94..a08edf3f2a0 100644
--- a/srcpkgs/shiboken2/template
+++ b/srcpkgs/shiboken2/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken2'
 pkgname=shiboken2
 version=5.11.2
-revision=2
+revision=3
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From 9ea535c3baf70c69a2bbe07d057742af1877d648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 486/874] python3-shodan: rebuild for Python 3.8.

---
 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 858a0b921f8..033b5a269ff 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.19.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="shodan-python-${version}"
 build_style=python3-module

From 76805ea236fc7f4ecd5948a492413602efff91e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 487/874] python3-signedjson: rebuild for Python 3.8.

---
 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 6f6fb339fd2..d8f9b06b22f 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-signedjson-${version}"
 build_style=python3-module

From 12e9d209470a13cdd9063e5544ffd00c5952138e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 488/874] python-simplebayes: rebuild for Python 3.8.

---
 srcpkgs/python-simplebayes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplebayes/template b/srcpkgs/python-simplebayes/template
index e76b94ad549..6c95222fa7e 100644
--- a/srcpkgs/python-simplebayes/template
+++ b/srcpkgs/python-simplebayes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplebayes'
 pkgname=python-simplebayes
 version=1.5.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="simplebayes-${version}"
 build_style=python-module

From d1ad830144a3e370bbac6e82affb1d06805dfdbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 489/874] python-simplegeneric: rebuild for Python 3.8.

---
 srcpkgs/python-simplegeneric/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplegeneric/template b/srcpkgs/python-simplegeneric/template
index 3dc4e1dda94..f352387fa1f 100644
--- a/srcpkgs/python-simplegeneric/template
+++ b/srcpkgs/python-simplegeneric/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplegeneric'
 pkgname=python-simplegeneric
 version=0.8.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="simplegeneric-${version}"
 build_style=python-module

From f6d990c1a1436b305f8b5af6f58c1f6430d96dc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 490/874] python-simplejson: rebuild for Python 3.8.

---
 srcpkgs/python-simplejson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplejson/template b/srcpkgs/python-simplejson/template
index b453ae952ba..1b8523d0d46 100644
--- a/srcpkgs/python-simplejson/template
+++ b/srcpkgs/python-simplejson/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplejson'
 pkgname=python-simplejson
 version=3.16.1
-revision=2
+revision=3
 wrksrc="simplejson-${version}"
 build_style=python-module
 pycompile_module="simplejson"

From b6f0878a2894ffdd731251a64a26cb1ddf40038a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 491/874] sip: rebuild for Python 3.8.

---
 srcpkgs/sip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sip/template b/srcpkgs/sip/template
index 9d09b823bb6..0e8a81000b1 100644
--- a/srcpkgs/sip/template
+++ b/srcpkgs/sip/template
@@ -1,7 +1,7 @@
 # Template file for 'sip'
 pkgname=sip
 version=4.19.18
-revision=1
+revision=2
 wrksrc="sip-${version}"
 hostmakedepends="python-devel python3-devel"
 makedepends="${hostmakedepends}"

From 5f24e47fb2b044495bbf0ee108d18220ad3b3bd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 492/874] python-six: rebuild for Python 3.8.

---
 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 c6d91f5ece9..a25323caa2a 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.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="six-${version}"
 build_style=python-module

From 09784cf129c5a66b731964fcda119a53dd9dbb7b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 493/874] python3-slixmpp: rebuild for Python 3.8.

---
 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 db367c3d0ab..cbbde6f394b 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.4.2
-revision=1
+revision=2
 wrksrc="slixmpp-${version}"
 build_style=python3-module
 pycompile_module="slixmpp"

From 5e4eb88ccd16957dc33f6923ae3a72151385e9ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 494/874] python3-slugify: rebuild for Python 3.8.

---
 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 44d37f2aed7..012bb98f063 100644
--- a/srcpkgs/python3-slugify/template
+++ b/srcpkgs/python3-slugify/template
@@ -3,7 +3,7 @@ pkgname=python3-slugify
 # Please don't update. Only required by Transifx-client,
 # doesn't work with newer versions
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-slugify-${version}"
 build_style=python3-module

From 3673d2d0b57421bb69e3ed7407630c26169fab96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 495/874] python-smbc: rebuild for Python 3.8.

---
 srcpkgs/python-smbc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smbc/template b/srcpkgs/python-smbc/template
index abc745f8982..6a280139a25 100644
--- a/srcpkgs/python-smbc/template
+++ b/srcpkgs/python-smbc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smbc'
 pkgname=python-smbc
 version=1.0.16
-revision=1
+revision=2
 wrksrc="pysmbc-${version}"
 build_style=python-module
 pycompile_module="smbc"

From 2e7eca88dff9a562419fb01bfafbdaf55a6c2bd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 496/874] python-smmap: rebuild for Python 3.8.

---
 srcpkgs/python-smmap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smmap/template b/srcpkgs/python-smmap/template
index 4aa0c37ff40..8c8ea952285 100644
--- a/srcpkgs/python-smmap/template
+++ b/srcpkgs/python-smmap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smmap'
 pkgname=python-smmap
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="smmap-${version}"
 build_style=python-module

From fd787d6092a892885c1a37ff836d919c3268746b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 497/874] python-snakeoil: rebuild for Python 3.8.

---
 srcpkgs/python-snakeoil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snakeoil/template b/srcpkgs/python-snakeoil/template
index 9c98461c555..79e964d9254 100644
--- a/srcpkgs/python-snakeoil/template
+++ b/srcpkgs/python-snakeoil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snakeoil'
 pkgname=python-snakeoil
 version=0.7.5
-revision=2
+revision=3
 wrksrc="snakeoil-${version}"
 build_style=python-module
 pycompile_module="snakeoil"

From c023c48bda41f4e9b16718923037b0abc4c9cc57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 498/874] python-snappy: rebuild for Python 3.8.

---
 srcpkgs/python-snappy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snappy/template b/srcpkgs/python-snappy/template
index ac386f64fae..b1870cbe681 100644
--- a/srcpkgs/python-snappy/template
+++ b/srcpkgs/python-snappy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snappy'
 pkgname=python-snappy
 version=0.5.4
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="snappy"
 hostmakedepends="python-setuptools python3-setuptools"

From cf3b5c203b490e3aa45e74d0cef8b0d0c4d9cbd4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 499/874] python-snowballstemmer: rebuild for Python 3.8.

---
 srcpkgs/python-snowballstemmer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snowballstemmer/template b/srcpkgs/python-snowballstemmer/template
index 6c21632cffa..221478860e5 100644
--- a/srcpkgs/python-snowballstemmer/template
+++ b/srcpkgs/python-snowballstemmer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snowballstemmer'
 pkgname=python-snowballstemmer
 version=1.2.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="snowballstemmer-${version}"
 build_style=python-module

From ebbd083848ced4227417bedacb81db1e46b3b0d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 500/874] python-socketIO-client: rebuild for Python 3.8.

---
 srcpkgs/python-socketIO-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-socketIO-client/template b/srcpkgs/python-socketIO-client/template
index 32fdac4117d..9495d7cf40b 100644
--- a/srcpkgs/python-socketIO-client/template
+++ b/srcpkgs/python-socketIO-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-socketIO-client'
 pkgname=python-socketIO-client
 version=0.7.2
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="socketIO_client"

From bf4912c1b4d342f253c99ee2ff30408cc72ef150 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 501/874] python3-sortedcontainers: rebuild for Python 3.8.

---
 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 2b531ded9b6..41d87d4ebd0 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.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="sortedcontainers-${version}"
 build_style=python3-module

From d111b9221a51cf160ffadb598d8ab186bac3562f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 502/874] python-soupsieve: rebuild for Python 3.8.

---
 srcpkgs/python-soupsieve/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-soupsieve/template b/srcpkgs/python-soupsieve/template
index 586553ca759..63b65c5910f 100644
--- a/srcpkgs/python-soupsieve/template
+++ b/srcpkgs/python-soupsieve/template
@@ -1,7 +1,7 @@
 # Template file for 'python-soupsieve'
 pkgname=python-soupsieve
 version=1.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="soupsieve-${version}"
 build_style=python-module

From 505955408532e39107891c66bb40c986d8a5da3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 503/874] python3-spake2: rebuild for Python 3.8.

---
 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 ff83afed1d6..dc0cdced747 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=1
+revision=2
 archs=noarch
 wrksrc="python-spake2-${version}"
 build_style=python3-module

From ed28cd6c33b5a607891182e27d4edc4b33e42c75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 504/874] python-sphinx_rtd_theme: rebuild for Python 3.8.

---
 srcpkgs/python-sphinx_rtd_theme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinx_rtd_theme/template b/srcpkgs/python-sphinx_rtd_theme/template
index 90def1c9d1d..ebd4f13da8f 100644
--- a/srcpkgs/python-sphinx_rtd_theme/template
+++ b/srcpkgs/python-sphinx_rtd_theme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinx_rtd_theme'
 pkgname=python-sphinx_rtd_theme
 version=0.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinx_rtd_theme-${version}"
 build_style=python-module

From dc5c184f3eb8653ed7620ead5c8c28a67daed07d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 505/874] python-sphinxcontrib: rebuild for Python 3.8.

---
 srcpkgs/python-sphinxcontrib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib/template b/srcpkgs/python-sphinxcontrib/template
index ce3befc56d7..c6789cc77f5 100644
--- a/srcpkgs/python-sphinxcontrib/template
+++ b/srcpkgs/python-sphinxcontrib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib'
 pkgname=python-sphinxcontrib
 version=1.0
-revision=2
+revision=3
 archs=noarch
 create_wrksrc=yes
 pycompile_module="sphinxcontrib"

From 044129ada15eeb9695b554976702e8af049dcfd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 506/874] python-sphinxcontrib-websupport: rebuild for Python
 3.8.

---
 srcpkgs/python-sphinxcontrib-websupport/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib-websupport/template b/srcpkgs/python-sphinxcontrib-websupport/template
index 2236e50b25b..5387dec6519 100644
--- a/srcpkgs/python-sphinxcontrib-websupport/template
+++ b/srcpkgs/python-sphinxcontrib-websupport/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib-websupport'
 pkgname=python-sphinxcontrib-websupport
 version=1.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinxcontrib-websupport-${version}"
 build_style=python-module

From d4fb3b78447ca7349e0a94033b436c3e0caa5dc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 507/874] python-sqlalchemy-migrate: rebuild for Python 3.8.

---
 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 cfdf6166695..bb002660c0f 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=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 863a48d9543b2461c699350ad32bb2ae925e30c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 508/874] python-sqlparse: rebuild for Python 3.8.

---
 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 29a477db392..0f8c6f8ea2e 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=1
+revision=2
 archs=noarch
 wrksrc="sqlparse-${version}"
 build_style=python-module

From b477355bf26b723b8ab7cab61902be1e4aaee7bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 509/874] python-stem: rebuild for Python 3.8.

---
 srcpkgs/python-stem/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index e04ae0a848c..e16e79d84bb 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stem'
 pkgname=python-stem
 version=1.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stem-${version/b/}"
 build_style=python-module

From 82d435bdfc12ea7b4a3dabd17da5113470bffe26 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 510/874] python-stevedore: rebuild for Python 3.8.

---
 srcpkgs/python-stevedore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stevedore/template b/srcpkgs/python-stevedore/template
index 281538211af..4f781304d3f 100644
--- a/srcpkgs/python-stevedore/template
+++ b/srcpkgs/python-stevedore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stevedore'
 pkgname=python-stevedore
 version=1.30.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stevedore-${version}"
 build_style=python-module

From 2afe8f7a4ce71437484d9258f44ead34ae2f6647 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 511/874] python-stormssh: rebuild for Python 3.8.

---
 srcpkgs/python-stormssh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stormssh/template b/srcpkgs/python-stormssh/template
index 250e838e582..11f63f67bba 100644
--- a/srcpkgs/python-stormssh/template
+++ b/srcpkgs/python-stormssh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stormssh'
 pkgname=python-stormssh
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=storm-${version}
 build_style=python-module

From 754addaa6845cd505b5d744fa4e54a66dba9c4ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 512/874] python-subliminal: rebuild for Python 3.8.

---
 srcpkgs/python-subliminal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-subliminal/template b/srcpkgs/python-subliminal/template
index 035ca844880..216c11bb4c0 100644
--- a/srcpkgs/python-subliminal/template
+++ b/srcpkgs/python-subliminal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-subliminal'
 pkgname=python-subliminal
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="subliminal-${version}"
 build_style=python-module

From da488d7b04fb3b00046be4293c33ae0809dad8e6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 513/874] python-sympy: rebuild for Python 3.8.

---
 srcpkgs/python-sympy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sympy/template b/srcpkgs/python-sympy/template
index 21d8cf69840..d41c8a392b0 100644
--- a/srcpkgs/python-sympy/template
+++ b/srcpkgs/python-sympy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sympy'
 pkgname=python-sympy
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="sympy-${version}"
 build_style=python-module

From 78857098e3058d7f0df7ece8be24b84196d16921 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 514/874] python-tables: rebuild for Python 3.8.

---
 srcpkgs/python-tables/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tables/template b/srcpkgs/python-tables/template
index 644ae3d1a35..5f61fe8fb88 100644
--- a/srcpkgs/python-tables/template
+++ b/srcpkgs/python-tables/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tables'
 pkgname=python-tables
 version=3.5.2
-revision=1
+revision=2
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="tables"

From 45955cd565bccabbc642dce6684af05ad7651ba5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 515/874] python3-tabulate: rebuild for Python 3.8.

---
 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 19b61edd88c..6f142077300 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="tabulate-${version}"
 build_style=python3-module

From 285f369cadcf0d14f66db8045bb3fb979e69937f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 516/874] python-tempita: rebuild for Python 3.8.

---
 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 9e7123fbd9d..c1c75ee1cac 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=3
+revision=4
 archs=noarch
 wrksrc="Tempita-${version}"
 build_style=python-module

From efa04f85df83993e48813e00587c05cd6c722387 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 517/874] python-tempora: rebuild for Python 3.8.

---
 srcpkgs/python-tempora/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tempora/template b/srcpkgs/python-tempora/template
index fa1cbd4fbd1..866d163f367 100644
--- a/srcpkgs/python-tempora/template
+++ b/srcpkgs/python-tempora/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tempora'
 pkgname=python-tempora
 version=1.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tempora-${version}"
 build_style=python-module

From 783b09196fc04d62a7e7a220ffffc941acedfeeb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 518/874] python-termcolor: rebuild for Python 3.8.

---
 srcpkgs/python-termcolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-termcolor/template b/srcpkgs/python-termcolor/template
index 877e5e59d9b..73c18fc79eb 100644
--- a/srcpkgs/python-termcolor/template
+++ b/srcpkgs/python-termcolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-termcolor'
 pkgname=python-termcolor
 version=1.1.0
-revision=5
+revision=6
 archs=noarch
 wrksrc="termcolor-${version}"
 build_style=python-module

From 469ef1b462bbb9fb2d5d97b38e357b662f5009d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 519/874] python-terminado: rebuild for Python 3.8.

---
 srcpkgs/python-terminado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-terminado/template b/srcpkgs/python-terminado/template
index cdfe6163991..d649364d88d 100644
--- a/srcpkgs/python-terminado/template
+++ b/srcpkgs/python-terminado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-terminado'
 pkgname=python-terminado
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="terminado-${version}"
 build_style=python-module

From ced3b80cce126ab9d23dd2a4bc9505e23b5a4888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 520/874] python3-terminaltables: rebuild for Python 3.8.

---
 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 60ada7ffcb6..4f781eab76d 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=1
+revision=2
 archs=noarch
 wrksrc="terminaltables-${version}"
 build_style=python3-module

From 7a90fec1dbe0347ede0762e747d8edf378bd497c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 521/874] python-testpath: rebuild for Python 3.8.

---
 srcpkgs/python-testpath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-testpath/template b/srcpkgs/python-testpath/template
index bac7270fd40..abfc59900c0 100644
--- a/srcpkgs/python-testpath/template
+++ b/srcpkgs/python-testpath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-testpath'
 pkgname=python-testpath
 version=0.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="testpath-${version}"
 build_style=python-module

From f8761f2f7116f9b2691807d35d9836a34fbbbf32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 522/874] python3-text-unidecode: rebuild for Python 3.8.

---
 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 77163d9e0b6..b3b5aa95575 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="text-unidecode-${version}"
 build_style=python3-module

From 2d2f99664b0644e22e4876b9d54048008a392289 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 523/874] python-texttable: rebuild for Python 3.8.

---
 srcpkgs/python-texttable/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-texttable/template b/srcpkgs/python-texttable/template
index a9c5ec66db1..24bac87af6a 100644
--- a/srcpkgs/python-texttable/template
+++ b/srcpkgs/python-texttable/template
@@ -1,7 +1,7 @@
 # Template file for 'python-texttable'
 pkgname=python-texttable
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="texttable-${version}"
 build_style=python-module

From c671c144e8fe81895f6995347d19725f72165b25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 524/874] python3-tinycss: rebuild for Python 3.8.

---
 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 91fda6f808d..3b4717c234e 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=1
+revision=2
 archs=noarch
 wrksrc=tinycss-${version}
 build_style=python3-module

From 9aa3e8105128dc5e3b86a83bd0ae76e7d9c9cf86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 525/874] python-tmuxp: rebuild for Python 3.8.

---
 srcpkgs/python-tmuxp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tmuxp/template b/srcpkgs/python-tmuxp/template
index 00c86730cbe..45b4a9772b2 100644
--- a/srcpkgs/python-tmuxp/template
+++ b/srcpkgs/python-tmuxp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tmuxp'
 pkgname=python-tmuxp
 version=1.5.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="tmuxp-${version}"
 build_style=python-module

From 995158f34c29d704b44eae2b32df801023781096 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 526/874] python-toml: rebuild for Python 3.8.

---
 srcpkgs/python-toml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-toml/template b/srcpkgs/python-toml/template
index 0eee1b0b2c3..2fd6eaa0cea 100644
--- a/srcpkgs/python-toml/template
+++ b/srcpkgs/python-toml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-toml'
 pkgname=python-toml
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="toml-${version}"
 build_style=python-module

From 6270afd962719dd0e9b876b40ab7bf9be9936cf5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 527/874] python-tornado: rebuild for Python 3.8.

---
 srcpkgs/python-tornado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tornado/template b/srcpkgs/python-tornado/template
index 7e5700177f5..bd558d251f5 100644
--- a/srcpkgs/python-tornado/template
+++ b/srcpkgs/python-tornado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tornado'
 pkgname=python-tornado
 version=5.1.1
-revision=1
+revision=2
 wrksrc="tornado-${version}"
 build_style=python-module
 pycompile_module="tornado"

From cd9e416288ae101465f91c75453326fdead7d148 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 528/874] python-tqdm: rebuild for Python 3.8.

---
 srcpkgs/python-tqdm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tqdm/template b/srcpkgs/python-tqdm/template
index 69369bfd6b9..ef1f07127ad 100644
--- a/srcpkgs/python-tqdm/template
+++ b/srcpkgs/python-tqdm/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tqdm'
 pkgname=python-tqdm
 version=4.36.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tqdm-${version}"
 build_style=python-module

From 4ef8d34c3ab05cf43591d92220fc001007644a6d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 529/874] python-traitlets: rebuild for Python 3.8.

---
 srcpkgs/python-traitlets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-traitlets/template b/srcpkgs/python-traitlets/template
index d2d1b85edb6..797dd0268da 100644
--- a/srcpkgs/python-traitlets/template
+++ b/srcpkgs/python-traitlets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-traitlets'
 pkgname=python-traitlets
 version=4.3.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="traitlets-${version}"
 build_style=python-module

From f41edcb16535bb92b415439644ee01a61da14478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 530/874] python3-transifex-client: rebuild for Python 3.8.

---
 srcpkgs/python3-transifex-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-transifex-client/template b/srcpkgs/python3-transifex-client/template
index 77ca15313e0..5ea767b5a7d 100644
--- a/srcpkgs/python3-transifex-client/template
+++ b/srcpkgs/python3-transifex-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-transifex-client'
 pkgname=python3-transifex-client
 version=0.13.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="transifex-client-${version}"
 build_style=python3-module

From d2c27a7fe61e206ccbf655146feec32e4b13cfc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 531/874] python3-treq: rebuild for Python 3.8.

---
 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 8f210d13489..e46e1e7e7a5 100644
--- a/srcpkgs/python3-treq/template
+++ b/srcpkgs/python3-treq/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-treq'
 pkgname=python3-treq
 version=18.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="treq-${version}"
 build_style=python3-module

From 26b5427ba0e26d8712ebe081a774396e3ea39d76 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 532/874] python-ttystatus: rebuild for Python 3.8.

---
 srcpkgs/python-ttystatus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ttystatus/template b/srcpkgs/python-ttystatus/template
index 9fbefad3461..43e87ddcdf0 100644
--- a/srcpkgs/python-ttystatus/template
+++ b/srcpkgs/python-ttystatus/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ttystatus'
 pkgname=python-ttystatus
 version=0.38
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="ttystatus"

From dbf349fac2110dc33ad6d676748e46240dec1fbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 533/874] python-twitter: rebuild for Python 3.8.

---
 srcpkgs/python-twitter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-twitter/template b/srcpkgs/python-twitter/template
index c299b28dedf..e5e7194078a 100644
--- a/srcpkgs/python-twitter/template
+++ b/srcpkgs/python-twitter/template
@@ -1,7 +1,7 @@
 # Template file for 'python-twitter'
 pkgname=python-twitter
 version=3.5
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="twitter"

From 58eab12e88f689c694ef474e09d2266b77b5bcc3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 534/874] python3-txacme: rebuild for Python 3.8.

---
 srcpkgs/python3-txacme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-txacme/template b/srcpkgs/python3-txacme/template
index e6becf593e7..c678addda4d 100644
--- a/srcpkgs/python3-txacme/template
+++ b/srcpkgs/python3-txacme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txacme'
 pkgname=python3-txacme
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="txacme-${version}"
 build_style=python3-module

From a1a3464258c255e0b73cbdb47e0337d3b8af473e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 535/874] python3-txaio: rebuild for Python 3.8.

---
 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 fa13338cd30..8163f5c90fd 100644
--- a/srcpkgs/python3-txaio/template
+++ b/srcpkgs/python3-txaio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txaio'
 pkgname=python3-txaio
 version=18.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="txaio-${version}"
 build_style=python3-module

From 66d08c9f4945499ccd01b127d7ec1f8cfd468dd3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 536/874] python3-txtorcon: rebuild for Python 3.8.

---
 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 3018a65e457..a10ab59c582 100644
--- a/srcpkgs/python3-txtorcon/template
+++ b/srcpkgs/python3-txtorcon/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txtorcon'
 pkgname=python3-txtorcon
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="txtorcon-${version}"
 build_style=python3-module

From f3bf9db3f8b699c67eebc7fa0278fca9de892d75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 537/874] python3-typed-ast: update to 1.4.0.

---
 srcpkgs/python3-typed-ast/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-typed-ast/template b/srcpkgs/python3-typed-ast/template
index ec5b5b9df11..b38f0fe065c 100644
--- a/srcpkgs/python3-typed-ast/template
+++ b/srcpkgs/python3-typed-ast/template
@@ -1,8 +1,8 @@
 # Template file for 'python3-typed-ast'
 pkgname=python3-typed-ast
-version=1.3.4
+version=1.4.0
 revision=1
-wrksrc="typed-ast-${version}"
+wrksrc="typed_ast-${version}"
 build_style=python3-module
 pycompile_module="typed_ast"
 hostmakedepends="python3-devel python3-setuptools"
@@ -11,6 +11,6 @@ short_desc="Ast module with type comment support"
 maintainer="whoami <whoami@systemli.org>"
 license="Apache-2.0"
 homepage="https://github.com/python/typed_ast"
-distfiles="${PYPI_SITE}/t/typed-ast/typed-ast-${version}.tar.gz"
-checksum=68c362848d9fb71d3c3e5f43c09974a0ae319144634e7a47db62f0f2a54a7fa7
+distfiles="${PYPI_SITE}/t/typed-ast/typed_ast-${version}.tar.gz"
+checksum=66480f95b8167c9c5c5c87f32cf437d585937970f3fc24386f313a4c97b44e34
 nocross="https://travis-ci.org/void-linux/void-packages/jobs/509366923#L1009"

From d977434aa35e2c6bc03c5db7514f5409eb21a2a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 538/874] python3-typing_extensions: rebuild for Python 3.8.

---
 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 ab96df4eb2d..605af46216d 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=3.6.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module

From d1368b489e196a385edf9b15df4da773505f8a5e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 539/874] python-tzlocal: rebuild for Python 3.8.

---
 srcpkgs/python-tzlocal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tzlocal/template b/srcpkgs/python-tzlocal/template
index 396eada3982..684d2a21b40 100644
--- a/srcpkgs/python-tzlocal/template
+++ b/srcpkgs/python-tzlocal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tzlocal'
 pkgname=python-tzlocal
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tzlocal-${version}"
 build_style=python-module

From 0ec72579de99edead05daf85e7cac5e0e2ab641b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 540/874] python-unittest-mixins: rebuild for Python 3.8.

---
 srcpkgs/python-unittest-mixins/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-unittest-mixins/template b/srcpkgs/python-unittest-mixins/template
index 6f7c7204112..2ff5c497523 100644
--- a/srcpkgs/python-unittest-mixins/template
+++ b/srcpkgs/python-unittest-mixins/template
@@ -1,7 +1,7 @@
 # Template file for 'python-unittest-mixins'
 pkgname=python-unittest-mixins
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From a5e3289470d7f0e25e09237aa9463d28817818c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 541/874] python3-unpaddedbase64: rebuild for Python 3.8.

---
 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 37df2c1d642..06a47db3b64 100644
--- a/srcpkgs/python3-unpaddedbase64/template
+++ b/srcpkgs/python3-unpaddedbase64/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-unpaddedbase64'
 pkgname=python3-unpaddedbase64
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-unpaddedbase64-${version}"
 build_style=python3-module

From 13043751d10b741546f419a7e9089a5b252fd5c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 542/874] python-urbandict: rebuild for Python 3.8.

---
 srcpkgs/python-urbandict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urbandict/template b/srcpkgs/python-urbandict/template
index ff09e963fa7..ed359c744be 100644
--- a/srcpkgs/python-urbandict/template
+++ b/srcpkgs/python-urbandict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urbandict'
 pkgname=python-urbandict
 version=0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="urbandict-${version}"
 build_style=python-module

From a15bf0893e7a65a070751099b3ddca9172b49912 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 543/874] python-uritemplate: rebuild for Python 3.8.

---
 srcpkgs/python-uritemplate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-uritemplate/template b/srcpkgs/python-uritemplate/template
index 7a530fee03b..cdcda419efe 100644
--- a/srcpkgs/python-uritemplate/template
+++ b/srcpkgs/python-uritemplate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-uritemplate'
 pkgname=python-uritemplate
 version=3.0.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 43c97a015ea83b2b0934ea864a84b324ec83f31a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 544/874] python3-urlgrabber: rebuild for Python 3.8.

---
 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 087087d5ed1..eef67c8e13c 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=1
+revision=2
 archs=noarch
 wrksrc="urlgrabber-${version}"
 build_style=python3-module

From 016dbcff2bb0c1709814f4da4fe214d551e3d4cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 545/874] python-urllib3: rebuild for Python 3.8.

---
 srcpkgs/python-urllib3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urllib3/template b/srcpkgs/python-urllib3/template
index 8056518c9c1..1ff21f7555d 100644
--- a/srcpkgs/python-urllib3/template
+++ b/srcpkgs/python-urllib3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urllib3'
 pkgname=python-urllib3
 version=1.25.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="urllib3-${version}"
 build_style=python-module

From 9629da352be38a0f14bcb680c7fc05dd1d1167f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 546/874] python-urwid: rebuild for Python 3.8.

---
 srcpkgs/python-urwid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwid/template b/srcpkgs/python-urwid/template
index ae6722b1135..7adf8b76b96 100644
--- a/srcpkgs/python-urwid/template
+++ b/srcpkgs/python-urwid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwid'
 pkgname=python-urwid
 version=2.0.1
-revision=2
+revision=3
 wrksrc="urwid-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"

From 4be978b1173afce93e7ff39f6e577059f4c7dd4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 547/874] python-urwidtrees: rebuild for Python 3.8.

---
 srcpkgs/python-urwidtrees/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwidtrees/template b/srcpkgs/python-urwidtrees/template
index be0e906addf..62d214489e2 100644
--- a/srcpkgs/python-urwidtrees/template
+++ b/srcpkgs/python-urwidtrees/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwidtrees'
 pkgname=python-urwidtrees
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="urwidtrees-${version}"
 build_style=python-module

From c9f3ad0ed793593060952aa365e888244dfd07e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 548/874] python3-usb: rebuild for Python 3.8.

---
 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 a081ee5ba76..d26c24df669 100644
--- a/srcpkgs/python3-usb/template
+++ b/srcpkgs/python3-usb/template
@@ -2,7 +2,7 @@
 pkgname=python3-usb
 _pkgname=pyusb
 version=1.0.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From 454ef49754696a81de599e7fa6cf9cab31ccbc31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 549/874] python-utils: rebuild for Python 3.8.

---
 srcpkgs/python-utils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-utils/template b/srcpkgs/python-utils/template
index e881e70c0f0..6745df121a6 100644
--- a/srcpkgs/python-utils/template
+++ b/srcpkgs/python-utils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-utils'
 pkgname=python-utils
 version=2.3.0
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 wrksrc="python-utils-${version}"

From eef5c75b93453defdcb8def5b34c20f20cda0fc6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 550/874] python3-validators: rebuild for Python 3.8.

---
 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 29b9fc74c30..6d9da94c4bb 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.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="validators-${version}"
 build_style=python3-module

From 53ce0ff21de84f26405d0314002bb11e85903128 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 551/874] python3-vdf: rebuild for Python 3.8.

---
 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 44c635ecdd6..88bd521beaa 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.2
-revision=1
+revision=2
 wrksrc=vdf-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From f720d6ed8267fa4b27a7ce83dd3a265a18cd13b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 552/874] python-vint: rebuild for Python 3.8.

---
 srcpkgs/python-vint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vint/template b/srcpkgs/python-vint/template
index 4ca693f7eb2..62c663bf18e 100644
--- a/srcpkgs/python-vint/template
+++ b/srcpkgs/python-vint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vint'
 pkgname=python-vint
 version=0.3.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="vim-vint-${version}"
 build_style=python-module

From 573eadbcb861065b712050cf6e7fd200c33a73b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 553/874] python-virtualenv: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv/template b/srcpkgs/python-virtualenv/template
index 1f9166e79a2..cdeda28c53e 100644
--- a/srcpkgs/python-virtualenv/template
+++ b/srcpkgs/python-virtualenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv'
 pkgname=python-virtualenv
 version=16.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="virtualenv-${version}"
 build_style=python-module

From 25eda2949787b488dfc7cfc6512d02a4971d4f96 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 554/874] python-virtualenv-clone: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv-clone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv-clone/template b/srcpkgs/python-virtualenv-clone/template
index 3c9f601bc6e..273b9ddf6d3 100644
--- a/srcpkgs/python-virtualenv-clone/template
+++ b/srcpkgs/python-virtualenv-clone/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv-clone'
 pkgname=python-virtualenv-clone
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5a922ea064a496fb01ff970e45a43ef51561b373 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 555/874] python3-virustotal-api: rebuild for Python 3.8.

---
 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 2bc6592c91f..fc362c03b39 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=1
+revision=2
 archs=noarch
 wrksrc="virustotal-api-${version}"
 build_style=python3-module

From 65deaff01a3a9a5d82641fe121fdb2964b75346f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 556/874] python-vispy: rebuild for Python 3.8.

---
 srcpkgs/python-vispy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vispy/template b/srcpkgs/python-vispy/template
index b757e5a271f..624ade6f12b 100644
--- a/srcpkgs/python-vispy/template
+++ b/srcpkgs/python-vispy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vispy'
 pkgname=python-vispy
 version=0.6.1
-revision=1
+revision=2
 wrksrc="vispy-${version}"
 build_style=python-module
 pycompile_module="vispy"

From 5e47d846dedfdbef61bd10a33928ce13b600c648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 557/874] python-vobject: rebuild for Python 3.8.

---
 srcpkgs/python-vobject/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vobject/template b/srcpkgs/python-vobject/template
index 54f575aa1a1..2c1c215527c 100644
--- a/srcpkgs/python-vobject/template
+++ b/srcpkgs/python-vobject/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vobject'
 pkgname=python-vobject
 version=0.9.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="vobject-${version}"
 build_style=python-module

From 8125ffd3d4822ca6bf81508ed8b859e079cd9437 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 558/874] python-voluptuous: rebuild for Python 3.8.

---
 srcpkgs/python-voluptuous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-voluptuous/template b/srcpkgs/python-voluptuous/template
index fd44ae2e324..1dd5de27491 100644
--- a/srcpkgs/python-voluptuous/template
+++ b/srcpkgs/python-voluptuous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-voluptuous'
 pkgname=python-voluptuous
 version=0.11.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="voluptuous-${version}"
 build_style=python-module

From 608126ee8043f8d45a8e56608f99e0df6cc2ee9e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 559/874] python-watchdog: rebuild for Python 3.8.

---
 srcpkgs/python-watchdog/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchdog/template b/srcpkgs/python-watchdog/template
index f6027c3b5ca..2eea6397f00 100644
--- a/srcpkgs/python-watchdog/template
+++ b/srcpkgs/python-watchdog/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchdog'
 pkgname=python-watchdog
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="watchdog-${version}"
 build_style=python-module

From a54fc09b58f905a0ed5cd5892db67b7c4ea6ae9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 560/874] python-watchman: rebuild for Python 3.8.

---
 srcpkgs/python-watchman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchman/template b/srcpkgs/python-watchman/template
index 4c41c275ca2..97400668d64 100644
--- a/srcpkgs/python-watchman/template
+++ b/srcpkgs/python-watchman/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchman'
 pkgname=python-watchman
 version=1.4.1
-revision=2
+revision=3
 wrksrc="pywatchman-${version}"
 build_style=python-module
 pycompile_module="pywatchman"

From 4dd6084e6c30a25fb4ff3c44bf2c751eaab07715 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 561/874] python-wcwidth: rebuild for Python 3.8.

---
 srcpkgs/python-wcwidth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wcwidth/template b/srcpkgs/python-wcwidth/template
index 34bc22cbcb6..8ec6d17450c 100644
--- a/srcpkgs/python-wcwidth/template
+++ b/srcpkgs/python-wcwidth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wcwidth'
 pkgname=python-wcwidth
 version=0.1.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="wcwidth-${version}"
 build_style=python-module

From cafaf5868e58cb26c2cdd29d0d1b52f9cf1e31ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 562/874] python-webassets: rebuild for Python 3.8.

---
 srcpkgs/python-webassets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webassets/template b/srcpkgs/python-webassets/template
index 3ad5475bd17..789be9684f7 100644
--- a/srcpkgs/python-webassets/template
+++ b/srcpkgs/python-webassets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webassets'
 pkgname=python-webassets
 version=0.12.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 88d8fa4eb1ca72857d5a1cab8a4f7495a9af1595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 563/874] python-webencodings: rebuild for Python 3.8.

---
 srcpkgs/python-webencodings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webencodings/template b/srcpkgs/python-webencodings/template
index 5a05af10835..f047a9e3c52 100644
--- a/srcpkgs/python-webencodings/template
+++ b/srcpkgs/python-webencodings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webencodings'
 pkgname=python-webencodings
 version=0.5.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="webencodings-${version}"
 build_style=python-module

From 81c9d07c0e756cc87a6cd2c444c0b2f0987463da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 564/874] python-websocket-client: rebuild for Python 3.8.

---
 srcpkgs/python-websocket-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-websocket-client/template b/srcpkgs/python-websocket-client/template
index 8aa276655cb..3df8ab42b36 100644
--- a/srcpkgs/python-websocket-client/template
+++ b/srcpkgs/python-websocket-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-websocket-client'
 pkgname=python-websocket-client
 version=0.56.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="websocket_client-${version}"
 build_style=python-module

From 97fc927913b3f2682b7ddf73982008e9fdc1e42d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 565/874] python-wheel: rebuild for Python 3.8.

---
 srcpkgs/python-wheel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wheel/template b/srcpkgs/python-wheel/template
index 11c50bd65e6..11aeaf42316 100644
--- a/srcpkgs/python-wheel/template
+++ b/srcpkgs/python-wheel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wheel'
 pkgname=python-wheel
 version=0.32.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="wheel-${version}"
 build_style=python-module

From 861d20f2f112cd829f2f06f746680e2c034a812f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 566/874] python-wikipedia: rebuild for Python 3.8.

---
 srcpkgs/python-wikipedia/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wikipedia/template b/srcpkgs/python-wikipedia/template
index e6ebf65f7c2..f8a69755b74 100644
--- a/srcpkgs/python-wikipedia/template
+++ b/srcpkgs/python-wikipedia/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wikipedia'
 pkgname=python-wikipedia
 version=1.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="wikipedia-${version}"
 build_style=python-module

From c58e9b08de69bd19aa3bcf91ec42d1b626a2a6bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 567/874] python-wrapt: rebuild for Python 3.8.

---
 srcpkgs/python-wrapt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wrapt/template b/srcpkgs/python-wrapt/template
index a3a237aa08d..c2d2850bf5a 100644
--- a/srcpkgs/python-wrapt/template
+++ b/srcpkgs/python-wrapt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wrapt'
 pkgname=python-wrapt
 version=1.10.11
-revision=3
+revision=4
 wrksrc="wrapt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From f65cbaf6b92acb78d54d3b498924285bce64fb66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 568/874] python-wsproto: rebuild for Python 3.8.

---
 srcpkgs/python-wsproto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wsproto/template b/srcpkgs/python-wsproto/template
index 88b08f796d4..a93a799be0a 100644
--- a/srcpkgs/python-wsproto/template
+++ b/srcpkgs/python-wsproto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wsproto'
 pkgname=python-wsproto
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="wsproto-${version}"
 build_style=python-module

From 1b60fb796f8ac377a2e31dc0503df215c27fc59e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 569/874] python-xapp: rebuild for Python 3.8.

---
 srcpkgs/python-xapp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xapp/template b/srcpkgs/python-xapp/template
index 9b6938113f2..798041eb946 100644
--- a/srcpkgs/python-xapp/template
+++ b/srcpkgs/python-xapp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xapp'
 pkgname=python-xapp
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="xapp"

From 415bec8de0abe2772c407df9db650bd06ba122ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 570/874] python-xdg: rebuild for Python 3.8.

---
 srcpkgs/python-xdg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xdg/template b/srcpkgs/python-xdg/template
index afa6c180043..4e819c8bec7 100644
--- a/srcpkgs/python-xdg/template
+++ b/srcpkgs/python-xdg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xdg'
 pkgname=python-xdg
 version=0.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyxdg-${version}"
 build_style=python-module

From 4518feeb499caa6631ef29ead0439c5bcc67a9ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 571/874] python-xlib: rebuild for Python 3.8.

---
 srcpkgs/python-xlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xlib/template b/srcpkgs/python-xlib/template
index 1f97c4117d4..e67d1d82e73 100644
--- a/srcpkgs/python-xlib/template
+++ b/srcpkgs/python-xlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xlib'
 pkgname=python-xlib
 version=0.25
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="Xlib"

From 1cef928049b5216468e701acce714fc14d79694f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 572/874] python-xmldiff: rebuild for Python 3.8.

---
 srcpkgs/python-xmldiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmldiff/template b/srcpkgs/python-xmldiff/template
index a0a8004ea7b..4f3cc2d27b7 100644
--- a/srcpkgs/python-xmldiff/template
+++ b/srcpkgs/python-xmldiff/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmldiff'
 pkgname=python-xmldiff
 version=2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmldiff-${version}"
 build_style=python-module

From cefcbea2ec7904b0c1ad16ec32963bf430b27c4a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 573/874] python-xmltodict: rebuild for Python 3.8.

---
 srcpkgs/python-xmltodict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmltodict/template b/srcpkgs/python-xmltodict/template
index a48e6d46aa6..b3d7ef042e8 100644
--- a/srcpkgs/python-xmltodict/template
+++ b/srcpkgs/python-xmltodict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmltodict'
 pkgname=python-xmltodict
 version=0.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmltodict-${version}"
 build_style=python-module

From 889d5fe9fe9f1830bec336ac52bd8bd32f47f0a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 574/874] python-yaml: rebuild for Python 3.8.

---
 srcpkgs/python-yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yaml/template b/srcpkgs/python-yaml/template
index 8a7caf1d99e..e3bad0ae59b 100644
--- a/srcpkgs/python-yaml/template
+++ b/srcpkgs/python-yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yaml'
 pkgname=python-yaml
 version=5.1.2
-revision=1
+revision=2
 wrksrc="PyYAML-${version}"
 build_style=python-module
 pycompile_module="yaml"

From 1b3e89ca272ae28a62064bf83eaff84332307682 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 575/874] python-yamllint: rebuild for Python 3.8.

---
 srcpkgs/python-yamllint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yamllint/template b/srcpkgs/python-yamllint/template
index 1a05e1043bb..d0b51ba637a 100644
--- a/srcpkgs/python-yamllint/template
+++ b/srcpkgs/python-yamllint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yamllint'
 pkgname=python-yamllint
 version=1.15.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="yamllint-${version}"
 build_style=python-module

From b233bcb50542e39ba02899ef3d1b833e385204e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 576/874] python3-yarl: rebuild for Python 3.8.

---
 srcpkgs/python3-yarl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-yarl/template b/srcpkgs/python3-yarl/template
index 222f176cfcf..ecb79a3cc9c 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.3.0
-revision=2
+revision=3
 wrksrc="yarl-${version}"
 build_style=python3-module
 pycompile_module="yarl"

From 484c2559f18644c63342db467c703e2e998e89b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 577/874] python-zc.lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-zc.lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zc.lockfile/template b/srcpkgs/python-zc.lockfile/template
index cb0bee99506..b77071af04f 100644
--- a/srcpkgs/python-zc.lockfile/template
+++ b/srcpkgs/python-zc.lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zc.lockfile'
 pkgname=python-zc.lockfile
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 364e398c8dd7e3dd141ceb1c22626ecf2a5b9b32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 578/874] python3-zeroconf: rebuild for Python 3.8.

---
 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 497a8bc6b69..dda37bd3dc4 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.23.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-zeroconf-${version}"
 build_style=python3-module

From 22b5d6236d8f0ff0050135b2e77eca608519b1ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 579/874] python3-zipp: rebuild for Python 3.8.

---
 srcpkgs/python3-zipp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-zipp/template b/srcpkgs/python3-zipp/template
index 8445c10825c..ba682915beb 100644
--- a/srcpkgs/python3-zipp/template
+++ b/srcpkgs/python3-zipp/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-zipp'
 pkgname=python3-zipp
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="zipp-${version}"
 build_style=python3-module

From c5c37d6e890a553e458333e610ab56b1a5c9b516 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 580/874] python-zipstream: rebuild for Python 3.8.

---
 srcpkgs/python-zipstream/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zipstream/template b/srcpkgs/python-zipstream/template
index 89079e21b22..2c7390127ac 100644
--- a/srcpkgs/python-zipstream/template
+++ b/srcpkgs/python-zipstream/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zipstream'
 pkgname=python-zipstream
 version=1.1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="python-zipstream-${version}"
 build_style=python-module

From bc31e25a00839c9d3cc5ac70edf0485ee4b21d4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 581/874] python3-zope.cachedescriptors: rebuild for Python
 3.8.

---
 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 bdd5ef41e21..1f1fae5b27b 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.3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="zope.cachedescriptors-${version}"
 build_style=python3-module

From 40a63988f3c2db41391f0a7ab6cde24a9b79ed05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 582/874] python-zope.component: rebuild for Python 3.8.

---
 srcpkgs/python-zope.component/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.component/template b/srcpkgs/python-zope.component/template
index 7cea5b9d71d..66ef109a4aa 100644
--- a/srcpkgs/python-zope.component/template
+++ b/srcpkgs/python-zope.component/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.component'
 pkgname=python-zope.component
 version=4.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 799496c35db93c88e6d00e4b41eeca8b4af5b188 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 583/874] python-zope.event: rebuild for Python 3.8.

---
 srcpkgs/python-zope.event/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.event/template b/srcpkgs/python-zope.event/template
index 3c7fb8dfd6e..6518cb4529b 100644
--- a/srcpkgs/python-zope.event/template
+++ b/srcpkgs/python-zope.event/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.event'
 pkgname=python-zope.event
 version=4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 9d77b16ecad39877131af8a9c01ea925b33737b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 584/874] python-zope.interface: rebuild for Python 3.8.

---
 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 d3c57be85f7..1dbcbecd377 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=4.6.0
-revision=2
+revision=3
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="zope"

From e5cb80612a71c54facf607c52c7a385badeba668 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 585/874] python3-pivy: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-pivy/patches/73cd928f.patch | 36 +++++++++++++++++++++
 srcpkgs/python3-pivy/template               |  2 +-
 2 files changed, 37 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/python3-pivy/patches/73cd928f.patch

diff --git a/srcpkgs/python3-pivy/patches/73cd928f.patch b/srcpkgs/python3-pivy/patches/73cd928f.patch
new file mode 100644
index 00000000000..edff803822a
--- /dev/null
+++ b/srcpkgs/python3-pivy/patches/73cd928f.patch
@@ -0,0 +1,36 @@
+From 73cd928fe1a9c2abbe6f28844a7fc695ad11d7cf Mon Sep 17 00:00:00 2001
+From: Peter Lama <peterldev94@gmail.com>
+Date: Fri, 24 Aug 2018 17:25:47 -0700
+Subject: [PATCH] Fix issue #39: PyUnicode_AsUTF8 returns const char*
+
+Even with python 2, it doesn't seem like char* is needed
+
+--- Inventor/nodes/SoMarkerSet.i
++++ Inventor/nodes/SoMarkerSet.i
+@@ -5,7 +5,7 @@
+         short WIDTH, HEIGHT;
+         size.getValue(WIDTH, HEIGHT);
+         short BYTEWIDTH = (WIDTH + 7) / 2;
+-        char* coin_marker;
++        const char* coin_marker;
+ #ifdef PY_2
+         if (PyString_Check(string))
+         {
+@@ -49,4 +49,4 @@
+         delete[] bitmapbytes;
+         bitmapbytes = NULL;
+     }
+-}
+\ No newline at end of file
++}
+--- Inventor/sensors/SoSensor.i
++++ Inventor/sensors/SoSensor.i
+@@ -4,7 +4,7 @@ SoSensorPythonCB(void * data, SoSensor * sensor)
+ {
+   PyGILState_STATE gil = PyGILState_Ensure();
+   swig_type_info * swig_type = 0;
+-  char * sensor_cast_name = NULL;
++  const char * sensor_cast_name = NULL;
+   PyObject * func, * arglist;
+   PyObject * result, * pysensor;
+ 
diff --git a/srcpkgs/python3-pivy/template b/srcpkgs/python3-pivy/template
index 4a733e805e3..9caa13837e2 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.4
-revision=1
+revision=2
 wrksrc="Coin3D-${pkgname#python3-}-a84100beff22"
 build_style=python3-module
 pycompile_module="pivy"

From 7d8cfe1721327d4b8695c6abc56d012b27989c84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 586/874] python-tweepy: update to 3.8.0.

---
 srcpkgs/python-tweepy/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python-tweepy/template b/srcpkgs/python-tweepy/template
index ef61039dac5..4605bbf83ea 100644
--- a/srcpkgs/python-tweepy/template
+++ b/srcpkgs/python-tweepy/template
@@ -1,6 +1,6 @@
 # Template file for 'python-tweepy'
 pkgname=python-tweepy
-version=3.7.0
+version=3.8.0
 revision=1
 archs=noarch
 wrksrc="tweepy-${version}"
@@ -14,8 +14,8 @@ license="MIT"
 homepage="https://github.com/tweepy/tweepy"
 distfiles="${PYPI_SITE}/t/tweepy/tweepy-${version}.tar.gz
  https://raw.githubusercontent.com/tweepy/tweepy/master/LICENSE>LICENSE.txt"
-checksum="fe85a79f58a01dd335968523b91c5fce760e7fe78bf25a6e71c72204fe499d0b
- deeeae0dcc22dbf108a801b8dc4e484bcc1bfb541b1a4f4615ab3e61def44fb5"
+checksum="8abd828ba51a85a2b5bb7373715d6d3bb32d18ac624e3a4db02e4ef8ab48316b
+ bf9bc5b9dcb8421bb3c342bb7fd29194688e1262b50766bd71b21a07461e74b7"
 
 post_install() {
 	vlicense ../LICENSE.txt

From 5f654f2f6a7eca9a50adb53af9037466723dd82c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 587/874] Electron-Cash: rebuild for Python 3.8.

---
 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 2db05c94832..08670c5f08d 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.0.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electroncash electroncash_gui electroncash_plugins"

From 931f125f8699e33cb16c8ed43a5e910d0056db6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 588/874] OpenLP: rebuild for Python 3.8.

---
 srcpkgs/OpenLP/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/OpenLP/template b/srcpkgs/OpenLP/template
index fb417f8d05e..ccae6d0282e 100644
--- a/srcpkgs/OpenLP/template
+++ b/srcpkgs/OpenLP/template
@@ -1,7 +1,7 @@
 # Template file for 'OpenLP'
 pkgname=OpenLP
 version=2.4.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="openlp"

From 21b02367e81c8635c88830fd008c0ba44ffcccff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 589/874] PhotoCollage: rebuild for Python 3.8.

---
 srcpkgs/PhotoCollage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/PhotoCollage/template b/srcpkgs/PhotoCollage/template
index 2c55ca87ce0..9997d1e7d98 100644
--- a/srcpkgs/PhotoCollage/template
+++ b/srcpkgs/PhotoCollage/template
@@ -1,7 +1,7 @@
 # Template file for 'PhotoCollage'
 pkgname=PhotoCollage
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="photocollage"

From 49dffe4070ca7dff3c38379b8df9d9b0d04395ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 590/874] ReText: rebuild for Python 3.8.

---
 srcpkgs/ReText/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ReText/template b/srcpkgs/ReText/template
index cc092ee6a36..a6551fbdf7c 100644
--- a/srcpkgs/ReText/template
+++ b/srcpkgs/ReText/template
@@ -1,7 +1,7 @@
 # Template file for 'ReText'
 pkgname=ReText
 version=7.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ReText"

From 225e30aaea5daebb0d4fc36c6d73424ad6fb1ec5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 591/874] SoapySDR: rebuild for Python 3.8.

---
 srcpkgs/SoapySDR/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/SoapySDR/template b/srcpkgs/SoapySDR/template
index 1bb66ce0689..bcfe45dc78a 100644
--- a/srcpkgs/SoapySDR/template
+++ b/srcpkgs/SoapySDR/template
@@ -1,7 +1,7 @@
 # Template file for 'SoapySDR'
 pkgname=SoapySDR
 version=0.7.1
-revision=1
+revision=2
 wrksrc="${pkgname}-soapy-sdr-${version}"
 build_style=cmake
 pycompile_module="SoapySDR.py"

From 2e64750e75e61296567ebb0053c46081cbab8e13 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 592/874] Solaar: rebuild for Python 3.8.

---
 srcpkgs/Solaar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Solaar/template b/srcpkgs/Solaar/template
index 2e8f4112e0e..86cab83d497 100644
--- a/srcpkgs/Solaar/template
+++ b/srcpkgs/Solaar/template
@@ -1,7 +1,7 @@
 # Template file for 'Solaar'
 pkgname=Solaar
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="hidapi logitech_receiver solaar"

From 21eb59c332d0765268a9b3a5442e4e265144a4ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 593/874] Trimage: rebuild for Python 3.8.

---
 srcpkgs/Trimage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Trimage/template b/srcpkgs/Trimage/template
index 14fc1d1bd1c..c9f4b047ccd 100644
--- a/srcpkgs/Trimage/template
+++ b/srcpkgs/Trimage/template
@@ -1,7 +1,7 @@
 # Template file for 'Trimage'
 pkgname=Trimage
 version=1.0.6
-revision=1
+revision=2
 wrksrc="Trimage-${version}"
 build_style=python3-module
 hostmakedepends="python3"

From 51428dec66979d2e47361fb2af5e7ad35acbe530 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 594/874] TwitchNotifier: rebuild for Python 3.8.

---
 srcpkgs/TwitchNotifier/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/TwitchNotifier/template b/srcpkgs/TwitchNotifier/template
index 01153bcc710..3bbba11db49 100644
--- a/srcpkgs/TwitchNotifier/template
+++ b/srcpkgs/TwitchNotifier/template
@@ -1,7 +1,7 @@
 # Template file for 'TwitchNotifier'
 pkgname=TwitchNotifier
 version=0.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-devel"
 makedepends="python3-devel"

From 18ad02f16088cf17e66f60da882ead88b4872617 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 595/874] Uranium: rebuild for Python 3.8.

---
 srcpkgs/Uranium/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Uranium/template b/srcpkgs/Uranium/template
index 193d5e211df..7a9509c2079 100644
--- a/srcpkgs/Uranium/template
+++ b/srcpkgs/Uranium/template
@@ -1,7 +1,7 @@
 # Template file for 'Uranium'
 pkgname=Uranium
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=cmake
 pycompile_module="UM"

From 1bfabd6cc63a8b03b99500dc59e362061f7549e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 596/874] afew: rebuild for Python 3.8.

---
 srcpkgs/afew/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/afew/template b/srcpkgs/afew/template
index a9156bbc902..f4b10098e66 100644
--- a/srcpkgs/afew/template
+++ b/srcpkgs/afew/template
@@ -1,7 +1,7 @@
 # Template file for 'afew'
 pkgname=afew
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="afew"

From f0695c0a0e527ead9d61cbbd52e872f5a6e7f422 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 597/874] alot: rebuild for Python 3.8.

---
 srcpkgs/alot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/alot/template b/srcpkgs/alot/template
index 4ff75637282..c8e29e36297 100644
--- a/srcpkgs/alot/template
+++ b/srcpkgs/alot/template
@@ -1,7 +1,7 @@
 # Template file for 'alot'
 pkgname=alot
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="alot"

From ec032cb507b4dca0034eab7e0281dedd3b7dc418 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 598/874] ansible: rebuild for Python 3.8.

---
 srcpkgs/ansible/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ansible/template b/srcpkgs/ansible/template
index 413e6f8803e..773f890e114 100644
--- a/srcpkgs/ansible/template
+++ b/srcpkgs/ansible/template
@@ -1,7 +1,7 @@
 # Template file for 'ansible'
 pkgname=ansible
 version=2.8.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ansible"

From a97554cec966a402d73b894865fe2d37f1833cec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 599/874] apparmor: rebuild for Python 3.8.

---
 srcpkgs/apparmor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/apparmor/template b/srcpkgs/apparmor/template
index c0ef28bae03..e4f8e3fb3ae 100644
--- a/srcpkgs/apparmor/template
+++ b/srcpkgs/apparmor/template
@@ -1,7 +1,7 @@
 # Template file for 'apparmor'
 pkgname=apparmor
 version=2.13.3
-revision=1
+revision=2
 wrksrc="${pkgname}-v${version}"
 build_wrksrc=libraries/libapparmor
 build_style=gnu-configure

From 57116ea3c564f2a1852b8583df85c35aefe177a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 600/874] arandr: rebuild for Python 3.8.

---
 srcpkgs/arandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/arandr/template b/srcpkgs/arandr/template
index 71c8cbcd6ed..610dbc28bca 100644
--- a/srcpkgs/arandr/template
+++ b/srcpkgs/arandr/template
@@ -1,7 +1,7 @@
 # Template file for 'arandr'
 pkgname=arandr
 version=0.1.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenlayout"

From 4dbfc32dae63dc77f95207dc5aa5a79d26d2c9f0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 601/874] asciinema: rebuild for Python 3.8.

---
 srcpkgs/asciinema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/asciinema/template b/srcpkgs/asciinema/template
index 961b2756301..38b8871753c 100644
--- a/srcpkgs/asciinema/template
+++ b/srcpkgs/asciinema/template
@@ -1,7 +1,7 @@
 # Template file for 'asciinema'
 pkgname=asciinema
 version=2.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="asciinema"

From 956b672f4c6db0ea67d9ad05a8308ec5ea193930 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 602/874] attic: rebuild for Python 3.8.

---
 srcpkgs/attic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/attic/template b/srcpkgs/attic/template
index 533ef7377bc..ed454302ce4 100644
--- a/srcpkgs/attic/template
+++ b/srcpkgs/attic/template
@@ -1,7 +1,7 @@
 # Template file for 'attic'
 pkgname=attic
 version=0.16
-revision=14
+revision=15
 wrksrc="Attic-$version"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel python3-Sphinx"

From 3a21ab47b75c96c91b8447979356e5d4d4027fd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 603/874] autorandr: rebuild for Python 3.8.

---
 srcpkgs/autorandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/autorandr/template b/srcpkgs/autorandr/template
index bf38b833632..7f9796be18f 100644
--- a/srcpkgs/autorandr/template
+++ b/srcpkgs/autorandr/template
@@ -1,7 +1,7 @@
 # Template file for 'autorandr'
 pkgname=autorandr
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="autorandr.py"

From ca443f3bf2b2ea4c91fa81f47ea823293476950b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 604/874] avideo: rebuild for Python 3.8.

---
 srcpkgs/avideo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/avideo/template b/srcpkgs/avideo/template
index e4d004aafff..6430d391286 100644
--- a/srcpkgs/avideo/template
+++ b/srcpkgs/avideo/template
@@ -1,7 +1,7 @@
 # Template file for 'avideo'
 pkgname=avideo
 version=2017.9.27
-revision=3
+revision=4
 archs=noarch
 wrksrc="avideo"
 build_style=python3-module

From b1abf9d1270b34913e7bd6dbfcd004dba8a8c5ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 605/874] aws-cli: rebuild for Python 3.8.

---
 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 4e5e200e3f9..4328e203c3c 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.16.253
-revision=1
+revision=2
 archs=noarch
 wrksrc="aws-cli-${version}"
 build_style=python3-module

From af6fd86e4f623114e23d8cd19217a8ba196231c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 606/874] bandit: rebuild for Python 3.8.

---
 srcpkgs/bandit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bandit/template b/srcpkgs/bandit/template
index e6c1aa52d7c..d29873ecf61 100644
--- a/srcpkgs/bandit/template
+++ b/srcpkgs/bandit/template
@@ -1,7 +1,7 @@
 # Template file for 'bandit'
 pkgname=bandit
 version=1.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="bandit"

From acb296380ef65f2682ec382f88706be8dc3bf79f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 607/874] beancount: rebuild for Python 3.8.

---
 srcpkgs/beancount/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beancount/template b/srcpkgs/beancount/template
index b1e2a121668..0ba68fc8f4e 100644
--- a/srcpkgs/beancount/template
+++ b/srcpkgs/beancount/template
@@ -1,7 +1,7 @@
 # Template file for 'beancount'
 pkgname=beancount
 version=2.2.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="beancount"
 hostmakedepends="python3-setuptools"

From 4d085c5998e4472b4e7b4fceabecba11440daceb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 608/874] beets: rebuild for Python 3.8.

---
 srcpkgs/beets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beets/template b/srcpkgs/beets/template
index 7dab56ceef8..975e6ec9f86 100644
--- a/srcpkgs/beets/template
+++ b/srcpkgs/beets/template
@@ -1,7 +1,7 @@
 # Template file for 'beets'
 pkgname=beets
 version=1.4.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="beets beetsplug"

From 1640cb62a84da8a46aff2a9c6ee5f75c0ab73224 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 609/874] black: rebuild for Python 3.8.

---
 srcpkgs/black/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/black/template b/srcpkgs/black/template
index f6d433038b9..38498a1db07 100644
--- a/srcpkgs/black/template
+++ b/srcpkgs/black/template
@@ -1,7 +1,7 @@
 # Template file for 'black'
 pkgname=black
 version=19.3b0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="black.py blib2to3"

From 5939f3d169c384cfe92957888f7b53678a69e770 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 610/874] blueman: rebuild for Python 3.8.

---
 srcpkgs/blueman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blueman/template b/srcpkgs/blueman/template
index 83f9b899583..3616aee7da3 100644
--- a/srcpkgs/blueman/template
+++ b/srcpkgs/blueman/template
@@ -1,7 +1,7 @@
 # Template file for 'blueman'
 pkgname=blueman
 version=2.1.1
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="blueman"
 configure_args="--disable-static"

From 325ad86e9fdcfc900e695cdcb3b40bc448b85d06 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 611/874] borg: rebuild for Python 3.8.

---
 srcpkgs/borg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borg/template b/srcpkgs/borg/template
index 520b1b2f65a..b69c7d3418e 100644
--- a/srcpkgs/borg/template
+++ b/srcpkgs/borg/template
@@ -1,7 +1,7 @@
 # Template file for 'borg'
 pkgname=borg
 version=1.1.10
-revision=2
+revision=3
 wrksrc="borgbackup-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel"

From 73a17277e22d3252a93a66237bf81a04393fc244 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 612/874] borgmatic: rebuild for Python 3.8.

---
 srcpkgs/borgmatic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borgmatic/template b/srcpkgs/borgmatic/template
index 8ef7c0568a6..bdc6446243c 100644
--- a/srcpkgs/borgmatic/template
+++ b/srcpkgs/borgmatic/template
@@ -1,7 +1,7 @@
 # Template file for 'borgmatic'
 pkgname=borgmatic
 version=1.3.24
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="borgmatic"

From 482c5d69113ad10842dfe91f0ac4a0631660ac77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 613/874] btrfs-backup: rebuild for Python 3.8.

---
 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 07d08a1b62b..55a3800a857 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=1
+revision=2
 wrksrc="${pkgname/-/_}-${version}"
 archs=noarch
 build_style=python3-module

From 4fce3c4f00a44852e3f9fcab80a10d4acfc04ad6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 614/874] bum: rebuild for Python 3.8.

---
 srcpkgs/bum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bum/template b/srcpkgs/bum/template
index 58d0bb2b7f7..20f200e74d6 100644
--- a/srcpkgs/bum/template
+++ b/srcpkgs/bum/template
@@ -1,7 +1,7 @@
 # Template file for 'bum'
 pkgname=bum
 version=0.1.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="bum"

From a384e5462965e984f1abca2ca12b7f62b1a415d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 615/874] caffeine-ng: rebuild for Python 3.8.

---
 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 36287fbef5b..455b2f225c4 100644
--- a/srcpkgs/caffeine-ng/template
+++ b/srcpkgs/caffeine-ng/template
@@ -1,7 +1,7 @@
 # Template file for 'caffeine-ng'
 pkgname=caffeine-ng
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="caffeine"

From b857565a7a7fddfbffbcf40b9e784593d099a0a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 616/874] cairo-dock-plugins: rebuild for Python 3.8.

---
 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 9e6149c617f..0c23a7f6928 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=11
+revision=12
 build_style=cmake
 hostmakedepends="pkg-config"
 # XXX libetpan, libdbusmenu, etc

From c0c15488d9189a782c2ab6436de598620d4d2435 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 617/874] canto-curses: rebuild for Python 3.8.

---
 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 0905972b480..4270d61c2e0 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=4
+revision=5
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel ncurses-devel readline-devel"

From a821add22450c016c7b851ee1a0309da5b5d83af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 618/874] canto-next: rebuild for Python 3.8.

---
 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 fff7e82e238..fa28bde891b 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.7
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From fa2afe1224ee7d1e031e769bf84bd596e5ac6de2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 619/874] capstone: rebuild for Python 3.8.

---
 srcpkgs/capstone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/capstone/template b/srcpkgs/capstone/template
index e13c7666ed1..fded7c7157e 100644
--- a/srcpkgs/capstone/template
+++ b/srcpkgs/capstone/template
@@ -1,7 +1,7 @@
 # Template file for 'capstone'
 pkgname=capstone
 version=4.0.1
-revision=1
+revision=2
 build_style=gnu-makefile
 make_use_env=1
 hostmakedepends="python-setuptools python3-setuptools"

From 923fca0cf844d03c602bbae81add86e8be495762 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 620/874] catfish: rebuild for Python 3.8.

---
 srcpkgs/catfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/catfish/template b/srcpkgs/catfish/template
index 1b28ffcafff..b53de6b8ea6 100644
--- a/srcpkgs/catfish/template
+++ b/srcpkgs/catfish/template
@@ -1,7 +1,7 @@
 # Template file for 'catfish'
 pkgname=catfish
 version=1.4.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="catfish catfish_lib"

From fb71b3b941c7341384c307ef6e1654b8d0b54a3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 621/874] ccsm: rebuild for Python 3.8.

---
 srcpkgs/ccsm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ccsm/template b/srcpkgs/ccsm/template
index 0421e587b23..3067003017f 100644
--- a/srcpkgs/ccsm/template
+++ b/srcpkgs/ccsm/template
@@ -1,7 +1,7 @@
 # Template file for 'ccsm'
 pkgname=ccsm
 version=0.8.16
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 hostmakedepends="automake intltool libtool pkg-config python3"

From f4212d55b3ec84e188189bc74a572c728a37c66a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 622/874] cheat: rebuild for Python 3.8.

---
 srcpkgs/cheat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cheat/template b/srcpkgs/cheat/template
index b60b4ba53b2..f1e419c3c5a 100644
--- a/srcpkgs/cheat/template
+++ b/srcpkgs/cheat/template
@@ -1,7 +1,7 @@
 # Template file for 'cheat'
 pkgname=cheat
 version=2.5.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="cheat"
 conf_files="/etc/cheat"

From eb72b0be44091e56a3e5b73cdf6d11ff80ecb8ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 623/874] clearine: rebuild for Python 3.8.

---
 srcpkgs/clearine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/clearine/template b/srcpkgs/clearine/template
index 419bb3c4550..539d494b79b 100644
--- a/srcpkgs/clearine/template
+++ b/srcpkgs/clearine/template
@@ -1,7 +1,7 @@
 # Template file for 'clearine'
 pkgname=clearine
 version=0.7
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="Clearine"
 hostmakedepends="python3-setuptools"

From ca7e63827b68cba4586e81da6e622e70addc8b7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 624/874] coccigrep: rebuild for Python 3.8.

---
 srcpkgs/coccigrep/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/coccigrep/template b/srcpkgs/coccigrep/template
index 736f16a458e..a02c2f78bb2 100644
--- a/srcpkgs/coccigrep/template
+++ b/srcpkgs/coccigrep/template
@@ -1,7 +1,7 @@
 # Template file for 'coccigrep'
 pkgname=coccigrep
 version=1.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coccigrep"

From 8b0269365914ae7e030b07b30f4a76f2f1726270 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 625/874] compizconfig-python: rebuild for Python 3.8.

---
 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 b9d9ce2892b..77d53c97f46 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.16
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static"
 hostmakedepends="automake intltool libtool pkg-config glib-devel gettext-devel python3-Cython"

From c7955381746f2b68e5bb140afe81526fd62a2d16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 626/874] coursera-dl: rebuild for Python 3.8.

---
 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 0dfdd73083f..2b09e53d836 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.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coursera"

From 1bf8d7143694f636186cfbdcf357f9b86f5a635b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 627/874] cozy: rebuild for Python 3.8.

---
 srcpkgs/cozy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cozy/template b/srcpkgs/cozy/template
index a35aff61f37..2515388da18 100644
--- a/srcpkgs/cozy/template
+++ b/srcpkgs/cozy/template
@@ -1,7 +1,7 @@
 # Template file for 'cozy'
 pkgname=cozy
 version=0.6.8
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 pycompile_module="cozy"

From 7b58e6f69ae54c84b50dfe4d6041cf861a698c60 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 628/874] cpuset: rebuild for Python 3.8.

---
 srcpkgs/cpuset/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cpuset/template b/srcpkgs/cpuset/template
index cf3910d2304..12b54631617 100644
--- a/srcpkgs/cpuset/template
+++ b/srcpkgs/cpuset/template
@@ -1,7 +1,7 @@
 # Template file for 'cpuset'
 pkgname=cpuset
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="cpuset"

From a542aca478f0e84bbc23d3fd91a236635712a9f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 629/874] ctop: rebuild for Python 3.8.

---
 srcpkgs/ctop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ctop/template b/srcpkgs/ctop/template
index b8ea58515b2..5231b4a4cb3 100644
--- a/srcpkgs/ctop/template
+++ b/srcpkgs/ctop/template
@@ -1,7 +1,7 @@
 # Template file for 'ctop'
 pkgname=ctop
 version=1.0.0
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="cgroup_top.py"

From b3065c411c5e0b3e48432c6901e1e7fb20eb00d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 630/874] cura: rebuild for Python 3.8.

---
 srcpkgs/cura/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cura/template b/srcpkgs/cura/template
index 31318e5aecf..ab5cd315f21 100644
--- a/srcpkgs/cura/template
+++ b/srcpkgs/cura/template
@@ -1,7 +1,7 @@
 # Template file for 'cura'
 pkgname=cura
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Cura-${version}"
 build_style=cmake

From 9f4eb67830feb2103a78edc7651e1f73cc606074 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 631/874] curseradio: rebuild for Python 3.8.

---
 srcpkgs/curseradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/curseradio/template b/srcpkgs/curseradio/template
index 4fe2306364a..f5afe3bba34 100644
--- a/srcpkgs/curseradio/template
+++ b/srcpkgs/curseradio/template
@@ -1,7 +1,7 @@
 # Template file for 'curseradio'
 pkgname=curseradio
 version=0.0.20171017
-revision=3
+revision=4
 archs=noarch
 _commit=1bd4bd0faeec675e0647bac9a100b526cba19f8d
 wrksrc="curseradio-${_commit}"

From fa4e6156adf5c317bb85ee1d8271c9e6ce57b3e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 632/874] d-feet: rebuild for Python 3.8.

---
 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 6930eddf582..7f7d593f30a 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.15
-revision=1
+revision=2
 build_style=meson
 maintainer="Enno Boland <gottox@voidlinux.org>"
 hostmakedepends="pkg-config intltool itstool python3-pycodestyle"

From d6145053ac873c90f6383dee8ec4d696463928f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 633/874] deluge: rebuild for Python 3.8.

---
 srcpkgs/deluge/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/deluge/template b/srcpkgs/deluge/template
index 6dc7f26184d..8148c68033c 100644
--- a/srcpkgs/deluge/template
+++ b/srcpkgs/deluge/template
@@ -1,7 +1,7 @@
 # Template file for 'deluge'
 pkgname=deluge
 version=2.0.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="deluge"

From 0b2691a90e5de63e49a3c3f3adfa709d618b0a05 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 634/874] devedeng: rebuild for Python 3.8.

---
 srcpkgs/devedeng/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/devedeng/template b/srcpkgs/devedeng/template
index d971b2e207b..2d0516cedd3 100644
--- a/srcpkgs/devedeng/template
+++ b/srcpkgs/devedeng/template
@@ -1,7 +1,7 @@
 # Template file for 'devedeng'
 pkgname=devedeng
 version=4.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="devedeng"

From 8b7c3bcfced7b21089b0a64ac1c375eb973af343 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 635/874] distcc: rebuild for Python 3.8.

---
 srcpkgs/distcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/distcc/template b/srcpkgs/distcc/template
index ded4255becd..4d6a450533f 100644
--- a/srcpkgs/distcc/template
+++ b/srcpkgs/distcc/template
@@ -1,7 +1,7 @@
 # Template file for 'distcc'
 pkgname=distcc
 version=3.3.3
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-Werror --with-gtk"
 conf_files="

From 98151a807bebdc6d5e41e0b6a1bd0d65659fbb7e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 636/874] docker-compose: rebuild for Python 3.8.

---
 srcpkgs/docker-compose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/docker-compose/template b/srcpkgs/docker-compose/template
index c3383fdf1ad..f4a34005c83 100644
--- a/srcpkgs/docker-compose/template
+++ b/srcpkgs/docker-compose/template
@@ -1,7 +1,7 @@
 # Template file for 'docker-compose'
 pkgname=docker-compose
 version=1.24.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="compose-${version}"
 build_style=python3-module

From 9dc2f62edc54b5e314c24fe7bb303496223adb45 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 637/874] edx-dl: rebuild for Python 3.8.

---
 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 209884640c6..a51c917d606 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.10
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="edx_dl"

From 6a769ff00b2fc959627e96d44172f8a656548751 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 638/874] electrum: rebuild for Python 3.8.

---
 srcpkgs/electrum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template
index 3861becdda9..7525e08e9e2 100644
--- a/srcpkgs/electrum/template
+++ b/srcpkgs/electrum/template
@@ -1,7 +1,7 @@
 # Template file for 'electrum'
 pkgname=electrum
 version=3.3.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electrum electrum_gui electrum_plugins"

From be52dccd4b30af3377095664bf239767a0f7be39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 639/874] electrum-ltc: rebuild for Python 3.8.

---
 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 ad6f745e152..cf7265fbec8 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.6.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"

From 45951afeb4bab3066e0459cf1441d9c3570c85dc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 640/874] eolie: rebuild for Python 3.8.

---
 srcpkgs/eolie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eolie/template b/srcpkgs/eolie/template
index b3da3dcd829..94514510c98 100644
--- a/srcpkgs/eolie/template
+++ b/srcpkgs/eolie/template
@@ -1,7 +1,7 @@
 # Template file for 'eolie'
 pkgname=eolie
 version=0.9.62
-revision=1
+revision=2
 _eolie_hash=bb4aad19272cc636bd17f2f6602127fe
 build_style=meson
 pycompile_module="eolie"

From ad02dba2226dbfc6b1fb5e715af8b58821cd8c07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 641/874] eyeD3: rebuild for Python 3.8.

---
 srcpkgs/eyeD3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eyeD3/template b/srcpkgs/eyeD3/template
index 7be047810bd..211553f0adb 100644
--- a/srcpkgs/eyeD3/template
+++ b/srcpkgs/eyeD3/template
@@ -1,7 +1,7 @@
 # Template file for 'eyeD3'
 pkgname=eyeD3
 version=0.8.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="eyed3"

From 5333d561e8831b7103f00f5e4564ce20bc26e9b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 642/874] fail2ban: rebuild for Python 3.8.

---
 srcpkgs/fail2ban/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 829e93385dc..361bcd12edd 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,7 +1,7 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
 version=0.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From 6ed6f50c8422b21b0f8244e983014120a3467562 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 643/874] fava: rebuild for Python 3.8.

---
 srcpkgs/fava/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fava/template b/srcpkgs/fava/template
index 24e66cac45b..890858b095b 100644
--- a/srcpkgs/fava/template
+++ b/srcpkgs/fava/template
@@ -1,7 +1,7 @@
 # Template file for 'fava'
 pkgname=fava
 version=1.11
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fava"

From cfe04c8e627d5d3626d852a05f3a87ecf053557f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 644/874] fierce: rebuild for Python 3.8.

---
 srcpkgs/fierce/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fierce/template b/srcpkgs/fierce/template
index 86dedb39ad2..86692c6457b 100644
--- a/srcpkgs/fierce/template
+++ b/srcpkgs/fierce/template
@@ -1,7 +1,7 @@
 # Template file for 'fierce'
 pkgname=fierce
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fierce"

From c67a6380bd6f21a660d10cde09cb2930536faee5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 645/874] fifengine: rebuild for Python 3.8.

---
 srcpkgs/fifengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fifengine/template b/srcpkgs/fifengine/template
index 1d4bcbb9297..871c94ad7e0 100644
--- a/srcpkgs/fifengine/template
+++ b/srcpkgs/fifengine/template
@@ -1,7 +1,7 @@
 # Template file for 'fifengine'
 pkgname=fifengine
 version=0.4.2
-revision=1
+revision=2
 build_style=cmake
 pycompile_module="fife"
 hostmakedepends="swig python3"

From 407bb3354f4705ac3e7d9c40479ff7272cbf5478 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 646/874] flake8: rebuild for Python 3.8.

---
 srcpkgs/flake8/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/flake8/template b/srcpkgs/flake8/template
index d8f2b095644..4d7ebeba176 100644
--- a/srcpkgs/flake8/template
+++ b/srcpkgs/flake8/template
@@ -1,7 +1,7 @@
 # Template file for 'flake8'
 pkgname=flake8
 version=3.7.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="flake8"

From 770a2460b2b1f167fe87687c22ab0ff3d925964d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 647/874] fontforge: fix and rebuild for Python 3.8.

---
 srcpkgs/fontforge/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/fontforge/template b/srcpkgs/fontforge/template
index 7fb02d7e371..2893bc52cfb 100644
--- a/srcpkgs/fontforge/template
+++ b/srcpkgs/fontforge/template
@@ -1,7 +1,7 @@
 # Template file for 'fontforge'
 pkgname=fontforge
 version=20190801
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake ca-certificates git libltdl-devel libtool m4
  pkg-config python3"
@@ -20,6 +20,7 @@ checksum="e4501de5bd8e7f6c68fe7d3abd4667bf44a07b981d342ffa00e8f42e155ce633
  1bf9c7eb8835e6ed94e62cb49f1141bc046c562849e52e6c3c7f1d7cfc95c7b3"
 
 pre_configure() {
+        sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION}/&-embed/g' m4/fontforge_arg_enable.m4
 	./bootstrap
 }
 

From b878e1d66ee439999393e2aa55941b07f8e6c745 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 648/874] gajim: rebuild for Python 3.8.

---
 srcpkgs/gajim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gajim/template b/srcpkgs/gajim/template
index 8c49c0cf6ef..e81015b3906 100644
--- a/srcpkgs/gajim/template
+++ b/srcpkgs/gajim/template
@@ -1,7 +1,7 @@
 # Template file for 'gajim'
 pkgname=gajim
 version=1.1.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gajim"

From e0ad178e264be367206a16d9b96524e6d37e4b22 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 649/874] gajim-omemo: rebuild for Python 3.8.

---
 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 803f94713be..64d47228496 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.6.29
-revision=1
+revision=2
 wrksrc="omemo"
 hostmakedepends="unzip"
 depends="python3 python3-setuptools python3-cryptography python3-axolotl python3-qrcode"

From 4988da06fe14563631406801f6b22795355576a4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 650/874] gallery-dl: rebuild for Python 3.8.

---
 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 a1e8c633fe3..62b338a32e3 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.10.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gallery_dl"

From 7d5c0c0d7a1dcc5f3c504ed769a3730c7d688ed3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 651/874] gandi-cli: rebuild for Python 3.8.

---
 srcpkgs/gandi-cli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gandi-cli/template b/srcpkgs/gandi-cli/template
index c5e805a09fd..4193bfe4638 100644
--- a/srcpkgs/gandi-cli/template
+++ b/srcpkgs/gandi-cli/template
@@ -1,7 +1,7 @@
 # Template file for 'gandi-cli'
 pkgname=gandi-cli
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="gandi.cli-${version}"
 build_style=python3-module

From 7ae81741d5a1d24c19e0950a8631b2afb2f66301 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 652/874] gcovr: rebuild for Python 3.8.

---
 srcpkgs/gcovr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gcovr/template b/srcpkgs/gcovr/template
index 2b9ff94bf2a..0d4addfc8a7 100644
--- a/srcpkgs/gcovr/template
+++ b/srcpkgs/gcovr/template
@@ -1,7 +1,7 @@
 # Template file for 'gcovr'
 pkgname=gcovr
 version=4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gcovr"

From ff745f27bbeb2148c202a6cfde42c27c27ffb081 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 653/874] gedit: rebuild for Python 3.8.

---
 srcpkgs/gedit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gedit/template b/srcpkgs/gedit/template
index 904d3b7c3c4..6666c331c52 100644
--- a/srcpkgs/gedit/template
+++ b/srcpkgs/gedit/template
@@ -1,7 +1,7 @@
 # Template file for 'gedit'
 pkgname=gedit
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gi/overrides"

From 6d37a1560ee94e42e383c5bc4cba87d59366a1bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 654/874] geis: rebuild for Python 3.8.

---
 srcpkgs/geis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/geis/template b/srcpkgs/geis/template
index fe31a3d2aeb..20afe76b0d8 100644
--- a/srcpkgs/geis/template
+++ b/srcpkgs/geis/template
@@ -1,7 +1,7 @@
 # Template file for 'geis'
 pkgname=geis
 version=2.2.17
-revision=4
+revision=5
 hostmakedepends="pkg-config python3-devel"
 makedepends="dbus-devel grail-devel frame-devel libXi-devel python3-devel xorg-server-devel"
 build_style="gnu-configure"

From 83ad8dc7e8dc71c64a9004e04aba36ca30c051fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 655/874] git-cola: rebuild for Python 3.8.

---
 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 7eaba90f3be..fd0bbf971d3 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.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/share/git-cola/lib"

From 69e4bac4c10842ce70ce2a1db26f883af407e79c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 656/874] git-review: rebuild for Python 3.8.

---
 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 d999dc87b16..c180cc60780 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="git_review"

From 7c0a260d7120bd5e0e4e27c6b30b83e9dfe60359 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 657/874] git-revise: rebuild for Python 3.8.

---
 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 4179a52bddc..a1bf51dc447 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.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gitrevise"

From 49a8265f4cd71c84814307928cbbd2eb33c4bbad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 658/874] gitg: rebuild for Python 3.8.

---
 srcpkgs/gitg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gitg/template b/srcpkgs/gitg/template
index e0da8e9490d..a3381fdb3a7 100644
--- a/srcpkgs/gitg/template
+++ b/srcpkgs/gitg/template
@@ -1,7 +1,7 @@
 # Template file for 'gitg'
 pkgname=gitg
 version=3.32.1
-revision=1
+revision=2
 build_style=meson
 hostmakedepends="intltool pkg-config gobject-introspection vala glib-devel"
 makedepends="gtksourceview-devel libgit2-glib-devel libgee08-devel gtkspell3-devel

From 5b5919636d70cb1259ebd7740e9b55936a7c29f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 659/874] glances: rebuild for Python 3.8.

---
 srcpkgs/glances/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glances/template b/srcpkgs/glances/template
index 6d4766493c3..753d9e20c92 100644
--- a/srcpkgs/glances/template
+++ b/srcpkgs/glances/template
@@ -1,7 +1,7 @@
 # Template file for 'glances'
 pkgname=glances
 version=3.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Glances-${version}"
 build_style=python3-module

From 8b16492c679f3eb6c6ae2d4573f9adeb356715be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 660/874] glusterfs: rebuild for Python 3.8.

---
 srcpkgs/glusterfs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glusterfs/template b/srcpkgs/glusterfs/template
index a1304e266fe..90093864286 100644
--- a/srcpkgs/glusterfs/template
+++ b/srcpkgs/glusterfs/template
@@ -1,7 +1,7 @@
 # Template file for 'glusterfs'
 pkgname=glusterfs
 version=6.5
-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 22925c23326876f7422d67e1f21f0e629b9c7ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 661/874] gnome-authenticator: rebuild for Python 3.8.

---
 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 52d161897c7..ab7c505c0fe 100644
--- a/srcpkgs/gnome-authenticator/template
+++ b/srcpkgs/gnome-authenticator/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-authenticator'
 pkgname=gnome-authenticator
 version=0.2.4
-revision=2
+revision=3
 _libgd_hash=7ae254bfc5f641c60566614e08245176f7bc5aa8
 wrksrc="Authenticator-${version}"
 build_style=meson

From 4130139a7454a2050f48c6feac4f9312c50219d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 662/874] gnome-music: rebuild for Python 3.8.

---
 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 bceb7c369c8..e2fbbcbdeca 100644
--- a/srcpkgs/gnome-music/template
+++ b/srcpkgs/gnome-music/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-music'
 pkgname=gnome-music
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gnomemusic"

From 94b0589cc1f42f2505ac86d6596ab748ab75e02f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 663/874] gnome-passbook: rebuild for Python 3.8.

---
 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 54035dc920b..89047338503 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.1
-revision=1
+revision=2
 _release_hash=0a227cfdf706f4bfcc0b782026f1aeb2
 wrksrc="passbook-${version}"
 build_style=meson

From 76dae990f2ec69291f7826391c7a375014867fb9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 664/874] gnome-passwordsafe: rebuild for Python 3.8.

---
 srcpkgs/gnome-passwordsafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnome-passwordsafe/template b/srcpkgs/gnome-passwordsafe/template
index f310ce03a08..8f1f19174d2 100644
--- a/srcpkgs/gnome-passwordsafe/template
+++ b/srcpkgs/gnome-passwordsafe/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-passwordsafe'
 pkgname=gnome-passwordsafe
 version=3.32.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="PasswordSafe-${version}"
 build_style=meson

From ebb227d14a2271cc033506f2dd54957eecc5b719 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 665/874] gns3-gui: rebuild for Python 3.8.

---
 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 38751dea59b..f4318dc6afc 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.1.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3"

From b44e9cf882e059036ed7e3834cafdf689c956e32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 666/874] gns3-net-converter: rebuild for Python 3.8.

---
 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 b9b7403e8a6..70b6c90e8c8 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=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3converter"

From eaf37536ad96d1421cc95823589d2cd21779089d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 667/874] gns3-server: rebuild for Python 3.8.

---
 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 6bd9c067b20..739c584cb7c 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.1.21
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="gns3server"
 hostmakedepends="python3-setuptools"

From 3a2540b9e2143af7b07dcaee0ed3930b9016dc1e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 668/874] gnucash: rebuild for Python 3.8.

---
 srcpkgs/gnucash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnucash/template b/srcpkgs/gnucash/template
index 68bb811fc42..d8ff0a8ec86 100644
--- a/srcpkgs/gnucash/template
+++ b/srcpkgs/gnucash/template
@@ -1,7 +1,7 @@
 # Template file for 'gnucash'
 pkgname=gnucash
 version=3.7
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DWITH_SQL=0 -DWITH_PYTHON=1"
 hostmakedepends="pkg-config guile python3 libxslt perl"

From c1420969fc916318d29dfdc3836adf0580095969 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 669/874] gom: rebuild for Python 3.8.

---
 srcpkgs/gom/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gom/template b/srcpkgs/gom/template
index 6ec2a5e338f..0b45e19def4 100644
--- a/srcpkgs/gom/template
+++ b/srcpkgs/gom/template
@@ -1,7 +1,7 @@
 # Template file for 'gom'
 pkgname=gom
 version=0.3.3
-revision=3
+revision=4
 build_style=meson
 build_helper="gir"
 configure_args="-Denable-introspection=$(vopt_if gir true false)

From e55d5d66739df70ca67793cbca3b12aa5f01e751 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 670/874] gpodder: rebuild for Python 3.8.

---
 srcpkgs/gpodder/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gpodder/template b/srcpkgs/gpodder/template
index 7c7414e19cd..5cc63ab4205 100644
--- a/srcpkgs/gpodder/template
+++ b/srcpkgs/gpodder/template
@@ -1,7 +1,7 @@
 # Template file for 'gpodder'
 pkgname=gpodder
 version=3.10.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="gpodder-${version}"
 make_check_target=unittest

From d91d30f5f2b0b5e6323da1f35eaf923fed0a111f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 671/874] gramps: rebuild for Python 3.8.

---
 srcpkgs/gramps/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gramps/template b/srcpkgs/gramps/template
index 9d1d1a4616a..5d40aeefb49 100644
--- a/srcpkgs/gramps/template
+++ b/srcpkgs/gramps/template
@@ -1,7 +1,7 @@
 # Template file for 'gramps'
 pkgname=gramps
 version=5.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gramps"

From bb3e960f11dda36c822c8bd1e8575b2a69ce9a66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 672/874] greg: rebuild for Python 3.8.

---
 srcpkgs/greg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/greg/template b/srcpkgs/greg/template
index 9c15ba82f4b..d898d5fdf61 100644
--- a/srcpkgs/greg/template
+++ b/srcpkgs/greg/template
@@ -1,7 +1,7 @@
 # Template file for 'greg'
 pkgname=greg
 version=0.4.7
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 pycompile_module="greg"

From be202bce8c20fb165e811e32683e96aae42b1452 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 673/874] gst1-python3: rebuild for Python 3.8.

---
 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 6f02f19aca3..bf946f6a8bf 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.16.1
-revision=1
+revision=2
 wrksrc="gst-python-${version}"
 build_style=meson
 pycompile_module="gi/overrides"

From b9ef9fe5fb2d7b03831106592cfae54a25c41a0f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 674/874] guake: rebuild for Python 3.8.

---
 srcpkgs/guake/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/guake/template b/srcpkgs/guake/template
index 86eaba649a7..d92fdf89355 100644
--- a/srcpkgs/guake/template
+++ b/srcpkgs/guake/template
@@ -1,7 +1,7 @@
 # Template file for 'guake'
 pkgname=guake
 version=3.6.3
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 wrksrc="Guake-${version}"

From a53d49cbf26761960b1d159a12df007b627e7650 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 675/874] gufw: rebuild for Python 3.8.

---
 srcpkgs/gufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gufw/template b/srcpkgs/gufw/template
index d2b8a4b025d..a4e7d861d71 100644
--- a/srcpkgs/gufw/template
+++ b/srcpkgs/gufw/template
@@ -1,7 +1,7 @@
 # Template file for 'gufw'
 pkgname=gufw
 version=19.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="gui-ufw-${version}"
 build_style=python3-module

From 165d3546e52431e5cb6d8f7534344eb7da2982a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 676/874] hamlib: rebuild for Python 3.8.

---
 srcpkgs/hamlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hamlib/template b/srcpkgs/hamlib/template
index c28a069cd6f..d52436c0893 100644
--- a/srcpkgs/hamlib/template
+++ b/srcpkgs/hamlib/template
@@ -1,7 +1,7 @@
 # Template file for 'hamlib'
 pkgname=hamlib
 version=3.3
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static --with-perl-binding --with-python-binding
  --with-tcl-binding --with-xml-support"

From fe67c3b8e01dac359eba93dada80286f4b7bd546 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 677/874] hangups: rebuild for Python 3.8.

---
 srcpkgs/hangups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hangups/template b/srcpkgs/hangups/template
index 0a2f2db16b4..0837a2c47c3 100644
--- a/srcpkgs/hangups/template
+++ b/srcpkgs/hangups/template
@@ -1,7 +1,7 @@
 # Template file for 'hangups'
 pkgname=hangups
 version=0.4.9
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="hangups"
 hostmakedepends="python3-setuptools"

From 54c05618d6ea2a636e7649b6dfb4df7e9097df99 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 678/874] hplip: rebuild for Python 3.8.

---
 srcpkgs/hplip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hplip/template b/srcpkgs/hplip/template
index 07a707569f6..3ef76e4591b 100644
--- a/srcpkgs/hplip/template
+++ b/srcpkgs/hplip/template
@@ -1,7 +1,7 @@
 # Template file for 'hplip'
 pkgname=hplip
 version=3.19.8
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="usr/share/hplip"
 configure_args="

From b9133921feebbc073c9d3cecdc138c34dd553caa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 679/874] httpie: rebuild for Python 3.8.

---
 srcpkgs/httpie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/httpie/template b/srcpkgs/httpie/template
index 387af8ebf05..61fc1499d35 100644
--- a/srcpkgs/httpie/template
+++ b/srcpkgs/httpie/template
@@ -1,7 +1,7 @@
 # Template file for 'httpie'
 pkgname=httpie
 version=1.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="httpie"

From 6c6626a47930ae266d4f95bc011f99e15b7237a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 680/874] ibus: rebuild for Python 3.8.

---
 srcpkgs/ibus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ibus/template b/srcpkgs/ibus/template
index 4875c7535d6..d3c35d786a4 100644
--- a/srcpkgs/ibus/template
+++ b/srcpkgs/ibus/template
@@ -1,7 +1,7 @@
 # Template file for 'ibus'
 pkgname=ibus
 version=1.5.20
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 configure_args="--enable-ui --enable-gtk3 --disable-tests

From ad8f78bd52e9d9925d746e1bbca9a926040dc866 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 681/874] iotop: rebuild for Python 3.8.

---
 srcpkgs/iotop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template
index 146a9e97791..522bf32a7c2 100644
--- a/srcpkgs/iotop/template
+++ b/srcpkgs/iotop/template
@@ -1,7 +1,7 @@
 # Template file for 'iotop'
 pkgname=iotop
 version=0.6
-revision=5
+revision=6
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From bf6b1d411e5f8d2459161a4599d66d7148220c48 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 682/874] jrnl: rebuild for Python 3.8.

---
 srcpkgs/jrnl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template
index 3d08f129885..b184ef09508 100644
--- a/srcpkgs/jrnl/template
+++ b/srcpkgs/jrnl/template
@@ -1,7 +1,7 @@
 # Template file for 'jrnl'
 pkgname=jrnl
 version=1.9.8
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="jrnl"

From 3262fda476f3282359c09dd2902deac5997a3394 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 683/874] khal: rebuild for Python 3.8.

---
 srcpkgs/khal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khal/template b/srcpkgs/khal/template
index 39d08a66ba8..a73516695bf 100644
--- a/srcpkgs/khal/template
+++ b/srcpkgs/khal/template
@@ -1,7 +1,7 @@
 # Template file for 'khal'
 pkgname=khal
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khal"

From be7f25caca1d74c5f9f58c4cc40c3f3f889971d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 684/874] khard: rebuild for Python 3.8.

---
 srcpkgs/khard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khard/template b/srcpkgs/khard/template
index 6c6f3024be1..3ec9f398d99 100644
--- a/srcpkgs/khard/template
+++ b/srcpkgs/khard/template
@@ -1,7 +1,7 @@
 # Template file for 'khard'
 pkgname=khard
 version=0.14.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khard"

From 0509f15447526a6132348baf9eb600d22a0c20f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 685/874] lfm: rebuild for Python 3.8.

---
 srcpkgs/lfm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lfm/template b/srcpkgs/lfm/template
index 0a0a3b4f563..1e0e7cf29fa 100644
--- a/srcpkgs/lfm/template
+++ b/srcpkgs/lfm/template
@@ -1,7 +1,7 @@
 # Template file for 'lfm'
 pkgname=lfm
 version=3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 9ac423037b0a4806134116f0b6501d27f2bb3047 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 686/874] libArcus: rebuild for Python 3.8.

---
 srcpkgs/libArcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libArcus/template b/srcpkgs/libArcus/template
index 8e6c97ada21..d2ffda576d4 100644
--- a/srcpkgs/libArcus/template
+++ b/srcpkgs/libArcus/template
@@ -1,7 +1,7 @@
 # Template file for 'libArcus'
 pkgname=libArcus
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DBUILD_EXAMPLES=OFF"
 hostmakedepends="protobuf python3-sip-devel"

From 8a5c0bc1b4d750fbb633dcfb68645bdb8e23ac37 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 687/874] libSavitar: rebuild for Python 3.8.

---
 srcpkgs/libSavitar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libSavitar/template b/srcpkgs/libSavitar/template
index a9d3020158f..213f02f4d65 100644
--- a/srcpkgs/libSavitar/template
+++ b/srcpkgs/libSavitar/template
@@ -1,7 +1,7 @@
 # Template file for 'libSavitar'
 pkgname=libSavitar
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 hostmakedepends="python3"
 makedepends="python3-sip-devel python3-devel pugixml-devel"

From 888da49c1bb8061c80359b4015485b151f0d74d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 688/874] libaccounts-glib: rebuild for Python 3.8.

---
 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 717be24f209..239f9307261 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=2
+revision=3
 wrksrc="${pkgname}-VERSION_${version}-8948717702424ce15f4e23e5db2c8ce0799ec120"
 build_style=meson
 hostmakedepends="gtk-doc pkg-config glib-devel gobject-introspection vala"

From bd98c3c06982e10c3f9df1df66d5b04f1a5ef434 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 689/874] libblockdev: rebuild for Python 3.8.

---
 srcpkgs/libblockdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libblockdev/template b/srcpkgs/libblockdev/template
index 1df156e3c5b..ff20fc70618 100644
--- a/srcpkgs/libblockdev/template
+++ b/srcpkgs/libblockdev/template
@@ -1,7 +1,7 @@
 # Template file for 'libblockdev'
 pkgname=libblockdev
 version=2.21
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="cryptsetup-devel device-mapper-devel dmraid-devel libbytesize-devel

From 41b298fd633e7e588071f06e8d421ed9b2c21a8c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 690/874] libbytesize: rebuild for Python 3.8.

---
 srcpkgs/libbytesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libbytesize/template b/srcpkgs/libbytesize/template
index ee1862d889d..e07cdf29a82 100644
--- a/srcpkgs/libbytesize/template
+++ b/srcpkgs/libbytesize/template
@@ -1,7 +1,7 @@
 # Template file for 'libbytesize'
 pkgname=libbytesize
 version=1.4
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python3"
 makedepends="mpfr-devel pcre-devel"

From bdb495aaf63cb8b79a83eda9623e54e67de33d75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 691/874] libcap-ng: rebuild for Python 3.8.

---
 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 f462636c4c1..c6ec4f0a216 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.7.10
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-python --without-python3"
 short_desc="Alternate POSIX capabilities library"

From 64a29440ad0bb81db7db97e461b4b68478993d17 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 692/874] libffado: rebuild for Python 3.8.

---
 srcpkgs/libffado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libffado/template b/srcpkgs/libffado/template
index a9b6a5ec6a8..d566806bd82 100644
--- a/srcpkgs/libffado/template
+++ b/srcpkgs/libffado/template
@@ -1,7 +1,7 @@
 # Template file for 'libffado'
 pkgname=libffado
 version=2.4.1
-revision=1
+revision=2
 build_style=scons
 make_build_args="PREFIX=/usr MANDIR=/usr/share/man
  UDEVDIR=/usr/lib/udev/rules.d CUSTOM_ENV=1 BUILD_TESTS=0

From 3ac32b19e51680d2330b26da6cb8d640904fcb75 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 693/874] libgit2-glib: rebuild for Python 3.8.

---
 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 05389a18258..ce68cb35d66 100644
--- a/srcpkgs/libgit2-glib/template
+++ b/srcpkgs/libgit2-glib/template
@@ -1,7 +1,7 @@
 # Template file for 'libgit2-glib'
 pkgname=libgit2-glib
 version=0.28.0.1
-revision=1
+revision=2
 build_style=meson
 build_helper="gir"
 configure_args="-Dintrospection=$(vopt_if gir true false)

From 6950f9e7571c268c087d93d7e94d169a8fb8291b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 694/874] libixion: rebuild for Python 3.8.

---
 srcpkgs/libixion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libixion/template b/srcpkgs/libixion/template
index 5d2c58ee7c0..dbc05d8b9c1 100644
--- a/srcpkgs/libixion/template
+++ b/srcpkgs/libixion/template
@@ -2,7 +2,7 @@
 pkgname=libixion
 reverts="0.15.0_1"
 version=0.14.1
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="boost-devel mdds python3-devel"

From 45a847c34a550d9cc64985d24ef9b306aade5790 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 695/874] liblouis: rebuild for Python 3.8.

---
 srcpkgs/liblouis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liblouis/template b/srcpkgs/liblouis/template
index 77194ad8820..13c29b62b21 100644
--- a/srcpkgs/liblouis/template
+++ b/srcpkgs/liblouis/template
@@ -1,7 +1,7 @@
 # Template file for 'liblouis'
 pkgname=liblouis
 version=3.9.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--enable-ucs4"
 pycompile_module="louis"

From f79d54ca6d5162f4f17a9cae76f0bd941deaf438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 696/874] opencv: rebuild for Python 3.8.

---
 srcpkgs/opencv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/opencv/template b/srcpkgs/opencv/template
index fcc38299f23..474b77be181 100644
--- a/srcpkgs/opencv/template
+++ b/srcpkgs/opencv/template
@@ -1,7 +1,7 @@
 # Template file for 'opencv'
 pkgname=opencv
 version=3.4.5
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_PRECOMPILED_HEADERS=OFF -DWITH_OPENMP=ON
  -DWITH_OPENCL=ON -DENABLE_CXX11=ON -DOPENCV_SKIP_PYTHON_LOADER=ON

From f3399fca6f67a8990fa1adc144bd949c0a5c66c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 697/874] libopenshot: rebuild for Python 3.8.

---
 srcpkgs/libopenshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libopenshot/template b/srcpkgs/libopenshot/template
index e1ac18faf93..dab1f2ae1e3 100644
--- a/srcpkgs/libopenshot/template
+++ b/srcpkgs/libopenshot/template
@@ -1,7 +1,7 @@
 # Template file for 'libopenshot'
 pkgname=libopenshot
 version=0.2.3
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 build_style=cmake
 pycompile_module="openshot.py"

From c7902fc599bfc61c600307df6f75acfadf8e612e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 698/874] liborcus: rebuild for Python 3.8.

---
 srcpkgs/liborcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liborcus/template b/srcpkgs/liborcus/template
index 3523d7830d8..e7704c43974 100644
--- a/srcpkgs/liborcus/template
+++ b/srcpkgs/liborcus/template
@@ -2,7 +2,7 @@
 pkgname=liborcus
 reverts="0.15.0_1"
 version=0.14.1
-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 aec13b74f5953d86ed1dab8574a9bb836924a3da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 699/874] libpwquality: rebuild for Python 3.8.

---
 srcpkgs/libpwquality/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpwquality/template b/srcpkgs/libpwquality/template
index e5a656236d7..6c2209155a3 100644
--- a/srcpkgs/libpwquality/template
+++ b/srcpkgs/libpwquality/template
@@ -1,7 +1,7 @@
 # Template file for 'libpwquality'
 pkgname=libpwquality
 version=1.4.1
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static --enable-pam --with-securedir=/usr/lib/security"
 hostmakedepends="libtool automake gettext-devel"

From a5604d1184badc5a3b5afb2426bc910d703ee0f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 700/874] libsearpc: rebuild for Python 3.8.

---
 srcpkgs/libsearpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsearpc/template b/srcpkgs/libsearpc/template
index 61f68e5e7de..a7e0b9ce05c 100644
--- a/srcpkgs/libsearpc/template
+++ b/srcpkgs/libsearpc/template
@@ -1,7 +1,7 @@
 # Template file for 'libsearpc'
 pkgname=libsearpc
 version=3.1.0
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="pysearpc"
 configure_args="PYTHON=python3 --disable-static --disable-compile-demo"

From 5aaa024e287c3460065dbe861abc25499a281e07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 701/874] libtorrent-rasterbar: fix and rebuild for Python 3.8.

---
 srcpkgs/libtorrent-rasterbar/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libtorrent-rasterbar/template b/srcpkgs/libtorrent-rasterbar/template
index 118108c6184..51b7175fb81 100644
--- a/srcpkgs/libtorrent-rasterbar/template
+++ b/srcpkgs/libtorrent-rasterbar/template
@@ -1,9 +1,9 @@
 # Template file for 'libtorrent-rasterbar'
 pkgname=libtorrent-rasterbar
 version=1.1.13
-revision=3
+revision=4
 build_style=gnu-configure
-configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=boost_python36"
+configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=libboost_python${py3_ver/./}"
 hostmakedepends="automake pkg-config intltool libtool python3-devel"
 makedepends="libressl-devel boost-devel geoip-devel python3-devel"
 short_desc="C++ bittorrent library by Rasterbar Software"
@@ -14,9 +14,9 @@ distfiles="https://github.com/arvidn/libtorrent/releases/download/libtorrent-${v
 checksum=30040719858e3c06634764e0c1778738eb42ecd0b45e814afa746329a948ead7
 
 pre_configure() {
-	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython3.6m"
+	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython${py3_ver}${py3_abiver}"
 	autoreconf -fi
 }
 

From 75ce8cab25904eeb4975663fb77b4f29c10c1dbe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 702/874] libvirt-python: rebuild for Python 3.8.

---
 srcpkgs/libvirt-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvirt-python/template b/srcpkgs/libvirt-python/template
index a2f0e038166..56253c9d3b0 100644
--- a/srcpkgs/libvirt-python/template
+++ b/srcpkgs/libvirt-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libvirt-python'
 pkgname=libvirt-python
 version=5.8.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="libvirt.py libvirt_lxc.py libvirt_qemu.py"
 hostmakedepends="pkg-config python-devel python3-devel libvirt-devel"

From 5e9842585a68fb832637cdd1b5adcd50bc48841b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 703/874] libvoikko: rebuild for Python 3.8.

---
 srcpkgs/libvoikko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvoikko/template b/srcpkgs/libvoikko/template
index 8d21b0f9c71..ba8eef837ee 100644
--- a/srcpkgs/libvoikko/template
+++ b/srcpkgs/libvoikko/template
@@ -1,7 +1,7 @@
 # Template file for 'libvoikko'
 pkgname=libvoikko
 version=4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-hfst=false --with-dictionary-path=/usr/share/voikko"
 pycompile_module="libvoikko.py"

From 8141b26019c7a2414b15fcf8b8672eb24047f49d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 704/874] libxml2-python: rebuild for Python 3.8.

---
 srcpkgs/libxml2-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libxml2-python/template b/srcpkgs/libxml2-python/template
index a80208823c2..5514ed43437 100644
--- a/srcpkgs/libxml2-python/template
+++ b/srcpkgs/libxml2-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libxml2-python'
 pkgname=libxml2-python
 version=2.9.9
-revision=3
+revision=4
 wrksrc="${pkgname%-python}-${version}"
 build_wrksrc=python
 build_style=python-module

From 70f5881f1b341100ddc517ba0f4b54e161303165 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 705/874] lightdm-gtk-greeter-settings: rebuild for Python 3.8.

---
 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 715f41bbef4..76a25b91e4c 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=1
+revision=2
 build_style=python3-module
 pycompile_module="lightdm_gtk_greeter_settings"
 hostmakedepends="python3-distutils-extra intltool"

From 04c380043914f79a0c6cd3199748bb0fb2e37967 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 706/874] llvm9: rebuild for Python 3.8.

---
 srcpkgs/llvm9/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/llvm9/template b/srcpkgs/llvm9/template
index 3c1a1a3451b..890a93855d8 100644
--- a/srcpkgs/llvm9/template
+++ b/srcpkgs/llvm9/template
@@ -1,7 +1,7 @@
 # Template file for 'llvm9'
 pkgname=llvm9
 version=9.0.0
-revision=2
+revision=3
 wrksrc="llvm-${version}.src"
 build_style=cmake
 configure_args="

From 4778e7a0c73ffa2fae833fee20ac790fef99fff9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 707/874] lollypop: rebuild for Python 3.8.

---
 srcpkgs/lollypop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lollypop/template b/srcpkgs/lollypop/template
index 56ace773bf3..3bd13c0d387 100644
--- a/srcpkgs/lollypop/template
+++ b/srcpkgs/lollypop/template
@@ -1,7 +1,7 @@
 # Template file for 'lollypop'
 pkgname=lollypop
 version=1.1.4.16
-revision=1
+revision=2
 # Gitlab upload tag hash
 _uhash=6b4e4e7a2c17f0770c1e2b3354ae5a3a
 archs=noarch

From 6041a22c11224f7e771c92e9f61adf7eaf37450a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 708/874] lutris: rebuild for Python 3.8.

---
 srcpkgs/lutris/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lutris/template b/srcpkgs/lutris/template
index 8f54d693a12..75be521cc7c 100644
--- a/srcpkgs/lutris/template
+++ b/srcpkgs/lutris/template
@@ -1,7 +1,7 @@
 # Template file for 'lutris'
 pkgname=lutris
 version=0.5.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 build_helper="gir"

From 768559bee2d66197ffebf07de70d31e1098fe2a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 709/874] magic-wormhole: rebuild for Python 3.8.

---
 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 c07753ce6ad..d93a1bbe1fc 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.11.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wormhole"

From 2a5b126fdf712642756c4d70a6a679f4479b504c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 710/874] mate-tweak: rebuild for Python 3.8.

---
 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 85b829e85e8..76b79524269 100644
--- a/srcpkgs/mate-tweak/template
+++ b/srcpkgs/mate-tweak/template
@@ -1,7 +1,7 @@
 # Template file for 'mate-tweak'
 pkgname=mate-tweak
 version=19.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-pbr python3-setuptools"

From 2717d85b6903ce0f45484d5f051e477d27e68ff3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 711/874] med: rebuild for Python 3.8.

---
 srcpkgs/med/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/med/template b/srcpkgs/med/template
index 34dd6d006d6..acd79293246 100644
--- a/srcpkgs/med/template
+++ b/srcpkgs/med/template
@@ -1,7 +1,7 @@
 # Template file for 'med'
 pkgname=med
 version=4.0.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--with-swig=yes --includedir=/usr/include/med"
 pycompile_module=med

From e6073b9b26be31845b922008dc6d5083ec2516e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 712/874] meld: rebuild for Python 3.8.

---
 srcpkgs/meld/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meld/template b/srcpkgs/meld/template
index 9ed6114299e..7cbac065ce6 100644
--- a/srcpkgs/meld/template
+++ b/srcpkgs/meld/template
@@ -1,7 +1,7 @@
 # Template file for 'meld'
 pkgname=meld
 version=3.20.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="meld"

From 30bbbb75eda44c4dfeac15c27223fe671d4703ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 713/874] menulibre: rebuild for Python 3.8.

---
 srcpkgs/menulibre/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/menulibre/template b/srcpkgs/menulibre/template
index 64311115bec..f16c5f64337 100644
--- a/srcpkgs/menulibre/template
+++ b/srcpkgs/menulibre/template
@@ -1,7 +1,7 @@
 # Template file for 'menulibre'
 pkgname=menulibre
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="menulibre menulibre_lib"

From 7f5fb6f6a41e18474dce397f36f38f5cce8f9eca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 714/874] meson-cmake-wrapper: rebuild for Python 3.8.

---
 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 ca14e533431..57eea159ca8 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mcw"

From 2c4c7008df31cd5ec9699fe3aba2f53facd423e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 715/874] mimeo: rebuild for Python 3.8.

---
 srcpkgs/mimeo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mimeo/template b/srcpkgs/mimeo/template
index bef8dcde863..991c61d9df8 100644
--- a/srcpkgs/mimeo/template
+++ b/srcpkgs/mimeo/template
@@ -1,7 +1,7 @@
 # Template file for 'mimeo'
 pkgname=mimeo
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="Mimeo.py"

From 533400db8d1d7673cb8a5b187cf4510495a5d6fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 716/874] mozo: rebuild for Python 3.8.

---
 srcpkgs/mozo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template
index 041f2454c3d..7bc18f017c7 100644
--- a/srcpkgs/mozo/template
+++ b/srcpkgs/mozo/template
@@ -1,7 +1,7 @@
 # Template file for 'mozo'
 pkgname=mozo
 version=1.22.2
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="Mozo"

From 79476ba290c89d038ce38a9ed875bed6b5bf69e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 717/874] mpd-sima: rebuild for Python 3.8.

---
 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 fb72f0d2632..831fec709b7 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=1
+revision=2
 archs=noarch
 wrksrc="MPD_sima-${version}"
 build_style=python3-module

From 9d547673ab95e2aeb2d2405f6fff480cbd9afa5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 718/874] mps-youtube: rebuild for Python 3.8.

---
 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 7b104aa706f..2141b3e627d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mps_youtube"

From 8e1db2d48466dc2bdc06e1330eeefaa727da6356 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 719/874] mugshot: rebuild for Python 3.8.

---
 srcpkgs/mugshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mugshot/template b/srcpkgs/mugshot/template
index cf27b30acac..1e695654a86 100644
--- a/srcpkgs/mugshot/template
+++ b/srcpkgs/mugshot/template
@@ -1,7 +1,7 @@
 # Template file for 'mugshot'
 pkgname=mugshot
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra"

From dd0ad3b8c52088d1809fd214b32ed7b0acdd2f66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 720/874] multibootusb: rebuild for Python 3.8.

---
 srcpkgs/multibootusb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/multibootusb/template b/srcpkgs/multibootusb/template
index 049b641c5fd..70cb07a85ac 100644
--- a/srcpkgs/multibootusb/template
+++ b/srcpkgs/multibootusb/template
@@ -1,7 +1,7 @@
 # Template file for 'multibootusb'
 pkgname=multibootusb
 version=9.2.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="scripts"

From 85356b30501f219e78afd8cb95f1a6cb09193ac6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 721/874] mymcplus: rebuild for Python 3.8.

---
 srcpkgs/mymcplus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mymcplus/template b/srcpkgs/mymcplus/template
index 369ac8048ed..f30c62b09f4 100644
--- a/srcpkgs/mymcplus/template
+++ b/srcpkgs/mymcplus/template
@@ -1,7 +1,7 @@
 # Template file for 'mymcplus'
 pkgname=mymcplus
 version=3.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mymcplus"

From f10ceae15759ab2c42d786a23926a759967abb41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 722/874] nagstamon: fix and rebuild for Python 3.8.

---
 srcpkgs/nagstamon/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/nagstamon/template b/srcpkgs/nagstamon/template
index 3a63bb5f1d9..0eb5bc75d27 100644
--- a/srcpkgs/nagstamon/template
+++ b/srcpkgs/nagstamon/template
@@ -1,7 +1,7 @@
 # Template file for 'nagstamon'
 pkgname=nagstamon
 version=3.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=Nagstamon
 build_style=python3-module
@@ -16,6 +16,10 @@ homepage="https://nagstamon.ifw-dresden.de"
 distfiles="https://nagstamon.ifw-dresden.de/files/stable/Nagstamon-${version}.tar.gz"
 checksum=a834460e78dc01f62171a83c4a11d890702264ed662863dff39edaf14ae98880
 
+post_extract() {
+	# Gone in python 3.8, but these where the python 3.6 values.  ;)
+	vsed -i -e 's/platform.dist()/("","","")/g' setup.py
+}
 post_install() {
 	chmod 644 ${DESTDIR}/usr/share/pixmaps/nagstamon.svg
 	mv -v ${DESTDIR}/usr/bin/nagstamon.py ${DESTDIR}/usr/bin/nagstamon

From 52acf83950d25bcf72b3fc81796436543c409ce8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 723/874] neovim-remote: rebuild for Python 3.8.

---
 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 d8473bf0521..7391f9df2ee 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.2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nvr"

From ae77cba0468f1ab1fe3e89bf758d2d153c6b8725 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 724/874] newt: rebuild for Python 3.8.

---
 srcpkgs/newt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/newt/template b/srcpkgs/newt/template
index 3971bbfdbf7..25ccc946f51 100644
--- a/srcpkgs/newt/template
+++ b/srcpkgs/newt/template
@@ -1,7 +1,7 @@
 # Template file for 'newt'
 pkgname=newt
 version=0.52.21
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python-devel python3-devel"
 makedepends="slang-devel popt-devel python3-devel python-devel"

From 5d77f30f98b4d84c2807418deb840acda4016790 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 725/874] notmuch: rebuild for Python 3.8.

---
 srcpkgs/notmuch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/notmuch/template b/srcpkgs/notmuch/template
index ced670a59d4..a3085fd4c27 100644
--- a/srcpkgs/notmuch/template
+++ b/srcpkgs/notmuch/template
@@ -1,7 +1,7 @@
 # Template file for 'notmuch'
 pkgname=notmuch
 version=0.29.1
-revision=1
+revision=2
 hostmakedepends="perl pkg-config python-devel python3-Sphinx python3-devel"
 makedepends="bash-completion gmime3-devel talloc-devel xapian-core-devel"
 short_desc="Thread-based email index, search, and tagging"

From 2a004663318b9be9e0b13e69c2f89b9682ece8e3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 726/874] nyx: rebuild for Python 3.8.

---
 srcpkgs/nyx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/nyx/template b/srcpkgs/nyx/template
index 201ab5856ff..4b265771793 100644
--- a/srcpkgs/nyx/template
+++ b/srcpkgs/nyx/template
@@ -1,7 +1,7 @@
 # Template file for 'nyx'
 pkgname=nyx
 version=2.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nyx"

From 9ff1df8e1d687a5a38d373d51d32e4e428dbe286 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 727/874] olm-python: rebuild for Python 3.8.

---
 srcpkgs/olm-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/olm-python/template b/srcpkgs/olm-python/template
index 57ac1cfa01b..0141611ea3f 100644
--- a/srcpkgs/olm-python/template
+++ b/srcpkgs/olm-python/template
@@ -1,7 +1,7 @@
 # Template file for 'olm-python'
 pkgname=olm-python
 version=3.1.4
-revision=1
+revision=2
 wrksrc="olm-${version}"
 build_wrksrc=python
 build_style=python-module

From b5b9070e7d35511535cee5a401bcdb4ea6359959 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 728/874] onboard: rebuild for Python 3.8.

---
 srcpkgs/onboard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onboard/template b/srcpkgs/onboard/template
index 844744038d8..467ed8f0ea5 100644
--- a/srcpkgs/onboard/template
+++ b/srcpkgs/onboard/template
@@ -1,7 +1,7 @@
 # Template file for 'onboard'
 pkgname=onboard
 version=1.4.1
-revision=4
+revision=5
 build_style=python3-module
 pycompile_module="Onboard"
 patch_args="-Np1"

From c23e1317c4a493f2967ade1da8cf6eb9806b2066 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 729/874] openrazer-meta: rebuild for Python 3.8.

---
 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 112cb9e900b..60dc8212a73 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=2
+revision=3
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 0c8dabe0616d85f801dfefea1b22748ee6055bdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 730/874] openshot: rebuild for Python 3.8.

---
 srcpkgs/openshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/openshot/template b/srcpkgs/openshot/template
index 605ea7305c2..d71b4d09fae 100644
--- a/srcpkgs/openshot/template
+++ b/srcpkgs/openshot/template
@@ -1,7 +1,7 @@
 # Template file for 'openshot'
 pkgname=openshot
 version=2.4.4
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 wrksrc="${pkgname}-qt-${version}"
 build_style=python3-module

From e14cf6e0c5c985078aade34a1f21446e153dbeed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 731/874] orca: rebuild for Python 3.8.

---
 srcpkgs/orca/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/orca/template b/srcpkgs/orca/template
index ac1c0e1dc0e..57d1495c10a 100644
--- a/srcpkgs/orca/template
+++ b/srcpkgs/orca/template
@@ -1,7 +1,7 @@
 # Template file for 'orca'
 pkgname=orca
 version=3.34.0
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="orca"

From ef83881d95547fbaa4f216958aa7f49b0b2c98b3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 732/874] papis: rebuild for Python 3.8.

---
 srcpkgs/papis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/papis/template b/srcpkgs/papis/template
index 95044b2a6a4..d99f358fc0d 100644
--- a/srcpkgs/papis/template
+++ b/srcpkgs/papis/template
@@ -1,7 +1,7 @@
 # Template file for 'papis'
 pkgname=papis
 version=0.8
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-requests python3-yaml python3-chardet python3-BeautifulSoup4

From f4cf98a67a63c679f47a66c6b67ab7309b5769f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 733/874] paraview: rebuild for Python 3.8.

---
 srcpkgs/paraview/template | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/paraview/template b/srcpkgs/paraview/template
index 3b721b1833a..d928a5ea095 100644
--- a/srcpkgs/paraview/template
+++ b/srcpkgs/paraview/template
@@ -1,7 +1,7 @@
 # Template file for 'paraview'
 pkgname=paraview
 version=5.6.1
-revision=1
+revision=2
 wrksrc=ParaView-v${version}
 build_style=cmake
 configure_args="-DPARAVIEW_ENABLE_FFMPEG=ON
@@ -58,6 +58,11 @@ checksum=50ef01f54db6358b402e50d1460ef47c04d675bf26f250c6937737169f1e6612
 CFLAGS="-D_GNU_SOURCE"
 CXXFLAGS="-D_GNU_SOURCE"
 
+post_extract() {
+	# Python 3.8 API change: https://docs.python.org/3/c-api/typeobj.html
+	sed -i '/\/\/ tp_print/s/nullptr/0/' \
+		VTK/Wrapping/Tools/*.c VTK/Wrapping/PythonCore/*.cxx
+}
 post_install() {
 	vlicense Copyright.txt
 }

From 726b01acdb0c9e145291f4e36011c0aaa709684d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 734/874] pass-git-helper: rebuild for Python 3.8.

---
 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 dfeed3ba4f0..6d7f25bd8a7 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.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 78ecdb2c1a4374ceaca2d5093af3a91996be3350 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 735/874] peframe: rebuild for Python 3.8.

---
 srcpkgs/peframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peframe/template b/srcpkgs/peframe/template
index b9d64f7a5a6..5ecede6cf56 100644
--- a/srcpkgs/peframe/template
+++ b/srcpkgs/peframe/template
@@ -1,7 +1,7 @@
 # Template file for 'peframe'
 pkgname=peframe
 version=6.0.3
-revision=1
+revision=2
 archs=noarch
 build_style="python3-module"
 pycompile_module="peframe"

From 78841509335c273af19896de5b79ea31c3168e1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 736/874] peru: rebuild for Python 3.8.

---
 srcpkgs/peru/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peru/template b/srcpkgs/peru/template
index 682440f0b50..10d4689338d 100644
--- a/srcpkgs/peru/template
+++ b/srcpkgs/peru/template
@@ -1,7 +1,7 @@
 # Template file for 'peru'
 pkgname=peru
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="peru"

From 9513806ce9175a7e7f042c9a8aa445525747c64b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 737/874] pgcli: rebuild for Python 3.8.

---
 srcpkgs/pgcli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index b967287e9cb..b187a0a4440 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,7 +1,7 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pgcli"

From 9b06f6f2643e97359ce83918b636d83617530e9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 738/874] picard: rebuild for Python 3.8.

---
 srcpkgs/picard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/picard/template b/srcpkgs/picard/template
index 1bae142434a..08404a88475 100644
--- a/srcpkgs/picard/template
+++ b/srcpkgs/picard/template
@@ -1,7 +1,7 @@
 # Template file for 'picard'
 pkgname=picard
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname}-release-${version}"
 build_style=python3-module

From f046b5d0d02d0350b9b4b0d012941d73a64d7674 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 739/874] piper: rebuild for Python 3.8.

---
 srcpkgs/piper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/piper/template b/srcpkgs/piper/template
index af8cc854991..91a31131f84 100644
--- a/srcpkgs/piper/template
+++ b/srcpkgs/piper/template
@@ -1,7 +1,7 @@
 # Template file for 'piper'
 pkgname=piper
 version=0.2.904
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 hostmakedepends="libratbag pkg-config glib-devel"

From 35264de163d55cc30160d954c08f635a5fa12285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 740/874] playitslowly: rebuild for Python 3.8.

---
 srcpkgs/playitslowly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/playitslowly/template b/srcpkgs/playitslowly/template
index d26cea3510a..6d3483ae251 100644
--- a/srcpkgs/playitslowly/template
+++ b/srcpkgs/playitslowly/template
@@ -1,7 +1,7 @@
 # Template file for 'playitslowly'
 pkgname=playitslowly
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From e81422f6d1d5c7623368d70897172c813b3de9b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 741/874] pmbootstrap: rebuild for Python 3.8.

---
 srcpkgs/pmbootstrap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pmbootstrap/template b/srcpkgs/pmbootstrap/template
index 1bfa8183a84..15e606439c2 100644
--- a/srcpkgs/pmbootstrap/template
+++ b/srcpkgs/pmbootstrap/template
@@ -1,7 +1,7 @@
 # Template file for 'pmbootstrap'
 pkgname=pmbootstrap
 version=1.9.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pmb"

From 527e6a4630f16baca7fc343a5a1d9a05342d82ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 742/874] pockyt: fix and rebuild for Python 3.8.

---
 srcpkgs/pockyt/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/pockyt/template b/srcpkgs/pockyt/template
index 760573904b1..ff12361d443 100644
--- a/srcpkgs/pockyt/template
+++ b/srcpkgs/pockyt/template
@@ -1,7 +1,7 @@
 # Template file for 'pockyt'
 pkgname=pockyt
 version=1.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -13,3 +13,7 @@ license="GPL-3.0-or-later"
 homepage="https://github.com/arvindch/pockyt"
 distfiles="${homepage}/archive/${version}.tar.gz"
 checksum=cd9561e126a6a01c73762639eb7e38b8c509ed1412f72fcc4729b12565b9962c
+
+post_extract() {
+	sed -i 's/(3, 7)/&, (3, 8)/' setup.py
+}

From b17ef4dbbbef2220a50989dc81f76cba0decd84a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 743/874] poezio: rebuild for Python 3.8.

---
 srcpkgs/poezio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/poezio/template b/srcpkgs/poezio/template
index 56f8138bb5e..4b318419dab 100644
--- a/srcpkgs/poezio/template
+++ b/srcpkgs/poezio/template
@@ -1,7 +1,7 @@
 # Template file for 'poezio'
 pkgname=poezio
 version=0.12.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="poezio poezio_plugins poezio_themes"
 hostmakedepends="python3-setuptools pkg-config"

From 3b5be45e96733313ad2473bc51a7d8eee1702577 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 744/874] protontricks: rebuild for Python 3.8.

---
 srcpkgs/protontricks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/protontricks/template b/srcpkgs/protontricks/template
index a32f51c4845..dc003b63690 100644
--- a/srcpkgs/protontricks/template
+++ b/srcpkgs/protontricks/template
@@ -1,7 +1,7 @@
 # Template file for 'protontricks'
 pkgname=protontricks
 version=1.2.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-setuptools"

From 6b17e630c97868c3510f8e786c4c0a4d3b250ecf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 745/874] pulseaudio-equalizer-ladspa: rebuild for Python 3.8.

---
 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 62d7eef2a65..10198de2c08 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=1
+revision=2
 wrksrc="equalizer-${version}"
 build_style=meson
 pycompile_module="pulseeq"

From 70dbb53c2ba650d2fc146e7837f700dec9df6062 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 746/874] pulseeffects: rebuild for Python 3.8.

---
 srcpkgs/pulseeffects/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pulseeffects/template b/srcpkgs/pulseeffects/template
index 7fc44f938d9..dc9044cad32 100644
--- a/srcpkgs/pulseeffects/template
+++ b/srcpkgs/pulseeffects/template
@@ -2,7 +2,7 @@
 pkgname=pulseeffects
 reverts="4.3.4_1"
 version=3.2.3
-revision=3
+revision=4
 build_style=meson
 pycompile_module="PulseEffects PulseEffectsTest"
 hostmakedepends="pkg-config"

From b1dc43e0f84322bbc809630267fe0e51c5e1b41e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 747/874] py3status: rebuild for Python 3.8.

---
 srcpkgs/py3status/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/py3status/template b/srcpkgs/py3status/template
index b7a263270e4..01709cfd14d 100644
--- a/srcpkgs/py3status/template
+++ b/srcpkgs/py3status/template
@@ -1,7 +1,7 @@
 # Template file for 'py3status'
 pkgname=py3status
 version=3.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="py3status"

From 0644b2ee33752b76bc1875c86123ab77a073fc53 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 748/874] pychess: rebuild for Python 3.8.

---
 srcpkgs/pychess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pychess/template b/srcpkgs/pychess/template
index 2c6ecef7bf9..d0594aa77f4 100644
--- a/srcpkgs/pychess/template
+++ b/srcpkgs/pychess/template
@@ -1,7 +1,7 @@
 # Template file for 'pychess'
 pkgname=pychess
 version=0.12.4
-revision=2
+revision=3
 build_style=python3-module
 pycompile_module="pychess"
 archs=noarch

From 5cf19da1be32229c7b04dffba15cd724042a2e9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 749/874] pycp: rebuild for Python 3.8.

---
 srcpkgs/pycp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pycp/template b/srcpkgs/pycp/template
index 770eb50d3f4..c9066259862 100644
--- a/srcpkgs/pycp/template
+++ b/srcpkgs/pycp/template
@@ -1,7 +1,7 @@
 # Template file for 'pycp'
 pkgname=pycp
 version=8.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pycp"

From d88382e9fb382116d88e9ccd60e69a7320462f5c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 750/874] pymol: rebuild for Python 3.8.

---
 srcpkgs/pymol/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pymol/template b/srcpkgs/pymol/template
index 428ba7a6deb..e1031f325c0 100644
--- a/srcpkgs/pymol/template
+++ b/srcpkgs/pymol/template
@@ -1,7 +1,7 @@
 # Template file for 'pymol'
 pkgname=pymol
 version=2.3.0
-revision=1
+revision=2
 wrksrc=${pkgname}-open-source-${version}
 build_style="python3-module"
 makedepends="msgpack-devel python3-numpy freetype-devel libfreeglut-devel glew-devel

From 1245dfb2ab23badf279042adca4caff2deba10a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 751/874] pyradio: rebuild for Python 3.8.

---
 srcpkgs/pyradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyradio/template b/srcpkgs/pyradio/template
index 10d7d8c6fbb..d2d5feddbdd 100644
--- a/srcpkgs/pyradio/template
+++ b/srcpkgs/pyradio/template
@@ -1,7 +1,7 @@
 # Template file for 'pyradio'
 pkgname=pyradio
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pyradio"

From f677cdf12f3d405d1bcb43aab8dd1fc258ee91d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 752/874] pyside2-tools: rebuild for Python 3.8.

---
 srcpkgs/pyside2-tools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyside2-tools/template b/srcpkgs/pyside2-tools/template
index 4ba0044452d..0a153de8c15 100644
--- a/srcpkgs/pyside2-tools/template
+++ b/srcpkgs/pyside2-tools/template
@@ -1,7 +1,7 @@
 # Template file for 'pyside2-tools'
 pkgname=pyside2-tools
 version=5.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release

From 727e69b5ed47b99d25354a6a6d6f42b907a7b696 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 753/874] pysolfc: rebuild for Python 3.8.

---
 srcpkgs/pysolfc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pysolfc/template b/srcpkgs/pysolfc/template
index 62eb90009af..1631e9619d3 100644
--- a/srcpkgs/pysolfc/template
+++ b/srcpkgs/pysolfc/template
@@ -1,7 +1,7 @@
 # Template file for 'pysolfc'
 pkgname=pysolfc
 version=2.6.4
-revision=2
+revision=3
 archs="noarch"
 wrksrc="PySolFC-${pkgname}-${version}"
 build_style=python3-module

From 837440a9d7d89a3bcfe00ffd798f18212ea374e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 754/874] pywal: rebuild for Python 3.8.

---
 srcpkgs/pywal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pywal/template b/srcpkgs/pywal/template
index 214a36698f2..98c4e1581e4 100644
--- a/srcpkgs/pywal/template
+++ b/srcpkgs/pywal/template
@@ -1,7 +1,7 @@
 # Template file for 'pywal'
 pkgname=pywal
 version=3.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pywal"

From 168ac3cd6bd43efb1d6d4192cd9b426cffb66930 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 755/874] qomui: rebuild for Python 3.8.

---
 srcpkgs/qomui/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qomui/template b/srcpkgs/qomui/template
index 4e68864252d..8063350ba06 100644
--- a/srcpkgs/qomui/template
+++ b/srcpkgs/qomui/template
@@ -1,7 +1,7 @@
 # Template file for 'qomui'
 pkgname=qomui
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qomui"

From 26a0119ac8b90d7cd7d6f2c49b3d1c927325b552 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 756/874] quodlibet: rebuild for Python 3.8.

---
 srcpkgs/quodlibet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/quodlibet/template b/srcpkgs/quodlibet/template
index 53f6e926315..4b0c4ba0de5 100644
--- a/srcpkgs/quodlibet/template
+++ b/srcpkgs/quodlibet/template
@@ -1,7 +1,7 @@
 # Template file for 'quodlibet'
 pkgname=quodlibet
 version=4.2.1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="quodlibet"

From c8788e4bb387cdc48040e3af5663a0a23e068ed2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 757/874] qutebrowser: rebuild for Python 3.8.

---
 srcpkgs/qutebrowser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qutebrowser/template b/srcpkgs/qutebrowser/template
index 11b74e4445d..07257c2d84b 100644
--- a/srcpkgs/qutebrowser/template
+++ b/srcpkgs/qutebrowser/template
@@ -1,7 +1,7 @@
 # Template file for 'qutebrowser'
 pkgname=qutebrowser
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qutebrowser"

From 2a2f8aeebe7cb2c4d3783dcdf5725f4c8e717d03 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 758/874] r128gain: rebuild for Python 3.8.

---
 srcpkgs/r128gain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/r128gain/template b/srcpkgs/r128gain/template
index cdea955828e..1cb30c786f8 100644
--- a/srcpkgs/r128gain/template
+++ b/srcpkgs/r128gain/template
@@ -1,7 +1,7 @@
 # Template file for 'r128gain'
 pkgname=r128gain
 version=0.9.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="r128gain"
 hostmakedepends="python3-setuptools"

From b923fdcd9bc9204affa69740d34e582e6712ed4c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 759/874] radicale2: rebuild for Python 3.8.

---
 srcpkgs/radicale2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/radicale2/template b/srcpkgs/radicale2/template
index 0d8a27d89f3..310bc8cb3cf 100644
--- a/srcpkgs/radicale2/template
+++ b/srcpkgs/radicale2/template
@@ -1,7 +1,7 @@
 # Template file for 'radicale2'
 pkgname=radicale2
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module

From befc14e8b9ff96c37104bf2441216707df5bcc8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 760/874] ranger: rebuild for Python 3.8.

---
 srcpkgs/ranger/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template
index a387eac4ed7..a49716971a5 100644
--- a/srcpkgs/ranger/template
+++ b/srcpkgs/ranger/template
@@ -1,7 +1,7 @@
 # Template file for 'ranger'
 pkgname=ranger
 version=1.9.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ranger"

From d490364b5c373b46163f36731a39754e04556e98 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 761/874] rednotebook: rebuild for Python 3.8.

---
 srcpkgs/rednotebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rednotebook/template b/srcpkgs/rednotebook/template
index ac870a7a992..af7dea12fd5 100644
--- a/srcpkgs/rednotebook/template
+++ b/srcpkgs/rednotebook/template
@@ -1,7 +1,7 @@
 # Template file for 'rednotebook'
 pkgname=rednotebook
 version=2.11.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rednotebook"

From 44a5a4b73859a74fb915e7613fce5caeabd8acf1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 762/874] redshift: rebuild for Python 3.8.

---
 srcpkgs/redshift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/redshift/template b/srcpkgs/redshift/template
index bb31e7cec05..c58b8daeb76 100644
--- a/srcpkgs/redshift/template
+++ b/srcpkgs/redshift/template
@@ -1,7 +1,7 @@
 # Template file for 'redshift'
 pkgname=redshift
 version=1.12
-revision=1
+revision=2
 build_style=gnu-configure
 build_options="geoclue2"
 configure_args="--enable-gui --disable-geoclue $(vopt_enable geoclue2)"

From c0649b58de59e8a68aff332807f3240430e3ee7c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 763/874] ripe-atlas-tools: rebuild for Python 3.8.

---
 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 c8eef786962..c5e21c4b8dc 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=2.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ripe/atlas/tools"

From 8af034434b8588027b9c7e0f1b0abc587ad462bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 764/874] rmlint: rebuild for Python 3.8.

---
 srcpkgs/rmlint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rmlint/template b/srcpkgs/rmlint/template
index dc8d904d0c2..894a9a1dd01 100644
--- a/srcpkgs/rmlint/template
+++ b/srcpkgs/rmlint/template
@@ -1,7 +1,7 @@
 # Template file for 'rmlint'
 pkgname=rmlint
 version=2.9.0
-revision=1
+revision=2
 build_style=scons
 hostmakedepends="pkg-config python3-Sphinx glib-devel"
 makedepends="libblkid-devel elfutils-devel json-glib-devel"

From 04462f15c08bdd92062a53e420054fdfd65da92b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 765/874] rtv: rebuild for Python 3.8.

---
 srcpkgs/rtv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rtv/template b/srcpkgs/rtv/template
index 1a089e3e88d..1fc137b2e5b 100644
--- a/srcpkgs/rtv/template
+++ b/srcpkgs/rtv/template
@@ -1,7 +1,7 @@
 # Template file for 'rtv'
 pkgname=rtv
 version=1.27.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rtv"

From deb18b1928007c6e0a1042dab8adfe94a801bc28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 766/874] rubber: rebuild for Python 3.8.

---
 srcpkgs/rubber/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rubber/template b/srcpkgs/rubber/template
index cf668638cef..c7fe4cbbd06 100644
--- a/srcpkgs/rubber/template
+++ b/srcpkgs/rubber/template
@@ -1,7 +1,7 @@
 # Template file for 'rubber'
 pkgname=rubber
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From d19b0a94a22decc29f95aa94f2398a30133f2211 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 767/874] safeeyes: rebuild for Python 3.8.

---
 srcpkgs/safeeyes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/safeeyes/template b/srcpkgs/safeeyes/template
index bc35f302011..e7019662316 100644
--- a/srcpkgs/safeeyes/template
+++ b/srcpkgs/safeeyes/template
@@ -1,7 +1,7 @@
 # Template file for 'safeeyes'
 pkgname=safeeyes
 version=2.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="safeeyes"

From c2dacb3fb6e6380df395bffb3460d67524ddf348 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 768/874] scapy: rebuild for Python 3.8.

---
 srcpkgs/scapy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scapy/template b/srcpkgs/scapy/template
index 65242f332a8..36972bfd461 100644
--- a/srcpkgs/scapy/template
+++ b/srcpkgs/scapy/template
@@ -1,7 +1,7 @@
 # Template file for 'scapy'
 pkgname=scapy
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="scapy"

From 6b1ebeaf3648f62790dbf2c394c4060d12cb23d0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 769/874] screenplain: rebuild for Python 3.8.

---
 srcpkgs/screenplain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/screenplain/template b/srcpkgs/screenplain/template
index 8410ab45e40..8eb759ae6a6 100644
--- a/srcpkgs/screenplain/template
+++ b/srcpkgs/screenplain/template
@@ -1,7 +1,7 @@
 # Template file for 'screenplain'
 pkgname=screenplain
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenplain"

From 483229f73350818a1571180552a37954f26fe29d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 770/874] scudcloud: rebuild for Python 3.8.

---
 srcpkgs/scudcloud/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
index 1b9f5f27d8a..1ab2618066e 100644
--- a/srcpkgs/scudcloud/template
+++ b/srcpkgs/scudcloud/template
@@ -1,7 +1,7 @@
 # Template file for 'scudcloud'
 pkgname=scudcloud
 version=1.65
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="scudcloud"
 hostmakedepends="python3-setuptools"

From 123ca799b85c1e8c6cb93162214eead9f92e0baa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 771/874] seafile-libclient: rebuild for Python 3.8.

---
 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 47c49d5ceb2..5eda59c1041 100644
--- a/srcpkgs/seafile-libclient/template
+++ b/srcpkgs/seafile-libclient/template
@@ -1,7 +1,7 @@
 # Template file for 'seafile-libclient'
 pkgname=seafile-libclient
 version=7.0.2
-revision=1
+revision=2
 _distname="${pkgname/-libclient/}"
 wrksrc="${_distname}-${version}"
 build_style=gnu-configure

From dadf6fedad6d6851a5b944f873d4d86cd36ed505 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 772/874] sonata: rebuild for Python 3.8.

---
 srcpkgs/sonata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template
index 3e07610d1e5..fc2d86e6c1a 100644
--- a/srcpkgs/sonata/template
+++ b/srcpkgs/sonata/template
@@ -1,7 +1,7 @@
 # Template file for 'sonata'
 pkgname=sonata
 version=1.7b1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="sonata"

From 430726310d4a2c6f4487784216744a0ba8d42a97 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 773/874] speech-dispatcher: rebuild for Python 3.8.

---
 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 0c27951586a..39cebf1f320 100644
--- a/srcpkgs/speech-dispatcher/template
+++ b/srcpkgs/speech-dispatcher/template
@@ -1,7 +1,7 @@
 # Template build file for 'speech-dispatcher'.
 pkgname=speech-dispatcher
 version=0.8.8
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static"
 short_desc="High-level device independent layer for speech synthesis interface"

From 4bea1bb7754629dcc5164d4be09697dacdc27f52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 774/874] speedtest-cli: rebuild for Python 3.8.

---
 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 6746ea3a35e..c65d9fd631d 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.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="speedtest.py"

From b24b9d876eb69c9d222b4115f375b535b41d8e34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 775/874] sshuttle: rebuild for Python 3.8.

---
 srcpkgs/sshuttle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sshuttle/template b/srcpkgs/sshuttle/template
index e74d90171f2..04bae9a15c3 100644
--- a/srcpkgs/sshuttle/template
+++ b/srcpkgs/sshuttle/template
@@ -1,7 +1,7 @@
 # Template file for 'sshuttle'
 pkgname=sshuttle
 version=0.78.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="sshuttle"

From a94cf196bb0163b8ceac1e90b0c8aacf242262a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 776/874] sssd: rebuild for Python 3.8.

---
 srcpkgs/sssd/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sssd/template b/srcpkgs/sssd/template
index 2ea28d21bee..13d0da0ba99 100644
--- a/srcpkgs/sssd/template
+++ b/srcpkgs/sssd/template
@@ -1,7 +1,7 @@
 # Template file for 'sssd'
 pkgname=sssd
 version=2.0.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-selinux --without-semanage
  --disable-cifs-idmap-plugin --without-samba --with-os=fedora

From 70d497d5a57f21eb299193883523ee44fa71ea5a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 777/874] stcgal: rebuild for Python 3.8.

---
 srcpkgs/stcgal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stcgal/template b/srcpkgs/stcgal/template
index 3410ccf8678..d75e88837cc 100644
--- a/srcpkgs/stcgal/template
+++ b/srcpkgs/stcgal/template
@@ -1,7 +1,7 @@
 # Template file for 'stcgal'
 pkgname=stcgal
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="stcgal"

From cdf4a89e4e281111a817c4c7113ad77d40c5c6be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 778/874] stig: rebuild for Python 3.8.

---
 srcpkgs/stig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stig/template b/srcpkgs/stig/template
index 0777c5f0cc2..abe5f3b563c 100644
--- a/srcpkgs/stig/template
+++ b/srcpkgs/stig/template
@@ -1,7 +1,7 @@
 # Template file for 'stig'
 pkgname=stig
 version=0.10.1a
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 930f6e549836c3d39fd851a831e39a14e72633bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 779/874] streamlink: rebuild for Python 3.8.

---
 srcpkgs/streamlink/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/streamlink/template b/srcpkgs/streamlink/template
index abcdc12c4ac..59caa85dc8a 100644
--- a/srcpkgs/streamlink/template
+++ b/srcpkgs/streamlink/template
@@ -1,7 +1,7 @@
 # Template file for 'streamlink'
 pkgname=streamlink
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="streamlink streamlink_cli"

From ba9febf35412930fc49b70b49d56a17aa23ec4db Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 780/874] subuser: rebuild for Python 3.8.

---
 srcpkgs/subuser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/subuser/template b/srcpkgs/subuser/template
index 50444246b29..0bc3e71db36 100644
--- a/srcpkgs/subuser/template
+++ b/srcpkgs/subuser/template
@@ -1,7 +1,7 @@
 # Template file for 'subuser'
 pkgname=subuser
 version=0.6.2
-revision=2
+revision=3
 archs="x86_64*"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From e15b7d83da234e08cd82b0718dee84173dfe4966 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 781/874] synapse: rebuild for Python 3.8.

---
 srcpkgs/synapse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template
index daae80e5792..0c0fd6841fb 100644
--- a/srcpkgs/synapse/template
+++ b/srcpkgs/synapse/template
@@ -1,7 +1,7 @@
 # Template file for 'synapse'
 pkgname=synapse
 version=1.3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From b4a3fa9e78a0b408df1d5ebbe41cd3ac56907dc4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 782/874] tekaim: rebuild for Python 3.8.

---
 srcpkgs/tekaim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tekaim/template b/srcpkgs/tekaim/template
index e3cc5335ecc..bd60dcc57a6 100644
--- a/srcpkgs/tekaim/template
+++ b/srcpkgs/tekaim/template
@@ -1,7 +1,7 @@
 # Template file for 'tekaim'
 pkgname=tekaim
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From 7224199b765cb4f2b66887ffe6244532da34b988 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 783/874] telepresence: rebuild for Python 3.8.

---
 srcpkgs/telepresence/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/telepresence/template b/srcpkgs/telepresence/template
index 17300f3b548..fa7f916f66f 100644
--- a/srcpkgs/telepresence/template
+++ b/srcpkgs/telepresence/template
@@ -1,7 +1,7 @@
 # Template file for 'telepresence'
 pkgname=telepresence
 version=0.102
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="telepresence"

From f585c9fe61cb8e3a7275817bb40e60bd92406046 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 784/874] termdown: rebuild for Python 3.8.

---
 srcpkgs/termdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/termdown/template b/srcpkgs/termdown/template
index 90a4a894d42..299de920389 100644
--- a/srcpkgs/termdown/template
+++ b/srcpkgs/termdown/template
@@ -1,7 +1,7 @@
 # Template file for 'termdown'
 pkgname=termdown
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="termdown.py"

From 52c4dcee8ca0ed8b268907b88b218d7b8e6f9593 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 785/874] terminal_markdown_viewer: rebuild for Python 3.8.

---
 srcpkgs/terminal_markdown_viewer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/terminal_markdown_viewer/template b/srcpkgs/terminal_markdown_viewer/template
index e5d0f38aae2..ba3fcfdc8d6 100644
--- a/srcpkgs/terminal_markdown_viewer/template
+++ b/srcpkgs/terminal_markdown_viewer/template
@@ -1,7 +1,7 @@
 # Template file for 'terminal_markdown_viewer'
 pkgname=terminal_markdown_viewer
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mdv"

From c4298b68d0f7694e8a23e689420f2a3d1f085606 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 786/874] thefuck: rebuild for Python 3.8.

---
 srcpkgs/thefuck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thefuck/template b/srcpkgs/thefuck/template
index 714cd7982c7..a0de1c7b6a3 100644
--- a/srcpkgs/thefuck/template
+++ b/srcpkgs/thefuck/template
@@ -1,7 +1,7 @@
 # Template file for 'thefuck'
 pkgname=thefuck
 version=3.29
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="thefuck"

From b18d19065aa9bd9b335b3ee939bb0bd64efade58 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 787/874] thinkpad-scripts: rebuild for Python 3.8.

---
 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 8d26cf23e77..855d42492fb 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tps"

From 1770ed9b1c9c751304b91a6f6e53da7de1648214 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 788/874] thrift: rebuild for Python 3.8.

---
 srcpkgs/thrift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thrift/template b/srcpkgs/thrift/template
index 73b0f59d4f6..e379ac35a09 100644
--- a/srcpkgs/thrift/template
+++ b/srcpkgs/thrift/template
@@ -1,7 +1,7 @@
 # Template file for 'thrift'
 pkgname=thrift
 version=0.12.0
-revision=2
+revision=3
 build_style=gnu-configure
 makedepends="boost-devel libressl-devel"
 short_desc="Apache Thrift compiler"

From 524283aef8b8fdd32035330913bfd16958f21979 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 789/874] todoman: rebuild for Python 3.8.

---
 srcpkgs/todoman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/todoman/template b/srcpkgs/todoman/template
index 2e0489ff49e..676412b8d0b 100644
--- a/srcpkgs/todoman/template
+++ b/srcpkgs/todoman/template
@@ -1,7 +1,7 @@
 # Template file for 'todoman'
 pkgname=todoman
 version=3.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="todoman"

From 7180afa5a1715531304f6a36a9eac431039f64f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 790/874] toot: rebuild for Python 3.8.

---
 srcpkgs/toot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template
index b6dcdc9ede6..7f9fac6ca01 100644
--- a/srcpkgs/toot/template
+++ b/srcpkgs/toot/template
@@ -1,7 +1,7 @@
 # Template file for 'toot'
 pkgname=toot
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="toot"

From d56207a1678134019b4f169934f0c50a78cf7588 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 791/874] torbrowser-launcher: fix and rebuild for Python 3.8.

---
 srcpkgs/torbrowser-launcher/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/torbrowser-launcher/template b/srcpkgs/torbrowser-launcher/template
index a4aa707495c..4986b6b3240 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.2
-revision=1
+revision=2
 archs="i686 x86_64" # limited by Tor Browser itself
 build_style=python3-module
 pycompile_module="torbrowser_launcher"
@@ -15,6 +15,10 @@ changelog="https://raw.githubusercontent.com/micahflee/torbrowser-launcher/maste
 distfiles="https://github.com/micahflee/torbrowser-launcher/archive/v${version}.tar.gz"
 checksum=25ad4b0c70579628bf18f4cdcd18ac303fe4f7f1c590cc48df2a87651c92991c
 
+post_extract() { 
+	# Python 3.8 removed platform.dist()
+	sed -i 's/distro =.*/distro = "Void"/' setup.py
+}
 post_install() {
 	vlicense LICENSE
 	rm ${DESTDIR}/usr/share/locale/torbrowser-launcher.mo # installed twice

From c66dda5131119abe071425664238ca389de34d8f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 792/874] tox: rebuild for Python 3.8.

---
 srcpkgs/tox/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tox/template b/srcpkgs/tox/template
index 8c6b63a3cb1..908cb86bb38 100644
--- a/srcpkgs/tox/template
+++ b/srcpkgs/tox/template
@@ -1,7 +1,7 @@
 # Template file for 'tox'
 pkgname=tox
 version=3.14.0
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="tox"
 hostmakedepends="python3-setuptools"

From c37ef482e10fb14da3d6cb396c8904257dc2c7c0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 793/874] trackma: rebuild for Python 3.8.

---
 srcpkgs/trackma/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/trackma/template b/srcpkgs/trackma/template
index 96833382346..4c29bb8a35d 100644
--- a/srcpkgs/trackma/template
+++ b/srcpkgs/trackma/template
@@ -1,7 +1,7 @@
 # Template file for 'trackma'
 pkgname=trackma
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 0a1f54dd6467927b77f9371a41381a01608228e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 794/874] trash-cli: rebuild for Python 3.8.

---
 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 2a08548c7c8..4ab724d8cb1 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.17.1.14
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3"

From 58a2a91ed22dcbe5fab5c49b6cb5b04cacb0bec6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 795/874] tryton: rebuild for Python 3.8.

---
 srcpkgs/tryton/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tryton/template b/srcpkgs/tryton/template
index 196033361f6..61e0f733dc9 100644
--- a/srcpkgs/tryton/template
+++ b/srcpkgs/tryton/template
@@ -1,7 +1,7 @@
 # Template file for 'tryton'
 pkgname=tryton
 version=5.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tryton"

From 0334c761ba939e24db0b4c619858a9e37a119b2d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 796/874] tuimoji: rebuild for Python 3.8.

---
 srcpkgs/tuimoji/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuimoji/template b/srcpkgs/tuimoji/template
index 71e0bf540c0..73f5cff281f 100644
--- a/srcpkgs/tuimoji/template
+++ b/srcpkgs/tuimoji/template
@@ -1,7 +1,7 @@
 # Template file for 'tuimoji'
 pkgname=tuimoji
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tuimoji"

From 7c8600b2683e37b9ae3b8d28fdf26fda4c4f5c41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 797/874] tuir: rebuild for Python 3.8.

---
 srcpkgs/tuir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuir/template b/srcpkgs/tuir/template
index dfc0b15c535..a98f4484544 100644
--- a/srcpkgs/tuir/template
+++ b/srcpkgs/tuir/template
@@ -1,7 +1,7 @@
 # Template file for 'tuir'
 pkgname=tuir
 version=1.28.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=python3-module

From fa94d7c83f3c15bf441526ff78dcfaa2e1a0e4fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 798/874] tzupdate: rebuild for Python 3.8.

---
 srcpkgs/tzupdate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tzupdate/template b/srcpkgs/tzupdate/template
index 9531f0f7540..de2217476bd 100644
--- a/srcpkgs/tzupdate/template
+++ b/srcpkgs/tzupdate/template
@@ -1,7 +1,7 @@
 # Template file for 'tzupdate'
 pkgname=tzupdate
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tzupdate.py"

From 8246b4d5c37f08891fb4b91655ad97e368d4b404 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 799/874] udiskie: rebuild for Python 3.8.

---
 srcpkgs/udiskie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/udiskie/template b/srcpkgs/udiskie/template
index 536f4d5609d..06d58236046 100644
--- a/srcpkgs/udiskie/template
+++ b/srcpkgs/udiskie/template
@@ -1,7 +1,7 @@
 # Template file for 'udiskie'
 pkgname=udiskie
 version=1.7.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="udiskie"

From c58f7d10a7748b8cf418991f3d804ce8631a137e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 800/874] ueberzug: rebuild for Python 3.8.

---
 srcpkgs/ueberzug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ueberzug/template b/srcpkgs/ueberzug/template
index e0c474ff63e..dfa1ab29d96 100644
--- a/srcpkgs/ueberzug/template
+++ b/srcpkgs/ueberzug/template
@@ -1,7 +1,7 @@
 # Template file for 'ueberzug'
 pkgname=ueberzug
 version=18.1.3
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel libX11-devel libXext-devel"

From e6ca68fa761e2b3df26f06a7b44e30331de08220 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 801/874] ufw: rebuild for Python 3.8.

---
 srcpkgs/ufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ufw/template b/srcpkgs/ufw/template
index ac7dfa45cdd..0bf2a3a0b76 100644
--- a/srcpkgs/ufw/template
+++ b/srcpkgs/ufw/template
@@ -1,7 +1,7 @@
 # Template file for 'ufw'
 pkgname=ufw
 version=0.36
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="ufw"

From 14dcd23aa719947cc774b71ef0820127a4865ef0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 802/874] unicorn: rebuild for Python 3.8.

---
 srcpkgs/unicorn/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/unicorn/template b/srcpkgs/unicorn/template
index 317e261ae88..971d44752ca 100644
--- a/srcpkgs/unicorn/template
+++ b/srcpkgs/unicorn/template
@@ -1,7 +1,7 @@
 # Template file for 'unicorn'
 pkgname=unicorn
 version=1.0.1
-revision=2
+revision=3
 archs="x86_64* i686*"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"
 short_desc="Lightweight multi-platform, multi-architecture CPU emulator framework"

From 1ae8d35f7645adeab1e7f8afafd996c92f0c08b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 803/874] unknown-horizons: rebuild for Python 3.8.

---
 srcpkgs/unknown-horizons/patches/py38.patch | 14 ++++++++++++++
 srcpkgs/unknown-horizons/template           |  2 +-
 2 files changed, 15 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/unknown-horizons/patches/py38.patch

diff --git a/srcpkgs/unknown-horizons/patches/py38.patch b/srcpkgs/unknown-horizons/patches/py38.patch
new file mode 100644
index 00000000000..59194750cd1
--- /dev/null
+++ b/srcpkgs/unknown-horizons/patches/py38.patch
@@ -0,0 +1,14 @@
+--- setup.py.orig
++++ setup.py
+@@ -39,10 +39,7 @@
+ # Ensure we are in the correct directory
+ os.chdir(os.path.realpath(os.path.dirname(__file__)))
+ 
+-if platform.dist()[0].lower() in ('debian', 'ubuntu'):
+-	executable_path = 'games'
+-else:
+-	executable_path = 'bin'
++executable_path = 'bin'
+ 
+ 
+ # this trick is for setting RELEASE_VERSION if the code is cloned from git repository
diff --git a/srcpkgs/unknown-horizons/template b/srcpkgs/unknown-horizons/template
index b5fc593b744..6e81970800d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3 intltool git python3-Pillow"

From 615d1baa489feab3864039bee37dad2e1ba9977d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 804/874] urh: rebuild for Python 3.8.

---
 srcpkgs/urh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urh/template b/srcpkgs/urh/template
index 2cec83082fd..31f28bb366b 100644
--- a/srcpkgs/urh/template
+++ b/srcpkgs/urh/template
@@ -1,7 +1,7 @@
 # Template file for 'urh'
 pkgname=urh
 version=2.7.5
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="urh"
 hostmakedepends="python3-setuptools python3-Cython"

From da0ab011d8839f3a6ddc2367fc8e1c879825ec29 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 805/874] urlscan: rebuild for Python 3.8.

---
 srcpkgs/urlscan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlscan/template b/srcpkgs/urlscan/template
index f6f0d1db07b..2bb1688dad7 100644
--- a/srcpkgs/urlscan/template
+++ b/srcpkgs/urlscan/template
@@ -1,7 +1,7 @@
 # Template file for 'urlscan'
 pkgname=urlscan
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlscan"

From d23be20fa55a06ffcdf1acd3d7018f833d4337c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 806/874] urlwatch: rebuild for Python 3.8.

---
 srcpkgs/urlwatch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlwatch/template b/srcpkgs/urlwatch/template
index e8a5e403c92..1166fe101a7 100644
--- a/srcpkgs/urlwatch/template
+++ b/srcpkgs/urlwatch/template
@@ -1,7 +1,7 @@
 # Template file for 'urlwatch'
 pkgname=urlwatch
 version=2.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlwatch"

From 758ae9723decfd1886b28f363eb103c16dbaa04b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 807/874] vapoursynth: fix and rebuild for Python 3.8.

---
 srcpkgs/vapoursynth/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/vapoursynth/template b/srcpkgs/vapoursynth/template
index dd85e8b39dc..1c417a624c3 100644
--- a/srcpkgs/vapoursynth/template
+++ b/srcpkgs/vapoursynth/template
@@ -1,7 +1,7 @@
 # Template file for 'vapoursynth'
 pkgname=vapoursynth
 version=R47.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake pkg-config libtool nasm python3-Cython"
 makedepends="python3-devel zimg-devel libmagick-devel libass-devel ffmpeg-devel
@@ -21,6 +21,7 @@ case $XBPS_TARGET_MACHINE in
 esac
 
 pre_configure() {
+	sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION/&-embed/g' configure.ac
 	./autogen.sh
 	case $XBPS_TARGET_MACHINE in
 		arm*musl)

From 2765c9f1b1e0d4395e629f6ff66e1003221cbb27 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 808/874] variety: rebuild for Python 3.8.

---
 srcpkgs/variety/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/variety/template b/srcpkgs/variety/template
index b4ea756c0c9..4d327a830f8 100644
--- a/srcpkgs/variety/template
+++ b/srcpkgs/variety/template
@@ -1,7 +1,7 @@
 # Template file for 'variety'
 pkgname=variety
 version=0.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="jumble variety variety_lib"

From 090c4bfcfc2db73eba64fcab8dec459707ad2676 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 809/874] vdirsyncer: rebuild for Python 3.8.

---
 srcpkgs/vdirsyncer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vdirsyncer/template b/srcpkgs/vdirsyncer/template
index 24080413456..708204afda2 100644
--- a/srcpkgs/vdirsyncer/template
+++ b/srcpkgs/vdirsyncer/template
@@ -1,7 +1,7 @@
 # Template file for 'vdirsyncer'
 pkgname=vdirsyncer
 version=0.16.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="vdirsyncer"

From fb3a977a1a5a3fd2be779201a4dd819512a4351a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 810/874] vidcutter: rebuild for Python 3.8.

---
 srcpkgs/vidcutter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vidcutter/template b/srcpkgs/vidcutter/template
index 4f30b888805..6ca85d4e766 100644
--- a/srcpkgs/vidcutter/template
+++ b/srcpkgs/vidcutter/template
@@ -1,7 +1,7 @@
 # Template file for 'vidcutter'
 pkgname=vidcutter
 version=6.0.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="vidcutter"

From 0addee01c86811593babb5238c415197cb01b03e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 811/874] vimiv: rebuild for Python 3.8.

---
 srcpkgs/vimiv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vimiv/template b/srcpkgs/vimiv/template
index 20fcbe7a03f..a560d4c9d81 100644
--- a/srcpkgs/vimiv/template
+++ b/srcpkgs/vimiv/template
@@ -1,7 +1,7 @@
 # Template file for 'vimiv'
 pkgname="vimiv"
 version=0.9.1
-revision=2
+revision=3
 build_style=gnu-makefile
 pycompile_module=vimiv
 hostmakedepends="python3-setuptools python3-devel"

From 0e236f27837583bf861e3984a19f4cf7827cbac1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 812/874] virtme: rebuild for Python 3.8.

---
 srcpkgs/virtme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtme/template b/srcpkgs/virtme/template
index 3905cb24b1d..30035a734f3 100644
--- a/srcpkgs/virtme/template
+++ b/srcpkgs/virtme/template
@@ -1,7 +1,7 @@
 # Template file for 'virtme'
 pkgname=virtme
 version=0.0.3.20180725
-revision=1
+revision=2
 archs=noarch
 _commit=60100bea82183b5d32ed9fca6534cd0fc60d5eb2
 wrksrc="${_commit}"

From 977bedee2b9cf218b33b79b6a30d782088e693be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 813/874] virtualenvwrapper: rebuild for Python 3.8.

---
 srcpkgs/virtualenvwrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtualenvwrapper/template b/srcpkgs/virtualenvwrapper/template
index 6007cc5d2ed..1f0c2efee86 100644
--- a/srcpkgs/virtualenvwrapper/template
+++ b/srcpkgs/virtualenvwrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'virtualenvwrapper'
 pkgname=virtualenvwrapper
 version=4.8.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="virtualenvwrapper"

From 13d514ee50452908bb52a5f4c379b8543e8aae2e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 814/874] visidata: rebuild for Python 3.8.

---
 srcpkgs/visidata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/visidata/template b/srcpkgs/visidata/template
index 715896e5f7c..c5c3ae7c82e 100644
--- a/srcpkgs/visidata/template
+++ b/srcpkgs/visidata/template
@@ -1,7 +1,7 @@
 # Template file for 'visidata'
 pkgname=visidata
 version=1.5.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="visidata"

From 9ed4ec9bfee68875daad74ea3f07f0378d1b0009 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 815/874] volctl: rebuild for Python 3.8.

---
 srcpkgs/volctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template
index 2b01750b9eb..585aabd2495 100644
--- a/srcpkgs/volctl/template
+++ b/srcpkgs/volctl/template
@@ -1,7 +1,7 @@
 # Template file for 'volctl'
 pkgname=volctl
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="volctl"

From 0db272695e88b29ee9216db4cc2572e0020b4df0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 816/874] voltron: rebuild for Python 3.8.

---
 srcpkgs/voltron/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/voltron/template b/srcpkgs/voltron/template
index c258bb9bab9..38f47a824e3 100644
--- a/srcpkgs/voltron/template
+++ b/srcpkgs/voltron/template
@@ -1,7 +1,7 @@
 # Template file for 'voltron'
 pkgname=voltron
 version=0.1.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="voltron"

From 12dedac32ff8a0f576ad19fc3147b4b386831c3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 817/874] volume_key: rebuild for Python 3.8.

---
 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 11d7b16bed8..14431cb70e9 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=1
+revision=2
 build_style=gnu-configure
 make_build_args="PYTHON3_CFLAGS=-I${XBPS_CROSS_BASE}/${py3_inc}
  PYTHON_CFLAGS=-I${XBPS_CROSS_BASE}/${py2_inc}"

From 3ce63c210ee385583504492fdf75f2ae859f05a4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 818/874] weather: rebuild for Python 3.8.

---
 srcpkgs/weather/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weather/template b/srcpkgs/weather/template
index ffa8a828b36..3ac33bfac15 100644
--- a/srcpkgs/weather/template
+++ b/srcpkgs/weather/template
@@ -1,7 +1,7 @@
 # Template file for 'weather'
 pkgname=weather
 version=2.3
-revision=2
+revision=3
 archs=noarch
 hostmakedepends="python3"
 depends="python3"

From 6b24b9871b5a34bb13b50f506793021986de04d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 819/874] wfuzz: rebuild for Python 3.8.

---
 srcpkgs/wfuzz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wfuzz/template b/srcpkgs/wfuzz/template
index b03c1f28add..4a88ab67407 100644
--- a/srcpkgs/wfuzz/template
+++ b/srcpkgs/wfuzz/template
@@ -1,7 +1,7 @@
 # Template file for 'wfuzz'
 pkgname=wfuzz
 version=2.4
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="wfuzz"

From ffffd630d47635e9948e7264798154dcf5cf4862 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 820/874] wpgtk: rebuild for Python 3.8.

---
 srcpkgs/wpgtk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpgtk/template b/srcpkgs/wpgtk/template
index 7e9d52b4f81..a722da58f22 100644
--- a/srcpkgs/wpgtk/template
+++ b/srcpkgs/wpgtk/template
@@ -1,7 +1,7 @@
 # Template file for 'wpgtk'
 pkgname=wpgtk
 version=6.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpgtk"

From ad6d5b938b34863f749429277206983bd33a9592 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 821/874] wpull: rebuild for Python 3.8.

---
 srcpkgs/wpull/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpull/template b/srcpkgs/wpull/template
index 5e9b9dcc641..621e1c85428 100644
--- a/srcpkgs/wpull/template
+++ b/srcpkgs/wpull/template
@@ -1,7 +1,7 @@
 # Template file for 'wpull'
 pkgname=wpull
 version=2.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpull"

From c0ba430699f94546d60abaeba6f248ef6d36ef84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 822/874] wxPython4: rebuild for Python 3.8.

---
 srcpkgs/wxPython4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wxPython4/template b/srcpkgs/wxPython4/template
index 2aa7117d5e0..b65e0b2ffe1 100644
--- a/srcpkgs/wxPython4/template
+++ b/srcpkgs/wxPython4/template
@@ -1,7 +1,7 @@
 # Template file for 'wxPython4'
 pkgname=wxPython4
 version=4.0.6
-revision=2
+revision=3
 wrksrc="wxPython-${version}"
 build_style=python3-module
 pycompile_module="wx"

From eae81cc7d657c1f863b8ae9a32aa075cc25328f4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 823/874] xcb-proto: rebuild for Python 3.8.

---
 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 1b26ecd73f3..020524bda87 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.13
-revision=2
+revision=3
 archs=noarch
 build_style=gnu-configure
 pycompile_module="xcbgen"

From c879f24aa56efd90bcd1b2031c3a7e194ee93abb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 824/874] xdot: rebuild for Python 3.8.

---
 srcpkgs/xdot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xdot/template b/srcpkgs/xdot/template
index 23f7b1f17e0..f7507ffb8c5 100644
--- a/srcpkgs/xdot/template
+++ b/srcpkgs/xdot/template
@@ -1,7 +1,7 @@
 # Template file for 'xdot'
 pkgname=xdot
 version=1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="xdot.py-${version}"
 build_style=python3-module

From ba48e65ee5332c30c40c9015ffd4f97f902bdcc1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 825/874] xkcdpass: rebuild for Python 3.8.

---
 srcpkgs/xkcdpass/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xkcdpass/template b/srcpkgs/xkcdpass/template
index 46b4a9635f9..37fb6872079 100644
--- a/srcpkgs/xkcdpass/template
+++ b/srcpkgs/xkcdpass/template
@@ -1,7 +1,7 @@
 # Template file for 'xkcdpass'
 pkgname=xkcdpass
 version=1.17.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="XKCD-password-generator-xkcdpass-${version}"
 build_style=python3-module

From f604c57acf10fb9091080955e88a704447aab0cb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 826/874] xonsh: rebuild for Python 3.8.

---
 srcpkgs/xonsh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xonsh/template b/srcpkgs/xonsh/template
index 768ebf36022..2dca267d0d1 100644
--- a/srcpkgs/xonsh/template
+++ b/srcpkgs/xonsh/template
@@ -1,7 +1,7 @@
 # Template file for 'xonsh'
 pkgname=xonsh
 version=0.9.12
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="xonsh xontrib"

From 8cdb99abdc99eefcc53ff3ab7418d4d830558c63 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 827/874] yq: rebuild for Python 3.8.

---
 srcpkgs/yq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yq/template b/srcpkgs/yq/template
index 7c3af7f43c2..dda886c6c40 100644
--- a/srcpkgs/yq/template
+++ b/srcpkgs/yq/template
@@ -1,7 +1,7 @@
 # Template file for 'yq'
 pkgname=yq
 version=2.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 6e757a227ac3953cc8567422ce6b473e6df30cc9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 828/874] ytcc: rebuild for Python 3.8.

---
 srcpkgs/ytcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ytcc/template b/srcpkgs/ytcc/template
index feafa404b75..df4195758c7 100644
--- a/srcpkgs/ytcc/template
+++ b/srcpkgs/ytcc/template
@@ -1,7 +1,7 @@
 # Template file for 'ytcc'
 pkgname=ytcc
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ytcc"

From 1742b15ff06a60216eae8f7a016b441d18572e03 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 829/874] yturl: rebuild for Python 3.8.

---
 srcpkgs/yturl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yturl/template b/srcpkgs/yturl/template
index 6fa3e9872ee..ee14b77b5a0 100644
--- a/srcpkgs/yturl/template
+++ b/srcpkgs/yturl/template
@@ -1,7 +1,7 @@
 # Template file for 'yturl'
 pkgname=yturl
 version=2.0.2
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From b6302f7cf81ad28b08db1f9b8e986b9a6c3d59c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 830/874] yubikey-manager: rebuild for Python 3.8.

---
 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 af0330e8e15..fcc7b7cb737 100644
--- a/srcpkgs/yubikey-manager/template
+++ b/srcpkgs/yubikey-manager/template
@@ -1,7 +1,7 @@
 # Template file for 'yubikey-manager'
 pkgname=yubikey-manager
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 87bab1c9de0d25f72a5520b2adcd72c53599a433 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 831/874] z3: rebuild for Python 3.8.

---
 srcpkgs/z3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/z3/template b/srcpkgs/z3/template
index d632a285019..e054915df91 100644
--- a/srcpkgs/z3/template
+++ b/srcpkgs/z3/template
@@ -1,7 +1,7 @@
 # Template file for 'z3'
 pkgname=z3
 version=4.8.6
-revision=2
+revision=3
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=configure
 configure_args="--prefix=/usr -g --python $(vopt_if ocaml --ml)"

From 08edebe2ef2c613536937e6ee2d3fc6e9f067b72 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 832/874] zim: rebuild for Python 3.8.

---
 srcpkgs/zim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/zim/template b/srcpkgs/zim/template
index 45b9df5357c..dff4ad22081 100644
--- a/srcpkgs/zim/template
+++ b/srcpkgs/zim/template
@@ -1,7 +1,7 @@
 # Template file for 'zim'
 pkgname=zim
 version=0.71.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="zim"

From b4ef921e58656c77eb688ee4e2af7b20b3c8bfd2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 833/874] python3-pafy: rebuild for Python 3.8.

---
 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 ce26f770c69..b59c9a0adff 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.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pafy-${version}"
 build_style=python3-module

From bf4e7780fb8dcc15680cd79ddef83f8183bb3375 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 834/874] python3-perf: rebuild for Python 3.8.

---
 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 a03251f97e8..3d57ddb1c1a 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.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyperf-${version}"
 build_style=python3-module

From 80bbe375d025a8f2df0fa0878b5089c83f181e95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 835/874] python3-yara: rebuild for Python 3.8.

---
 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 4a6c56dd083..3bdff14a0da 100644
--- a/srcpkgs/python3-yara/template
+++ b/srcpkgs/python3-yara/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-yara'
 pkgname=python3-yara
 version=3.11.0
-revision=1
+revision=2
 wrksrc="yara-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From dfbf656d20e2c60d70d38432d72796e45a07530a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:31 +0200
Subject: [PATCH 836/874] azote: rebuild for Python 3.8.

---
 srcpkgs/azote/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/azote/template b/srcpkgs/azote/template
index 0a23c209551..2748cb98733 100644
--- a/srcpkgs/azote/template
+++ b/srcpkgs/azote/template
@@ -1,7 +1,7 @@
 # Template file for 'azote'
 pkgname=azote
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="azote"

From 6f9b552c053623ad5214d1b8401f41cb4e56734c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 837/874] binwalk: rebuild for Python 3.8.

---
 srcpkgs/binwalk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/binwalk/template b/srcpkgs/binwalk/template
index 461ea4b547a..fccd523d584 100644
--- a/srcpkgs/binwalk/template
+++ b/srcpkgs/binwalk/template
@@ -1,7 +1,7 @@
 # Template file for 'binwalk'
 pkgname=binwalk
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="binwalk"

From cdf9d0c94b7363a5bab761faa1a5119852db14c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 838/874] gnome-builder: rebuild for Python 3.8.

---
 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 9ae9ff9d94c..85aeeee9a15 100644
--- a/srcpkgs/gnome-builder/template
+++ b/srcpkgs/gnome-builder/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-builder'
 pkgname=gnome-builder
 version=3.34.1
-revision=1
+revision=2
 build_style=meson
 configure_args="-Dwith_webkit=true -Dwith_sysprof=true -Dhelp=true"
 hostmakedepends="appdata-tools desktop-file-utils flex gobject-introspection

From c0bccc27652b15e34572ed02503df5ae7b1dbebb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 839/874] gnome-tweaks: rebuild for Python 3.8.

---
 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 ac1f8bdb873..d0879253ac5 100644
--- a/srcpkgs/gnome-tweaks/template
+++ b/srcpkgs/gnome-tweaks/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-tweaks'
 pkgname=gnome-tweaks
 version=3.34.0
-revision=2
+revision=3
 archs=noarch
 build_style=meson
 pycompile_module="gtweak"

From c86e2d08bfa3e52c769e2b8c76e993af14c698bf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 840/874] meson: rebuild for Python 3.8.

---
 srcpkgs/meson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meson/template b/srcpkgs/meson/template
index 315a0f27a92..76791451681 100644
--- a/srcpkgs/meson/template
+++ b/srcpkgs/meson/template
@@ -2,7 +2,7 @@
 pkgname=meson
 reverts="0.52.0_1 0.52.0_2"
 version=0.51.2
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mesonbuild"

From 1259e701609ac87f299b515b612f6b5589a6a5e5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 841/874] onionshare: rebuild for Python 3.8.

---
 srcpkgs/onionshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onionshare/template b/srcpkgs/onionshare/template
index c585ae6101e..c37c5962736 100644
--- a/srcpkgs/onionshare/template
+++ b/srcpkgs/onionshare/template
@@ -1,7 +1,7 @@
 # Template file for 'onionshare'
 pkgname=onionshare
 version=2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="onionshare"

From e24fbb347a50db8d9adc3c2e21abfa2926516285 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 842/874] portage: rebuild for Python 3.8.

---
 srcpkgs/portage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/portage/template b/srcpkgs/portage/template
index b0f34731035..9610428bbf4 100644
--- a/srcpkgs/portage/template
+++ b/srcpkgs/portage/template
@@ -1,7 +1,7 @@
 # Template file for 'portage'
 pkgname=portage
 version=2.3.77
-revision=1
+revision=2
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=python3-module
 pycompile_module="portage _emerge"

From 3d8944805a3fcbe269c633fd504f8156014b9743 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 843/874] rpm: fix and rebuild for Python 3.8.

---
 srcpkgs/rpm/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/rpm/template b/srcpkgs/rpm/template
index 98e35930c4c..695195323fd 100644
--- a/srcpkgs/rpm/template
+++ b/srcpkgs/rpm/template
@@ -1,7 +1,7 @@
 # Template file for 'rpm'
 pkgname=rpm
 version=4.15.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--with-lua --with-cap --with-acl --with-external-db
  --enable-python PYTHON=python3"
@@ -18,7 +18,7 @@ distfiles="http://ftp.rpm.org/releases/rpm-4.15.x/rpm-${version}.tar.bz2"
 checksum=1e06723b13591e57c99ebe2006fb8daddc4cf72efb366a64a34673ba5f61c201
 conflicts="rpmextract>=0" # Both provide rpm2cpio
 
-CFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6"
+CFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nss"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nspr"
 

From 72f86e0f7af627c04b12bdf23f9811e4ae8da247 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 844/874] youtube-dl: rebuild for Python 3.8.

---
 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 d6596b80bd3..f1ae3aa1a74 100644
--- a/srcpkgs/youtube-dl/template
+++ b/srcpkgs/youtube-dl/template
@@ -1,7 +1,7 @@
 # Template file for 'youtube-dl'
 pkgname=youtube-dl
 version=2019.10.16
-revision=1
+revision=2
 archs=noarch
 wrksrc=youtube-dl
 build_style=python3-module

From fb04151cb309fc8ff7a84dfe9204c113fb159d19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 845/874] blender: rebuild for Python 3.8.

---
 srcpkgs/blender/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template
index 758d1235185..47cb8f8ad13 100644
--- a/srcpkgs/blender/template
+++ b/srcpkgs/blender/template
@@ -1,7 +1,7 @@
 # Template file for 'blender'
 pkgname=blender
 version=2.79b
-revision=9
+revision=10
 build_style="cmake"
 makedepends="
  libgomp-devel libpng-devel tiff-devel python3-devel glu-devel

From 7a05e07582c4f2dad1e5ce7b472de4dd50f5ffc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 846/874] freecad: fix and rebuild for Python 3.8.

---
 srcpkgs/freecad/patches/090-py38.patch | 22 ++++++++++++++++++++++
 srcpkgs/freecad/template               |  2 +-
 2 files changed, 23 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/freecad/patches/090-py38.patch

diff --git a/srcpkgs/freecad/patches/090-py38.patch b/srcpkgs/freecad/patches/090-py38.patch
new file mode 100644
index 00000000000..92566df9df3
--- /dev/null
+++ b/srcpkgs/freecad/patches/090-py38.patch
@@ -0,0 +1,22 @@
+From 174011749d836f3b6c6ae2630f53b2f4c1f9d3fc Mon Sep 17 00:00:00 2001
+From: Richard <hobbes1069@gmail.com>
+Date: Thu, 17 Oct 2019 11:20:10 -0500
+Subject: [PATCH] Update swigpyrun.in for Python 3.8
+
+In Python 3.8 some functions related to thread state were intentionally made private.
+
+This fix (specific to FreeCAD) was suggested here:
+
+https://bugs.python.org/issue35886
+
+--- src/Base/swigpyrun.inl
++++ src/Base/swigpyrun.inl
+@@ -72,7 +72,7 @@ void cleanupSWIG_T(const char* TypeName)
+ 
+     PyObject *module, *dict;
+     PyInterpreterState *interp = PyThreadState_GET()->interp;
+-    PyObject *modules = interp->modules;
++    PyObject *modules = PyImport_GetModuleDict();
+     module = PyDict_GetItemString(modules, "__builtin__");
+     if (module != NULL && PyModule_Check(module)) {
+         dict = PyModule_GetDict(module);
diff --git a/srcpkgs/freecad/template b/srcpkgs/freecad/template
index 9e9375c4444..26bf34702a2 100644
--- a/srcpkgs/freecad/template
+++ b/srcpkgs/freecad/template
@@ -1,7 +1,7 @@
 # Template file for 'freecad'
 pkgname=freecad
 version=0.18.3
-revision=2
+revision=3
 wrksrc="FreeCAD-${version}"
 build_style=cmake
 

From 718d5c572ffaa708c4160791eb058eabf0caf143 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 847/874] gdb: rebuild for Python 3.8.

---
 srcpkgs/gdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gdb/template b/srcpkgs/gdb/template
index 9f84e4869e9..39aab79d08a 100644
--- a/srcpkgs/gdb/template
+++ b/srcpkgs/gdb/template
@@ -1,7 +1,7 @@
 # Template file for 'gdb'
 pkgname=gdb
 version=8.3.1
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="/usr/share/gdb"
 configure_args="--disable-werror --disable-nls --with-system-readline

From e89ecd13e39e0d4ffa50beaae64ee63aa2febcdc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 848/874] hexchat: rebuild for Python 3.8.

---
 srcpkgs/hexchat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hexchat/template b/srcpkgs/hexchat/template
index fbeaf28ae8a..9f7d7957b76 100644
--- a/srcpkgs/hexchat/template
+++ b/srcpkgs/hexchat/template
@@ -1,7 +1,7 @@
 # Template file for 'hexchat'
 pkgname=hexchat
 version=2.14.2
-revision=6
+revision=7
 build_style=meson
 configure_args="-Dwith-dbus=true -Dwith-ssl=true -Dwith-text=false
  -Dwith-perl=/usr/bin/perl -Dwith-python=python3

From 295d2fcdb8e6c8981469ea3f0881d7acc0d7a5a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 849/874] hyperion: rebuild for Python 3.8.

---
 srcpkgs/hyperion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hyperion/template b/srcpkgs/hyperion/template
index 0befdbe7064..7ce415e929e 100644
--- a/srcpkgs/hyperion/template
+++ b/srcpkgs/hyperion/template
@@ -1,7 +1,7 @@
 # Template file for 'hyperion'
 pkgname=hyperion
 version=1.03.2
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DUSE_SYSTEM_PROTO_LIBS=ON -DENABLE_QT5=ON
  -DPROTOBUF_PROTOC_EXECUTABLE=/usr/bin/protoc -DENABLE_AMLOGIC=ON

From c6846e2a15765deae100b5a9a32307270668a58c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 850/874] kdevelop-python: rebuild for Python 3.8.

---
 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 0265916a3d0..a306eb8f442 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.4.2
-revision=1
+revision=2
 wrksrc="kdev-python-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/kdevpythonsupport"

From a61462c12e1549e93d89a2be3d1fbc1c899f8fc7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 851/874] kitty: rebuild for Python 3.8.

---
 srcpkgs/kitty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/kitty/template b/srcpkgs/kitty/template
index d79bcc4acce..54cd08c23ec 100644
--- a/srcpkgs/kitty/template
+++ b/srcpkgs/kitty/template
@@ -1,7 +1,7 @@
 # Template file for 'kitty'
 pkgname=kitty
 version=0.14.6
-revision=1
+revision=2
 pycompile_dirs="usr/lib/kitty"
 hostmakedepends="ncurses pkg-config python3 wayland-devel wayland-protocols"
 makedepends="gettext-devel glfw-devel harfbuzz-devel libxkbcommon-devel

From eb1971689e3b6e8804a1e503f9487d80a97a132a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 852/874] krita: rebuild for Python 3.8, fix sha256sum.

Tarball was yanked for trivial fix.
---
 srcpkgs/krita/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/krita/template b/srcpkgs/krita/template
index 7a59fc9ac58..67f128c61ce 100644
--- a/srcpkgs/krita/template
+++ b/srcpkgs/krita/template
@@ -1,7 +1,7 @@
 # Template file for 'krita'
 pkgname=krita
 version=4.2.7.1
-revision=1
+revision=2
 build_style=cmake
 configure_args="-Wno-dev -DBUILD_TESTING=OFF"
 hostmakedepends="extra-cmake-modules pkg-config python3"
@@ -18,6 +18,6 @@ license="GPL-3.0-only"
 homepage="https://krita.org/"
 KDE_SITE="http://ftp5.gwdg.de/pub/linux/kde/stable/"
 distfiles="${KDE_SITE}/krita/${version}/krita-${version}.tar.gz"
-checksum=28218030edca9dfa1c7e255401ca6fc8fe0e5329f7611cfc196e35746d312086
+checksum=3ed29fd9d8e067def55e703fc55312815c21041d274727e228bdbe0478c09c3d
 nocross=yes
 replaces="calligra-krita>=0"

From 221123967fa111191496b9e08e2c9c76756c13b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:26:38 +0200
Subject: [PATCH 853/874] libpeas: rebuild for Python 3.8.

---
 srcpkgs/libpeas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index a69238bf823..d4dcf8b5941 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,7 +1,7 @@
 # Template file for 'libpeas'
 pkgname=libpeas
 version=1.22.0
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"

From 365648c1fccc0285703eeddac9324f2f4a91218f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 854/874] libreoffice: rebuild for Python 3.8.

---
 srcpkgs/libreoffice/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template
index 6e8685ac0fd..98f04a40304 100644
--- a/srcpkgs/libreoffice/template
+++ b/srcpkgs/libreoffice/template
@@ -1,7 +1,7 @@
 # Template file for 'libreoffice'
 pkgname=libreoffice
 version=6.2.5.2
-revision=2
+revision=3
 build_style=meta
 make_build_args="build-nocheck"
 nocross=yes

From 1c313604728a7106e5854243e06f9cb65c997436 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 855/874] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index 1f9c8043b46..34174be7535 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=5
+revision=6
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From aef507d5b726f510663f6e9c2bfd9f7eb3eeab4e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 856/874] libsigrokdecode: rebuild for Python 3.8.

---
 srcpkgs/libsigrokdecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsigrokdecode/template b/srcpkgs/libsigrokdecode/template
index 59e15dd61b9..cc9d9a10367 100644
--- a/srcpkgs/libsigrokdecode/template
+++ b/srcpkgs/libsigrokdecode/template
@@ -1,7 +1,7 @@
 # Template file for 'libsigrokdecode'
 pkgname=libsigrokdecode
 version=0.5.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="glib-devel python3-devel"

From ca583906dfd0c97c9a4c36d862bf85a55ad07f90 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 857/874] luxrays: rebuild for Python 3.8.

---
 srcpkgs/luxrays/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/luxrays/template b/srcpkgs/luxrays/template
index c783e9fe3e5..58037fbfc05 100644
--- a/srcpkgs/luxrays/template
+++ b/srcpkgs/luxrays/template
@@ -1,7 +1,7 @@
 # Template file for 'luxrays'
 pkgname=luxrays
 version=3.1
-revision=13
+revision=14
 build_style=cmake
 configure_args="-DLUXRAYS_DISABLE_OPENCL=OFF -DCMAKE_SKIP_RPATH=ON"
 hostmakedepends="flex bison boost-devel"

From ef66922c11033d027b7badec1e15a0a0fb3aacbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 858/874] navit: rebuild for Python 3.8.

---
 srcpkgs/navit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/navit/template b/srcpkgs/navit/template
index 461689a3c73..24cd151c64b 100644
--- a/srcpkgs/navit/template
+++ b/srcpkgs/navit/template
@@ -1,7 +1,7 @@
 # Template file for 'navit'
 pkgname=navit
 version=0.5.3
-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 f8cae9038ecc7f293e820f51664bfd59aac52b73 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 859/874] obs: rebuild for Python 3.8.

---
 srcpkgs/obs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/obs/template b/srcpkgs/obs/template
index 3ed426b1583..45bf81803e4 100644
--- a/srcpkgs/obs/template
+++ b/srcpkgs/obs/template
@@ -1,7 +1,7 @@
 # Template file for 'obs'
 pkgname=obs
 version=24.0.1
-revision=1
+revision=2
 _commit_hash_obs_browser="693498b518cf893876f454ef581e13106e8370ec"
 _commit_hash_obs_vst="fde438f7a8afdf41a7ab386a0aa1a61175fc8427"
 _commit_hash_ftl_sdk="98289f7c2ed754c647d451899b3356850c0c1fa3"

From dbfccd5a0bab2df75f326e85613243fa4867cd8d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 860/874] renderdoc: fix and rebuild for Python 3.8.

---
 srcpkgs/renderdoc/files/swig-py38.patch    | 28 +++++++++++++
 srcpkgs/renderdoc/patches/cmake-py38.patch | 48 ++++++++++++++++++++++
 srcpkgs/renderdoc/template                 |  8 ++--
 3 files changed, 81 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/renderdoc/files/swig-py38.patch
 create mode 100644 srcpkgs/renderdoc/patches/cmake-py38.patch

diff --git a/srcpkgs/renderdoc/files/swig-py38.patch b/srcpkgs/renderdoc/files/swig-py38.patch
new file mode 100644
index 00000000000..0595599c658
--- /dev/null
+++ b/srcpkgs/renderdoc/files/swig-py38.patch
@@ -0,0 +1,28 @@
+From dbe955dd0300d55a32fd73a4eef730b3e30ed5c4 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 20:32:03 +0200
+Subject: [PATCH] swig: avoid use of _PyObject_GC_UNTRACK
+
+It is deprecated[1]. Use PyObject_GC_UnTrack instead.
+
+[1] https://docs.python.org/3/c-api/gcsupport.html#c._PyObject_GC_UNTRACK
+---
+ Lib/python/builtin.swg | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Lib/python/builtin.swg b/Lib/python/builtin.swg
+index 9597653b7..6af45a9d1 100644
+--- a/Lib/python/builtin.swg
++++ b/Lib/python/builtin.swg
+@@ -120,7 +120,7 @@ SwigPyBuiltin_FunpackSetterClosure (PyObject *obj, PyObject *val, void *closure)
+ 
+ SWIGINTERN void
+ SwigPyStaticVar_dealloc(PyDescrObject *descr) {
+-  _PyObject_GC_UNTRACK(descr);
++  PyObject_GC_UnTrack(descr);
+   Py_XDECREF(PyDescr_TYPE(descr));
+   Py_XDECREF(PyDescr_NAME(descr));
+   PyObject_GC_Del(descr);
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/patches/cmake-py38.patch b/srcpkgs/renderdoc/patches/cmake-py38.patch
new file mode 100644
index 00000000000..fc1adb9ddbc
--- /dev/null
+++ b/srcpkgs/renderdoc/patches/cmake-py38.patch
@@ -0,0 +1,48 @@
+From 56769d3e2cc12670b73a1ddd9dfaab959340c2e2 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 21:27:02 +0200
+Subject: [PATCH] CMake: py3.8 support, ability to patch swig
+
+Add 3.8 to list of python versions and ability to patch the custom
+swig, also needed for 3.8
+---
+ CMakeLists.txt            | 2 +-
+ qrenderdoc/CMakeLists.txt | 2 ++
+ 2 files changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 13818e5b8..00feda2ad 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -308,7 +308,7 @@ add_subdirectory(renderdoc)
+ # are handled in common
+ if(ENABLE_QRENDERDOC OR ENABLE_PYRENDERDOC)
+     # Make sure Python 3 is found
+-    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7)
++    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7 3.8)
+     find_package(PythonInterp 3 REQUIRED)
+     find_package(PythonLibs 3 REQUIRED)
+     # we also need python3-config for swig
+diff --git a/qrenderdoc/CMakeLists.txt b/qrenderdoc/CMakeLists.txt
+index 9fd65b2d3..1ef284349 100644
+--- a/qrenderdoc/CMakeLists.txt
++++ b/qrenderdoc/CMakeLists.txt
+@@ -7,6 +7,7 @@ endif()
+ 
+ set(QMAKE_QT5_COMMAND ${QT_QMAKE_EXECUTABLE} CACHE STRING "Command to run to invoke Qt5's qmake. Normally this is qmake, possibly with qtchooser, but might be qmake-qt5")
+ set(RENDERDOC_SWIG_PACKAGE https://github.com/baldurk/swig/archive/renderdoc-modified-6.zip CACHE STRING "The location where RenderDoc's swig fork source can be found. By default points to the URL on github but can be pointed to a local file.")
++set(RENDERDOC_SWIG_PATCH "" CACHE STRING "The location for the patch to apply to swig.")
+ 
+ set(QMAKE_CONFIG "debug")
+ set(QMAKE_LDFLAGS "")
+@@ -99,6 +100,7 @@ ExternalProject_Add(custom_swig
+     # using an URL to a zip directly so we don't clone the history etc
+     URL ${RENDERDOC_SWIG_PACKAGE}
+     BUILD_IN_SOURCE 1
++    PATCH_COMMAND patch -p1 -i ${RENDERDOC_SWIG_PATCH} > /dev/null
+     CONFIGURE_COMMAND ./autogen.sh > /dev/null 2>&1
+     COMMAND CC=${SWIG_CONFIGURE_CC} CXX=${SWIG_CONFIGURE_CXX} CFLAGS=-fPIC CXXFLAGS=-fPIC ./configure --with-pcre=yes --prefix=${CMAKE_BINARY_DIR} > /dev/null
+     BUILD_COMMAND ${GENERATOR_MAKE} > /dev/null 2>&1
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/template b/srcpkgs/renderdoc/template
index 32d051864d3..9972d9435b0 100644
--- a/srcpkgs/renderdoc/template
+++ b/srcpkgs/renderdoc/template
@@ -1,11 +1,13 @@
 # Template file for 'renderdoc'
 pkgname=renderdoc
 version=1.4
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DENABLE_GL=ON -DENABLE_GLES=ON -DENABLE_QRENDERDOC=ON
  -DENABLE_RENDERDOCCMD=ON -DENABLE_VULKAN=ON -DENABLE_XCB=ON -DENABLE_XLIB=ON
- -DENABLE_PYRENDERDOC=ON"
+ -DENABLE_PYRENDERDOC=ON
+ -DRENDERDOC_SWIG_PATCH=${XBPS_SRCPKGDIR}/${pkgname}/files/swig-py38.patch"
+patch_args="-p1"
 hostmakedepends="bison autoconf automake pkg-config python3"
 makedepends="libX11-devel libxcb-devel xcb-util-keysyms-devel libGL qt5-devel
  qt5-svg-devel qt5-x11extras-devel pcre-devel python3-devel"
@@ -17,7 +19,7 @@ distfiles="https://github.com/baldurk/${pkgname}/archive/v${version}.tar.gz"
 checksum=9a78951f386fb7c3ecf7df6919d300db59719d14f0621438963ae30a75d33677
 
 case "$XBPS_TARGET_MACHINE" in
-	*-musl) broken="This package uses execnfo.h which is not available on musl"
+	*-musl) broken="This package uses execinfo.h which is not available on musl"
 esac
 
 if [ "$CROSS_BUILD" ]; then

From 459b63795ca01a8fe746aec6d9f97141bdc3fc35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 861/874] sigil: rebuild for Python 3.8.

---
 srcpkgs/sigil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sigil/template b/srcpkgs/sigil/template
index 4a90ef95798..1d577ee3487 100644
--- a/srcpkgs/sigil/template
+++ b/srcpkgs/sigil/template
@@ -1,7 +1,7 @@
 # Template file for 'sigil'
 pkgname=sigil
 version=0.9.13
-revision=1
+revision=2
 wrksrc="Sigil-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/sigil/python3lib"

From eb0492cef63d32f08e51495ae261b150a7b3f1b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 862/874] uwsgi: rebuild for Python 3.8.

---
 srcpkgs/uwsgi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/uwsgi/template b/srcpkgs/uwsgi/template
index 2e96cd2e38e..e283d6bc357 100644
--- a/srcpkgs/uwsgi/template
+++ b/srcpkgs/uwsgi/template
@@ -1,7 +1,7 @@
 # Template file for 'uwsgi'
 pkgname=uwsgi
 version=2.0.18
-revision=1
+revision=2
 hostmakedepends="python python3"
 makedepends="python-devel python3-devel"
 short_desc="Fast, self-healing application container server"

From 107450e305e9c38e02604604d47fd38619481bc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 863/874] vim: rebuild for Python 3.8.

---
 srcpkgs/vim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vim/template b/srcpkgs/vim/template
index 8f543069d19..7c7fd4a30f7 100644
--- a/srcpkgs/vim/template
+++ b/srcpkgs/vim/template
@@ -1,7 +1,7 @@
 # Template file for 'vim'
 pkgname=vim
 version=8.1.2021
-revision=3
+revision=4
 hostmakedepends="glib-devel pkg-config"
 makedepends="acl-devel gtk+3-devel libXt-devel lua-devel ncurses-devel
  perl python-devel python3-devel ruby-devel"

From e5c9ab9b7773855271a75cfe5d4dc6cc5d230b59 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 864/874] weechat: rebuild for Python 3.8.

---
 srcpkgs/weechat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weechat/template b/srcpkgs/weechat/template
index 19f8af4fd8f..14c3e2360f5 100644
--- a/srcpkgs/weechat/template
+++ b/srcpkgs/weechat/template
@@ -1,7 +1,7 @@
 # Template file for 'weechat'
 pkgname=weechat
 version=2.6
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_MAN=ON -DENABLE_ENCHANT=ON -DENABLE_PERL=ON
  -DENABLE_LUA=ON -DENABLE_RUBY=ON -DENABLE_SPELL=ON

From a86ea0eef792b9b5666ffe67d6f3c6549467f704 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 865/874] znc: rebuild for Python 3.8.

---
 srcpkgs/znc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/znc/template b/srcpkgs/znc/template
index 8af8f23a145..696b59133c8 100644
--- a/srcpkgs/znc/template
+++ b/srcpkgs/znc/template
@@ -1,7 +1,7 @@
 # Template file for 'znc'
 pkgname=znc
 version=1.7.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="
  --enable-python

From 2cfcf24e55b5aae1d192c7345b5ede0401a4486b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:18:51 +0200
Subject: [PATCH 866/874] boost: rebuild for Python 3.8.

---
 srcpkgs/boost/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 40a4fe67730..1fb0e8ed519 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=5
+revision=6
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"

From dab8bf9a36920b36c01351b0e78a3d894d95e438 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:10 +0200
Subject: [PATCH 867/874] python-pyside: remove, obsolete.

---
 srcpkgs/python-pyside/INSTALL.msg | 1 -
 srcpkgs/python-pyside/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/python-pyside/INSTALL.msg
 delete mode 100644 srcpkgs/python-pyside/template

diff --git a/srcpkgs/python-pyside/INSTALL.msg b/srcpkgs/python-pyside/INSTALL.msg
deleted file mode 100644
index 6de207b7aa2..00000000000
--- a/srcpkgs/python-pyside/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-python-pyside is no longer provided by Void Linux, and will be fully removed from the repos on 2019-07-17
diff --git a/srcpkgs/python-pyside/template b/srcpkgs/python-pyside/template
deleted file mode 100644
index 7053f0e7fc3..00000000000
--- a/srcpkgs/python-pyside/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'python-pyside'
-pkgname=python-pyside
-version=1.2.2
-revision=7
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="http://www.pyside.org/"

From 56c4a66cb73f8c03aa1d75d0f3aeffc5558c4047 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:52 +0200
Subject: [PATCH 868/874] pyside-tools: remove, obsolete.

---
 srcpkgs/pyside-tools/INSTALL.msg | 1 -
 srcpkgs/pyside-tools/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/pyside-tools/INSTALL.msg
 delete mode 100644 srcpkgs/pyside-tools/template

diff --git a/srcpkgs/pyside-tools/INSTALL.msg b/srcpkgs/pyside-tools/INSTALL.msg
deleted file mode 100644
index fdb45eb0f42..00000000000
--- a/srcpkgs/pyside-tools/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-pyside-tools is no longer provided by Void Linux, and will be fully removed from the repos on 2019-10-30
diff --git a/srcpkgs/pyside-tools/template b/srcpkgs/pyside-tools/template
deleted file mode 100644
index 27cfc18eea4..00000000000
--- a/srcpkgs/pyside-tools/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'pyside-tools'
-pkgname=pyside-tools
-version=0.2.15
-revision=2
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="https://wiki.qt.io/"

From a4caf17102b2a8d6832ab3be41174a163b7a0573 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:22:03 +0200
Subject: [PATCH 869/874] shiboken: remove, obsolete.

---
 srcpkgs/shiboken/patches/python3.6.patch |  11 ---
 srcpkgs/shiboken/template                | 110 -----------------------
 2 files changed, 121 deletions(-)
 delete mode 100644 srcpkgs/shiboken/patches/python3.6.patch
 delete mode 100644 srcpkgs/shiboken/template

diff --git a/srcpkgs/shiboken/patches/python3.6.patch b/srcpkgs/shiboken/patches/python3.6.patch
deleted file mode 100644
index 7145fb4308b..00000000000
--- a/srcpkgs/shiboken/patches/python3.6.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- cmake/Modules/FindPython3Libs.cmake.orig
-+++ cmake/Modules/FindPython3Libs.cmake
-@@ -27,7 +27,7 @@
- # Search for the python framework on Apple.
- # CMAKE_FIND_FRAMEWORKS(Python)
- 
--FOREACH(_CURRENT_VERSION 3.4 3.3 3.2 3.1 3.0)
-+FOREACH(_CURRENT_VERSION 3.6 3.5 3.4 3.3 3.2 3.1 3.0)
-   IF(_CURRENT_VERSION GREATER 3.1)
-       SET(_32FLAGS "m" "u" "mu" "dm" "du" "dmu" "")
-   ELSE()
diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
deleted file mode 100644
index 34174be7535..00000000000
--- a/srcpkgs/shiboken/template
+++ /dev/null
@@ -1,110 +0,0 @@
-# Template file for 'shiboken'
-pkgname=shiboken
-version=1.2.2
-revision=6
-wrksrc="shiboken-${version}"
-hostmakedepends="cmake"
-makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"
-short_desc="CPython bindings generator for C++ libraries"
-maintainer="Enno Boland <gottox@voidlinux.org>"
-homepage="http://www.pyside.org"
-license="LGPL-2.1"
-distfiles="https://download.qt.io/official_releases/pyside/shiboken-${version}.tar.bz2"
-checksum=7625bbcf1fe313fd910c6b8c9cf49ac5495499f9d00867115a2f1f2a69fce5c4
-
-nocross="https://travis-ci.org/voidlinux/void-packages/jobs/269193001#L906"
-
-pre_build() {
-	# Fix inconsistent naming of libshiboken.so and ShibokenConfig.cmake
-	sed -i "/get_config_var('SOABI')/d" cmake/Modules/FindPython3InterpWithDebug.cmake
-}
-do_build() {
-	local args= configure_args="
-		-DCMAKE_INSTALL_PREFIX=/usr \
-		-DCMAKE_BUILD_TYPE=Release \
-		-DBUILD_TESTS=OFF"
-
-	for pyver in $py2_ver $py3_ver; do
-		args=
-		if [ "$pyver" = "$py2_ver" ]; then
-			args="-DPYTHON_SUFFIX=-python$py2_ver"
-		else
-			args="-DUSE_PYTHON3=yes"
-		fi
-
-		[ ! -d build-${pyver} ] && mkdir build-${pyver}
-		pushd build-${pyver}
-		cmake .. ${configure_args} ${args}
-		make ${makejobs}
-		popd
-	done
-}
-do_install() {
-	for pyver in $py2_ver $py3_ver; do
-		make -C build-${pyver} DESTDIR=${DESTDIR} install
-	done
-}
-post_install() {
-	# Fix conflict between .pc files
-	rm -f ${DESTDIR}/usr/lib/pkgconfig/*
-	for pyver in $py2_ver $py3_ver; do
-		vinstall build-${pyver}/data/shiboken.pc 644 \
-			usr/lib/pkgconfig shiboken-python${pyver}.pc
-	done
-}
-
-libshiboken-common-devel_package() {
-	depends="${sourcepkg}-${version}_${revision}"
-	short_desc+=" - common development files"
-	pkg_install() {
-		vmove usr/include
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig.cmake
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfigVersion.cmake
-	}
-}
-libshiboken-python-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python-${version}_${revision}"
-	short_desc="Python2 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py2_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py2_ver}.pc
-		vmove usr/lib/libshiboken-python${py2_ver}.so
-	}
-}
-libshiboken-python_package() {
-	short_desc="Python2 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version}
-	}
-}
-python-shiboken_package() {
-	short_desc="Python2 shiboken bindings"
-	pkg_install() {
-		vmove ${py2_sitelib}/shiboken.so
-	}
-}
-libshiboken-python3-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python3-${version}_${revision}"
-	short_desc="Python3 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py3_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py3_ver}.pc
-		vmove usr/lib/libshiboken-python${py3_ver}.so
-	}
-}
-libshiboken-python3_package() {
-	short_desc="Python3 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version}
-	}
-}
-python3-shiboken_package() {
-	short_desc="Python3 shiboken bindings"
-	pkg_install() {
-		vmove ${py3_sitelib}/shiboken.so
-	}
-}

From b8a76a958a1e28d96f0bf8a93acb982d756937b3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:34:00 +0200
Subject: [PATCH 870/874] boost: rebuild for Python 3.8.

Also ensure bjam is called with the same parameters, to avoid
a full rebuild with -j1 in do_install.
---
 common/shlibs          |  2 +-
 srcpkgs/boost/template | 13 +++++++------
 2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/common/shlibs b/common/shlibs
index f5133935773..92dae1c282c 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -683,7 +683,7 @@ libboost_stacktrace_noop.so.1.69.0 libboost_stacktrace_noop1.69-1.69.0_1<1.70.0
 libboost_stacktrace_addr2line.so.1.69.0 libboost_stacktrace_addr2line1.69-1.69.0_1<1.70.0
 libboost_stacktrace_basic.so.1.69.0 libboost_stacktrace_basic1.69-1.69.0_1<1.70.0
 libboost_python27.so.1.69.0 boost-python1.69-1.69.0_1<1.70.0
-libboost_python36.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
+libboost_python38.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
 libexempi.so.8 exempi-2.5.0_1
 libatasmart.so.4 libatasmart-0.17_1
 libsgutils2.so.2 libsgutils-1.42_1
diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 1fb0e8ed519..b516b348b14 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=6
+revision=7
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"
@@ -60,9 +60,9 @@ do_build() {
 	using python : ${py3_ver} : ${XBPS_CROSS_BASE}/usr/bin/python3 : ${XBPS_CROSS_BASE}${py3_inc} : ${XBPS_CROSS_BASE}${py3_lib} ;
 
 	__EOF
-	./bjam ${makejobs} \
+	./bjam ${makejobs} --prefix=${DESTDIR}/usr \
 		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam --debug-building \
+		--user-config=${wrksrc}/user-config.jam \
 		python=2.7,${py3_ver}
 }
 do_install() {
@@ -72,9 +72,10 @@ do_install() {
 	done
 
 	# Install headers/libs
-	./bjam --prefix=${DESTDIR}/usr abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam python=2.7,${py3_ver} install
-
+	./bjam --prefix=${DESTDIR}/usr \
+		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
+		--user-config=${wrksrc}/user-config.jam \
+		python=2.7,${py3_ver} install
 	# Install Boost.Build stuff.
 	vmkdir usr/share/boost-build
 	cd ${wrksrc}/tools/build && cp -a . ${DESTDIR}/usr/share/boost-build

From 4c0b1ce20aabdbed98b49e903ea6d0c9f531ad2f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 19:40:03 +0200
Subject: [PATCH 871/874] libpeas: update to 1.24.0.

---
 srcpkgs/libpeas/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index d4dcf8b5941..1ff2598c527 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,8 +1,8 @@
 # Template file for 'libpeas'
 pkgname=libpeas
-version=1.22.0
-revision=6
-build_style=gnu-configure
+version=1.24.0
+revision=1
+build_style=meson
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"
 makedepends="vala-devel gtk+3-devel python3-gobject-devel
@@ -13,7 +13,7 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://wiki.gnome.org/Projects/Libpeas"
 distfiles="${GNOME_SITE}/${pkgname}/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=5b2fc0f53962b25bca131a5ec0139e6fef8e254481b6e777975f7a1d2702a962
+checksum=0b9a00138c129a663de3eef5569b00ace03ce31d345f7af783768e9f35c8e6f9
 
 pre_build() {
 	if [ "$CROSS_BUILD" ]; then
@@ -35,7 +35,6 @@ libpeas-devel_package() {
 		vmove usr/lib/pkgconfig
 		vmove "usr/lib/*.so"
 		vmove usr/share/gir-1.0
-		vmove usr/share/gtk-doc
 		vmove usr/share/glade
 	}
 }

From 2be9ae0e45df517724574e5d873706b5377a17af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 20:33:53 +0200
Subject: [PATCH 872/874] scudcloud: upstream dead.

---
 srcpkgs/scudcloud/template | 21 ---------------------
 1 file changed, 21 deletions(-)
 delete mode 100644 srcpkgs/scudcloud/template

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
deleted file mode 100644
index 1ab2618066e..00000000000
--- a/srcpkgs/scudcloud/template
+++ /dev/null
@@ -1,21 +0,0 @@
-# Template file for 'scudcloud'
-pkgname=scudcloud
-version=1.65
-revision=2
-build_style=python3-module
-pycompile_module="scudcloud"
-hostmakedepends="python3-setuptools"
-makedepends="python3-setuptools python-PyQt5 python-dbus python3-PyQt5-dbus"
-depends="python3-setuptools python-PyQt5 python3-PyQt5-dbus
- python3-PyQt5-webkit xdg-utils"
-short_desc="Non official desktop client app for Slack"
-archs=noarch
-maintainer="Gurpreet Singh <gurpreet@mailfence.com>"
-license="MIT"
-homepage="https://launchpad.net/~rael-gc/+archive/ubuntu/scudcloud"
-distfiles="https://github.com/raelgc/${pkgname}/archive/v${version}.tar.gz"
-checksum=1b5420a868a37e181655e9799a3d1fcbbc0b0112349c44ac3d7936b626334791
-
-post_install() {
-	vlicense LICENSE
-}

From 3a020a359d0dc5eb9dce69bbca262e3e3a811f49 Mon Sep 17 00:00:00 2001
From: John <johnz@posteo.net>
Date: Tue, 30 Jul 2019 21:26:02 +0200
Subject: [PATCH 873/874] blender: update to 2.80.

---
 srcpkgs/blender/patches/D6038.diff            |  49 ++++++++
 .../blender/patches/blender-2.78a-musl.patch  |  49 ++++----
 .../collada-1.6.68_DocumentImporter.cpp.patch |  14 ---
 .../collada-1.6.68_DocumentImporter.h.patch   |  11 --
 srcpkgs/blender/patches/ffmpeg4.patch         | 116 ------------------
 srcpkgs/blender/patches/gcc9-elbeem.patch     |  31 -----
 srcpkgs/blender/patches/tree_hpp.patch        |  11 --
 srcpkgs/blender/patches/util_sseb.patch       |  11 --
 srcpkgs/blender/template                      |  15 ++-
 9 files changed, 84 insertions(+), 223 deletions(-)
 create mode 100644 srcpkgs/blender/patches/D6038.diff
 delete mode 100644 srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch
 delete mode 100644 srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch
 delete mode 100644 srcpkgs/blender/patches/ffmpeg4.patch
 delete mode 100644 srcpkgs/blender/patches/gcc9-elbeem.patch
 delete mode 100644 srcpkgs/blender/patches/tree_hpp.patch
 delete mode 100644 srcpkgs/blender/patches/util_sseb.patch

diff --git a/srcpkgs/blender/patches/D6038.diff b/srcpkgs/blender/patches/D6038.diff
new file mode 100644
index 00000000000..c26934e3447
--- /dev/null
+++ b/srcpkgs/blender/patches/D6038.diff
@@ -0,0 +1,49 @@
+Index: blender-2.80_patched/source/blender/python/generic/py_capi_utils.c
+===================================================================
+--- blender-2.80_patched/source/blender/python/generic/py_capi_utils.c
++++ blender-2.80_patched/source/blender/python/generic/py_capi_utils.c
+@@ -717,9 +717,11 @@
+  ****************************************************************************/
+ PyObject *PyC_DefaultNameSpace(const char *filename)
+ {
+-  PyInterpreterState *interp = PyThreadState_GET()->interp;
++  PyObject *modules = PyImport_GetModuleDict();
++  PyObject *builtins = PyDict_GetItemString(modules, "builtins");
++
+   PyObject *mod_main = PyModule_New("__main__");
+-  PyDict_SetItemString(interp->modules, "__main__", mod_main);
++  PyDict_SetItemString(modules, "__main__", mod_main);
+   Py_DECREF(mod_main); /* sys.modules owns now */
+   PyModule_AddStringConstant(mod_main, "__name__", "__main__");
+   if (filename) {
+@@ -727,8 +729,8 @@
+      * note: this wont map to a real file when executing text-blocks and buttons. */
+     PyModule_AddObject(mod_main, "__file__", PyC_UnicodeFromByte(filename));
+   }
+-  PyModule_AddObject(mod_main, "__builtins__", interp->builtins);
+-  Py_INCREF(interp->builtins); /* AddObject steals a reference */
++  PyModule_AddObject(mod_main, "__builtins__", builtins);
++  Py_INCREF(builtins); /* AddObject steals a reference */
+   return PyModule_GetDict(mod_main);
+ }
+ 
+@@ -755,15 +757,15 @@
+ /* restore MUST be called after this */
+ void PyC_MainModule_Backup(PyObject **main_mod)
+ {
+-  PyInterpreterState *interp = PyThreadState_GET()->interp;
+-  *main_mod = PyDict_GetItemString(interp->modules, "__main__");
++  PyObject *modules = PyImport_GetModuleDict();
++  *main_mod = PyDict_GetItemString(modules, "__main__");
+   Py_XINCREF(*main_mod); /* don't free */
+ }
+ 
+ void PyC_MainModule_Restore(PyObject *main_mod)
+ {
+-  PyInterpreterState *interp = PyThreadState_GET()->interp;
+-  PyDict_SetItemString(interp->modules, "__main__", main_mod);
++  PyObject *modules = PyImport_GetModuleDict();
++  PyDict_SetItemString(modules, "__main__", main_mod);
+   Py_XDECREF(main_mod);
+ }
+ 
diff --git a/srcpkgs/blender/patches/blender-2.78a-musl.patch b/srcpkgs/blender/patches/blender-2.78a-musl.patch
index 1ffd09cd57d..bddae1f8d3c 100644
--- a/srcpkgs/blender/patches/blender-2.78a-musl.patch
+++ b/srcpkgs/blender/patches/blender-2.78a-musl.patch
@@ -20,30 +20,9 @@ diff -ru blender-2.78.orig/CMakeLists.txt blender-2.78a/CMakeLists.txt
  elseif(WIN32)
  	set(_init_JACK                           OFF)
  elseif(APPLE)
-diff -ru blender-2.78.orig/intern/guardedalloc/intern/mallocn_intern.h blender-2.78a/intern/guardedalloc/intern/mallocn_intern.h
---- blender-2.78.orig/intern/guardedalloc/intern/mallocn_intern.h	2016-09-28 09:26:55.000000000 +0000
-+++ blender-2.78a/intern/guardedalloc/intern/mallocn_intern.h	2017-02-07 14:44:35.213040733 +0000
-@@ -52,7 +52,7 @@
- #undef HAVE_MALLOC_STATS
- #define USE_MALLOC_USABLE_SIZE  /* internal, when we have malloc_usable_size() */
- 
--#if defined(__linux__) || (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || defined(__GLIBC__)
-+#if (defined(__linux__) && defined(HAVE_EXECINFO_H)) || (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || defined(__GLIBC__)
- #  include <malloc.h>
- #  define HAVE_MALLOC_STATS
- #elif defined(__FreeBSD__)
 diff -ru blender-2.78.orig/source/blender/blenlib/intern/system.c blender-2.78a/source/blender/blenlib/intern/system.c
 --- blender-2.78.orig/source/blender/blenlib/intern/system.c	2016-10-25 09:59:23.000000000 +0000
 +++ blender-2.78a/source/blender/blenlib/intern/system.c	2017-02-07 14:44:35.213040733 +0000
-@@ -31,7 +31,7 @@
- #include "MEM_guardedalloc.h"
- 
- /* for backtrace */
--#if defined(__linux__) || defined(__APPLE__)
-+#if (defined(__linux__) && defined(HAVE_EXECINFO_H)) || defined(__APPLE__)
- #  include <execinfo.h>
- #elif defined(WIN32)
- #  include <windows.h>
 @@ -77,7 +77,7 @@
  {
  	/* ------------- */
@@ -65,3 +44,31 @@ diff -ru blender-2.78.orig/source/creator/creator_signals.c blender-2.78a/source
  	feenableexcept(FE_DIVBYZERO | FE_INVALID | FE_OVERFLOW);
  # endif /* defined(__linux__) && defined(__GNUC__) */
  # if defined(OSX_SSE_FPE)
+--- a/source/blender/blenlib/intern/system.c	2019-07-30 21:05:30.702224608 +0200
++++ -	2019-07-30 21:13:21.535328709 +0200
+@@ -38,10 +38,13 @@
+ #  include <dbghelp.h>
+ #  pragma warning(pop)
+ #else
+-#  include <execinfo.h>
+ #  include <unistd.h>
+ #endif
+ 
++#if (defined(__linux__) && defined(HAVE_EXECINFO_H)) || defined(__APPLE__)
++#  include <execinfo.h>
++#endif
++
+ int BLI_cpu_support_sse2(void)
+ {
+ #if defined(__x86_64__) || defined(_M_X64)
+--- a/intern/guardedalloc/intern/mallocn_intern.h	2019-07-24 09:41:39.000000000 +0200
++++ -	2019-10-20 00:03:13.450031866 +0200
+@@ -40,7 +40,7 @@
+ #undef HAVE_MALLOC_STATS
+ #define USE_MALLOC_USABLE_SIZE /* internal, when we have malloc_usable_size() */
+ 
+-#if defined(__linux__) || (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || \
++#if (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || \
+     defined(__GLIBC__)
+ #  include <malloc.h>
+ #  define HAVE_MALLOC_STATS
diff --git a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch b/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch
deleted file mode 100644
index e181a004379..00000000000
--- a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/source/blender/collada/DocumentImporter.cpp
-+++ b/source/blender/collada/DocumentImporter.cpp
-@@ -1340,6 +1340,11 @@ bool DocumentImporter::writeAnimationLis
- 	return anim_importer.write_animation_list(animationList);
- }
- 
-+bool DocumentImporter::writeAnimationClip(const COLLADAFW::AnimationClip *AnimationClip)
-+{
-+	return true;
-+}
-+
- /** When this method is called, the writer must write the skin controller data.
-  * \return The writer should return true, if writing succeeded, false otherwise.*/
- bool DocumentImporter::writeSkinControllerData(const COLLADAFW::SkinControllerData *skin)
diff --git a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch b/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch
deleted file mode 100644
index af0d2b4dded..00000000000
--- a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/source/blender/collada/DocumentImporter.h.orig	2018-12-03 07:38:12 UTC
-+++ b/source/blender/collada/DocumentImporter.h
-@@ -107,6 +107,8 @@ public:
- 	bool writeAnimation(const COLLADAFW::Animation*);
- 
- 	bool writeAnimationList(const COLLADAFW::AnimationList*);
-+	
-+	bool writeAnimationClip( const COLLADAFW::AnimationClip* );
- 
- 	bool writeGeometry(const COLLADAFW::Geometry*);
- 
diff --git a/srcpkgs/blender/patches/ffmpeg4.patch b/srcpkgs/blender/patches/ffmpeg4.patch
deleted file mode 100644
index 6b29e58f273..00000000000
--- a/srcpkgs/blender/patches/ffmpeg4.patch
+++ /dev/null
@@ -1,116 +0,0 @@
-source: https://git.archlinux.org/svntogit/community.git/plain/trunk/ffmpeg4.0.patch?h=packages/blender
-
-diff --git a/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp b/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp
-index e9eea195208..84aea330313 100644
---- a/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp
-+++ b/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp
-@@ -264,9 +264,9 @@ AUD_FFMPEGReader::AUD_FFMPEGReader(boost::shared_ptr<AUD_Buffer> buffer) :
- 		m_membuffer(buffer),
- 		m_membufferpos(0)
- {
--	m_membuf = reinterpret_cast<data_t*>(av_malloc(FF_MIN_BUFFER_SIZE + FF_INPUT_BUFFER_PADDING_SIZE));
-+	m_membuf = reinterpret_cast<data_t*>(av_malloc(AV_INPUT_BUFFER_MIN_SIZE + AV_INPUT_BUFFER_PADDING_SIZE));
- 
--	m_aviocontext = avio_alloc_context(m_membuf, FF_MIN_BUFFER_SIZE, 0, this,
-+	m_aviocontext = avio_alloc_context(m_membuf, AV_INPUT_BUFFER_MIN_SIZE, 0, this,
- 									   read_packet, NULL, seek_packet);
- 
- 	if(!m_aviocontext)
-diff --git a/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp b/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
-index 3f95ac7a4da..2c2f0916406 100644
---- a/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
-+++ b/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
-@@ -163,7 +163,7 @@ AUD_FFMPEGWriter::AUD_FFMPEGWriter(std::string filename, AUD_DeviceSpecs specs,
- 		try
- 		{
- 			if(m_formatCtx->oformat->flags & AVFMT_GLOBALHEADER)
--				m_codecCtx->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+				m_codecCtx->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 
- 			AVCodec* codec = avcodec_find_encoder(m_codecCtx->codec_id);
- 			if(!codec)
-@@ -185,11 +185,11 @@ AUD_FFMPEGWriter::AUD_FFMPEGWriter(std::string filename, AUD_DeviceSpecs specs,
- 			if(avcodec_open2(m_codecCtx, codec, NULL))
- 				AUD_THROW(AUD_ERROR_FFMPEG, codec_error);
- 
--			m_output_buffer.resize(FF_MIN_BUFFER_SIZE);
-+			m_output_buffer.resize(AV_INPUT_BUFFER_MIN_SIZE);
- 			int samplesize = AUD_MAX(AUD_SAMPLE_SIZE(m_specs), AUD_DEVICE_SAMPLE_SIZE(m_specs));
- 
- 			if(m_codecCtx->frame_size <= 1) {
--				m_input_size = FF_MIN_BUFFER_SIZE * 8 / m_codecCtx->bits_per_coded_sample / m_codecCtx->channels;
-+				m_input_size = AV_INPUT_BUFFER_MIN_SIZE * 8 / m_codecCtx->bits_per_coded_sample / m_codecCtx->channels;
- 				m_input_buffer.resize(m_input_size * samplesize);
- 			}
- 			else
-diff --git a/source/blender/blenkernel/intern/writeffmpeg.c b/source/blender/blenkernel/intern/writeffmpeg.c
-index d7fcd896e11..9e82df17dce 100644
---- a/source/blender/blenkernel/intern/writeffmpeg.c
-+++ b/source/blender/blenkernel/intern/writeffmpeg.c
-@@ -619,8 +619,6 @@ static AVStream *alloc_video_stream(FFMpegContext *context, RenderData *rd, int
- 	c->rc_buffer_aggressivity = 1.0;
- #endif
- 
--	c->me_method = ME_EPZS;
--	
- 	codec = avcodec_find_encoder(c->codec_id);
- 	if (!codec)
- 		return NULL;
-@@ -682,14 +680,14 @@ static AVStream *alloc_video_stream(FFMpegContext *context, RenderData *rd, int
- 	    )
- 	{
- 		PRINT("Using global header\n");
--		c->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+		c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 	}
- 	
- 	/* Determine whether we are encoding interlaced material or not */
- 	if (rd->mode & R_FIELDS) {
- 		PRINT("Encoding interlaced video\n");
--		c->flags |= CODEC_FLAG_INTERLACED_DCT;
--		c->flags |= CODEC_FLAG_INTERLACED_ME;
-+		c->flags |= AV_CODEC_FLAG_INTERLACED_DCT;
-+		c->flags |= AV_CODEC_FLAG_INTERLACED_ME;
- 	}
- 
- 	/* xasp & yasp got float lately... */
-@@ -779,7 +777,7 @@ static AVStream *alloc_audio_stream(FFMpegContext *context, RenderData *rd, int
- 	}
- 
- 	if (of->oformat->flags & AVFMT_GLOBALHEADER) {
--		c->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+		c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 	}
- 
- 	set_ffmpeg_properties(rd, c, "audio", &opts);
-@@ -798,14 +796,14 @@ static AVStream *alloc_audio_stream(FFMpegContext *context, RenderData *rd, int
- 	st->codec->time_base.den = st->codec->sample_rate;
- 
- #ifndef FFMPEG_HAVE_ENCODE_AUDIO2
--	context->audio_outbuf_size = FF_MIN_BUFFER_SIZE;
-+	context->audio_outbuf_size = AV_INPUT_BUFFER_MIN_SIZE;
- #endif
- 
- 	if (c->frame_size == 0)
- 		// used to be if ((c->codec_id >= CODEC_ID_PCM_S16LE) && (c->codec_id <= CODEC_ID_PCM_DVD))
- 		// not sure if that is needed anymore, so let's try out if there are any
- 		// complaints regarding some ffmpeg versions users might have
--		context->audio_input_samples = FF_MIN_BUFFER_SIZE * 8 / c->bits_per_coded_sample / c->channels;
-+		context->audio_input_samples = AV_INPUT_BUFFER_MIN_SIZE * 8 / c->bits_per_coded_sample / c->channels;
- 	else {
- 		context->audio_input_samples = c->frame_size;
- #ifndef FFMPEG_HAVE_ENCODE_AUDIO2
-diff --git a/source/blender/imbuf/intern/indexer.c b/source/blender/imbuf/intern/indexer.c
-index eaf4dfd84b4..9c2f42feb52 100644
---- a/source/blender/imbuf/intern/indexer.c
-+++ b/source/blender/imbuf/intern/indexer.c
-@@ -537,7 +537,7 @@ static struct proxy_output_ctx *alloc_proxy_output_ffmpeg(
- 	av_opt_set_int(rv->c, "qmax", ffmpeg_quality, 0);
- 
- 	if (rv->of->flags & AVFMT_GLOBALHEADER) {
--		rv->c->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+		rv->c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 	}
- 
- 	if (avio_open(&rv->of->pb, fname, AVIO_FLAG_WRITE) < 0) {
-
diff --git a/srcpkgs/blender/patches/gcc9-elbeem.patch b/srcpkgs/blender/patches/gcc9-elbeem.patch
deleted file mode 100644
index 26c58e7d988..00000000000
--- a/srcpkgs/blender/patches/gcc9-elbeem.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-https://bugs.gentoo.org/685922
-
---- a/intern/elbeem/intern/solver_main.cpp
-+++ b/intern/elbeem/intern/solver_main.cpp
-@@ -381,7 +381,7 @@ LbmFsgrSolver::mainLoop(const int lev)
- 	GRID_REGION_INIT();
- #if PARALLEL==1
- 	const int gDebugLevel = ::gDebugLevel;
--#pragma omp parallel default(none) num_threads(mNumOMPThreads) \
-+#pragma omp parallel default(none) firstprivate(gDebugLevel,iend,lev,cutConst) num_threads(mNumOMPThreads) \
-   reduction(+: \
- 	  calcCurrentMass,calcCurrentVolume, \
- 		calcCellsFilled,calcCellsEmptied, \
-@@ -1126,7 +1126,7 @@ LbmFsgrSolver::preinitGrids()
- 		GRID_REGION_INIT();
- #if PARALLEL==1
- 	const int gDebugLevel = ::gDebugLevel;
--#pragma omp parallel default(none) num_threads(mNumOMPThreads) \
-+#pragma omp parallel default(none) firstprivate(gDebugLevel,iend,lev) num_threads(mNumOMPThreads) \
-   reduction(+: \
- 	  calcCurrentMass,calcCurrentVolume, \
- 		calcCellsFilled,calcCellsEmptied, \
-@@ -1164,7 +1164,7 @@ LbmFsgrSolver::standingFluidPreinit()
- 	GRID_REGION_INIT();
- #if PARALLEL==1
- 	const int gDebugLevel = ::gDebugLevel;
--#pragma omp parallel default(none) num_threads(mNumOMPThreads) \
-+#pragma omp parallel default(none) firstprivate(gDebugLevel,iend,lev) num_threads(mNumOMPThreads) \
-   reduction(+: \
- 	  calcCurrentMass,calcCurrentVolume, \
- 		calcCellsFilled,calcCellsEmptied, \
diff --git a/srcpkgs/blender/patches/tree_hpp.patch b/srcpkgs/blender/patches/tree_hpp.patch
deleted file mode 100644
index 7c9fbca1821..00000000000
--- a/srcpkgs/blender/patches/tree_hpp.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/intern/itasc/kdl/tree.hpp	2018-03-23 16:22:25.000000000 +0100
-+++ b/intern/itasc/kdl/tree.hpp	2018-08-13 19:31:32.101185313 +0200
-@@ -34,7 +34,7 @@
-     //Forward declaration
-     class TreeElement;
-     // Eigen allocator is needed for alignment of Eigen data types
--    typedef std::map<std::string,TreeElement, std::less<std::string>, Eigen::aligned_allocator<std::pair<std::string, TreeElement> > > SegmentMap;
-+    typedef std::map<std::string,TreeElement, std::less<std::string>, Eigen::aligned_allocator<std::pair<const std::string, TreeElement> > > SegmentMap;
- 
-     class TreeElement
-     {
diff --git a/srcpkgs/blender/patches/util_sseb.patch b/srcpkgs/blender/patches/util_sseb.patch
deleted file mode 100644
index 85396282d81..00000000000
--- a/srcpkgs/blender/patches/util_sseb.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/intern/cycles/util/util_sseb.h
-+++ b/intern/cycles/util/util_sseb.h
-@@ -116,7 +116,7 @@ __forceinline const sseb unpacklo( const sseb& a, const sseb& b ) { return _mm_u
- __forceinline const sseb unpackhi( const sseb& a, const sseb& b ) { return _mm_unpackhi_ps(a, b); }
- 
- template<size_t i0, size_t i1, size_t i2, size_t i3> __forceinline const sseb shuffle( const sseb& a ) {
--	return _mm_shuffle_epi32(a, _MM_SHUFFLE(i3, i2, i1, i0));
-+	return _mm_castsi128_ps(_mm_shuffle_epi32(a, _MM_SHUFFLE(i3, i2, i1, i0)));
- }
- 
- template<> __forceinline const sseb shuffle<0, 1, 0, 1>( const sseb& a ) {
diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template
index 47cb8f8ad13..2beb7f96dd8 100644
--- a/srcpkgs/blender/template
+++ b/srcpkgs/blender/template
@@ -1,21 +1,22 @@
 # Template file for 'blender'
 pkgname=blender
-version=2.79b
-revision=10
+version=2.80
+revision=1
 build_style="cmake"
 makedepends="
  libgomp-devel libpng-devel tiff-devel python3-devel glu-devel
  glew-devel freetype-devel jack-devel libopenal-devel libsndfile-devel
  libsamplerate-devel ffmpeg-devel fftw-devel boost-devel pcre-devel llvm
  libopenexr-devel libopenjpeg-devel libXi-devel openimageio-devel
- opencolorio-devel opencollada-devel"
+ opencolorio-devel opencollada-devel python3-numpy"
 depends="desktop-file-utils hicolor-icon-theme"
 short_desc="3D graphics creation suite"
 maintainer="Enno Boland <gottox@voidlinux.org>"
-license="GPL-2"
+license="GPL-2.0-or-later"
 homepage="http://www.blender.org"
-distfiles="http://download.blender.org/source/${pkgname}-${version}.tar.gz"
-checksum=4c944c304a49e68ac687ea06f5758204def049b66dc211e1cffa1857716393bc
+#distfiles="http://download.blender.org/source/${pkgname}-${version}.tar.gz"
+distfiles="https://ftp.halifax.rwth-aachen.de/blender/source/blender-${version}.tar.gz"
+checksum=cd9d7e505c1f6e63a4f72366ed04d446859977eeb34cde21283aaea6a304a5c0
 patch_args="-Np1"
 
 pycompile_version="$py3_ver"
@@ -25,9 +26,7 @@ archs="x86_64* i686* ppc64*"
 configure_args="
 -DWITH_INSTALL_PORTABLE=OFF
 -DWITH_PYTHON_INSTALL=OFF
--DWITH_GAMEENGINE=ON
 -DWITH_JACK=ON
--DWITH_PLAYER=ON
 -DWITH_CODEC_FFMPEG=ON
 -DWITH_CODEC_SNDFILE=ON
 -DWITH_OPENMP=ON

From a95fe8004999356c26cfa84e0e1d30c60d89c294 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Mon, 21 Oct 2019 14:41:53 +0200
Subject: [PATCH 874/874] attic: remove, upstream dead.

---
 srcpkgs/attic/template | 29 -----------------------------
 1 file changed, 29 deletions(-)
 delete mode 100644 srcpkgs/attic/template

diff --git a/srcpkgs/attic/template b/srcpkgs/attic/template
deleted file mode 100644
index ed454302ce4..00000000000
--- a/srcpkgs/attic/template
+++ /dev/null
@@ -1,29 +0,0 @@
-# Template file for 'attic'
-pkgname=attic
-version=0.16
-revision=15
-wrksrc="Attic-$version"
-build_style=python3-module
-hostmakedepends="python3-setuptools python3-devel libressl-devel python3-Sphinx"
-makedepends="${hostmakedepends/python3-setuptools/} acl-devel"
-depends="python3-msgpack python3-llfuse"
-pycompile_module="attic"
-short_desc="A deduplicating backup program for efficient and secure backups"
-maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
-homepage="https://attic-backup.org/"
-license="BSD"
-distfiles="${PYPI_SITE}/A/Attic/Attic-0.16.tar.gz"
-checksum=6650cd28072101c2e05941e77b93a62f91da6179785e4e4b4880916c469bba2c
-
-pre_build() {
-	if [ "$CROSS_BUILD" ]; then
-		sed -i "s|\(possible_openssl_prefixes\) =.*|\1 = ['${XBPS_CROSS_BASE}/usr']|" setup.py
-	fi
-}
-post_build() {
-	PYTHONPATH=.. make -C docs man SPHINXBUILD=sphinx-build3
-}
-post_install() {
-	vlicense LICENSE
-	vman docs/_build/man/attic-deduplicatingarchiver.1 attic.1
-}

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (18 preceding siblings ...)
  2019-10-21 12:42 ` voidlinux-github
@ 2019-11-02 15:43 ` voidlinux-github
  2019-11-02 15:51 ` voidlinux-github
                   ` (12 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-11-02 15:43 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 251 bytes --]

New comment by faulesocke on void-packages repository

https://github.com/void-linux/void-packages/pull/15623#issuecomment-549055370

Comment:
I just rebased this locally and currently try to build libreoffice. What else is missing to get this going?

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (19 preceding siblings ...)
  2019-11-02 15:43 ` voidlinux-github
@ 2019-11-02 15:51 ` voidlinux-github
  2019-11-02 18:09 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (11 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-11-02 15:51 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 251 bytes --]

New comment by leahneukirchen on void-packages repository

https://github.com/void-linux/void-packages/pull/15623#issuecomment-549055884

Comment:
Dealing with the meson packages is still not resolved.

Perhaps we should also wait for Python 3.8.1.

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PR PATCH] [Updated] [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (20 preceding siblings ...)
  2019-11-02 15:51 ` voidlinux-github
@ 2019-11-02 18:09 ` voidlinux-github
  2019-11-02 18:09 ` voidlinux-github
                   ` (10 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-11-02 18:09 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1084 bytes --]

There is an updated pull request by leahneukirchen against master on the void-packages repository

https://github.com/leahneukirchen/void-packages python38
https://github.com/void-linux/void-packages/pull/15623

[WIP] Python 3.8
This huge PR tries to bump all packages that either shlib-require
libpython3.6m.so.1.0 or put files into /usr/lib/python3.6/site-packages.

Broken packages (on x86_64):

- [x] ~~attic~~ -> upstream dead, remove?
- [x] blender -> update to 2.80
- [x] eolie -> meson
- [x] fontforge
- [x] freecad
- [x] gst1-python -> meson
- [ ] libopenshot -> gcc9 issue, but supposedly fixed? @Spencer-H 
- [x] libpeas
- [x] nagstamon
- [x] paraview
- [x] pockyt
- [x] ~~scudcloud~~
- [x] torbrowser-launcher
- [x] unknown-horizons
- [x] vapoursynth
- [x] variety
- [ ] kdevelop-python -> upstream: https://bugs.kde.org/show_bug.cgi?id=411956 wait for 5.5
- [x] krita: SHA256 mismatch
- [x] ~~shiboken~~
- [x] renderdoc

Untested:

- [ ] libreoffice


A patch file from https://github.com/void-linux/void-packages/pull/15623.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python38-15623.patch --]
[-- Type: text/x-diff, Size: 657410 bytes --]

From f3e69f55e4fc4993bf44ee3990194d159fc6a242 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:06:59 +0200
Subject: [PATCH 001/871] python3: update to 3.8.0.

---
 common/shlibs                                 |  3 ++-
 .../python3/patches/fix-xattrs-glibc.patch    | 13 ----------
 srcpkgs/python3/patches/libressl-2.6.patch    | 26 -------------------
 srcpkgs/python3/template                      | 23 ++++++++--------
 4 files changed, 13 insertions(+), 52 deletions(-)
 delete mode 100644 srcpkgs/python3/patches/fix-xattrs-glibc.patch
 delete mode 100644 srcpkgs/python3/patches/libressl-2.6.patch

diff --git a/common/shlibs b/common/shlibs
index 388f2a9b3ea..c8e21637ac7 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1701,8 +1701,9 @@ libefiboot.so.1 libefivar-31_1
 libportaudio.so.2 portaudio-19.20140130_1
 libportaudiocpp.so.0 portaudio-cpp-19.20140130_1
 libdar.so.5000 libdar-2.4.14_1
-libpython3.so python3-3.6.2_1
 libpython3.6m.so.1.0 python3-3.6.2_1
+libpython3.so python3-3.8.0_1
+libpython3.8.so.1.0 python3-3.8.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.25.28_1
diff --git a/srcpkgs/python3/patches/fix-xattrs-glibc.patch b/srcpkgs/python3/patches/fix-xattrs-glibc.patch
deleted file mode 100644
index 909901293d5..00000000000
--- a/srcpkgs/python3/patches/fix-xattrs-glibc.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- Modules/posixmodule.c.orig
-+++ Modules/posixmodule.c
-@@ -103,8 +103,9 @@ corresponding Unix manual entries for more information on calls.");
- #undef HAVE_SCHED_SETAFFINITY
- #endif
- 
--#if defined(HAVE_SYS_XATTR_H) && defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
-+#if defined(HAVE_SYS_XATTR_H) && defined(__linux__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
- #define USE_XATTRS
-+#include <linux/limits.h>
- #endif
- 
- #ifdef USE_XATTRS
diff --git a/srcpkgs/python3/patches/libressl-2.6.patch b/srcpkgs/python3/patches/libressl-2.6.patch
deleted file mode 100644
index 92dcf1ef06e..00000000000
--- a/srcpkgs/python3/patches/libressl-2.6.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-https://github.com/python/cpython/pull/4930
-
---- Lib/test/test_ssl.py.orig
-+++ Lib/test/test_ssl.py
-@@ -29,6 +29,12 @@
- PROTOCOLS = sorted(ssl._PROTOCOL_NAMES)
- HOST = support.HOST
- IS_LIBRESSL = ssl.OPENSSL_VERSION.startswith('LibreSSL')
-+if IS_LIBRESSL:
-+    LIBRESSL_VERSION = tuple(
-+        int(s) for s in ssl.OPENSSL_VERSION.rsplit(' ')[-1].split('.')
-+    )
-+else:
-+    LIBRESSL_VERSION = ()
- IS_OPENSSL_1_1 = not IS_LIBRESSL and ssl.OPENSSL_VERSION_INFO >= (1, 1, 0)
- 
- 
-@@ -3392,6 +3398,8 @@ def test_selected_npn_protocol(self):
-                                        chatty=True, connectionchatty=True)
-             self.assertIs(stats['client_npn_protocol'], None)
- 
-+        @unittest.skipIf(IS_LIBRESSL and LIBRESSL_VERSION >= (2, 6, 1),
-+                         "LibreSSL 2.6.1+ has broken NPN support")
-         @unittest.skipUnless(ssl.HAS_NPN, "NPN support needed for this test")
-         def test_npn_protocols(self):
-             server_protocols = ['http/1.1', 'spdy/2']
diff --git a/srcpkgs/python3/template b/srcpkgs/python3/template
index 60bd4411ba8..b03a59beea8 100644
--- a/srcpkgs/python3/template
+++ b/srcpkgs/python3/template
@@ -3,7 +3,7 @@
 # THIS PKG MUST BE SYNCHRONIZED WITH "srcpkgs/python3-tkinter".
 #
 pkgname=python3
-version=3.6.9
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 short_desc="Interpreted, interactive, object-oriented programming language (${version%.*} series)"
@@ -11,7 +11,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=5e2f5f554e3f8f7f0296f7e73d8600c4e9acbaee6b2555b83206edf5153870da
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pycompile_dirs="usr/lib/python${version%.*}"
 hostmakedepends="pkg-config"
@@ -27,8 +27,7 @@ alternatives="
  python:python.1:/usr/share/man/man1/python${version%.*}.1"
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,13 +71,13 @@ do_install() {
 	rm -rf ${DESTDIR}/usr/lib/python${version%.*}/lib2to3/tests
 	# Remove references to the install(1) wrapper.
 	sed -e "s,${XBPS_WRAPPERDIR},/usr/bin,g" -i \
-		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/Makefile
 	if [ "$CROSS_BUILD" ]; then
 		# Remove references to cross toolchain.
 		sed -i "s/$XBPS_CROSS_TRIPLET-//g" \
-			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}/Makefile
 	fi
 }
 
@@ -89,10 +88,10 @@ python3-devel_package() {
 		vmove usr/bin/python*-config
 		vmove usr/lib/pkgconfig
 		vmove usr/include
-		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/libpython${version%.*}m.a \
+		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/libpython${version%.*}*.a \
 			${PKGDESTDIR}/usr/lib
-		mkdir -p ${DESTDIR}/usr/include/python${version%.*}m
-		mv ${PKGDESTDIR}/usr/include/python${version%.*}m/pyconfig.h \
-			${DESTDIR}/usr/include/python${version%.*}m
+		mkdir -p ${DESTDIR}/usr/include/python${version%.*}
+		mv ${PKGDESTDIR}/usr/include/python${version%.*}/pyconfig.h \
+			${DESTDIR}/usr/include/python${version%.*}
 	}
 }

From 65f69e24eccf31be2c875e480983e45cdd62c0ab Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 17:09:57 +0200
Subject: [PATCH 002/871] python3-tkinter: update to 3.8.0.

---
 srcpkgs/python3-tkinter/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template
index 83906219af8..874be51ebdf 100644
--- a/srcpkgs/python3-tkinter/template
+++ b/srcpkgs/python3-tkinter/template
@@ -7,7 +7,7 @@
 _desc="Interpreted, interactive, object-oriented programming language"
 
 pkgname=python3-tkinter
-version=3.6.8
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 pycompile_dirs="
@@ -22,11 +22,10 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=35446241e995773b1bed7d196f4b624dadcadc8429f26282e756b2fb8a351193
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used.
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used.
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,7 +71,7 @@ do_install() {
 		mv ${wrksrc}/${pkgname}-${version}-install/usr/lib/python${version%.*}/${lib} \
 			${DESTDIR}/usr/lib/python${version%.*}/
 	done
-	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*m*.so \
+	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*.so \
 		${DESTDIR}/usr/lib/python${version%.*}/lib-dynload/
 	ln -sf idle${version%.*} ${DESTDIR}/usr/bin/idle3
 }

From b1825e05a77e1c2c55c215e040ee647e025a1cfc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:42:15 +0200
Subject: [PATCH 003/871] common/environment/setup/python.sh: update to Python
 3.8.

---
 common/build-style/python-module.sh | 14 ++++----------
 common/environment/setup/python.sh  |  4 ++--
 2 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/common/build-style/python-module.sh b/common/build-style/python-module.sh
index da6ed586cff..ff8f107745f 100644
--- a/common/build-style/python-module.sh
+++ b/common/build-style/python-module.sh
@@ -4,7 +4,7 @@
 
 do_build() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
+	local pyver= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
@@ -12,10 +12,7 @@ do_build() {
 			LDFLAGS="$tmp_ldflags"
 
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
@@ -49,15 +46,12 @@ do_check() {
 
 do_install() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx=
+	local pyver=
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
diff --git a/common/environment/setup/python.sh b/common/environment/setup/python.sh
index d1f4d49a10a..ba181d45361 100644
--- a/common/environment/setup/python.sh
+++ b/common/environment/setup/python.sh
@@ -10,8 +10,8 @@ py2_lib="/usr/lib/python${py2_ver}"
 py2_sitelib="${py2_lib}/site-packages"
 py2_inc="/usr/include/python${py2_ver}"
 
-py3_ver="3.6"
-py3_abiver="m"
+py3_ver="3.8"
+py3_abiver=""
 py3_lib="/usr/lib/python${py3_ver}"
 py3_sitelib="${py3_lib}/site-packages"
 py3_inc="/usr/include/python${py3_ver}${py3_abiver}"

From 26da2d707f89c4678178d40a18de320eac45ce73 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 004/871] python3-3to2: rebuild for Python 3.8.

---
 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 b6ab94fe7c9..38558f1fcff 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=1
+revision=2
 archs=noarch
 wrksrc="3to2-${version}"
 build_style=python3-module

From af88427ef136a7d1b3d5c1a6fcb6a942e994e9b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 005/871] python-Arrow: rebuild for Python 3.8.

---
 srcpkgs/python-Arrow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Arrow/template b/srcpkgs/python-Arrow/template
index 456e3776188..a3785d60075 100644
--- a/srcpkgs/python-Arrow/template
+++ b/srcpkgs/python-Arrow/template
@@ -2,7 +2,7 @@
 pkgname=python-Arrow
 reverts=0.13.1_1
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="arrow-${version}"
 build_style=python-module

From e07964fb10d2a7a4b3937b7705bb9df796e92da1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 006/871] python-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Babel/template b/srcpkgs/python-Babel/template
index 34d7a7728ce..619ae432ba4 100644
--- a/srcpkgs/python-Babel/template
+++ b/srcpkgs/python-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Babel'
 pkgname=python-Babel
 version=2.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 605b075329352018d95fd9c30322dab67951feff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 007/871] python-BeautifulSoup4: rebuild for Python 3.8.

---
 srcpkgs/python-BeautifulSoup4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-BeautifulSoup4/template b/srcpkgs/python-BeautifulSoup4/template
index 46e1893cf6f..e34cf8d3fe8 100644
--- a/srcpkgs/python-BeautifulSoup4/template
+++ b/srcpkgs/python-BeautifulSoup4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-BeautifulSoup4'
 pkgname=python-BeautifulSoup4
 version=4.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="beautifulsoup4-${version}"
 build_style=python-module

From 863e7827d112109fb30ecac65a4bde50099ecdca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 008/871] python-Bottleneck: rebuild for Python 3.8.

---
 srcpkgs/python-Bottleneck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Bottleneck/template b/srcpkgs/python-Bottleneck/template
index 0c308d5dbb5..28195e99bca 100644
--- a/srcpkgs/python-Bottleneck/template
+++ b/srcpkgs/python-Bottleneck/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Bottleneck'
 pkgname=python-Bottleneck
 version=1.2.1
-revision=4
+revision=5
 wrksrc="Bottleneck-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 8df95fa4dde2ca7c7ab2775e9606fbcba0e61091 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 009/871] python-Cheroot: rebuild for Python 3.8.

---
 srcpkgs/python-Cheroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Cheroot/template b/srcpkgs/python-Cheroot/template
index 328bcb9cddd..666ae3d1c17 100644
--- a/srcpkgs/python-Cheroot/template
+++ b/srcpkgs/python-Cheroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Cheroot'
 pkgname=python-Cheroot
 version=8.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cheroot-${version}"
 build_style=python-module

From 307e8e58feca427ebbec8259f50e96b3a73ba80e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 010/871] python3-CherryPy: rebuild for Python 3.8.

---
 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 b78c01eba2c..450e5791508 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.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python3-module

From 76cbc6055fb0f1051f0fa26b1d2f031d5ac5f878 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 011/871] python-ConfigArgParse: rebuild for Python 3.8.

---
 srcpkgs/python-ConfigArgParse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ConfigArgParse/template b/srcpkgs/python-ConfigArgParse/template
index c9a00a04508..d90ca739aee 100644
--- a/srcpkgs/python-ConfigArgParse/template
+++ b/srcpkgs/python-ConfigArgParse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ConfigArgParse'
 pkgname=python-ConfigArgParse
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ConfigArgParse-${version}"
 build_style=python-module

From 12acfe2428adef39124a56a908e818a815232118 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 012/871] python-Cython: rebuild for Python 3.8.

---
 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 dc39d54e9c2..675160b3744 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.13
-revision=1
+revision=2
 wrksrc="Cython-${version}"
 build_style=python-module
 pycompile_module="Cython pyximport cython.py"

From 1fffc447d39a61ffd8e048bfa917e10c295e58a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 013/871] python-Django: rebuild for Python 3.8.

---
 srcpkgs/python-Django/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Django/template b/srcpkgs/python-Django/template
index 21aa405fba1..65a98e41032 100644
--- a/srcpkgs/python-Django/template
+++ b/srcpkgs/python-Django/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Django'
 pkgname=python-Django
 version=1.11.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="Django-${version}"
 build_style=python-module

From b96297bfa7292e7c727f6d7f0fdd7f8a6f020eef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 014/871] python-Flask: rebuild for Python 3.8.

---
 srcpkgs/python-Flask/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask/template b/srcpkgs/python-Flask/template
index 149a76c077e..b75b306701b 100644
--- a/srcpkgs/python-Flask/template
+++ b/srcpkgs/python-Flask/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask'
 pkgname=python-Flask
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 564ea909923900c0bf643275210379feacba57d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 015/871] python-Flask-Assets: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Assets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Assets/template b/srcpkgs/python-Flask-Assets/template
index 339f629f77a..eb81201396b 100644
--- a/srcpkgs/python-Flask-Assets/template
+++ b/srcpkgs/python-Flask-Assets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Assets'
 pkgname=python-Flask-Assets
 version=0.12
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 52fcdf260ddbf6a6b1d41fcdbde73552543448ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 016/871] python-Flask-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Babel/template b/srcpkgs/python-Flask-Babel/template
index 3028d15d7bd..b3cc35f230e 100644
--- a/srcpkgs/python-Flask-Babel/template
+++ b/srcpkgs/python-Flask-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Babel'
 pkgname=python-Flask-Babel
 version=0.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 83073d1ad839caae5320c6fc5a4ce9fef551b30a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 017/871] python-Flask-Login: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Login/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Login/template b/srcpkgs/python-Flask-Login/template
index 8fecf240963..ccaab92d857 100644
--- a/srcpkgs/python-Flask-Login/template
+++ b/srcpkgs/python-Flask-Login/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Login'
 pkgname=python-Flask-Login
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From e89ea81781986f77e2e98f238cae782143a2d2b9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 018/871] python-Flask-OAuthlib: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-OAuthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-OAuthlib/template b/srcpkgs/python-Flask-OAuthlib/template
index d53157e37b2..958f05a836c 100644
--- a/srcpkgs/python-Flask-OAuthlib/template
+++ b/srcpkgs/python-Flask-OAuthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-OAuthlib'
 pkgname=python-Flask-OAuthlib
 version=0.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From f94508966de69ecd994b52a56dda75ecbbed8cdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 019/871] python3-Flask-RESTful: rebuild for Python 3.8.

---
 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 d0ed467f666..5a05eed0e93 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.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="flask-restful-${version}"
 build_style=python3-module

From 09c5c4106c001fb5a9d6be477fb7af5993883565 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 020/871] python-Flask-Script: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Script/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Script/template b/srcpkgs/python-Flask-Script/template
index 19d13887b8e..41312eae57f 100644
--- a/srcpkgs/python-Flask-Script/template
+++ b/srcpkgs/python-Flask-Script/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Script'
 pkgname=python-Flask-Script
 version=2.0.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 4a825e7aa0cea9aded11099ca70536631cf943c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 021/871] python-Flask-WTF: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-WTF/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-WTF/template b/srcpkgs/python-Flask-WTF/template
index 8edb1d39e35..b2be1e630fb 100644
--- a/srcpkgs/python-Flask-WTF/template
+++ b/srcpkgs/python-Flask-WTF/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-WTF'
 pkgname=python-Flask-WTF
 version=0.14.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 49ca7d0aed2f5120317ab00f2fa3d1c5cf3ad29c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 022/871] python-GitPython: rebuild for Python 3.8.

---
 srcpkgs/python-GitPython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-GitPython/template b/srcpkgs/python-GitPython/template
index 0edb43cc811..232429265f1 100644
--- a/srcpkgs/python-GitPython/template
+++ b/srcpkgs/python-GitPython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-GitPython'
 pkgname=python-GitPython
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="GitPython-${version}"
 build_style=python-module

From f30b29ee1963e6020788c9692bc209e5c47ad4cb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 023/871] python-IPy: rebuild for Python 3.8.

---
 srcpkgs/python-IPy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-IPy/template b/srcpkgs/python-IPy/template
index d28276383ce..aaae9fcd002 100644
--- a/srcpkgs/python-IPy/template
+++ b/srcpkgs/python-IPy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-IPy'
 pkgname=python-IPy
 version=1.00
-revision=1
+revision=2
 archs=noarch
 wrksrc="IPy-${version}"
 build_style=python-module

From 841ea0568dd49d4601b66570ece45be850e85622 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 024/871] python3-Inflector: rebuild for Python 3.8.

---
 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 1bfe9ccef7c..e9ee0ffe8d1 100644
--- a/srcpkgs/python3-Inflector/template
+++ b/srcpkgs/python3-Inflector/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-Inflector'
 pkgname=python3-Inflector
 version=2.0.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="Inflector-${version}"
 build_style=python3-module

From 5109f4c9669e34de0578113e02e6f47eab0829d0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 025/871] python-Jinja2: rebuild for Python 3.8.

---
 srcpkgs/python-Jinja2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Jinja2/template b/srcpkgs/python-Jinja2/template
index c67e6f47f06..3fcd44dc198 100644
--- a/srcpkgs/python-Jinja2/template
+++ b/srcpkgs/python-Jinja2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Jinja2'
 pkgname=python-Jinja2
 version=2.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Jinja2-${version}"
 build_style=python-module

From 6de019ce9f55e9906d428f7f0d24cabca5226a66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 026/871] python-Levenshtein: rebuild for Python 3.8.

---
 srcpkgs/python-Levenshtein/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Levenshtein/template b/srcpkgs/python-Levenshtein/template
index 26f57d90e70..7d97147ccc8 100644
--- a/srcpkgs/python-Levenshtein/template
+++ b/srcpkgs/python-Levenshtein/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Levenshtein'
 pkgname=python-Levenshtein
 version=0.12.0
-revision=2
+revision=3
 build_style=python-module
 pycompile_module="Levenshtein"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"

From 438c7a68ab3fac4168f48dfb853c4335170a9756 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 027/871] python-M2Crypto: rebuild for Python 3.8.

---
 srcpkgs/python-M2Crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-M2Crypto/template b/srcpkgs/python-M2Crypto/template
index 102dbb7261e..6febd5a9ea1 100644
--- a/srcpkgs/python-M2Crypto/template
+++ b/srcpkgs/python-M2Crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-M2Crypto'
 pkgname=python-M2Crypto
 version=0.35.2
-revision=1
+revision=2
 wrksrc="M2Crypto-${version}"
 build_style=python-module
 pycompile_module="M2Crypto"

From cdf115d176deb0eeff6e81dbcc1c9f22d0369648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 028/871] python-Mako: rebuild for Python 3.8.

---
 srcpkgs/python-Mako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Mako/template b/srcpkgs/python-Mako/template
index e5c3c76170c..f0184179b83 100644
--- a/srcpkgs/python-Mako/template
+++ b/srcpkgs/python-Mako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Mako'
 pkgname=python-Mako
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Mako-${version}"
 build_style=python-module

From c0632585aba2fc54366b055899a4d4ea3a2df949 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 029/871] python-Markdown: rebuild for Python 3.8.

---
 srcpkgs/python-Markdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markdown/template b/srcpkgs/python-Markdown/template
index 935dcc12bca..03a0d18e23b 100644
--- a/srcpkgs/python-Markdown/template
+++ b/srcpkgs/python-Markdown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markdown'
 pkgname=python-Markdown
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python-module

From 6c64d70e48be4ecd8ea397e5464073d293216b9e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 030/871] python-MarkupSafe: rebuild for Python 3.8.

---
 srcpkgs/python-MarkupSafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MarkupSafe/template b/srcpkgs/python-MarkupSafe/template
index c12dbb7e656..ae22857aa7a 100644
--- a/srcpkgs/python-MarkupSafe/template
+++ b/srcpkgs/python-MarkupSafe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MarkupSafe'
 pkgname=python-MarkupSafe
 version=1.1.1
-revision=1
+revision=2
 wrksrc="MarkupSafe-${version}"
 build_style=python-module
 pycompile_module="markupsafe"

From 8c4774189bf9d5c3de7833e9dc7712ad54438089 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 031/871] python-Markups: rebuild for Python 3.8.

---
 srcpkgs/python-Markups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markups/template b/srcpkgs/python-Markups/template
index d4817feb430..02ba25ee05c 100644
--- a/srcpkgs/python-Markups/template
+++ b/srcpkgs/python-Markups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markups'
 pkgname=python-Markups
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markups-${version}"
 build_style=python-module

From bbfd346cb2fac79024d2fc6ce36d043cc0ded101 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 032/871] python3-MechanicalSoup: rebuild for Python 3.8.

---
 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 b1bbfa4184c..5a3b0b3eb03 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=1
+revision=2
 archs=noarch
 wrksrc=MechanicalSoup-${version}
 build_style=python3-module

From 11ebaf38f19d8f22615a4a6408a97f43c2466460 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 033/871] python-MiniMock: rebuild for Python 3.8.

---
 srcpkgs/python-MiniMock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MiniMock/template b/srcpkgs/python-MiniMock/template
index 38c0723f374..8b8c4f5f1e6 100644
--- a/srcpkgs/python-MiniMock/template
+++ b/srcpkgs/python-MiniMock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MiniMock'
 pkgname=python-MiniMock
 version=1.2.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 1817632c2c860f0ce208a31a3fa1816ef484b155 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 034/871] python-Pillow: rebuild for Python 3.8.

---
 srcpkgs/python-Pillow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pillow/template b/srcpkgs/python-Pillow/template
index dd55107af11..bbe3d7b49d6 100644
--- a/srcpkgs/python-Pillow/template
+++ b/srcpkgs/python-Pillow/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pillow'
 pkgname=python-Pillow
 version=6.2.1
-revision=1
+revision=2
 wrksrc="Pillow-${version}"
 build_style=python-module
 pycompile_module="PIL"

From 8ab09652d55d62335d1e3eb7cd4fb18e23ea0b17 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 035/871] python-PyAudio: rebuild for Python 3.8.

---
 srcpkgs/python-PyAudio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyAudio/template b/srcpkgs/python-PyAudio/template
index 5c3286caae0..2e84cf5cc8f 100644
--- a/srcpkgs/python-PyAudio/template
+++ b/srcpkgs/python-PyAudio/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyAudio'
 pkgname=python-PyAudio
 version=0.2.11
-revision=2
+revision=3
 wrksrc="PyAudio-${version}"
 build_style=python-module
 pycompile_module="pyaudio.py"

From 6659c576c4c33eac23f47382ca80f26c9d022596 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 036/871] python3-PyBrowserID: rebuild for Python 3.8.

---
 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 abec9dac54e..eefd0175f1b 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=2
+revision=3
 archs=noarch
 wrksrc="PyBrowserID-${version}"
 build_style=python3-module

From 08da1ef728dbd1324d9cc8ff42c1b83c0295d879 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 037/871] python3-PyFxA: rebuild for Python 3.8.

---
 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 31175c92435..6fc6791efdd 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=1
+revision=2
 archs=noarch
 wrksrc="PyFxA-${version}"
 build_style=python3-module

From 638b0c75724f83467b0236a678cf9da706d90eb8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 038/871] python-PyHamcrest: rebuild for Python 3.8.

---
 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 61078241d8a..48f001595aa 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=1
+revision=2
 archs=noarch
 wrksrc="PyHamcrest-${version}"
 build_style=python-module

From 7fe6a7c8b256b0d64ac704669f2f3e4b535ccd54 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 039/871] python-PyICU: rebuild for Python 3.8.

---
 srcpkgs/python-PyICU/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyICU/template b/srcpkgs/python-PyICU/template
index be4aaf88639..aab2934cbbd 100644
--- a/srcpkgs/python-PyICU/template
+++ b/srcpkgs/python-PyICU/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyICU'
 pkgname=python-PyICU
 version=2.3.1
-revision=2
+revision=3
 wrksrc="PyICU-${version}"
 build_style=python-module
 pycompile_module="icu PyICU.py"

From d75d3691c846d1a460618b50ed1084230374bdb1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 040/871] python3-PyJWT: rebuild for Python 3.8.

---
 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 6f0830125c1..bf1dda0753e 100644
--- a/srcpkgs/python3-PyJWT/template
+++ b/srcpkgs/python3-PyJWT/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-PyJWT'
 pkgname=python3-PyJWT
 version=1.7.1
-revision=1
+revision=2
 wrksrc="PyJWT-${version}"
 build_style=python3-module
 pycompile_module="PyJWT.py"

From 4aa16ce10d554b4b8d81e238c309c7c11bd6e90b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 041/871] python-PyOpenGL: rebuild for Python 3.8.

---
 srcpkgs/python-PyOpenGL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyOpenGL/template b/srcpkgs/python-PyOpenGL/template
index ec08e0bd667..eafc3be1210 100644
--- a/srcpkgs/python-PyOpenGL/template
+++ b/srcpkgs/python-PyOpenGL/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL'
 pkgname=python-PyOpenGL
 version=3.1.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="PyOpenGL-${version}"
 build_style=python-module

From 0cd4a27de60c604f6915d836490f8e25650b5d26 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 17:15:54 +0200
Subject: [PATCH 042/871] python-PyOpenGL-accelerate: update to 3.1.3b1.

---
 srcpkgs/python-PyOpenGL-accelerate/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python-PyOpenGL-accelerate/template b/srcpkgs/python-PyOpenGL-accelerate/template
index 25d84abffcb..5d16a82b845 100644
--- a/srcpkgs/python-PyOpenGL-accelerate/template
+++ b/srcpkgs/python-PyOpenGL-accelerate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL-accelerate'
 pkgname=python-PyOpenGL-accelerate
-version=3.1.0
-revision=5
+version=3.1.3b1
+revision=1
 wrksrc="PyOpenGL-accelerate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"
@@ -9,10 +9,10 @@ makedepends="python-devel python3-devel python-numpy python3-numpy"
 depends="python-numpy"
 short_desc="Acceleration code for PyOpenGL (Python2)"
 maintainer="Alain Kalker <a.c.kalker@gmail.com>"
-license="3-clause-BSD"
+license="BSD-3-Clause"
 homepage="http://pyopengl.sourceforge.net/"
 distfiles="${PYPI_SITE}/P/PyOpenGL-accelerate/PyOpenGL-accelerate-${version}.tar.gz"
-checksum=927f4670b893d46e2f6273ae938bf0a1db27ffae3336eba94813ccef6260c410
+checksum=e687eea7e006d65f531933b49b3b3d2feaaf51279147a904247f9d189762a36f
 
 post_install() {
 	vlicense license.txt LICENSE

From b8a1de2fbc1395fc0a56b0ba9c1e4815ff5c176f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 043/871] python-PyQt5: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5/template b/srcpkgs/python-PyQt5/template
index 6534d4e22e6..9eba20dc514 100644
--- a/srcpkgs/python-PyQt5/template
+++ b/srcpkgs/python-PyQt5/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5'
 pkgname=python-PyQt5
 version=5.13.0
-revision=1
+revision=2
 _sipver=4.19.18
 lib32disabled=yes
 wrksrc="PyQt5_gpl-${version}"

From 7915f8be9513988ebd9146505622bbdbc9517293 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 044/871] python-PyQt5-webengine: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5-webengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5-webengine/template b/srcpkgs/python-PyQt5-webengine/template
index 996ef6b00e2..af7162d20cb 100644
--- a/srcpkgs/python-PyQt5-webengine/template
+++ b/srcpkgs/python-PyQt5-webengine/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5-webengine'
 pkgname=python-PyQt5-webengine
 version=5.13.0
-revision=1
+revision=2
 wrksrc="PyQtWebEngine_gpl-${version}"
 pycompile_module="PyQt5WebEngine"
 hostmakedepends="pkg-config qt5-qmake

From 09ac8e33c0161db6f33d42c20ee787165cc0f178 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 045/871] python-Pygments: rebuild for Python 3.8.

---
 srcpkgs/python-Pygments/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pygments/template b/srcpkgs/python-Pygments/template
index f5a72ca6cea..8d2214a6bfc 100644
--- a/srcpkgs/python-Pygments/template
+++ b/srcpkgs/python-Pygments/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pygments'
 pkgname=python-Pygments
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Pygments-${version}"
 build_style=python-module

From 2f13ec494465137f0f2be446fbc89b6adddcf816 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 046/871] python-Pyro4: rebuild for Python 3.8.

---
 srcpkgs/python-Pyro4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pyro4/template b/srcpkgs/python-Pyro4/template
index d8925aa141f..0417e9f6a8a 100644
--- a/srcpkgs/python-Pyro4/template
+++ b/srcpkgs/python-Pyro4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pyro4'
 pkgname=python-Pyro4
 version=4.75
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 900437d13fa237200b574e720c48f15bd2be1200 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 047/871] python3-ReParser: rebuild for Python 3.8.

---
 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 5e7b5de3790..5959de9d0e3 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=1
+revision=2
 archs=noarch
 wrksrc=ReParser-${version}
 build_style=python3-module

From a9b5039ffba1f418c800de56ee1ad13a6595639f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 048/871] python-SPARQLWrapper: rebuild for Python 3.8.

---
 srcpkgs/python-SPARQLWrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-SPARQLWrapper/template b/srcpkgs/python-SPARQLWrapper/template
index d014eb8aab4..8d2db9a02b3 100644
--- a/srcpkgs/python-SPARQLWrapper/template
+++ b/srcpkgs/python-SPARQLWrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'python-SPARQLWrapper'
 pkgname=python-SPARQLWrapper
 version=1.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 638a270a8f26bdc971d4666c5148049dc363a26d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 049/871] python-SQLAlchemy: rebuild for Python 3.8.

---
 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 b27d3ee6ff8..c5046e10075 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.10
-revision=1
+revision=2
 wrksrc="SQLAlchemy-${version}"
 build_style=python-module
 pycompile_module="sqlalchemy"

From df22ae7c8a8c8e8637366eb06d5a1244d542c6b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 050/871] python3-SecretStorage: rebuild for Python 3.8.

---
 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 8df813ad247..b19d4865f7e 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.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="SecretStorage-${version}"
 build_style=python3-module

From 9bb06d28cd4c27aa9fac6db8579ea17561aec78c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 051/871] python3-SoCo: rebuild for Python 3.8.

---
 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 f0ac9825f57..01ebbeff15a 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="SoCo-${version}"
 build_style=python3-module

From a6f0225599663a0ff7b9bb903e58d43a950efd34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 052/871] python-Sphinx: rebuild for Python 3.8.

---
 srcpkgs/python-Sphinx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Sphinx/template b/srcpkgs/python-Sphinx/template
index e70dc9b238e..42969925f9e 100644
--- a/srcpkgs/python-Sphinx/template
+++ b/srcpkgs/python-Sphinx/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Sphinx'
 pkgname=python-Sphinx
 version=1.8.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="Sphinx-${version}"
 build_style=python-module

From c844acf7ff7a10234e2f443d0d289957195abcbe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 053/871] python3-Telethon: rebuild for Python 3.8.

---
 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 b0786559591..d0fa8e34d3f 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.10.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="Telethon-${version}"
 build_style=python3-module

From aa5552b66517a2460122d7f10c7cd4d3079b634a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 054/871] python-Twisted: rebuild for Python 3.8.

---
 srcpkgs/python-Twisted/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Twisted/template b/srcpkgs/python-Twisted/template
index 519a1e251a9..e94e0edf26e 100644
--- a/srcpkgs/python-Twisted/template
+++ b/srcpkgs/python-Twisted/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Twisted'
 pkgname=python-Twisted
 version=18.9.0
-revision=3
+revision=4
 wrksrc="Twisted-${version}"
 build_style=python-module
 pycompile_module="twisted"

From 1375c909b7b75e0024c15f580cfadd43c8430861 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 055/871] python3-TxSNI: rebuild for Python 3.8.

---
 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 403010da5be..d9d7c2a0c83 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.1.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="TxSNI-${version}"
 build_style=python3-module

From 3eed3184dfac6514e58cda68b4d2af2d51e5a040 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 056/871] python-Unidecode: rebuild for Python 3.8.

---
 srcpkgs/python-Unidecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Unidecode/template b/srcpkgs/python-Unidecode/template
index 035c5d846be..444eb1427d6 100644
--- a/srcpkgs/python-Unidecode/template
+++ b/srcpkgs/python-Unidecode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Unidecode'
 pkgname=python-Unidecode
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Unidecode-${version}"
 build_style=python-module

From acba13466f224c0fc65c97705e0ad9b005254c3f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 057/871] python-WTForms: rebuild for Python 3.8.

---
 srcpkgs/python-WTForms/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-WTForms/template b/srcpkgs/python-WTForms/template
index 06af2366050..98dff7d092f 100644
--- a/srcpkgs/python-WTForms/template
+++ b/srcpkgs/python-WTForms/template
@@ -1,7 +1,7 @@
 # Template file for 'python-WTForms'
 pkgname=python-WTForms
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="WTForms-${version}"
 build_style=python-module

From 7746af609544a7e273046664eeab19b935fc9e97 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 058/871] python3-WebOb: rebuild for Python 3.8.

---
 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 c360542a1f2..53e63879f2c 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=1
+revision=2
 archs=noarch
 wrksrc="WebOb-${version}"
 build_style=python3-module

From 49e54b93767e750e1876e37ff07f7f2e8606953f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 059/871] python-Werkzeug: rebuild for Python 3.8.

---
 srcpkgs/python-Werkzeug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Werkzeug/template b/srcpkgs/python-Werkzeug/template
index 24fff62f1ae..1ca303822e8 100644
--- a/srcpkgs/python-Werkzeug/template
+++ b/srcpkgs/python-Werkzeug/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Werkzeug'
 pkgname=python-Werkzeug
 version=0.15.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 6641b17817fd1e7f9d98bb4e318b71b27f350d0a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 060/871] python-Whoosh: rebuild for Python 3.8.

---
 srcpkgs/python-Whoosh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Whoosh/template b/srcpkgs/python-Whoosh/template
index f2118ed0af2..66856b206a7 100644
--- a/srcpkgs/python-Whoosh/template
+++ b/srcpkgs/python-Whoosh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-whoosh'
 pkgname=python-Whoosh
 version=2.7.4
-revision=1
+revision=2
 wrksrc="Whoosh-${version}"
 archs=noarch
 build_style=python-module

From fe0dab4eda80020ace87f783951dcac8bffd5851 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 061/871] python3-XlsxWriter: rebuild for Python 3.8.

---
 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 ea68ced9a03..b991457e01e 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.1.8
-revision=1
+revision=2
 archs="noarch"
 wrksrc="XlsxWriter-RELEASE_${version}"
 build_style=python3-module

From 91f3832b87da902d226810af34b4553402b01005 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 062/871] python-Yapsy: rebuild for Python 3.8.

---
 srcpkgs/python-Yapsy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Yapsy/template b/srcpkgs/python-Yapsy/template
index 9f79423f91d..5ad8b234f5d 100644
--- a/srcpkgs/python-Yapsy/template
+++ b/srcpkgs/python-Yapsy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Yapsy'
 pkgname=python-Yapsy
 version=1.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Yapsy-${version}"
 build_style=python-module

From 39d96a4c9c371624b323a1ca7a351d9813c9fcd0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 063/871] python-aalib: rebuild for Python 3.8.

---
 srcpkgs/python-aalib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-aalib/template b/srcpkgs/python-aalib/template
index 349b8407343..f9621a9c8dc 100644
--- a/srcpkgs/python-aalib/template
+++ b/srcpkgs/python-aalib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-aalib'
 pkgname=python-aalib
 version=0.3.2
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="aalib.py"
 hostmakedepends="python-setuptools python3-setuptools"

From e3d9f821a49c7b334a43036a9a0abdb703ea46ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 064/871] python3-acme: rebuild for Python 3.8.

---
 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 d7ef20f2301..844dde9c814 100644
--- a/srcpkgs/python3-acme/template
+++ b/srcpkgs/python3-acme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-acme'
 pkgname=python3-acme
 version=0.39.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="acme-${version}"
 build_style=python3-module

From 8af2237f97ccced5486ef6541d608642a5476530 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 065/871] python3-aiodns: rebuild for Python 3.8.

---
 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 cca9f45dbf5..8e06ea6e614 100644
--- a/srcpkgs/python3-aiodns/template
+++ b/srcpkgs/python3-aiodns/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiodns'
 pkgname=python3-aiodns
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiodns-${version}"
 build_style=python3-module

From ab547fae3d4fb710f939699450d37e0a874c964f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 066/871] python3-aiohttp: rebuild for Python 3.8.

---
 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 fbe98e07b2b..67e450e6aab 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.5.4
-revision=3
+revision=4
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 2ffea74cc0d26c6ba6e5a702cd1403ad21213fa2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 067/871] python3-aiohttp-cors: rebuild for Python 3.8.

---
 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 8a643ca1797..b621716e3cd 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=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 0593402bea534e0b12cf88e8c7ab062661644eb5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 068/871] python3-aiohttp-cors2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp-cors2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp-cors2/template b/srcpkgs/python3-aiohttp-cors2/template
index 7ff1206538b..f13b0598456 100644
--- a/srcpkgs/python3-aiohttp-cors2/template
+++ b/srcpkgs/python3-aiohttp-cors2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp-cors2'
 pkgname=python3-aiohttp-cors2
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 02e77b3a0d312082f9c1499fb3aeab7e23cb4ab8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 069/871] python3-aiohttp2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp2/template b/srcpkgs/python3-aiohttp2/template
index b570043baba..db3704b5700 100644
--- a/srcpkgs/python3-aiohttp2/template
+++ b/srcpkgs/python3-aiohttp2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp2'
 pkgname=python3-aiohttp2
 version=2.3.10
-revision=2
+revision=3
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From d77355b7c0f33d7dd95ff94c1f4736dabdd6d6a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 070/871] python3-aiohttp_socks: rebuild for Python 3.8.

---
 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 93c45ff24c4..10ab967ef76 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.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp_socks-${version}"
 build_style=python3-module

From ef8af2c8b4dc27817761eecdbe2e28606fa327b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 071/871] python3-aiorpcx: rebuild for Python 3.8.

---
 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 42b6dc541bf..07922e15ccd 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.17.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiorpcX-${version}"
 build_style=python3-module

From 413f4c52de47f8e6e6164dd28cf0bcfb1c06aa2c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 072/871] python-alabaster: rebuild for Python 3.8.

---
 srcpkgs/python-alabaster/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alabaster/template b/srcpkgs/python-alabaster/template
index e4ece5c2991..b33009d5efb 100644
--- a/srcpkgs/python-alabaster/template
+++ b/srcpkgs/python-alabaster/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alabaster'
 pkgname=python-alabaster
 version=0.7.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="alabaster-${version}"
 build_style=python-module

From ddbf66ac8d312d376bbaeeef178bffa37f7e3ae6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 073/871] python-alembic: rebuild for Python 3.8.

---
 srcpkgs/python-alembic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alembic/template b/srcpkgs/python-alembic/template
index 4011b33c0fa..aecbe10e7d0 100644
--- a/srcpkgs/python-alembic/template
+++ b/srcpkgs/python-alembic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alembic'
 pkgname=python-alembic
 version=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="alembic-${version}"
 build_style=python-module

From f3612c137acfbd75b9fda3803e594ec983c23aca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 074/871] python3-altgraph: rebuild for Python 3.8.

---
 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 eff10f7aef4..2bf433edb6e 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.16.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="altgraph-${version}"
 build_style=python3-module

From d1e97db355d6d9da7ea0b735ea36804558fe2839 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 075/871] python3-aniso8601: rebuild for Python 3.8.

---
 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 26540bc8c3f..0253b89b5a3 100644
--- a/srcpkgs/python3-aniso8601/template
+++ b/srcpkgs/python3-aniso8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aniso8601'
 pkgname=python3-aniso8601
 version=8.0.0
-revision=1
+revision=2
 archs=noarch
 _gitver=0ec13b9d81c9
 wrksrc="nielsenb-aniso8601-${_gitver}"

From 210846c644d3ee3a56540235ecd1a5939d9166c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 076/871] python-ansicolor: rebuild for Python 3.8.

---
 srcpkgs/python-ansicolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ansicolor/template b/srcpkgs/python-ansicolor/template
index af18c5b946d..3663a82f0cc 100644
--- a/srcpkgs/python-ansicolor/template
+++ b/srcpkgs/python-ansicolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ansicolor'
 pkgname=python-ansicolor
 version=0.2.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="ansicolor-${version}"
 build_style=python-module

From fc8d0813e7992d9f67867abe9cb61e5486a3f2e4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 077/871] python3-anytree: rebuild for Python 3.8.

---
 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 5a37dba6581..7368754c426 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.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="anytree-${version}"
 build_style=python3-module

From 437aad631d67741ff341dc048fbe5bd7d22ae209 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 078/871] python-appdirs: rebuild for Python 3.8.

---
 srcpkgs/python-appdirs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-appdirs/template b/srcpkgs/python-appdirs/template
index fdae1fe184b..15354ec5768 100644
--- a/srcpkgs/python-appdirs/template
+++ b/srcpkgs/python-appdirs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-appdirs'
 pkgname=python-appdirs
 version=1.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From e8b5cf6672e48a03ba44890ccb3bf55022d48901 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 079/871] python3-applib: rebuild for Python 3.8.

---
 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 95f589dc65a..0fb5a42e618 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=1
+revision=2
 archs=noarch
 wrksrc="applib-${version}"
 build_style=python3-module

From b19baa5e25ec5ced80c11c58c25ac1ac1b1d1b73 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 080/871] python-apsw: rebuild for Python 3.8.

---
 srcpkgs/python-apsw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-apsw/template b/srcpkgs/python-apsw/template
index ed47b4a7803..6146ea639db 100644
--- a/srcpkgs/python-apsw/template
+++ b/srcpkgs/python-apsw/template
@@ -3,7 +3,7 @@ pkgname=python-apsw
 _distver=3.29.0
 _patchver=r1
 version=${_distver}${_patchver}
-revision=1
+revision=2
 wrksrc="apsw-${_distver}-${_patchver}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 225d0da0bcfd35b936609eb68172fef12417b614 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 081/871] python-argh: rebuild for Python 3.8.

---
 srcpkgs/python-argh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argh/template b/srcpkgs/python-argh/template
index 4b7aec3b525..656da441757 100644
--- a/srcpkgs/python-argh/template
+++ b/srcpkgs/python-argh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argh'
 pkgname=python-argh
 version=0.26.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="argh-${version}"
 build_style=python-module

From e8facc2eeacffb5f53babdb7b9b1e20522d0f423 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 082/871] python-argon2: rebuild for Python 3.8.

---
 srcpkgs/python-argon2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argon2/template b/srcpkgs/python-argon2/template
index 0b4b132cddd..1b5216cc9c0 100644
--- a/srcpkgs/python-argon2/template
+++ b/srcpkgs/python-argon2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argon2'
 pkgname=python-argon2
 version=18.3.0
-revision=2
+revision=3
 wrksrc="argon2_cffi-${version}"
 build_style=python-module
 pycompile_module="argon2"

From 33ba396b6aab1ee33f779f0cc4bc8419731cdad5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 083/871] python-arxiv2bib: rebuild for Python 3.8.

---
 srcpkgs/python-arxiv2bib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-arxiv2bib/template b/srcpkgs/python-arxiv2bib/template
index 8bbc6bcf78e..4f245755dcf 100644
--- a/srcpkgs/python-arxiv2bib/template
+++ b/srcpkgs/python-arxiv2bib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-arxiv2bib'
 pkgname=python-arxiv2bib
 version=1.0.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="arxiv2bib-${version}"
 build_style=python-module

From 34dcdd1bda0e9253504b3f9bee5fb4e48bbb76e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 084/871] python-asn1crypto: rebuild for Python 3.8.

---
 srcpkgs/python-asn1crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-asn1crypto/template b/srcpkgs/python-asn1crypto/template
index 369c20af98f..e7ffe7415fc 100644
--- a/srcpkgs/python-asn1crypto/template
+++ b/srcpkgs/python-asn1crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-asn1crypto'
 pkgname=python-asn1crypto
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="asn1crypto-${version}"
 build_style=python-module

From fcae381ac2cc244da0376861d172eaec4b19b266 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 085/871] python-astral: rebuild for Python 3.8.

---
 srcpkgs/python-astral/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-astral/template b/srcpkgs/python-astral/template
index b8fdaee27ac..07aaeee166b 100644
--- a/srcpkgs/python-astral/template
+++ b/srcpkgs/python-astral/template
@@ -1,7 +1,7 @@
 # Template file for 'python-astral'
 pkgname=python-astral
 version=1.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python-}-${version}"
 build_style=python-module

From 8e8452f1614807835eae4519e70e6259a1e452e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 086/871] python3-astroid: rebuild for Python 3.8.

---
 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 28f01bd4445..d964fd2cdf3 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.2.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="astroid-${version}"
 build_style=python3-module

From 4f1cb8f2daa84d972812071a9a6a0e54994dbd35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 087/871] python3-async-timeout: rebuild for Python 3.8.

---
 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 d949a4fdf9a..854584fb5b2 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=1
+revision=2
 archs=noarch
 wrksrc="async-timeout-${version}"
 build_style=python3-module

From 1726189f2c3a4f924927599b7493877af5a92c41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 088/871] python3-async_generator: rebuild for Python 3.8.

---
 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 c2053d7bf1f..20d9f7ea0d1 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=1
+revision=2
 archs=noarch
 wrksrc="async_generator-${version}"
 build_style=python3-module

From 18e39d1eee165b9a00192bef4f146d382644cb1d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 089/871] python-atomicwrites: rebuild for Python 3.8.

---
 srcpkgs/python-atomicwrites/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atomicwrites/template b/srcpkgs/python-atomicwrites/template
index 849272e53f9..ec411d981d4 100644
--- a/srcpkgs/python-atomicwrites/template
+++ b/srcpkgs/python-atomicwrites/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atomicwrites'
 pkgname=python-atomicwrites
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="atomicwrites-${version}"
 build_style=python-module

From a2409f149a760e976fe1f51124dce74d0eaf40dc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 090/871] python-atspi: rebuild for Python 3.8.

---
 srcpkgs/python-atspi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atspi/template b/srcpkgs/python-atspi/template
index 4a2007fa319..cfa1ef35377 100644
--- a/srcpkgs/python-atspi/template
+++ b/srcpkgs/python-atspi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atspi'
 pkgname=python-atspi
 version=2.32.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure

From 04d56411caa439ec420280bbd234843e8a334202 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 091/871] python-attrs: rebuild for Python 3.8.

---
 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 aaddb13f5be..6e2297a9553 100644
--- a/srcpkgs/python-attrs/template
+++ b/srcpkgs/python-attrs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-attrs'
 pkgname=python-attrs
 version=19.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="attrs-${version}"
 build_style=python-module

From 7ec77483ee56a083055455bf110766320c98521d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 092/871] python-audioread: rebuild for Python 3.8.

---
 srcpkgs/python-audioread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-audioread/template b/srcpkgs/python-audioread/template
index fc788a2778c..bc878d4b82d 100644
--- a/srcpkgs/python-audioread/template
+++ b/srcpkgs/python-audioread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-audioread'
 pkgname=python-audioread
 version=2.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="audioread-${version}"
 build_style=python-module

From 93aa8c9c5153d6446c7efcaedd4f4f0a35b4d63a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 093/871] audit: rebuild for Python 3.8.

---
 srcpkgs/audit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/audit/template b/srcpkgs/audit/template
index c624aae0f6d..3e0d21784c0 100644
--- a/srcpkgs/audit/template
+++ b/srcpkgs/audit/template
@@ -1,7 +1,7 @@
 # Template file for 'audit'
 pkgname=audit
 version=2.8.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--libdir=/usr/lib --enable-shared=audit --enable-gssapi-krb5
  --with-apparmor --with-libcap-ng --with-python3"

From 426ba825f5b773bc9d6b84c88768baf90507eae8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 094/871] python3-autobahn: rebuild for Python 3.8.

---
 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 053e45608e5..524ba4b4566 100644
--- a/srcpkgs/python3-autobahn/template
+++ b/srcpkgs/python3-autobahn/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-autobahn'
 pkgname=python3-autobahn
 version=19.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="autobahn-${version}"
 build_style=python3-module

From cbd489d951a90ea1f87beb939f937ab9f18859fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 095/871] python-automat: rebuild for Python 3.8.

---
 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 4d0f89a89f5..984f5e9642a 100644
--- a/srcpkgs/python-automat/template
+++ b/srcpkgs/python-automat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-automat'
 pkgname=python-automat
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Automat-${version}"
 build_style=python-module

From 4a723405b3a4bb21615ee0f57b3a23b019a4f5e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 096/871] python-axolotl: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl/template b/srcpkgs/python-axolotl/template
index cf24db1b6e7..74480b5a9fe 100644
--- a/srcpkgs/python-axolotl/template
+++ b/srcpkgs/python-axolotl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl'
 pkgname=python-axolotl
 version=0.2.3
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="axolotl"

From 3d286ad4a4b7991b59603f9b1f55fb3e158bab91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 097/871] python-axolotl-curve25519: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl-curve25519/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl-curve25519/template b/srcpkgs/python-axolotl-curve25519/template
index f7b273b8385..897de4e7cdf 100644
--- a/srcpkgs/python-axolotl-curve25519/template
+++ b/srcpkgs/python-axolotl-curve25519/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl-curve25519'
 pkgname=python-axolotl-curve25519
 version=0.4.1.post2
-revision=2
+revision=3
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 makedepends="python-devel python3-devel"

From f63a6367800c535fce37297d59e2eed527f82eed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 098/871] python-babelfish: rebuild for Python 3.8.

---
 srcpkgs/python-babelfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-babelfish/template b/srcpkgs/python-babelfish/template
index c156255f418..47d5bb176cc 100644
--- a/srcpkgs/python-babelfish/template
+++ b/srcpkgs/python-babelfish/template
@@ -1,7 +1,7 @@
 # Template file for 'python-babelfish'
 pkgname=python-babelfish
 version=0.5.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="babelfish-${version}"
 build_style=python-module

From ee47cc107216f7d5a72c3a3314eefdec21388963 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 099/871] python-backcall: rebuild for Python 3.8.

---
 srcpkgs/python-backcall/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-backcall/template b/srcpkgs/python-backcall/template
index 01dfab9c25d..a55af727ab6 100644
--- a/srcpkgs/python-backcall/template
+++ b/srcpkgs/python-backcall/template
@@ -1,7 +1,7 @@
 # Template file for 'python-backcall'
 pkgname=python-backcall
 version=0.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="backcall-${version}"
 build_style=python-module

From 2bcc8821ce39725a73019b272e04f837e7d069d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 100/871] bcc: rebuild for Python 3.8.

---
 srcpkgs/bcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template
index a4d32bce7a4..e872cb6a4a8 100644
--- a/srcpkgs/bcc/template
+++ b/srcpkgs/bcc/template
@@ -1,7 +1,7 @@
 # Template file for 'bcc'
 pkgname=bcc
 version=0.11.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DREVISION=${version}"
 hostmakedepends="flex"

From abc85a6e26560527cfff0519dbebe86eab08646e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 101/871] python-bcrypt: rebuild for Python 3.8.

---
 srcpkgs/python-bcrypt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bcrypt/template b/srcpkgs/python-bcrypt/template
index 1ccac21ee94..664b5c9df07 100644
--- a/srcpkgs/python-bcrypt/template
+++ b/srcpkgs/python-bcrypt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bcrypt'
 pkgname=python-bcrypt
 version=3.1.7
-revision=1
+revision=2
 wrksrc="bcrypt-${version}"
 build_style=python-module
 pycompile_module="bcrypt"

From 4ce55defcda61fe8fb824032dde717850749c2f1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 102/871] python-bibtexparser: rebuild for Python 3.8.

---
 srcpkgs/python-bibtexparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bibtexparser/template b/srcpkgs/python-bibtexparser/template
index 1eff201e6b8..c40115c9fb8 100644
--- a/srcpkgs/python-bibtexparser/template
+++ b/srcpkgs/python-bibtexparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bibtexparser'
 pkgname=python-bibtexparser
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bibtexparser-${version}"
 build_style=python-module

From 614cfe1818505799bcb363709d9b1277e66fdb9b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 103/871] python-bitarray: rebuild for Python 3.8.

---
 srcpkgs/python-bitarray/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitarray/template b/srcpkgs/python-bitarray/template
index 4f2b4ee392c..f928718a9df 100644
--- a/srcpkgs/python-bitarray/template
+++ b/srcpkgs/python-bitarray/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitarray'
 pkgname=python-bitarray
 version=1.0.1
-revision=1
+revision=2
 wrksrc="bitarray-${version}"
 build_style=python-module
 pycompile_module="bitarray"

From 8798618ba88df7d87f8f69a8f283183c84b83393 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 104/871] python-bitbucket-api: rebuild for Python 3.8.

---
 srcpkgs/python-bitbucket-api/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitbucket-api/template b/srcpkgs/python-bitbucket-api/template
index 27747866baf..448ea60d53d 100644
--- a/srcpkgs/python-bitbucket-api/template
+++ b/srcpkgs/python-bitbucket-api/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitbucket-api'
 pkgname=python-bitbucket-api
 version=0.5.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="bitbucket-api-${version}"
 build_style=python-module

From 5a1164827e51856208db3d3d81cfa37df91bc3b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 105/871] python-bleach: rebuild for Python 3.8.

---
 srcpkgs/python-bleach/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bleach/template b/srcpkgs/python-bleach/template
index da389c319a5..6e3d4a3bf4c 100644
--- a/srcpkgs/python-bleach/template
+++ b/srcpkgs/python-bleach/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bleach'
 pkgname=python-bleach
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bleach-${version}"
 build_style=python-module

From 24fc4b5e14da3293fba89e6232e85e3b4f7ece63 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 106/871] python3-blessed: rebuild for Python 3.8.

---
 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 bb627b7a08e..d18f0a69381 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.16.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessed-${version}"
 build_style=python3-module

From f12ccdaa6ca561b64e9d842d1eca259c3c8274ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 107/871] python-blessings: rebuild for Python 3.8.

---
 srcpkgs/python-blessings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blessings/template b/srcpkgs/python-blessings/template
index f8e396da5c5..baa4938c328 100644
--- a/srcpkgs/python-blessings/template
+++ b/srcpkgs/python-blessings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blessings'
 pkgname=python-blessings
 version=1.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessings-${version}"
 build_style=python-module

From a734dbb73a879547cd48cc3436b12ec27dd2d256 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 108/871] python-blinker: rebuild for Python 3.8.

---
 srcpkgs/python-blinker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blinker/template b/srcpkgs/python-blinker/template
index e34a4a9721a..b6d1d63d19a 100644
--- a/srcpkgs/python-blinker/template
+++ b/srcpkgs/python-blinker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blinker'
 pkgname=python-blinker
 version=1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="blinker-${version}"
 build_style=python-module

From cea10653a2982d39b058ce59dd086d123c981e53 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 109/871] python-bluez: rebuild for Python 3.8.

---
 srcpkgs/python-bluez/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bluez/template b/srcpkgs/python-bluez/template
index 1112352e8ab..4734e47038d 100644
--- a/srcpkgs/python-bluez/template
+++ b/srcpkgs/python-bluez/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bluez'
 pkgname=python-bluez
 version=0.22
-revision=4
+revision=5
 wrksrc="pybluez-${version}"
 build_style=python-module
 pycompile_module="bluetooth"

From 1aded9f648758705e73e57aaeeb428999090ca9d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 110/871] python3-boltons: rebuild for Python 3.8.

---
 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 84a991feef4..1083eb98c51 100644
--- a/srcpkgs/python3-boltons/template
+++ b/srcpkgs/python3-boltons/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-boltons'
 pkgname=python3-boltons
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boltons-${version}"
 build_style=python3-module

From 816cf35d5b17fd26791bf1d1d076bd5daa249d3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 111/871] python-boto: rebuild for Python 3.8.

---
 srcpkgs/python-boto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-boto/template b/srcpkgs/python-boto/template
index 40bd3d888b9..684c00feee0 100644
--- a/srcpkgs/python-boto/template
+++ b/srcpkgs/python-boto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-boto'
 pkgname=python-boto
 version=2.49.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boto-${version}"
 build_style=python-module

From 1d1f7a5c8e20e67150e5e7203a91e5e0e7bdfd91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 112/871] python-botocore: rebuild for Python 3.8.

---
 srcpkgs/python-botocore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-botocore/template b/srcpkgs/python-botocore/template
index f8ced7bbae2..36dfc4439a1 100644
--- a/srcpkgs/python-botocore/template
+++ b/srcpkgs/python-botocore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-botocore'
 pkgname=python-botocore
 version=1.12.253
-revision=1
+revision=2
 archs=noarch
 wrksrc="botocore-${version}"
 build_style=python-module

From 45cd626714d46a522ea8ab58de7dfca328238a16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 113/871] python-bottle: rebuild for Python 3.8.

---
 srcpkgs/python-bottle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bottle/template b/srcpkgs/python-bottle/template
index 8e3a2ad5ad7..0ffc8adfec7 100644
--- a/srcpkgs/python-bottle/template
+++ b/srcpkgs/python-bottle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bottle'
 pkgname=python-bottle
 version=0.12.17
-revision=1
+revision=2
 archs=noarch
 wrksrc="bottle-${version}"
 build_style=python-module

From 2fa553c8d29c82f95cc1749b8568e3f2784d258b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 114/871] brltty: rebuild for Python 3.8.

---
 srcpkgs/brltty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/brltty/template b/srcpkgs/brltty/template
index 33f3354a219..a838cd62d55 100644
--- a/srcpkgs/brltty/template
+++ b/srcpkgs/brltty/template
@@ -1,7 +1,7 @@
 # Template file for 'brltty'
 pkgname=brltty
 version=6.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-gpm --with-screen-driver=lx,sc
  --with-tables-directory=/usr/share/brltty PYTHON=/usr/bin/python3"

From df2edc31e9447769076b9faf7706545834972753 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 115/871] python-bsddb3: rebuild for Python 3.8.

---
 srcpkgs/python-bsddb3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bsddb3/template b/srcpkgs/python-bsddb3/template
index f719a3f9560..1df37cc0e71 100644
--- a/srcpkgs/python-bsddb3/template
+++ b/srcpkgs/python-bsddb3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bsddb3'
 pkgname=python-bsddb3
 version=6.2.6
-revision=2
+revision=3
 wrksrc="bsddb3-${version}"
 build_style=python-module
 make_build_args="--berkeley-db=${XBPS_CROSS_BASE}/usr"

From 19b6a2a4388cd397ec7e195f6cb3319e277efbfb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 116/871] python-cached-property: rebuild for Python 3.8.

---
 srcpkgs/python-cached-property/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cached-property/template b/srcpkgs/python-cached-property/template
index ca2f8536260..16c89346565 100644
--- a/srcpkgs/python-cached-property/template
+++ b/srcpkgs/python-cached-property/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cached-property'
 pkgname=python-cached-property
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cached-property-${version}"
 build_style=python-module

From ee6112dd97883499ad9ebcfe7e46523df317fee0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 117/871] python-cachetools: rebuild for Python 3.8.

---
 srcpkgs/python-cachetools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cachetools/template b/srcpkgs/python-cachetools/template
index ee3ed3a4c94..0f2fdcaed32 100644
--- a/srcpkgs/python-cachetools/template
+++ b/srcpkgs/python-cachetools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cachetools'
 pkgname=python-cachetools
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cachetools-${version}"
 build_style=python-module

From e65e3ecb13e72677ada7d923517fc145b0843f87 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 118/871] python3-cairo: rebuild for Python 3.8.

---
 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 cdde1b83d20..ac158237dd2 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.18.1
-revision=1
+revision=2
 wrksrc="pycairo-${version}"
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From 26ae8b49d1d3cf35158bf55f756e76aff54bcafa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 119/871] python-cairocffi: rebuild for Python 3.8.

---
 srcpkgs/python-cairocffi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cairocffi/template b/srcpkgs/python-cairocffi/template
index baa61334a2a..c057739b03d 100644
--- a/srcpkgs/python-cairocffi/template
+++ b/srcpkgs/python-cairocffi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cairocffi'
 pkgname=python-cairocffi
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cairocffi-${version}"
 build_style=python-module

From a6bbe9a069453259ecf37d1d99f78257ec70813a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 120/871] python3-canonicaljson: rebuild for Python 3.8.

---
 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 abc8e95820d..1cbe15f14ae 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.1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="canonicaljson-${version}"
 build_style=python3-module

From f69583b1c1da23a568c3ec21019eee282fe81c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 121/871] python3-casttube: rebuild for Python 3.8.

---
 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 ccd95f3f31c..9e5544b0101 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=1
+revision=2
 archs=noarch
 wrksrc="casttube-${version}"
 build_style=python3-module

From 69271edca28aad80cd530e000f9a9074b94cac1c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 122/871] python-cffi: rebuild for Python 3.8.

---
 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 27ae03879ac..8501b202bf2 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.12.3
-revision=1
+revision=2
 wrksrc="cffi-${version}"
 build_style=python-module
 pycompile_module="cffi"

From c1503dda7550e49e8bb844c299d643332fda164a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 123/871] python3-changelogs: rebuild for Python 3.8.

---
 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 5c2a4889959..d9a7784cf3b 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.14.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="changelogs-${version}"
 build_style=python3-module

From 05901a19ee45acb375a12da239f547e8537748be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 124/871] python-chardet: rebuild for Python 3.8.

---
 srcpkgs/python-chardet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chardet/template b/srcpkgs/python-chardet/template
index 685d3ab767f..bd502bbbddf 100644
--- a/srcpkgs/python-chardet/template
+++ b/srcpkgs/python-chardet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chardet'
 pkgname=python-chardet
 version=3.0.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="chardet-${version}"
 build_style=python-module

From d7aaeeea6f532bcf483b2a2188d6414b62d97a0d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 125/871] python3-cheetah3: rebuild for Python 3.8.

---
 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 40dfee6e322..b2149b2bc22 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.4
-revision=1
+revision=2
 wrksrc="Cheetah3-${version}"
 build_style=python3-module
 pycompile_module="Cheetah"

From eec519e167df2805e2c6e9409a3d933f43daabfa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 126/871] python3-chess: rebuild for Python 3.8.

---
 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 54b397517cf..e87dab6ca02 100644
--- a/srcpkgs/python3-chess/template
+++ b/srcpkgs/python3-chess/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chess'
 pkgname=python3-chess
 version=0.27.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-chess-${version}"
 build_style=python3-module

From 3d8ed0fad83a9bed328a2556fd7f125999941936 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 127/871] python3-chromecast: rebuild for Python 3.8.

---
 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 16df7502633..cfa41c5dfb5 100644
--- a/srcpkgs/python3-chromecast/template
+++ b/srcpkgs/python3-chromecast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chromecast'
 pkgname=python3-chromecast
 version=4.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychromecast-${version}"
 build_style=python3-module

From d1bc6a1c8d591923125a0c88e1129229189b0542 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 128/871] python-chroot: rebuild for Python 3.8.

---
 srcpkgs/python-chroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chroot/template b/srcpkgs/python-chroot/template
index 36853e9f2c0..7faa0f4cce9 100644
--- a/srcpkgs/python-chroot/template
+++ b/srcpkgs/python-chroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chroot'
 pkgname=python-chroot
 version=0.9.18
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychroot-${version}"
 build_style=python-module

From 0ffeb845a8227d9b110b89085a63d251bce0ce1e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 129/871] python3-cli-ui: rebuild for Python 3.8.

---
 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 8303d44eed2..15a9bd32fce 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.9.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-cli-ui-${version}"
 build_style=python3-module

From d5c85c28cd481dda3faeb979f4296ec562c93cf4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 130/871] python3-cli_helpers: rebuild for Python 3.8.

---
 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 74b4abf2200..87b284e3cb5 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=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cli_helpers-${version}"
 build_style=python3-module

From 6c792cf36aec44b91e22bc5c0db3fd902667ad60 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 131/871] python-click: rebuild for Python 3.8.

---
 srcpkgs/python-click/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click/template b/srcpkgs/python-click/template
index 217e617e73e..4014cb66a83 100644
--- a/srcpkgs/python-click/template
+++ b/srcpkgs/python-click/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click'
 pkgname=python-click
 version=7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Click-${version}"
 build_style="python-module"

From deaec0de726606f41faac321d9a9c7c0ebb57da3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 132/871] python-click-log: rebuild for Python 3.8.

---
 srcpkgs/python-click-log/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-log/template b/srcpkgs/python-click-log/template
index 37b53f04af0..b57a7a74b4a 100644
--- a/srcpkgs/python-click-log/template
+++ b/srcpkgs/python-click-log/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-log'
 pkgname=python-click-log
 version=0.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-log-${version}"
 build_style="python-module"

From cc579f5095261b743be63886c555ac835c9e8997 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 133/871] python3-click-plugins: rebuild for Python 3.8.

---
 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 cee484018d1..0ef6ce6b248 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=1
+revision=2
 archs=noarch
 wrksrc="click-plugins-${version}"
 build_style=python3-module

From b5df765ff675cb58d27b1d09d3dfb720322f3d9d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 134/871] python-click-threading: rebuild for Python 3.8.

---
 srcpkgs/python-click-threading/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-threading/template b/srcpkgs/python-click-threading/template
index 76125224992..49b4a4a9aae 100644
--- a/srcpkgs/python-click-threading/template
+++ b/srcpkgs/python-click-threading/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-threading'
 pkgname=python-click-threading
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-threading-${version}"
 build_style="python-module"

From 63098060cb9ec683b11d8e796ccaeb56686ba305 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 135/871] python3-cmdln: rebuild for Python 3.8.

---
 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 f00c9a63908..2b7e21f3980 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=1
+revision=2
 archs=noarch
 wrksrc="cmdln-${version}"
 build_style=python3-module

From 9fe8b7777e6d3b76979963f3cbfe64ae43ebe291 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 136/871] python-codespell: rebuild for Python 3.8.

---
 srcpkgs/python-codespell/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-codespell/template b/srcpkgs/python-codespell/template
index 4146e0d89c5..9ae2e19435c 100644
--- a/srcpkgs/python-codespell/template
+++ b/srcpkgs/python-codespell/template
@@ -1,7 +1,7 @@
 # Template file for 'python-codespell'
 pkgname=python-codespell
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="codespell-${version}"
 build_style=python-module

From 1aeba7fce813d6979b90a84db0982d7d205cd5a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 137/871] python-colorama: rebuild for Python 3.8.

---
 srcpkgs/python-colorama/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-colorama/template b/srcpkgs/python-colorama/template
index 98ea0d3be78..09562385243 100644
--- a/srcpkgs/python-colorama/template
+++ b/srcpkgs/python-colorama/template
@@ -1,7 +1,7 @@
 # Template file for 'python-colorama'
 pkgname=python-colorama
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="colorama-${version}"
 build_style=python-module

From dba87fa43d65eb65ffb28b601073cb409ffd3ec6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 138/871] python3-colorclass: rebuild for Python 3.8.

---
 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 4a80f379206..ed8d2d2ea02 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=1
+revision=2
 archs=noarch
 wrksrc="colorclass-${version}"
 build_style=python3-module

From 798b83e3dcd2dbf4d027c2208491865a1630c5b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 139/871] python-configobj: rebuild for Python 3.8.

---
 srcpkgs/python-configobj/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-configobj/template b/srcpkgs/python-configobj/template
index 95f30d4631a..a8cb5d5d34e 100644
--- a/srcpkgs/python-configobj/template
+++ b/srcpkgs/python-configobj/template
@@ -1,7 +1,7 @@
 # Template file for 'python-configobj'
 pkgname=python-configobj
 version=5.0.6
-revision=5
+revision=6
 archs=noarch
 wrksrc="configobj-${version}"
 build_style=python-module

From 3625a443e00ab5d78c4e93c66999c47f8b404a00 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 140/871] python-constantly: rebuild for Python 3.8.

---
 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 b5530908ac4..9160aec9edd 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=2
+revision=3
 archs=noarch
 wrksrc="constantly-${version}"
 build_style=python-module

From 87465cd8ca4b8e99781e94c9b7a1503376b35470 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 141/871] python-construct: rebuild for Python 3.8.

---
 srcpkgs/python-construct/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-construct/template b/srcpkgs/python-construct/template
index 2afe435652c..d6d0b8010e2 100644
--- a/srcpkgs/python-construct/template
+++ b/srcpkgs/python-construct/template
@@ -1,7 +1,7 @@
 # Template file for 'python-construct'
 pkgname=python-construct
 version=2.9.45
-revision=2
+revision=3
 archs=noarch
 wrksrc="construct-${version}"
 build_style=python-module

From a843d07797f976bdebf03a8420ecd83852a00625 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 142/871] python-coverage: rebuild for Python 3.8.

---
 srcpkgs/python-coverage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-coverage/template b/srcpkgs/python-coverage/template
index df6064b9879..1c44b5e18fb 100644
--- a/srcpkgs/python-coverage/template
+++ b/srcpkgs/python-coverage/template
@@ -1,7 +1,7 @@
 # Template file for 'python-coverage'
 pkgname=python-coverage
 version=4.5.4
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="coverage"

From fe76aa156a3087ee215bb3d22c0653740a637496 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 143/871] python-cram: rebuild for Python 3.8.

---
 srcpkgs/python-cram/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cram/template b/srcpkgs/python-cram/template
index f1fce32149f..8c5d65fe260 100644
--- a/srcpkgs/python-cram/template
+++ b/srcpkgs/python-cram/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cram'
 pkgname=python-cram
 version=0.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="cram-${version}"
 build_style=python-module

From 63581e05ffbf9389b940ed040e204e3cd0f6db33 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 144/871] python3-crcmod: rebuild for Python 3.8.

---
 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 4cd433d2420..9311dedc8ac 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=1
+revision=2
 wrksrc="crcmod-${version}"
 build_style=python3-module
 pycompile_module="crcmod"

From 25118b611fb3bcd4e105daae028d2841b8ad2dce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 145/871] python-cryptography: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography/template b/srcpkgs/python-cryptography/template
index ce3184715dd..39e63d22f7d 100644
--- a/srcpkgs/python-cryptography/template
+++ b/srcpkgs/python-cryptography/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography'
 pkgname=python-cryptography
 version=2.7
-revision=1
+revision=2
 wrksrc="cryptography-${version}"
 build_style=python-module
 pycompile_module="cryptography"

From 12e373a59f556071899ea89901bfc9153e2a969a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 146/871] python-cryptography_vectors: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography_vectors/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography_vectors/template b/srcpkgs/python-cryptography_vectors/template
index d52e5f5e47c..8fba3a0ce27 100644
--- a/srcpkgs/python-cryptography_vectors/template
+++ b/srcpkgs/python-cryptography_vectors/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography_vectors'
 pkgname=python-cryptography_vectors
 version=2.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="cryptography_vectors-${version}"
 build_style=python-module

From 2d84331a9b95c499b2727f993df0c67f4043f17b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 147/871] python-css-parser: rebuild for Python 3.8.

---
 srcpkgs/python-css-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-css-parser/template b/srcpkgs/python-css-parser/template
index e90b103e4a0..f6d2d0cbf8b 100644
--- a/srcpkgs/python-css-parser/template
+++ b/srcpkgs/python-css-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-css-parser'
 pkgname=python-css-parser
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="css-parser-${version}"
 build_style=python-module

From 9c106b0851f9546c0892a472226250b5e5553ab9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 148/871] python-cssselect: rebuild for Python 3.8.

---
 srcpkgs/python-cssselect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssselect/template b/srcpkgs/python-cssselect/template
index d7dbcebc0ea..c7f43ebca9f 100644
--- a/srcpkgs/python-cssselect/template
+++ b/srcpkgs/python-cssselect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssselect'
 pkgname=python-cssselect
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 47a83372601e9c534c6dcdf28def1a0fec422bca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 149/871] python-cssutils: rebuild for Python 3.8.

---
 srcpkgs/python-cssutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssutils/template b/srcpkgs/python-cssutils/template
index 648c4754c22..5f08903b9a0 100644
--- a/srcpkgs/python-cssutils/template
+++ b/srcpkgs/python-cssutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssutils'
 pkgname=python-cssutils
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="cssutils-${version}"
 build_style=python-module

From 400c40f9167a501510ef0a2c16d5b80e4f18f122 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 150/871] python-cups: rebuild for Python 3.8.

---
 srcpkgs/python-cups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cups/template b/srcpkgs/python-cups/template
index 2c26e9ef3d0..62c384c9db8 100644
--- a/srcpkgs/python-cups/template
+++ b/srcpkgs/python-cups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cups'
 pkgname=python-cups
 version=1.9.74
-revision=2
+revision=3
 wrksrc="pycups-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 7f937efaab15aa37198aa715bf71a6b25c459a3f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 151/871] system-config-printer: rebuild for Python 3.8.

---
 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 e8f8eca46ae..04fe74ff808 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.11
-revision=5
+revision=6
 build_style=gnu-configure
 configure_args="--with-udev-rules"
 make_build_args="udevhelperdir=/usr/lib/udev"

From 24034ec06b2b238e1e3159759967d3887312f44e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 152/871] python-curl: rebuild for Python 3.8.

---
 srcpkgs/python-curl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curl/template b/srcpkgs/python-curl/template
index f1f9051d53a..685c63ce68a 100644
--- a/srcpkgs/python-curl/template
+++ b/srcpkgs/python-curl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curl'
 pkgname=python-curl
 version=7.43.0.3
-revision=4
+revision=5
 wrksrc="pycurl-${version}"
 build_style=python-module
 pycompile_module="curl"

From 63c6678469ae379ad0dc55ffed478d0537efa2c4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 153/871] python-curtsies: rebuild for Python 3.8.

---
 srcpkgs/python-curtsies/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curtsies/template b/srcpkgs/python-curtsies/template
index 158d1c5ce76..6126a11e9b4 100644
--- a/srcpkgs/python-curtsies/template
+++ b/srcpkgs/python-curtsies/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curtsies'
 pkgname=python-curtsies
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="curtsies-${version}"
 build_style=python-module

From 95e7d59433d993211e0344f278873c0a13132b8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 154/871] python-cycler: rebuild for Python 3.8.

---
 srcpkgs/python-cycler/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cycler/template b/srcpkgs/python-cycler/template
index ee6c985b288..0b53c195dae 100644
--- a/srcpkgs/python-cycler/template
+++ b/srcpkgs/python-cycler/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cycler'
 pkgname=python-cycler
 version=0.10.0
-revision=4
+revision=5
 archs=noarch
 wrksrc="cycler-${version}"
 build_style=python-module

From 9972f66d4a7d86a3885cd8caf4fe8255d3fdaa4e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 155/871] python-daemonize: rebuild for Python 3.8.

---
 srcpkgs/python-daemonize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-daemonize/template b/srcpkgs/python-daemonize/template
index 699a156b26b..efaf163e573 100644
--- a/srcpkgs/python-daemonize/template
+++ b/srcpkgs/python-daemonize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-daemonize'
 pkgname=python-daemonize
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="daemonize-${version}"
 build_style=python-module

From e8d73e5cb2237b2d0fee0f8b4467a7b6f77ab6e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 156/871] python-dateutil: rebuild for Python 3.8.

---
 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 d9c0f73c883..7675b8f9447 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.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="dateutil"

From 644460fbd87ae7fbbf0a7e461ae84c7500d9556e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 157/871] python-dbus: rebuild for Python 3.8.

---
 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 869c10b2969..3845f6ce34a 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.12
-revision=1
+revision=2
 wrksrc="dbus-python-${version}"
 build_style=gnu-configure
 pycompile_module="dbus"

From fba07272650f8302e8c5c4999cc458a188ed72fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 158/871] python3-dbusmock: rebuild for Python 3.8.

---
 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 67e0ed68078..4abd47843cc 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.18.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-dbusmock-${version}"
 build_style=python3-module

From b32cc76191c8cfd20aef9136e7da1c7a4efa2470 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 159/871] python-decorator: rebuild for Python 3.8.

---
 srcpkgs/python-decorator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-decorator/template b/srcpkgs/python-decorator/template
index 14090c537c9..7f14fef90a6 100644
--- a/srcpkgs/python-decorator/template
+++ b/srcpkgs/python-decorator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-decorator'
 pkgname=python-decorator
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="decorator-${version}"
 build_style=python-module

From ae4c10a933fec7c363a48e692b63729fbda05055 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 160/871] python-defusedxml: rebuild for Python 3.8.

---
 srcpkgs/python-defusedxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-defusedxml/template b/srcpkgs/python-defusedxml/template
index afd62e94414..96234eb18c7 100644
--- a/srcpkgs/python-defusedxml/template
+++ b/srcpkgs/python-defusedxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-defusedxml'
 pkgname=python-defusedxml
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="defusedxml-${version}"
 build_style=python-module

From 50a1fde4b070b31b044d6f867d33c36de3a3b237 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 161/871] python3-discid: rebuild for Python 3.8.

---
 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 be5eae1f07f..cc4bc27a1aa 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=1
+revision=2
 archs=noarch
 wrksrc="discid-${version}"
 build_style=python3-module

From 70c2ef40000b66a94777155d1ee38cc71cb732c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 162/871] python-discogs_client: rebuild for Python 3.8.

---
 srcpkgs/python-discogs_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-discogs_client/template b/srcpkgs/python-discogs_client/template
index a27cc50f93c..5af18eda664 100644
--- a/srcpkgs/python-discogs_client/template
+++ b/srcpkgs/python-discogs_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-discogs_client'
 pkgname=python-discogs_client
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="discogs-client-${version}"
 build_style=python-module

From 3e7930d7ff4893db1394ad56a3525ddce1c1e356 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 163/871] python3-distro: rebuild for Python 3.8.

---
 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 86e94572ed7..f1205ace151 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.4.0
-revision=1
+revision=2
 wrksrc=distro-${version}
 build_style=python3-module
 pycompile_module="distro"

From b13e15c8a3eac05deebfb92b09875fcbec456a90 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 164/871] python-distutils-extra: rebuild for Python 3.8.

---
 srcpkgs/python-distutils-extra/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-distutils-extra/template b/srcpkgs/python-distutils-extra/template
index 9e5728ba08f..46bb0cccc31 100644
--- a/srcpkgs/python-distutils-extra/template
+++ b/srcpkgs/python-distutils-extra/template
@@ -1,7 +1,7 @@
 # Template file for 'python-distutils-extra'
 pkgname=python-distutils-extra
 version=2.39
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 pycompile_module="DistUtilsExtra"

From 4d01c6254e546e1fc68af75d69cee337f344d907 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 165/871] python-dkimpy: rebuild for Python 3.8.

---
 srcpkgs/python-dkimpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dkimpy/template b/srcpkgs/python-dkimpy/template
index 4ca5ad386b0..1da26c5de5d 100644
--- a/srcpkgs/python-dkimpy/template
+++ b/srcpkgs/python-dkimpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dkimpy'
 pkgname=python-dkimpy
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="dkimpy-${version}"
 build_style=python-module

From 1535eb2ddd07ef01c9eef60a9bbc5b30c73bd263 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 166/871] python-dnspython: rebuild for Python 3.8.

---
 srcpkgs/python-dnspython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dnspython/template b/srcpkgs/python-dnspython/template
index 15d4d7a8a73..66d237e89ee 100644
--- a/srcpkgs/python-dnspython/template
+++ b/srcpkgs/python-dnspython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dnspython'
 pkgname=python-dnspython
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dnspython-${version}"
 build_style=python-module

From bd26df59c0c70bb6c22de396e42048f747019b9b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 167/871] python-docker: rebuild for Python 3.8.

---
 srcpkgs/python-docker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker/template b/srcpkgs/python-docker/template
index b3f8cb2076b..83265bbb606 100644
--- a/srcpkgs/python-docker/template
+++ b/srcpkgs/python-docker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker'
 pkgname=python-docker
 version=3.7.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-${version}"
 build_style=python-module

From 9f2aafc4294027da1bd8f1b66f47b0c9e912ca3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 168/871] python-docker-pycreds: rebuild for Python 3.8.

---
 srcpkgs/python-docker-pycreds/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker-pycreds/template b/srcpkgs/python-docker-pycreds/template
index c478ded9de6..2224be0d21d 100644
--- a/srcpkgs/python-docker-pycreds/template
+++ b/srcpkgs/python-docker-pycreds/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker-pycreds'
 pkgname=python-docker-pycreds
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-pycreds-${version}"
 build_style=python-module

From 355fb572d94ce4c20f221a1b0b8583c55891c88e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 169/871] python-dockerpty: rebuild for Python 3.8.

---
 srcpkgs/python-dockerpty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dockerpty/template b/srcpkgs/python-dockerpty/template
index 78ba5bc3b09..4a0b3a7a33f 100644
--- a/srcpkgs/python-dockerpty/template
+++ b/srcpkgs/python-dockerpty/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dockerpty'
 pkgname=python-dockerpty
 version=0.4.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="dockerpty-${version}"
 build_style=python-module

From 249226b0c3fafa6465fb19314c73b50de7df643c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 170/871] python-docopt: rebuild for Python 3.8.

---
 srcpkgs/python-docopt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docopt/template b/srcpkgs/python-docopt/template
index 4b8661ed2e1..48e5f86c1e0 100644
--- a/srcpkgs/python-docopt/template
+++ b/srcpkgs/python-docopt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docopt'
 pkgname=python-docopt
 version=0.6.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="docopt-${version}"
 build_style=python-module

From a1e39f298e30c2d12040a89a0556d784b83905ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 171/871] python-docutils: rebuild for Python 3.8.

---
 srcpkgs/python-docutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docutils/template b/srcpkgs/python-docutils/template
index 62f080f416a..8fd21a7450b 100644
--- a/srcpkgs/python-docutils/template
+++ b/srcpkgs/python-docutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docutils'
 pkgname=python-docutils
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docutils-${version}"
 build_style=python-module

From 68ac724b53c2ecfc1f25e0690e8d336b36a93437 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 172/871] python-dogpile.cache: rebuild for Python 3.8.

---
 srcpkgs/python-dogpile.cache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index f6e106fb4e8..894c6f695bf 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dogpile.cache'
 pkgname=python-dogpile.cache
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dogpile.cache-${version}"
 build_style=python-module

From 7981e28aeb8ad7dc2a96ca43a26b66c1f9b078a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 173/871] python-dominate: rebuild for Python 3.8.

---
 srcpkgs/python-dominate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dominate/template b/srcpkgs/python-dominate/template
index 14ec659bac8..6d6f2caa323 100644
--- a/srcpkgs/python-dominate/template
+++ b/srcpkgs/python-dominate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dominate'
 pkgname=python-dominate
 version=2.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dominate-${version}"
 build_style=python-module

From 1393a320cb04bf46ec31288c884daac91c90ee37 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 174/871] python-dulwich: rebuild for Python 3.8.

---
 srcpkgs/python-dulwich/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dulwich/template b/srcpkgs/python-dulwich/template
index 0bddda65069..7b8ac45011e 100644
--- a/srcpkgs/python-dulwich/template
+++ b/srcpkgs/python-dulwich/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dulwich'
 pkgname=python-dulwich
 version=0.19.13
-revision=1
+revision=2
 wrksrc="dulwich-${version}"
 build_style=python-module
 pycompile_module="dulwich"

From db94c1f14475474b581d4c4771f194249fc0af63 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 175/871] python3-easygui: rebuild for Python 3.8.

---
 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 c1ec4767ae9..a9a2f66d865 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="easygui-${version}"
 build_style=python3-module

From 8d2d9d31e93e62e066d9e69900200684b9764c27 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 176/871] python-ecdsa: rebuild for Python 3.8.

---
 srcpkgs/python-ecdsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ecdsa/template b/srcpkgs/python-ecdsa/template
index 5e0b217fa73..e6e7d58cd10 100644
--- a/srcpkgs/python-ecdsa/template
+++ b/srcpkgs/python-ecdsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ecdsa'
 pkgname=python-ecdsa
 version=0.13.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 5b08d9981e02d3d00af7216e2a1f670647cdec0c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 177/871] python-editor: rebuild for Python 3.8.

---
 srcpkgs/python-editor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-editor/template b/srcpkgs/python-editor/template
index 4b86afa6924..3594e407205 100644
--- a/srcpkgs/python-editor/template
+++ b/srcpkgs/python-editor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-editor'
 pkgname=python-editor
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="editor"

From 304747456354186778761a8d5a6de16607580337 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 178/871] python3-eliot: rebuild for Python 3.8.

---
 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 15b05dd7331..8453789b688 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="eliot-${version}"
 build_style=python3-module

From 6270d990bddaf21e5d93b6f9c2ff0446570cfc67 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 179/871] python-empy: rebuild for Python 3.8.

---
 srcpkgs/python-empy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-empy/template b/srcpkgs/python-empy/template
index 97476250cf2..4668a9cc814 100644
--- a/srcpkgs/python-empy/template
+++ b/srcpkgs/python-empy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-empy'
 pkgname=python-empy
 version=3.3.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="empy-${version}"
 build_style=python-module

From 8308973076f68b8e91781e53e8d05e6248f2211c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 180/871] python-enchant: rebuild for Python 3.8.

---
 srcpkgs/python-enchant/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enchant/template b/srcpkgs/python-enchant/template
index a443877d821..e499957b47e 100644
--- a/srcpkgs/python-enchant/template
+++ b/srcpkgs/python-enchant/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enchant'
 pkgname=python-enchant
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python-module

From f9433cc6f529c441de3392a4fec715a98f55e952 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 181/871] python-entrypoints: rebuild for Python 3.8.

---
 srcpkgs/python-entrypoints/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-entrypoints/template b/srcpkgs/python-entrypoints/template
index ebefb2d04dc..6070650f35d 100644
--- a/srcpkgs/python-entrypoints/template
+++ b/srcpkgs/python-entrypoints/template
@@ -1,7 +1,7 @@
 # Template file for 'python-entrypoints'
 pkgname=python-entrypoints
 version=0.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="entrypoints-${version}"
 build_style=python-module

From 4d255bb04facca6b1368de23eed8a1fe0bd3c254 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 182/871] python-envdir: rebuild for Python 3.8.

---
 srcpkgs/python-envdir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-envdir/template b/srcpkgs/python-envdir/template
index 622fcee6b34..b8cccad60ac 100644
--- a/srcpkgs/python-envdir/template
+++ b/srcpkgs/python-envdir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-envdir'
 pkgname=python-envdir
 version=1.0.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 8bb6c25180381753812adffea0a45f92197df850 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 183/871] python-enzyme: rebuild for Python 3.8.

---
 srcpkgs/python-enzyme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enzyme/template b/srcpkgs/python-enzyme/template
index 637c858195b..f28f40b0319 100644
--- a/srcpkgs/python-enzyme/template
+++ b/srcpkgs/python-enzyme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enzyme'
 pkgname=python-enzyme
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="enzyme-${version}"
 build_style=python-module

From c3d18d20e518e2ff663587fce9b28e7985856a52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 184/871] python3-esprima: rebuild for Python 3.8.

---
 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 c3a564123de..aec8930a6bf 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=1
+revision=2
 wrksrc="esprima-${version}"
 build_style=python3-module
 pycompile_module="esprima"

From dc13cc598c6cd8da2ae170fbccecda95a2897f9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 185/871] python-evdev: rebuild for Python 3.8.

---
 srcpkgs/python-evdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-evdev/template b/srcpkgs/python-evdev/template
index 3c1a5253513..cff10211628 100644
--- a/srcpkgs/python-evdev/template
+++ b/srcpkgs/python-evdev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-evdev'
 pkgname=python-evdev
 version=1.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="evdev"
 hostmakedepends="python-setuptools python3-setuptools"

From 29371dac31501e8c706381be4078320889ef9c68 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 186/871] python-ewmh: rebuild for Python 3.8.

---
 srcpkgs/python-ewmh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ewmh/template b/srcpkgs/python-ewmh/template
index be6d04316b0..a96490fb56d 100644
--- a/srcpkgs/python-ewmh/template
+++ b/srcpkgs/python-ewmh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ewmh'
 pkgname=python-ewmh
 version=0.1.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 359c508989c182b8cec3711ec080246b22d58bfe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 187/871] python-exifread: rebuild for Python 3.8.

---
 srcpkgs/python-exifread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-exifread/template b/srcpkgs/python-exifread/template
index 853f885fff8..834aa7730ee 100644
--- a/srcpkgs/python-exifread/template
+++ b/srcpkgs/python-exifread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-exifread'
 pkgname=python-exifread
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="exif-py-${version}"
 build_style="python-module"

From 4bc3374a7edc83210aa575239a1feca26adaf4b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 188/871] python-fasteners: rebuild for Python 3.8.

---
 srcpkgs/python-fasteners/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fasteners/template b/srcpkgs/python-fasteners/template
index 34ca4e0e9db..24d2ec0611f 100644
--- a/srcpkgs/python-fasteners/template
+++ b/srcpkgs/python-fasteners/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fasteners'
 pkgname=python-fasteners
 version=0.15
-revision=1
+revision=2
 archs=noarch
 wrksrc="fasteners-${version}"
 build_style=python-module

From 56874a17b65c11a89302a98b2c90c273fcddc013 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 189/871] python-feedgenerator: rebuild for Python 3.8.

---
 srcpkgs/python-feedgenerator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedgenerator/template b/srcpkgs/python-feedgenerator/template
index 3e5abc4f433..bcffb6728aa 100644
--- a/srcpkgs/python-feedgenerator/template
+++ b/srcpkgs/python-feedgenerator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedgenerator'
 pkgname=python-feedgenerator
 version=1.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="feedgenerator-${version}"
 build_style=python-module

From 5ce28ffefdd0b7395a1069f4051c7d99e2ec26a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 190/871] python-feedparser: rebuild for Python 3.8.

---
 srcpkgs/python-feedparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedparser/template b/srcpkgs/python-feedparser/template
index c5c5e8783eb..94f0a58ec88 100644
--- a/srcpkgs/python-feedparser/template
+++ b/srcpkgs/python-feedparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedparser'
 pkgname=python-feedparser
 version=5.2.1
-revision=5
+revision=6
 archs=noarch
 wrksrc="feedparser-${version}"
 build_style=python-module

From e038ae63686ca8ec96dc0db3b55e30c1df22aad8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 191/871] python3-fido2: rebuild for Python 3.8.

---
 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 fafb4d61d56..fb737d68d20 100644
--- a/srcpkgs/python3-fido2/template
+++ b/srcpkgs/python3-fido2/template
@@ -2,7 +2,7 @@
 pkgname=python3-fido2
 _pkgname=fido2
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From 516e82df67ad1a7f40c4a2114e73c7d7252ece9e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 192/871] python3-filelock: rebuild for Python 3.8.

---
 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 8e0bc8f1070..9105ff8689d 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.0.12
-revision=1
+revision=2
 wrksrc="filelock-${version}"
 build_style=python3-module
 pycompile_module="filelock.py"

From 414ae12bb4b07dcd2b2de38272074dd147dbb7d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 193/871] python-filetype: rebuild for Python 3.8.

---
 srcpkgs/python-filetype/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-filetype/template b/srcpkgs/python-filetype/template
index 37896cff9d8..10b974794b5 100644
--- a/srcpkgs/python-filetype/template
+++ b/srcpkgs/python-filetype/template
@@ -1,7 +1,7 @@
 # Template file for 'python-filetype'
 pkgname=python-filetype
 version=1.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="filetype-${version}"
 build_style=python-module

From c6fb6681248c13c19bfa41251405446ee2742977 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 194/871] python3-fishnet: rebuild for Python 3.8.

---
 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 9dde60cbb6c..6280ae8e966 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=1
+revision=2
 archs=noarch
 wrksrc="fishnet-${version}"
 build_style=python3-module

From 6e6b174aff8b6f855fea29da280ab7cdd24f725d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 195/871] python-flaky: rebuild for Python 3.8.

---
 srcpkgs/python-flaky/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-flaky/template b/srcpkgs/python-flaky/template
index d5211c9cb60..e8e681421f7 100644
--- a/srcpkgs/python-flaky/template
+++ b/srcpkgs/python-flaky/template
@@ -1,7 +1,7 @@
 # Template file for 'python-flaky'
 pkgname=python-flaky
 version=3.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From b71be0bf553d4761ed713d7e83995e2a236bdbfe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 196/871] python3-flexmock: rebuild for Python 3.8.

---
 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 0663ed5122d..8a7c9a2894d 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.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="flexmock-${version}"
 build_style=python3-module

From 879119febeb46842b9dd88902e1c61020ccf9513 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 197/871] python3-fonttools: rebuild for Python 3.8.

---
 srcpkgs/python3-fonttools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-fonttools/template b/srcpkgs/python3-fonttools/template
index 15cf36585fb..ccd4b66c5d8 100644
--- a/srcpkgs/python3-fonttools/template
+++ b/srcpkgs/python3-fonttools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-fonttools'
 pkgname=python3-fonttools
 version=4.0.2
-revision=1
+revision=2
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 pycompile_module="fonttools"

From e3e50ac65f1db466ba238b0048c404d52f3d8beb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 198/871] python3-frozendict: rebuild for Python 3.8.

---
 srcpkgs/python3-frozendict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-frozendict/template b/srcpkgs/python3-frozendict/template
index d3b4dc91602..739000a887c 100644
--- a/srcpkgs/python3-frozendict/template
+++ b/srcpkgs/python3-frozendict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-frozendict'
 pkgname=python3-frozendict
 version=1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="frozendict-${version}"
 build_style=python3-module

From 57e8e1ba3c4a07aebbe079c57deaf044c47e5d74 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 199/871] python-fuse: rebuild for Python 3.8.

---
 srcpkgs/python-fuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fuse/template b/srcpkgs/python-fuse/template
index 6449cc36a02..2e99e9866d3 100644
--- a/srcpkgs/python-fuse/template
+++ b/srcpkgs/python-fuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fuse'
 pkgname=python-fuse
 version=0.3.1
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="fuseparts fuse.py"
 hostmakedepends="pkg-config python-setuptools python3-setuptools"

From 4f32997ab148c3812e20c83fbfb86a5538e20dd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 200/871] python-future: rebuild for Python 3.8.

---
 srcpkgs/python-future/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-future/template b/srcpkgs/python-future/template
index 1844be2efbc..6cd53908823 100644
--- a/srcpkgs/python-future/template
+++ b/srcpkgs/python-future/template
@@ -1,7 +1,7 @@
 # Template file for 'python-future'
 pkgname=python-future
 version=0.17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="future-${version}"
 build_style=python-module

From 8b0daf7a8b05cb765b3a0ccdddc8b60c94148256 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 201/871] python3-geojson: rebuild for Python 3.8.

---
 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 6bcd0c3092e..90e7d5a0e60 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=1
+revision=2
 archs=noarch
 wrksrc="geojson-${version}"
 build_style=python3-module

From 196ca140d7bfc1f8eae5c697f9408a865057ff6d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 202/871] python-gevent: rebuild for Python 3.8.

---
 srcpkgs/python-gevent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gevent/template b/srcpkgs/python-gevent/template
index 2bbabee00fc..35c76146d56 100644
--- a/srcpkgs/python-gevent/template
+++ b/srcpkgs/python-gevent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gevent'
 pkgname=python-gevent
 version=1.4.0
-revision=1
+revision=2
 wrksrc="gevent-${version}"
 build_style=python-module
 pycompile_module="gevent"

From bffe8514d9cfb93e6ef99afabadbd6daebefb004 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 203/871] python3-gitchangelog: rebuild for Python 3.8.

---
 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 ed381e07d78..cc1945f2623 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=1
+revision=2
 archs=noarch
 wrksrc="gitchangelog-${version}"
 build_style=python3-module

From cedc9cfed1c57845d67cdb0619c91a094b5c80d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 204/871] python-gitdb: rebuild for Python 3.8.

---
 srcpkgs/python-gitdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitdb/template b/srcpkgs/python-gitdb/template
index d9e624b9f53..253ddaa07bd 100644
--- a/srcpkgs/python-gitdb/template
+++ b/srcpkgs/python-gitdb/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitdb'
 pkgname=python-gitdb
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="gitdb2-${version}"
 build_style=python-module

From d7ddb8bb9358798c244af7f9f71bec1fe5f6275f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 205/871] python-github3: rebuild for Python 3.8.

---
 srcpkgs/python-github3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-github3/template b/srcpkgs/python-github3/template
index 2cb71368f3d..425fe1b7362 100644
--- a/srcpkgs/python-github3/template
+++ b/srcpkgs/python-github3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-github3'
 pkgname=python-github3
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="github3.py-${version}"
 build_style=python-module

From 40d7e9e097b4d506b53c3ec27245d7429921e323 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 206/871] python-gitlab: rebuild for Python 3.8.

---
 srcpkgs/python-gitlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitlab/template b/srcpkgs/python-gitlab/template
index 7db583b54c4..0f71b4c7153 100644
--- a/srcpkgs/python-gitlab/template
+++ b/srcpkgs/python-gitlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitlab'
 pkgname=python-gitlab
 version=1.12.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gitlab"

From efa78a1c8e3a31f38579af8a5f05909a63469ff7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 207/871] python-gmpy2: rebuild for Python 3.8.

---
 srcpkgs/python-gmpy2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gmpy2/template b/srcpkgs/python-gmpy2/template
index c41a9f4595b..74e9b583288 100644
--- a/srcpkgs/python-gmpy2/template
+++ b/srcpkgs/python-gmpy2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gmpy2'
 pkgname=python-gmpy2
 version=2.0.8
-revision=5
+revision=6
 wrksrc="gmpy2-${version}"
 build_style=python-module
 hostmakedepends="unzip python-setuptools python3-setuptools

From 39b0460248656d5a8bc7781293784bf557f86ed9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 208/871] python-gntp: rebuild for Python 3.8.

---
 srcpkgs/python-gntp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gntp/template b/srcpkgs/python-gntp/template
index 14bd36518f8..7b3bb5a7bb7 100644
--- a/srcpkgs/python-gntp/template
+++ b/srcpkgs/python-gntp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gntp'
 pkgname=python-gntp
 version=1.0.3
-revision=4
+revision=5
 archs=noarch
 wrksrc="gntp-${version}"
 build_style=python-module

From 333947ec14d6dc761faabc09fae54b39759dc71d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 209/871] python-gnupg: rebuild for Python 3.8.

---
 srcpkgs/python-gnupg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gnupg/template b/srcpkgs/python-gnupg/template
index ae6f49c7e27..24c0943d1e4 100644
--- a/srcpkgs/python-gnupg/template
+++ b/srcpkgs/python-gnupg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gnupg'
 pkgname=python-gnupg
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gnupg.py"

From b23dde07418322e593ecdb90260a7950d375b368 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 210/871] python3-gobject: rebuild for Python 3.8.

---
 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 242d33ed3ac..8713ddf5334 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.32.2
-revision=1
+revision=2
 wrksrc="pygobject-${version}"
 build_style=meson
 build_helper="gir"

From 768ca023475e74eb810f483247009cfb56c12ecb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 211/871] python-gogs-client: rebuild for Python 3.8.

---
 srcpkgs/python-gogs-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gogs-client/template b/srcpkgs/python-gogs-client/template
index e8189bc8805..027135d430c 100644
--- a/srcpkgs/python-gogs-client/template
+++ b/srcpkgs/python-gogs-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gogs-client'
 pkgname=python-gogs-client
 version=1.0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="gogs_client-${version}"
 build_style=python-module

From cbf9cee47bfaca6d14dc65de4a8326b47fd3e943 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 212/871] python-google-api-python-client: rebuild for Python
 3.8.

---
 srcpkgs/python-google-api-python-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-api-python-client/template b/srcpkgs/python-google-api-python-client/template
index 273cd0722b8..69c2d4e96eb 100644
--- a/srcpkgs/python-google-api-python-client/template
+++ b/srcpkgs/python-google-api-python-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-api-python-client'
 pkgname=python-google-api-python-client
 version=1.7.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From bf4cf1ce55bd23a2d3f0afd8eee1dba85a95049c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 213/871] python-google-auth: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth/template b/srcpkgs/python-google-auth/template
index 708fe08325a..1de6800e3d2 100644
--- a/srcpkgs/python-google-auth/template
+++ b/srcpkgs/python-google-auth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth'
 pkgname=python-google-auth
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From d1b4f350364cbea7c67e25f85194fd7262f771eb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 214/871] python-google-auth-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth-httplib2/template b/srcpkgs/python-google-auth-httplib2/template
index 9a7fd093ce5..9e43bc92292 100644
--- a/srcpkgs/python-google-auth-httplib2/template
+++ b/srcpkgs/python-google-auth-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth-httplib2'
 pkgname=python-google-auth-httplib2
 version=0.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From ae88b2622faa0932c182aacb210ae9a08f6bf96c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 215/871] python-gpg: rebuild for Python 3.8.

---
 srcpkgs/python-gpg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gpg/template b/srcpkgs/python-gpg/template
index 4ef85846b42..a17a0324af8 100644
--- a/srcpkgs/python-gpg/template
+++ b/srcpkgs/python-gpg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gpg'
 pkgname=python-gpg
 version=1.10.0
-revision=3
+revision=4
 wrksrc="gpg-${version}"
 build_style=python-module
 hostmakedepends="swig gpgme-devel python-devel python3-devel"

From 4e9f66ef316ca9678ae34385bcef4e4879f408a6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 216/871] python-grako: rebuild for Python 3.8.

---
 srcpkgs/python-grako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-grako/template b/srcpkgs/python-grako/template
index cc02973b31e..2b401732735 100644
--- a/srcpkgs/python-grako/template
+++ b/srcpkgs/python-grako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-grako'
 pkgname=python-grako
 version=3.99.9
-revision=3
+revision=4
 wrksrc="neogeny-${pkgname/python-/}-275d3c4fe4ac"
 build_style=python-module
 pycompile_module="grako"

From 2b268155d5973f77515094730f163e05b9093126 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 217/871] python-graphviz: rebuild for Python 3.8.

---
 srcpkgs/python-graphviz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-graphviz/template b/srcpkgs/python-graphviz/template
index 521f2e81213..e3d487a2db7 100644
--- a/srcpkgs/python-graphviz/template
+++ b/srcpkgs/python-graphviz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-graphviz'
 pkgname=python-graphviz
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From ddc73cd8d32114764d8a2f683660e6bb9a21e426 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 218/871] python-greenlet: rebuild for Python 3.8.

---
 srcpkgs/python-greenlet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-greenlet/template b/srcpkgs/python-greenlet/template
index d1e63ac7adb..b540e9a286b 100644
--- a/srcpkgs/python-greenlet/template
+++ b/srcpkgs/python-greenlet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-greenlet'
 pkgname=python-greenlet
 version=0.4.15
-revision=2
+revision=3
 wrksrc="greenlet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 79985b98e9f11f9acf314b685611818549bd8dac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 219/871] python-guessit: rebuild for Python 3.8.

---
 srcpkgs/python-guessit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-guessit/template b/srcpkgs/python-guessit/template
index 5029048a041..a962f14522f 100644
--- a/srcpkgs/python-guessit/template
+++ b/srcpkgs/python-guessit/template
@@ -1,7 +1,7 @@
 # Template file for 'python-guessit'
 pkgname=python-guessit
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="guessit-${version}"
 build_style=python-module

From 4eb88395f4089fbc33eb9ed2923251ed12838250 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 220/871] python-h11: rebuild for Python 3.8.

---
 srcpkgs/python-h11/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-h11/template b/srcpkgs/python-h11/template
index cd6bdbc8497..7f2d2c5fa8a 100644
--- a/srcpkgs/python-h11/template
+++ b/srcpkgs/python-h11/template
@@ -1,7 +1,7 @@
 # Template file for 'python-h11'
 pkgname=python-h11
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=h11-${version}
 build_style=python-module

From fc4153bb415a8b82433ed152e45f5431c091ba3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 221/871] python-habanero: rebuild for Python 3.8.

---
 srcpkgs/python-habanero/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-habanero/template b/srcpkgs/python-habanero/template
index 86d66befc3d..a914f21ecb7 100644
--- a/srcpkgs/python-habanero/template
+++ b/srcpkgs/python-habanero/template
@@ -1,7 +1,7 @@
 # Template file for 'python-habanero'
 pkgname=python-habanero
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="habanero-${version}"
 build_style=python-module

From c587ff2f0476b619613f04a047843ed5a3725623 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 222/871] python3-hawkauthlib: rebuild for Python 3.8.

---
 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 fd7f1405790..1456fa7d814 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=2
+revision=3
 archs=noarch
 wrksrc="hawkauthlib-${version}"
 build_style=python3-module

From 68f7c8285c9aa820ef4e637098c7b09a08df1679 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 223/871] python-hiredis: rebuild for Python 3.8.

---
 srcpkgs/python-hiredis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hiredis/template b/srcpkgs/python-hiredis/template
index 23694ae92d7..82a97d5eaf3 100644
--- a/srcpkgs/python-hiredis/template
+++ b/srcpkgs/python-hiredis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hiredis'
 pkgname=python-hiredis
 version=0.2.0
-revision=4
+revision=5
 wrksrc="hiredis-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From ac392ae82dee5e93930c01647e8962a4c7e0e1fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 224/871] python3-hkdf: rebuild for Python 3.8.

---
 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 fabc91ee974..0faaf05b5fe 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=1
+revision=2
 archs=noarch
 wrksrc="hkdf-${version}"
 build_style=python3-module

From 84aed29b05413d313de9c87a1646149842f28eeb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 225/871] python-hoedown: rebuild for Python 3.8.

---
 srcpkgs/python-hoedown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hoedown/template b/srcpkgs/python-hoedown/template
index a964fbbb709..4b82aba9afc 100644
--- a/srcpkgs/python-hoedown/template
+++ b/srcpkgs/python-hoedown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hoedown'
 pkgname=python-hoedown
 version=0.3.0
-revision=2
+revision=3
 wrksrc="hoedown-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 9f01d178f55e1a49e30b92eba204f567c568736a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 226/871] python-hpack: rebuild for Python 3.8.

---
 srcpkgs/python-hpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hpack/template b/srcpkgs/python-hpack/template
index c69e91daa0e..ffbac313103 100644
--- a/srcpkgs/python-hpack/template
+++ b/srcpkgs/python-hpack/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hpack'
 pkgname=python-hpack
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hpack-${version}
 build_style=python-module

From be5a30e3eb4ec353ba43b1b70dd6764d034ede3a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 227/871] python3-html2text: rebuild for Python 3.8.

---
 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 006f2a127ad..c74e236a053 100644
--- a/srcpkgs/python3-html2text/template
+++ b/srcpkgs/python3-html2text/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-html2text'
 pkgname=python3-html2text
 version=2019.9.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module

From a9bf5bbf8688bacb83314afae772b2633917ddf3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 228/871] python-html5-parser: rebuild for Python 3.8.

---
 srcpkgs/python-html5-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5-parser/template b/srcpkgs/python-html5-parser/template
index 130c5037e57..41bbd0ea157 100644
--- a/srcpkgs/python-html5-parser/template
+++ b/srcpkgs/python-html5-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5-parser'
 pkgname=python-html5-parser
 version=0.4.8
-revision=1
+revision=2
 wrksrc="html5-parser-${version}"
 build_style=python-module
 pycompile_module="html5_parser"

From 9178d7a7d25413beb1170dd851665f4e73c52ec7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 229/871] python-html5lib: rebuild for Python 3.8.

---
 srcpkgs/python-html5lib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5lib/template b/srcpkgs/python-html5lib/template
index 81e683f7bcf..2565de64fd2 100644
--- a/srcpkgs/python-html5lib/template
+++ b/srcpkgs/python-html5lib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5lib'
 pkgname=python-html5lib
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="html5lib-${version}"
 build_style=python-module

From f44ef4b0813fdb73e640d7673779dd6ff982e8be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 230/871] python-httmock: rebuild for Python 3.8.

---
 srcpkgs/python-httmock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httmock/template b/srcpkgs/python-httmock/template
index 61a60126936..e798b4fc1b3 100644
--- a/srcpkgs/python-httmock/template
+++ b/srcpkgs/python-httmock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httmock'
 pkgname=python-httmock
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="httmock-${version}"
 build_style=python-module

From 7b1f9d75c4582cc26b1130c68a4293a087032eb6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 231/871] python-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httplib2/template b/srcpkgs/python-httplib2/template
index 4d9e5ba3822..9cf4c293d87 100644
--- a/srcpkgs/python-httplib2/template
+++ b/srcpkgs/python-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httplib2'
 pkgname=python-httplib2
 version=0.14.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="httplib2-${version}"
 build_style=python-module

From b90fa809b79e8afa673c28b640d444422626a6ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 232/871] python3-humanize: rebuild for Python 3.8.

---
 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 c82c20fb0f2..d1011fb92e9 100644
--- a/srcpkgs/python3-humanize/template
+++ b/srcpkgs/python3-humanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-humanize'
 pkgname=python3-humanize
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="humanize-${version}"
 build_style=python3-module

From ce900e0ce6ef7458e1b23df202b1c18ac786e5d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 233/871] python-hyperframe: rebuild for Python 3.8.

---
 srcpkgs/python-hyperframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyperframe/template b/srcpkgs/python-hyperframe/template
index e4cea346f7e..6b544c2061c 100644
--- a/srcpkgs/python-hyperframe/template
+++ b/srcpkgs/python-hyperframe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperframe'
 pkgname=python-hyperframe
 version=5.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hyperframe-${version}
 build_style=python-module

From f43f064582739943eb17a3dfa4e1c54db4e1aa74 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 234/871] python-hyperlink: rebuild for Python 3.8.

---
 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 1cc7aa0670a..945bf72ee59 100644
--- a/srcpkgs/python-hyperlink/template
+++ b/srcpkgs/python-hyperlink/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperlink'
 pkgname=python-hyperlink
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyperlink-${version}"
 build_style=python-module

From d293de19a28519634618c1d45ab868d431d188cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 235/871] python-hypothesis: rebuild for Python 3.8.

---
 srcpkgs/python-hypothesis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hypothesis/template b/srcpkgs/python-hypothesis/template
index f3eb931e410..de55593fc02 100644
--- a/srcpkgs/python-hypothesis/template
+++ b/srcpkgs/python-hypothesis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hypothesis'
 pkgname=python-hypothesis
 version=4.38.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="hypothesis-hypothesis-python-${version}"
 build_wrksrc=hypothesis-python

From 9457ed6cd143846285c7f7e0c384f465e7b061cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 236/871] python-icalendar: rebuild for Python 3.8.

---
 srcpkgs/python-icalendar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-icalendar/template b/srcpkgs/python-icalendar/template
index b2129648ea6..be45f2d608d 100644
--- a/srcpkgs/python-icalendar/template
+++ b/srcpkgs/python-icalendar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-icalendar'
 pkgname=python-icalendar
 version=4.0.3
-revision=1
+revision=2
 wrksrc="icalendar-${version}"
 archs=noarch
 build_style=python-module

From bfb1bfeb858f50456b412efb7bf549c46fe81b76 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 237/871] icdiff: rebuild for Python 3.8.

---
 srcpkgs/icdiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template
index 31cfc3e2354..396448b86f4 100644
--- a/srcpkgs/icdiff/template
+++ b/srcpkgs/icdiff/template
@@ -1,7 +1,7 @@
 # Template file for 'icdiff'
 pkgname=icdiff
 version=1.9.5
-revision=1
+revision=2
 wrksrc="${pkgname}-release-${version}"
 archs=noarch
 build_style=python-module

From 539759ecb6f8b2e9d07d4f60220633697d66f2e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 238/871] python-idna: rebuild for Python 3.8.

---
 srcpkgs/python-idna/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-idna/template b/srcpkgs/python-idna/template
index 4c6baefd41b..446a04da7d7 100644
--- a/srcpkgs/python-idna/template
+++ b/srcpkgs/python-idna/template
@@ -1,7 +1,7 @@
 # Template file for 'python-idna'
 pkgname=python-idna
 version=2.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-${version}"
 build_style=python-module

From d0188f425389f9b52da9c7b210efc54077269f22 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 239/871] python3-idna-ssl: rebuild for Python 3.8.

---
 srcpkgs/python3-idna-ssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-idna-ssl/template b/srcpkgs/python3-idna-ssl/template
index df953f4d0d9..0608fb7278c 100644
--- a/srcpkgs/python3-idna-ssl/template
+++ b/srcpkgs/python3-idna-ssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-idna-ssl'
 pkgname=python3-idna-ssl
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-ssl-${version}"
 build_style=python3-module

From 49f723c72fd2af167b15ec815f0c99f603a9199e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 240/871] python3-ifaddr: rebuild for Python 3.8.

---
 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 37bc2bbaf73..683d76662a3 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ifaddr-${version}"
 build_style=python3-module

From 7d0c34882dad3359d964e22f2efa3697e3660af0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 241/871] python-imagesize: rebuild for Python 3.8.

---
 srcpkgs/python-imagesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-imagesize/template b/srcpkgs/python-imagesize/template
index ee231eb9f24..f64c86812b5 100644
--- a/srcpkgs/python-imagesize/template
+++ b/srcpkgs/python-imagesize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-imagesize'
 pkgname=python-imagesize
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="imagesize-${version}"
 build_style=python-module

From 2dd67d26a720347b9429a960e96b3ca4af806af7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 242/871] python3-importlib_metadata: rebuild for Python 3.8.

---
 srcpkgs/python3-importlib_metadata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-importlib_metadata/template b/srcpkgs/python3-importlib_metadata/template
index 9acbe968e10..f88e9d9b780 100644
--- a/srcpkgs/python3-importlib_metadata/template
+++ b/srcpkgs/python3-importlib_metadata/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-importlib_metadata'
 pkgname=python3-importlib_metadata
 version=0.23
-revision=1
+revision=2
 archs=noarch
 wrksrc="importlib_metadata-${version}"
 build_style=python3-module

From c3532731d9edf18841786017c9e8193f1ed36cac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 243/871] python-incremental: rebuild for Python 3.8.

---
 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 a1c07042365..70477e26866 100644
--- a/srcpkgs/python-incremental/template
+++ b/srcpkgs/python-incremental/template
@@ -1,7 +1,7 @@
 # Template file for 'python-incremental'
 pkgname=python-incremental
 version=17.5.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="incremental-${version}"
 build_style=python-module

From 842d58d147d37684a4ee6c2a61f33a2b98b615dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 244/871] python-inotify: rebuild for Python 3.8.

---
 srcpkgs/python-inotify/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-inotify/template b/srcpkgs/python-inotify/template
index f8e26bcc415..64e48fd9330 100644
--- a/srcpkgs/python-inotify/template
+++ b/srcpkgs/python-inotify/template
@@ -1,7 +1,7 @@
 # Template file for 'python-inotify'
 pkgname=python-inotify
 version=0.9.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="pyinotify-${version}"
 build_style=python-module

From 0b6d38100013922f1256173d4ad0054995a04e72 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 245/871] python-iptools: rebuild for Python 3.8.

---
 srcpkgs/python-iptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iptools/template b/srcpkgs/python-iptools/template
index 599a85ccdba..3c53013fb9d 100644
--- a/srcpkgs/python-iptools/template
+++ b/srcpkgs/python-iptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iptools'
 pkgname=python-iptools
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 060ee3851162cbb1246b08952501ff2444f73cad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 246/871] python3-ipython: rebuild for Python 3.8.

---
 srcpkgs/python3-ipython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template
index 63242f382db..2c08bad1e41 100644
--- a/srcpkgs/python3-ipython/template
+++ b/srcpkgs/python3-ipython/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-ipython'
 pkgname=python3-ipython
 version=7.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipython-${version}"
 build_style=python3-module

From 0e4ef18cdd6ab14e99096302a71e6aa19cbf6a74 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 247/871] python-ipython_genutils: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_genutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_genutils/template b/srcpkgs/python-ipython_genutils/template
index 9af9604ca00..d46a3b0b716 100644
--- a/srcpkgs/python-ipython_genutils/template
+++ b/srcpkgs/python-ipython_genutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_genutils'
 pkgname=python-ipython_genutils
 version=0.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="ipython_genutils-${version}"
 build_style=python-module

From a1cc9258fc7117898ac38c29e344dce9d24ac2c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 248/871] python-ipython_ipykernel: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_ipykernel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_ipykernel/template b/srcpkgs/python-ipython_ipykernel/template
index 5ddc333798a..ca17b58c006 100644
--- a/srcpkgs/python-ipython_ipykernel/template
+++ b/srcpkgs/python-ipython_ipykernel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_ipykernel'
 pkgname=python-ipython_ipykernel
 version=4.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipykernel-${version}"
 build_style=python-module

From 8a025e2a2a6aa9128b0a8d1a2b7117d9c79bd21f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 249/871] python3-irc: rebuild for Python 3.8.

---
 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 eea3a629128..714c11dc943 100644
--- a/srcpkgs/python3-irc/template
+++ b/srcpkgs/python3-irc/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-irc'
 pkgname=python3-irc
 version=17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="irc-${version}"
 build_style=python3-module

From d1bd80344f3eb6038d9d3afb4f16e184f1b2b83e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 250/871] python-isbnlib: rebuild for Python 3.8.

---
 srcpkgs/python-isbnlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isbnlib/template b/srcpkgs/python-isbnlib/template
index 3e2f66c6b66..1cc46a060d6 100644
--- a/srcpkgs/python-isbnlib/template
+++ b/srcpkgs/python-isbnlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isbnlib'
 pkgname=python-isbnlib
 version=3.9.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="isbnlib-${version}"
 build_style=python-module

From 0e5f429f3627fa74a8564edbb1a4e3603c0318a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 251/871] python-iso-8601: rebuild for Python 3.8.

---
 srcpkgs/python-iso-8601/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iso-8601/template b/srcpkgs/python-iso-8601/template
index a483e55b0bd..a841866d439 100644
--- a/srcpkgs/python-iso-8601/template
+++ b/srcpkgs/python-iso-8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iso-8601'
 pkgname=python-iso-8601
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="iso-8601-${version}"
 build_style=python-module

From 08522b09c32e3592c33860d1674329f6beb99d7c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 252/871] python-isodate: rebuild for Python 3.8.

---
 srcpkgs/python-isodate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isodate/template b/srcpkgs/python-isodate/template
index b2a7eb46591..74e4e813e64 100644
--- a/srcpkgs/python-isodate/template
+++ b/srcpkgs/python-isodate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isodate'
 pkgname=python-isodate
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="isodate-${version}"
 build_style=python-module

From 7bca354303bfc975c852c3fa15052475f6305c3e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 253/871] python-isort: rebuild for Python 3.8.

---
 srcpkgs/python-isort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isort/template b/srcpkgs/python-isort/template
index df7fcfbf2d2..cd8e43b69ea 100644
--- a/srcpkgs/python-isort/template
+++ b/srcpkgs/python-isort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isort'
 pkgname=python-isort
 version=4.3.21
-revision=1
+revision=2
 archs=noarch
 wrksrc="isort-${version}"
 build_style=python-module

From be7f72433d66188508cab321ede5d3ab37e16725 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 254/871] python-itsdangerous: rebuild for Python 3.8.

---
 srcpkgs/python-itsdangerous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-itsdangerous/template b/srcpkgs/python-itsdangerous/template
index d1d9234df88..6e6fe5dcb2b 100644
--- a/srcpkgs/python-itsdangerous/template
+++ b/srcpkgs/python-itsdangerous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-itsdangerous'
 pkgname=python-itsdangerous
 version=0.24
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 386317f944729f785780cd6dec6ebf3cd98c2c72 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 255/871] python-iwlib: rebuild for Python 3.8.

---
 srcpkgs/python-iwlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iwlib/template b/srcpkgs/python-iwlib/template
index 2c58d4c8d29..2f4149b4e92 100644
--- a/srcpkgs/python-iwlib/template
+++ b/srcpkgs/python-iwlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iwlib'
 pkgname=python-iwlib
 version=1.6.2
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="iwlib"

From c8d49b27400af885c7b30dd38e87a2ecfe5fe2af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 256/871] python-jedi: rebuild for Python 3.8.

---
 srcpkgs/python-jedi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jedi/template b/srcpkgs/python-jedi/template
index 136e6adbea4..a994f0e2861 100644
--- a/srcpkgs/python-jedi/template
+++ b/srcpkgs/python-jedi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jedi'
 pkgname=python-jedi
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 _parsover=0.5.0
 wrksrc="jedi-${version}"

From 50949546750f9434aed13479bf05ed1bf407f5b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 257/871] python3-jeepney: rebuild for Python 3.8.

---
 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 2ae308a6fc6..9c5c007aa17 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.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="jeepney-${version}"
 build_style=python3-module

From 8c29c5b6c04bb719eae61aad4f411fb882d63f0b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 258/871] python3-jellyfish: rebuild for Python 3.8.

---
 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 dec74539e3f..5d0a614c397 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.7.2
-revision=1
+revision=2
 wrksrc="jellyfish-${version}"
 build_style=python3-module
 pycompile_module="jellyfish"

From ab255c705dd85f7292cd2e6f294689f9c11b7b9b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 259/871] python-jmespath: rebuild for Python 3.8.

---
 srcpkgs/python-jmespath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jmespath/template b/srcpkgs/python-jmespath/template
index 47508a3a0c2..220f1a33c07 100644
--- a/srcpkgs/python-jmespath/template
+++ b/srcpkgs/python-jmespath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jmespath'
 pkgname=python-jmespath
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jmespath.py-${version}"
 build_style=python-module

From f5362a59488ed80b1e995dac27652d11e70f359b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 260/871] python3-josepy: rebuild for Python 3.8.

---
 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 6d6e4547d38..903bd7028ed 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="josepy-${version}"
 build_style=python3-module

From 63639680c758dde53bbd58f8dbcd6b926b12e6a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 261/871] python-jsonpointer: rebuild for Python 3.8.

---
 srcpkgs/python-jsonpointer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonpointer/template b/srcpkgs/python-jsonpointer/template
index ed865fbfcba..fd103d123aa 100644
--- a/srcpkgs/python-jsonpointer/template
+++ b/srcpkgs/python-jsonpointer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonpointer'
 pkgname=python-jsonpointer
 version=2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonpointer-${version}"
 build_style=python-module

From ae015242a72c13c3680f094f23c981cc04a3e177 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 262/871] python-jsonrpclib: rebuild for Python 3.8.

---
 srcpkgs/python-jsonrpclib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonrpclib/template b/srcpkgs/python-jsonrpclib/template
index 7253607fe57..a245168a824 100644
--- a/srcpkgs/python-jsonrpclib/template
+++ b/srcpkgs/python-jsonrpclib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonrpclib'
 pkgname=python-jsonrpclib
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonrpclib-pelix-${version}"
 build_style=python-module

From b756975c3835b1eec68dbb97d6138d2007909994 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 263/871] python-jsonschema: rebuild for Python 3.8.

---
 srcpkgs/python-jsonschema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonschema/template b/srcpkgs/python-jsonschema/template
index 63c30ce6863..326b5609d36 100644
--- a/srcpkgs/python-jsonschema/template
+++ b/srcpkgs/python-jsonschema/template
@@ -2,7 +2,7 @@
 pkgname=python-jsonschema
 reverts="3.0.2_1"
 version=2.6.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="jsonschema-${version}"
 build_style=python-module

From 6c76c24b2f5b87cc145ea8d0139daac572a54c82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 264/871] python-jupyter_client: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_client/template b/srcpkgs/python-jupyter_client/template
index ab5cd0c5b3c..6365dd9e175 100644
--- a/srcpkgs/python-jupyter_client/template
+++ b/srcpkgs/python-jupyter_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_client'
 pkgname=python-jupyter_client
 version=5.2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_client-${version}"
 build_style=python-module

From 0bc715cad5eaca587f2654b082f3a42c6d402ea6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 265/871] python3-jupyter_console: rebuild for Python 3.8.

---
 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 25b2eda4c2f..3837e5b3bbf 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_console-${version}"
 build_style=python3-module

From 00617c70a92ba68ea07a3ff0959b7381b798eac5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 266/871] python-jupyter_core: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_core/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_core/template b/srcpkgs/python-jupyter_core/template
index fcce4e0fe0b..f1629208e86 100644
--- a/srcpkgs/python-jupyter_core/template
+++ b/srcpkgs/python-jupyter_core/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_core'
 pkgname=python-jupyter_core
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_core-${version}"
 build_style=python-module

From fcde9deb9e9e8ee2e1bb0dfb169b53e041965bb3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 267/871] python-jupyter_ipywidgets: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_ipywidgets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_ipywidgets/template b/srcpkgs/python-jupyter_ipywidgets/template
index 3d511a25152..44570cf390a 100644
--- a/srcpkgs/python-jupyter_ipywidgets/template
+++ b/srcpkgs/python-jupyter_ipywidgets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_ipywidgets'
 pkgname=python-jupyter_ipywidgets
 version=7.4.2
-revision=1
+revision=2
 archs=noarch
 _widgetsnbextver=3.4.0
 wrksrc="ipywidgets-${version}"

From 401c6729e7c631c0da5c341a15efe24b4a01b760 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 268/871] python-jupyter_nbconvert: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbconvert/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbconvert/template b/srcpkgs/python-jupyter_nbconvert/template
index 57ac5cce23f..e6cdad7d21c 100644
--- a/srcpkgs/python-jupyter_nbconvert/template
+++ b/srcpkgs/python-jupyter_nbconvert/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbconvert'
 pkgname=python-jupyter_nbconvert
 version=5.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="nbconvert-${version}"
 build_style=python-module

From 503f074cd445816bac386de1f10e1e041934b0f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 269/871] python-jupyter_nbformat: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbformat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbformat/template b/srcpkgs/python-jupyter_nbformat/template
index 11098fd3f90..e2addc8866f 100644
--- a/srcpkgs/python-jupyter_nbformat/template
+++ b/srcpkgs/python-jupyter_nbformat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbformat'
 pkgname=python-jupyter_nbformat
 version=4.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="nbformat-${version}"
 build_style=python-module

From 5a9eb3ff8ba9c5620f7299ad78aa375654922f5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 270/871] python-jupyter_notebook: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_notebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_notebook/template b/srcpkgs/python-jupyter_notebook/template
index c3f478c1fb4..4f6de0f642d 100644
--- a/srcpkgs/python-jupyter_notebook/template
+++ b/srcpkgs/python-jupyter_notebook/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_notebook'
 pkgname=python-jupyter_notebook
 version=5.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="notebook-${version}"
 build_style=python-module

From 2ac4f7767c156267a34db488af8ff456e31c35ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 271/871] python-jupyter_qtconsole: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_qtconsole/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_qtconsole/template b/srcpkgs/python-jupyter_qtconsole/template
index f8f85534bbd..ea7f89a62af 100644
--- a/srcpkgs/python-jupyter_qtconsole/template
+++ b/srcpkgs/python-jupyter_qtconsole/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_qtconsole'
 pkgname=python-jupyter_qtconsole
 version=4.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="qtconsole-${version}"
 build_style=python-module

From b1f5130d8fd05dd27b4eec7e4ee048d7b166b50b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 272/871] python-jupyter_widgetsnbextension: rebuild for Python
 3.8.

---
 srcpkgs/python-jupyter_widgetsnbextension/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_widgetsnbextension/template b/srcpkgs/python-jupyter_widgetsnbextension/template
index dacd88ccb4f..05e9c0d00a3 100644
--- a/srcpkgs/python-jupyter_widgetsnbextension/template
+++ b/srcpkgs/python-jupyter_widgetsnbextension/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_widgetsnbextension'
 pkgname=python-jupyter_widgetsnbextension
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="widgetsnbextension-${version}"
 build_style=python-module

From 746ab330409bb7b66fe9c827840de8373df2128b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 273/871] python-kaptan: rebuild for Python 3.8.

---
 srcpkgs/python-kaptan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kaptan/template b/srcpkgs/python-kaptan/template
index 649eeec8568..6668b240008 100644
--- a/srcpkgs/python-kaptan/template
+++ b/srcpkgs/python-kaptan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kaptan'
 pkgname=python-kaptan
 version=0.5.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="kaptan-${version}"
 build_style=python-module

From 93e279442ffa68359045d51bb415e8cd7f090789 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 274/871] python-keepalive: rebuild for Python 3.8.

---
 srcpkgs/python-keepalive/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keepalive/template b/srcpkgs/python-keepalive/template
index deb95a07236..50e1d7e6e78 100644
--- a/srcpkgs/python-keepalive/template
+++ b/srcpkgs/python-keepalive/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keepalive'
 pkgname=python-keepalive
 version=0.5
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 6e252b4ac526cb4f13f15ceffdf1e436c7bfdbe1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 275/871] python-keyring: rebuild for Python 3.8.

---
 srcpkgs/python-keyring/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyring/template b/srcpkgs/python-keyring/template
index df1c21ee1be..2a87160b04d 100644
--- a/srcpkgs/python-keyring/template
+++ b/srcpkgs/python-keyring/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyring'
 pkgname=python-keyring
 version=18.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyring-${version}"
 build_style=python-module

From ae5096d955ede8ee2da5e9d2fd9bd51d1e37ead0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 276/871] python3-keyrings-alt: rebuild for Python 3.8.

---
 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 d5820535e54..ed09cfac4a7 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=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyrings.alt-${version}"
 build_style=python3-module

From 7c7a25135200326d3a7d61ae9a377f78bfca2fe1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 277/871] python-keyutils: rebuild for Python 3.8.

---
 srcpkgs/python-keyutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyutils/template b/srcpkgs/python-keyutils/template
index d56ada0e30e..a72819e963a 100644
--- a/srcpkgs/python-keyutils/template
+++ b/srcpkgs/python-keyutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyutils'
 pkgname=python-keyutils
 version=0.6
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="keyutils"
 hostmakedepends="python-setuptools python3-setuptools"

From 3a8ccb102954761ab7c9c64f65514ff027985b1c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 278/871] python-kitchen: rebuild for Python 3.8.

---
 srcpkgs/python-kitchen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kitchen/template b/srcpkgs/python-kitchen/template
index 2bbd68c13c9..68a46986de9 100644
--- a/srcpkgs/python-kitchen/template
+++ b/srcpkgs/python-kitchen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kitchen'
 pkgname=python-kitchen
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="kitchen-${version}"
 build_style=python-module

From 542cbe613cd828ffba24fce8c945dc3a3a0e315d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 279/871] python-kiwisolver: rebuild for Python 3.8.

---
 srcpkgs/python-kiwisolver/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kiwisolver/template b/srcpkgs/python-kiwisolver/template
index 072bd5af038..67f0805aa51 100644
--- a/srcpkgs/python-kiwisolver/template
+++ b/srcpkgs/python-kiwisolver/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kiwisolver'
 pkgname=python-kiwisolver
 version=1.0.1
-revision=2
+revision=3
 wrksrc="kiwisolver-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 78b76a28b464a4155b400ba0862f7ccf1dec79bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 280/871] python-lazy-object-proxy: rebuild for Python 3.8.

---
 srcpkgs/python-lazy-object-proxy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lazy-object-proxy/template b/srcpkgs/python-lazy-object-proxy/template
index 07efb7b4777..ab2c6dce05c 100644
--- a/srcpkgs/python-lazy-object-proxy/template
+++ b/srcpkgs/python-lazy-object-proxy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lazy-object-proxy'
 pkgname=python-lazy-object-proxy
 version=1.3.1
-revision=3
+revision=4
 wrksrc="lazy-object-proxy-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 9386c38cce66a117d287f22702ae9372b5271d7e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 281/871] python-ldap: rebuild for Python 3.8.

---
 srcpkgs/python-ldap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap/template b/srcpkgs/python-ldap/template
index 7770baa8774..e3efc2fc6b3 100644
--- a/srcpkgs/python-ldap/template
+++ b/srcpkgs/python-ldap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap'
 pkgname=python-ldap
 version=3.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="ldap ldapurl.py ldif.py slapdtest"
 hostmakedepends="python-setuptools python3-setuptools"

From 5c11439473a385dbaab4bed0a0604501751c5844 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 282/871] python-ldap3: rebuild for Python 3.8.

---
 srcpkgs/python-ldap3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap3/template b/srcpkgs/python-ldap3/template
index 0a9c1ebca03..39fcc264979 100644
--- a/srcpkgs/python-ldap3/template
+++ b/srcpkgs/python-ldap3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap3'
 pkgname=python-ldap3
 version=2.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ldap3-${version}"
 build_style=python-module

From 7832935d74a588215a405d48283b841e6e9f1f4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 283/871] python3-libevdev: rebuild for Python 3.8.

---
 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 0a79893726c..f0295cdee9b 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.8
-revision=1
+revision=2
 _githash=1827bebcf789adee8492cbfcc7cf8d56059a42a4
 wrksrc="python-libevdev-${version}-${_githash}"
 build_style=python3-module

From c6ff1cf85e9c2b85ac950634a82e50b8237c993d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 284/871] libsmbios: rebuild for Python 3.8.

---
 srcpkgs/libsmbios/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsmbios/template b/srcpkgs/libsmbios/template
index 31d8ffda65f..161cb79deb9 100644
--- a/srcpkgs/libsmbios/template
+++ b/srcpkgs/libsmbios/template
@@ -1,7 +1,7 @@
 # Template file for 'libsmbios'
 pkgname=libsmbios
 version=2.4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--sbindir=/usr/bin --disable-static"
 hostmakedepends="automake doxygen gettext-devel help2man libtool pkg-config"

From 5d413bf7a8ee106f594a89562466c397cb524275 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 285/871] python-libtmux: rebuild for Python 3.8.

---
 srcpkgs/python-libtmux/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-libtmux/template b/srcpkgs/python-libtmux/template
index 36fa7ca7ffd..20f43af5f7d 100644
--- a/srcpkgs/python-libtmux/template
+++ b/srcpkgs/python-libtmux/template
@@ -1,7 +1,7 @@
 # Template file for 'python-libtmux'
 pkgname=python-libtmux
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="libtmux-${version}"
 build_style=python-module

From bde34a8b323b0ada46928deb3688040a1b3a4c3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 286/871] python-llfuse: rebuild for Python 3.8.

---
 srcpkgs/python-llfuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-llfuse/template b/srcpkgs/python-llfuse/template
index 203c5e2fd84..b453c67e91d 100644
--- a/srcpkgs/python-llfuse/template
+++ b/srcpkgs/python-llfuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-llfuse'
 pkgname=python-llfuse
 version=1.3.6
-revision=1
+revision=2
 wrksrc="llfuse-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pkg-config"

From 1919fa0666ae821366dd42799b1dd83b5c8a9956 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 287/871] python-lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lockfile/template b/srcpkgs/python-lockfile/template
index 4c4612ed144..778cecba7e9 100644
--- a/srcpkgs/python-lockfile/template
+++ b/srcpkgs/python-lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lockfile'
 pkgname=python-lockfile
 version=0.12.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="lockfile-${version}"
 build_style=python-module

From fb39f2d8f155b5cd8b1be9629571016ab908ab28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 288/871] python-logfury: rebuild for Python 3.8.

---
 srcpkgs/python-logfury/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-logfury/template b/srcpkgs/python-logfury/template
index 4b1c435e34a..1b52d2d7fdf 100644
--- a/srcpkgs/python-logfury/template
+++ b/srcpkgs/python-logfury/template
@@ -1,7 +1,7 @@
 # Template file for 'python-logfury'
 pkgname=python-logfury
 version=0.1.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="logfury-${version}"
 build_style=python-module

From 72ed394f16cd15f9f54f40baf802130d8514dce5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 289/871] python-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lxml/template b/srcpkgs/python-lxml/template
index c3aeabfbf1b..1a6a3ac9113 100644
--- a/srcpkgs/python-lxml/template
+++ b/srcpkgs/python-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lxml'
 pkgname=python-lxml
 version=4.4.1
-revision=1
+revision=2
 wrksrc="lxml-lxml-${version}"
 build_style=python-module
 pycompile_module="lxml"

From 9d1e186fda335aee1599343393fbe6e5bd635db4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 290/871] python-lz4: rebuild for Python 3.8.

---
 srcpkgs/python-lz4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lz4/template b/srcpkgs/python-lz4/template
index dab8e8ed542..76a2e800e38 100644
--- a/srcpkgs/python-lz4/template
+++ b/srcpkgs/python-lz4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lz4'
 pkgname=python-lz4
 version=2.1.6
-revision=2
+revision=3
 wrksrc="lz4-${version}"
 build_style=python-module
 pycompile_module="lz4"

From 295a2457246d2d093a78703408a385f5d4a4be09 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 291/871] python3-macaroons: rebuild for Python 3.8.

---
 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 d44100c20f2..420f5aff043 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=1
+revision=2
 archs=noarch
 wrksrc="pymacaroons-${version}"
 build_style=python3-module

From c7f2f80b2a18be92e24dc48562d94dedffa1908d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 292/871] python3-macholib: rebuild for Python 3.8.

---
 srcpkgs/python3-macholib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-macholib/template b/srcpkgs/python3-macholib/template
index a2738f57eb0..525b5f7106b 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.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="macholib-${version}"
 build_style=python3-module

From 53d44ace786b5ed5fa274989dad03be377abfc6e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 293/871] python-magic: rebuild for Python 3.8.

---
 srcpkgs/python-magic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-magic/template b/srcpkgs/python-magic/template
index 98e3c0802ab..5a59efa4808 100644
--- a/srcpkgs/python-magic/template
+++ b/srcpkgs/python-magic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-magic'
 pkgname=python-magic
 version=0.4.15
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="magic.py"

From 73437d774f70a345d8b07c40594544cce5c06aef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 294/871] python-marisa-trie: rebuild for Python 3.8.

---
 srcpkgs/python-marisa-trie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-marisa-trie/template b/srcpkgs/python-marisa-trie/template
index bb09c933335..5e46b686ace 100644
--- a/srcpkgs/python-marisa-trie/template
+++ b/srcpkgs/python-marisa-trie/template
@@ -1,7 +1,7 @@
 # Template file for 'python-marisa-trie'
 pkgname=python-marisa-trie
 version=0.7.5
-revision=2
+revision=3
 wrksrc="marisa-trie-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From fa97a70b0fdc4b5bcf8b551347162f567caf790c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 295/871] python-markdown2: rebuild for Python 3.8.

---
 srcpkgs/python-markdown2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-markdown2/template b/srcpkgs/python-markdown2/template
index 2d352ba029d..e9068f64202 100644
--- a/srcpkgs/python-markdown2/template
+++ b/srcpkgs/python-markdown2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-markdown2'
 pkgname=python-markdown2
 version=2.3.8
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="markdown2"

From 2b899c908b4a71280bea6d6129dd98fd7c407ec2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 296/871] python3-matplotlib: rebuild for Python 3.8.

---
 srcpkgs/python3-matplotlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template
index 857ba17cacf..be02817a4d3 100644
--- a/srcpkgs/python3-matplotlib/template
+++ b/srcpkgs/python3-matplotlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-matplotlib'
 pkgname=python3-matplotlib
 version=3.1.1
-revision=1
+revision=2
 wrksrc="matplotlib-${version}"
 build_style=python3-module
 pycompile_module="matplotlib mpl_toolkits pylab.py"

From 760f7ff63e4ae9f0778a3641ad73ee5a5fcabb8b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 297/871] python-mccabe: rebuild for Python 3.8.

---
 srcpkgs/python-mccabe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mccabe/template b/srcpkgs/python-mccabe/template
index b6a01929540..1e2ed6328b8 100644
--- a/srcpkgs/python-mccabe/template
+++ b/srcpkgs/python-mccabe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mccabe'
 pkgname=python-mccabe
 version=0.6.1
-revision=2
+revision=3
 archs=noarch
 replaces="mccabe>=0"
 wrksrc="mccabe-${version}"

From 355bc5a7116c03bf68492d30caab4ea4adcd16f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 298/871] python-mechanize: rebuild for Python 3.8.

---
 srcpkgs/python-mechanize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mechanize/template b/srcpkgs/python-mechanize/template
index c5b2b5789a7..ca29bbd0d23 100644
--- a/srcpkgs/python-mechanize/template
+++ b/srcpkgs/python-mechanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mechanize'
 pkgname=python-mechanize
 version=0.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="mechanize-${version}"
 build_style=python-module

From 5805d2dc45ae7b8cb3145a017769f0f3206878ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 299/871] python3-minidb: rebuild for Python 3.8.

---
 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 50490794600..140964b7a8a 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.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="minidb-${version}"
 build_style=python3-module

From 172f42a02af7b0eca7daf4c6390627e19d025cc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 300/871] python-miniupnpc: rebuild for Python 3.8.

---
 srcpkgs/python-miniupnpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-miniupnpc/template b/srcpkgs/python-miniupnpc/template
index 500c217c78e..f7892bab073 100644
--- a/srcpkgs/python-miniupnpc/template
+++ b/srcpkgs/python-miniupnpc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-miniupnpc'
 pkgname=python-miniupnpc
 version=2.0.2
-revision=2
+revision=3
 wrksrc="${pkgname#python-}-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 48fbd14147042e2863f1aecda9143e21dd76d383 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 301/871] python-mistune: rebuild for Python 3.8.

---
 srcpkgs/python-mistune/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mistune/template b/srcpkgs/python-mistune/template
index 0ee8dfde5b1..ef5c054ba75 100644
--- a/srcpkgs/python-mistune/template
+++ b/srcpkgs/python-mistune/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mistune'
 pkgname=python-mistune
 version=0.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="mistune-${version}"
 build_style=python-module

From cb476d7b76ef5ffe227952993fdbf4180d0d975a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 302/871] python3-more-itertools: rebuild for Python 3.8.

---
 srcpkgs/python3-more-itertools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-more-itertools/template b/srcpkgs/python3-more-itertools/template
index b089992f84e..a765da98495 100644
--- a/srcpkgs/python3-more-itertools/template
+++ b/srcpkgs/python3-more-itertools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-more-itertools'
 pkgname=python3-more-itertools
 version=7.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python3-module

From 983f2600118779199e07f7a40eeec4c12c345adb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 303/871] python-mpd2: rebuild for Python 3.8.

---
 srcpkgs/python-mpd2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template
index 682d9a85f5e..0389f8c2a28 100644
--- a/srcpkgs/python-mpd2/template
+++ b/srcpkgs/python-mpd2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpd2'
 pkgname=python-mpd2
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mpd"

From bcb43ee3bbda21fb23ac513eadd0d35a3aecd338 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 304/871] python3-mpi4py: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-mpi4py/template | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/python3-mpi4py/template b/srcpkgs/python3-mpi4py/template
index 94a83b688f2..8f9e76867cc 100644
--- a/srcpkgs/python3-mpi4py/template
+++ b/srcpkgs/python3-mpi4py/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpi4py'
 pkgname=python3-mpi4py
 version=3.0.2
-revision=1
+revision=2
 wrksrc="mpi4py-${version}"
 build_style=python3-module
 pycompile_module="mpi4py"
@@ -15,6 +15,12 @@ homepage="https://bitbucket.org/mpi4py/mpi4py"
 distfiles="$PYPI_SITE/m/mpi4py/mpi4py-${version}.tar.gz"
 checksum=f8d629d1e3e3b7b89cb99d0e3bc5505e76cc42089829807950d5c56606ed48e0
 
+post_extract() {
+	# recythonize
+	rm src/mpi4py/include/mpi4py/mpi4py.MPI.h \
+		src/mpi4py/include/mpi4py/mpi4py.MPI_api.h \
+		src/mpi4py.MPI.c
+}
 post_install() {
 	vlicense LICENSE.rst
 }

From 4d54f35a47c535a9088965a39ee2baf56d7a99e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 305/871] python-mpmath: rebuild for Python 3.8.

---
 srcpkgs/python-mpmath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpmath/template b/srcpkgs/python-mpmath/template
index b0a38c01514..8fd4873dd62 100644
--- a/srcpkgs/python-mpmath/template
+++ b/srcpkgs/python-mpmath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpmath'
 pkgname=python-mpmath
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="mpmath-${version}"
 build_style=python-module

From 06cb4328697b604bb97a3279111cf532b3db8f37 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 306/871] python3-mpv: rebuild for Python 3.8.

---
 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 2780c02610b..1910a4d231d 100644
--- a/srcpkgs/python3-mpv/template
+++ b/srcpkgs/python3-mpv/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpv'
 pkgname=python3-mpv
 version=0.3.9
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-mpv-${version}"
 build_style=python3-module

From f0c791b50fda55ee14474d77464a464d9832f63a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 307/871] python-msgpack: rebuild for Python 3.8.

---
 srcpkgs/python-msgpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-msgpack/template b/srcpkgs/python-msgpack/template
index 34280f72c8c..81a1ae2c3fc 100644
--- a/srcpkgs/python-msgpack/template
+++ b/srcpkgs/python-msgpack/template
@@ -1,7 +1,7 @@
 # Template file for 'python-msgpack'
 pkgname=python-msgpack
 version=0.6.2
-revision=1
+revision=2
 wrksrc="msgpack-${version}"
 build_style=python-module
 pycompile_module="msgpack"

From 72565acf197f6fdfe7fab199f1f36cec88eea0f1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 308/871] python3-msoffcrypto-tool: rebuild for Python 3.8.

---
 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 5996d3bf355..d1b369fc773 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=4.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="msoffcrypto-tool-${version}"
 build_style=python3-module

From 2fac6cec677c83053ff56ebd6a3a0fe6ea268072 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 309/871] python-mtranslate: rebuild for Python 3.8.

---
 srcpkgs/python-mtranslate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mtranslate/template b/srcpkgs/python-mtranslate/template
index d56fa18f0f0..992c7b76fe9 100644
--- a/srcpkgs/python-mtranslate/template
+++ b/srcpkgs/python-mtranslate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mtranslate'
 pkgname=python-mtranslate
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="mtranslate-${version}"
 build_style=python-module

From 265f54812df835cbf7faad93fe8630ee42419595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 310/871] python3-multidict: rebuild for Python 3.8.

---
 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 82888db842f..62054db71f1 100644
--- a/srcpkgs/python3-multidict/template
+++ b/srcpkgs/python3-multidict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-multidict'
 pkgname=python3-multidict
 version=4.5.2
-revision=2
+revision=3
 wrksrc="multidict-${version}"
 build_style=python3-module
 pycompile_module="multidict"

From 7790f0903cd22d453d39e0d04fd784d4eae4e3a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 311/871] python3-munkres: rebuild for Python 3.8.

---
 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 15767afe3fe..d0d0a013e80 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python3-module

From 8da28cf02fd9b1f5f911abe8d2695163e49f6c90 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 312/871] python-musicbrainzngs: rebuild for Python 3.8.

---
 srcpkgs/python-musicbrainzngs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-musicbrainzngs/template b/srcpkgs/python-musicbrainzngs/template
index 588c25f7cd8..3d738f0c3c0 100644
--- a/srcpkgs/python-musicbrainzngs/template
+++ b/srcpkgs/python-musicbrainzngs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-musicbrainzngs'
 pkgname=python-musicbrainzngs
 version=0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="musicbrainzngs-${version}"
 build_style="python-module"

From 072b3abd0fbed5d5c77d8c8ac35eddda1bae6712 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 313/871] python3-musicpd: rebuild for Python 3.8.

---
 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 3328b2f4bbf..8c6ba2fb451 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=1
+revision=2
 archs=noarch
 wrksrc="python-musicpd-${version}"
 build_style=python3-module

From 5b0f4b88a9b8050f37cd4a4656a6e463d2e14f3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 314/871] mutagen: rebuild for Python 3.8.

---
 srcpkgs/mutagen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mutagen/template b/srcpkgs/mutagen/template
index cbf05ea8583..8b24cc82dc8 100644
--- a/srcpkgs/mutagen/template
+++ b/srcpkgs/mutagen/template
@@ -1,7 +1,7 @@
 # Template file for 'mutagen'
 pkgname=mutagen
 version=1.42.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mutagen"

From f69d4f1be712380e3b98b152c430f0c68165a2a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 315/871] python-mygpoclient: rebuild for Python 3.8.

---
 srcpkgs/python-mygpoclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mygpoclient/template b/srcpkgs/python-mygpoclient/template
index 3f85c72cc0c..ffad63a70a1 100644
--- a/srcpkgs/python-mygpoclient/template
+++ b/srcpkgs/python-mygpoclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mygpoclient'
 pkgname=python-mygpoclient
 version=1.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="mygpoclient-${version}"
 build_style=python-module

From 4d52606a9d18e6b621f22774622a25fd2e573169 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 316/871] python3-mypy: rebuild for Python 3.8.

---
 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 37ecd732c06..564c0a4d47c 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.730
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy-${version}"
 build_style=python3-module

From c512cf64fce7a5ec9dba7f0d0c854be87fb5a992 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 317/871] python3-mypy_extensions: rebuild for Python 3.8.

---
 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 2761924248e..25de48ea141 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy_extensions-${version}"
 build_style=python3-module

From 8b44cbada238015a5660737224feaac424f6abd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 318/871] python-mysqlclient: rebuild for Python 3.8.

---
 srcpkgs/python-mysqlclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mysqlclient/template b/srcpkgs/python-mysqlclient/template
index 43fed28d4f0..079666a6dab 100644
--- a/srcpkgs/python-mysqlclient/template
+++ b/srcpkgs/python-mysqlclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mysqlclient'
 pkgname=python-mysqlclient
 version=1.3.14
-revision=2
+revision=3
 wrksrc="mysqlclient-${version}"
 build_style=python-module
 pycompile_module="MySQLdb _mysql_exceptions.py"

From 58c8ce6a72d414a18bfaa27df674bf09d6b1abd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 319/871] python3-nacl: rebuild for Python 3.8.

---
 srcpkgs/python3-nacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-nacl/template b/srcpkgs/python3-nacl/template
index 5dd6a71ad6a..b59ea0196ac 100644
--- a/srcpkgs/python3-nacl/template
+++ b/srcpkgs/python3-nacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-nacl'
 pkgname=python3-nacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python3-module
 pycompile_module="nacl"

From af9c599ba7e38539cc4bae7315bc7d8085c09030 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 320/871] python-namedlist: rebuild for Python 3.8.

---
 srcpkgs/python-namedlist/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-namedlist/template b/srcpkgs/python-namedlist/template
index 4c6e6f1f3d5..75626b9f6d5 100644
--- a/srcpkgs/python-namedlist/template
+++ b/srcpkgs/python-namedlist/template
@@ -1,7 +1,7 @@
 # Template file for 'python-namedlist'
 pkgname=python-namedlist
 version=1.7
-revision=5
+revision=6
 archs=noarch
 wrksrc="namedlist-${version}"
 build_style=python-module

From adff1c6d9665df89dcc57c46acec3c167a23b392 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 321/871] python-natsort: rebuild for Python 3.8.

---
 srcpkgs/python-natsort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-natsort/template b/srcpkgs/python-natsort/template
index 754ac50c419..7101e297aad 100644
--- a/srcpkgs/python-natsort/template
+++ b/srcpkgs/python-natsort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-natsort'
 pkgname=python-natsort
 version=6.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="natsort-${version}"
 build_style=python-module

From 48a1a390f8ec4a2ad7e502d09ce11f5ff92d6f9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 322/871] python-nbxmpp: rebuild for Python 3.8.

---
 srcpkgs/python-nbxmpp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nbxmpp/template b/srcpkgs/python-nbxmpp/template
index 4952ee1e102..8c39a93bca7 100644
--- a/srcpkgs/python-nbxmpp/template
+++ b/srcpkgs/python-nbxmpp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nbxmpp'
 pkgname=python-nbxmpp
 version=0.6.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 60bdb332b620d8a8d1111c3079882e2e7f89cee7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 323/871] python-ndg_httpsclient: rebuild for Python 3.8.

---
 srcpkgs/python-ndg_httpsclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ndg_httpsclient/template b/srcpkgs/python-ndg_httpsclient/template
index 908d7137391..54b653f68a9 100644
--- a/srcpkgs/python-ndg_httpsclient/template
+++ b/srcpkgs/python-ndg_httpsclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ndg_httpsclient'
 pkgname=python-ndg_httpsclient
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ndg_httpsclient-${version}"
 build_style=python-module

From f7c8ef2577ae13d63176bc564aab66d1f485da0f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 324/871] python3-neovim: rebuild for Python 3.8.

---
 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 44068f17b66..2730cd1b92b 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.3.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="pynvim-${version}"
 build_style="python3-module"

From 9fd69f4e11879c4d97f028e5c0f8d929b9fd0737 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 325/871] python-netaddr: rebuild for Python 3.8.

---
 srcpkgs/python-netaddr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netaddr/template b/srcpkgs/python-netaddr/template
index 851095a3c7c..20cc1c93134 100644
--- a/srcpkgs/python-netaddr/template
+++ b/srcpkgs/python-netaddr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netaddr'
 pkgname=python-netaddr
 version=0.7.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="netaddr-${version}"
 build_style=python-module

From e8a03ff155fdf7518ceefa99224f8269024bef08 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 326/871] python-netifaces: rebuild for Python 3.8.

---
 srcpkgs/python-netifaces/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netifaces/template b/srcpkgs/python-netifaces/template
index b8d6e505879..760f657aaba 100644
--- a/srcpkgs/python-netifaces/template
+++ b/srcpkgs/python-netifaces/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netifaces'
 pkgname=python-netifaces
 version=0.10.9
-revision=1
+revision=2
 wrksrc="netifaces-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 397aa250304660262662649a6dacb154a56c134c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 327/871] python3-networkx: rebuild for Python 3.8.

---
 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 eae29038d94..84acd3e929c 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.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="networkx-${version}"
 build_style=python3-module

From 2125f806185c5e64b3d975f1ce9d32a60ef4da1c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 328/871] python-nose: rebuild for Python 3.8.

---
 srcpkgs/python-nose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose/template b/srcpkgs/python-nose/template
index c9fbe9d28d3..f2cd7fe5c3f 100644
--- a/srcpkgs/python-nose/template
+++ b/srcpkgs/python-nose/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose'
 pkgname=python-nose
 version=1.3.7
-revision=3
+revision=4
 archs=noarch
 wrksrc="nose-${version}"
 build_style=python-module

From 8bdbb355a38faac0ba8f2f85e4b44c09aa009dae Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 329/871] python-nose2: rebuild for Python 3.8.

---
 srcpkgs/python-nose2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose2/template b/srcpkgs/python-nose2/template
index a9ddf5969a1..058abbd4253 100644
--- a/srcpkgs/python-nose2/template
+++ b/srcpkgs/python-nose2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose2'
 pkgname=python-nose2
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From e5ca77e5a7bb7fb916160feaa8cd4bcbe9b965d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 330/871] python-npyscreen: rebuild for Python 3.8.

---
 srcpkgs/python-npyscreen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-npyscreen/template b/srcpkgs/python-npyscreen/template
index 0457fa1aaed..2223850f22e 100644
--- a/srcpkgs/python-npyscreen/template
+++ b/srcpkgs/python-npyscreen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-npyscreen'
 pkgname=python-npyscreen
 version=4.10.5.1
-revision=1
+revision=2
 wrksrc="npyscreen-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 3375c3504ac19e24102ce48b44181c3fc5f979d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 331/871] python-ntplib: rebuild for Python 3.8.

---
 srcpkgs/python-ntplib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ntplib/template b/srcpkgs/python-ntplib/template
index 81bac24971e..0582fb326c1 100644
--- a/srcpkgs/python-ntplib/template
+++ b/srcpkgs/python-ntplib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ntplib'
 pkgname=python-ntplib
 version=0.3.3
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 wrksrc="ntplib-${version}"

From e5291f2d745f7a7c98893d207a0494a1ece71bcf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 332/871] python-numexpr: rebuild for Python 3.8.

---
 srcpkgs/python-numexpr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numexpr/template b/srcpkgs/python-numexpr/template
index 1db40092411..baf91175a33 100644
--- a/srcpkgs/python-numexpr/template
+++ b/srcpkgs/python-numexpr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numexpr'
 pkgname=python-numexpr
 version=2.7.0
-revision=1
+revision=2
 wrksrc="numexpr-${version}"
 build_style=python-module
 pycompile_module="numexpr"

From c77632bf6ff451ae1f30d84f6c2ac6702897dbd7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 333/871] python3-numpy: rebuild for Python 3.8.

---
 srcpkgs/python3-numpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-numpy/template b/srcpkgs/python3-numpy/template
index cdff44fd662..d3535c49a76 100644
--- a/srcpkgs/python3-numpy/template
+++ b/srcpkgs/python3-numpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-numpy'
 pkgname=python3-numpy
 version=1.17.3
-revision=2
+revision=3
 wrksrc="numpy-${version}"
 build_style=python3-module
 pycompile_module="numpy"

From ccb19e639b5ee0ef8a94c46ee370c8eec6d2963d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 334/871] python-numpy-stl: rebuild for Python 3.8.

---
 srcpkgs/python-numpy-stl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numpy-stl/template b/srcpkgs/python-numpy-stl/template
index 3eed838e4f6..cce1a8ead1f 100644
--- a/srcpkgs/python-numpy-stl/template
+++ b/srcpkgs/python-numpy-stl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numpy-stl'
 pkgname=python-numpy-stl
 version=2.10.1
-revision=1
+revision=2
 wrksrc="numpy-stl-v${version}"
 build_style=python-module
 pycompile_module="stl"

From 89bd20c770a0917b9a51e8da57ee787b1555686c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 335/871] python-oauth2client: rebuild for Python 3.8.

---
 srcpkgs/python-oauth2client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauth2client/template b/srcpkgs/python-oauth2client/template
index fd135e4e98f..2398adba276 100644
--- a/srcpkgs/python-oauth2client/template
+++ b/srcpkgs/python-oauth2client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauth2client'
 pkgname=python-oauth2client
 version=4.1.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 48b9bfb696e61ccc38e43d583d477a221a34e231 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 336/871] python-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauthlib/template b/srcpkgs/python-oauthlib/template
index 5bbaa7df29b..036f1b31c92 100644
--- a/srcpkgs/python-oauthlib/template
+++ b/srcpkgs/python-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauthlib'
 pkgname=python-oauthlib
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5cf792ccb8add72d02174a4edc1318727c890a0c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 337/871] python-olefile: rebuild for Python 3.8.

---
 srcpkgs/python-olefile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-olefile/template b/srcpkgs/python-olefile/template
index 4346cfcf667..803d7b67cd8 100644
--- a/srcpkgs/python-olefile/template
+++ b/srcpkgs/python-olefile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-olefile'
 pkgname=python-olefile
 version=0.46
-revision=1
+revision=2
 archs=noarch
 wrksrc="olefile-${version}"
 build_style=python-module

From 59307221ec5cd6933bcde62b83e77724a6201fa3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 338/871] python3-oletools: rebuild for Python 3.8.

---
 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 af9a91ff273..a4fda46427b 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.54.2b
-revision=1
+revision=2
 archs=noarch
 wrksrc="oletools-${version}"
 build_style=python3-module

From 232c2d1ccd272dbdbce327c1b2e0007475cce685 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 339/871] openrazer-meta: rebuild for Python 3.8.

---
 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 d4bd24878b2..112cb9e900b 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=1
+revision=2
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From c20c3b431b2a9285b18ac6ae19ed4ace04011372 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 340/871] python-openssl: rebuild for Python 3.8.

---
 srcpkgs/python-openssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-openssl/template b/srcpkgs/python-openssl/template
index 94bccaa166f..8aabda074fa 100644
--- a/srcpkgs/python-openssl/template
+++ b/srcpkgs/python-openssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-openssl'
 pkgname=python-openssl
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyOpenSSL-${version}"
 build_style=python-module

From 3e6fdf64577c0092e3756f6abd1ea14cf81b2a77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 341/871] python3-orocos-kdl: rebuild for Python 3.8.

---
 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 df3e27d5e7b..85b573b2fa4 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=1
+revision=2
 wrksrc=orocos_kinematics_dynamics-${version}
 build_wrksrc=python_orocos_kdl
 build_style=cmake

From 82fcf5e285ebf91edf85adfa9977715d4fd60760 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 342/871] python3-owm: rebuild for Python 3.8.

---
 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 d51e01831e6..acdb960ab45 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=1
+revision=2
 wrksrc="pyowm-${version}"
 build_style=python3-module
 pycompile_module="pyowm"

From 292c02b6fa7ecfe282f75f996d66a2d132af75ae Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 343/871] python-packaging: rebuild for Python 3.8.

---
 srcpkgs/python-packaging/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-packaging/template b/srcpkgs/python-packaging/template
index 505631bb29c..06042d12b90 100644
--- a/srcpkgs/python-packaging/template
+++ b/srcpkgs/python-packaging/template
@@ -1,7 +1,7 @@
 # Template file for 'python-packaging'
 pkgname=python-packaging
 version=19.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="packaging-${version}"
 build_style=python-module

From 350d95bd0171d2c71e26710b7d355f15b0ce7f44 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 344/871] python-pam: rebuild for Python 3.8.

---
 srcpkgs/python-pam/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pam/template b/srcpkgs/python-pam/template
index e696a05ae7f..28c22cfd6ea 100644
--- a/srcpkgs/python-pam/template
+++ b/srcpkgs/python-pam/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pam'
 pkgname=python-pam
 version=1.8.4
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="pam.py"

From e0a7e18c35f2dcd7d46ea413ba6656709fbea5eb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 345/871] python3-pandas: rebuild for Python 3.8.

---
 srcpkgs/python3-pandas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pandas/template b/srcpkgs/python3-pandas/template
index ad282b4d5d4..10f9d5a77d9 100644
--- a/srcpkgs/python3-pandas/template
+++ b/srcpkgs/python3-pandas/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pandas'
 pkgname=python3-pandas
 version=0.25.1
-revision=1
+revision=2
 wrksrc="pandas-${version}"
 build_style=python3-module
 pycompile_module="pandas"

From 178000b2a2f214fbdf9223d7cb39e47974495471 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 346/871] python-pandocfilters: rebuild for Python 3.8.

---
 srcpkgs/python-pandocfilters/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pandocfilters/template b/srcpkgs/python-pandocfilters/template
index a7a3d442052..8650d20256f 100644
--- a/srcpkgs/python-pandocfilters/template
+++ b/srcpkgs/python-pandocfilters/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pandocfilters'
 pkgname=python-pandocfilters
 version=1.4.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="pandocfilters-${version}"
 build_style=python-module

From 6acb94df3cde9b6fdae3f74f084f245dd8829c6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 347/871] python-paramiko: rebuild for Python 3.8.

---
 srcpkgs/python-paramiko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-paramiko/template b/srcpkgs/python-paramiko/template
index c512ceb951f..d6f75508a03 100644
--- a/srcpkgs/python-paramiko/template
+++ b/srcpkgs/python-paramiko/template
@@ -1,7 +1,7 @@
 # Template file for 'python-paramiko'
 pkgname=python-paramiko
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 0d78b350cec06298e4b9bb3b252567325d3dcc2a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 348/871] python-parse: rebuild for Python 3.8.

---
 srcpkgs/python-parse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parse/template b/srcpkgs/python-parse/template
index 298d0b65e78..ded581b4420 100644
--- a/srcpkgs/python-parse/template
+++ b/srcpkgs/python-parse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parse'
 pkgname=python-parse
 version=1.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="parse-${version}"
 build_style=python-module

From 9ab1cee465e8097b17fb2cfd0ddc4825bd0421ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 349/871] python3-parsedatetime: rebuild for Python 3.8.

---
 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 d3ac21d7d34..34e9ba0f416 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="parsedatetime-${version}"
 build_style=python3-module

From 753739f8e93c7009786dfc7af942ff3e53889b07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 350/871] python-parsing: rebuild for Python 3.8.

---
 srcpkgs/python-parsing/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parsing/template b/srcpkgs/python-parsing/template
index 0cc744eaf79..bd6cf2c2238 100644
--- a/srcpkgs/python-parsing/template
+++ b/srcpkgs/python-parsing/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parsing'
 pkgname=python-parsing
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyparsing-pyparsing_${version}"
 build_style=python-module

From 26a5d90e2b44408a5ca0b7621a6adee89f62be16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 351/871] python-parso: rebuild for Python 3.8.

---
 srcpkgs/python-parso/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parso/template b/srcpkgs/python-parso/template
index 20e5fe306c0..1959b42622a 100644
--- a/srcpkgs/python-parso/template
+++ b/srcpkgs/python-parso/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parso'
 pkgname=python-parso
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="parso-${version}"
 build_style=python-module

From f5c74689a57d418c1ec4396f7f07ad4d7059e12f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 352/871] python-passlib: rebuild for Python 3.8.

---
 srcpkgs/python-passlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-passlib/template b/srcpkgs/python-passlib/template
index 3af12ce7b1b..f46a3e92642 100644
--- a/srcpkgs/python-passlib/template
+++ b/srcpkgs/python-passlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-passlib'
 pkgname=python-passlib
 version=1.7.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="passlib-${version}"
 build_style=python-module

From 42d19a79312e102b861c23fcbfc1611a06ca71cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 353/871] python-pathlib2: rebuild for Python 3.8.

---
 srcpkgs/python-pathlib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathlib2/template b/srcpkgs/python-pathlib2/template
index bb7bec778f5..fa600b78fbe 100644
--- a/srcpkgs/python-pathlib2/template
+++ b/srcpkgs/python-pathlib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathlib2'
 pkgname=python-pathlib2
 version=2.3.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pathlib2-${version}"
 build_style=python-module

From e30c3b0dc0ce15222b460f33e6bcb0d91d2359f8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 354/871] python-pathspec: rebuild for Python 3.8.

---
 srcpkgs/python-pathspec/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathspec/template b/srcpkgs/python-pathspec/template
index 7c5fe04097a..2fa8fa1a811 100644
--- a/srcpkgs/python-pathspec/template
+++ b/srcpkgs/python-pathspec/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathspec'
 pkgname=python-pathspec
 version=0.5.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathspec-${version}"
 build_style=python-module

From bcc0f159a563fd121998b35816496cce8a092f8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 355/871] python-pathtools: rebuild for Python 3.8.

---
 srcpkgs/python-pathtools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathtools/template b/srcpkgs/python-pathtools/template
index 218e6ed2f57..47dc6ef6a71 100644
--- a/srcpkgs/python-pathtools/template
+++ b/srcpkgs/python-pathtools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathtools'
 pkgname=python-pathtools
 version=0.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathtools-${version}"
 build_style=python-module

From 3e31be7dd1ddcd26daa8cb1554161d0d83fa4d9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 356/871] python-pbkdf2: rebuild for Python 3.8.

---
 srcpkgs/python-pbkdf2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pbkdf2/template b/srcpkgs/python-pbkdf2/template
index edc50f824c2..956d0b4cad9 100644
--- a/srcpkgs/python-pbkdf2/template
+++ b/srcpkgs/python-pbkdf2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pbkdf2'
 pkgname=python-pbkdf2
 version=1.3
-revision=3
+revision=4
 archs=noarch
 wrksrc="pbkdf2-${version}"
 build_style=python-module

From 60130471b57bb17788990f786666ade4f6083490 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 357/871] python-pbr: rebuild for Python 3.8.

---
 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 7ab0b39539f..9c7216056fe 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.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pbr-${version}"
 build_style=python-module

From 53df8b6f4f10ed4c3b00b4b6c9a58e56b7c2b770 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 358/871] python3-pcodedmp: rebuild for Python 3.8.

---
 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 efe8cc83ee7..eb52c809fae 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=1
+revision=2
 archs=noarch
 wrksrc="pcodedmp-${version}"
 build_style=python3-module

From f49b9d771bb74d06baeb33764129d4ced701e377 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 359/871] python-pdfrw: rebuild for Python 3.8.

---
 srcpkgs/python-pdfrw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pdfrw/template b/srcpkgs/python-pdfrw/template
index ddb43b928fc..ef7db98e491 100644
--- a/srcpkgs/python-pdfrw/template
+++ b/srcpkgs/python-pdfrw/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pdfrw'
 pkgname=python-pdfrw
 version=0.4
-revision=2
+revision=3
 archs=noarch
 replaces="python-pdfrw-example<${version}_${revision}"
 wrksrc="${pkgname/python-//}-${version}"

From 88593d8ad4d0a469ecb96935fae8da96c94f953d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 360/871] python-peewee: rebuild for Python 3.8.

---
 srcpkgs/python-peewee/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-peewee/template b/srcpkgs/python-peewee/template
index 9b07ed413b9..de0068a330e 100644
--- a/srcpkgs/python-peewee/template
+++ b/srcpkgs/python-peewee/template
@@ -1,7 +1,7 @@
 # Template file for 'python-peewee'
 pkgname=python-peewee
 version=3.11.2
-revision=1
+revision=2
 wrksrc="peewee-${version}"
 build_style=python-module
 pycompile_module="playhouse peewee.py pwiz.py"

From ab1d4bb2fccaf43f6d14c4cf8e241293286085bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 361/871] python3-pefile: rebuild for Python 3.8.

---
 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 305d64e0758..8791f06640b 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=1
+revision=2
 archs=noarch
 wrksrc="pefile-${version}"
 build_style=python3-module

From e1c0ed99166f35a8cfc16d020a277e5be41e23ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 362/871] python3-pem: rebuild for Python 3.8.

---
 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 3517c80b66a..15417666597 100644
--- a/srcpkgs/python3-pem/template
+++ b/srcpkgs/python3-pem/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pem'
 pkgname=python3-pem
 version=19.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pem-${version}"
 build_style=python3-module

From ff6236e3c0d98c1bcd7c5a5db01e18600a043121 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 363/871] python-pex: rebuild for Python 3.8.

---
 srcpkgs/python-pex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pex/template b/srcpkgs/python-pex/template
index f3ed4d96e41..9ae4c9fa7f1 100644
--- a/srcpkgs/python-pex/template
+++ b/srcpkgs/python-pex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pex'
 pkgname=python-pex
 version=1.6.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="pex-${version}"
 build_style=python-module

From 8b0fe473d51dbe54ecfd4626a5e81433d936a6e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 364/871] python-pexpect: rebuild for Python 3.8.

---
 srcpkgs/python-pexpect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pexpect/template b/srcpkgs/python-pexpect/template
index 8d03a1945f3..03102c3d294 100644
--- a/srcpkgs/python-pexpect/template
+++ b/srcpkgs/python-pexpect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pexpect'
 pkgname=python-pexpect
 version=4.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pexpect-${version}"
 build_style=python-module

From 7c06b8718f7ec29cdc71016e4ef4152915d75c32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 365/871] python-pgmigrate: rebuild for Python 3.8.

---
 srcpkgs/python-pgmigrate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgmigrate/template b/srcpkgs/python-pgmigrate/template
index b441ba2a89f..767b6cf8921 100644
--- a/srcpkgs/python-pgmigrate/template
+++ b/srcpkgs/python-pgmigrate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgmigrate'
 pkgname=python-pgmigrate
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgmigrate-${version}"
 build_style=python-module

From c91d53c986c68042065827175cc0672ea71bf7f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 366/871] python-pgpdump: rebuild for Python 3.8.

---
 srcpkgs/python-pgpdump/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgpdump/template b/srcpkgs/python-pgpdump/template
index 58be9116feb..a28b6e209e7 100644
--- a/srcpkgs/python-pgpdump/template
+++ b/srcpkgs/python-pgpdump/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgpdump'
 pkgname=python-pgpdump
 version=1.5
-revision=5
+revision=6
 archs=noarch
 build_style=python-module
 pycompile_module="pgpdump"

From c7fb55eeff25f2ec133ad52c5b90c770038a9361 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 367/871] python3-pgspecial: rebuild for Python 3.8.

---
 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 dc52d12c214..c4f67a707f1 100644
--- a/srcpkgs/python3-pgspecial/template
+++ b/srcpkgs/python3-pgspecial/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pgspecial'
 pkgname=python3-pgspecial
 version=1.11.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgspecial-${version}"
 build_style=python3-module

From a7cee7ba3648cdb09b6a5518228abccdaa8917a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 368/871] python3-pgzero: rebuild for Python 3.8.

---
 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 9653505acda..8b8f477112d 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgzero-${version}"
 build_style=python3-module

From c8e0b2590874b31d868db671336d55b182bd10b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 369/871] python3-phonenumbers: rebuild for Python 3.8.

---
 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 ebf33f226e4..7b4e889fd8d 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.10.20
-revision=1
+revision=2
 archs=noarch
 wrksrc="phonenumbers-${version}"
 build_style=python3-module

From 1c0bb66b3f08b0f0a88c855453c0e06508e079c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 370/871] python-picamera: rebuild for Python 3.8.

---
 srcpkgs/python-picamera/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-picamera/template b/srcpkgs/python-picamera/template
index 92bc2a57a6d..e3c9a17bfdc 100644
--- a/srcpkgs/python-picamera/template
+++ b/srcpkgs/python-picamera/template
@@ -1,7 +1,7 @@
 # Template file for 'python-picamera'
 pkgname=python-picamera
 version=1.13
-revision=1
+revision=2
 archs=noarch
 wrksrc="picamera-${version}"
 build_style=python-module

From 41832da1d9e7136176baf6abbe731d35526d3b5c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 371/871] python-pickleshare: rebuild for Python 3.8.

---
 srcpkgs/python-pickleshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pickleshare/template b/srcpkgs/python-pickleshare/template
index 2485c95230a..c1d86826c15 100644
--- a/srcpkgs/python-pickleshare/template
+++ b/srcpkgs/python-pickleshare/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pickleshare'
 pkgname=python-pickleshare
 version=0.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pickleshare-${version}"
 build_style=python-module

From c9aecad242a7fff1a4d5592fbd279da0e0a4aba6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 372/871] python3-pillow-simd: rebuild for Python 3.8.

---
 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 7bab9fb20c3..4c756b07c79 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=5.3.0.post1
-revision=1
+revision=2
 archs="x86_64*"
 wrksrc="pillow-simd-${version}"
 build_style=python3-module

From ca24ad41a062a86f1dd0b8012ac60c3f909e326e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 373/871] python-pip: rebuild for Python 3.8.

---
 srcpkgs/python-pip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pip/template b/srcpkgs/python-pip/template
index 75f11561816..9d4607095c7 100644
--- a/srcpkgs/python-pip/template
+++ b/srcpkgs/python-pip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pip'
 pkgname=python-pip
 version=19.2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pip-${version}"
 build_style=python-module

From 6bfaa044bc464d507bcc59bba55351bf4188b9d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 374/871] python-pipenv: rebuild for Python 3.8.

---
 srcpkgs/python-pipenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pipenv/template b/srcpkgs/python-pipenv/template
index e7ce3922875..210a0813673 100644
--- a/srcpkgs/python-pipenv/template
+++ b/srcpkgs/python-pipenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pipenv'
 pkgname=python-pipenv
 version=2018.11.26
-revision=3
+revision=4
 archs=noarch
 wrksrc="pipenv-${version}"
 build_style=python-module

From 4ea97811936a3e0a05daf0bf8351516c246af12b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 375/871] python-pkgconfig: rebuild for Python 3.8.

---
 srcpkgs/python-pkgconfig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pkgconfig/template b/srcpkgs/python-pkgconfig/template
index 13e1dcd3bf7..e9e5480907d 100644
--- a/srcpkgs/python-pkgconfig/template
+++ b/srcpkgs/python-pkgconfig/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pkgconfig'
 pkgname=python-pkgconfig
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pkgconfig-${version}"
 build_style=python-module

From 468ca40032b2791fd44dcbccf8a754c8a4fdb535 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 376/871] python-plotly: rebuild for Python 3.8.

---
 srcpkgs/python-plotly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-plotly/template b/srcpkgs/python-plotly/template
index fbbb3a3a520..1593b108f7a 100644
--- a/srcpkgs/python-plotly/template
+++ b/srcpkgs/python-plotly/template
@@ -1,7 +1,7 @@
 # Template file for 'python-plotly'
 pkgname=python-plotly
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 #wrksrc="${pkgname#*-}-${version}"
 wrksrc="plotly.py-${version}"

From 5b7a1016b0c4e476f7b9128c9877d50ed0c2fa64 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 377/871] python3-pluggy: rebuild for Python 3.8.

---
 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 37ebc2dae40..6f97cb25f21 100644
--- a/srcpkgs/python3-pluggy/template
+++ b/srcpkgs/python3-pluggy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pluggy'
 pkgname=python3-pluggy
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python3-module

From c9cb5c50387c42e876bd70334930eb17201b483f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 378/871] python-ply: rebuild for Python 3.8.

---
 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 034fbcfa531..04a3defa6aa 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=1
+revision=2
 archs=noarch
 wrksrc="ply-${version}"
 build_style=python-module

From 62ee78df1ebed8f4678abc20bcbcbe6d4b0ef26e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 379/871] python3-pmw: rebuild for Python 3.8.

---
 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 646e7129443..289b5ef1d0d 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=1
+revision=2
 archs=noarch
 short_desc="Python 3 Tkinter widget toolkit"
 homepage="http://pmw.sourceforge.net/"

From 6df35f3e68b3343e3e9a3d3e2af8d3204b2386d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 380/871] python-podcastparser: rebuild for Python 3.8.

---
 srcpkgs/python-podcastparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-podcastparser/template b/srcpkgs/python-podcastparser/template
index e4847d3ed65..61702f0d28b 100644
--- a/srcpkgs/python-podcastparser/template
+++ b/srcpkgs/python-podcastparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-podcastparser'
 pkgname=python-podcastparser
 version=0.6.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="podcastparser-${version}"
 build_style=python-module

From 64fecbf47b6ce2ef39a35352003fd179983486b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 381/871] python-polib: rebuild for Python 3.8.

---
 srcpkgs/python-polib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-polib/template b/srcpkgs/python-polib/template
index b0ade05d90d..8b8d4b66c68 100644
--- a/srcpkgs/python-polib/template
+++ b/srcpkgs/python-polib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-polib'
 pkgname=python-polib
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="polib-${version}"
 build_style=python-module

From 863780c62bfd229b9d3cf4248977e0c57882bc2e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 382/871] python-portend: rebuild for Python 3.8.

---
 srcpkgs/python-portend/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python-portend/template b/srcpkgs/python-portend/template
index 216ae413d09..0538f68083f 100644
--- a/srcpkgs/python-portend/template
+++ b/srcpkgs/python-portend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-portend'
 pkgname=python-portend
 version=2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="portend-${version}"
 build_style=python-module
@@ -14,7 +14,7 @@ license="MIT"
 homepage="https://github.com/jaraco/portend"
 changelog="https://github.com/jaraco/portend/blob/master/CHANGES.rst"
 distfiles="https://github.com/jaraco/portend/archive/${version}.tar.gz"
-checksum=61aa1a8fd76d64bd6093e4151a2bfeda177d5083bf2e2bcc92a053bd2104fde3
+checksum=c0740375a19168e117d291e7ed307e985d2c0e2dc732ca97444bc58a28076dfa
 
 pre_build() {
 	sed -i setup.py \

From 0ea6b192d9789ca26e8b2d564e9becc8fec9a9ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 383/871] python-prctl: rebuild for Python 3.8.

---
 srcpkgs/python-prctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prctl/template b/srcpkgs/python-prctl/template
index 2b420d655cf..e8bf54b98fd 100644
--- a/srcpkgs/python-prctl/template
+++ b/srcpkgs/python-prctl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prctl'
 pkgname=python-prctl
 version=1.7
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="prctl.py"
 hostmakedepends="python-setuptools python3-setuptools libcap-devel"

From e8b8e78522532aeb2be830ae5fa8e899aae8e27e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 384/871] python3-precis-i18n: rebuild for Python 3.8.

---
 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 19612bc818b..be7bb0b0b56 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=1
+revision=2
 archs=noarch
 wrksrc="precis_i18n-${version}"
 build_style=python3-module

From c5d882fecf2448bdcd3ef2de0fef6306b9e370d0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 385/871] python-pretend: rebuild for Python 3.8.

---
 srcpkgs/python-pretend/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pretend/template b/srcpkgs/python-pretend/template
index 9a647271b57..6d8063fc43a 100644
--- a/srcpkgs/python-pretend/template
+++ b/srcpkgs/python-pretend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pretend'
 pkgname=python-pretend
 version=1.0.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pretend-${version}"
 build_style=python-module

From c39323eaa6cc94f3ab24690a0db0336cc02a3ae1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 386/871] python-progress: rebuild for Python 3.8.

---
 srcpkgs/python-progress/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-progress/template b/srcpkgs/python-progress/template
index 7d3924e3618..0d6bd1db69d 100644
--- a/srcpkgs/python-progress/template
+++ b/srcpkgs/python-progress/template
@@ -1,7 +1,7 @@
 # Template file for 'python-progress'
 pkgname=python-progress
 version=1.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="progress-${version}"
 build_style=python-module

From 16e189c9b84513ddca92db1755f153c4a095aeb1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 387/871] python-prometheus_client: rebuild for Python 3.8.

---
 srcpkgs/python-prometheus_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prometheus_client/template b/srcpkgs/python-prometheus_client/template
index 46df561f7d4..7b71fbeffc2 100644
--- a/srcpkgs/python-prometheus_client/template
+++ b/srcpkgs/python-prometheus_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prometheus_client'
 pkgname=python-prometheus_client
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="prometheus_client-${version}"
 build_style=python-module

From 121a9ff0cde788917d12dabc15e719afd970cff9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 388/871] python-prompt_toolkit1: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit1/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit1/template b/srcpkgs/python-prompt_toolkit1/template
index d117d620ba5..7afe6179f33 100644
--- a/srcpkgs/python-prompt_toolkit1/template
+++ b/srcpkgs/python-prompt_toolkit1/template
@@ -2,7 +2,7 @@
 pkgname=python-prompt_toolkit1
 reverts="2.0.9_1"
 version=1.0.15
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From 57c7271a48a8bbbe98b24543dcd893c633048ac9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 389/871] python-prompt_toolkit2: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit2/template b/srcpkgs/python-prompt_toolkit2/template
index 0fa71fa06dc..d7f2fd11e14 100644
--- a/srcpkgs/python-prompt_toolkit2/template
+++ b/srcpkgs/python-prompt_toolkit2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prompt_toolkit2'
 pkgname=python-prompt_toolkit2
 version=2.0.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From ea3a5bd036a6d0c005b2b52f979863bf5b45eb9d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 390/871] python-proselint: rebuild for Python 3.8.

---
 srcpkgs/python-proselint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-proselint/template b/srcpkgs/python-proselint/template
index c017c497386..b1da90de474 100644
--- a/srcpkgs/python-proselint/template
+++ b/srcpkgs/python-proselint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-proselint'
 pkgname=python-proselint
 version=0.10.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="proselint-${version}"
 build_style=python-module

From 9fc5d3fbcee5bce54111fff98320f1102572c7b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 391/871] python-protobuf: rebuild for Python 3.8.

---
 srcpkgs/python-protobuf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-protobuf/template b/srcpkgs/python-protobuf/template
index 4b736f1e7af..7dbed97fb76 100644
--- a/srcpkgs/python-protobuf/template
+++ b/srcpkgs/python-protobuf/template
@@ -1,7 +1,7 @@
 # Template file for 'python-protobuf'
 pkgname=python-protobuf
 version=3.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="protobuf-${version}"
 build_style=python-module

From bf1996a7d8603440166d2c45d9f3015ae13a8294 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 392/871] python-psutil: rebuild for Python 3.8.

---
 srcpkgs/python-psutil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psutil/template b/srcpkgs/python-psutil/template
index 96cbb3c399f..11353ed2179 100644
--- a/srcpkgs/python-psutil/template
+++ b/srcpkgs/python-psutil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psutil'
 pkgname=python-psutil
 version=5.6.3
-revision=1
+revision=2
 wrksrc="psutil-${version}"
 build_style=python-module
 pycompile_module="psutil"

From d499d446513255e2f8485620fb21bd0cbefbacf8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 393/871] python-psycopg2: rebuild for Python 3.8.

---
 srcpkgs/python-psycopg2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psycopg2/template b/srcpkgs/python-psycopg2/template
index f41de2880e6..14b28b8aed1 100644
--- a/srcpkgs/python-psycopg2/template
+++ b/srcpkgs/python-psycopg2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psycopg2'
 pkgname=python-psycopg2
 version=2.8.3
-revision=1
+revision=2
 wrksrc="psycopg2-${version}"
 build_style=python-module
 pycompile_module="psycopg2"

From e500b7da4593689ab2d22e06b03c40a355826cdc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 394/871] python-ptyprocess: rebuild for Python 3.8.

---
 srcpkgs/python-ptyprocess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ptyprocess/template b/srcpkgs/python-ptyprocess/template
index 04c4cf89391..fd2e51fa3ac 100644
--- a/srcpkgs/python-ptyprocess/template
+++ b/srcpkgs/python-ptyprocess/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ptyprocess'
 pkgname=python-ptyprocess
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ptyprocess-${version}"
 build_style=python-module

From d6b1c925c8312f786aec211c12ea50c29279fdcb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 395/871] python3-pulsectl: rebuild for Python 3.8.

---
 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 429dd1abe45..045afdb411b 100644
--- a/srcpkgs/python3-pulsectl/template
+++ b/srcpkgs/python3-pulsectl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pulsectl'
 pkgname=python3-pulsectl
 version=19.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pulsectl-${version}"
 build_style=python3-module

From 2cd5f20c3919f4c80193bda5bc56f1b986396ba6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 396/871] python-py: rebuild for Python 3.8.

---
 srcpkgs/python-py/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-py/template b/srcpkgs/python-py/template
index 99644bc228a..07a1ae2a21b 100644
--- a/srcpkgs/python-py/template
+++ b/srcpkgs/python-py/template
@@ -1,7 +1,7 @@
 # Template file for 'python-py'
 pkgname=python-py
 version=1.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="py-${version}"
 build_style=python-module

From b756caeb1658dcaa033902bf8696b80ec2bfd3f4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 397/871] python-pyPEG2: rebuild for Python 3.8.

---
 srcpkgs/python-pyPEG2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyPEG2/template b/srcpkgs/python-pyPEG2/template
index 113948af730..6ba175687f1 100644
--- a/srcpkgs/python-pyPEG2/template
+++ b/srcpkgs/python-pyPEG2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyPEG2'
 pkgname=python-pyPEG2
 version=2.15.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 163b038a01c1779b4e44a7ae1b8a9b30eb3da238 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 398/871] python-pyacoustid: rebuild for Python 3.8.

---
 srcpkgs/python-pyacoustid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyacoustid/template b/srcpkgs/python-pyacoustid/template
index 068d3d52649..d5b2d967f4e 100644
--- a/srcpkgs/python-pyacoustid/template
+++ b/srcpkgs/python-pyacoustid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyacoustid'
 pkgname=python-pyacoustid
 version=1.1.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyacoustid-${version}"
 build_style=python-module

From c9ff68281f3e1ece7753ece08d700abc93c6ec70 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 399/871] python-pyaes: rebuild for Python 3.8.

---
 srcpkgs/python-pyaes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyaes/template b/srcpkgs/python-pyaes/template
index a8c812a9e01..d31766d0481 100644
--- a/srcpkgs/python-pyaes/template
+++ b/srcpkgs/python-pyaes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyaes'
 pkgname=python-pyaes
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyaes-${version}"
 build_style=python-module

From 78f3ab6bcfb9a2bdb5ba4dc016984affc4dc35ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 400/871] python-pyasn1: rebuild for Python 3.8.

---
 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 510dfa09816..fcddad43633 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyasn1-${version}"
 build_style=python-module

From ec26f280972bacb1bdfc5456f4048d0edaf69365 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 401/871] python-pyasn1-modules: rebuild for Python 3.8.

---
 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 bc19e4940ed..b142819a272 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From f1d3fc36c465cbfdcabc505dd00695577a3af314 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 402/871] python3-pycares: rebuild for Python 3.8.

---
 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 c52702904b4..ed82808bada 100644
--- a/srcpkgs/python3-pycares/template
+++ b/srcpkgs/python3-pycares/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pycares'
 pkgname=python3-pycares
 version=2.3.0
-revision=2
+revision=3
 wrksrc="pycares-${version}"
 build_style=python3-module
 pycompile_module="pycares"

From 66fcfa3978b5be8bb3f9f052a904f40668fa0919 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 403/871] python-pycodestyle: rebuild for Python 3.8.

---
 srcpkgs/python-pycodestyle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycodestyle/template b/srcpkgs/python-pycodestyle/template
index ca20d8e0c97..08bc8c8bec7 100644
--- a/srcpkgs/python-pycodestyle/template
+++ b/srcpkgs/python-pycodestyle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycodestyle'
 pkgname=python-pycodestyle
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycodestyle-${version}"
 build_style=python-module

From 458a7cd663d14ff12f84c5627586a2acbb6e8550 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 404/871] python-pycountry: rebuild for Python 3.8.

---
 srcpkgs/python-pycountry/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycountry/template b/srcpkgs/python-pycountry/template
index 88a0025f258..205db6240b7 100644
--- a/srcpkgs/python-pycountry/template
+++ b/srcpkgs/python-pycountry/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycountry'
 pkgname=python-pycountry
 version=18.12.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycountry-${version}"
 build_style=python-module

From 5aba7475fcb0db2e6af2b3635c32046fdb4bed9e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 405/871] python-pycparser: rebuild for Python 3.8.

---
 srcpkgs/python-pycparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycparser/template b/srcpkgs/python-pycparser/template
index a521b3494ab..d2e83aa79b2 100644
--- a/srcpkgs/python-pycparser/template
+++ b/srcpkgs/python-pycparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycparser'
 pkgname=python-pycparser
 version=2.19
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycparser-${version}"
 build_style=python-module

From 27bc1cecea0a32405093835ed43af3165e0e6135 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 406/871] python-pycryptodome: rebuild for Python 3.8.

---
 srcpkgs/python-pycryptodome/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycryptodome/template b/srcpkgs/python-pycryptodome/template
index f01b5731c45..a4368d61b39 100644
--- a/srcpkgs/python-pycryptodome/template
+++ b/srcpkgs/python-pycryptodome/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycryptodome'
 pkgname=python-pycryptodome
 version=3.9.0
-revision=1
+revision=2
 wrksrc="pycryptodome-${version}"
 build_style=python-module
 pycompile_module="Crypto"

From e69c73009d97176676b8b8006dd9cb34ff46b63a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 407/871] python-pyelftools: rebuild for Python 3.8.

---
 srcpkgs/python-pyelftools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyelftools/template b/srcpkgs/python-pyelftools/template
index a6e9e9b644e..193650442fc 100644
--- a/srcpkgs/python-pyelftools/template
+++ b/srcpkgs/python-pyelftools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyelftools'
 pkgname=python-pyelftools
 version=0.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyelftools-${version}"
 build_style=python-module

From a269c5b908f340d58c26ff8432b82c52fa106886 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 408/871] python3-pyfiglet: rebuild for Python 3.8.

---
 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 d00b4fda62a..a4a67b12d42 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=1
+revision=2
 archs=noarch
 wrksrc="pyfiglet-${version}"
 build_style="python3-module"

From 6b2f13c267d42fe553ae2d2a094a0ba15f99497f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 409/871] python-pyflakes: rebuild for Python 3.8.

---
 srcpkgs/python-pyflakes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyflakes/template b/srcpkgs/python-pyflakes/template
index 86d477c47f2..19229ebb3a4 100644
--- a/srcpkgs/python-pyflakes/template
+++ b/srcpkgs/python-pyflakes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyflakes'
 pkgname=python-pyflakes
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyflakes-${version}"
 build_style=python-module

From 4678939217e7195124b2610c11a5d3caafcdb0e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 410/871] python-pygame: rebuild for Python 3.8.

---
 srcpkgs/python-pygame/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pygame/template b/srcpkgs/python-pygame/template
index e8597c15cf6..4970301899a 100644
--- a/srcpkgs/python-pygame/template
+++ b/srcpkgs/python-pygame/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pygame'
 pkgname=python-pygame
 version=1.9.6
-revision=1
+revision=2
 wrksrc="pygame-${version}"
 build_style=python-module
 pycompile_module="pygame"

From c706be64876f43888b216ef6c87c1beafa7714a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 411/871] python-pyglet: rebuild for Python 3.8.

---
 srcpkgs/python-pyglet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyglet/template b/srcpkgs/python-pyglet/template
index f8315bdf616..ee6ed16064c 100644
--- a/srcpkgs/python-pyglet/template
+++ b/srcpkgs/python-pyglet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyglet'
 pkgname=python-pyglet
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyglet-${version}"
 build_style=python-module

From e5d5a38278ce66c18f2dcbaec0456aee470ced7b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 412/871] python3-pykeepass: rebuild for Python 3.8.

---
 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 c0e0fd4db41..135da6fea65 100644
--- a/srcpkgs/python3-pykeepass/template
+++ b/srcpkgs/python3-pykeepass/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pykeepass'
 pkgname=python3-pykeepass
 version=3.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="pykeepass-${version}"
 build_style=python3-module

From ff115326b5911210b9a17538a5f75831940c80e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 413/871] python3-pykwalify: rebuild for Python 3.8.

---
 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 27bc0c37355..b3727aba651 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pykwalify-${version}"
 build_style=python3-module

From 677c1c66573ce9eea4ba37803ecf501fc4a5beef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 414/871] python3-pylast: rebuild for Python 3.8.

---
 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 187b51943a8..60184348d80 100644
--- a/srcpkgs/python3-pylast/template
+++ b/srcpkgs/python3-pylast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylast'
 pkgname=python3-pylast
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylast-${version}"
 build_style=python3-module

From a1144cacaed91d80d03e2b3ef0a55136964d98f8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 415/871] python3-pylibgen: rebuild for Python 3.8.

---
 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 641bf649c17..540ccb32790 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylibgen-${version}"
 build_style=python3-module

From 2120b279392598aba39e0f5c007aa0a7f9f743fc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 416/871] python3-pylint: rebuild for Python 3.8.

---
 srcpkgs/python3-pylint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pylint/template b/srcpkgs/python3-pylint/template
index 6c8800069f0..315dbffb3fc 100644
--- a/srcpkgs/python3-pylint/template
+++ b/srcpkgs/python3-pylint/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylint'
 pkgname=python3-pylint
 version=2.3.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="pylint-${version}"
 build_style=python3-module

From 0a520f127e57ac41b566e4f670ca70b39da57d7e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 417/871] python-pynacl: rebuild for Python 3.8.

---
 srcpkgs/python-pynacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pynacl/template b/srcpkgs/python-pynacl/template
index 6ead91820b1..7a7fe246821 100644
--- a/srcpkgs/python-pynacl/template
+++ b/srcpkgs/python-pynacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pynacl'
 pkgname=python-pynacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python-module
 pycompile_module="nacl"

From 0809a2411eaaf0c5cf55c9793d5ef16bc931de64 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 418/871] python-pyotp: rebuild for Python 3.8.

---
 srcpkgs/python-pyotp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyotp/template b/srcpkgs/python-pyotp/template
index 54714ee2ebb..b70bd73d4aa 100644
--- a/srcpkgs/python-pyotp/template
+++ b/srcpkgs/python-pyotp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyotp'
 pkgname=python-pyotp
 version=2.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyotp-${version}"
 build_style=python-module

From 5526ad81f51bb41842512dcc0a3cbb58917e9049 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 419/871] python-pyperclip: rebuild for Python 3.8.

---
 srcpkgs/python-pyperclip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyperclip/template b/srcpkgs/python-pyperclip/template
index 512dc8d3dfb..b173f1479a5 100644
--- a/srcpkgs/python-pyperclip/template
+++ b/srcpkgs/python-pyperclip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyperclip'
 pkgname=python-pyperclip
 version=1.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=pyperclip-${version}
 build_style=python-module

From 794e30779cbba809b8b11bd83ce57605eb96432f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 420/871] python-pyqtgraph: rebuild for Python 3.8.

---
 srcpkgs/python-pyqtgraph/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyqtgraph/template b/srcpkgs/python-pyqtgraph/template
index f90e2b15319..1bea9c2ffdf 100644
--- a/srcpkgs/python-pyqtgraph/template
+++ b/srcpkgs/python-pyqtgraph/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyqtgraph'
 pkgname=python-pyqtgraph
 version=0.10.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${pkgname#*-}-${version}"
 build_style=python-module

From a7c0d8bb69643c541c7f9958c30b473b2e65256d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 421/871] python-pyrfc3339: rebuild for Python 3.8.

---
 srcpkgs/python-pyrfc3339/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyrfc3339/template b/srcpkgs/python-pyrfc3339/template
index 618e46d1c4b..cd81c4d0624 100644
--- a/srcpkgs/python-pyrfc3339/template
+++ b/srcpkgs/python-pyrfc3339/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyrfc3339'
 pkgname=python-pyrfc3339
 version=1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="pyrfc3339"

From 225d8e46a72b12bb088c0e37d427679a7ce416b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 422/871] python-pyscss: rebuild for Python 3.8.

---
 srcpkgs/python-pyscss/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyscss/template b/srcpkgs/python-pyscss/template
index 1f7d8b7d8cd..1a8e9c44d7d 100644
--- a/srcpkgs/python-pyscss/template
+++ b/srcpkgs/python-pyscss/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyscss'
 pkgname=python-pyscss
 version=1.3.5
-revision=6
+revision=7
 wrksrc="pyScss-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pcre-devel"

From 0d8d296a9805dbbb287b0716ff02712da4a028b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 423/871] python3-pysdl2: rebuild for Python 3.8.

---
 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 d59ea7d7fa2..3efdca5b667 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=1
+revision=2
 archs=noarch
 wrksrc="py-sdl2-rel_${version//./_}"
 build_style=python3-module

From 9f810037661c3d8a726d49cd5e5b21bf13e531d0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 424/871] python-pyserial: rebuild for Python 3.8.

---
 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 8808e76d206..354be493b16 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=2
+revision=3
 archs=noarch
 wrksrc="pyserial-${version}"
 build_style=python-module

From 69f0cfa0896867683b8f00d603c38bef0572c3eb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 425/871] python3-pyside2: rebuild for Python 3.8.

---
 srcpkgs/python3-pyside2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pyside2/template b/srcpkgs/python3-pyside2/template
index a5d60b17568..1da3400f239 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.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From 7e824ef90fe600a3d0f3a3dc537b91306673265e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 426/871] python3-pysigset: rebuild for Python 3.8.

---
 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 8de87145a09..50d9162ea70 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.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysigset-${version}"
 build_style=python3-module

From 4c4b138c123b078fa171272590d890ff49ffa3af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 427/871] python-pysocks: rebuild for Python 3.8.

---
 srcpkgs/python-pysocks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysocks/template b/srcpkgs/python-pysocks/template
index 68a27819e3d..d9b216aeab8 100644
--- a/srcpkgs/python-pysocks/template
+++ b/srcpkgs/python-pysocks/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysocks'
 pkgname=python-pysocks
 version=1.6.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="PySocks-${version}"
 build_style=python-module

From 831c500a21f8fe0566a80d1774a309975e30756e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 428/871] python3-pysol_cards: rebuild for Python 3.8.

---
 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 e03d92fe077..a37429754a2 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.8.6
-revision=1
+revision=2
 wrksrc="pysol_cards-${version}"
 build_style=python3-module
 pycompile_module="pysol_cards"

From 11e5ab3dadf526ed9922542de678362671ad7c0f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 429/871] python-pysrt: rebuild for Python 3.8.

---
 srcpkgs/python-pysrt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysrt/template b/srcpkgs/python-pysrt/template
index 061435a52c7..7e154825bef 100644
--- a/srcpkgs/python-pysrt/template
+++ b/srcpkgs/python-pysrt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysrt'
 pkgname=python-pysrt
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysrt-${version}"
 build_style=python-module

From a37c47738470833ddd3050f2db9e0fbc354adb53 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 430/871] python-pystache: rebuild for Python 3.8.

---
 srcpkgs/python-pystache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pystache/template b/srcpkgs/python-pystache/template
index 13f8b04aa88..c1a5bcd57d9 100644
--- a/srcpkgs/python-pystache/template
+++ b/srcpkgs/python-pystache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pystache'
 pkgname=python-pystache
 version=0.5.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pystache-${version}"
 build_style=python-module

From 36f4e0a0bdbb6997dac49b3b8fbc3b373129c317 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 431/871] python-pyte: rebuild for Python 3.8.

---
 srcpkgs/python-pyte/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyte/template b/srcpkgs/python-pyte/template
index 43b708adc66..76efbec91d1 100644
--- a/srcpkgs/python-pyte/template
+++ b/srcpkgs/python-pyte/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyte'
 pkgname=python-pyte
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyte-${version}"
 build_style=python-module

From eba979d262906525a673af63087716776367eddd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 432/871] python-pytest: rebuild for Python 3.8.

---
 srcpkgs/python-pytest/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest/template b/srcpkgs/python-pytest/template
index 6481f21e677..d5c246599c6 100644
--- a/srcpkgs/python-pytest/template
+++ b/srcpkgs/python-pytest/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest'
 pkgname=python-pytest
 version=3.7.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 2e73d95ed8554d79f19934aa65de0f284a1c3a4b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 433/871] python3-pytest-asyncio: rebuild for Python 3.8.

---
 srcpkgs/python3-pytest-asyncio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template
index bd104f99e2c..0c90d33a9e5 100644
--- a/srcpkgs/python3-pytest-asyncio/template
+++ b/srcpkgs/python3-pytest-asyncio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pytest-asyncio'
 pkgname=python3-pytest-asyncio
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytest-asyncio-${version}"
 build_style=python3-module

From 068c38d9af7f20a734f5c55306a9f0c977bf2618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 434/871] python-pytest-fixture-config: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-fixture-config/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-fixture-config/template b/srcpkgs/python-pytest-fixture-config/template
index cd3e38a592a..14255af8a35 100644
--- a/srcpkgs/python-pytest-fixture-config/template
+++ b/srcpkgs/python-pytest-fixture-config/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-fixture-config'
 pkgname=python-pytest-fixture-config
 version=1.3.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 854b634fcd9840e71fcfb1230629f924d2c977b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 435/871] python-pytest-mock: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-mock/template b/srcpkgs/python-pytest-mock/template
index f3dc85810b6..240e8773aaa 100644
--- a/srcpkgs/python-pytest-mock/template
+++ b/srcpkgs/python-pytest-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-mock'
 pkgname=python-pytest-mock
 version=1.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From e9e6af44f6fcb833177ccebf35ec94a92e08ce20 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 436/871] python-pytz: rebuild for Python 3.8.

---
 srcpkgs/python-pytz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytz/template b/srcpkgs/python-pytz/template
index d6becf829a7..40f582962c8 100644
--- a/srcpkgs/python-pytz/template
+++ b/srcpkgs/python-pytz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytz'
 pkgname=python-pytz
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytz-${version}"
 build_style=python-module

From e095a9c982a87e42c0474e6dae543aa3e63d3813 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 437/871] python-pyudev: rebuild for Python 3.8.

---
 srcpkgs/python-pyudev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyudev/template b/srcpkgs/python-pyudev/template
index d059b7882a2..2ec53088636 100644
--- a/srcpkgs/python-pyudev/template
+++ b/srcpkgs/python-pyudev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyudev'
 pkgname=python-pyudev
 version=0.21.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyudev-${version}"
 build_style=python-module

From 56b41dac846c92e788dd4fe66d30df48cb46c939 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 438/871] python3-pyx: rebuild for Python 3.8.

---
 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 87608c43428..89963bed89f 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.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="PyX-${version}"
 build_style=python3-module

From fa256797e2f50313b6f57c06aa7f33cea1307a52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 439/871] python-pyzbar: rebuild for Python 3.8.

---
 srcpkgs/python-pyzbar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzbar/template b/srcpkgs/python-pyzbar/template
index 06ae37a5708..35b568eb4e6 100644
--- a/srcpkgs/python-pyzbar/template
+++ b/srcpkgs/python-pyzbar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzbar'
 pkgname=python-pyzbar
 version=0.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyzbar-${version}"
 build_style=python-module

From 31d52cada5a6994a0f5b35f3c889ee63e47326c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 440/871] python-pyzmq: rebuild for Python 3.8.

---
 srcpkgs/python-pyzmq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzmq/template b/srcpkgs/python-pyzmq/template
index 859aab5983d..27dbe29e516 100644
--- a/srcpkgs/python-pyzmq/template
+++ b/srcpkgs/python-pyzmq/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzmq'
 pkgname=python-pyzmq
 version=18.0.1
-revision=1
+revision=2
 wrksrc="pyzmq-${version}"
 build_style=python-module
 make_build_args="--zmq=${XBPS_CROSS_BASE}/usr"

From 4cfb716814c18a8e5daf87033780dc23fe3cc21d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 441/871] python-qrcode: rebuild for Python 3.8.

---
 srcpkgs/python-qrcode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-qrcode/template b/srcpkgs/python-qrcode/template
index 9deb485855f..bf35c82757e 100644
--- a/srcpkgs/python-qrcode/template
+++ b/srcpkgs/python-qrcode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-qrcode'
 pkgname=python-qrcode
 version=6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="qrcode-${version}"
 build_style=python-module

From 11b27c141238290b000897965decb78612ec0498 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 442/871] python-random2: rebuild for Python 3.8.

---
 srcpkgs/python-random2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-random2/template b/srcpkgs/python-random2/template
index 92f36fee139..2603cae3584 100644
--- a/srcpkgs/python-random2/template
+++ b/srcpkgs/python-random2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-random2'
 pkgname=python-random2
 version=1.0.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="random2-${version}"
 build_style=python-module

From 906c8d70b432a8b33e74465c9d6a739cea8ab9ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 443/871] python-rarfile: rebuild for Python 3.8.

---
 srcpkgs/python-rarfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rarfile/template b/srcpkgs/python-rarfile/template
index e0c597c1fb1..e3b6f3e2887 100644
--- a/srcpkgs/python-rarfile/template
+++ b/srcpkgs/python-rarfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rarfile'
 pkgname=python-rarfile
 version=3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="rarfile-${version}"
 build_style=python-module

From 869e39b2290989657b956cf65e98af599bc5d817 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 444/871] python-raven: rebuild for Python 3.8.

---
 srcpkgs/python-raven/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-raven/template b/srcpkgs/python-raven/template
index eec4e5f49b6..87382c21602 100644
--- a/srcpkgs/python-raven/template
+++ b/srcpkgs/python-raven/template
@@ -1,7 +1,7 @@
 # Template file for 'python-raven'
 pkgname=python-raven
 version=6.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="raven-${version}"
 build_style=python-module

From 338f3d5dc3a8d06c0bda0a913c268d4d37c5deef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 445/871] python-rdflib: rebuild for Python 3.8.

---
 srcpkgs/python-rdflib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rdflib/template b/srcpkgs/python-rdflib/template
index 0512abb0e5a..f676dedfb2f 100644
--- a/srcpkgs/python-rdflib/template
+++ b/srcpkgs/python-rdflib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rdflib'
 pkgname=python-rdflib
 version=4.2.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="rdflib-${version}"
 build_style=python-module

From e05cbd7301fd25dab8143d8753d42423436d7d07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 446/871] python-readability-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-readability-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-readability-lxml/template b/srcpkgs/python-readability-lxml/template
index ddf0602b730..19dadaa336f 100644
--- a/srcpkgs/python-readability-lxml/template
+++ b/srcpkgs/python-readability-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-readability-lxml'
 pkgname=python-readability-lxml
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="readability-lxml-${version}"
 build_style=python-module

From e78558a9a1326c39181c96d655e9edd470876e58 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 447/871] python3-readlike: rebuild for Python 3.8.

---
 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 cbba969b076..43159962442 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=1
+revision=2
 archs=noarch
 wrksrc=readlike-${version}
 build_style=python3-module

From ae3f7b29204e6167e0210028117a517c540048a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 448/871] python-rebulk: rebuild for Python 3.8.

---
 srcpkgs/python-rebulk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rebulk/template b/srcpkgs/python-rebulk/template
index 1cf6cf623c8..8f9c2621304 100644
--- a/srcpkgs/python-rebulk/template
+++ b/srcpkgs/python-rebulk/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rebulk'
 pkgname=python-rebulk
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rebulk-${version}"
 build_style=python-module

From dbd642a5357a64271088d5174ce946cd317c1fd2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 449/871] python-redis: rebuild for Python 3.8.

---
 srcpkgs/python-redis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-redis/template b/srcpkgs/python-redis/template
index f57c0d841b3..b7e773fde54 100644
--- a/srcpkgs/python-redis/template
+++ b/srcpkgs/python-redis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-redis'
 pkgname=python-redis
 version=2.10.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="redis-${version}"
 build_style=python-module

From 37f438cfa0647f77a8953b504ae16e7cd5c3b425 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 450/871] python-regex: rebuild for Python 3.8.

---
 srcpkgs/python-regex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-regex/template b/srcpkgs/python-regex/template
index 33e99b0127b..7a624db9477 100644
--- a/srcpkgs/python-regex/template
+++ b/srcpkgs/python-regex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-regex'
 pkgname=python-regex
 version=2019.08.19
-revision=1
+revision=2
 wrksrc="regex-${version}"
 build_style=python-module
 pycompile_module="_regex_core.py regex.py test_regex.py"

From 69fea0727ca46bacdc071ed6991df85448119ec2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 451/871] python-rencode: rebuild for Python 3.8.

---
 srcpkgs/python-rencode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rencode/template b/srcpkgs/python-rencode/template
index 7176038a60a..021e1d414b8 100644
--- a/srcpkgs/python-rencode/template
+++ b/srcpkgs/python-rencode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rencode'
 pkgname=python-rencode
 version=1.0.6
-revision=2
+revision=3
 wrksrc="rencode-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"

From fae7db57d64d7568b36fa26582b08eeda0b396be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 452/871] python-reportlab: rebuild for Python 3.8.

---
 srcpkgs/python-reportlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-reportlab/template b/srcpkgs/python-reportlab/template
index 7f153d65a2a..3915767b6d3 100644
--- a/srcpkgs/python-reportlab/template
+++ b/srcpkgs/python-reportlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-reportlab'
 pkgname=python-reportlab
 version=3.5.23
-revision=1
+revision=2
 wrksrc="reportlab-${version}"
 build_style=python-module
 pycompile_module="reportlab"

From abb92b85648ed53cca412fee4d121a9404d6649f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 453/871] python-requests: rebuild for Python 3.8.

---
 srcpkgs/python-requests/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests/template b/srcpkgs/python-requests/template
index fc806b611e9..73d2d5945ef 100644
--- a/srcpkgs/python-requests/template
+++ b/srcpkgs/python-requests/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests'
 pkgname=python-requests
 version=2.22.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-${version}"
 build_style=python-module

From 86359ff8f64625425e2af536712cdf49592df458 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 454/871] python-requests-mock: rebuild for Python 3.8.

---
 srcpkgs/python-requests-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-mock/template b/srcpkgs/python-requests-mock/template
index 5b89b5ed3b8..2d1410fcd1b 100644
--- a/srcpkgs/python-requests-mock/template
+++ b/srcpkgs/python-requests-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-mock'
 pkgname=python-requests-mock
 version=1.5.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="requests-mock-${version}"
 build_style=python-module

From 989806ffdef821f87a965d700a06b190a18e895b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 455/871] python-requests-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-requests-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-oauthlib/template b/srcpkgs/python-requests-oauthlib/template
index b011ea17a36..8cd838090a7 100644
--- a/srcpkgs/python-requests-oauthlib/template
+++ b/srcpkgs/python-requests-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-oauthlib'
 pkgname=python-requests-oauthlib
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From f6a695f88687d589141bdfbb10d9694e5f53bd7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 456/871] python-requests-toolbelt: rebuild for Python 3.8.

---
 srcpkgs/python-requests-toolbelt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-toolbelt/template b/srcpkgs/python-requests-toolbelt/template
index 3ba66a0a007..13a81586221 100644
--- a/srcpkgs/python-requests-toolbelt/template
+++ b/srcpkgs/python-requests-toolbelt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-toolbelt'
 pkgname=python-requests-toolbelt
 version=0.9.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 76c9c2dbe5ce7dfad8e9ca2b0cc42b7c01dd5447 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 457/871] python3-requests-unixsocket: rebuild for Python 3.8.

---
 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 ec9e1074566..fd389ec2d13 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-unixsocket-${version}"
 build_style=python3-module

From e8365bb377e1d4b402f9eeb6cfc462cd4428f8a6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 458/871] python-rfc6555: rebuild for Python 3.8.

---
 srcpkgs/python-rfc6555/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rfc6555/template b/srcpkgs/python-rfc6555/template
index c3babc25b93..2522872cc32 100644
--- a/srcpkgs/python-rfc6555/template
+++ b/srcpkgs/python-rfc6555/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rfc6555'
 pkgname=python-rfc6555
 version=0.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rfc6555-${version}"
 build_style=python-module

From d4985d66b9020f9ed8d9b4e95f2700a70864667e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 459/871] python-ripe-atlas-cousteau: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-cousteau/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-cousteau/template b/srcpkgs/python-ripe-atlas-cousteau/template
index ac16300fe3d..72f32a9da0d 100644
--- a/srcpkgs/python-ripe-atlas-cousteau/template
+++ b/srcpkgs/python-ripe-atlas-cousteau/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-cousteau'
 pkgname=python-ripe-atlas-cousteau
 version=1.4.2
-revision=1
+revision=2
 build_style=python-module
 archs=noarch
 pycompile_module="ripe/atlas/cousteau"

From 4e3df75959dc80d41dc5914b9e331820884ea336 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 460/871] python-ripe-atlas-sagan: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-sagan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-sagan/template b/srcpkgs/python-ripe-atlas-sagan/template
index 60a9b883b93..22abb48af46 100644
--- a/srcpkgs/python-ripe-atlas-sagan/template
+++ b/srcpkgs/python-ripe-atlas-sagan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-sagan'
 pkgname=python-ripe-atlas-sagan
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ripe.atlas.sagan-${version}"
 build_style=python-module

From 59d57451c0d97bc06b911fb4d7702ce883c7e4a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 461/871] python-rsa: rebuild for Python 3.8.

---
 srcpkgs/python-rsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rsa/template b/srcpkgs/python-rsa/template
index a4ae59846ff..11e9bf2c60d 100644
--- a/srcpkgs/python-rsa/template
+++ b/srcpkgs/python-rsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rsa'
 pkgname=python-rsa
 version=4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c0e0b75987603b88d4b30987e65b71d1d6609431 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 462/871] python3-rsistent: rebuild for Python 3.8.

---
 srcpkgs/python3-rsistent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-rsistent/template b/srcpkgs/python3-rsistent/template
index 13019f472cd..7897e107b2b 100644
--- a/srcpkgs/python3-rsistent/template
+++ b/srcpkgs/python3-rsistent/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-rsistent'
 pkgname=python3-rsistent
 version=0.15.4
-revision=1
+revision=2
 wrksrc="pyrsistent-${version}"
 build_style=python3-module
 pycompile_module="pyrsistent"

From 2597df7c11892e8219c9f6e8ebaabd2e1993ed87 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 463/871] python3-rss2email: rebuild for Python 3.8.

---
 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 d07984d33d8..34e7d4e65a6 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.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="rss2email-${version}"
 build_style=python3-module

From 6a9adf49fa783613c85b8b7e87067ca97155fe8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 464/871] python-ruamel.yaml: rebuild for Python 3.8.

---
 srcpkgs/python-ruamel.yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ruamel.yaml/template b/srcpkgs/python-ruamel.yaml/template
index d86ddfc67c9..789f8a7acd2 100644
--- a/srcpkgs/python-ruamel.yaml/template
+++ b/srcpkgs/python-ruamel.yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ruamel.yaml'
 pkgname=python-ruamel.yaml
 version=0.15.92
-revision=1
+revision=2
 wrksrc="ruamel.yaml-${version}"
 build_style=python-module
 pycompile_module="ruamel/yaml"

From 540117218d41374fef87bebff9e538c49e868a27 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 465/871] python3-s-tui: rebuild for Python 3.8.

---
 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 4c7db6ff3c9..85a945b1b09 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=0.8.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="s-tui-${version}"
 build_style=python3-module

From c7704bb1a1a995a00d8431b2d6b6d2b27bafd833 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 466/871] python-s3transfer: rebuild for Python 3.8.

---
 srcpkgs/python-s3transfer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-s3transfer/template b/srcpkgs/python-s3transfer/template
index e306c3c3b1a..dd92eeff657 100644
--- a/srcpkgs/python-s3transfer/template
+++ b/srcpkgs/python-s3transfer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-s3transfer'
 pkgname=python-s3transfer
 version=0.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="s3transfer-${version}"
 build_style=python-module

From 654f32de029fffe9e8b59c874be946b3c5c4c60e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 467/871] python3-saml2: rebuild for Python 3.8.

---
 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 e94602a82ea..c0dabb5e9d0 100644
--- a/srcpkgs/python3-saml2/template
+++ b/srcpkgs/python3-saml2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-saml2'
 pkgname=python3-saml2
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysaml2-${version}"
 build_style=python3-module

From 809286f6b0df87dab26ddc02e57285e05c5c7114 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 468/871] python-scandir: rebuild for Python 3.8.

---
 srcpkgs/python-scandir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scandir/template b/srcpkgs/python-scandir/template
index 774fac91b8f..b02fe6d0281 100644
--- a/srcpkgs/python-scandir/template
+++ b/srcpkgs/python-scandir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scandir'
 pkgname=python-scandir
 version=1.10.0
-revision=2
+revision=3
 wrksrc="scandir-${version}"
 build_style=python-module
 pycompile_module="scandir.py"

From 6f135d159b5a40d57ea469b6477f303679a1167e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 469/871] python3-scard: rebuild for Python 3.8.

---
 srcpkgs/python3-scard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scard/template b/srcpkgs/python3-scard/template
index 793f144a74b..279419ac3e3 100644
--- a/srcpkgs/python3-scard/template
+++ b/srcpkgs/python3-scard/template
@@ -2,7 +2,7 @@
 pkgname=python3-scard
 _pkgname=pyscard
 version=1.9.8
-revision=1
+revision=2
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module
 pycompile_module=smartcard

From ae3e6b1e760d0cb20c4d5cd06e6076d674ebd398 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 470/871] python3-scikit-learn: rebuild for Python 3.8.

---
 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 73799b9f420..8ac82167832 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.20.4
-revision=1
+revision=2
 wrksrc="scikit-learn-${version}"
 build_style=python3-module
 pycompile_module="sklearn"

From d9b1e5ce2c44fecd8e58991153dac24a14ed2261 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 471/871] python3-scipy: rebuild for Python 3.8.

---
 srcpkgs/python3-scipy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scipy/template b/srcpkgs/python3-scipy/template
index 291ac3734f1..2cef9ac33e1 100644
--- a/srcpkgs/python3-scipy/template
+++ b/srcpkgs/python3-scipy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-scipy'
 pkgname=python3-scipy
 version=1.3.1
-revision=1
+revision=2
 wrksrc="scipy-${version}"
 build_style=python3-module
 pycompile_module="scipy"

From fe30d241ec54ba78820981defda976b37278d36e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 472/871] python-scour: rebuild for Python 3.8.

---
 srcpkgs/python-scour/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scour/template b/srcpkgs/python-scour/template
index b78cf37f057..0db5b157ce1 100644
--- a/srcpkgs/python-scour/template
+++ b/srcpkgs/python-scour/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scour'
 pkgname=python-scour
 version=0.37
-revision=1
+revision=2
 archs=noarch
 wrksrc="scour-${version}"
 build_style=python-module

From 2eca359c1d25d75a6a50d1e0c5304e576036beca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 473/871] python3-scruffy: rebuild for Python 3.8.

---
 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 e797b110f42..62a21a74eca 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="scruffy-${version}"
 build_style=python3-module

From ba146d77b6d97980c1f83596ab2842db780e91bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 474/871] python-send2trash: rebuild for Python 3.8.

---
 srcpkgs/python-send2trash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-send2trash/template b/srcpkgs/python-send2trash/template
index 49c3a2b3d77..94f56545695 100644
--- a/srcpkgs/python-send2trash/template
+++ b/srcpkgs/python-send2trash/template
@@ -1,7 +1,7 @@
 # Template file for 'python-send2trash'
 pkgname=python-send2trash
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="send2trash-${version}"
 build_style=python-module

From 5cdcea7f6142b9e2231e27fd2b2c9759ef3147b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 475/871] python-serpent: rebuild for Python 3.8.

---
 srcpkgs/python-serpent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-serpent/template b/srcpkgs/python-serpent/template
index b60d390c1ab..a40f0d44515 100644
--- a/srcpkgs/python-serpent/template
+++ b/srcpkgs/python-serpent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-serpent'
 pkgname=python-serpent
 version=1.28
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 78ff8a5bdc61ca5da810d668e2b9bfef9708d679 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 476/871] python-service_identity: rebuild for Python 3.8.

---
 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 eae084c858f..e21a1520a75 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=1
+revision=2
 archs=noarch
 wrksrc="service_identity-${version}"
 build_style=python-module

From 2bfd99ea9af033dc5dde546bb869bb7cbc14f27c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 477/871] setconf: rebuild for Python 3.8.

---
 srcpkgs/setconf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/setconf/template b/srcpkgs/setconf/template
index a3d22376a5b..1911c558c77 100644
--- a/srcpkgs/setconf/template
+++ b/srcpkgs/setconf/template
@@ -1,7 +1,7 @@
 # Template file for 'setconf'
 pkgname=setconf
 version=0.7.6
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="setconf.py"

From 27b2fe6409f92006625950e33e5cc315ac120ab9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 478/871] python-setproctitle: rebuild for Python 3.8.

---
 srcpkgs/python-setproctitle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setproctitle/template b/srcpkgs/python-setproctitle/template
index d0d41ae888d..c47e3a9db53 100644
--- a/srcpkgs/python-setproctitle/template
+++ b/srcpkgs/python-setproctitle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setproctitle'
 pkgname=python-setproctitle
 version=1.1.10
-revision=5
+revision=6
 wrksrc="setproctitle-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From df177a58fbbb9102149a1552104e603cd9048d51 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 479/871] python-setuptools: rebuild for Python 3.8.

---
 srcpkgs/python-setuptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setuptools/template b/srcpkgs/python-setuptools/template
index 382a9b45bcd..a172f8e8e09 100644
--- a/srcpkgs/python-setuptools/template
+++ b/srcpkgs/python-setuptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setuptools'
 pkgname=python-setuptools
 version=41.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python-module

From fefeb3ac7659adf5f80bd56831999dc84efa6fd8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 480/871] python-sh: rebuild for Python 3.8.

---
 srcpkgs/python-sh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sh/template b/srcpkgs/python-sh/template
index 1826986b25c..76985dc1f01 100644
--- a/srcpkgs/python-sh/template
+++ b/srcpkgs/python-sh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sh'
 pkgname=python-sh
 version=1.12.14
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From fee3a07c7dd5ff352333d4d8536f464dcc92696d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 481/871] python-shapely: rebuild for Python 3.8.

---
 srcpkgs/python-shapely/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-shapely/template b/srcpkgs/python-shapely/template
index 25cc875a02c..114726838f9 100644
--- a/srcpkgs/python-shapely/template
+++ b/srcpkgs/python-shapely/template
@@ -1,7 +1,7 @@
 # Template file for 'python-shapely'
 pkgname=python-shapely
 version=1.7a1
-revision=2
+revision=3
 wrksrc="Shapely-${version}"
 build_style=python-module
 pycompile_module="shapely"

From d54085271b4ec42c7312802d629193b85038edfd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 482/871] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index d552ce8432d..1f9c8043b46 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=4
+revision=5
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From 78375c434d22a6133dd4903028030715a4bd1318 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 483/871] shiboken2: rebuild for Python 3.8.

---
 srcpkgs/shiboken2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken2/template b/srcpkgs/shiboken2/template
index 394d9ba4f94..a08edf3f2a0 100644
--- a/srcpkgs/shiboken2/template
+++ b/srcpkgs/shiboken2/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken2'
 pkgname=shiboken2
 version=5.11.2
-revision=2
+revision=3
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From b6da63692b13118514b4e8abe7e4adc41d5678ae Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 484/871] python3-shodan: rebuild for Python 3.8.

---
 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 858a0b921f8..033b5a269ff 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.19.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="shodan-python-${version}"
 build_style=python3-module

From 3a2c14e52370356a18efef5516beb9c2e179f159 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 485/871] python3-signedjson: rebuild for Python 3.8.

---
 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 6f6fb339fd2..d8f9b06b22f 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-signedjson-${version}"
 build_style=python3-module

From 04a8077d16ae9f7dcab8dc863bca7c9372a5075d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 486/871] python-simplebayes: rebuild for Python 3.8.

---
 srcpkgs/python-simplebayes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplebayes/template b/srcpkgs/python-simplebayes/template
index e76b94ad549..6c95222fa7e 100644
--- a/srcpkgs/python-simplebayes/template
+++ b/srcpkgs/python-simplebayes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplebayes'
 pkgname=python-simplebayes
 version=1.5.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="simplebayes-${version}"
 build_style=python-module

From 0ca6aa08539f89c9faeba81b5845357dec97c5e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 487/871] python-simplegeneric: rebuild for Python 3.8.

---
 srcpkgs/python-simplegeneric/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplegeneric/template b/srcpkgs/python-simplegeneric/template
index 3dc4e1dda94..f352387fa1f 100644
--- a/srcpkgs/python-simplegeneric/template
+++ b/srcpkgs/python-simplegeneric/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplegeneric'
 pkgname=python-simplegeneric
 version=0.8.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="simplegeneric-${version}"
 build_style=python-module

From f144caacd87b9e009a3c6257ff35d53ec6b7a195 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 488/871] python-simplejson: rebuild for Python 3.8.

---
 srcpkgs/python-simplejson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplejson/template b/srcpkgs/python-simplejson/template
index b453ae952ba..1b8523d0d46 100644
--- a/srcpkgs/python-simplejson/template
+++ b/srcpkgs/python-simplejson/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplejson'
 pkgname=python-simplejson
 version=3.16.1
-revision=2
+revision=3
 wrksrc="simplejson-${version}"
 build_style=python-module
 pycompile_module="simplejson"

From 2c4eeffbfe156ce6e652a392c19362e77217a28d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 489/871] sip: rebuild for Python 3.8.

---
 srcpkgs/sip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sip/template b/srcpkgs/sip/template
index d21275bd26e..96a8f1f5dc6 100644
--- a/srcpkgs/sip/template
+++ b/srcpkgs/sip/template
@@ -1,7 +1,7 @@
 # Template file for 'sip'
 pkgname=sip
 version=4.19.19
-revision=1
+revision=2
 hostmakedepends="python-devel python3-devel"
 makedepends="${hostmakedepends}"
 short_desc="Python extension module generator for C/C++ libraries"

From 98df4dc3851f20f87a3280115cf347b799ec09d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 490/871] python-six: rebuild for Python 3.8.

---
 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 c6d91f5ece9..a25323caa2a 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.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="six-${version}"
 build_style=python-module

From e642734789a2f8449389f7329b99f2907a2753ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 491/871] python3-slixmpp: rebuild for Python 3.8.

---
 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 db367c3d0ab..cbbde6f394b 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.4.2
-revision=1
+revision=2
 wrksrc="slixmpp-${version}"
 build_style=python3-module
 pycompile_module="slixmpp"

From 3f16ac762475d52dcf3ef10cd602ebbb6ab43c54 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 492/871] python3-slugify: rebuild for Python 3.8.

---
 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 44d37f2aed7..012bb98f063 100644
--- a/srcpkgs/python3-slugify/template
+++ b/srcpkgs/python3-slugify/template
@@ -3,7 +3,7 @@ pkgname=python3-slugify
 # Please don't update. Only required by Transifx-client,
 # doesn't work with newer versions
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-slugify-${version}"
 build_style=python3-module

From acda657beb2511d9f7839d73e6720233f525da50 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 493/871] python-smbc: rebuild for Python 3.8.

---
 srcpkgs/python-smbc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smbc/template b/srcpkgs/python-smbc/template
index abc745f8982..6a280139a25 100644
--- a/srcpkgs/python-smbc/template
+++ b/srcpkgs/python-smbc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smbc'
 pkgname=python-smbc
 version=1.0.16
-revision=1
+revision=2
 wrksrc="pysmbc-${version}"
 build_style=python-module
 pycompile_module="smbc"

From d83404b5344a976bfe7f253c69bbac76d7b86a78 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 494/871] python-smmap: rebuild for Python 3.8.

---
 srcpkgs/python-smmap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smmap/template b/srcpkgs/python-smmap/template
index 4aa0c37ff40..8c8ea952285 100644
--- a/srcpkgs/python-smmap/template
+++ b/srcpkgs/python-smmap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smmap'
 pkgname=python-smmap
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="smmap-${version}"
 build_style=python-module

From 7ab70f6590c54850f63f3e98be0b1b1ac3afcdc0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 495/871] python-snakeoil: rebuild for Python 3.8.

---
 srcpkgs/python-snakeoil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snakeoil/template b/srcpkgs/python-snakeoil/template
index 9c98461c555..79e964d9254 100644
--- a/srcpkgs/python-snakeoil/template
+++ b/srcpkgs/python-snakeoil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snakeoil'
 pkgname=python-snakeoil
 version=0.7.5
-revision=2
+revision=3
 wrksrc="snakeoil-${version}"
 build_style=python-module
 pycompile_module="snakeoil"

From 4b9dd2429d66fba899a27b2c01329bbe6efb44b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 496/871] python-snappy: rebuild for Python 3.8.

---
 srcpkgs/python-snappy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snappy/template b/srcpkgs/python-snappy/template
index ac386f64fae..b1870cbe681 100644
--- a/srcpkgs/python-snappy/template
+++ b/srcpkgs/python-snappy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snappy'
 pkgname=python-snappy
 version=0.5.4
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="snappy"
 hostmakedepends="python-setuptools python3-setuptools"

From 12028fd1ca081e11de04a55fb7e492c08875fca2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 497/871] python-snowballstemmer: rebuild for Python 3.8.

---
 srcpkgs/python-snowballstemmer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snowballstemmer/template b/srcpkgs/python-snowballstemmer/template
index 6c21632cffa..221478860e5 100644
--- a/srcpkgs/python-snowballstemmer/template
+++ b/srcpkgs/python-snowballstemmer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snowballstemmer'
 pkgname=python-snowballstemmer
 version=1.2.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="snowballstemmer-${version}"
 build_style=python-module

From 78d3ee780c27c3623e44d5a2777bd86f69cbf6a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 498/871] python-socketIO-client: rebuild for Python 3.8.

---
 srcpkgs/python-socketIO-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-socketIO-client/template b/srcpkgs/python-socketIO-client/template
index 32fdac4117d..9495d7cf40b 100644
--- a/srcpkgs/python-socketIO-client/template
+++ b/srcpkgs/python-socketIO-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-socketIO-client'
 pkgname=python-socketIO-client
 version=0.7.2
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="socketIO_client"

From 432996bde2d62c80691d2b2c7df314eb66d562ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 499/871] python3-sortedcontainers: rebuild for Python 3.8.

---
 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 2b531ded9b6..41d87d4ebd0 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.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="sortedcontainers-${version}"
 build_style=python3-module

From 41b4d555321b7d4c1b035ab3dd8ac1b6a5bd8fbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 500/871] python-soupsieve: rebuild for Python 3.8.

---
 srcpkgs/python-soupsieve/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-soupsieve/template b/srcpkgs/python-soupsieve/template
index 586553ca759..63b65c5910f 100644
--- a/srcpkgs/python-soupsieve/template
+++ b/srcpkgs/python-soupsieve/template
@@ -1,7 +1,7 @@
 # Template file for 'python-soupsieve'
 pkgname=python-soupsieve
 version=1.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="soupsieve-${version}"
 build_style=python-module

From 033d8993c10d4188a11faea0827c0b43080f7c3f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 501/871] python3-spake2: rebuild for Python 3.8.

---
 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 ff83afed1d6..dc0cdced747 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=1
+revision=2
 archs=noarch
 wrksrc="python-spake2-${version}"
 build_style=python3-module

From 9c8170dcff7be06d2901e47ad836aadc5a8abcc5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 502/871] python-sphinx_rtd_theme: rebuild for Python 3.8.

---
 srcpkgs/python-sphinx_rtd_theme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinx_rtd_theme/template b/srcpkgs/python-sphinx_rtd_theme/template
index 90def1c9d1d..ebd4f13da8f 100644
--- a/srcpkgs/python-sphinx_rtd_theme/template
+++ b/srcpkgs/python-sphinx_rtd_theme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinx_rtd_theme'
 pkgname=python-sphinx_rtd_theme
 version=0.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinx_rtd_theme-${version}"
 build_style=python-module

From 4f0cbca2d9fed978866c5245bbd3bd62deddc90b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 503/871] python-sphinxcontrib: rebuild for Python 3.8.

---
 srcpkgs/python-sphinxcontrib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib/template b/srcpkgs/python-sphinxcontrib/template
index ce3befc56d7..c6789cc77f5 100644
--- a/srcpkgs/python-sphinxcontrib/template
+++ b/srcpkgs/python-sphinxcontrib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib'
 pkgname=python-sphinxcontrib
 version=1.0
-revision=2
+revision=3
 archs=noarch
 create_wrksrc=yes
 pycompile_module="sphinxcontrib"

From 6db0fb9b5aa64fe98c027afdf80526bab481ef19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 504/871] python-sphinxcontrib-websupport: rebuild for Python
 3.8.

---
 srcpkgs/python-sphinxcontrib-websupport/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib-websupport/template b/srcpkgs/python-sphinxcontrib-websupport/template
index 2236e50b25b..5387dec6519 100644
--- a/srcpkgs/python-sphinxcontrib-websupport/template
+++ b/srcpkgs/python-sphinxcontrib-websupport/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib-websupport'
 pkgname=python-sphinxcontrib-websupport
 version=1.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinxcontrib-websupport-${version}"
 build_style=python-module

From 260c26299919df4bc92dbba7c99a8257b8fa0076 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 505/871] python-sqlalchemy-migrate: rebuild for Python 3.8.

---
 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 cfdf6166695..bb002660c0f 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=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 3a0e2a10f0aac0e672cbd7a60f2921b6abe69367 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 506/871] python-sqlparse: rebuild for Python 3.8.

---
 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 29a477db392..0f8c6f8ea2e 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=1
+revision=2
 archs=noarch
 wrksrc="sqlparse-${version}"
 build_style=python-module

From fcb19c895342c074087e7bfc0a7a1e449adb19b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 507/871] python-stem: rebuild for Python 3.8.

---
 srcpkgs/python-stem/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index e04ae0a848c..e16e79d84bb 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stem'
 pkgname=python-stem
 version=1.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stem-${version/b/}"
 build_style=python-module

From 01c92426aaa207fab5a2e7f09c408d1010646ccb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 508/871] python-stevedore: rebuild for Python 3.8.

---
 srcpkgs/python-stevedore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stevedore/template b/srcpkgs/python-stevedore/template
index 281538211af..4f781304d3f 100644
--- a/srcpkgs/python-stevedore/template
+++ b/srcpkgs/python-stevedore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stevedore'
 pkgname=python-stevedore
 version=1.30.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stevedore-${version}"
 build_style=python-module

From 3b3e59e735db72dd1e706bbb8dfa324f2527f6ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 509/871] python-stormssh: rebuild for Python 3.8.

---
 srcpkgs/python-stormssh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stormssh/template b/srcpkgs/python-stormssh/template
index 250e838e582..11f63f67bba 100644
--- a/srcpkgs/python-stormssh/template
+++ b/srcpkgs/python-stormssh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stormssh'
 pkgname=python-stormssh
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=storm-${version}
 build_style=python-module

From 0235788df4a40b6af2d014edcf779cce9e5ad59b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 510/871] python-subliminal: rebuild for Python 3.8.

---
 srcpkgs/python-subliminal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-subliminal/template b/srcpkgs/python-subliminal/template
index 035ca844880..216c11bb4c0 100644
--- a/srcpkgs/python-subliminal/template
+++ b/srcpkgs/python-subliminal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-subliminal'
 pkgname=python-subliminal
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="subliminal-${version}"
 build_style=python-module

From 4e88080f11e9171a69cf34cfc0204bfc75056a53 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 511/871] python-sympy: rebuild for Python 3.8.

---
 srcpkgs/python-sympy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sympy/template b/srcpkgs/python-sympy/template
index 21d8cf69840..d41c8a392b0 100644
--- a/srcpkgs/python-sympy/template
+++ b/srcpkgs/python-sympy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sympy'
 pkgname=python-sympy
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="sympy-${version}"
 build_style=python-module

From 7ea11c71db7707f71d724541bac0b82465103417 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 512/871] python-tables: rebuild for Python 3.8.

---
 srcpkgs/python-tables/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tables/template b/srcpkgs/python-tables/template
index 644ae3d1a35..5f61fe8fb88 100644
--- a/srcpkgs/python-tables/template
+++ b/srcpkgs/python-tables/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tables'
 pkgname=python-tables
 version=3.5.2
-revision=1
+revision=2
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="tables"

From 7697613b6ab0c2f2db86d9288105c947a5fbb4ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 513/871] python3-tabulate: rebuild for Python 3.8.

---
 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 19b61edd88c..6f142077300 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="tabulate-${version}"
 build_style=python3-module

From b0d36b462d01ad60b99f72f63fa92834e38d7544 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 514/871] python-tempita: rebuild for Python 3.8.

---
 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 9e7123fbd9d..c1c75ee1cac 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=3
+revision=4
 archs=noarch
 wrksrc="Tempita-${version}"
 build_style=python-module

From 27cf54395776eed15435491bcef50ccfe3ed9dbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 515/871] python-tempora: rebuild for Python 3.8.

---
 srcpkgs/python-tempora/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tempora/template b/srcpkgs/python-tempora/template
index fa1cbd4fbd1..866d163f367 100644
--- a/srcpkgs/python-tempora/template
+++ b/srcpkgs/python-tempora/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tempora'
 pkgname=python-tempora
 version=1.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tempora-${version}"
 build_style=python-module

From cebddc70c77196929eb9ac2c2c2861ed4a78e0e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 516/871] python-termcolor: rebuild for Python 3.8.

---
 srcpkgs/python-termcolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-termcolor/template b/srcpkgs/python-termcolor/template
index 877e5e59d9b..73c18fc79eb 100644
--- a/srcpkgs/python-termcolor/template
+++ b/srcpkgs/python-termcolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-termcolor'
 pkgname=python-termcolor
 version=1.1.0
-revision=5
+revision=6
 archs=noarch
 wrksrc="termcolor-${version}"
 build_style=python-module

From 749d278b76cf89afb7a27297e5d42e0ce7d207a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 517/871] python-terminado: rebuild for Python 3.8.

---
 srcpkgs/python-terminado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-terminado/template b/srcpkgs/python-terminado/template
index cdfe6163991..d649364d88d 100644
--- a/srcpkgs/python-terminado/template
+++ b/srcpkgs/python-terminado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-terminado'
 pkgname=python-terminado
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="terminado-${version}"
 build_style=python-module

From a940ff3c7470caa4b392994423e7ee1b3a31c4f1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 518/871] python3-terminaltables: rebuild for Python 3.8.

---
 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 60ada7ffcb6..4f781eab76d 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=1
+revision=2
 archs=noarch
 wrksrc="terminaltables-${version}"
 build_style=python3-module

From 667b768cdffcd68a7013b57255243658ead4be84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 519/871] python-testpath: rebuild for Python 3.8.

---
 srcpkgs/python-testpath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-testpath/template b/srcpkgs/python-testpath/template
index bac7270fd40..abfc59900c0 100644
--- a/srcpkgs/python-testpath/template
+++ b/srcpkgs/python-testpath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-testpath'
 pkgname=python-testpath
 version=0.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="testpath-${version}"
 build_style=python-module

From a55167dd81b684946aa0b985a5e50ec2c9896551 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 520/871] python3-text-unidecode: rebuild for Python 3.8.

---
 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 77163d9e0b6..b3b5aa95575 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="text-unidecode-${version}"
 build_style=python3-module

From 13593f93365ea58b9dc1ef5c905368131b2afae3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 521/871] python-texttable: rebuild for Python 3.8.

---
 srcpkgs/python-texttable/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-texttable/template b/srcpkgs/python-texttable/template
index a9c5ec66db1..24bac87af6a 100644
--- a/srcpkgs/python-texttable/template
+++ b/srcpkgs/python-texttable/template
@@ -1,7 +1,7 @@
 # Template file for 'python-texttable'
 pkgname=python-texttable
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="texttable-${version}"
 build_style=python-module

From 31501c342cc4031f52acc442df926b993968e96d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 522/871] python3-tinycss: rebuild for Python 3.8.

---
 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 91fda6f808d..3b4717c234e 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=1
+revision=2
 archs=noarch
 wrksrc=tinycss-${version}
 build_style=python3-module

From 3aff0dbb762fb2771005528f6bb387eb10a83990 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 523/871] python-tmuxp: rebuild for Python 3.8.

---
 srcpkgs/python-tmuxp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tmuxp/template b/srcpkgs/python-tmuxp/template
index 00c86730cbe..45b4a9772b2 100644
--- a/srcpkgs/python-tmuxp/template
+++ b/srcpkgs/python-tmuxp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tmuxp'
 pkgname=python-tmuxp
 version=1.5.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="tmuxp-${version}"
 build_style=python-module

From f74c8035f4337b52cad83f4ead1d49e16c484b9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 524/871] python-toml: rebuild for Python 3.8.

---
 srcpkgs/python-toml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-toml/template b/srcpkgs/python-toml/template
index 0eee1b0b2c3..2fd6eaa0cea 100644
--- a/srcpkgs/python-toml/template
+++ b/srcpkgs/python-toml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-toml'
 pkgname=python-toml
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="toml-${version}"
 build_style=python-module

From 8e9a479244fd96d1609292a8598db0a81fa66222 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 525/871] python-tornado: rebuild for Python 3.8.

---
 srcpkgs/python-tornado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tornado/template b/srcpkgs/python-tornado/template
index 7e5700177f5..bd558d251f5 100644
--- a/srcpkgs/python-tornado/template
+++ b/srcpkgs/python-tornado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tornado'
 pkgname=python-tornado
 version=5.1.1
-revision=1
+revision=2
 wrksrc="tornado-${version}"
 build_style=python-module
 pycompile_module="tornado"

From da8fadc40c32d7d5c4d8361376fe7800cb4b7330 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 526/871] python-tqdm: rebuild for Python 3.8.

---
 srcpkgs/python-tqdm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tqdm/template b/srcpkgs/python-tqdm/template
index 5929657c686..c1d8287265b 100644
--- a/srcpkgs/python-tqdm/template
+++ b/srcpkgs/python-tqdm/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tqdm'
 pkgname=python-tqdm
 version=4.37.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="tqdm-${version}"
 build_style=python-module

From a5175f174d41d191f8fd78291f5edfa64d5ac758 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 527/871] python-traitlets: rebuild for Python 3.8.

---
 srcpkgs/python-traitlets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-traitlets/template b/srcpkgs/python-traitlets/template
index d2d1b85edb6..797dd0268da 100644
--- a/srcpkgs/python-traitlets/template
+++ b/srcpkgs/python-traitlets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-traitlets'
 pkgname=python-traitlets
 version=4.3.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="traitlets-${version}"
 build_style=python-module

From 000afc95c06dc4114538e2fcdd33477f8d2f1d95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 528/871] python3-transifex-client: rebuild for Python 3.8.

---
 srcpkgs/python3-transifex-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-transifex-client/template b/srcpkgs/python3-transifex-client/template
index 77ca15313e0..5ea767b5a7d 100644
--- a/srcpkgs/python3-transifex-client/template
+++ b/srcpkgs/python3-transifex-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-transifex-client'
 pkgname=python3-transifex-client
 version=0.13.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="transifex-client-${version}"
 build_style=python3-module

From 920dca444d6be978fea7e1f481e29dc1e2a3aa16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 529/871] python3-treq: rebuild for Python 3.8.

---
 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 8f210d13489..e46e1e7e7a5 100644
--- a/srcpkgs/python3-treq/template
+++ b/srcpkgs/python3-treq/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-treq'
 pkgname=python3-treq
 version=18.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="treq-${version}"
 build_style=python3-module

From abee9ce044b87930c0e6676d72d74080395480cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 530/871] python-ttystatus: rebuild for Python 3.8.

---
 srcpkgs/python-ttystatus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ttystatus/template b/srcpkgs/python-ttystatus/template
index 9fbefad3461..43e87ddcdf0 100644
--- a/srcpkgs/python-ttystatus/template
+++ b/srcpkgs/python-ttystatus/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ttystatus'
 pkgname=python-ttystatus
 version=0.38
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="ttystatus"

From 067cf3b3d85f83e694abf2321fd746aae2383731 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 531/871] python-twitter: rebuild for Python 3.8.

---
 srcpkgs/python-twitter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-twitter/template b/srcpkgs/python-twitter/template
index c299b28dedf..e5e7194078a 100644
--- a/srcpkgs/python-twitter/template
+++ b/srcpkgs/python-twitter/template
@@ -1,7 +1,7 @@
 # Template file for 'python-twitter'
 pkgname=python-twitter
 version=3.5
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="twitter"

From 0a93cdcdfd93ae270523449e82e79948dd311361 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 532/871] python3-txacme: rebuild for Python 3.8.

---
 srcpkgs/python3-txacme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-txacme/template b/srcpkgs/python3-txacme/template
index e6becf593e7..c678addda4d 100644
--- a/srcpkgs/python3-txacme/template
+++ b/srcpkgs/python3-txacme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txacme'
 pkgname=python3-txacme
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="txacme-${version}"
 build_style=python3-module

From 70a52ad39794f289a44f6b9b707dae29ba129546 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 533/871] python3-txaio: rebuild for Python 3.8.

---
 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 fa13338cd30..8163f5c90fd 100644
--- a/srcpkgs/python3-txaio/template
+++ b/srcpkgs/python3-txaio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txaio'
 pkgname=python3-txaio
 version=18.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="txaio-${version}"
 build_style=python3-module

From 50defe3689bf6a3d3ac1c8af415e8b42cf0202b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 534/871] python3-txtorcon: rebuild for Python 3.8.

---
 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 3018a65e457..a10ab59c582 100644
--- a/srcpkgs/python3-txtorcon/template
+++ b/srcpkgs/python3-txtorcon/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txtorcon'
 pkgname=python3-txtorcon
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="txtorcon-${version}"
 build_style=python3-module

From eb6088ce83e92228d0bb13af42e3a889b3fbf7b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 535/871] python3-typed-ast: update to 1.4.0.

---
 srcpkgs/python3-typed-ast/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-typed-ast/template b/srcpkgs/python3-typed-ast/template
index ec5b5b9df11..b38f0fe065c 100644
--- a/srcpkgs/python3-typed-ast/template
+++ b/srcpkgs/python3-typed-ast/template
@@ -1,8 +1,8 @@
 # Template file for 'python3-typed-ast'
 pkgname=python3-typed-ast
-version=1.3.4
+version=1.4.0
 revision=1
-wrksrc="typed-ast-${version}"
+wrksrc="typed_ast-${version}"
 build_style=python3-module
 pycompile_module="typed_ast"
 hostmakedepends="python3-devel python3-setuptools"
@@ -11,6 +11,6 @@ short_desc="Ast module with type comment support"
 maintainer="whoami <whoami@systemli.org>"
 license="Apache-2.0"
 homepage="https://github.com/python/typed_ast"
-distfiles="${PYPI_SITE}/t/typed-ast/typed-ast-${version}.tar.gz"
-checksum=68c362848d9fb71d3c3e5f43c09974a0ae319144634e7a47db62f0f2a54a7fa7
+distfiles="${PYPI_SITE}/t/typed-ast/typed_ast-${version}.tar.gz"
+checksum=66480f95b8167c9c5c5c87f32cf437d585937970f3fc24386f313a4c97b44e34
 nocross="https://travis-ci.org/void-linux/void-packages/jobs/509366923#L1009"

From 8ac3986b89db5652b6dab7abd5c65e60ca6f4a7d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 536/871] python3-typing_extensions: rebuild for Python 3.8.

---
 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 ab96df4eb2d..605af46216d 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=3.6.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module

From c42a43fd4a65c92f284e73370503d26cbd1d3fe7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 537/871] python-tzlocal: rebuild for Python 3.8.

---
 srcpkgs/python-tzlocal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tzlocal/template b/srcpkgs/python-tzlocal/template
index 396eada3982..684d2a21b40 100644
--- a/srcpkgs/python-tzlocal/template
+++ b/srcpkgs/python-tzlocal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tzlocal'
 pkgname=python-tzlocal
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tzlocal-${version}"
 build_style=python-module

From f0fc716ef64d99eb0016ecb1d70ee7b369c6b778 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 538/871] python-unittest-mixins: rebuild for Python 3.8.

---
 srcpkgs/python-unittest-mixins/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-unittest-mixins/template b/srcpkgs/python-unittest-mixins/template
index 6f7c7204112..2ff5c497523 100644
--- a/srcpkgs/python-unittest-mixins/template
+++ b/srcpkgs/python-unittest-mixins/template
@@ -1,7 +1,7 @@
 # Template file for 'python-unittest-mixins'
 pkgname=python-unittest-mixins
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 71ccff6b64c3e5ffb3c8f1b5844406de4a593099 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 539/871] python3-unpaddedbase64: rebuild for Python 3.8.

---
 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 37df2c1d642..06a47db3b64 100644
--- a/srcpkgs/python3-unpaddedbase64/template
+++ b/srcpkgs/python3-unpaddedbase64/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-unpaddedbase64'
 pkgname=python3-unpaddedbase64
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-unpaddedbase64-${version}"
 build_style=python3-module

From 183c546e4b4aa181ece26232a838ac75befb8657 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 540/871] python-urbandict: rebuild for Python 3.8.

---
 srcpkgs/python-urbandict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urbandict/template b/srcpkgs/python-urbandict/template
index ff09e963fa7..ed359c744be 100644
--- a/srcpkgs/python-urbandict/template
+++ b/srcpkgs/python-urbandict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urbandict'
 pkgname=python-urbandict
 version=0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="urbandict-${version}"
 build_style=python-module

From fdc64f72174f9473a3f22a7128b6162f2241f629 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 541/871] python-uritemplate: rebuild for Python 3.8.

---
 srcpkgs/python-uritemplate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-uritemplate/template b/srcpkgs/python-uritemplate/template
index 7a530fee03b..cdcda419efe 100644
--- a/srcpkgs/python-uritemplate/template
+++ b/srcpkgs/python-uritemplate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-uritemplate'
 pkgname=python-uritemplate
 version=3.0.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 2c8d1d8d41f6637fd763723711fe7c1688173883 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 542/871] python3-urlgrabber: rebuild for Python 3.8.

---
 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 087087d5ed1..eef67c8e13c 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=1
+revision=2
 archs=noarch
 wrksrc="urlgrabber-${version}"
 build_style=python3-module

From 53e0b585e80b4815694c3a8a941b536bb59be728 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 543/871] python-urllib3: rebuild for Python 3.8.

---
 srcpkgs/python-urllib3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urllib3/template b/srcpkgs/python-urllib3/template
index 8056518c9c1..1ff21f7555d 100644
--- a/srcpkgs/python-urllib3/template
+++ b/srcpkgs/python-urllib3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urllib3'
 pkgname=python-urllib3
 version=1.25.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="urllib3-${version}"
 build_style=python-module

From cfba0cf9e2dd26c50c95065a4918a45b31b83288 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 544/871] python-urwid: rebuild for Python 3.8.

---
 srcpkgs/python-urwid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwid/template b/srcpkgs/python-urwid/template
index ae6722b1135..7adf8b76b96 100644
--- a/srcpkgs/python-urwid/template
+++ b/srcpkgs/python-urwid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwid'
 pkgname=python-urwid
 version=2.0.1
-revision=2
+revision=3
 wrksrc="urwid-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"

From c1f657123c36154a1d3e4d9a8815df9da1cdeea6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 545/871] python-urwidtrees: rebuild for Python 3.8.

---
 srcpkgs/python-urwidtrees/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwidtrees/template b/srcpkgs/python-urwidtrees/template
index be0e906addf..62d214489e2 100644
--- a/srcpkgs/python-urwidtrees/template
+++ b/srcpkgs/python-urwidtrees/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwidtrees'
 pkgname=python-urwidtrees
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="urwidtrees-${version}"
 build_style=python-module

From 1fa93eff8a4b3d307edfdd71dbc786492b3972dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 546/871] python3-usb: rebuild for Python 3.8.

---
 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 a081ee5ba76..d26c24df669 100644
--- a/srcpkgs/python3-usb/template
+++ b/srcpkgs/python3-usb/template
@@ -2,7 +2,7 @@
 pkgname=python3-usb
 _pkgname=pyusb
 version=1.0.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From 42c0ac8e5e6cf1ad713852559ad6f7251b228542 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 547/871] python-utils: rebuild for Python 3.8.

---
 srcpkgs/python-utils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-utils/template b/srcpkgs/python-utils/template
index e881e70c0f0..6745df121a6 100644
--- a/srcpkgs/python-utils/template
+++ b/srcpkgs/python-utils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-utils'
 pkgname=python-utils
 version=2.3.0
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 wrksrc="python-utils-${version}"

From 52ca3e3f335abc4dce406b57c380ce61013d8c10 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 548/871] python3-validators: rebuild for Python 3.8.

---
 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 29b9fc74c30..6d9da94c4bb 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.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="validators-${version}"
 build_style=python3-module

From 556aab1f9c6171b69ea53ad157766d90b84b7b01 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 549/871] python3-vdf: rebuild for Python 3.8.

---
 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 44c635ecdd6..88bd521beaa 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.2
-revision=1
+revision=2
 wrksrc=vdf-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From c3081ca9efc1796ad1cdb23b2dd1ac97e9d10ef6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 550/871] python-vint: rebuild for Python 3.8.

---
 srcpkgs/python-vint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vint/template b/srcpkgs/python-vint/template
index 4ca693f7eb2..62c663bf18e 100644
--- a/srcpkgs/python-vint/template
+++ b/srcpkgs/python-vint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vint'
 pkgname=python-vint
 version=0.3.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="vim-vint-${version}"
 build_style=python-module

From 3910aa626aff75da0618e1147112725736851a98 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 551/871] python-virtualenv: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv/template b/srcpkgs/python-virtualenv/template
index 1f9166e79a2..cdeda28c53e 100644
--- a/srcpkgs/python-virtualenv/template
+++ b/srcpkgs/python-virtualenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv'
 pkgname=python-virtualenv
 version=16.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="virtualenv-${version}"
 build_style=python-module

From f6bb7b3ba690eb6409d9614f184bb1c17241895f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 552/871] python-virtualenv-clone: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv-clone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv-clone/template b/srcpkgs/python-virtualenv-clone/template
index 3c9f601bc6e..273b9ddf6d3 100644
--- a/srcpkgs/python-virtualenv-clone/template
+++ b/srcpkgs/python-virtualenv-clone/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv-clone'
 pkgname=python-virtualenv-clone
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 6d5c884190f63850dfee6b90f5fce5764a24d670 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 553/871] python3-virustotal-api: rebuild for Python 3.8.

---
 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 2bc6592c91f..fc362c03b39 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=1
+revision=2
 archs=noarch
 wrksrc="virustotal-api-${version}"
 build_style=python3-module

From 009c547a7629b16bc57f3e3f8df3e8947c0feedf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 554/871] python-vispy: rebuild for Python 3.8.

---
 srcpkgs/python-vispy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vispy/template b/srcpkgs/python-vispy/template
index b757e5a271f..624ade6f12b 100644
--- a/srcpkgs/python-vispy/template
+++ b/srcpkgs/python-vispy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vispy'
 pkgname=python-vispy
 version=0.6.1
-revision=1
+revision=2
 wrksrc="vispy-${version}"
 build_style=python-module
 pycompile_module="vispy"

From d1fc691d511c1cd571f91a692c1861e9f571c136 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 555/871] python-vobject: rebuild for Python 3.8.

---
 srcpkgs/python-vobject/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vobject/template b/srcpkgs/python-vobject/template
index 54f575aa1a1..2c1c215527c 100644
--- a/srcpkgs/python-vobject/template
+++ b/srcpkgs/python-vobject/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vobject'
 pkgname=python-vobject
 version=0.9.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="vobject-${version}"
 build_style=python-module

From e22787ac1da8841ee575a84b450c3e76a61a5671 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 556/871] python-voluptuous: rebuild for Python 3.8.

---
 srcpkgs/python-voluptuous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-voluptuous/template b/srcpkgs/python-voluptuous/template
index fd44ae2e324..1dd5de27491 100644
--- a/srcpkgs/python-voluptuous/template
+++ b/srcpkgs/python-voluptuous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-voluptuous'
 pkgname=python-voluptuous
 version=0.11.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="voluptuous-${version}"
 build_style=python-module

From dbb535fe1cf0dd25ea20e6756ce9ac1b161e7337 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 557/871] python-watchdog: rebuild for Python 3.8.

---
 srcpkgs/python-watchdog/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchdog/template b/srcpkgs/python-watchdog/template
index f6027c3b5ca..2eea6397f00 100644
--- a/srcpkgs/python-watchdog/template
+++ b/srcpkgs/python-watchdog/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchdog'
 pkgname=python-watchdog
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="watchdog-${version}"
 build_style=python-module

From 3a76cc584138fb13e2e34b79f485022223ccc237 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 558/871] python-watchman: rebuild for Python 3.8.

---
 srcpkgs/python-watchman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchman/template b/srcpkgs/python-watchman/template
index 4c41c275ca2..97400668d64 100644
--- a/srcpkgs/python-watchman/template
+++ b/srcpkgs/python-watchman/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchman'
 pkgname=python-watchman
 version=1.4.1
-revision=2
+revision=3
 wrksrc="pywatchman-${version}"
 build_style=python-module
 pycompile_module="pywatchman"

From fc6057f329ad9cd6eb9fbb469221f95e31beca77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 559/871] python-wcwidth: rebuild for Python 3.8.

---
 srcpkgs/python-wcwidth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wcwidth/template b/srcpkgs/python-wcwidth/template
index 34bc22cbcb6..8ec6d17450c 100644
--- a/srcpkgs/python-wcwidth/template
+++ b/srcpkgs/python-wcwidth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wcwidth'
 pkgname=python-wcwidth
 version=0.1.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="wcwidth-${version}"
 build_style=python-module

From a089c4cbc34d7c97060d3cc14493c7f670a13a6d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 560/871] python-webassets: rebuild for Python 3.8.

---
 srcpkgs/python-webassets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webassets/template b/srcpkgs/python-webassets/template
index 3ad5475bd17..789be9684f7 100644
--- a/srcpkgs/python-webassets/template
+++ b/srcpkgs/python-webassets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webassets'
 pkgname=python-webassets
 version=0.12.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From f5bb2cdf68ed0c7a669d8f79c3e41c2d43cb9bf5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 561/871] python-webencodings: rebuild for Python 3.8.

---
 srcpkgs/python-webencodings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webencodings/template b/srcpkgs/python-webencodings/template
index 5a05af10835..f047a9e3c52 100644
--- a/srcpkgs/python-webencodings/template
+++ b/srcpkgs/python-webencodings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webencodings'
 pkgname=python-webencodings
 version=0.5.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="webencodings-${version}"
 build_style=python-module

From 8805ef679bfa789d3a9f1a4765ea82e04e89a421 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 562/871] python-websocket-client: rebuild for Python 3.8.

---
 srcpkgs/python-websocket-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-websocket-client/template b/srcpkgs/python-websocket-client/template
index 8aa276655cb..3df8ab42b36 100644
--- a/srcpkgs/python-websocket-client/template
+++ b/srcpkgs/python-websocket-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-websocket-client'
 pkgname=python-websocket-client
 version=0.56.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="websocket_client-${version}"
 build_style=python-module

From 452927f77b0ee2fe846f3faa53d7243908978ada Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 563/871] python-wheel: rebuild for Python 3.8.

---
 srcpkgs/python-wheel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wheel/template b/srcpkgs/python-wheel/template
index 11c50bd65e6..11aeaf42316 100644
--- a/srcpkgs/python-wheel/template
+++ b/srcpkgs/python-wheel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wheel'
 pkgname=python-wheel
 version=0.32.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="wheel-${version}"
 build_style=python-module

From 8e13daafedb2c10a3ce62c0bea58b6c6880b1690 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 564/871] python-wikipedia: rebuild for Python 3.8.

---
 srcpkgs/python-wikipedia/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wikipedia/template b/srcpkgs/python-wikipedia/template
index e6ebf65f7c2..f8a69755b74 100644
--- a/srcpkgs/python-wikipedia/template
+++ b/srcpkgs/python-wikipedia/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wikipedia'
 pkgname=python-wikipedia
 version=1.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="wikipedia-${version}"
 build_style=python-module

From b2ff9a20cda5efceda356fc2e3d97ca60bb522f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 565/871] python-wrapt: rebuild for Python 3.8.

---
 srcpkgs/python-wrapt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wrapt/template b/srcpkgs/python-wrapt/template
index a3a237aa08d..c2d2850bf5a 100644
--- a/srcpkgs/python-wrapt/template
+++ b/srcpkgs/python-wrapt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wrapt'
 pkgname=python-wrapt
 version=1.10.11
-revision=3
+revision=4
 wrksrc="wrapt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From a3e72d1cf80301e09bebc5522d7ae6faa1f347fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 566/871] python-wsproto: rebuild for Python 3.8.

---
 srcpkgs/python-wsproto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wsproto/template b/srcpkgs/python-wsproto/template
index 582471ae637..f8b131104e6 100644
--- a/srcpkgs/python-wsproto/template
+++ b/srcpkgs/python-wsproto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wsproto'
 pkgname=python-wsproto
 version=0.15.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="wsproto-${version}"
 build_style=python-module

From 23280059906a330d95f6d50e12652ceda6467749 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 567/871] python-xapp: rebuild for Python 3.8.

---
 srcpkgs/python-xapp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xapp/template b/srcpkgs/python-xapp/template
index 9b6938113f2..798041eb946 100644
--- a/srcpkgs/python-xapp/template
+++ b/srcpkgs/python-xapp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xapp'
 pkgname=python-xapp
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="xapp"

From e9a589a602a1dbcff1b7abc4bffc0ba91fd5d42b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 568/871] python-xdg: rebuild for Python 3.8.

---
 srcpkgs/python-xdg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xdg/template b/srcpkgs/python-xdg/template
index afa6c180043..4e819c8bec7 100644
--- a/srcpkgs/python-xdg/template
+++ b/srcpkgs/python-xdg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xdg'
 pkgname=python-xdg
 version=0.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyxdg-${version}"
 build_style=python-module

From 8af2dc09e7ddc01fd6fc02a9f6f3b0a7bf80c3f5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 569/871] python-xlib: rebuild for Python 3.8.

---
 srcpkgs/python-xlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xlib/template b/srcpkgs/python-xlib/template
index 1f97c4117d4..e67d1d82e73 100644
--- a/srcpkgs/python-xlib/template
+++ b/srcpkgs/python-xlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xlib'
 pkgname=python-xlib
 version=0.25
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="Xlib"

From b80eff70cda4cac4e24e23aec18c7411af791fe6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 570/871] python-xmldiff: rebuild for Python 3.8.

---
 srcpkgs/python-xmldiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmldiff/template b/srcpkgs/python-xmldiff/template
index a0a8004ea7b..4f3cc2d27b7 100644
--- a/srcpkgs/python-xmldiff/template
+++ b/srcpkgs/python-xmldiff/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmldiff'
 pkgname=python-xmldiff
 version=2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmldiff-${version}"
 build_style=python-module

From 0b791ceea0102394e26aaf84e1a50e3445830e00 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 571/871] python-xmltodict: rebuild for Python 3.8.

---
 srcpkgs/python-xmltodict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmltodict/template b/srcpkgs/python-xmltodict/template
index a48e6d46aa6..b3d7ef042e8 100644
--- a/srcpkgs/python-xmltodict/template
+++ b/srcpkgs/python-xmltodict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmltodict'
 pkgname=python-xmltodict
 version=0.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmltodict-${version}"
 build_style=python-module

From b0f7877195e6ecc572dd4a7b984b6167756fcee2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 572/871] python-yaml: rebuild for Python 3.8.

---
 srcpkgs/python-yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yaml/template b/srcpkgs/python-yaml/template
index 8a7caf1d99e..e3bad0ae59b 100644
--- a/srcpkgs/python-yaml/template
+++ b/srcpkgs/python-yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yaml'
 pkgname=python-yaml
 version=5.1.2
-revision=1
+revision=2
 wrksrc="PyYAML-${version}"
 build_style=python-module
 pycompile_module="yaml"

From ed136b13ac87c5546b27bedb2527887b34eed679 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 573/871] python-yamllint: rebuild for Python 3.8.

---
 srcpkgs/python-yamllint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yamllint/template b/srcpkgs/python-yamllint/template
index 1a05e1043bb..d0b51ba637a 100644
--- a/srcpkgs/python-yamllint/template
+++ b/srcpkgs/python-yamllint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yamllint'
 pkgname=python-yamllint
 version=1.15.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="yamllint-${version}"
 build_style=python-module

From bc739f5ea0486a44053dab1e8f1901a496a474ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 574/871] python3-yarl: rebuild for Python 3.8.

---
 srcpkgs/python3-yarl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-yarl/template b/srcpkgs/python3-yarl/template
index 222f176cfcf..ecb79a3cc9c 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.3.0
-revision=2
+revision=3
 wrksrc="yarl-${version}"
 build_style=python3-module
 pycompile_module="yarl"

From 11efe27332143b964d589b1044d923dd67ea7742 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 575/871] python-zc.lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-zc.lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zc.lockfile/template b/srcpkgs/python-zc.lockfile/template
index cb0bee99506..b77071af04f 100644
--- a/srcpkgs/python-zc.lockfile/template
+++ b/srcpkgs/python-zc.lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zc.lockfile'
 pkgname=python-zc.lockfile
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 4bbbbe05ecc54b247818b6b388dd87412c1e4ed3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 576/871] python3-zeroconf: rebuild for Python 3.8.

---
 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 497a8bc6b69..dda37bd3dc4 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.23.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-zeroconf-${version}"
 build_style=python3-module

From 5fead2821ee308294055874b841272b2550d14ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 577/871] python3-zipp: rebuild for Python 3.8.

---
 srcpkgs/python3-zipp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-zipp/template b/srcpkgs/python3-zipp/template
index 8445c10825c..ba682915beb 100644
--- a/srcpkgs/python3-zipp/template
+++ b/srcpkgs/python3-zipp/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-zipp'
 pkgname=python3-zipp
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="zipp-${version}"
 build_style=python3-module

From 304437219f4f2b901d3fc26daafb4289ccb81c4a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 578/871] python-zipstream: rebuild for Python 3.8.

---
 srcpkgs/python-zipstream/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zipstream/template b/srcpkgs/python-zipstream/template
index 89079e21b22..2c7390127ac 100644
--- a/srcpkgs/python-zipstream/template
+++ b/srcpkgs/python-zipstream/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zipstream'
 pkgname=python-zipstream
 version=1.1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="python-zipstream-${version}"
 build_style=python-module

From 080f02d6fb2fb32a1f1c315fd1b22e01aa05e307 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 579/871] python3-zope.cachedescriptors: rebuild for Python
 3.8.

---
 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 bdd5ef41e21..1f1fae5b27b 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.3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="zope.cachedescriptors-${version}"
 build_style=python3-module

From bcd48070edafecdb2233930f04b5f3d949758dda Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 580/871] python-zope.component: rebuild for Python 3.8.

---
 srcpkgs/python-zope.component/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.component/template b/srcpkgs/python-zope.component/template
index 7cea5b9d71d..66ef109a4aa 100644
--- a/srcpkgs/python-zope.component/template
+++ b/srcpkgs/python-zope.component/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.component'
 pkgname=python-zope.component
 version=4.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5b5681822abb8ae400a9004e7e6a77959e2e4199 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 581/871] python-zope.event: rebuild for Python 3.8.

---
 srcpkgs/python-zope.event/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.event/template b/srcpkgs/python-zope.event/template
index 3c7fb8dfd6e..6518cb4529b 100644
--- a/srcpkgs/python-zope.event/template
+++ b/srcpkgs/python-zope.event/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.event'
 pkgname=python-zope.event
 version=4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 2c8ac286ae92ce399f2b74af37546e6fef5a6a9b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 582/871] python-zope.interface: rebuild for Python 3.8.

---
 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 d3c57be85f7..1dbcbecd377 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=4.6.0
-revision=2
+revision=3
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="zope"

From 748a51eab524adeea7e721748f2f7d42722098f8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 583/871] python3-pivy: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-pivy/patches/73cd928f.patch | 36 +++++++++++++++++++++
 srcpkgs/python3-pivy/template               |  2 +-
 2 files changed, 37 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/python3-pivy/patches/73cd928f.patch

diff --git a/srcpkgs/python3-pivy/patches/73cd928f.patch b/srcpkgs/python3-pivy/patches/73cd928f.patch
new file mode 100644
index 00000000000..edff803822a
--- /dev/null
+++ b/srcpkgs/python3-pivy/patches/73cd928f.patch
@@ -0,0 +1,36 @@
+From 73cd928fe1a9c2abbe6f28844a7fc695ad11d7cf Mon Sep 17 00:00:00 2001
+From: Peter Lama <peterldev94@gmail.com>
+Date: Fri, 24 Aug 2018 17:25:47 -0700
+Subject: [PATCH] Fix issue #39: PyUnicode_AsUTF8 returns const char*
+
+Even with python 2, it doesn't seem like char* is needed
+
+--- Inventor/nodes/SoMarkerSet.i
++++ Inventor/nodes/SoMarkerSet.i
+@@ -5,7 +5,7 @@
+         short WIDTH, HEIGHT;
+         size.getValue(WIDTH, HEIGHT);
+         short BYTEWIDTH = (WIDTH + 7) / 2;
+-        char* coin_marker;
++        const char* coin_marker;
+ #ifdef PY_2
+         if (PyString_Check(string))
+         {
+@@ -49,4 +49,4 @@
+         delete[] bitmapbytes;
+         bitmapbytes = NULL;
+     }
+-}
+\ No newline at end of file
++}
+--- Inventor/sensors/SoSensor.i
++++ Inventor/sensors/SoSensor.i
+@@ -4,7 +4,7 @@ SoSensorPythonCB(void * data, SoSensor * sensor)
+ {
+   PyGILState_STATE gil = PyGILState_Ensure();
+   swig_type_info * swig_type = 0;
+-  char * sensor_cast_name = NULL;
++  const char * sensor_cast_name = NULL;
+   PyObject * func, * arglist;
+   PyObject * result, * pysensor;
+ 
diff --git a/srcpkgs/python3-pivy/template b/srcpkgs/python3-pivy/template
index 4a733e805e3..9caa13837e2 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.4
-revision=1
+revision=2
 wrksrc="Coin3D-${pkgname#python3-}-a84100beff22"
 build_style=python3-module
 pycompile_module="pivy"

From 769bb671b5b6d4765fdead14c1669c4c39d4ee1e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 584/871] python-tweepy: update to 3.8.0.

---
 srcpkgs/python-tweepy/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python-tweepy/template b/srcpkgs/python-tweepy/template
index ef61039dac5..4605bbf83ea 100644
--- a/srcpkgs/python-tweepy/template
+++ b/srcpkgs/python-tweepy/template
@@ -1,6 +1,6 @@
 # Template file for 'python-tweepy'
 pkgname=python-tweepy
-version=3.7.0
+version=3.8.0
 revision=1
 archs=noarch
 wrksrc="tweepy-${version}"
@@ -14,8 +14,8 @@ license="MIT"
 homepage="https://github.com/tweepy/tweepy"
 distfiles="${PYPI_SITE}/t/tweepy/tweepy-${version}.tar.gz
  https://raw.githubusercontent.com/tweepy/tweepy/master/LICENSE>LICENSE.txt"
-checksum="fe85a79f58a01dd335968523b91c5fce760e7fe78bf25a6e71c72204fe499d0b
- deeeae0dcc22dbf108a801b8dc4e484bcc1bfb541b1a4f4615ab3e61def44fb5"
+checksum="8abd828ba51a85a2b5bb7373715d6d3bb32d18ac624e3a4db02e4ef8ab48316b
+ bf9bc5b9dcb8421bb3c342bb7fd29194688e1262b50766bd71b21a07461e74b7"
 
 post_install() {
 	vlicense ../LICENSE.txt

From 62e6e052dff40c00e5ed5413d70974c42d62f87f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 585/871] Electron-Cash: rebuild for Python 3.8.

---
 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 2db05c94832..08670c5f08d 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.0.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electroncash electroncash_gui electroncash_plugins"

From 55a3a21566e82a647137e51b9e35c00f5f7f3d91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 586/871] OpenLP: rebuild for Python 3.8.

---
 srcpkgs/OpenLP/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/OpenLP/template b/srcpkgs/OpenLP/template
index fb417f8d05e..ccae6d0282e 100644
--- a/srcpkgs/OpenLP/template
+++ b/srcpkgs/OpenLP/template
@@ -1,7 +1,7 @@
 # Template file for 'OpenLP'
 pkgname=OpenLP
 version=2.4.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="openlp"

From f532cb90d8d12bed22937ef84467f848e5353c15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 587/871] PhotoCollage: rebuild for Python 3.8.

---
 srcpkgs/PhotoCollage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/PhotoCollage/template b/srcpkgs/PhotoCollage/template
index 2c55ca87ce0..9997d1e7d98 100644
--- a/srcpkgs/PhotoCollage/template
+++ b/srcpkgs/PhotoCollage/template
@@ -1,7 +1,7 @@
 # Template file for 'PhotoCollage'
 pkgname=PhotoCollage
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="photocollage"

From f825e782badf4eb089af0f4b60261b48b0521c04 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 588/871] ReText: rebuild for Python 3.8.

---
 srcpkgs/ReText/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ReText/template b/srcpkgs/ReText/template
index cc092ee6a36..a6551fbdf7c 100644
--- a/srcpkgs/ReText/template
+++ b/srcpkgs/ReText/template
@@ -1,7 +1,7 @@
 # Template file for 'ReText'
 pkgname=ReText
 version=7.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ReText"

From a31b922ca44752c041591a8217d30e61b3eff787 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 589/871] SoapySDR: rebuild for Python 3.8.

---
 srcpkgs/SoapySDR/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/SoapySDR/template b/srcpkgs/SoapySDR/template
index 1bb66ce0689..bcfe45dc78a 100644
--- a/srcpkgs/SoapySDR/template
+++ b/srcpkgs/SoapySDR/template
@@ -1,7 +1,7 @@
 # Template file for 'SoapySDR'
 pkgname=SoapySDR
 version=0.7.1
-revision=1
+revision=2
 wrksrc="${pkgname}-soapy-sdr-${version}"
 build_style=cmake
 pycompile_module="SoapySDR.py"

From 3853fa5c0d05a24c6b609f8d02eeef583bc7ceac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 590/871] Solaar: rebuild for Python 3.8.

---
 srcpkgs/Solaar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Solaar/template b/srcpkgs/Solaar/template
index 2e8f4112e0e..86cab83d497 100644
--- a/srcpkgs/Solaar/template
+++ b/srcpkgs/Solaar/template
@@ -1,7 +1,7 @@
 # Template file for 'Solaar'
 pkgname=Solaar
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="hidapi logitech_receiver solaar"

From 753caa59a39ad1aa51e25d37a87a686c13947f41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 591/871] Trimage: rebuild for Python 3.8.

---
 srcpkgs/Trimage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Trimage/template b/srcpkgs/Trimage/template
index 14fc1d1bd1c..c9f4b047ccd 100644
--- a/srcpkgs/Trimage/template
+++ b/srcpkgs/Trimage/template
@@ -1,7 +1,7 @@
 # Template file for 'Trimage'
 pkgname=Trimage
 version=1.0.6
-revision=1
+revision=2
 wrksrc="Trimage-${version}"
 build_style=python3-module
 hostmakedepends="python3"

From 2f3072a9aa0fab9d9988a78673dcd78bd3f5e0e7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 592/871] TwitchNotifier: rebuild for Python 3.8.

---
 srcpkgs/TwitchNotifier/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/TwitchNotifier/template b/srcpkgs/TwitchNotifier/template
index 01153bcc710..3bbba11db49 100644
--- a/srcpkgs/TwitchNotifier/template
+++ b/srcpkgs/TwitchNotifier/template
@@ -1,7 +1,7 @@
 # Template file for 'TwitchNotifier'
 pkgname=TwitchNotifier
 version=0.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-devel"
 makedepends="python3-devel"

From a7a7c61f7dd1feaacd10cff121afa4e7eb8a8479 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 593/871] Uranium: rebuild for Python 3.8.

---
 srcpkgs/Uranium/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Uranium/template b/srcpkgs/Uranium/template
index 193d5e211df..7a9509c2079 100644
--- a/srcpkgs/Uranium/template
+++ b/srcpkgs/Uranium/template
@@ -1,7 +1,7 @@
 # Template file for 'Uranium'
 pkgname=Uranium
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=cmake
 pycompile_module="UM"

From bf34d0d595caf18b7a95ca75e1d91d0c8f19d145 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 594/871] afew: rebuild for Python 3.8.

---
 srcpkgs/afew/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/afew/template b/srcpkgs/afew/template
index a9156bbc902..f4b10098e66 100644
--- a/srcpkgs/afew/template
+++ b/srcpkgs/afew/template
@@ -1,7 +1,7 @@
 # Template file for 'afew'
 pkgname=afew
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="afew"

From 5e119efd40fd8f8d4230952f8c300011d6660e4e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 595/871] alot: rebuild for Python 3.8.

---
 srcpkgs/alot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/alot/template b/srcpkgs/alot/template
index 4ff75637282..c8e29e36297 100644
--- a/srcpkgs/alot/template
+++ b/srcpkgs/alot/template
@@ -1,7 +1,7 @@
 # Template file for 'alot'
 pkgname=alot
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="alot"

From c65c25be21bb375a0476ca031ed78e4d7a4f4140 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 596/871] ansible: rebuild for Python 3.8.

---
 srcpkgs/ansible/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ansible/template b/srcpkgs/ansible/template
index 0a7fcc0b4ec..b3c4bf6bde1 100644
--- a/srcpkgs/ansible/template
+++ b/srcpkgs/ansible/template
@@ -1,7 +1,7 @@
 # Template file for 'ansible'
 pkgname=ansible
 version=2.8.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ansible"

From 5a48ae476267afcedf09c08343290005252b76cd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 597/871] apparmor: rebuild for Python 3.8.

---
 srcpkgs/apparmor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/apparmor/template b/srcpkgs/apparmor/template
index c0ef28bae03..e4f8e3fb3ae 100644
--- a/srcpkgs/apparmor/template
+++ b/srcpkgs/apparmor/template
@@ -1,7 +1,7 @@
 # Template file for 'apparmor'
 pkgname=apparmor
 version=2.13.3
-revision=1
+revision=2
 wrksrc="${pkgname}-v${version}"
 build_wrksrc=libraries/libapparmor
 build_style=gnu-configure

From c167b9da6c61f834a92914682fd04578e956013f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 598/871] arandr: rebuild for Python 3.8.

---
 srcpkgs/arandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/arandr/template b/srcpkgs/arandr/template
index 71c8cbcd6ed..610dbc28bca 100644
--- a/srcpkgs/arandr/template
+++ b/srcpkgs/arandr/template
@@ -1,7 +1,7 @@
 # Template file for 'arandr'
 pkgname=arandr
 version=0.1.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenlayout"

From bba30530daf488b6023298eabe0286ef22dc234b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 599/871] asciinema: rebuild for Python 3.8.

---
 srcpkgs/asciinema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/asciinema/template b/srcpkgs/asciinema/template
index 961b2756301..38b8871753c 100644
--- a/srcpkgs/asciinema/template
+++ b/srcpkgs/asciinema/template
@@ -1,7 +1,7 @@
 # Template file for 'asciinema'
 pkgname=asciinema
 version=2.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="asciinema"

From 1d6b1496186ef841bc1242060c2c7b81e338b365 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 600/871] attic: rebuild for Python 3.8.

---
 srcpkgs/attic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/attic/template b/srcpkgs/attic/template
index 533ef7377bc..ed454302ce4 100644
--- a/srcpkgs/attic/template
+++ b/srcpkgs/attic/template
@@ -1,7 +1,7 @@
 # Template file for 'attic'
 pkgname=attic
 version=0.16
-revision=14
+revision=15
 wrksrc="Attic-$version"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel python3-Sphinx"

From d8ed902e6856e2786c8cb54d894a8c99d1b9016f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 601/871] autorandr: rebuild for Python 3.8.

---
 srcpkgs/autorandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/autorandr/template b/srcpkgs/autorandr/template
index bf38b833632..7f9796be18f 100644
--- a/srcpkgs/autorandr/template
+++ b/srcpkgs/autorandr/template
@@ -1,7 +1,7 @@
 # Template file for 'autorandr'
 pkgname=autorandr
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="autorandr.py"

From e7031a6e7316d513cbb59201107c90b4a57e4fa2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 602/871] avideo: rebuild for Python 3.8.

---
 srcpkgs/avideo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/avideo/template b/srcpkgs/avideo/template
index e4d004aafff..6430d391286 100644
--- a/srcpkgs/avideo/template
+++ b/srcpkgs/avideo/template
@@ -1,7 +1,7 @@
 # Template file for 'avideo'
 pkgname=avideo
 version=2017.9.27
-revision=3
+revision=4
 archs=noarch
 wrksrc="avideo"
 build_style=python3-module

From 4323d91b68da2735bf6055f35404626473ab43ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 603/871] aws-cli: rebuild for Python 3.8.

---
 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 9760121cf36..210fc0e9ff8 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.16.263
-revision=1
+revision=2
 archs=noarch
 wrksrc="aws-cli-${version}"
 build_style=python3-module

From a072a4b78500849e1505140a2a2348f1b87376b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 604/871] bandit: rebuild for Python 3.8.

---
 srcpkgs/bandit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bandit/template b/srcpkgs/bandit/template
index e6c1aa52d7c..d29873ecf61 100644
--- a/srcpkgs/bandit/template
+++ b/srcpkgs/bandit/template
@@ -1,7 +1,7 @@
 # Template file for 'bandit'
 pkgname=bandit
 version=1.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="bandit"

From 9213036d48cfcae05fb72eb57a9d7adf35ef7349 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 605/871] beancount: rebuild for Python 3.8.

---
 srcpkgs/beancount/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beancount/template b/srcpkgs/beancount/template
index b1e2a121668..0ba68fc8f4e 100644
--- a/srcpkgs/beancount/template
+++ b/srcpkgs/beancount/template
@@ -1,7 +1,7 @@
 # Template file for 'beancount'
 pkgname=beancount
 version=2.2.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="beancount"
 hostmakedepends="python3-setuptools"

From f80c318ccd4cd9ae05af733d0a5adc64fbdbc1c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 606/871] beets: rebuild for Python 3.8.

---
 srcpkgs/beets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beets/template b/srcpkgs/beets/template
index 7dab56ceef8..975e6ec9f86 100644
--- a/srcpkgs/beets/template
+++ b/srcpkgs/beets/template
@@ -1,7 +1,7 @@
 # Template file for 'beets'
 pkgname=beets
 version=1.4.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="beets beetsplug"

From 4283c7615ca794b60bb9e55b859ada9f5f82e148 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 607/871] black: rebuild for Python 3.8.

---
 srcpkgs/black/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/black/template b/srcpkgs/black/template
index f6d433038b9..38498a1db07 100644
--- a/srcpkgs/black/template
+++ b/srcpkgs/black/template
@@ -1,7 +1,7 @@
 # Template file for 'black'
 pkgname=black
 version=19.3b0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="black.py blib2to3"

From 34bdad1d3183eaa6d948b88888152ddaebe3a219 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 608/871] blueman: rebuild for Python 3.8.

---
 srcpkgs/blueman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blueman/template b/srcpkgs/blueman/template
index 83f9b899583..3616aee7da3 100644
--- a/srcpkgs/blueman/template
+++ b/srcpkgs/blueman/template
@@ -1,7 +1,7 @@
 # Template file for 'blueman'
 pkgname=blueman
 version=2.1.1
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="blueman"
 configure_args="--disable-static"

From 983885706b89ab08c74986a287ee715732a349bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 609/871] borg: rebuild for Python 3.8.

---
 srcpkgs/borg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borg/template b/srcpkgs/borg/template
index 520b1b2f65a..b69c7d3418e 100644
--- a/srcpkgs/borg/template
+++ b/srcpkgs/borg/template
@@ -1,7 +1,7 @@
 # Template file for 'borg'
 pkgname=borg
 version=1.1.10
-revision=2
+revision=3
 wrksrc="borgbackup-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel"

From 39aec37bcdca815613283eabb365231786bc31f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 610/871] borgmatic: rebuild for Python 3.8.

---
 srcpkgs/borgmatic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borgmatic/template b/srcpkgs/borgmatic/template
index 25b3956dada..ac44a48ebd6 100644
--- a/srcpkgs/borgmatic/template
+++ b/srcpkgs/borgmatic/template
@@ -1,7 +1,7 @@
 # Template file for 'borgmatic'
 pkgname=borgmatic
 version=1.4.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="borgmatic"

From 75c8b9cafed941bac487b46707ecdfd13fa62e86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 611/871] btrfs-backup: rebuild for Python 3.8.

---
 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 07d08a1b62b..55a3800a857 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=1
+revision=2
 wrksrc="${pkgname/-/_}-${version}"
 archs=noarch
 build_style=python3-module

From 244b354578239055c7c37ed5f6863ce0c654aaa1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 612/871] bum: rebuild for Python 3.8.

---
 srcpkgs/bum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bum/template b/srcpkgs/bum/template
index 58d0bb2b7f7..20f200e74d6 100644
--- a/srcpkgs/bum/template
+++ b/srcpkgs/bum/template
@@ -1,7 +1,7 @@
 # Template file for 'bum'
 pkgname=bum
 version=0.1.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="bum"

From 45a0590e978749c9ab246603df9e78399675b116 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 613/871] caffeine-ng: rebuild for Python 3.8.

---
 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 36287fbef5b..455b2f225c4 100644
--- a/srcpkgs/caffeine-ng/template
+++ b/srcpkgs/caffeine-ng/template
@@ -1,7 +1,7 @@
 # Template file for 'caffeine-ng'
 pkgname=caffeine-ng
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="caffeine"

From 9dfc35d43f0f74003f4a362016ffbd29df9949e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 614/871] cairo-dock-plugins: rebuild for Python 3.8.

---
 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 9e6149c617f..0c23a7f6928 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=11
+revision=12
 build_style=cmake
 hostmakedepends="pkg-config"
 # XXX libetpan, libdbusmenu, etc

From 616690f8740e6e5c758687457a3d805dcd0f1c0a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 615/871] canto-curses: rebuild for Python 3.8.

---
 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 0905972b480..4270d61c2e0 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=4
+revision=5
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel ncurses-devel readline-devel"

From 2d4059655ffcce12454d23825d3d92ca235076ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 616/871] canto-next: rebuild for Python 3.8.

---
 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 fff7e82e238..fa28bde891b 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.7
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From af7572f709614ad92b93476ab99b766fcd6ac5d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 617/871] capstone: rebuild for Python 3.8.

---
 srcpkgs/capstone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/capstone/template b/srcpkgs/capstone/template
index e13c7666ed1..fded7c7157e 100644
--- a/srcpkgs/capstone/template
+++ b/srcpkgs/capstone/template
@@ -1,7 +1,7 @@
 # Template file for 'capstone'
 pkgname=capstone
 version=4.0.1
-revision=1
+revision=2
 build_style=gnu-makefile
 make_use_env=1
 hostmakedepends="python-setuptools python3-setuptools"

From 0006c2bdf5a85253db14dec34fa0a014f1b10c22 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 618/871] catfish: rebuild for Python 3.8.

---
 srcpkgs/catfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/catfish/template b/srcpkgs/catfish/template
index 1b28ffcafff..b53de6b8ea6 100644
--- a/srcpkgs/catfish/template
+++ b/srcpkgs/catfish/template
@@ -1,7 +1,7 @@
 # Template file for 'catfish'
 pkgname=catfish
 version=1.4.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="catfish catfish_lib"

From 23a638f302526de7e7bedcc74ed2856565b2d1a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 619/871] ccsm: rebuild for Python 3.8.

---
 srcpkgs/ccsm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ccsm/template b/srcpkgs/ccsm/template
index 0421e587b23..3067003017f 100644
--- a/srcpkgs/ccsm/template
+++ b/srcpkgs/ccsm/template
@@ -1,7 +1,7 @@
 # Template file for 'ccsm'
 pkgname=ccsm
 version=0.8.16
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 hostmakedepends="automake intltool libtool pkg-config python3"

From c0de00e9660d34b8fe4db25caf9ff7d8c4439154 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 620/871] cheat: rebuild for Python 3.8.

---
 srcpkgs/cheat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cheat/template b/srcpkgs/cheat/template
index b60b4ba53b2..f1e419c3c5a 100644
--- a/srcpkgs/cheat/template
+++ b/srcpkgs/cheat/template
@@ -1,7 +1,7 @@
 # Template file for 'cheat'
 pkgname=cheat
 version=2.5.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="cheat"
 conf_files="/etc/cheat"

From 4440d97a47fb52686954d825c64feeed973663d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 621/871] clearine: rebuild for Python 3.8.

---
 srcpkgs/clearine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/clearine/template b/srcpkgs/clearine/template
index 419bb3c4550..539d494b79b 100644
--- a/srcpkgs/clearine/template
+++ b/srcpkgs/clearine/template
@@ -1,7 +1,7 @@
 # Template file for 'clearine'
 pkgname=clearine
 version=0.7
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="Clearine"
 hostmakedepends="python3-setuptools"

From dc2d87682c2bd29a7afa8fe15c43b1707cbf38e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 622/871] coccigrep: rebuild for Python 3.8.

---
 srcpkgs/coccigrep/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/coccigrep/template b/srcpkgs/coccigrep/template
index 736f16a458e..a02c2f78bb2 100644
--- a/srcpkgs/coccigrep/template
+++ b/srcpkgs/coccigrep/template
@@ -1,7 +1,7 @@
 # Template file for 'coccigrep'
 pkgname=coccigrep
 version=1.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coccigrep"

From f69a21c7c793f5c6314710b2454275296bbff4fc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 623/871] compizconfig-python: rebuild for Python 3.8.

---
 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 b9d9ce2892b..77d53c97f46 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.16
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static"
 hostmakedepends="automake intltool libtool pkg-config glib-devel gettext-devel python3-Cython"

From 2e74d3c33d8bf824bbcbbec89d8abaf26d085486 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 624/871] coursera-dl: rebuild for Python 3.8.

---
 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 0dfdd73083f..2b09e53d836 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.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coursera"

From 906c6e3be41b46b4510c795b26108f8fcbce5749 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 625/871] cozy: rebuild for Python 3.8.

---
 srcpkgs/cozy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cozy/template b/srcpkgs/cozy/template
index ba56e812f56..4975c76f8e4 100644
--- a/srcpkgs/cozy/template
+++ b/srcpkgs/cozy/template
@@ -1,7 +1,7 @@
 # Template file for 'cozy'
 pkgname=cozy
 version=0.6.9
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 pycompile_module="cozy"

From 77d65f9c5ebb4c3209d4c85f064a2bdc68e99c14 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 626/871] cpuset: rebuild for Python 3.8.

---
 srcpkgs/cpuset/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cpuset/template b/srcpkgs/cpuset/template
index cf3910d2304..12b54631617 100644
--- a/srcpkgs/cpuset/template
+++ b/srcpkgs/cpuset/template
@@ -1,7 +1,7 @@
 # Template file for 'cpuset'
 pkgname=cpuset
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="cpuset"

From 0b398bcdc830ed261b22f0b01dd911b2c7f32df9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 627/871] ctop: rebuild for Python 3.8.

---
 srcpkgs/ctop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ctop/template b/srcpkgs/ctop/template
index b8ea58515b2..5231b4a4cb3 100644
--- a/srcpkgs/ctop/template
+++ b/srcpkgs/ctop/template
@@ -1,7 +1,7 @@
 # Template file for 'ctop'
 pkgname=ctop
 version=1.0.0
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="cgroup_top.py"

From 1a9b9cb8b777cc2dd52d14f9e398289a9f5ad57b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 628/871] cura: rebuild for Python 3.8.

---
 srcpkgs/cura/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cura/template b/srcpkgs/cura/template
index 31318e5aecf..ab5cd315f21 100644
--- a/srcpkgs/cura/template
+++ b/srcpkgs/cura/template
@@ -1,7 +1,7 @@
 # Template file for 'cura'
 pkgname=cura
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Cura-${version}"
 build_style=cmake

From 65933bcc67817fd77d8eadd6c819ff9a67708b17 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 629/871] curseradio: rebuild for Python 3.8.

---
 srcpkgs/curseradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/curseradio/template b/srcpkgs/curseradio/template
index 4fe2306364a..f5afe3bba34 100644
--- a/srcpkgs/curseradio/template
+++ b/srcpkgs/curseradio/template
@@ -1,7 +1,7 @@
 # Template file for 'curseradio'
 pkgname=curseradio
 version=0.0.20171017
-revision=3
+revision=4
 archs=noarch
 _commit=1bd4bd0faeec675e0647bac9a100b526cba19f8d
 wrksrc="curseradio-${_commit}"

From 7fbb188d1002676d3626dae0094ba9fa60d9cbc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 630/871] d-feet: rebuild for Python 3.8.

---
 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 6930eddf582..7f7d593f30a 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.15
-revision=1
+revision=2
 build_style=meson
 maintainer="Enno Boland <gottox@voidlinux.org>"
 hostmakedepends="pkg-config intltool itstool python3-pycodestyle"

From 2b16b88770e1acac7453f69344a2851b781f91b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 631/871] deluge: rebuild for Python 3.8.

---
 srcpkgs/deluge/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/deluge/template b/srcpkgs/deluge/template
index 6dc7f26184d..8148c68033c 100644
--- a/srcpkgs/deluge/template
+++ b/srcpkgs/deluge/template
@@ -1,7 +1,7 @@
 # Template file for 'deluge'
 pkgname=deluge
 version=2.0.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="deluge"

From 1608bff5c8f796b97cb478a99845bf4db5d31db8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 632/871] devedeng: rebuild for Python 3.8.

---
 srcpkgs/devedeng/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/devedeng/template b/srcpkgs/devedeng/template
index d971b2e207b..2d0516cedd3 100644
--- a/srcpkgs/devedeng/template
+++ b/srcpkgs/devedeng/template
@@ -1,7 +1,7 @@
 # Template file for 'devedeng'
 pkgname=devedeng
 version=4.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="devedeng"

From 09f9fdbb261ad7f76280447071a9889fc2845c17 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 633/871] distcc: rebuild for Python 3.8.

---
 srcpkgs/distcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/distcc/template b/srcpkgs/distcc/template
index ded4255becd..4d6a450533f 100644
--- a/srcpkgs/distcc/template
+++ b/srcpkgs/distcc/template
@@ -1,7 +1,7 @@
 # Template file for 'distcc'
 pkgname=distcc
 version=3.3.3
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-Werror --with-gtk"
 conf_files="

From f5634510cf2b5ebebdee855f95712c7afc0f9930 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 634/871] docker-compose: rebuild for Python 3.8.

---
 srcpkgs/docker-compose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/docker-compose/template b/srcpkgs/docker-compose/template
index c3383fdf1ad..f4a34005c83 100644
--- a/srcpkgs/docker-compose/template
+++ b/srcpkgs/docker-compose/template
@@ -1,7 +1,7 @@
 # Template file for 'docker-compose'
 pkgname=docker-compose
 version=1.24.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="compose-${version}"
 build_style=python3-module

From c4c3c51c1fef29a94a4d07ee38eec68fe04a727f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 635/871] edx-dl: rebuild for Python 3.8.

---
 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 209884640c6..a51c917d606 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.10
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="edx_dl"

From bcd695ebeab546a933aabbeceb8538927ff79a0e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 636/871] electrum: rebuild for Python 3.8.

---
 srcpkgs/electrum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template
index 3861becdda9..7525e08e9e2 100644
--- a/srcpkgs/electrum/template
+++ b/srcpkgs/electrum/template
@@ -1,7 +1,7 @@
 # Template file for 'electrum'
 pkgname=electrum
 version=3.3.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electrum electrum_gui electrum_plugins"

From e068a456d18e08f1f7e340f858cc80e1b17ac30f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 637/871] electrum-ltc: rebuild for Python 3.8.

---
 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 ad6f745e152..cf7265fbec8 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.6.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"

From 5317fd53eac551e44dbccf386a1a3da9ae841ba6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 638/871] eolie: rebuild for Python 3.8.

---
 srcpkgs/eolie/patches/python-3.8.patch | 11 +++++++++++
 srcpkgs/eolie/template                 |  2 +-
 2 files changed, 12 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/eolie/patches/python-3.8.patch

diff --git a/srcpkgs/eolie/patches/python-3.8.patch b/srcpkgs/eolie/patches/python-3.8.patch
new file mode 100644
index 00000000000..1c80a7e8a4f
--- /dev/null
+++ b/srcpkgs/eolie/patches/python-3.8.patch
@@ -0,0 +1,11 @@
+--- python-webextension/meson.build.orig
++++ python-webextension/meson.build
+@@ -2,7 +2,7 @@
+ 
+ webkitextension = dependency('webkit2gtk-web-extension-4.0')
+ pyobject = dependency('pygobject-3.0')
+-python3 = dependency('python3')
++python3 = dependency('python3-embed')
+ 
+ pythonloader = configure_file(
+   input: 'pythonloader.c.in',
diff --git a/srcpkgs/eolie/template b/srcpkgs/eolie/template
index b3da3dcd829..94514510c98 100644
--- a/srcpkgs/eolie/template
+++ b/srcpkgs/eolie/template
@@ -1,7 +1,7 @@
 # Template file for 'eolie'
 pkgname=eolie
 version=0.9.62
-revision=1
+revision=2
 _eolie_hash=bb4aad19272cc636bd17f2f6602127fe
 build_style=meson
 pycompile_module="eolie"

From 025d34fbb1df072a160b9e47620706369d818c35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 639/871] eyeD3: rebuild for Python 3.8.

---
 srcpkgs/eyeD3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eyeD3/template b/srcpkgs/eyeD3/template
index 7be047810bd..211553f0adb 100644
--- a/srcpkgs/eyeD3/template
+++ b/srcpkgs/eyeD3/template
@@ -1,7 +1,7 @@
 # Template file for 'eyeD3'
 pkgname=eyeD3
 version=0.8.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="eyed3"

From edadf3e163a7e7681159395f6557b1be83ad582c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 640/871] fail2ban: rebuild for Python 3.8.

---
 srcpkgs/fail2ban/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 829e93385dc..361bcd12edd 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,7 +1,7 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
 version=0.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From 35224cd38e09c7e2ce835c84f8fd1ab957a365ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 641/871] fava: rebuild for Python 3.8.

---
 srcpkgs/fava/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fava/template b/srcpkgs/fava/template
index 24e66cac45b..890858b095b 100644
--- a/srcpkgs/fava/template
+++ b/srcpkgs/fava/template
@@ -1,7 +1,7 @@
 # Template file for 'fava'
 pkgname=fava
 version=1.11
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fava"

From db146283a28f0c8183a3fd1e7f9512805479c80e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 642/871] fierce: rebuild for Python 3.8.

---
 srcpkgs/fierce/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fierce/template b/srcpkgs/fierce/template
index 86dedb39ad2..86692c6457b 100644
--- a/srcpkgs/fierce/template
+++ b/srcpkgs/fierce/template
@@ -1,7 +1,7 @@
 # Template file for 'fierce'
 pkgname=fierce
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fierce"

From 2a37ac295b6f5b0b72e9d0c5cc2bf5d5d366c57a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 643/871] fifengine: rebuild for Python 3.8.

---
 srcpkgs/fifengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fifengine/template b/srcpkgs/fifengine/template
index 1d4bcbb9297..871c94ad7e0 100644
--- a/srcpkgs/fifengine/template
+++ b/srcpkgs/fifengine/template
@@ -1,7 +1,7 @@
 # Template file for 'fifengine'
 pkgname=fifengine
 version=0.4.2
-revision=1
+revision=2
 build_style=cmake
 pycompile_module="fife"
 hostmakedepends="swig python3"

From e5ee1a9a1e5db54bb99870743fa830c0ba6ba0b9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 644/871] flake8: rebuild for Python 3.8.

---
 srcpkgs/flake8/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/flake8/template b/srcpkgs/flake8/template
index d8f2b095644..4d7ebeba176 100644
--- a/srcpkgs/flake8/template
+++ b/srcpkgs/flake8/template
@@ -1,7 +1,7 @@
 # Template file for 'flake8'
 pkgname=flake8
 version=3.7.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="flake8"

From 0f222a4aef9a450ee38fa2e6d0b771b0042fb31d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 645/871] fontforge: fix and rebuild for Python 3.8.

---
 srcpkgs/fontforge/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/fontforge/template b/srcpkgs/fontforge/template
index 7fb02d7e371..2893bc52cfb 100644
--- a/srcpkgs/fontforge/template
+++ b/srcpkgs/fontforge/template
@@ -1,7 +1,7 @@
 # Template file for 'fontforge'
 pkgname=fontforge
 version=20190801
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake ca-certificates git libltdl-devel libtool m4
  pkg-config python3"
@@ -20,6 +20,7 @@ checksum="e4501de5bd8e7f6c68fe7d3abd4667bf44a07b981d342ffa00e8f42e155ce633
  1bf9c7eb8835e6ed94e62cb49f1141bc046c562849e52e6c3c7f1d7cfc95c7b3"
 
 pre_configure() {
+        sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION}/&-embed/g' m4/fontforge_arg_enable.m4
 	./bootstrap
 }
 

From d0186b5b0f6370508e3ee0df23b1d625a1262548 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 646/871] gajim: rebuild for Python 3.8.

---
 srcpkgs/gajim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gajim/template b/srcpkgs/gajim/template
index 8c49c0cf6ef..e81015b3906 100644
--- a/srcpkgs/gajim/template
+++ b/srcpkgs/gajim/template
@@ -1,7 +1,7 @@
 # Template file for 'gajim'
 pkgname=gajim
 version=1.1.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gajim"

From 7d4f1ad597ad9bf955f100ba307fbac0f94f638d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 647/871] gajim-omemo: rebuild for Python 3.8.

---
 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 803f94713be..64d47228496 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.6.29
-revision=1
+revision=2
 wrksrc="omemo"
 hostmakedepends="unzip"
 depends="python3 python3-setuptools python3-cryptography python3-axolotl python3-qrcode"

From 397ff6db07520e94573c075d85fce38e4eaa2b43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 648/871] gallery-dl: rebuild for Python 3.8.

---
 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 a25258fb2d8..38558e5bd89 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.10.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gallery_dl"

From 25917d11e2a610f34a5d933fcbafdeb3161833d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 649/871] gandi-cli: rebuild for Python 3.8.

---
 srcpkgs/gandi-cli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gandi-cli/template b/srcpkgs/gandi-cli/template
index c5e805a09fd..4193bfe4638 100644
--- a/srcpkgs/gandi-cli/template
+++ b/srcpkgs/gandi-cli/template
@@ -1,7 +1,7 @@
 # Template file for 'gandi-cli'
 pkgname=gandi-cli
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="gandi.cli-${version}"
 build_style=python3-module

From fab9df095b7675fb2b845d0a95766ec5823d6f57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 650/871] gcovr: rebuild for Python 3.8.

---
 srcpkgs/gcovr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gcovr/template b/srcpkgs/gcovr/template
index 2b9ff94bf2a..0d4addfc8a7 100644
--- a/srcpkgs/gcovr/template
+++ b/srcpkgs/gcovr/template
@@ -1,7 +1,7 @@
 # Template file for 'gcovr'
 pkgname=gcovr
 version=4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gcovr"

From 6f86ae27e1791bfd40ded26a72a3a29f4b92b5cd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 651/871] gedit: rebuild for Python 3.8.

---
 srcpkgs/gedit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gedit/template b/srcpkgs/gedit/template
index 904d3b7c3c4..6666c331c52 100644
--- a/srcpkgs/gedit/template
+++ b/srcpkgs/gedit/template
@@ -1,7 +1,7 @@
 # Template file for 'gedit'
 pkgname=gedit
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gi/overrides"

From c0ad146223e25d9a2c2f70a93baa87cbd3bc64fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 652/871] geis: rebuild for Python 3.8.

---
 srcpkgs/geis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/geis/template b/srcpkgs/geis/template
index fe31a3d2aeb..20afe76b0d8 100644
--- a/srcpkgs/geis/template
+++ b/srcpkgs/geis/template
@@ -1,7 +1,7 @@
 # Template file for 'geis'
 pkgname=geis
 version=2.2.17
-revision=4
+revision=5
 hostmakedepends="pkg-config python3-devel"
 makedepends="dbus-devel grail-devel frame-devel libXi-devel python3-devel xorg-server-devel"
 build_style="gnu-configure"

From 489bb1caf6725ac0654eb3621c6a0ff226d69e5f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 653/871] git-cola: rebuild for Python 3.8.

---
 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 7eaba90f3be..fd0bbf971d3 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.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/share/git-cola/lib"

From 32a9dfbda38edcb1a8d34686ca0c4424fdb82a3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 654/871] git-review: rebuild for Python 3.8.

---
 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 d999dc87b16..c180cc60780 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="git_review"

From edd2e0efe128a19ffa0b2add54248adb7283188d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 655/871] git-revise: rebuild for Python 3.8.

---
 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 4179a52bddc..a1bf51dc447 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.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gitrevise"

From d3bf261b0fe095cfd44776f2fd60dec21786ebba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 656/871] gitg: rebuild for Python 3.8.

---
 srcpkgs/gitg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gitg/template b/srcpkgs/gitg/template
index e0da8e9490d..a3381fdb3a7 100644
--- a/srcpkgs/gitg/template
+++ b/srcpkgs/gitg/template
@@ -1,7 +1,7 @@
 # Template file for 'gitg'
 pkgname=gitg
 version=3.32.1
-revision=1
+revision=2
 build_style=meson
 hostmakedepends="intltool pkg-config gobject-introspection vala glib-devel"
 makedepends="gtksourceview-devel libgit2-glib-devel libgee08-devel gtkspell3-devel

From b2d9acdb78784db6e65726c50a62ea63d74f70ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 657/871] glances: rebuild for Python 3.8.

---
 srcpkgs/glances/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glances/template b/srcpkgs/glances/template
index 230a277b64a..2f2614e00be 100644
--- a/srcpkgs/glances/template
+++ b/srcpkgs/glances/template
@@ -1,7 +1,7 @@
 # Template file for 'glances'
 pkgname=glances
 version=3.1.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="glances"

From 8440629696d0439c1dd509c3ad2b6dc4b8a6a85e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 658/871] glusterfs: rebuild for Python 3.8.

---
 srcpkgs/glusterfs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glusterfs/template b/srcpkgs/glusterfs/template
index 574d580df6d..2b09d478736 100644
--- a/srcpkgs/glusterfs/template
+++ b/srcpkgs/glusterfs/template
@@ -1,7 +1,7 @@
 # Template file for 'glusterfs'
 pkgname=glusterfs
 version=7.0
-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 1fd9846fda16a886f0dd954c795a0bd8865cc369 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 659/871] gnome-authenticator: rebuild for Python 3.8.

---
 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 52d161897c7..ab7c505c0fe 100644
--- a/srcpkgs/gnome-authenticator/template
+++ b/srcpkgs/gnome-authenticator/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-authenticator'
 pkgname=gnome-authenticator
 version=0.2.4
-revision=2
+revision=3
 _libgd_hash=7ae254bfc5f641c60566614e08245176f7bc5aa8
 wrksrc="Authenticator-${version}"
 build_style=meson

From 83ba5f82f6285e0ebb684e8a5bc62a74895faa18 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 660/871] gnome-music: rebuild for Python 3.8.

---
 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 bceb7c369c8..e2fbbcbdeca 100644
--- a/srcpkgs/gnome-music/template
+++ b/srcpkgs/gnome-music/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-music'
 pkgname=gnome-music
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gnomemusic"

From 648a94e7c7085e04f9bceb4d7a371533fcf1a908 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 661/871] gnome-passbook: rebuild for Python 3.8.

---
 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 54035dc920b..89047338503 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.1
-revision=1
+revision=2
 _release_hash=0a227cfdf706f4bfcc0b782026f1aeb2
 wrksrc="passbook-${version}"
 build_style=meson

From 8c289f4f1a4955c88297a0d63ab97c9c7fe7acfe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 662/871] gnome-passwordsafe: rebuild for Python 3.8.

---
 srcpkgs/gnome-passwordsafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnome-passwordsafe/template b/srcpkgs/gnome-passwordsafe/template
index f310ce03a08..8f1f19174d2 100644
--- a/srcpkgs/gnome-passwordsafe/template
+++ b/srcpkgs/gnome-passwordsafe/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-passwordsafe'
 pkgname=gnome-passwordsafe
 version=3.32.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="PasswordSafe-${version}"
 build_style=meson

From fb62ec0ceb405c96df802eeecfef34441910a0a6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 663/871] gns3-gui: rebuild for Python 3.8.

---
 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 38751dea59b..f4318dc6afc 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.1.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3"

From 701e9a18968eaf79b35392f9d1b8e44aa1997954 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 664/871] gns3-net-converter: rebuild for Python 3.8.

---
 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 b9b7403e8a6..70b6c90e8c8 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=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3converter"

From 2ef27267599e5d78afde3733ee12c4d8ed490633 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 665/871] gns3-server: rebuild for Python 3.8.

---
 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 6bd9c067b20..739c584cb7c 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.1.21
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="gns3server"
 hostmakedepends="python3-setuptools"

From 869a06c8779433fb7d5bf19f28db5028dad4dfb2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 666/871] gnucash: rebuild for Python 3.8.

---
 srcpkgs/gnucash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnucash/template b/srcpkgs/gnucash/template
index 68bb811fc42..d8ff0a8ec86 100644
--- a/srcpkgs/gnucash/template
+++ b/srcpkgs/gnucash/template
@@ -1,7 +1,7 @@
 # Template file for 'gnucash'
 pkgname=gnucash
 version=3.7
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DWITH_SQL=0 -DWITH_PYTHON=1"
 hostmakedepends="pkg-config guile python3 libxslt perl"

From 1637d753864284b26fbd7b0a041dd1af5fcf3bd6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 667/871] gom: rebuild for Python 3.8.

---
 srcpkgs/gom/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gom/template b/srcpkgs/gom/template
index 6ec2a5e338f..0b45e19def4 100644
--- a/srcpkgs/gom/template
+++ b/srcpkgs/gom/template
@@ -1,7 +1,7 @@
 # Template file for 'gom'
 pkgname=gom
 version=0.3.3
-revision=3
+revision=4
 build_style=meson
 build_helper="gir"
 configure_args="-Denable-introspection=$(vopt_if gir true false)

From 133e0a9702fecd3fa6e71679d7adc5e264abcd31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 668/871] gpodder: rebuild for Python 3.8.

---
 srcpkgs/gpodder/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gpodder/template b/srcpkgs/gpodder/template
index 7c7414e19cd..5cc63ab4205 100644
--- a/srcpkgs/gpodder/template
+++ b/srcpkgs/gpodder/template
@@ -1,7 +1,7 @@
 # Template file for 'gpodder'
 pkgname=gpodder
 version=3.10.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="gpodder-${version}"
 make_check_target=unittest

From deedb9ea5b6545d0771c02ff76a971991e64474d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 669/871] gramps: rebuild for Python 3.8.

---
 srcpkgs/gramps/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gramps/template b/srcpkgs/gramps/template
index 9d1d1a4616a..5d40aeefb49 100644
--- a/srcpkgs/gramps/template
+++ b/srcpkgs/gramps/template
@@ -1,7 +1,7 @@
 # Template file for 'gramps'
 pkgname=gramps
 version=5.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gramps"

From 87a398ef3f9824aa5cd434e9c08b85c9d50bbcad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 670/871] greg: rebuild for Python 3.8.

---
 srcpkgs/greg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/greg/template b/srcpkgs/greg/template
index 9c15ba82f4b..d898d5fdf61 100644
--- a/srcpkgs/greg/template
+++ b/srcpkgs/greg/template
@@ -1,7 +1,7 @@
 # Template file for 'greg'
 pkgname=greg
 version=0.4.7
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 pycompile_module="greg"

From b2518bece0bea93ae71e420b7b60e9b63fd12ef1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 671/871] gst1-python3: rebuild for Python 3.8.

---
 srcpkgs/gst1-python3/patches/python-3.8.patch | 11 +++++++++++
 srcpkgs/gst1-python3/template                 |  2 +-
 2 files changed, 12 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/gst1-python3/patches/python-3.8.patch

diff --git a/srcpkgs/gst1-python3/patches/python-3.8.patch b/srcpkgs/gst1-python3/patches/python-3.8.patch
new file mode 100644
index 00000000000..cbf1a58ea51
--- /dev/null
+++ b/srcpkgs/gst1-python3/patches/python-3.8.patch
@@ -0,0 +1,11 @@
+--- meson.build
++++ meson.build
+@@ -24,7 +24,7 @@ pygobject_dep = dependency('pygobject-3.0', fallback: ['pygobject', 'pygobject_d
+ 
+ pymod = import('python')
+ python = pymod.find_installation(get_option('python'))
+-python_dep = python.dependency(required : true)
++python_dep = dependency('python3-embed', required : true)
+ 
+ python_abi_flags = python.get_variable('ABIFLAGS', '')
+ pylib_loc = get_option('libpython-dir')
diff --git a/srcpkgs/gst1-python3/template b/srcpkgs/gst1-python3/template
index 6f02f19aca3..bf946f6a8bf 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.16.1
-revision=1
+revision=2
 wrksrc="gst-python-${version}"
 build_style=meson
 pycompile_module="gi/overrides"

From 673c0d36c8fce22ec8addb5e8d1489f3f03b56c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 672/871] guake: rebuild for Python 3.8.

---
 srcpkgs/guake/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/guake/template b/srcpkgs/guake/template
index 86eaba649a7..d92fdf89355 100644
--- a/srcpkgs/guake/template
+++ b/srcpkgs/guake/template
@@ -1,7 +1,7 @@
 # Template file for 'guake'
 pkgname=guake
 version=3.6.3
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 wrksrc="Guake-${version}"

From 360848272923ec69b39769579eca64440329fa19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 673/871] gufw: rebuild for Python 3.8.

---
 srcpkgs/gufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gufw/template b/srcpkgs/gufw/template
index d2b8a4b025d..a4e7d861d71 100644
--- a/srcpkgs/gufw/template
+++ b/srcpkgs/gufw/template
@@ -1,7 +1,7 @@
 # Template file for 'gufw'
 pkgname=gufw
 version=19.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="gui-ufw-${version}"
 build_style=python3-module

From 453c4069633bff01bc1e68f4af5be877c2bc0b35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 674/871] hamlib: rebuild for Python 3.8.

---
 srcpkgs/hamlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hamlib/template b/srcpkgs/hamlib/template
index c28a069cd6f..d52436c0893 100644
--- a/srcpkgs/hamlib/template
+++ b/srcpkgs/hamlib/template
@@ -1,7 +1,7 @@
 # Template file for 'hamlib'
 pkgname=hamlib
 version=3.3
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static --with-perl-binding --with-python-binding
  --with-tcl-binding --with-xml-support"

From b2d1dfe47266b42e813a2bcbf6ada7c8c40cd864 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 675/871] hangups: rebuild for Python 3.8.

---
 srcpkgs/hangups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hangups/template b/srcpkgs/hangups/template
index 0a2f2db16b4..0837a2c47c3 100644
--- a/srcpkgs/hangups/template
+++ b/srcpkgs/hangups/template
@@ -1,7 +1,7 @@
 # Template file for 'hangups'
 pkgname=hangups
 version=0.4.9
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="hangups"
 hostmakedepends="python3-setuptools"

From f3379f1423acecb1b8f011a769e4c5c56a7544b3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 676/871] hplip: rebuild for Python 3.8.

---
 srcpkgs/hplip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hplip/template b/srcpkgs/hplip/template
index 07a707569f6..3ef76e4591b 100644
--- a/srcpkgs/hplip/template
+++ b/srcpkgs/hplip/template
@@ -1,7 +1,7 @@
 # Template file for 'hplip'
 pkgname=hplip
 version=3.19.8
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="usr/share/hplip"
 configure_args="

From 9461a1520ab9b744b68c6703ab72c0d55b5cf92e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 677/871] httpie: rebuild for Python 3.8.

---
 srcpkgs/httpie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/httpie/template b/srcpkgs/httpie/template
index 387af8ebf05..61fc1499d35 100644
--- a/srcpkgs/httpie/template
+++ b/srcpkgs/httpie/template
@@ -1,7 +1,7 @@
 # Template file for 'httpie'
 pkgname=httpie
 version=1.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="httpie"

From 9bf70c096694769966f21ca1c06db2c01f2f42d2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 678/871] ibus: rebuild for Python 3.8.

---
 srcpkgs/ibus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ibus/template b/srcpkgs/ibus/template
index 4875c7535d6..d3c35d786a4 100644
--- a/srcpkgs/ibus/template
+++ b/srcpkgs/ibus/template
@@ -1,7 +1,7 @@
 # Template file for 'ibus'
 pkgname=ibus
 version=1.5.20
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 configure_args="--enable-ui --enable-gtk3 --disable-tests

From fdb5aea4ca9099ac7f42fb4fc32a255a631d7eb5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 679/871] iotop: rebuild for Python 3.8.

---
 srcpkgs/iotop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template
index 146a9e97791..522bf32a7c2 100644
--- a/srcpkgs/iotop/template
+++ b/srcpkgs/iotop/template
@@ -1,7 +1,7 @@
 # Template file for 'iotop'
 pkgname=iotop
 version=0.6
-revision=5
+revision=6
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From fbfd515e4877c9309685c62d76e5a3e0590d0f5a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 680/871] jrnl: rebuild for Python 3.8.

---
 srcpkgs/jrnl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template
index 3d08f129885..b184ef09508 100644
--- a/srcpkgs/jrnl/template
+++ b/srcpkgs/jrnl/template
@@ -1,7 +1,7 @@
 # Template file for 'jrnl'
 pkgname=jrnl
 version=1.9.8
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="jrnl"

From 5bcfc624d4aa0fdfa9c5cd82abbdc82b03941a33 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 681/871] khal: rebuild for Python 3.8.

---
 srcpkgs/khal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khal/template b/srcpkgs/khal/template
index 39d08a66ba8..a73516695bf 100644
--- a/srcpkgs/khal/template
+++ b/srcpkgs/khal/template
@@ -1,7 +1,7 @@
 # Template file for 'khal'
 pkgname=khal
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khal"

From 2e75bfe25d7e2d9d9ad59337bfcb4747291d0d49 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 682/871] khard: rebuild for Python 3.8.

---
 srcpkgs/khard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khard/template b/srcpkgs/khard/template
index 6c6f3024be1..3ec9f398d99 100644
--- a/srcpkgs/khard/template
+++ b/srcpkgs/khard/template
@@ -1,7 +1,7 @@
 # Template file for 'khard'
 pkgname=khard
 version=0.14.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khard"

From 4f8ea5c302f2ecdb286d095f2f87214e99a5b90f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 683/871] lfm: rebuild for Python 3.8.

---
 srcpkgs/lfm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lfm/template b/srcpkgs/lfm/template
index 0a0a3b4f563..1e0e7cf29fa 100644
--- a/srcpkgs/lfm/template
+++ b/srcpkgs/lfm/template
@@ -1,7 +1,7 @@
 # Template file for 'lfm'
 pkgname=lfm
 version=3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 06d3995aff25c2717896cbc4ed8d7c196e163a6e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 684/871] libArcus: rebuild for Python 3.8.

---
 srcpkgs/libArcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libArcus/template b/srcpkgs/libArcus/template
index 8e6c97ada21..d2ffda576d4 100644
--- a/srcpkgs/libArcus/template
+++ b/srcpkgs/libArcus/template
@@ -1,7 +1,7 @@
 # Template file for 'libArcus'
 pkgname=libArcus
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DBUILD_EXAMPLES=OFF"
 hostmakedepends="protobuf python3-sip-devel"

From 69977b24bebce8c6fba66e2b18d905470e08047a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 685/871] libSavitar: rebuild for Python 3.8.

---
 srcpkgs/libSavitar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libSavitar/template b/srcpkgs/libSavitar/template
index a9d3020158f..213f02f4d65 100644
--- a/srcpkgs/libSavitar/template
+++ b/srcpkgs/libSavitar/template
@@ -1,7 +1,7 @@
 # Template file for 'libSavitar'
 pkgname=libSavitar
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 hostmakedepends="python3"
 makedepends="python3-sip-devel python3-devel pugixml-devel"

From 541beba69db3f5d196c8cb49c50fdf4bb960f51a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 686/871] libaccounts-glib: rebuild for Python 3.8.

---
 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 717be24f209..239f9307261 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=2
+revision=3
 wrksrc="${pkgname}-VERSION_${version}-8948717702424ce15f4e23e5db2c8ce0799ec120"
 build_style=meson
 hostmakedepends="gtk-doc pkg-config glib-devel gobject-introspection vala"

From 4760dea00a1658f7d1d96ae01ff3f0d54784d176 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 687/871] libblockdev: rebuild for Python 3.8.

---
 srcpkgs/libblockdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libblockdev/template b/srcpkgs/libblockdev/template
index 4b505ea12ed..122c0fc70a6 100644
--- a/srcpkgs/libblockdev/template
+++ b/srcpkgs/libblockdev/template
@@ -1,7 +1,7 @@
 # Template file for 'libblockdev'
 pkgname=libblockdev
 version=2.23
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="cryptsetup-devel device-mapper-devel dmraid-devel libbytesize-devel

From 54bb2be59e35899bf209c75a5b4dfbdf98a214d1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 688/871] libbytesize: rebuild for Python 3.8.

---
 srcpkgs/libbytesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libbytesize/template b/srcpkgs/libbytesize/template
index ef082d02d0c..cb72e5b9fe4 100644
--- a/srcpkgs/libbytesize/template
+++ b/srcpkgs/libbytesize/template
@@ -1,7 +1,7 @@
 # Template file for 'libbytesize'
 pkgname=libbytesize
 version=2.1
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python3"
 makedepends="mpfr-devel pcre2-devel"

From 7679dc590a7d6b60b7c47cf9ada6ac5561d3a881 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 689/871] libcap-ng: rebuild for Python 3.8.

---
 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 f462636c4c1..c6ec4f0a216 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.7.10
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-python --without-python3"
 short_desc="Alternate POSIX capabilities library"

From f2554978c3e49ee70c250b631af4682edc9fb5ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 690/871] libffado: rebuild for Python 3.8.

---
 srcpkgs/libffado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libffado/template b/srcpkgs/libffado/template
index a9b6a5ec6a8..d566806bd82 100644
--- a/srcpkgs/libffado/template
+++ b/srcpkgs/libffado/template
@@ -1,7 +1,7 @@
 # Template file for 'libffado'
 pkgname=libffado
 version=2.4.1
-revision=1
+revision=2
 build_style=scons
 make_build_args="PREFIX=/usr MANDIR=/usr/share/man
  UDEVDIR=/usr/lib/udev/rules.d CUSTOM_ENV=1 BUILD_TESTS=0

From 3324cd7f98470319b8a66c45a538ab8fe0e12d25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 691/871] libgit2-glib: rebuild for Python 3.8.

---
 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 05389a18258..ce68cb35d66 100644
--- a/srcpkgs/libgit2-glib/template
+++ b/srcpkgs/libgit2-glib/template
@@ -1,7 +1,7 @@
 # Template file for 'libgit2-glib'
 pkgname=libgit2-glib
 version=0.28.0.1
-revision=1
+revision=2
 build_style=meson
 build_helper="gir"
 configure_args="-Dintrospection=$(vopt_if gir true false)

From ff57cb8bb1f13c63969900aa88b245b02edc4333 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 692/871] libixion: rebuild for Python 3.8.

---
 srcpkgs/libixion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libixion/template b/srcpkgs/libixion/template
index 5d2c58ee7c0..dbc05d8b9c1 100644
--- a/srcpkgs/libixion/template
+++ b/srcpkgs/libixion/template
@@ -2,7 +2,7 @@
 pkgname=libixion
 reverts="0.15.0_1"
 version=0.14.1
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="boost-devel mdds python3-devel"

From 5150d083626198737858fecc55babfe906f0ca74 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 693/871] liblouis: rebuild for Python 3.8.

---
 srcpkgs/liblouis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liblouis/template b/srcpkgs/liblouis/template
index a0eca12e4ee..617f1490e75 100644
--- a/srcpkgs/liblouis/template
+++ b/srcpkgs/liblouis/template
@@ -1,7 +1,7 @@
 # Template file for 'liblouis'
 pkgname=liblouis
 version=3.11.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--enable-ucs4"
 pycompile_module="louis"

From 5a43754fc5f16b507c782f78282dddcb64ff6550 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 694/871] opencv: rebuild for Python 3.8.

---
 srcpkgs/opencv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/opencv/template b/srcpkgs/opencv/template
index fcc38299f23..474b77be181 100644
--- a/srcpkgs/opencv/template
+++ b/srcpkgs/opencv/template
@@ -1,7 +1,7 @@
 # Template file for 'opencv'
 pkgname=opencv
 version=3.4.5
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_PRECOMPILED_HEADERS=OFF -DWITH_OPENMP=ON
  -DWITH_OPENCL=ON -DENABLE_CXX11=ON -DOPENCV_SKIP_PYTHON_LOADER=ON

From 62e6181dd28a5af336dce30e24d007e53771eba2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 2 Nov 2019 19:02:42 +0100
Subject: [PATCH 695/871] libopenshot-audio: apply upsteam PR 39 to build with
 GCC 9.

---
 .../patches/fix-std_isfinite.patch            | 23 -------------------
 srcpkgs/libopenshot-audio/template            | 12 +++++++---
 2 files changed, 9 insertions(+), 26 deletions(-)
 delete mode 100644 srcpkgs/libopenshot-audio/patches/fix-std_isfinite.patch

diff --git a/srcpkgs/libopenshot-audio/patches/fix-std_isfinite.patch b/srcpkgs/libopenshot-audio/patches/fix-std_isfinite.patch
deleted file mode 100644
index 231f183d5a7..00000000000
--- a/srcpkgs/libopenshot-audio/patches/fix-std_isfinite.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-Fix for gcc6 which does not have std::isfinite() but suggests
-to use std::finite() instead.
-
---- JuceLibraryCode/modules/juce_core/maths/juce_MathsFunctions.h	2016-08-30 06:24:27.000000000 +0200
-+++ JuceLibraryCode/modules/juce_core/maths/juce_MathsFunctions.h	2016-12-12 14:33:29.170005576 +0100
-@@ -381,7 +381,7 @@
-    #if JUCE_WINDOWS && !JUCE_MINGW
-     return _finite (value) != 0;
-    #else
--    return std::isfinite (value);
-+    return finite (value);
-    #endif
- }
- 
-@@ -391,7 +391,7 @@
-    #if JUCE_WINDOWS && !JUCE_MINGW
-     return _finite (value) != 0;
-    #else
--    return std::isfinite (value);
-+    return finite (value);
-    #endif
- }
- 
diff --git a/srcpkgs/libopenshot-audio/template b/srcpkgs/libopenshot-audio/template
index 2e97478137a..32724ecd9fb 100644
--- a/srcpkgs/libopenshot-audio/template
+++ b/srcpkgs/libopenshot-audio/template
@@ -1,7 +1,7 @@
 # Template file for 'libopenshot-audio'
 pkgname=libopenshot-audio
 version=0.1.8
-revision=1
+revision=2
 build_style=cmake
 hostmakedepends="doxygen"
 makedepends="alsa-lib-devel libXcursor-devel libXinerama-devel libXrandr-devel
@@ -10,11 +10,17 @@ short_desc="OpenShot audio library"
 maintainer="Spencer Hill <spencernh77@gmail.com>"
 license="GPL-3.0-or-later"
 homepage="https://github.com/OpenShot/libopenshot-audio"
-distfiles="https://github.com/OpenShot/libopenshot-audio/archive/v${version}.tar.gz"
-checksum=384d0ef39c78f16d77048de3c96152321724084f978dc622675dd6bb16e15e19
+distfiles="https://github.com/OpenShot/libopenshot-audio/archive/v${version}.tar.gz
+ https://patch-diff.githubusercontent.com/raw/OpenShot/libopenshot-audio/pull/39.patch"
+checksum="384d0ef39c78f16d77048de3c96152321724084f978dc622675dd6bb16e15e19
+ ae784a96730f7cf09ba7bf29d06704ba6a0eca662d242d786b0a86a4343e9dc9"
 
 CXXFLAGS="-I${XBPS_CROSS_BASE}/usr/include/freetype2"
 
+post_extract() {
+	patch -p1 <../39.patch
+}
+
 libopenshot-audio-devel_package() {
 	short_desc+=" - development files"
 	depends+=" ${sourcepkg}>=${version}_${revision}"

From 8cbd9ffc963bfe40dc200878e723851f5e0a55cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 696/871] libopenshot: apply upstream PR 209 for GCC 9 and
 rebuild for Python 3.8.

---
 srcpkgs/libopenshot/template | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/libopenshot/template b/srcpkgs/libopenshot/template
index e1ac18faf93..0414c01effb 100644
--- a/srcpkgs/libopenshot/template
+++ b/srcpkgs/libopenshot/template
@@ -1,7 +1,7 @@
 # Template file for 'libopenshot'
 pkgname=libopenshot
 version=0.2.3
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 build_style=cmake
 pycompile_module="openshot.py"
@@ -15,8 +15,14 @@ short_desc="Library files for the OpenShot video editor"
 maintainer="Spencer Hill <spencernh77@gmail.com>"
 license="LGPL-3.0-or-later"
 homepage="https://github.com/OpenShot/libopenshot"
-distfiles="https://github.com/OpenShot/libopenshot/archive/v${version}.tar.gz"
-checksum=8536b0a790b0d98ed4c3b10e11d1b34ae68ccbc710887e3703a5143d95598746
+distfiles="https://github.com/OpenShot/libopenshot/archive/v${version}.tar.gz
+ https://github.com/OpenShot/libopenshot/pull/209.patch"
+checksum="8536b0a790b0d98ed4c3b10e11d1b34ae68ccbc710887e3703a5143d95598746
+ 038b945763dc035ecffe0968a9f0f7a29bb86a3919f4192901d5f152eb5c7f89"
+
+post_extract() {
+	patch -p1 <../209.patch
+}
 
 libopenshot-devel_package() {
 	short_desc+=" - development files"

From a7e34d615200f7d262a8262393ef68c4382b1fd7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 697/871] liborcus: rebuild for Python 3.8.

---
 srcpkgs/liborcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liborcus/template b/srcpkgs/liborcus/template
index 3523d7830d8..e7704c43974 100644
--- a/srcpkgs/liborcus/template
+++ b/srcpkgs/liborcus/template
@@ -2,7 +2,7 @@
 pkgname=liborcus
 reverts="0.15.0_1"
 version=0.14.1
-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 b425948a2b39fcf809b715ffddbbefd843a79cfc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 698/871] libpwquality: rebuild for Python 3.8.

---
 srcpkgs/libpwquality/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpwquality/template b/srcpkgs/libpwquality/template
index 0fccc596ac9..3abd1eca48b 100644
--- a/srcpkgs/libpwquality/template
+++ b/srcpkgs/libpwquality/template
@@ -1,7 +1,7 @@
 # Template file for 'libpwquality'
 pkgname=libpwquality
 version=1.4.2
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static --enable-pam --with-securedir=/usr/lib/security"
 hostmakedepends="libtool automake gettext-devel"

From 8cffe13b31a160908012da611f0563e04b3133d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 699/871] libsearpc: rebuild for Python 3.8.

---
 srcpkgs/libsearpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsearpc/template b/srcpkgs/libsearpc/template
index db61c1f4f22..a4a92d3d66d 100644
--- a/srcpkgs/libsearpc/template
+++ b/srcpkgs/libsearpc/template
@@ -2,7 +2,7 @@
 # WARNING: upstream sometimes retag source. Wait for official announcement
 pkgname=libsearpc
 version=3.2.0
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_module="pysearpc"
 configure_args="PYTHON=python3 --disable-static --disable-compile-demo"

From f342f721f817d8bf680ce753a25168aed463c1c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 700/871] libtorrent-rasterbar: fix and rebuild for Python 3.8.

---
 srcpkgs/libtorrent-rasterbar/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libtorrent-rasterbar/template b/srcpkgs/libtorrent-rasterbar/template
index 118108c6184..51b7175fb81 100644
--- a/srcpkgs/libtorrent-rasterbar/template
+++ b/srcpkgs/libtorrent-rasterbar/template
@@ -1,9 +1,9 @@
 # Template file for 'libtorrent-rasterbar'
 pkgname=libtorrent-rasterbar
 version=1.1.13
-revision=3
+revision=4
 build_style=gnu-configure
-configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=boost_python36"
+configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=libboost_python${py3_ver/./}"
 hostmakedepends="automake pkg-config intltool libtool python3-devel"
 makedepends="libressl-devel boost-devel geoip-devel python3-devel"
 short_desc="C++ bittorrent library by Rasterbar Software"
@@ -14,9 +14,9 @@ distfiles="https://github.com/arvidn/libtorrent/releases/download/libtorrent-${v
 checksum=30040719858e3c06634764e0c1778738eb42ecd0b45e814afa746329a948ead7
 
 pre_configure() {
-	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython3.6m"
+	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython${py3_ver}${py3_abiver}"
 	autoreconf -fi
 }
 

From a705b76ec5565c7de15245a1b9c00ec5c6f67c41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 701/871] libvirt-python: rebuild for Python 3.8.

---
 srcpkgs/libvirt-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvirt-python/template b/srcpkgs/libvirt-python/template
index a2f0e038166..56253c9d3b0 100644
--- a/srcpkgs/libvirt-python/template
+++ b/srcpkgs/libvirt-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libvirt-python'
 pkgname=libvirt-python
 version=5.8.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="libvirt.py libvirt_lxc.py libvirt_qemu.py"
 hostmakedepends="pkg-config python-devel python3-devel libvirt-devel"

From 8ef27ac8a16116dab4764f354baa451b2754ec84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 702/871] libvoikko: rebuild for Python 3.8.

---
 srcpkgs/libvoikko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvoikko/template b/srcpkgs/libvoikko/template
index 8d21b0f9c71..ba8eef837ee 100644
--- a/srcpkgs/libvoikko/template
+++ b/srcpkgs/libvoikko/template
@@ -1,7 +1,7 @@
 # Template file for 'libvoikko'
 pkgname=libvoikko
 version=4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-hfst=false --with-dictionary-path=/usr/share/voikko"
 pycompile_module="libvoikko.py"

From 35109466d5055cb65987c1af77ec9b78d6e988da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 703/871] libxml2-python: rebuild for Python 3.8.

---
 srcpkgs/libxml2-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libxml2-python/template b/srcpkgs/libxml2-python/template
index a80208823c2..5514ed43437 100644
--- a/srcpkgs/libxml2-python/template
+++ b/srcpkgs/libxml2-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libxml2-python'
 pkgname=libxml2-python
 version=2.9.9
-revision=3
+revision=4
 wrksrc="${pkgname%-python}-${version}"
 build_wrksrc=python
 build_style=python-module

From 16ddab1b69781c3e174540bf3e52748c9ee3c428 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 704/871] lightdm-gtk-greeter-settings: rebuild for Python 3.8.

---
 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 715f41bbef4..76a25b91e4c 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=1
+revision=2
 build_style=python3-module
 pycompile_module="lightdm_gtk_greeter_settings"
 hostmakedepends="python3-distutils-extra intltool"

From eac74258184a0698518aa6e568af1bbb6c75f6bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 705/871] llvm9: rebuild for Python 3.8.

---
 srcpkgs/llvm9/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/llvm9/template b/srcpkgs/llvm9/template
index 3c1a1a3451b..890a93855d8 100644
--- a/srcpkgs/llvm9/template
+++ b/srcpkgs/llvm9/template
@@ -1,7 +1,7 @@
 # Template file for 'llvm9'
 pkgname=llvm9
 version=9.0.0
-revision=2
+revision=3
 wrksrc="llvm-${version}.src"
 build_style=cmake
 configure_args="

From a634084342a2841b02669a7c7cc8325eab5b33ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 706/871] lollypop: rebuild for Python 3.8.

---
 srcpkgs/lollypop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lollypop/template b/srcpkgs/lollypop/template
index b3da41654e3..d5c1ba80eba 100644
--- a/srcpkgs/lollypop/template
+++ b/srcpkgs/lollypop/template
@@ -1,7 +1,7 @@
 # Template file for 'lollypop'
 pkgname=lollypop
 version=1.2.3
-revision=1
+revision=2
 # Gitlab upload tag hash
 _uhash=24663baf49d563c97a2029703803f87c
 archs=noarch

From 83028583c7ada3e84e25243d64557f03608c1fc0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 707/871] lutris: rebuild for Python 3.8.

---
 srcpkgs/lutris/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lutris/template b/srcpkgs/lutris/template
index 8f54d693a12..75be521cc7c 100644
--- a/srcpkgs/lutris/template
+++ b/srcpkgs/lutris/template
@@ -1,7 +1,7 @@
 # Template file for 'lutris'
 pkgname=lutris
 version=0.5.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 build_helper="gir"

From a7d4cd4ea7b6776039d0949eb5415b493f7c00f5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 708/871] magic-wormhole: rebuild for Python 3.8.

---
 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 c07753ce6ad..d93a1bbe1fc 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.11.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wormhole"

From c3dfb90e02591b4b81594b637c2b078e1ce0c198 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 709/871] mate-tweak: rebuild for Python 3.8.

---
 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 85b829e85e8..76b79524269 100644
--- a/srcpkgs/mate-tweak/template
+++ b/srcpkgs/mate-tweak/template
@@ -1,7 +1,7 @@
 # Template file for 'mate-tweak'
 pkgname=mate-tweak
 version=19.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-pbr python3-setuptools"

From de97c2b0cc7dfae928ac8c7a225b3b304aeeb47d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 710/871] med: rebuild for Python 3.8.

---
 srcpkgs/med/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/med/template b/srcpkgs/med/template
index 34dd6d006d6..acd79293246 100644
--- a/srcpkgs/med/template
+++ b/srcpkgs/med/template
@@ -1,7 +1,7 @@
 # Template file for 'med'
 pkgname=med
 version=4.0.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--with-swig=yes --includedir=/usr/include/med"
 pycompile_module=med

From 9d94ea3b765d8b2f29ac235dbe5bbb35c50d3bde Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 711/871] meld: rebuild for Python 3.8.

---
 srcpkgs/meld/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meld/template b/srcpkgs/meld/template
index 9ed6114299e..7cbac065ce6 100644
--- a/srcpkgs/meld/template
+++ b/srcpkgs/meld/template
@@ -1,7 +1,7 @@
 # Template file for 'meld'
 pkgname=meld
 version=3.20.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="meld"

From 3702fa187d2477f14686dbc8b1cfc8a0af1af275 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 712/871] menulibre: rebuild for Python 3.8.

---
 srcpkgs/menulibre/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/menulibre/template b/srcpkgs/menulibre/template
index 64311115bec..f16c5f64337 100644
--- a/srcpkgs/menulibre/template
+++ b/srcpkgs/menulibre/template
@@ -1,7 +1,7 @@
 # Template file for 'menulibre'
 pkgname=menulibre
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="menulibre menulibre_lib"

From d39a6ab0a451f562637776635638f163ac7cc2da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 713/871] meson-cmake-wrapper: rebuild for Python 3.8.

---
 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 ca14e533431..57eea159ca8 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mcw"

From 4900fde4e47ad790aab258e34de1a662587276cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 714/871] mimeo: rebuild for Python 3.8.

---
 srcpkgs/mimeo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mimeo/template b/srcpkgs/mimeo/template
index 0301f263763..66cd1e12539 100644
--- a/srcpkgs/mimeo/template
+++ b/srcpkgs/mimeo/template
@@ -1,7 +1,7 @@
 # Template file for 'mimeo'
 pkgname=mimeo
 version=2019.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="Mimeo.py"

From 9073cb98cb3910220966f598bca0a113491d49ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 715/871] mozo: rebuild for Python 3.8.

---
 srcpkgs/mozo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template
index 041f2454c3d..7bc18f017c7 100644
--- a/srcpkgs/mozo/template
+++ b/srcpkgs/mozo/template
@@ -1,7 +1,7 @@
 # Template file for 'mozo'
 pkgname=mozo
 version=1.22.2
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="Mozo"

From be96ace6ea151f038eea3a95ce3918d2acee5d1d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 716/871] mpd-sima: rebuild for Python 3.8.

---
 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 fb72f0d2632..831fec709b7 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=1
+revision=2
 archs=noarch
 wrksrc="MPD_sima-${version}"
 build_style=python3-module

From e86866b3134a705572843f1d5eeb8a62b2d400ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 717/871] mps-youtube: rebuild for Python 3.8.

---
 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 7b104aa706f..2141b3e627d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mps_youtube"

From 39b51221e15fea0e3795d5e0ca940dbf44a6648f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 718/871] mugshot: rebuild for Python 3.8.

---
 srcpkgs/mugshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mugshot/template b/srcpkgs/mugshot/template
index cf27b30acac..1e695654a86 100644
--- a/srcpkgs/mugshot/template
+++ b/srcpkgs/mugshot/template
@@ -1,7 +1,7 @@
 # Template file for 'mugshot'
 pkgname=mugshot
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra"

From 2631882a14e47fc07f71f88bde9b894a54a0a74d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 719/871] multibootusb: rebuild for Python 3.8.

---
 srcpkgs/multibootusb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/multibootusb/template b/srcpkgs/multibootusb/template
index 049b641c5fd..70cb07a85ac 100644
--- a/srcpkgs/multibootusb/template
+++ b/srcpkgs/multibootusb/template
@@ -1,7 +1,7 @@
 # Template file for 'multibootusb'
 pkgname=multibootusb
 version=9.2.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="scripts"

From de3d00639e16628bec1ad434272b800111f74828 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 720/871] mymcplus: rebuild for Python 3.8.

---
 srcpkgs/mymcplus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mymcplus/template b/srcpkgs/mymcplus/template
index 369ac8048ed..f30c62b09f4 100644
--- a/srcpkgs/mymcplus/template
+++ b/srcpkgs/mymcplus/template
@@ -1,7 +1,7 @@
 # Template file for 'mymcplus'
 pkgname=mymcplus
 version=3.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mymcplus"

From 9103630bcf4099b7d5056224682995aea2e8b4e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 721/871] nagstamon: fix and rebuild for Python 3.8.

---
 srcpkgs/nagstamon/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/nagstamon/template b/srcpkgs/nagstamon/template
index 3a63bb5f1d9..0eb5bc75d27 100644
--- a/srcpkgs/nagstamon/template
+++ b/srcpkgs/nagstamon/template
@@ -1,7 +1,7 @@
 # Template file for 'nagstamon'
 pkgname=nagstamon
 version=3.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=Nagstamon
 build_style=python3-module
@@ -16,6 +16,10 @@ homepage="https://nagstamon.ifw-dresden.de"
 distfiles="https://nagstamon.ifw-dresden.de/files/stable/Nagstamon-${version}.tar.gz"
 checksum=a834460e78dc01f62171a83c4a11d890702264ed662863dff39edaf14ae98880
 
+post_extract() {
+	# Gone in python 3.8, but these where the python 3.6 values.  ;)
+	vsed -i -e 's/platform.dist()/("","","")/g' setup.py
+}
 post_install() {
 	chmod 644 ${DESTDIR}/usr/share/pixmaps/nagstamon.svg
 	mv -v ${DESTDIR}/usr/bin/nagstamon.py ${DESTDIR}/usr/bin/nagstamon

From 06b49b05ba6be88eee127a493edb31ea01374322 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 722/871] neovim-remote: rebuild for Python 3.8.

---
 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 d8473bf0521..7391f9df2ee 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.2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nvr"

From 7c26badb13c8773eab3084796060fd88b7f52ab8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 723/871] newt: rebuild for Python 3.8.

---
 srcpkgs/newt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/newt/template b/srcpkgs/newt/template
index 3971bbfdbf7..25ccc946f51 100644
--- a/srcpkgs/newt/template
+++ b/srcpkgs/newt/template
@@ -1,7 +1,7 @@
 # Template file for 'newt'
 pkgname=newt
 version=0.52.21
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python-devel python3-devel"
 makedepends="slang-devel popt-devel python3-devel python-devel"

From 421cddd80436683b3d63be161533af427a53cd2c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 724/871] notmuch: rebuild for Python 3.8.

---
 srcpkgs/notmuch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/notmuch/template b/srcpkgs/notmuch/template
index 6bb8578fa1e..a1b9bc2bcb5 100644
--- a/srcpkgs/notmuch/template
+++ b/srcpkgs/notmuch/template
@@ -1,7 +1,7 @@
 # Template file for 'notmuch'
 pkgname=notmuch
 version=0.29.2
-revision=1
+revision=2
 hostmakedepends="perl pkg-config python-devel python3-Sphinx python3-devel"
 makedepends="bash-completion gmime3-devel talloc-devel xapian-core-devel"
 short_desc="Thread-based email index, search, and tagging"

From 2202004accf986b3d1ff33db1a2710790199435b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 725/871] nyx: rebuild for Python 3.8.

---
 srcpkgs/nyx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/nyx/template b/srcpkgs/nyx/template
index 201ab5856ff..4b265771793 100644
--- a/srcpkgs/nyx/template
+++ b/srcpkgs/nyx/template
@@ -1,7 +1,7 @@
 # Template file for 'nyx'
 pkgname=nyx
 version=2.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nyx"

From adb6681c21949e07d398110fe29d09fba231f344 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 726/871] olm-python: rebuild for Python 3.8.

---
 srcpkgs/olm-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/olm-python/template b/srcpkgs/olm-python/template
index 57ac1cfa01b..0141611ea3f 100644
--- a/srcpkgs/olm-python/template
+++ b/srcpkgs/olm-python/template
@@ -1,7 +1,7 @@
 # Template file for 'olm-python'
 pkgname=olm-python
 version=3.1.4
-revision=1
+revision=2
 wrksrc="olm-${version}"
 build_wrksrc=python
 build_style=python-module

From 7baeaa63b15fda9a28bbfef779eb49689f494795 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 727/871] onboard: rebuild for Python 3.8.

---
 srcpkgs/onboard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onboard/template b/srcpkgs/onboard/template
index 844744038d8..467ed8f0ea5 100644
--- a/srcpkgs/onboard/template
+++ b/srcpkgs/onboard/template
@@ -1,7 +1,7 @@
 # Template file for 'onboard'
 pkgname=onboard
 version=1.4.1
-revision=4
+revision=5
 build_style=python3-module
 pycompile_module="Onboard"
 patch_args="-Np1"

From 8842479589f7c70c2eb205ecc64c40521d728863 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 728/871] openrazer-meta: rebuild for Python 3.8.

---
 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 112cb9e900b..60dc8212a73 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=2
+revision=3
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 891df33ecd09225b66ef6c01cfd9cfa42e0fe3a5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 729/871] openshot: rebuild for Python 3.8.

---
 srcpkgs/openshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/openshot/template b/srcpkgs/openshot/template
index 605ea7305c2..d71b4d09fae 100644
--- a/srcpkgs/openshot/template
+++ b/srcpkgs/openshot/template
@@ -1,7 +1,7 @@
 # Template file for 'openshot'
 pkgname=openshot
 version=2.4.4
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 wrksrc="${pkgname}-qt-${version}"
 build_style=python3-module

From d4125fa5216f1b283a4609213ff8a928aa79019c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 730/871] papis: rebuild for Python 3.8.

---
 srcpkgs/papis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/papis/template b/srcpkgs/papis/template
index 95044b2a6a4..d99f358fc0d 100644
--- a/srcpkgs/papis/template
+++ b/srcpkgs/papis/template
@@ -1,7 +1,7 @@
 # Template file for 'papis'
 pkgname=papis
 version=0.8
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-requests python3-yaml python3-chardet python3-BeautifulSoup4

From a62b944d1e3c1c48d3b5494d5df1d4023f462a55 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 731/871] paraview: rebuild for Python 3.8.

---
 srcpkgs/paraview/template | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/paraview/template b/srcpkgs/paraview/template
index 3b721b1833a..d928a5ea095 100644
--- a/srcpkgs/paraview/template
+++ b/srcpkgs/paraview/template
@@ -1,7 +1,7 @@
 # Template file for 'paraview'
 pkgname=paraview
 version=5.6.1
-revision=1
+revision=2
 wrksrc=ParaView-v${version}
 build_style=cmake
 configure_args="-DPARAVIEW_ENABLE_FFMPEG=ON
@@ -58,6 +58,11 @@ checksum=50ef01f54db6358b402e50d1460ef47c04d675bf26f250c6937737169f1e6612
 CFLAGS="-D_GNU_SOURCE"
 CXXFLAGS="-D_GNU_SOURCE"
 
+post_extract() {
+	# Python 3.8 API change: https://docs.python.org/3/c-api/typeobj.html
+	sed -i '/\/\/ tp_print/s/nullptr/0/' \
+		VTK/Wrapping/Tools/*.c VTK/Wrapping/PythonCore/*.cxx
+}
 post_install() {
 	vlicense Copyright.txt
 }

From b13f7287da311545a8fe8321e136929f136f19c4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 732/871] pass-git-helper: rebuild for Python 3.8.

---
 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 dfeed3ba4f0..6d7f25bd8a7 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.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 0da4f59e5b5b30e9fe705863c4907f0fa6b51aa4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 733/871] peframe: rebuild for Python 3.8.

---
 srcpkgs/peframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peframe/template b/srcpkgs/peframe/template
index b9d64f7a5a6..5ecede6cf56 100644
--- a/srcpkgs/peframe/template
+++ b/srcpkgs/peframe/template
@@ -1,7 +1,7 @@
 # Template file for 'peframe'
 pkgname=peframe
 version=6.0.3
-revision=1
+revision=2
 archs=noarch
 build_style="python3-module"
 pycompile_module="peframe"

From ac8dbdde8fccdbde02985f71754ae380a5a6ddac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 734/871] peru: rebuild for Python 3.8.

---
 srcpkgs/peru/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peru/template b/srcpkgs/peru/template
index 682440f0b50..10d4689338d 100644
--- a/srcpkgs/peru/template
+++ b/srcpkgs/peru/template
@@ -1,7 +1,7 @@
 # Template file for 'peru'
 pkgname=peru
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="peru"

From 6e0510a80a0851592ffc87267830dd8e812df739 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 735/871] pgcli: rebuild for Python 3.8.

---
 srcpkgs/pgcli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index b967287e9cb..b187a0a4440 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,7 +1,7 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pgcli"

From bfe5fcde3ae8034aa107686126a354690e279e6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 736/871] picard: rebuild for Python 3.8.

---
 srcpkgs/picard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/picard/template b/srcpkgs/picard/template
index 1bae142434a..08404a88475 100644
--- a/srcpkgs/picard/template
+++ b/srcpkgs/picard/template
@@ -1,7 +1,7 @@
 # Template file for 'picard'
 pkgname=picard
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname}-release-${version}"
 build_style=python3-module

From 16c34329091464d1ea34a5f8e25e0f9abccbe229 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 737/871] piper: rebuild for Python 3.8.

---
 srcpkgs/piper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/piper/template b/srcpkgs/piper/template
index af8cc854991..91a31131f84 100644
--- a/srcpkgs/piper/template
+++ b/srcpkgs/piper/template
@@ -1,7 +1,7 @@
 # Template file for 'piper'
 pkgname=piper
 version=0.2.904
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 hostmakedepends="libratbag pkg-config glib-devel"

From df50b7b441c144f5b91813fa099005dc6acf4220 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 738/871] playitslowly: rebuild for Python 3.8.

---
 srcpkgs/playitslowly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/playitslowly/template b/srcpkgs/playitslowly/template
index d26cea3510a..6d3483ae251 100644
--- a/srcpkgs/playitslowly/template
+++ b/srcpkgs/playitslowly/template
@@ -1,7 +1,7 @@
 # Template file for 'playitslowly'
 pkgname=playitslowly
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From 62f1b01b75508d40a065b835b5bb51c728f5ab3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 739/871] pmbootstrap: rebuild for Python 3.8.

---
 srcpkgs/pmbootstrap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pmbootstrap/template b/srcpkgs/pmbootstrap/template
index 1bfa8183a84..15e606439c2 100644
--- a/srcpkgs/pmbootstrap/template
+++ b/srcpkgs/pmbootstrap/template
@@ -1,7 +1,7 @@
 # Template file for 'pmbootstrap'
 pkgname=pmbootstrap
 version=1.9.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pmb"

From 7d4ad0f1d5a52d2d5b4cc836f42b6e6721042fb6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 740/871] pockyt: fix and rebuild for Python 3.8.

---
 srcpkgs/pockyt/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/pockyt/template b/srcpkgs/pockyt/template
index 760573904b1..ff12361d443 100644
--- a/srcpkgs/pockyt/template
+++ b/srcpkgs/pockyt/template
@@ -1,7 +1,7 @@
 # Template file for 'pockyt'
 pkgname=pockyt
 version=1.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -13,3 +13,7 @@ license="GPL-3.0-or-later"
 homepage="https://github.com/arvindch/pockyt"
 distfiles="${homepage}/archive/${version}.tar.gz"
 checksum=cd9561e126a6a01c73762639eb7e38b8c509ed1412f72fcc4729b12565b9962c
+
+post_extract() {
+	sed -i 's/(3, 7)/&, (3, 8)/' setup.py
+}

From ccdc7bbfb5c76a6aaa30c7b4b1d78a055386595f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 741/871] poezio: rebuild for Python 3.8.

---
 srcpkgs/poezio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/poezio/template b/srcpkgs/poezio/template
index 56f8138bb5e..4b318419dab 100644
--- a/srcpkgs/poezio/template
+++ b/srcpkgs/poezio/template
@@ -1,7 +1,7 @@
 # Template file for 'poezio'
 pkgname=poezio
 version=0.12.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="poezio poezio_plugins poezio_themes"
 hostmakedepends="python3-setuptools pkg-config"

From b917228a03b654bd5361d5ffdafdd7079b3ad705 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 742/871] protontricks: rebuild for Python 3.8.

---
 srcpkgs/protontricks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/protontricks/template b/srcpkgs/protontricks/template
index a32f51c4845..dc003b63690 100644
--- a/srcpkgs/protontricks/template
+++ b/srcpkgs/protontricks/template
@@ -1,7 +1,7 @@
 # Template file for 'protontricks'
 pkgname=protontricks
 version=1.2.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-setuptools"

From d32e3084381f0e055b862aa5c48512a016c67db4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 743/871] pulseaudio-equalizer-ladspa: rebuild for Python 3.8.

---
 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 62d7eef2a65..10198de2c08 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=1
+revision=2
 wrksrc="equalizer-${version}"
 build_style=meson
 pycompile_module="pulseeq"

From fc7f518755a2866aa14a65205be14921a6d99f13 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 744/871] pulseeffects: rebuild for Python 3.8.

---
 srcpkgs/pulseeffects/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pulseeffects/template b/srcpkgs/pulseeffects/template
index 7fc44f938d9..dc9044cad32 100644
--- a/srcpkgs/pulseeffects/template
+++ b/srcpkgs/pulseeffects/template
@@ -2,7 +2,7 @@
 pkgname=pulseeffects
 reverts="4.3.4_1"
 version=3.2.3
-revision=3
+revision=4
 build_style=meson
 pycompile_module="PulseEffects PulseEffectsTest"
 hostmakedepends="pkg-config"

From 5bd4394a9001c3681d9077b92324ed8ee9353d61 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 745/871] py3status: rebuild for Python 3.8.

---
 srcpkgs/py3status/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/py3status/template b/srcpkgs/py3status/template
index b7a263270e4..01709cfd14d 100644
--- a/srcpkgs/py3status/template
+++ b/srcpkgs/py3status/template
@@ -1,7 +1,7 @@
 # Template file for 'py3status'
 pkgname=py3status
 version=3.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="py3status"

From 2b22eacb3219dcac7e2da0f9a5beed4161aa364f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 746/871] pychess: rebuild for Python 3.8.

---
 srcpkgs/pychess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pychess/template b/srcpkgs/pychess/template
index 2c6ecef7bf9..d0594aa77f4 100644
--- a/srcpkgs/pychess/template
+++ b/srcpkgs/pychess/template
@@ -1,7 +1,7 @@
 # Template file for 'pychess'
 pkgname=pychess
 version=0.12.4
-revision=2
+revision=3
 build_style=python3-module
 pycompile_module="pychess"
 archs=noarch

From 403ab497ad766f20bdf9f46746c432d09f4be1af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 747/871] pycp: rebuild for Python 3.8.

---
 srcpkgs/pycp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pycp/template b/srcpkgs/pycp/template
index 770eb50d3f4..c9066259862 100644
--- a/srcpkgs/pycp/template
+++ b/srcpkgs/pycp/template
@@ -1,7 +1,7 @@
 # Template file for 'pycp'
 pkgname=pycp
 version=8.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pycp"

From e381cecc4c548e1e6bb8195cbe541d555e3b3f6f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 748/871] pymol: rebuild for Python 3.8.

---
 srcpkgs/pymol/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pymol/template b/srcpkgs/pymol/template
index 428ba7a6deb..e1031f325c0 100644
--- a/srcpkgs/pymol/template
+++ b/srcpkgs/pymol/template
@@ -1,7 +1,7 @@
 # Template file for 'pymol'
 pkgname=pymol
 version=2.3.0
-revision=1
+revision=2
 wrksrc=${pkgname}-open-source-${version}
 build_style="python3-module"
 makedepends="msgpack-devel python3-numpy freetype-devel libfreeglut-devel glew-devel

From 6178e9c6db08c488e0937b641ba68f5d95121108 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 749/871] pyradio: rebuild for Python 3.8.

---
 srcpkgs/pyradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyradio/template b/srcpkgs/pyradio/template
index 10d7d8c6fbb..d2d5feddbdd 100644
--- a/srcpkgs/pyradio/template
+++ b/srcpkgs/pyradio/template
@@ -1,7 +1,7 @@
 # Template file for 'pyradio'
 pkgname=pyradio
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pyradio"

From 8f833908e3d7651068b46f8c1091be68964c0ea1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 750/871] pyside2-tools: rebuild for Python 3.8.

---
 srcpkgs/pyside2-tools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyside2-tools/template b/srcpkgs/pyside2-tools/template
index 4ba0044452d..0a153de8c15 100644
--- a/srcpkgs/pyside2-tools/template
+++ b/srcpkgs/pyside2-tools/template
@@ -1,7 +1,7 @@
 # Template file for 'pyside2-tools'
 pkgname=pyside2-tools
 version=5.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release

From c6013c1f62ec73eff09d4f80bc44d3aee9b2f6f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 751/871] pysolfc: rebuild for Python 3.8.

---
 srcpkgs/pysolfc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pysolfc/template b/srcpkgs/pysolfc/template
index 62eb90009af..1631e9619d3 100644
--- a/srcpkgs/pysolfc/template
+++ b/srcpkgs/pysolfc/template
@@ -1,7 +1,7 @@
 # Template file for 'pysolfc'
 pkgname=pysolfc
 version=2.6.4
-revision=2
+revision=3
 archs="noarch"
 wrksrc="PySolFC-${pkgname}-${version}"
 build_style=python3-module

From 52faef0206533b7e6eeaa211d70b08394b2281e7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 752/871] pywal: rebuild for Python 3.8.

---
 srcpkgs/pywal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pywal/template b/srcpkgs/pywal/template
index 214a36698f2..98c4e1581e4 100644
--- a/srcpkgs/pywal/template
+++ b/srcpkgs/pywal/template
@@ -1,7 +1,7 @@
 # Template file for 'pywal'
 pkgname=pywal
 version=3.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pywal"

From 49b40e86bcb78526b5372fe51d7cd108d095c837 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 753/871] qomui: rebuild for Python 3.8.

---
 srcpkgs/qomui/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qomui/template b/srcpkgs/qomui/template
index 4e68864252d..8063350ba06 100644
--- a/srcpkgs/qomui/template
+++ b/srcpkgs/qomui/template
@@ -1,7 +1,7 @@
 # Template file for 'qomui'
 pkgname=qomui
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qomui"

From 69245b7acd1328875e7a100a0c91421e9694d47a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 754/871] quodlibet: rebuild for Python 3.8.

---
 srcpkgs/quodlibet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/quodlibet/template b/srcpkgs/quodlibet/template
index 53f6e926315..4b0c4ba0de5 100644
--- a/srcpkgs/quodlibet/template
+++ b/srcpkgs/quodlibet/template
@@ -1,7 +1,7 @@
 # Template file for 'quodlibet'
 pkgname=quodlibet
 version=4.2.1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="quodlibet"

From fb6fb79dce09314bc071d6f670f38357207e65ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 755/871] qutebrowser: rebuild for Python 3.8.

---
 srcpkgs/qutebrowser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qutebrowser/template b/srcpkgs/qutebrowser/template
index 11b74e4445d..07257c2d84b 100644
--- a/srcpkgs/qutebrowser/template
+++ b/srcpkgs/qutebrowser/template
@@ -1,7 +1,7 @@
 # Template file for 'qutebrowser'
 pkgname=qutebrowser
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qutebrowser"

From 0c43875b88460001b2248095eb1b1cd299729e22 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 756/871] r128gain: rebuild for Python 3.8.

---
 srcpkgs/r128gain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/r128gain/template b/srcpkgs/r128gain/template
index cdea955828e..1cb30c786f8 100644
--- a/srcpkgs/r128gain/template
+++ b/srcpkgs/r128gain/template
@@ -1,7 +1,7 @@
 # Template file for 'r128gain'
 pkgname=r128gain
 version=0.9.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="r128gain"
 hostmakedepends="python3-setuptools"

From 4c8625ed02b794d5c12472894997aa9b8479f871 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 757/871] radicale2: rebuild for Python 3.8.

---
 srcpkgs/radicale2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/radicale2/template b/srcpkgs/radicale2/template
index 0d8a27d89f3..310bc8cb3cf 100644
--- a/srcpkgs/radicale2/template
+++ b/srcpkgs/radicale2/template
@@ -1,7 +1,7 @@
 # Template file for 'radicale2'
 pkgname=radicale2
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module

From 847eb20569b593368a359ed658039108084c017f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 758/871] ranger: rebuild for Python 3.8.

---
 srcpkgs/ranger/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template
index a387eac4ed7..a49716971a5 100644
--- a/srcpkgs/ranger/template
+++ b/srcpkgs/ranger/template
@@ -1,7 +1,7 @@
 # Template file for 'ranger'
 pkgname=ranger
 version=1.9.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ranger"

From cf8e9399d86aa9c8cfba5a942a0296c320501e0c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 759/871] rednotebook: rebuild for Python 3.8.

---
 srcpkgs/rednotebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rednotebook/template b/srcpkgs/rednotebook/template
index ac870a7a992..af7dea12fd5 100644
--- a/srcpkgs/rednotebook/template
+++ b/srcpkgs/rednotebook/template
@@ -1,7 +1,7 @@
 # Template file for 'rednotebook'
 pkgname=rednotebook
 version=2.11.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rednotebook"

From 6646bedccc88874af2a3dea88d3784b38217c99d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 760/871] redshift: rebuild for Python 3.8.

---
 srcpkgs/redshift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/redshift/template b/srcpkgs/redshift/template
index bb31e7cec05..c58b8daeb76 100644
--- a/srcpkgs/redshift/template
+++ b/srcpkgs/redshift/template
@@ -1,7 +1,7 @@
 # Template file for 'redshift'
 pkgname=redshift
 version=1.12
-revision=1
+revision=2
 build_style=gnu-configure
 build_options="geoclue2"
 configure_args="--enable-gui --disable-geoclue $(vopt_enable geoclue2)"

From 2d91c715a6e644766f693598ab646915a1dfd4a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 761/871] ripe-atlas-tools: rebuild for Python 3.8.

---
 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 c8eef786962..c5e21c4b8dc 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=2.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ripe/atlas/tools"

From 07f47ecb89ffcc4fcbe286e92439d30cbbfa3991 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 762/871] rmlint: rebuild for Python 3.8.

---
 srcpkgs/rmlint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rmlint/template b/srcpkgs/rmlint/template
index dc8d904d0c2..894a9a1dd01 100644
--- a/srcpkgs/rmlint/template
+++ b/srcpkgs/rmlint/template
@@ -1,7 +1,7 @@
 # Template file for 'rmlint'
 pkgname=rmlint
 version=2.9.0
-revision=1
+revision=2
 build_style=scons
 hostmakedepends="pkg-config python3-Sphinx glib-devel"
 makedepends="libblkid-devel elfutils-devel json-glib-devel"

From 35b701d052b7a5028464862ce7e838ba7052c895 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 763/871] rtv: rebuild for Python 3.8.

---
 srcpkgs/rtv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rtv/template b/srcpkgs/rtv/template
index 1a089e3e88d..1fc137b2e5b 100644
--- a/srcpkgs/rtv/template
+++ b/srcpkgs/rtv/template
@@ -1,7 +1,7 @@
 # Template file for 'rtv'
 pkgname=rtv
 version=1.27.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rtv"

From f4f31ab458dad66c17ee453a996e749594d8eb94 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 764/871] rubber: rebuild for Python 3.8.

---
 srcpkgs/rubber/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rubber/template b/srcpkgs/rubber/template
index cf668638cef..c7fe4cbbd06 100644
--- a/srcpkgs/rubber/template
+++ b/srcpkgs/rubber/template
@@ -1,7 +1,7 @@
 # Template file for 'rubber'
 pkgname=rubber
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From 09218f831424ff8a77359f8d55561ce246818695 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 765/871] safeeyes: rebuild for Python 3.8.

---
 srcpkgs/safeeyes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/safeeyes/template b/srcpkgs/safeeyes/template
index bc35f302011..e7019662316 100644
--- a/srcpkgs/safeeyes/template
+++ b/srcpkgs/safeeyes/template
@@ -1,7 +1,7 @@
 # Template file for 'safeeyes'
 pkgname=safeeyes
 version=2.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="safeeyes"

From 4826bc6cd37c778f9615ba34f1a9ff428f73b919 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 766/871] scapy: rebuild for Python 3.8.

---
 srcpkgs/scapy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scapy/template b/srcpkgs/scapy/template
index 65242f332a8..36972bfd461 100644
--- a/srcpkgs/scapy/template
+++ b/srcpkgs/scapy/template
@@ -1,7 +1,7 @@
 # Template file for 'scapy'
 pkgname=scapy
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="scapy"

From fda52af9f9f2c9759b98c01a66d6b74e374e1a03 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 767/871] screenplain: rebuild for Python 3.8.

---
 srcpkgs/screenplain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/screenplain/template b/srcpkgs/screenplain/template
index 8410ab45e40..8eb759ae6a6 100644
--- a/srcpkgs/screenplain/template
+++ b/srcpkgs/screenplain/template
@@ -1,7 +1,7 @@
 # Template file for 'screenplain'
 pkgname=screenplain
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenplain"

From 8c8f8f16eb0c4222cad6527365fe4059e101d7ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 768/871] scudcloud: rebuild for Python 3.8.

---
 srcpkgs/scudcloud/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
index 1b9f5f27d8a..1ab2618066e 100644
--- a/srcpkgs/scudcloud/template
+++ b/srcpkgs/scudcloud/template
@@ -1,7 +1,7 @@
 # Template file for 'scudcloud'
 pkgname=scudcloud
 version=1.65
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="scudcloud"
 hostmakedepends="python3-setuptools"

From 1417cec150803e71ac902253a7395fc4c3471188 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 769/871] sonata: rebuild for Python 3.8.

---
 srcpkgs/sonata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template
index 3e07610d1e5..fc2d86e6c1a 100644
--- a/srcpkgs/sonata/template
+++ b/srcpkgs/sonata/template
@@ -1,7 +1,7 @@
 # Template file for 'sonata'
 pkgname=sonata
 version=1.7b1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="sonata"

From f5ffc13d6dd4744977162d8aab3411e1946b0577 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 770/871] speech-dispatcher: rebuild for Python 3.8.

---
 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 0c27951586a..39cebf1f320 100644
--- a/srcpkgs/speech-dispatcher/template
+++ b/srcpkgs/speech-dispatcher/template
@@ -1,7 +1,7 @@
 # Template build file for 'speech-dispatcher'.
 pkgname=speech-dispatcher
 version=0.8.8
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static"
 short_desc="High-level device independent layer for speech synthesis interface"

From b42378bacb1c35748ca95c50a4421eb90c1c8cb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 771/871] speedtest-cli: rebuild for Python 3.8.

---
 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 6746ea3a35e..c65d9fd631d 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.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="speedtest.py"

From 38fea948cc085acd108258951bf01a7f295ba679 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 772/871] sshuttle: rebuild for Python 3.8.

---
 srcpkgs/sshuttle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sshuttle/template b/srcpkgs/sshuttle/template
index e74d90171f2..04bae9a15c3 100644
--- a/srcpkgs/sshuttle/template
+++ b/srcpkgs/sshuttle/template
@@ -1,7 +1,7 @@
 # Template file for 'sshuttle'
 pkgname=sshuttle
 version=0.78.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="sshuttle"

From a418d276f3979b9f9de6115aabc3d733f91dd37d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 773/871] sssd: rebuild for Python 3.8.

---
 srcpkgs/sssd/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sssd/template b/srcpkgs/sssd/template
index 2ea28d21bee..13d0da0ba99 100644
--- a/srcpkgs/sssd/template
+++ b/srcpkgs/sssd/template
@@ -1,7 +1,7 @@
 # Template file for 'sssd'
 pkgname=sssd
 version=2.0.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-selinux --without-semanage
  --disable-cifs-idmap-plugin --without-samba --with-os=fedora

From 41764baa7fd278235ea67f760a8a96580048e425 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 774/871] stcgal: rebuild for Python 3.8.

---
 srcpkgs/stcgal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stcgal/template b/srcpkgs/stcgal/template
index 3410ccf8678..d75e88837cc 100644
--- a/srcpkgs/stcgal/template
+++ b/srcpkgs/stcgal/template
@@ -1,7 +1,7 @@
 # Template file for 'stcgal'
 pkgname=stcgal
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="stcgal"

From a839a68f96477640e7311dd40e34197328a9695f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 775/871] stig: rebuild for Python 3.8.

---
 srcpkgs/stig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stig/template b/srcpkgs/stig/template
index 0777c5f0cc2..abe5f3b563c 100644
--- a/srcpkgs/stig/template
+++ b/srcpkgs/stig/template
@@ -1,7 +1,7 @@
 # Template file for 'stig'
 pkgname=stig
 version=0.10.1a
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 718241b798f6d4da232f69050056df4c1672e069 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 776/871] streamlink: rebuild for Python 3.8.

---
 srcpkgs/streamlink/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/streamlink/template b/srcpkgs/streamlink/template
index abcdc12c4ac..59caa85dc8a 100644
--- a/srcpkgs/streamlink/template
+++ b/srcpkgs/streamlink/template
@@ -1,7 +1,7 @@
 # Template file for 'streamlink'
 pkgname=streamlink
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="streamlink streamlink_cli"

From 1b992228758706f91326f79949ab2f2fee0a823d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 777/871] subuser: rebuild for Python 3.8.

---
 srcpkgs/subuser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/subuser/template b/srcpkgs/subuser/template
index 50444246b29..0bc3e71db36 100644
--- a/srcpkgs/subuser/template
+++ b/srcpkgs/subuser/template
@@ -1,7 +1,7 @@
 # Template file for 'subuser'
 pkgname=subuser
 version=0.6.2
-revision=2
+revision=3
 archs="x86_64*"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 4ceabe2099fa9a0c620da1e0ff21c2f4fc47ef86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 778/871] synapse: rebuild for Python 3.8.

---
 srcpkgs/synapse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template
index daae80e5792..0c0fd6841fb 100644
--- a/srcpkgs/synapse/template
+++ b/srcpkgs/synapse/template
@@ -1,7 +1,7 @@
 # Template file for 'synapse'
 pkgname=synapse
 version=1.3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 97f13af2ed8cb69d9c7d4436fcc15351cc8bd7b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 779/871] tekaim: rebuild for Python 3.8.

---
 srcpkgs/tekaim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tekaim/template b/srcpkgs/tekaim/template
index e3cc5335ecc..bd60dcc57a6 100644
--- a/srcpkgs/tekaim/template
+++ b/srcpkgs/tekaim/template
@@ -1,7 +1,7 @@
 # Template file for 'tekaim'
 pkgname=tekaim
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From fcd5ac24d9ba71098cb734098d7989db26caacc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 780/871] telepresence: rebuild for Python 3.8.

---
 srcpkgs/telepresence/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/telepresence/template b/srcpkgs/telepresence/template
index 17300f3b548..fa7f916f66f 100644
--- a/srcpkgs/telepresence/template
+++ b/srcpkgs/telepresence/template
@@ -1,7 +1,7 @@
 # Template file for 'telepresence'
 pkgname=telepresence
 version=0.102
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="telepresence"

From 21f1ffc6643b20090059bb43b93df3bae97c8d8f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 781/871] termdown: rebuild for Python 3.8.

---
 srcpkgs/termdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/termdown/template b/srcpkgs/termdown/template
index 90a4a894d42..299de920389 100644
--- a/srcpkgs/termdown/template
+++ b/srcpkgs/termdown/template
@@ -1,7 +1,7 @@
 # Template file for 'termdown'
 pkgname=termdown
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="termdown.py"

From a64feedcd922e30b29ed6cd6e7c959a43fb4bc26 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 782/871] terminal_markdown_viewer: rebuild for Python 3.8.

---
 srcpkgs/terminal_markdown_viewer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/terminal_markdown_viewer/template b/srcpkgs/terminal_markdown_viewer/template
index e5d0f38aae2..ba3fcfdc8d6 100644
--- a/srcpkgs/terminal_markdown_viewer/template
+++ b/srcpkgs/terminal_markdown_viewer/template
@@ -1,7 +1,7 @@
 # Template file for 'terminal_markdown_viewer'
 pkgname=terminal_markdown_viewer
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mdv"

From 7cb93a1f44ac9501de681ff6899ef1068cafd9b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 783/871] thefuck: rebuild for Python 3.8.

---
 srcpkgs/thefuck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thefuck/template b/srcpkgs/thefuck/template
index 714cd7982c7..a0de1c7b6a3 100644
--- a/srcpkgs/thefuck/template
+++ b/srcpkgs/thefuck/template
@@ -1,7 +1,7 @@
 # Template file for 'thefuck'
 pkgname=thefuck
 version=3.29
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="thefuck"

From f0a9bf3d83a41a13a76e345132bd503314f223fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 784/871] thinkpad-scripts: rebuild for Python 3.8.

---
 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 8d26cf23e77..855d42492fb 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tps"

From 6c5ba8a1c78b5546c590eaf93f00c3d8f1905c36 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 785/871] thrift: rebuild for Python 3.8.

---
 srcpkgs/thrift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thrift/template b/srcpkgs/thrift/template
index d6b62b2a9fe..ac7eb2ba3a7 100644
--- a/srcpkgs/thrift/template
+++ b/srcpkgs/thrift/template
@@ -1,7 +1,7 @@
 # Template file for 'thrift'
 pkgname=thrift
 version=0.13.0
-revision=1
+revision=2
 build_style=gnu-configure
 makedepends="boost-devel libressl-devel"
 short_desc="Apache Thrift compiler"

From 19d9412631cf6b39e18f4bf383a6f5f9f951b5c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 786/871] todoman: rebuild for Python 3.8.

---
 srcpkgs/todoman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/todoman/template b/srcpkgs/todoman/template
index 2e0489ff49e..676412b8d0b 100644
--- a/srcpkgs/todoman/template
+++ b/srcpkgs/todoman/template
@@ -1,7 +1,7 @@
 # Template file for 'todoman'
 pkgname=todoman
 version=3.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="todoman"

From 916bd05303872c582ae1a0751f072feab6a39d89 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 787/871] toot: rebuild for Python 3.8.

---
 srcpkgs/toot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template
index b6dcdc9ede6..7f9fac6ca01 100644
--- a/srcpkgs/toot/template
+++ b/srcpkgs/toot/template
@@ -1,7 +1,7 @@
 # Template file for 'toot'
 pkgname=toot
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="toot"

From 141b313c1c18ad40985c758a342676ba8b3e685e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 788/871] torbrowser-launcher: fix and rebuild for Python 3.8.

---
 srcpkgs/torbrowser-launcher/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/torbrowser-launcher/template b/srcpkgs/torbrowser-launcher/template
index a4aa707495c..4986b6b3240 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.2
-revision=1
+revision=2
 archs="i686 x86_64" # limited by Tor Browser itself
 build_style=python3-module
 pycompile_module="torbrowser_launcher"
@@ -15,6 +15,10 @@ changelog="https://raw.githubusercontent.com/micahflee/torbrowser-launcher/maste
 distfiles="https://github.com/micahflee/torbrowser-launcher/archive/v${version}.tar.gz"
 checksum=25ad4b0c70579628bf18f4cdcd18ac303fe4f7f1c590cc48df2a87651c92991c
 
+post_extract() { 
+	# Python 3.8 removed platform.dist()
+	sed -i 's/distro =.*/distro = "Void"/' setup.py
+}
 post_install() {
 	vlicense LICENSE
 	rm ${DESTDIR}/usr/share/locale/torbrowser-launcher.mo # installed twice

From 8dea2dc035266ae362e3a5bb99d2b90ae644bd41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 789/871] tox: rebuild for Python 3.8.

---
 srcpkgs/tox/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tox/template b/srcpkgs/tox/template
index 8c6b63a3cb1..908cb86bb38 100644
--- a/srcpkgs/tox/template
+++ b/srcpkgs/tox/template
@@ -1,7 +1,7 @@
 # Template file for 'tox'
 pkgname=tox
 version=3.14.0
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="tox"
 hostmakedepends="python3-setuptools"

From 961b7f981b662a910253aacbdc7da6df43f5bc02 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 790/871] trackma: rebuild for Python 3.8.

---
 srcpkgs/trackma/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/trackma/template b/srcpkgs/trackma/template
index 96833382346..4c29bb8a35d 100644
--- a/srcpkgs/trackma/template
+++ b/srcpkgs/trackma/template
@@ -1,7 +1,7 @@
 # Template file for 'trackma'
 pkgname=trackma
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From df43e9caa47fcc67486be583fb54886019b45d03 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 791/871] trash-cli: rebuild for Python 3.8.

---
 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 2a08548c7c8..4ab724d8cb1 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.17.1.14
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3"

From b592408a78bd36b73cfbeda310da42a48b1fd7a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 792/871] tryton: rebuild for Python 3.8.

---
 srcpkgs/tryton/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tryton/template b/srcpkgs/tryton/template
index 196033361f6..61e0f733dc9 100644
--- a/srcpkgs/tryton/template
+++ b/srcpkgs/tryton/template
@@ -1,7 +1,7 @@
 # Template file for 'tryton'
 pkgname=tryton
 version=5.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tryton"

From a5e890b5de22796167799e66e01cf9fa33372a8f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 793/871] tuimoji: rebuild for Python 3.8.

---
 srcpkgs/tuimoji/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuimoji/template b/srcpkgs/tuimoji/template
index 71e0bf540c0..73f5cff281f 100644
--- a/srcpkgs/tuimoji/template
+++ b/srcpkgs/tuimoji/template
@@ -1,7 +1,7 @@
 # Template file for 'tuimoji'
 pkgname=tuimoji
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tuimoji"

From 0431ef926092bbafafb63d1e24e1818bb191403a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 794/871] tuir: rebuild for Python 3.8.

---
 srcpkgs/tuir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuir/template b/srcpkgs/tuir/template
index dfc0b15c535..a98f4484544 100644
--- a/srcpkgs/tuir/template
+++ b/srcpkgs/tuir/template
@@ -1,7 +1,7 @@
 # Template file for 'tuir'
 pkgname=tuir
 version=1.28.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=python3-module

From b8bfdc99cd7a38c5db6af90f64349fde0ade6768 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 795/871] tzupdate: rebuild for Python 3.8.

---
 srcpkgs/tzupdate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tzupdate/template b/srcpkgs/tzupdate/template
index 9531f0f7540..de2217476bd 100644
--- a/srcpkgs/tzupdate/template
+++ b/srcpkgs/tzupdate/template
@@ -1,7 +1,7 @@
 # Template file for 'tzupdate'
 pkgname=tzupdate
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tzupdate.py"

From 3418c87113ca8014c4baf8f392f989d523c5ceef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 796/871] udiskie: rebuild for Python 3.8.

---
 srcpkgs/udiskie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/udiskie/template b/srcpkgs/udiskie/template
index 536f4d5609d..06d58236046 100644
--- a/srcpkgs/udiskie/template
+++ b/srcpkgs/udiskie/template
@@ -1,7 +1,7 @@
 # Template file for 'udiskie'
 pkgname=udiskie
 version=1.7.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="udiskie"

From 4a08a2ff025bea87a806771bacfae57b40b457f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 797/871] ueberzug: rebuild for Python 3.8.

---
 srcpkgs/ueberzug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ueberzug/template b/srcpkgs/ueberzug/template
index e0c474ff63e..dfa1ab29d96 100644
--- a/srcpkgs/ueberzug/template
+++ b/srcpkgs/ueberzug/template
@@ -1,7 +1,7 @@
 # Template file for 'ueberzug'
 pkgname=ueberzug
 version=18.1.3
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel libX11-devel libXext-devel"

From 9daf6664627da0b1f0463e62450cd07e6cb78761 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 798/871] ufw: rebuild for Python 3.8.

---
 srcpkgs/ufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ufw/template b/srcpkgs/ufw/template
index ac7dfa45cdd..0bf2a3a0b76 100644
--- a/srcpkgs/ufw/template
+++ b/srcpkgs/ufw/template
@@ -1,7 +1,7 @@
 # Template file for 'ufw'
 pkgname=ufw
 version=0.36
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="ufw"

From 5b796771808883c693b434b86fbcec3e192d9322 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 799/871] unicorn: rebuild for Python 3.8.

---
 srcpkgs/unicorn/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/unicorn/template b/srcpkgs/unicorn/template
index 317e261ae88..971d44752ca 100644
--- a/srcpkgs/unicorn/template
+++ b/srcpkgs/unicorn/template
@@ -1,7 +1,7 @@
 # Template file for 'unicorn'
 pkgname=unicorn
 version=1.0.1
-revision=2
+revision=3
 archs="x86_64* i686*"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"
 short_desc="Lightweight multi-platform, multi-architecture CPU emulator framework"

From d2a3b94b84c8b4b41863acf1d0c0a8c770bf085b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 800/871] unknown-horizons: rebuild for Python 3.8.

---
 srcpkgs/unknown-horizons/patches/py38.patch | 14 ++++++++++++++
 srcpkgs/unknown-horizons/template           |  2 +-
 2 files changed, 15 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/unknown-horizons/patches/py38.patch

diff --git a/srcpkgs/unknown-horizons/patches/py38.patch b/srcpkgs/unknown-horizons/patches/py38.patch
new file mode 100644
index 00000000000..59194750cd1
--- /dev/null
+++ b/srcpkgs/unknown-horizons/patches/py38.patch
@@ -0,0 +1,14 @@
+--- setup.py.orig
++++ setup.py
+@@ -39,10 +39,7 @@
+ # Ensure we are in the correct directory
+ os.chdir(os.path.realpath(os.path.dirname(__file__)))
+ 
+-if platform.dist()[0].lower() in ('debian', 'ubuntu'):
+-	executable_path = 'games'
+-else:
+-	executable_path = 'bin'
++executable_path = 'bin'
+ 
+ 
+ # this trick is for setting RELEASE_VERSION if the code is cloned from git repository
diff --git a/srcpkgs/unknown-horizons/template b/srcpkgs/unknown-horizons/template
index b5fc593b744..6e81970800d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3 intltool git python3-Pillow"

From 69f0413132450e05ede5d9fb850a9c7b5207d40d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 801/871] urh: rebuild for Python 3.8.

---
 srcpkgs/urh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urh/template b/srcpkgs/urh/template
index 38da3569724..7e9d3aedad2 100644
--- a/srcpkgs/urh/template
+++ b/srcpkgs/urh/template
@@ -1,7 +1,7 @@
 # Template file for 'urh'
 pkgname=urh
 version=2.8.0
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="urh"
 hostmakedepends="python3-setuptools python3-Cython"

From 4d947580b4c3bc6fc6290d31d2be3a6dabb3fe1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 802/871] urlscan: rebuild for Python 3.8.

---
 srcpkgs/urlscan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlscan/template b/srcpkgs/urlscan/template
index f6f0d1db07b..2bb1688dad7 100644
--- a/srcpkgs/urlscan/template
+++ b/srcpkgs/urlscan/template
@@ -1,7 +1,7 @@
 # Template file for 'urlscan'
 pkgname=urlscan
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlscan"

From 4471ea36f1429047026ae6a3e760fbcd766f7a72 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 803/871] urlwatch: rebuild for Python 3.8.

---
 srcpkgs/urlwatch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlwatch/template b/srcpkgs/urlwatch/template
index e8a5e403c92..1166fe101a7 100644
--- a/srcpkgs/urlwatch/template
+++ b/srcpkgs/urlwatch/template
@@ -1,7 +1,7 @@
 # Template file for 'urlwatch'
 pkgname=urlwatch
 version=2.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlwatch"

From de5bb28a04ef38208dd2f735eb464e07906c2ab5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 804/871] vapoursynth: fix and rebuild for Python 3.8.

---
 srcpkgs/vapoursynth/template | 1 +
 1 file changed, 1 insertion(+)

diff --git a/srcpkgs/vapoursynth/template b/srcpkgs/vapoursynth/template
index ce40f4f8920..1c417a624c3 100644
--- a/srcpkgs/vapoursynth/template
+++ b/srcpkgs/vapoursynth/template
@@ -21,6 +21,7 @@ case $XBPS_TARGET_MACHINE in
 esac
 
 pre_configure() {
+	sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION/&-embed/g' configure.ac
 	./autogen.sh
 	case $XBPS_TARGET_MACHINE in
 		arm*musl)

From 66ae3e22e4eba608415015d27d40beffb4124391 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 805/871] variety: rebuild for Python 3.8.

---
 srcpkgs/variety/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/variety/template b/srcpkgs/variety/template
index b4ea756c0c9..4d327a830f8 100644
--- a/srcpkgs/variety/template
+++ b/srcpkgs/variety/template
@@ -1,7 +1,7 @@
 # Template file for 'variety'
 pkgname=variety
 version=0.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="jumble variety variety_lib"

From baaba822cdfe05e2ceae7c1550984c6ca8657cc1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 806/871] vdirsyncer: rebuild for Python 3.8.

---
 srcpkgs/vdirsyncer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vdirsyncer/template b/srcpkgs/vdirsyncer/template
index 24080413456..708204afda2 100644
--- a/srcpkgs/vdirsyncer/template
+++ b/srcpkgs/vdirsyncer/template
@@ -1,7 +1,7 @@
 # Template file for 'vdirsyncer'
 pkgname=vdirsyncer
 version=0.16.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="vdirsyncer"

From c080c87d7b5fc5984ccc4a89479ac0487cb787d0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 807/871] vidcutter: rebuild for Python 3.8.

---
 srcpkgs/vidcutter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vidcutter/template b/srcpkgs/vidcutter/template
index 4f30b888805..6ca85d4e766 100644
--- a/srcpkgs/vidcutter/template
+++ b/srcpkgs/vidcutter/template
@@ -1,7 +1,7 @@
 # Template file for 'vidcutter'
 pkgname=vidcutter
 version=6.0.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="vidcutter"

From 1e6098ab957aafe4d62bfaa31cd815f5276d0829 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 808/871] vimiv: rebuild for Python 3.8.

---
 srcpkgs/vimiv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vimiv/template b/srcpkgs/vimiv/template
index 20fcbe7a03f..a560d4c9d81 100644
--- a/srcpkgs/vimiv/template
+++ b/srcpkgs/vimiv/template
@@ -1,7 +1,7 @@
 # Template file for 'vimiv'
 pkgname="vimiv"
 version=0.9.1
-revision=2
+revision=3
 build_style=gnu-makefile
 pycompile_module=vimiv
 hostmakedepends="python3-setuptools python3-devel"

From de850df9a59cc4a456990b3d212c6bbfa53d85eb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 809/871] virtme: rebuild for Python 3.8.

---
 srcpkgs/virtme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtme/template b/srcpkgs/virtme/template
index 3905cb24b1d..30035a734f3 100644
--- a/srcpkgs/virtme/template
+++ b/srcpkgs/virtme/template
@@ -1,7 +1,7 @@
 # Template file for 'virtme'
 pkgname=virtme
 version=0.0.3.20180725
-revision=1
+revision=2
 archs=noarch
 _commit=60100bea82183b5d32ed9fca6534cd0fc60d5eb2
 wrksrc="${_commit}"

From ffa647929516d199edac201059609236c2846027 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 810/871] virtualenvwrapper: rebuild for Python 3.8.

---
 srcpkgs/virtualenvwrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtualenvwrapper/template b/srcpkgs/virtualenvwrapper/template
index 6007cc5d2ed..1f0c2efee86 100644
--- a/srcpkgs/virtualenvwrapper/template
+++ b/srcpkgs/virtualenvwrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'virtualenvwrapper'
 pkgname=virtualenvwrapper
 version=4.8.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="virtualenvwrapper"

From ea3b47028db3b90400c89474c4971aa474629900 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 811/871] visidata: rebuild for Python 3.8.

---
 srcpkgs/visidata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/visidata/template b/srcpkgs/visidata/template
index 715896e5f7c..c5c3ae7c82e 100644
--- a/srcpkgs/visidata/template
+++ b/srcpkgs/visidata/template
@@ -1,7 +1,7 @@
 # Template file for 'visidata'
 pkgname=visidata
 version=1.5.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="visidata"

From 8d4431bcf4a19cfcfc1db0958a9ceebd1303d80c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 812/871] volctl: rebuild for Python 3.8.

---
 srcpkgs/volctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template
index 2b01750b9eb..585aabd2495 100644
--- a/srcpkgs/volctl/template
+++ b/srcpkgs/volctl/template
@@ -1,7 +1,7 @@
 # Template file for 'volctl'
 pkgname=volctl
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="volctl"

From 307964a52ca30d0065f26fbc0690e0a869834271 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 813/871] voltron: rebuild for Python 3.8.

---
 srcpkgs/voltron/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/voltron/template b/srcpkgs/voltron/template
index c258bb9bab9..38f47a824e3 100644
--- a/srcpkgs/voltron/template
+++ b/srcpkgs/voltron/template
@@ -1,7 +1,7 @@
 # Template file for 'voltron'
 pkgname=voltron
 version=0.1.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="voltron"

From 1e793f15eea49af5d3d62a86e2017fe3377cce9d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 814/871] volume_key: rebuild for Python 3.8.

---
 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 11d7b16bed8..14431cb70e9 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=1
+revision=2
 build_style=gnu-configure
 make_build_args="PYTHON3_CFLAGS=-I${XBPS_CROSS_BASE}/${py3_inc}
  PYTHON_CFLAGS=-I${XBPS_CROSS_BASE}/${py2_inc}"

From ff43cd8de901a41f82b5c6c582c4bfcc203c9888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 815/871] weather: rebuild for Python 3.8.

---
 srcpkgs/weather/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weather/template b/srcpkgs/weather/template
index ffa8a828b36..3ac33bfac15 100644
--- a/srcpkgs/weather/template
+++ b/srcpkgs/weather/template
@@ -1,7 +1,7 @@
 # Template file for 'weather'
 pkgname=weather
 version=2.3
-revision=2
+revision=3
 archs=noarch
 hostmakedepends="python3"
 depends="python3"

From ae14c4ff3642aa5f9f3aab8218a505ab857c5d1a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 816/871] wfuzz: rebuild for Python 3.8.

---
 srcpkgs/wfuzz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wfuzz/template b/srcpkgs/wfuzz/template
index 8e0d350b301..15de80da391 100644
--- a/srcpkgs/wfuzz/template
+++ b/srcpkgs/wfuzz/template
@@ -1,7 +1,7 @@
 # Template file for 'wfuzz'
 pkgname=wfuzz
 version=2.4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wfuzz"

From ca9548061e943f8c56d440b2971cb85d3f6c9392 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 817/871] wpgtk: rebuild for Python 3.8.

---
 srcpkgs/wpgtk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpgtk/template b/srcpkgs/wpgtk/template
index ed931079816..32d2d7c03e8 100644
--- a/srcpkgs/wpgtk/template
+++ b/srcpkgs/wpgtk/template
@@ -1,7 +1,7 @@
 # Template file for 'wpgtk'
 pkgname=wpgtk
 version=6.0.11
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpgtk"

From 17eea1e532d83badff0a07fa3b8ac17545405749 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 818/871] wpull: rebuild for Python 3.8.

---
 srcpkgs/wpull/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpull/template b/srcpkgs/wpull/template
index 5e9b9dcc641..621e1c85428 100644
--- a/srcpkgs/wpull/template
+++ b/srcpkgs/wpull/template
@@ -1,7 +1,7 @@
 # Template file for 'wpull'
 pkgname=wpull
 version=2.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpull"

From 3cccafdd3be15a249dc3d17edf34feccab7f1ad5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 819/871] wxPython4: rebuild for Python 3.8.

---
 srcpkgs/wxPython4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wxPython4/template b/srcpkgs/wxPython4/template
index 2aa7117d5e0..b65e0b2ffe1 100644
--- a/srcpkgs/wxPython4/template
+++ b/srcpkgs/wxPython4/template
@@ -1,7 +1,7 @@
 # Template file for 'wxPython4'
 pkgname=wxPython4
 version=4.0.6
-revision=2
+revision=3
 wrksrc="wxPython-${version}"
 build_style=python3-module
 pycompile_module="wx"

From 07f525252e64b49a2c04ba2dfa0980e11eb148d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 820/871] xcb-proto: rebuild for Python 3.8.

---
 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 1b26ecd73f3..020524bda87 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.13
-revision=2
+revision=3
 archs=noarch
 build_style=gnu-configure
 pycompile_module="xcbgen"

From f2604e3a1d0e598eb12d5096a6dd0570e50fe24a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 821/871] xdot: rebuild for Python 3.8.

---
 srcpkgs/xdot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xdot/template b/srcpkgs/xdot/template
index 23f7b1f17e0..f7507ffb8c5 100644
--- a/srcpkgs/xdot/template
+++ b/srcpkgs/xdot/template
@@ -1,7 +1,7 @@
 # Template file for 'xdot'
 pkgname=xdot
 version=1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="xdot.py-${version}"
 build_style=python3-module

From 7c54685acf5d5f3d71c920f8034df31951dea793 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 822/871] xkcdpass: rebuild for Python 3.8.

---
 srcpkgs/xkcdpass/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xkcdpass/template b/srcpkgs/xkcdpass/template
index 46b4a9635f9..37fb6872079 100644
--- a/srcpkgs/xkcdpass/template
+++ b/srcpkgs/xkcdpass/template
@@ -1,7 +1,7 @@
 # Template file for 'xkcdpass'
 pkgname=xkcdpass
 version=1.17.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="XKCD-password-generator-xkcdpass-${version}"
 build_style=python3-module

From d1d71c70fde54ecba493ec9895080e089dafdac7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 823/871] xonsh: rebuild for Python 3.8.

---
 srcpkgs/xonsh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xonsh/template b/srcpkgs/xonsh/template
index 22f5cefac59..7f0fee838e4 100644
--- a/srcpkgs/xonsh/template
+++ b/srcpkgs/xonsh/template
@@ -1,7 +1,7 @@
 # Template file for 'xonsh'
 pkgname=xonsh
 version=0.9.13
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="xonsh xontrib"

From 76d72f5b7043286e0d3fef118c5f40b6f1db6ca2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 824/871] yq: rebuild for Python 3.8.

---
 srcpkgs/yq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yq/template b/srcpkgs/yq/template
index d8dbcdaadd7..a0c66899d12 100644
--- a/srcpkgs/yq/template
+++ b/srcpkgs/yq/template
@@ -1,7 +1,7 @@
 # Template file for 'yq'
 pkgname=yq
 version=2.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 03b85e44bce454542dd0e0b6888d01136ed3e361 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 825/871] ytcc: rebuild for Python 3.8.

---
 srcpkgs/ytcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ytcc/template b/srcpkgs/ytcc/template
index feafa404b75..df4195758c7 100644
--- a/srcpkgs/ytcc/template
+++ b/srcpkgs/ytcc/template
@@ -1,7 +1,7 @@
 # Template file for 'ytcc'
 pkgname=ytcc
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ytcc"

From 32e3e12373416d9ca29ee8afc06f9084f11adbe9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 826/871] yturl: rebuild for Python 3.8.

---
 srcpkgs/yturl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yturl/template b/srcpkgs/yturl/template
index 6fa3e9872ee..ee14b77b5a0 100644
--- a/srcpkgs/yturl/template
+++ b/srcpkgs/yturl/template
@@ -1,7 +1,7 @@
 # Template file for 'yturl'
 pkgname=yturl
 version=2.0.2
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 9d73e5e5740549b39201e2d4334800033d567202 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 827/871] yubikey-manager: rebuild for Python 3.8.

---
 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 af0330e8e15..fcc7b7cb737 100644
--- a/srcpkgs/yubikey-manager/template
+++ b/srcpkgs/yubikey-manager/template
@@ -1,7 +1,7 @@
 # Template file for 'yubikey-manager'
 pkgname=yubikey-manager
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From c0eef64fae5edddadb34deb6ee952652637844c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 828/871] z3: rebuild for Python 3.8.

---
 srcpkgs/z3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/z3/template b/srcpkgs/z3/template
index d632a285019..e054915df91 100644
--- a/srcpkgs/z3/template
+++ b/srcpkgs/z3/template
@@ -1,7 +1,7 @@
 # Template file for 'z3'
 pkgname=z3
 version=4.8.6
-revision=2
+revision=3
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=configure
 configure_args="--prefix=/usr -g --python $(vopt_if ocaml --ml)"

From 19c120ab68e97acef0c50e0612fb492feca84237 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 829/871] zim: rebuild for Python 3.8.

---
 srcpkgs/zim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/zim/template b/srcpkgs/zim/template
index 45b9df5357c..dff4ad22081 100644
--- a/srcpkgs/zim/template
+++ b/srcpkgs/zim/template
@@ -1,7 +1,7 @@
 # Template file for 'zim'
 pkgname=zim
 version=0.71.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="zim"

From 755abbd49b11eb9ba6fd53dbfbff5ee3bc8f37a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 830/871] python3-pafy: rebuild for Python 3.8.

---
 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 ce26f770c69..b59c9a0adff 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.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pafy-${version}"
 build_style=python3-module

From fba7eef22194fd104979d0cbd7585417bee2b286 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 831/871] python3-perf: rebuild for Python 3.8.

---
 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 a03251f97e8..3d57ddb1c1a 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.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyperf-${version}"
 build_style=python3-module

From bd9e5b67cd6b87164d6c4c5ad3f6c48f2202f901 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 832/871] python3-yara: rebuild for Python 3.8.

---
 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 4a6c56dd083..3bdff14a0da 100644
--- a/srcpkgs/python3-yara/template
+++ b/srcpkgs/python3-yara/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-yara'
 pkgname=python3-yara
 version=3.11.0
-revision=1
+revision=2
 wrksrc="yara-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From aa9042bfebdf04024da9761297aae52af22fda19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:31 +0200
Subject: [PATCH 833/871] azote: rebuild for Python 3.8.

---
 srcpkgs/azote/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/azote/template b/srcpkgs/azote/template
index 0a23c209551..2748cb98733 100644
--- a/srcpkgs/azote/template
+++ b/srcpkgs/azote/template
@@ -1,7 +1,7 @@
 # Template file for 'azote'
 pkgname=azote
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="azote"

From 1edb4be90ef6070e34bac67fec550fcd24b475f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 834/871] binwalk: rebuild for Python 3.8.

---
 srcpkgs/binwalk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/binwalk/template b/srcpkgs/binwalk/template
index 461ea4b547a..fccd523d584 100644
--- a/srcpkgs/binwalk/template
+++ b/srcpkgs/binwalk/template
@@ -1,7 +1,7 @@
 # Template file for 'binwalk'
 pkgname=binwalk
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="binwalk"

From 56fe82c8e57be1ad86cdf985fbdd50a0991073ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 835/871] gnome-builder: rebuild for Python 3.8.

---
 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 9ae9ff9d94c..85aeeee9a15 100644
--- a/srcpkgs/gnome-builder/template
+++ b/srcpkgs/gnome-builder/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-builder'
 pkgname=gnome-builder
 version=3.34.1
-revision=1
+revision=2
 build_style=meson
 configure_args="-Dwith_webkit=true -Dwith_sysprof=true -Dhelp=true"
 hostmakedepends="appdata-tools desktop-file-utils flex gobject-introspection

From c00e746f4a8383591a879544b6b946a479dc52cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 836/871] gnome-tweaks: rebuild for Python 3.8.

---
 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 ac1f8bdb873..d0879253ac5 100644
--- a/srcpkgs/gnome-tweaks/template
+++ b/srcpkgs/gnome-tweaks/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-tweaks'
 pkgname=gnome-tweaks
 version=3.34.0
-revision=2
+revision=3
 archs=noarch
 build_style=meson
 pycompile_module="gtweak"

From 0f815f730af0cc46d68a794f1585d3d9d60a7283 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 837/871] meson: rebuild for Python 3.8.

---
 srcpkgs/meson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meson/template b/srcpkgs/meson/template
index 315a0f27a92..76791451681 100644
--- a/srcpkgs/meson/template
+++ b/srcpkgs/meson/template
@@ -2,7 +2,7 @@
 pkgname=meson
 reverts="0.52.0_1 0.52.0_2"
 version=0.51.2
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mesonbuild"

From e7341c8fb2a6a192b65f949afb2022db02adc234 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 838/871] onionshare: rebuild for Python 3.8.

---
 srcpkgs/onionshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onionshare/template b/srcpkgs/onionshare/template
index c585ae6101e..c37c5962736 100644
--- a/srcpkgs/onionshare/template
+++ b/srcpkgs/onionshare/template
@@ -1,7 +1,7 @@
 # Template file for 'onionshare'
 pkgname=onionshare
 version=2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="onionshare"

From f85f071b87a1948de3d7250e1ff166ddd12fbea8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 839/871] portage: rebuild for Python 3.8.

---
 srcpkgs/portage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/portage/template b/srcpkgs/portage/template
index 2ebed65fb3c..7047c85f96c 100644
--- a/srcpkgs/portage/template
+++ b/srcpkgs/portage/template
@@ -1,7 +1,7 @@
 # Template file for 'portage'
 pkgname=portage
 version=2.3.78
-revision=1
+revision=2
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=python3-module
 pycompile_module="portage _emerge"

From 6ad57e88d109844c04724bfe8d81a0952135b0f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 840/871] rpm: fix and rebuild for Python 3.8.

---
 srcpkgs/rpm/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/rpm/template b/srcpkgs/rpm/template
index 98e35930c4c..695195323fd 100644
--- a/srcpkgs/rpm/template
+++ b/srcpkgs/rpm/template
@@ -1,7 +1,7 @@
 # Template file for 'rpm'
 pkgname=rpm
 version=4.15.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--with-lua --with-cap --with-acl --with-external-db
  --enable-python PYTHON=python3"
@@ -18,7 +18,7 @@ distfiles="http://ftp.rpm.org/releases/rpm-4.15.x/rpm-${version}.tar.bz2"
 checksum=1e06723b13591e57c99ebe2006fb8daddc4cf72efb366a64a34673ba5f61c201
 conflicts="rpmextract>=0" # Both provide rpm2cpio
 
-CFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6"
+CFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nss"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nspr"
 

From 393e3c4e93b7f1c41ed0421f67e81f8d966f9efc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 841/871] youtube-dl: rebuild for Python 3.8.

---
 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 933fd4a57d6..7bd35a6d086 100644
--- a/srcpkgs/youtube-dl/template
+++ b/srcpkgs/youtube-dl/template
@@ -1,7 +1,7 @@
 # Template file for 'youtube-dl'
 pkgname=youtube-dl
 version=2019.10.29
-revision=1
+revision=2
 archs=noarch
 wrksrc=youtube-dl
 build_style=python3-module

From 244182cdcd229572291a89dc4efa1063396ea733 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 842/871] blender: rebuild for Python 3.8.

---
 srcpkgs/blender/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template
index 758d1235185..47cb8f8ad13 100644
--- a/srcpkgs/blender/template
+++ b/srcpkgs/blender/template
@@ -1,7 +1,7 @@
 # Template file for 'blender'
 pkgname=blender
 version=2.79b
-revision=9
+revision=10
 build_style="cmake"
 makedepends="
  libgomp-devel libpng-devel tiff-devel python3-devel glu-devel

From d8d362924fe3a893d738d708f6a00bdee3ae8684 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 843/871] freecad: fix and rebuild for Python 3.8.

---
 srcpkgs/freecad/patches/090-py38.patch | 22 ++++++++++++++++++++++
 srcpkgs/freecad/template               |  2 +-
 2 files changed, 23 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/freecad/patches/090-py38.patch

diff --git a/srcpkgs/freecad/patches/090-py38.patch b/srcpkgs/freecad/patches/090-py38.patch
new file mode 100644
index 00000000000..92566df9df3
--- /dev/null
+++ b/srcpkgs/freecad/patches/090-py38.patch
@@ -0,0 +1,22 @@
+From 174011749d836f3b6c6ae2630f53b2f4c1f9d3fc Mon Sep 17 00:00:00 2001
+From: Richard <hobbes1069@gmail.com>
+Date: Thu, 17 Oct 2019 11:20:10 -0500
+Subject: [PATCH] Update swigpyrun.in for Python 3.8
+
+In Python 3.8 some functions related to thread state were intentionally made private.
+
+This fix (specific to FreeCAD) was suggested here:
+
+https://bugs.python.org/issue35886
+
+--- src/Base/swigpyrun.inl
++++ src/Base/swigpyrun.inl
+@@ -72,7 +72,7 @@ void cleanupSWIG_T(const char* TypeName)
+ 
+     PyObject *module, *dict;
+     PyInterpreterState *interp = PyThreadState_GET()->interp;
+-    PyObject *modules = interp->modules;
++    PyObject *modules = PyImport_GetModuleDict();
+     module = PyDict_GetItemString(modules, "__builtin__");
+     if (module != NULL && PyModule_Check(module)) {
+         dict = PyModule_GetDict(module);
diff --git a/srcpkgs/freecad/template b/srcpkgs/freecad/template
index 70caa0f5793..54759a77399 100644
--- a/srcpkgs/freecad/template
+++ b/srcpkgs/freecad/template
@@ -1,7 +1,7 @@
 # Template file for 'freecad'
 pkgname=freecad
 version=0.18.4
-revision=1
+revision=2
 wrksrc="FreeCAD-${version}"
 build_style=cmake
 

From 7e0159ffa7f9f0c6b6879037df16a778c81d701b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 844/871] gdb: rebuild for Python 3.8.

---
 srcpkgs/gdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gdb/template b/srcpkgs/gdb/template
index 9f84e4869e9..39aab79d08a 100644
--- a/srcpkgs/gdb/template
+++ b/srcpkgs/gdb/template
@@ -1,7 +1,7 @@
 # Template file for 'gdb'
 pkgname=gdb
 version=8.3.1
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="/usr/share/gdb"
 configure_args="--disable-werror --disable-nls --with-system-readline

From d4b6c095825630e9b217f28b8e9666b75cd68b65 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 845/871] hexchat: rebuild for Python 3.8.

---
 srcpkgs/hexchat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hexchat/template b/srcpkgs/hexchat/template
index fbeaf28ae8a..9f7d7957b76 100644
--- a/srcpkgs/hexchat/template
+++ b/srcpkgs/hexchat/template
@@ -1,7 +1,7 @@
 # Template file for 'hexchat'
 pkgname=hexchat
 version=2.14.2
-revision=6
+revision=7
 build_style=meson
 configure_args="-Dwith-dbus=true -Dwith-ssl=true -Dwith-text=false
  -Dwith-perl=/usr/bin/perl -Dwith-python=python3

From d0fe3dd780e0f25a09fd3ad9a8e8191227a5a00c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 846/871] hyperion: rebuild for Python 3.8.

---
 srcpkgs/hyperion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hyperion/template b/srcpkgs/hyperion/template
index 0befdbe7064..7ce415e929e 100644
--- a/srcpkgs/hyperion/template
+++ b/srcpkgs/hyperion/template
@@ -1,7 +1,7 @@
 # Template file for 'hyperion'
 pkgname=hyperion
 version=1.03.2
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DUSE_SYSTEM_PROTO_LIBS=ON -DENABLE_QT5=ON
  -DPROTOBUF_PROTOC_EXECUTABLE=/usr/bin/protoc -DENABLE_AMLOGIC=ON

From fbdd1747825be4f119eeeb6f877cb2e93a56ab99 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 847/871] kdevelop-python: rebuild for Python 3.8.

---
 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 0265916a3d0..a306eb8f442 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.4.2
-revision=1
+revision=2
 wrksrc="kdev-python-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/kdevpythonsupport"

From 087e09a5585806a877fb0d061f8e95e8136ba17c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 848/871] kitty: rebuild for Python 3.8.

---
 srcpkgs/kitty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/kitty/template b/srcpkgs/kitty/template
index d79bcc4acce..54cd08c23ec 100644
--- a/srcpkgs/kitty/template
+++ b/srcpkgs/kitty/template
@@ -1,7 +1,7 @@
 # Template file for 'kitty'
 pkgname=kitty
 version=0.14.6
-revision=1
+revision=2
 pycompile_dirs="usr/lib/kitty"
 hostmakedepends="ncurses pkg-config python3 wayland-devel wayland-protocols"
 makedepends="gettext-devel glfw-devel harfbuzz-devel libxkbcommon-devel

From a33133b8a5290f24b2d221fbcb81fffeac2e98fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 849/871] krita: rebuild for Python 3.8, fix sha256sum.

Tarball was yanked for trivial fix.
---
 srcpkgs/krita/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/krita/template b/srcpkgs/krita/template
index 7a59fc9ac58..67f128c61ce 100644
--- a/srcpkgs/krita/template
+++ b/srcpkgs/krita/template
@@ -1,7 +1,7 @@
 # Template file for 'krita'
 pkgname=krita
 version=4.2.7.1
-revision=1
+revision=2
 build_style=cmake
 configure_args="-Wno-dev -DBUILD_TESTING=OFF"
 hostmakedepends="extra-cmake-modules pkg-config python3"
@@ -18,6 +18,6 @@ license="GPL-3.0-only"
 homepage="https://krita.org/"
 KDE_SITE="http://ftp5.gwdg.de/pub/linux/kde/stable/"
 distfiles="${KDE_SITE}/krita/${version}/krita-${version}.tar.gz"
-checksum=28218030edca9dfa1c7e255401ca6fc8fe0e5329f7611cfc196e35746d312086
+checksum=3ed29fd9d8e067def55e703fc55312815c21041d274727e228bdbe0478c09c3d
 nocross=yes
 replaces="calligra-krita>=0"

From 33500b8ce395556e0e748bc3df419e48fb8823e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:26:38 +0200
Subject: [PATCH 850/871] libpeas: rebuild for Python 3.8.

---
 srcpkgs/libpeas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index a69238bf823..d4dcf8b5941 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,7 +1,7 @@
 # Template file for 'libpeas'
 pkgname=libpeas
 version=1.22.0
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"

From 911e53e0f2d0cb10ce0c829a887bf849d4c82a8b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 851/871] libreoffice: rebuild for Python 3.8.

---
 srcpkgs/libreoffice/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template
index 9d09324b59b..90c2542cf6c 100644
--- a/srcpkgs/libreoffice/template
+++ b/srcpkgs/libreoffice/template
@@ -1,7 +1,7 @@
 # Template file for 'libreoffice'
 pkgname=libreoffice
 version=6.2.5.2
-revision=2
+revision=3
 build_style=meta
 make_build_args="build-nocheck"
 nocross=yes

From 6272bbd1eb3a4d4f9d3b5ab17f7b1dff31ab13ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 852/871] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index 1f9c8043b46..34174be7535 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=5
+revision=6
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From 7688aec5ca8fa6e9f52baf156f7103d092a7d500 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 853/871] libsigrokdecode: rebuild for Python 3.8.

---
 srcpkgs/libsigrokdecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsigrokdecode/template b/srcpkgs/libsigrokdecode/template
index 59e15dd61b9..cc9d9a10367 100644
--- a/srcpkgs/libsigrokdecode/template
+++ b/srcpkgs/libsigrokdecode/template
@@ -1,7 +1,7 @@
 # Template file for 'libsigrokdecode'
 pkgname=libsigrokdecode
 version=0.5.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="glib-devel python3-devel"

From e18e058362ac54e325f4092c4c68f42e8f85866b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 854/871] luxrays: rebuild for Python 3.8.

---
 srcpkgs/luxrays/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/luxrays/template b/srcpkgs/luxrays/template
index c783e9fe3e5..58037fbfc05 100644
--- a/srcpkgs/luxrays/template
+++ b/srcpkgs/luxrays/template
@@ -1,7 +1,7 @@
 # Template file for 'luxrays'
 pkgname=luxrays
 version=3.1
-revision=13
+revision=14
 build_style=cmake
 configure_args="-DLUXRAYS_DISABLE_OPENCL=OFF -DCMAKE_SKIP_RPATH=ON"
 hostmakedepends="flex bison boost-devel"

From f3aa7c30e6d5a4051bcf54039630785fac14391a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 855/871] navit: rebuild for Python 3.8.

---
 srcpkgs/navit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/navit/template b/srcpkgs/navit/template
index 461689a3c73..24cd151c64b 100644
--- a/srcpkgs/navit/template
+++ b/srcpkgs/navit/template
@@ -1,7 +1,7 @@
 # Template file for 'navit'
 pkgname=navit
 version=0.5.3
-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 5cd2a0eb4e5cb271782feae07ceb731852542663 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 856/871] obs: rebuild for Python 3.8.

---
 srcpkgs/obs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/obs/template b/srcpkgs/obs/template
index bec2ad776d8..fcc26ba1bf4 100644
--- a/srcpkgs/obs/template
+++ b/srcpkgs/obs/template
@@ -1,7 +1,7 @@
 # Template file for 'obs'
 pkgname=obs
 version=24.0.3
-revision=1
+revision=2
 _commit_hash_obs_browser="693498b518cf893876f454ef581e13106e8370ec"
 _commit_hash_obs_vst="fde438f7a8afdf41a7ab386a0aa1a61175fc8427"
 _commit_hash_ftl_sdk="98289f7c2ed754c647d451899b3356850c0c1fa3"

From 1de99a965d425a088fe49db869edec16ac12f4ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 857/871] renderdoc: fix and rebuild for Python 3.8.

---
 srcpkgs/renderdoc/files/swig-py38.patch    | 28 +++++++++++++
 srcpkgs/renderdoc/patches/cmake-py38.patch | 48 ++++++++++++++++++++++
 srcpkgs/renderdoc/template                 |  8 ++--
 3 files changed, 81 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/renderdoc/files/swig-py38.patch
 create mode 100644 srcpkgs/renderdoc/patches/cmake-py38.patch

diff --git a/srcpkgs/renderdoc/files/swig-py38.patch b/srcpkgs/renderdoc/files/swig-py38.patch
new file mode 100644
index 00000000000..0595599c658
--- /dev/null
+++ b/srcpkgs/renderdoc/files/swig-py38.patch
@@ -0,0 +1,28 @@
+From dbe955dd0300d55a32fd73a4eef730b3e30ed5c4 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 20:32:03 +0200
+Subject: [PATCH] swig: avoid use of _PyObject_GC_UNTRACK
+
+It is deprecated[1]. Use PyObject_GC_UnTrack instead.
+
+[1] https://docs.python.org/3/c-api/gcsupport.html#c._PyObject_GC_UNTRACK
+---
+ Lib/python/builtin.swg | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Lib/python/builtin.swg b/Lib/python/builtin.swg
+index 9597653b7..6af45a9d1 100644
+--- a/Lib/python/builtin.swg
++++ b/Lib/python/builtin.swg
+@@ -120,7 +120,7 @@ SwigPyBuiltin_FunpackSetterClosure (PyObject *obj, PyObject *val, void *closure)
+ 
+ SWIGINTERN void
+ SwigPyStaticVar_dealloc(PyDescrObject *descr) {
+-  _PyObject_GC_UNTRACK(descr);
++  PyObject_GC_UnTrack(descr);
+   Py_XDECREF(PyDescr_TYPE(descr));
+   Py_XDECREF(PyDescr_NAME(descr));
+   PyObject_GC_Del(descr);
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/patches/cmake-py38.patch b/srcpkgs/renderdoc/patches/cmake-py38.patch
new file mode 100644
index 00000000000..fc1adb9ddbc
--- /dev/null
+++ b/srcpkgs/renderdoc/patches/cmake-py38.patch
@@ -0,0 +1,48 @@
+From 56769d3e2cc12670b73a1ddd9dfaab959340c2e2 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 21:27:02 +0200
+Subject: [PATCH] CMake: py3.8 support, ability to patch swig
+
+Add 3.8 to list of python versions and ability to patch the custom
+swig, also needed for 3.8
+---
+ CMakeLists.txt            | 2 +-
+ qrenderdoc/CMakeLists.txt | 2 ++
+ 2 files changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 13818e5b8..00feda2ad 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -308,7 +308,7 @@ add_subdirectory(renderdoc)
+ # are handled in common
+ if(ENABLE_QRENDERDOC OR ENABLE_PYRENDERDOC)
+     # Make sure Python 3 is found
+-    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7)
++    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7 3.8)
+     find_package(PythonInterp 3 REQUIRED)
+     find_package(PythonLibs 3 REQUIRED)
+     # we also need python3-config for swig
+diff --git a/qrenderdoc/CMakeLists.txt b/qrenderdoc/CMakeLists.txt
+index 9fd65b2d3..1ef284349 100644
+--- a/qrenderdoc/CMakeLists.txt
++++ b/qrenderdoc/CMakeLists.txt
+@@ -7,6 +7,7 @@ endif()
+ 
+ set(QMAKE_QT5_COMMAND ${QT_QMAKE_EXECUTABLE} CACHE STRING "Command to run to invoke Qt5's qmake. Normally this is qmake, possibly with qtchooser, but might be qmake-qt5")
+ set(RENDERDOC_SWIG_PACKAGE https://github.com/baldurk/swig/archive/renderdoc-modified-6.zip CACHE STRING "The location where RenderDoc's swig fork source can be found. By default points to the URL on github but can be pointed to a local file.")
++set(RENDERDOC_SWIG_PATCH "" CACHE STRING "The location for the patch to apply to swig.")
+ 
+ set(QMAKE_CONFIG "debug")
+ set(QMAKE_LDFLAGS "")
+@@ -99,6 +100,7 @@ ExternalProject_Add(custom_swig
+     # using an URL to a zip directly so we don't clone the history etc
+     URL ${RENDERDOC_SWIG_PACKAGE}
+     BUILD_IN_SOURCE 1
++    PATCH_COMMAND patch -p1 -i ${RENDERDOC_SWIG_PATCH} > /dev/null
+     CONFIGURE_COMMAND ./autogen.sh > /dev/null 2>&1
+     COMMAND CC=${SWIG_CONFIGURE_CC} CXX=${SWIG_CONFIGURE_CXX} CFLAGS=-fPIC CXXFLAGS=-fPIC ./configure --with-pcre=yes --prefix=${CMAKE_BINARY_DIR} > /dev/null
+     BUILD_COMMAND ${GENERATOR_MAKE} > /dev/null 2>&1
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/template b/srcpkgs/renderdoc/template
index 32d051864d3..9972d9435b0 100644
--- a/srcpkgs/renderdoc/template
+++ b/srcpkgs/renderdoc/template
@@ -1,11 +1,13 @@
 # Template file for 'renderdoc'
 pkgname=renderdoc
 version=1.4
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DENABLE_GL=ON -DENABLE_GLES=ON -DENABLE_QRENDERDOC=ON
  -DENABLE_RENDERDOCCMD=ON -DENABLE_VULKAN=ON -DENABLE_XCB=ON -DENABLE_XLIB=ON
- -DENABLE_PYRENDERDOC=ON"
+ -DENABLE_PYRENDERDOC=ON
+ -DRENDERDOC_SWIG_PATCH=${XBPS_SRCPKGDIR}/${pkgname}/files/swig-py38.patch"
+patch_args="-p1"
 hostmakedepends="bison autoconf automake pkg-config python3"
 makedepends="libX11-devel libxcb-devel xcb-util-keysyms-devel libGL qt5-devel
  qt5-svg-devel qt5-x11extras-devel pcre-devel python3-devel"
@@ -17,7 +19,7 @@ distfiles="https://github.com/baldurk/${pkgname}/archive/v${version}.tar.gz"
 checksum=9a78951f386fb7c3ecf7df6919d300db59719d14f0621438963ae30a75d33677
 
 case "$XBPS_TARGET_MACHINE" in
-	*-musl) broken="This package uses execnfo.h which is not available on musl"
+	*-musl) broken="This package uses execinfo.h which is not available on musl"
 esac
 
 if [ "$CROSS_BUILD" ]; then

From 64ba670c09b5e5dc6fb7c875524bd6e28862512d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 858/871] sigil: rebuild for Python 3.8.

---
 srcpkgs/sigil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sigil/template b/srcpkgs/sigil/template
index 4a90ef95798..1d577ee3487 100644
--- a/srcpkgs/sigil/template
+++ b/srcpkgs/sigil/template
@@ -1,7 +1,7 @@
 # Template file for 'sigil'
 pkgname=sigil
 version=0.9.13
-revision=1
+revision=2
 wrksrc="Sigil-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/sigil/python3lib"

From 109d82636044201ac23e43ae45c75fba7c1bd85c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 859/871] uwsgi: rebuild for Python 3.8.

---
 srcpkgs/uwsgi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/uwsgi/template b/srcpkgs/uwsgi/template
index 2e96cd2e38e..e283d6bc357 100644
--- a/srcpkgs/uwsgi/template
+++ b/srcpkgs/uwsgi/template
@@ -1,7 +1,7 @@
 # Template file for 'uwsgi'
 pkgname=uwsgi
 version=2.0.18
-revision=1
+revision=2
 hostmakedepends="python python3"
 makedepends="python-devel python3-devel"
 short_desc="Fast, self-healing application container server"

From e9e0833692db66d4cce990a21da44dfa8b57bebb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 860/871] vim: rebuild for Python 3.8.

---
 srcpkgs/vim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vim/template b/srcpkgs/vim/template
index 8f543069d19..7c7fd4a30f7 100644
--- a/srcpkgs/vim/template
+++ b/srcpkgs/vim/template
@@ -1,7 +1,7 @@
 # Template file for 'vim'
 pkgname=vim
 version=8.1.2021
-revision=3
+revision=4
 hostmakedepends="glib-devel pkg-config"
 makedepends="acl-devel gtk+3-devel libXt-devel lua-devel ncurses-devel
  perl python-devel python3-devel ruby-devel"

From 1673b47a4bfbe3853edb03d1fc0fcff8c2a6b26d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 861/871] weechat: rebuild for Python 3.8.

---
 srcpkgs/weechat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weechat/template b/srcpkgs/weechat/template
index 19f8af4fd8f..14c3e2360f5 100644
--- a/srcpkgs/weechat/template
+++ b/srcpkgs/weechat/template
@@ -1,7 +1,7 @@
 # Template file for 'weechat'
 pkgname=weechat
 version=2.6
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_MAN=ON -DENABLE_ENCHANT=ON -DENABLE_PERL=ON
  -DENABLE_LUA=ON -DENABLE_RUBY=ON -DENABLE_SPELL=ON

From 483feae680d6a16ff7530c5d3ac54a4e794848cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 862/871] znc: rebuild for Python 3.8.

---
 srcpkgs/znc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/znc/template b/srcpkgs/znc/template
index 8af8f23a145..696b59133c8 100644
--- a/srcpkgs/znc/template
+++ b/srcpkgs/znc/template
@@ -1,7 +1,7 @@
 # Template file for 'znc'
 pkgname=znc
 version=1.7.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="
  --enable-python

From a4642de06219759bd89a1b862f9645983fea2cad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:18:51 +0200
Subject: [PATCH 863/871] boost: rebuild for Python 3.8.

---
 srcpkgs/boost/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 40a4fe67730..1fb0e8ed519 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=5
+revision=6
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"

From 17ec5ba440ff3f123f87e50393b7ec0ce86965b9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:10 +0200
Subject: [PATCH 864/871] python-pyside: remove, obsolete.

---
 srcpkgs/python-pyside/INSTALL.msg | 1 -
 srcpkgs/python-pyside/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/python-pyside/INSTALL.msg
 delete mode 100644 srcpkgs/python-pyside/template

diff --git a/srcpkgs/python-pyside/INSTALL.msg b/srcpkgs/python-pyside/INSTALL.msg
deleted file mode 100644
index 6de207b7aa2..00000000000
--- a/srcpkgs/python-pyside/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-python-pyside is no longer provided by Void Linux, and will be fully removed from the repos on 2019-07-17
diff --git a/srcpkgs/python-pyside/template b/srcpkgs/python-pyside/template
deleted file mode 100644
index 7053f0e7fc3..00000000000
--- a/srcpkgs/python-pyside/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'python-pyside'
-pkgname=python-pyside
-version=1.2.2
-revision=7
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="http://www.pyside.org/"

From ac6780ceba5879b9fbd85e73494ed18c310f774f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:52 +0200
Subject: [PATCH 865/871] pyside-tools: remove, obsolete.

---
 srcpkgs/pyside-tools/INSTALL.msg | 1 -
 srcpkgs/pyside-tools/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/pyside-tools/INSTALL.msg
 delete mode 100644 srcpkgs/pyside-tools/template

diff --git a/srcpkgs/pyside-tools/INSTALL.msg b/srcpkgs/pyside-tools/INSTALL.msg
deleted file mode 100644
index fdb45eb0f42..00000000000
--- a/srcpkgs/pyside-tools/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-pyside-tools is no longer provided by Void Linux, and will be fully removed from the repos on 2019-10-30
diff --git a/srcpkgs/pyside-tools/template b/srcpkgs/pyside-tools/template
deleted file mode 100644
index 27cfc18eea4..00000000000
--- a/srcpkgs/pyside-tools/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'pyside-tools'
-pkgname=pyside-tools
-version=0.2.15
-revision=2
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="https://wiki.qt.io/"

From 2ca617a90d4126da89b95c578044373cf32960eb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:22:03 +0200
Subject: [PATCH 866/871] shiboken: remove, obsolete.

---
 srcpkgs/shiboken/patches/python3.6.patch |  11 ---
 srcpkgs/shiboken/template                | 110 -----------------------
 2 files changed, 121 deletions(-)
 delete mode 100644 srcpkgs/shiboken/patches/python3.6.patch
 delete mode 100644 srcpkgs/shiboken/template

diff --git a/srcpkgs/shiboken/patches/python3.6.patch b/srcpkgs/shiboken/patches/python3.6.patch
deleted file mode 100644
index 7145fb4308b..00000000000
--- a/srcpkgs/shiboken/patches/python3.6.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- cmake/Modules/FindPython3Libs.cmake.orig
-+++ cmake/Modules/FindPython3Libs.cmake
-@@ -27,7 +27,7 @@
- # Search for the python framework on Apple.
- # CMAKE_FIND_FRAMEWORKS(Python)
- 
--FOREACH(_CURRENT_VERSION 3.4 3.3 3.2 3.1 3.0)
-+FOREACH(_CURRENT_VERSION 3.6 3.5 3.4 3.3 3.2 3.1 3.0)
-   IF(_CURRENT_VERSION GREATER 3.1)
-       SET(_32FLAGS "m" "u" "mu" "dm" "du" "dmu" "")
-   ELSE()
diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
deleted file mode 100644
index 34174be7535..00000000000
--- a/srcpkgs/shiboken/template
+++ /dev/null
@@ -1,110 +0,0 @@
-# Template file for 'shiboken'
-pkgname=shiboken
-version=1.2.2
-revision=6
-wrksrc="shiboken-${version}"
-hostmakedepends="cmake"
-makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"
-short_desc="CPython bindings generator for C++ libraries"
-maintainer="Enno Boland <gottox@voidlinux.org>"
-homepage="http://www.pyside.org"
-license="LGPL-2.1"
-distfiles="https://download.qt.io/official_releases/pyside/shiboken-${version}.tar.bz2"
-checksum=7625bbcf1fe313fd910c6b8c9cf49ac5495499f9d00867115a2f1f2a69fce5c4
-
-nocross="https://travis-ci.org/voidlinux/void-packages/jobs/269193001#L906"
-
-pre_build() {
-	# Fix inconsistent naming of libshiboken.so and ShibokenConfig.cmake
-	sed -i "/get_config_var('SOABI')/d" cmake/Modules/FindPython3InterpWithDebug.cmake
-}
-do_build() {
-	local args= configure_args="
-		-DCMAKE_INSTALL_PREFIX=/usr \
-		-DCMAKE_BUILD_TYPE=Release \
-		-DBUILD_TESTS=OFF"
-
-	for pyver in $py2_ver $py3_ver; do
-		args=
-		if [ "$pyver" = "$py2_ver" ]; then
-			args="-DPYTHON_SUFFIX=-python$py2_ver"
-		else
-			args="-DUSE_PYTHON3=yes"
-		fi
-
-		[ ! -d build-${pyver} ] && mkdir build-${pyver}
-		pushd build-${pyver}
-		cmake .. ${configure_args} ${args}
-		make ${makejobs}
-		popd
-	done
-}
-do_install() {
-	for pyver in $py2_ver $py3_ver; do
-		make -C build-${pyver} DESTDIR=${DESTDIR} install
-	done
-}
-post_install() {
-	# Fix conflict between .pc files
-	rm -f ${DESTDIR}/usr/lib/pkgconfig/*
-	for pyver in $py2_ver $py3_ver; do
-		vinstall build-${pyver}/data/shiboken.pc 644 \
-			usr/lib/pkgconfig shiboken-python${pyver}.pc
-	done
-}
-
-libshiboken-common-devel_package() {
-	depends="${sourcepkg}-${version}_${revision}"
-	short_desc+=" - common development files"
-	pkg_install() {
-		vmove usr/include
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig.cmake
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfigVersion.cmake
-	}
-}
-libshiboken-python-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python-${version}_${revision}"
-	short_desc="Python2 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py2_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py2_ver}.pc
-		vmove usr/lib/libshiboken-python${py2_ver}.so
-	}
-}
-libshiboken-python_package() {
-	short_desc="Python2 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version}
-	}
-}
-python-shiboken_package() {
-	short_desc="Python2 shiboken bindings"
-	pkg_install() {
-		vmove ${py2_sitelib}/shiboken.so
-	}
-}
-libshiboken-python3-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python3-${version}_${revision}"
-	short_desc="Python3 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py3_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py3_ver}.pc
-		vmove usr/lib/libshiboken-python${py3_ver}.so
-	}
-}
-libshiboken-python3_package() {
-	short_desc="Python3 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version}
-	}
-}
-python3-shiboken_package() {
-	short_desc="Python3 shiboken bindings"
-	pkg_install() {
-		vmove ${py3_sitelib}/shiboken.so
-	}
-}

From 598f8573570b7320bc4e11d88ae21deee0f95ac9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:34:00 +0200
Subject: [PATCH 867/871] boost: rebuild for Python 3.8.

Also ensure bjam is called with the same parameters, to avoid
a full rebuild with -j1 in do_install.
---
 common/shlibs          |  2 +-
 srcpkgs/boost/template | 13 +++++++------
 2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/common/shlibs b/common/shlibs
index c8e21637ac7..a59fff7c205 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -683,7 +683,7 @@ libboost_stacktrace_noop.so.1.69.0 libboost_stacktrace_noop1.69-1.69.0_1<1.70.0
 libboost_stacktrace_addr2line.so.1.69.0 libboost_stacktrace_addr2line1.69-1.69.0_1<1.70.0
 libboost_stacktrace_basic.so.1.69.0 libboost_stacktrace_basic1.69-1.69.0_1<1.70.0
 libboost_python27.so.1.69.0 boost-python1.69-1.69.0_1<1.70.0
-libboost_python36.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
+libboost_python38.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
 libexempi.so.8 exempi-2.5.0_1
 libatasmart.so.4 libatasmart-0.17_1
 libsgutils2.so.2 libsgutils-1.42_1
diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 1fb0e8ed519..b516b348b14 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=6
+revision=7
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"
@@ -60,9 +60,9 @@ do_build() {
 	using python : ${py3_ver} : ${XBPS_CROSS_BASE}/usr/bin/python3 : ${XBPS_CROSS_BASE}${py3_inc} : ${XBPS_CROSS_BASE}${py3_lib} ;
 
 	__EOF
-	./bjam ${makejobs} \
+	./bjam ${makejobs} --prefix=${DESTDIR}/usr \
 		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam --debug-building \
+		--user-config=${wrksrc}/user-config.jam \
 		python=2.7,${py3_ver}
 }
 do_install() {
@@ -72,9 +72,10 @@ do_install() {
 	done
 
 	# Install headers/libs
-	./bjam --prefix=${DESTDIR}/usr abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam python=2.7,${py3_ver} install
-
+	./bjam --prefix=${DESTDIR}/usr \
+		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
+		--user-config=${wrksrc}/user-config.jam \
+		python=2.7,${py3_ver} install
 	# Install Boost.Build stuff.
 	vmkdir usr/share/boost-build
 	cd ${wrksrc}/tools/build && cp -a . ${DESTDIR}/usr/share/boost-build

From 3b8ca23d5997c7f71b7cc3546c3a4e4d36629e88 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 19:40:03 +0200
Subject: [PATCH 868/871] libpeas: update to 1.24.0.

---
 srcpkgs/libpeas/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index d4dcf8b5941..1ff2598c527 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,8 +1,8 @@
 # Template file for 'libpeas'
 pkgname=libpeas
-version=1.22.0
-revision=6
-build_style=gnu-configure
+version=1.24.0
+revision=1
+build_style=meson
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"
 makedepends="vala-devel gtk+3-devel python3-gobject-devel
@@ -13,7 +13,7 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://wiki.gnome.org/Projects/Libpeas"
 distfiles="${GNOME_SITE}/${pkgname}/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=5b2fc0f53962b25bca131a5ec0139e6fef8e254481b6e777975f7a1d2702a962
+checksum=0b9a00138c129a663de3eef5569b00ace03ce31d345f7af783768e9f35c8e6f9
 
 pre_build() {
 	if [ "$CROSS_BUILD" ]; then
@@ -35,7 +35,6 @@ libpeas-devel_package() {
 		vmove usr/lib/pkgconfig
 		vmove "usr/lib/*.so"
 		vmove usr/share/gir-1.0
-		vmove usr/share/gtk-doc
 		vmove usr/share/glade
 	}
 }

From 301503cbad2fba315ae447a3d227330f3e3ca8e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 20:33:53 +0200
Subject: [PATCH 869/871] scudcloud: upstream dead.

---
 srcpkgs/scudcloud/template | 21 ---------------------
 1 file changed, 21 deletions(-)
 delete mode 100644 srcpkgs/scudcloud/template

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
deleted file mode 100644
index 1ab2618066e..00000000000
--- a/srcpkgs/scudcloud/template
+++ /dev/null
@@ -1,21 +0,0 @@
-# Template file for 'scudcloud'
-pkgname=scudcloud
-version=1.65
-revision=2
-build_style=python3-module
-pycompile_module="scudcloud"
-hostmakedepends="python3-setuptools"
-makedepends="python3-setuptools python-PyQt5 python-dbus python3-PyQt5-dbus"
-depends="python3-setuptools python-PyQt5 python3-PyQt5-dbus
- python3-PyQt5-webkit xdg-utils"
-short_desc="Non official desktop client app for Slack"
-archs=noarch
-maintainer="Gurpreet Singh <gurpreet@mailfence.com>"
-license="MIT"
-homepage="https://launchpad.net/~rael-gc/+archive/ubuntu/scudcloud"
-distfiles="https://github.com/raelgc/${pkgname}/archive/v${version}.tar.gz"
-checksum=1b5420a868a37e181655e9799a3d1fcbbc0b0112349c44ac3d7936b626334791
-
-post_install() {
-	vlicense LICENSE
-}

From 6009802248d69a8d92f41d5c3da7077a42c2330b Mon Sep 17 00:00:00 2001
From: John <johnz@posteo.net>
Date: Tue, 30 Jul 2019 21:26:02 +0200
Subject: [PATCH 870/871] blender: update to 2.80.

---
 srcpkgs/blender/patches/D6038.diff            |  49 ++++++++
 .../blender/patches/blender-2.78a-musl.patch  |  49 ++++----
 .../collada-1.6.68_DocumentImporter.cpp.patch |  14 ---
 .../collada-1.6.68_DocumentImporter.h.patch   |  11 --
 srcpkgs/blender/patches/ffmpeg4.patch         | 116 ------------------
 srcpkgs/blender/patches/gcc9-elbeem.patch     |  31 -----
 srcpkgs/blender/patches/tree_hpp.patch        |  11 --
 srcpkgs/blender/patches/util_sseb.patch       |  11 --
 srcpkgs/blender/template                      |  15 ++-
 9 files changed, 84 insertions(+), 223 deletions(-)
 create mode 100644 srcpkgs/blender/patches/D6038.diff
 delete mode 100644 srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch
 delete mode 100644 srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch
 delete mode 100644 srcpkgs/blender/patches/ffmpeg4.patch
 delete mode 100644 srcpkgs/blender/patches/gcc9-elbeem.patch
 delete mode 100644 srcpkgs/blender/patches/tree_hpp.patch
 delete mode 100644 srcpkgs/blender/patches/util_sseb.patch

diff --git a/srcpkgs/blender/patches/D6038.diff b/srcpkgs/blender/patches/D6038.diff
new file mode 100644
index 00000000000..c26934e3447
--- /dev/null
+++ b/srcpkgs/blender/patches/D6038.diff
@@ -0,0 +1,49 @@
+Index: blender-2.80_patched/source/blender/python/generic/py_capi_utils.c
+===================================================================
+--- blender-2.80_patched/source/blender/python/generic/py_capi_utils.c
++++ blender-2.80_patched/source/blender/python/generic/py_capi_utils.c
+@@ -717,9 +717,11 @@
+  ****************************************************************************/
+ PyObject *PyC_DefaultNameSpace(const char *filename)
+ {
+-  PyInterpreterState *interp = PyThreadState_GET()->interp;
++  PyObject *modules = PyImport_GetModuleDict();
++  PyObject *builtins = PyDict_GetItemString(modules, "builtins");
++
+   PyObject *mod_main = PyModule_New("__main__");
+-  PyDict_SetItemString(interp->modules, "__main__", mod_main);
++  PyDict_SetItemString(modules, "__main__", mod_main);
+   Py_DECREF(mod_main); /* sys.modules owns now */
+   PyModule_AddStringConstant(mod_main, "__name__", "__main__");
+   if (filename) {
+@@ -727,8 +729,8 @@
+      * note: this wont map to a real file when executing text-blocks and buttons. */
+     PyModule_AddObject(mod_main, "__file__", PyC_UnicodeFromByte(filename));
+   }
+-  PyModule_AddObject(mod_main, "__builtins__", interp->builtins);
+-  Py_INCREF(interp->builtins); /* AddObject steals a reference */
++  PyModule_AddObject(mod_main, "__builtins__", builtins);
++  Py_INCREF(builtins); /* AddObject steals a reference */
+   return PyModule_GetDict(mod_main);
+ }
+ 
+@@ -755,15 +757,15 @@
+ /* restore MUST be called after this */
+ void PyC_MainModule_Backup(PyObject **main_mod)
+ {
+-  PyInterpreterState *interp = PyThreadState_GET()->interp;
+-  *main_mod = PyDict_GetItemString(interp->modules, "__main__");
++  PyObject *modules = PyImport_GetModuleDict();
++  *main_mod = PyDict_GetItemString(modules, "__main__");
+   Py_XINCREF(*main_mod); /* don't free */
+ }
+ 
+ void PyC_MainModule_Restore(PyObject *main_mod)
+ {
+-  PyInterpreterState *interp = PyThreadState_GET()->interp;
+-  PyDict_SetItemString(interp->modules, "__main__", main_mod);
++  PyObject *modules = PyImport_GetModuleDict();
++  PyDict_SetItemString(modules, "__main__", main_mod);
+   Py_XDECREF(main_mod);
+ }
+ 
diff --git a/srcpkgs/blender/patches/blender-2.78a-musl.patch b/srcpkgs/blender/patches/blender-2.78a-musl.patch
index 1ffd09cd57d..bddae1f8d3c 100644
--- a/srcpkgs/blender/patches/blender-2.78a-musl.patch
+++ b/srcpkgs/blender/patches/blender-2.78a-musl.patch
@@ -20,30 +20,9 @@ diff -ru blender-2.78.orig/CMakeLists.txt blender-2.78a/CMakeLists.txt
  elseif(WIN32)
  	set(_init_JACK                           OFF)
  elseif(APPLE)
-diff -ru blender-2.78.orig/intern/guardedalloc/intern/mallocn_intern.h blender-2.78a/intern/guardedalloc/intern/mallocn_intern.h
---- blender-2.78.orig/intern/guardedalloc/intern/mallocn_intern.h	2016-09-28 09:26:55.000000000 +0000
-+++ blender-2.78a/intern/guardedalloc/intern/mallocn_intern.h	2017-02-07 14:44:35.213040733 +0000
-@@ -52,7 +52,7 @@
- #undef HAVE_MALLOC_STATS
- #define USE_MALLOC_USABLE_SIZE  /* internal, when we have malloc_usable_size() */
- 
--#if defined(__linux__) || (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || defined(__GLIBC__)
-+#if (defined(__linux__) && defined(HAVE_EXECINFO_H)) || (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || defined(__GLIBC__)
- #  include <malloc.h>
- #  define HAVE_MALLOC_STATS
- #elif defined(__FreeBSD__)
 diff -ru blender-2.78.orig/source/blender/blenlib/intern/system.c blender-2.78a/source/blender/blenlib/intern/system.c
 --- blender-2.78.orig/source/blender/blenlib/intern/system.c	2016-10-25 09:59:23.000000000 +0000
 +++ blender-2.78a/source/blender/blenlib/intern/system.c	2017-02-07 14:44:35.213040733 +0000
-@@ -31,7 +31,7 @@
- #include "MEM_guardedalloc.h"
- 
- /* for backtrace */
--#if defined(__linux__) || defined(__APPLE__)
-+#if (defined(__linux__) && defined(HAVE_EXECINFO_H)) || defined(__APPLE__)
- #  include <execinfo.h>
- #elif defined(WIN32)
- #  include <windows.h>
 @@ -77,7 +77,7 @@
  {
  	/* ------------- */
@@ -65,3 +44,31 @@ diff -ru blender-2.78.orig/source/creator/creator_signals.c blender-2.78a/source
  	feenableexcept(FE_DIVBYZERO | FE_INVALID | FE_OVERFLOW);
  # endif /* defined(__linux__) && defined(__GNUC__) */
  # if defined(OSX_SSE_FPE)
+--- a/source/blender/blenlib/intern/system.c	2019-07-30 21:05:30.702224608 +0200
++++ -	2019-07-30 21:13:21.535328709 +0200
+@@ -38,10 +38,13 @@
+ #  include <dbghelp.h>
+ #  pragma warning(pop)
+ #else
+-#  include <execinfo.h>
+ #  include <unistd.h>
+ #endif
+ 
++#if (defined(__linux__) && defined(HAVE_EXECINFO_H)) || defined(__APPLE__)
++#  include <execinfo.h>
++#endif
++
+ int BLI_cpu_support_sse2(void)
+ {
+ #if defined(__x86_64__) || defined(_M_X64)
+--- a/intern/guardedalloc/intern/mallocn_intern.h	2019-07-24 09:41:39.000000000 +0200
++++ -	2019-10-20 00:03:13.450031866 +0200
+@@ -40,7 +40,7 @@
+ #undef HAVE_MALLOC_STATS
+ #define USE_MALLOC_USABLE_SIZE /* internal, when we have malloc_usable_size() */
+ 
+-#if defined(__linux__) || (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || \
++#if (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || \
+     defined(__GLIBC__)
+ #  include <malloc.h>
+ #  define HAVE_MALLOC_STATS
diff --git a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch b/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch
deleted file mode 100644
index e181a004379..00000000000
--- a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/source/blender/collada/DocumentImporter.cpp
-+++ b/source/blender/collada/DocumentImporter.cpp
-@@ -1340,6 +1340,11 @@ bool DocumentImporter::writeAnimationLis
- 	return anim_importer.write_animation_list(animationList);
- }
- 
-+bool DocumentImporter::writeAnimationClip(const COLLADAFW::AnimationClip *AnimationClip)
-+{
-+	return true;
-+}
-+
- /** When this method is called, the writer must write the skin controller data.
-  * \return The writer should return true, if writing succeeded, false otherwise.*/
- bool DocumentImporter::writeSkinControllerData(const COLLADAFW::SkinControllerData *skin)
diff --git a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch b/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch
deleted file mode 100644
index af0d2b4dded..00000000000
--- a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/source/blender/collada/DocumentImporter.h.orig	2018-12-03 07:38:12 UTC
-+++ b/source/blender/collada/DocumentImporter.h
-@@ -107,6 +107,8 @@ public:
- 	bool writeAnimation(const COLLADAFW::Animation*);
- 
- 	bool writeAnimationList(const COLLADAFW::AnimationList*);
-+	
-+	bool writeAnimationClip( const COLLADAFW::AnimationClip* );
- 
- 	bool writeGeometry(const COLLADAFW::Geometry*);
- 
diff --git a/srcpkgs/blender/patches/ffmpeg4.patch b/srcpkgs/blender/patches/ffmpeg4.patch
deleted file mode 100644
index 6b29e58f273..00000000000
--- a/srcpkgs/blender/patches/ffmpeg4.patch
+++ /dev/null
@@ -1,116 +0,0 @@
-source: https://git.archlinux.org/svntogit/community.git/plain/trunk/ffmpeg4.0.patch?h=packages/blender
-
-diff --git a/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp b/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp
-index e9eea195208..84aea330313 100644
---- a/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp
-+++ b/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp
-@@ -264,9 +264,9 @@ AUD_FFMPEGReader::AUD_FFMPEGReader(boost::shared_ptr<AUD_Buffer> buffer) :
- 		m_membuffer(buffer),
- 		m_membufferpos(0)
- {
--	m_membuf = reinterpret_cast<data_t*>(av_malloc(FF_MIN_BUFFER_SIZE + FF_INPUT_BUFFER_PADDING_SIZE));
-+	m_membuf = reinterpret_cast<data_t*>(av_malloc(AV_INPUT_BUFFER_MIN_SIZE + AV_INPUT_BUFFER_PADDING_SIZE));
- 
--	m_aviocontext = avio_alloc_context(m_membuf, FF_MIN_BUFFER_SIZE, 0, this,
-+	m_aviocontext = avio_alloc_context(m_membuf, AV_INPUT_BUFFER_MIN_SIZE, 0, this,
- 									   read_packet, NULL, seek_packet);
- 
- 	if(!m_aviocontext)
-diff --git a/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp b/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
-index 3f95ac7a4da..2c2f0916406 100644
---- a/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
-+++ b/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
-@@ -163,7 +163,7 @@ AUD_FFMPEGWriter::AUD_FFMPEGWriter(std::string filename, AUD_DeviceSpecs specs,
- 		try
- 		{
- 			if(m_formatCtx->oformat->flags & AVFMT_GLOBALHEADER)
--				m_codecCtx->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+				m_codecCtx->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 
- 			AVCodec* codec = avcodec_find_encoder(m_codecCtx->codec_id);
- 			if(!codec)
-@@ -185,11 +185,11 @@ AUD_FFMPEGWriter::AUD_FFMPEGWriter(std::string filename, AUD_DeviceSpecs specs,
- 			if(avcodec_open2(m_codecCtx, codec, NULL))
- 				AUD_THROW(AUD_ERROR_FFMPEG, codec_error);
- 
--			m_output_buffer.resize(FF_MIN_BUFFER_SIZE);
-+			m_output_buffer.resize(AV_INPUT_BUFFER_MIN_SIZE);
- 			int samplesize = AUD_MAX(AUD_SAMPLE_SIZE(m_specs), AUD_DEVICE_SAMPLE_SIZE(m_specs));
- 
- 			if(m_codecCtx->frame_size <= 1) {
--				m_input_size = FF_MIN_BUFFER_SIZE * 8 / m_codecCtx->bits_per_coded_sample / m_codecCtx->channels;
-+				m_input_size = AV_INPUT_BUFFER_MIN_SIZE * 8 / m_codecCtx->bits_per_coded_sample / m_codecCtx->channels;
- 				m_input_buffer.resize(m_input_size * samplesize);
- 			}
- 			else
-diff --git a/source/blender/blenkernel/intern/writeffmpeg.c b/source/blender/blenkernel/intern/writeffmpeg.c
-index d7fcd896e11..9e82df17dce 100644
---- a/source/blender/blenkernel/intern/writeffmpeg.c
-+++ b/source/blender/blenkernel/intern/writeffmpeg.c
-@@ -619,8 +619,6 @@ static AVStream *alloc_video_stream(FFMpegContext *context, RenderData *rd, int
- 	c->rc_buffer_aggressivity = 1.0;
- #endif
- 
--	c->me_method = ME_EPZS;
--	
- 	codec = avcodec_find_encoder(c->codec_id);
- 	if (!codec)
- 		return NULL;
-@@ -682,14 +680,14 @@ static AVStream *alloc_video_stream(FFMpegContext *context, RenderData *rd, int
- 	    )
- 	{
- 		PRINT("Using global header\n");
--		c->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+		c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 	}
- 	
- 	/* Determine whether we are encoding interlaced material or not */
- 	if (rd->mode & R_FIELDS) {
- 		PRINT("Encoding interlaced video\n");
--		c->flags |= CODEC_FLAG_INTERLACED_DCT;
--		c->flags |= CODEC_FLAG_INTERLACED_ME;
-+		c->flags |= AV_CODEC_FLAG_INTERLACED_DCT;
-+		c->flags |= AV_CODEC_FLAG_INTERLACED_ME;
- 	}
- 
- 	/* xasp & yasp got float lately... */
-@@ -779,7 +777,7 @@ static AVStream *alloc_audio_stream(FFMpegContext *context, RenderData *rd, int
- 	}
- 
- 	if (of->oformat->flags & AVFMT_GLOBALHEADER) {
--		c->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+		c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 	}
- 
- 	set_ffmpeg_properties(rd, c, "audio", &opts);
-@@ -798,14 +796,14 @@ static AVStream *alloc_audio_stream(FFMpegContext *context, RenderData *rd, int
- 	st->codec->time_base.den = st->codec->sample_rate;
- 
- #ifndef FFMPEG_HAVE_ENCODE_AUDIO2
--	context->audio_outbuf_size = FF_MIN_BUFFER_SIZE;
-+	context->audio_outbuf_size = AV_INPUT_BUFFER_MIN_SIZE;
- #endif
- 
- 	if (c->frame_size == 0)
- 		// used to be if ((c->codec_id >= CODEC_ID_PCM_S16LE) && (c->codec_id <= CODEC_ID_PCM_DVD))
- 		// not sure if that is needed anymore, so let's try out if there are any
- 		// complaints regarding some ffmpeg versions users might have
--		context->audio_input_samples = FF_MIN_BUFFER_SIZE * 8 / c->bits_per_coded_sample / c->channels;
-+		context->audio_input_samples = AV_INPUT_BUFFER_MIN_SIZE * 8 / c->bits_per_coded_sample / c->channels;
- 	else {
- 		context->audio_input_samples = c->frame_size;
- #ifndef FFMPEG_HAVE_ENCODE_AUDIO2
-diff --git a/source/blender/imbuf/intern/indexer.c b/source/blender/imbuf/intern/indexer.c
-index eaf4dfd84b4..9c2f42feb52 100644
---- a/source/blender/imbuf/intern/indexer.c
-+++ b/source/blender/imbuf/intern/indexer.c
-@@ -537,7 +537,7 @@ static struct proxy_output_ctx *alloc_proxy_output_ffmpeg(
- 	av_opt_set_int(rv->c, "qmax", ffmpeg_quality, 0);
- 
- 	if (rv->of->flags & AVFMT_GLOBALHEADER) {
--		rv->c->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+		rv->c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 	}
- 
- 	if (avio_open(&rv->of->pb, fname, AVIO_FLAG_WRITE) < 0) {
-
diff --git a/srcpkgs/blender/patches/gcc9-elbeem.patch b/srcpkgs/blender/patches/gcc9-elbeem.patch
deleted file mode 100644
index 26c58e7d988..00000000000
--- a/srcpkgs/blender/patches/gcc9-elbeem.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-https://bugs.gentoo.org/685922
-
---- a/intern/elbeem/intern/solver_main.cpp
-+++ b/intern/elbeem/intern/solver_main.cpp
-@@ -381,7 +381,7 @@ LbmFsgrSolver::mainLoop(const int lev)
- 	GRID_REGION_INIT();
- #if PARALLEL==1
- 	const int gDebugLevel = ::gDebugLevel;
--#pragma omp parallel default(none) num_threads(mNumOMPThreads) \
-+#pragma omp parallel default(none) firstprivate(gDebugLevel,iend,lev,cutConst) num_threads(mNumOMPThreads) \
-   reduction(+: \
- 	  calcCurrentMass,calcCurrentVolume, \
- 		calcCellsFilled,calcCellsEmptied, \
-@@ -1126,7 +1126,7 @@ LbmFsgrSolver::preinitGrids()
- 		GRID_REGION_INIT();
- #if PARALLEL==1
- 	const int gDebugLevel = ::gDebugLevel;
--#pragma omp parallel default(none) num_threads(mNumOMPThreads) \
-+#pragma omp parallel default(none) firstprivate(gDebugLevel,iend,lev) num_threads(mNumOMPThreads) \
-   reduction(+: \
- 	  calcCurrentMass,calcCurrentVolume, \
- 		calcCellsFilled,calcCellsEmptied, \
-@@ -1164,7 +1164,7 @@ LbmFsgrSolver::standingFluidPreinit()
- 	GRID_REGION_INIT();
- #if PARALLEL==1
- 	const int gDebugLevel = ::gDebugLevel;
--#pragma omp parallel default(none) num_threads(mNumOMPThreads) \
-+#pragma omp parallel default(none) firstprivate(gDebugLevel,iend,lev) num_threads(mNumOMPThreads) \
-   reduction(+: \
- 	  calcCurrentMass,calcCurrentVolume, \
- 		calcCellsFilled,calcCellsEmptied, \
diff --git a/srcpkgs/blender/patches/tree_hpp.patch b/srcpkgs/blender/patches/tree_hpp.patch
deleted file mode 100644
index 7c9fbca1821..00000000000
--- a/srcpkgs/blender/patches/tree_hpp.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/intern/itasc/kdl/tree.hpp	2018-03-23 16:22:25.000000000 +0100
-+++ b/intern/itasc/kdl/tree.hpp	2018-08-13 19:31:32.101185313 +0200
-@@ -34,7 +34,7 @@
-     //Forward declaration
-     class TreeElement;
-     // Eigen allocator is needed for alignment of Eigen data types
--    typedef std::map<std::string,TreeElement, std::less<std::string>, Eigen::aligned_allocator<std::pair<std::string, TreeElement> > > SegmentMap;
-+    typedef std::map<std::string,TreeElement, std::less<std::string>, Eigen::aligned_allocator<std::pair<const std::string, TreeElement> > > SegmentMap;
- 
-     class TreeElement
-     {
diff --git a/srcpkgs/blender/patches/util_sseb.patch b/srcpkgs/blender/patches/util_sseb.patch
deleted file mode 100644
index 85396282d81..00000000000
--- a/srcpkgs/blender/patches/util_sseb.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/intern/cycles/util/util_sseb.h
-+++ b/intern/cycles/util/util_sseb.h
-@@ -116,7 +116,7 @@ __forceinline const sseb unpacklo( const sseb& a, const sseb& b ) { return _mm_u
- __forceinline const sseb unpackhi( const sseb& a, const sseb& b ) { return _mm_unpackhi_ps(a, b); }
- 
- template<size_t i0, size_t i1, size_t i2, size_t i3> __forceinline const sseb shuffle( const sseb& a ) {
--	return _mm_shuffle_epi32(a, _MM_SHUFFLE(i3, i2, i1, i0));
-+	return _mm_castsi128_ps(_mm_shuffle_epi32(a, _MM_SHUFFLE(i3, i2, i1, i0)));
- }
- 
- template<> __forceinline const sseb shuffle<0, 1, 0, 1>( const sseb& a ) {
diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template
index 47cb8f8ad13..2beb7f96dd8 100644
--- a/srcpkgs/blender/template
+++ b/srcpkgs/blender/template
@@ -1,21 +1,22 @@
 # Template file for 'blender'
 pkgname=blender
-version=2.79b
-revision=10
+version=2.80
+revision=1
 build_style="cmake"
 makedepends="
  libgomp-devel libpng-devel tiff-devel python3-devel glu-devel
  glew-devel freetype-devel jack-devel libopenal-devel libsndfile-devel
  libsamplerate-devel ffmpeg-devel fftw-devel boost-devel pcre-devel llvm
  libopenexr-devel libopenjpeg-devel libXi-devel openimageio-devel
- opencolorio-devel opencollada-devel"
+ opencolorio-devel opencollada-devel python3-numpy"
 depends="desktop-file-utils hicolor-icon-theme"
 short_desc="3D graphics creation suite"
 maintainer="Enno Boland <gottox@voidlinux.org>"
-license="GPL-2"
+license="GPL-2.0-or-later"
 homepage="http://www.blender.org"
-distfiles="http://download.blender.org/source/${pkgname}-${version}.tar.gz"
-checksum=4c944c304a49e68ac687ea06f5758204def049b66dc211e1cffa1857716393bc
+#distfiles="http://download.blender.org/source/${pkgname}-${version}.tar.gz"
+distfiles="https://ftp.halifax.rwth-aachen.de/blender/source/blender-${version}.tar.gz"
+checksum=cd9d7e505c1f6e63a4f72366ed04d446859977eeb34cde21283aaea6a304a5c0
 patch_args="-Np1"
 
 pycompile_version="$py3_ver"
@@ -25,9 +26,7 @@ archs="x86_64* i686* ppc64*"
 configure_args="
 -DWITH_INSTALL_PORTABLE=OFF
 -DWITH_PYTHON_INSTALL=OFF
--DWITH_GAMEENGINE=ON
 -DWITH_JACK=ON
--DWITH_PLAYER=ON
 -DWITH_CODEC_FFMPEG=ON
 -DWITH_CODEC_SNDFILE=ON
 -DWITH_OPENMP=ON

From a230f3d93fe90a541bf2748c0e4dd47d5d7e7649 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Mon, 21 Oct 2019 14:41:53 +0200
Subject: [PATCH 871/871] attic: remove, upstream dead.

---
 srcpkgs/attic/template | 29 -----------------------------
 1 file changed, 29 deletions(-)
 delete mode 100644 srcpkgs/attic/template

diff --git a/srcpkgs/attic/template b/srcpkgs/attic/template
deleted file mode 100644
index ed454302ce4..00000000000
--- a/srcpkgs/attic/template
+++ /dev/null
@@ -1,29 +0,0 @@
-# Template file for 'attic'
-pkgname=attic
-version=0.16
-revision=15
-wrksrc="Attic-$version"
-build_style=python3-module
-hostmakedepends="python3-setuptools python3-devel libressl-devel python3-Sphinx"
-makedepends="${hostmakedepends/python3-setuptools/} acl-devel"
-depends="python3-msgpack python3-llfuse"
-pycompile_module="attic"
-short_desc="A deduplicating backup program for efficient and secure backups"
-maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
-homepage="https://attic-backup.org/"
-license="BSD"
-distfiles="${PYPI_SITE}/A/Attic/Attic-0.16.tar.gz"
-checksum=6650cd28072101c2e05941e77b93a62f91da6179785e4e4b4880916c469bba2c
-
-pre_build() {
-	if [ "$CROSS_BUILD" ]; then
-		sed -i "s|\(possible_openssl_prefixes\) =.*|\1 = ['${XBPS_CROSS_BASE}/usr']|" setup.py
-	fi
-}
-post_build() {
-	PYTHONPATH=.. make -C docs man SPHINXBUILD=sphinx-build3
-}
-post_install() {
-	vlicense LICENSE
-	vman docs/_build/man/attic-deduplicatingarchiver.1 attic.1
-}

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PR PATCH] [Updated] [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (21 preceding siblings ...)
  2019-11-02 18:09 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-11-02 18:09 ` voidlinux-github
  2019-11-02 18:10 ` voidlinux-github
                   ` (9 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-11-02 18:09 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1084 bytes --]

There is an updated pull request by leahneukirchen against master on the void-packages repository

https://github.com/leahneukirchen/void-packages python38
https://github.com/void-linux/void-packages/pull/15623

[WIP] Python 3.8
This huge PR tries to bump all packages that either shlib-require
libpython3.6m.so.1.0 or put files into /usr/lib/python3.6/site-packages.

Broken packages (on x86_64):

- [x] ~~attic~~ -> upstream dead, remove?
- [x] blender -> update to 2.80
- [x] eolie -> meson
- [x] fontforge
- [x] freecad
- [x] gst1-python -> meson
- [ ] libopenshot -> gcc9 issue, but supposedly fixed? @Spencer-H 
- [x] libpeas
- [x] nagstamon
- [x] paraview
- [x] pockyt
- [x] ~~scudcloud~~
- [x] torbrowser-launcher
- [x] unknown-horizons
- [x] vapoursynth
- [x] variety
- [ ] kdevelop-python -> upstream: https://bugs.kde.org/show_bug.cgi?id=411956 wait for 5.5
- [x] krita: SHA256 mismatch
- [x] ~~shiboken~~
- [x] renderdoc

Untested:

- [ ] libreoffice


A patch file from https://github.com/void-linux/void-packages/pull/15623.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python38-15623.patch --]
[-- Type: text/x-diff, Size: 657410 bytes --]

From f3e69f55e4fc4993bf44ee3990194d159fc6a242 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:06:59 +0200
Subject: [PATCH 001/871] python3: update to 3.8.0.

---
 common/shlibs                                 |  3 ++-
 .../python3/patches/fix-xattrs-glibc.patch    | 13 ----------
 srcpkgs/python3/patches/libressl-2.6.patch    | 26 -------------------
 srcpkgs/python3/template                      | 23 ++++++++--------
 4 files changed, 13 insertions(+), 52 deletions(-)
 delete mode 100644 srcpkgs/python3/patches/fix-xattrs-glibc.patch
 delete mode 100644 srcpkgs/python3/patches/libressl-2.6.patch

diff --git a/common/shlibs b/common/shlibs
index 388f2a9b3ea..c8e21637ac7 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1701,8 +1701,9 @@ libefiboot.so.1 libefivar-31_1
 libportaudio.so.2 portaudio-19.20140130_1
 libportaudiocpp.so.0 portaudio-cpp-19.20140130_1
 libdar.so.5000 libdar-2.4.14_1
-libpython3.so python3-3.6.2_1
 libpython3.6m.so.1.0 python3-3.6.2_1
+libpython3.so python3-3.8.0_1
+libpython3.8.so.1.0 python3-3.8.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.25.28_1
diff --git a/srcpkgs/python3/patches/fix-xattrs-glibc.patch b/srcpkgs/python3/patches/fix-xattrs-glibc.patch
deleted file mode 100644
index 909901293d5..00000000000
--- a/srcpkgs/python3/patches/fix-xattrs-glibc.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- Modules/posixmodule.c.orig
-+++ Modules/posixmodule.c
-@@ -103,8 +103,9 @@ corresponding Unix manual entries for more information on calls.");
- #undef HAVE_SCHED_SETAFFINITY
- #endif
- 
--#if defined(HAVE_SYS_XATTR_H) && defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
-+#if defined(HAVE_SYS_XATTR_H) && defined(__linux__) && !defined(__FreeBSD_kernel__) && !defined(__GNU__)
- #define USE_XATTRS
-+#include <linux/limits.h>
- #endif
- 
- #ifdef USE_XATTRS
diff --git a/srcpkgs/python3/patches/libressl-2.6.patch b/srcpkgs/python3/patches/libressl-2.6.patch
deleted file mode 100644
index 92dcf1ef06e..00000000000
--- a/srcpkgs/python3/patches/libressl-2.6.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-https://github.com/python/cpython/pull/4930
-
---- Lib/test/test_ssl.py.orig
-+++ Lib/test/test_ssl.py
-@@ -29,6 +29,12 @@
- PROTOCOLS = sorted(ssl._PROTOCOL_NAMES)
- HOST = support.HOST
- IS_LIBRESSL = ssl.OPENSSL_VERSION.startswith('LibreSSL')
-+if IS_LIBRESSL:
-+    LIBRESSL_VERSION = tuple(
-+        int(s) for s in ssl.OPENSSL_VERSION.rsplit(' ')[-1].split('.')
-+    )
-+else:
-+    LIBRESSL_VERSION = ()
- IS_OPENSSL_1_1 = not IS_LIBRESSL and ssl.OPENSSL_VERSION_INFO >= (1, 1, 0)
- 
- 
-@@ -3392,6 +3398,8 @@ def test_selected_npn_protocol(self):
-                                        chatty=True, connectionchatty=True)
-             self.assertIs(stats['client_npn_protocol'], None)
- 
-+        @unittest.skipIf(IS_LIBRESSL and LIBRESSL_VERSION >= (2, 6, 1),
-+                         "LibreSSL 2.6.1+ has broken NPN support")
-         @unittest.skipUnless(ssl.HAS_NPN, "NPN support needed for this test")
-         def test_npn_protocols(self):
-             server_protocols = ['http/1.1', 'spdy/2']
diff --git a/srcpkgs/python3/template b/srcpkgs/python3/template
index 60bd4411ba8..b03a59beea8 100644
--- a/srcpkgs/python3/template
+++ b/srcpkgs/python3/template
@@ -3,7 +3,7 @@
 # THIS PKG MUST BE SYNCHRONIZED WITH "srcpkgs/python3-tkinter".
 #
 pkgname=python3
-version=3.6.9
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 short_desc="Interpreted, interactive, object-oriented programming language (${version%.*} series)"
@@ -11,7 +11,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=5e2f5f554e3f8f7f0296f7e73d8600c4e9acbaee6b2555b83206edf5153870da
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pycompile_dirs="usr/lib/python${version%.*}"
 hostmakedepends="pkg-config"
@@ -27,8 +27,7 @@ alternatives="
  python:python.1:/usr/share/man/man1/python${version%.*}.1"
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,13 +71,13 @@ do_install() {
 	rm -rf ${DESTDIR}/usr/lib/python${version%.*}/lib2to3/tests
 	# Remove references to the install(1) wrapper.
 	sed -e "s,${XBPS_WRAPPERDIR},/usr/bin,g" -i \
-		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+		${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+		${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/Makefile
 	if [ "$CROSS_BUILD" ]; then
 		# Remove references to cross toolchain.
 		sed -i "s/$XBPS_CROSS_TRIPLET-//g" \
-			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_m_*.py \
-			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/Makefile
+			${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \
+			${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}/Makefile
 	fi
 }
 
@@ -89,10 +88,10 @@ python3-devel_package() {
 		vmove usr/bin/python*-config
 		vmove usr/lib/pkgconfig
 		vmove usr/include
-		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}m*/libpython${version%.*}m.a \
+		mv ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/libpython${version%.*}*.a \
 			${PKGDESTDIR}/usr/lib
-		mkdir -p ${DESTDIR}/usr/include/python${version%.*}m
-		mv ${PKGDESTDIR}/usr/include/python${version%.*}m/pyconfig.h \
-			${DESTDIR}/usr/include/python${version%.*}m
+		mkdir -p ${DESTDIR}/usr/include/python${version%.*}
+		mv ${PKGDESTDIR}/usr/include/python${version%.*}/pyconfig.h \
+			${DESTDIR}/usr/include/python${version%.*}
 	}
 }

From 65f69e24eccf31be2c875e480983e45cdd62c0ab Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 17:09:57 +0200
Subject: [PATCH 002/871] python3-tkinter: update to 3.8.0.

---
 srcpkgs/python3-tkinter/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template
index 83906219af8..874be51ebdf 100644
--- a/srcpkgs/python3-tkinter/template
+++ b/srcpkgs/python3-tkinter/template
@@ -7,7 +7,7 @@
 _desc="Interpreted, interactive, object-oriented programming language"
 
 pkgname=python3-tkinter
-version=3.6.8
+version=3.8.0
 revision=1
 wrksrc="Python-${version}"
 pycompile_dirs="
@@ -22,11 +22,10 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.python.org"
 license="Python-2.0"
 distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
-checksum=35446241e995773b1bed7d196f4b624dadcadc8429f26282e756b2fb8a351193
+checksum=b356244e13fb5491da890b35b13b2118c3122977c2cd825e3eb6e7d462030d84
 
 pre_configure() {
-	# Ensure that internal copies of zlib, expat and libffi are not used.
-	rm -r Modules/zlib
+	# Ensure that internal copies of expat and libffi are not used.
 	rm -r Modules/expat
 	rm -r Modules/_ctypes/{darwin,libffi}*
 }
@@ -72,7 +71,7 @@ do_install() {
 		mv ${wrksrc}/${pkgname}-${version}-install/usr/lib/python${version%.*}/${lib} \
 			${DESTDIR}/usr/lib/python${version%.*}/
 	done
-	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*m*.so \
+	mv ${wrksrc}/${pkgname}-${version}-install/usr/${_libdir}/python${version%.*}/lib-dynload/_tkinter.cpython-*.so \
 		${DESTDIR}/usr/lib/python${version%.*}/lib-dynload/
 	ln -sf idle${version%.*} ${DESTDIR}/usr/bin/idle3
 }

From b1825e05a77e1c2c55c215e040ee647e025a1cfc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:42:15 +0200
Subject: [PATCH 003/871] common/environment/setup/python.sh: update to Python
 3.8.

---
 common/build-style/python-module.sh | 14 ++++----------
 common/environment/setup/python.sh  |  4 ++--
 2 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/common/build-style/python-module.sh b/common/build-style/python-module.sh
index da6ed586cff..ff8f107745f 100644
--- a/common/build-style/python-module.sh
+++ b/common/build-style/python-module.sh
@@ -4,7 +4,7 @@
 
 do_build() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
+	local pyver= tmp_cflags="$CFLAGS" tmp_ldflags="$LDFLAGS"
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
@@ -12,10 +12,7 @@ do_build() {
 			LDFLAGS="$tmp_ldflags"
 
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
@@ -49,15 +46,12 @@ do_check() {
 
 do_install() {
 	: ${python_versions:="2.7 $py3_ver"}
-	local pyver= pysufx=
+	local pyver=
 
 	for pyver in $python_versions; do
 		if [ -n "$CROSS_BUILD" ]; then
 			PYPREFIX="$XBPS_CROSS_BASE"
-			if [ "$pyver" != "2.7" ]; then
-				pysufx=m
-			fi
-			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
+			CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver} -I${XBPS_CROSS_BASE}/usr/include"
 			LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
 			CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
 			LDSHARED="${CC} -shared $LDFLAGS"
diff --git a/common/environment/setup/python.sh b/common/environment/setup/python.sh
index d1f4d49a10a..ba181d45361 100644
--- a/common/environment/setup/python.sh
+++ b/common/environment/setup/python.sh
@@ -10,8 +10,8 @@ py2_lib="/usr/lib/python${py2_ver}"
 py2_sitelib="${py2_lib}/site-packages"
 py2_inc="/usr/include/python${py2_ver}"
 
-py3_ver="3.6"
-py3_abiver="m"
+py3_ver="3.8"
+py3_abiver=""
 py3_lib="/usr/lib/python${py3_ver}"
 py3_sitelib="${py3_lib}/site-packages"
 py3_inc="/usr/include/python${py3_ver}${py3_abiver}"

From 26da2d707f89c4678178d40a18de320eac45ce73 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 004/871] python3-3to2: rebuild for Python 3.8.

---
 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 b6ab94fe7c9..38558f1fcff 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=1
+revision=2
 archs=noarch
 wrksrc="3to2-${version}"
 build_style=python3-module

From af88427ef136a7d1b3d5c1a6fcb6a942e994e9b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 005/871] python-Arrow: rebuild for Python 3.8.

---
 srcpkgs/python-Arrow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Arrow/template b/srcpkgs/python-Arrow/template
index 456e3776188..a3785d60075 100644
--- a/srcpkgs/python-Arrow/template
+++ b/srcpkgs/python-Arrow/template
@@ -2,7 +2,7 @@
 pkgname=python-Arrow
 reverts=0.13.1_1
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="arrow-${version}"
 build_style=python-module

From e07964fb10d2a7a4b3937b7705bb9df796e92da1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 006/871] python-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Babel/template b/srcpkgs/python-Babel/template
index 34d7a7728ce..619ae432ba4 100644
--- a/srcpkgs/python-Babel/template
+++ b/srcpkgs/python-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Babel'
 pkgname=python-Babel
 version=2.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 605b075329352018d95fd9c30322dab67951feff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:16 +0200
Subject: [PATCH 007/871] python-BeautifulSoup4: rebuild for Python 3.8.

---
 srcpkgs/python-BeautifulSoup4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-BeautifulSoup4/template b/srcpkgs/python-BeautifulSoup4/template
index 46e1893cf6f..e34cf8d3fe8 100644
--- a/srcpkgs/python-BeautifulSoup4/template
+++ b/srcpkgs/python-BeautifulSoup4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-BeautifulSoup4'
 pkgname=python-BeautifulSoup4
 version=4.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="beautifulsoup4-${version}"
 build_style=python-module

From 863e7827d112109fb30ecac65a4bde50099ecdca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 008/871] python-Bottleneck: rebuild for Python 3.8.

---
 srcpkgs/python-Bottleneck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Bottleneck/template b/srcpkgs/python-Bottleneck/template
index 0c308d5dbb5..28195e99bca 100644
--- a/srcpkgs/python-Bottleneck/template
+++ b/srcpkgs/python-Bottleneck/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Bottleneck'
 pkgname=python-Bottleneck
 version=1.2.1
-revision=4
+revision=5
 wrksrc="Bottleneck-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 8df95fa4dde2ca7c7ab2775e9606fbcba0e61091 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 009/871] python-Cheroot: rebuild for Python 3.8.

---
 srcpkgs/python-Cheroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Cheroot/template b/srcpkgs/python-Cheroot/template
index 328bcb9cddd..666ae3d1c17 100644
--- a/srcpkgs/python-Cheroot/template
+++ b/srcpkgs/python-Cheroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Cheroot'
 pkgname=python-Cheroot
 version=8.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cheroot-${version}"
 build_style=python-module

From 307e8e58feca427ebbec8259f50e96b3a73ba80e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 010/871] python3-CherryPy: rebuild for Python 3.8.

---
 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 b78c01eba2c..450e5791508 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.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python3-module

From 76cbc6055fb0f1051f0fa26b1d2f031d5ac5f878 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 011/871] python-ConfigArgParse: rebuild for Python 3.8.

---
 srcpkgs/python-ConfigArgParse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ConfigArgParse/template b/srcpkgs/python-ConfigArgParse/template
index c9a00a04508..d90ca739aee 100644
--- a/srcpkgs/python-ConfigArgParse/template
+++ b/srcpkgs/python-ConfigArgParse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ConfigArgParse'
 pkgname=python-ConfigArgParse
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ConfigArgParse-${version}"
 build_style=python-module

From 12acfe2428adef39124a56a908e818a815232118 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 012/871] python-Cython: rebuild for Python 3.8.

---
 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 dc39d54e9c2..675160b3744 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.13
-revision=1
+revision=2
 wrksrc="Cython-${version}"
 build_style=python-module
 pycompile_module="Cython pyximport cython.py"

From 1fffc447d39a61ffd8e048bfa917e10c295e58a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 013/871] python-Django: rebuild for Python 3.8.

---
 srcpkgs/python-Django/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Django/template b/srcpkgs/python-Django/template
index 21aa405fba1..65a98e41032 100644
--- a/srcpkgs/python-Django/template
+++ b/srcpkgs/python-Django/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Django'
 pkgname=python-Django
 version=1.11.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="Django-${version}"
 build_style=python-module

From b96297bfa7292e7c727f6d7f0fdd7f8a6f020eef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:17 +0200
Subject: [PATCH 014/871] python-Flask: rebuild for Python 3.8.

---
 srcpkgs/python-Flask/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask/template b/srcpkgs/python-Flask/template
index 149a76c077e..b75b306701b 100644
--- a/srcpkgs/python-Flask/template
+++ b/srcpkgs/python-Flask/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask'
 pkgname=python-Flask
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 564ea909923900c0bf643275210379feacba57d7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 015/871] python-Flask-Assets: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Assets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Assets/template b/srcpkgs/python-Flask-Assets/template
index 339f629f77a..eb81201396b 100644
--- a/srcpkgs/python-Flask-Assets/template
+++ b/srcpkgs/python-Flask-Assets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Assets'
 pkgname=python-Flask-Assets
 version=0.12
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 52fcdf260ddbf6a6b1d41fcdbde73552543448ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 016/871] python-Flask-Babel: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Babel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Babel/template b/srcpkgs/python-Flask-Babel/template
index 3028d15d7bd..b3cc35f230e 100644
--- a/srcpkgs/python-Flask-Babel/template
+++ b/srcpkgs/python-Flask-Babel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Babel'
 pkgname=python-Flask-Babel
 version=0.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 83073d1ad839caae5320c6fc5a4ce9fef551b30a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 017/871] python-Flask-Login: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Login/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Login/template b/srcpkgs/python-Flask-Login/template
index 8fecf240963..ccaab92d857 100644
--- a/srcpkgs/python-Flask-Login/template
+++ b/srcpkgs/python-Flask-Login/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Login'
 pkgname=python-Flask-Login
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From e89ea81781986f77e2e98f238cae782143a2d2b9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 018/871] python-Flask-OAuthlib: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-OAuthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-OAuthlib/template b/srcpkgs/python-Flask-OAuthlib/template
index d53157e37b2..958f05a836c 100644
--- a/srcpkgs/python-Flask-OAuthlib/template
+++ b/srcpkgs/python-Flask-OAuthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-OAuthlib'
 pkgname=python-Flask-OAuthlib
 version=0.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From f94508966de69ecd994b52a56dda75ecbbed8cdd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 019/871] python3-Flask-RESTful: rebuild for Python 3.8.

---
 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 d0ed467f666..5a05eed0e93 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.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="flask-restful-${version}"
 build_style=python3-module

From 09c5c4106c001fb5a9d6be477fb7af5993883565 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 020/871] python-Flask-Script: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-Script/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-Script/template b/srcpkgs/python-Flask-Script/template
index 19d13887b8e..41312eae57f 100644
--- a/srcpkgs/python-Flask-Script/template
+++ b/srcpkgs/python-Flask-Script/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-Script'
 pkgname=python-Flask-Script
 version=2.0.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 4a825e7aa0cea9aded11099ca70536631cf943c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 021/871] python-Flask-WTF: rebuild for Python 3.8.

---
 srcpkgs/python-Flask-WTF/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Flask-WTF/template b/srcpkgs/python-Flask-WTF/template
index 8edb1d39e35..b2be1e630fb 100644
--- a/srcpkgs/python-Flask-WTF/template
+++ b/srcpkgs/python-Flask-WTF/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Flask-WTF'
 pkgname=python-Flask-WTF
 version=0.14.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 49ca7d0aed2f5120317ab00f2fa3d1c5cf3ad29c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:18 +0200
Subject: [PATCH 022/871] python-GitPython: rebuild for Python 3.8.

---
 srcpkgs/python-GitPython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-GitPython/template b/srcpkgs/python-GitPython/template
index 0edb43cc811..232429265f1 100644
--- a/srcpkgs/python-GitPython/template
+++ b/srcpkgs/python-GitPython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-GitPython'
 pkgname=python-GitPython
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="GitPython-${version}"
 build_style=python-module

From f30b29ee1963e6020788c9692bc209e5c47ad4cb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 023/871] python-IPy: rebuild for Python 3.8.

---
 srcpkgs/python-IPy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-IPy/template b/srcpkgs/python-IPy/template
index d28276383ce..aaae9fcd002 100644
--- a/srcpkgs/python-IPy/template
+++ b/srcpkgs/python-IPy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-IPy'
 pkgname=python-IPy
 version=1.00
-revision=1
+revision=2
 archs=noarch
 wrksrc="IPy-${version}"
 build_style=python-module

From 841ea0568dd49d4601b66570ece45be850e85622 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 024/871] python3-Inflector: rebuild for Python 3.8.

---
 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 1bfe9ccef7c..e9ee0ffe8d1 100644
--- a/srcpkgs/python3-Inflector/template
+++ b/srcpkgs/python3-Inflector/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-Inflector'
 pkgname=python3-Inflector
 version=2.0.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="Inflector-${version}"
 build_style=python3-module

From 5109f4c9669e34de0578113e02e6f47eab0829d0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 025/871] python-Jinja2: rebuild for Python 3.8.

---
 srcpkgs/python-Jinja2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Jinja2/template b/srcpkgs/python-Jinja2/template
index c67e6f47f06..3fcd44dc198 100644
--- a/srcpkgs/python-Jinja2/template
+++ b/srcpkgs/python-Jinja2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Jinja2'
 pkgname=python-Jinja2
 version=2.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Jinja2-${version}"
 build_style=python-module

From 6de019ce9f55e9906d428f7f0d24cabca5226a66 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 026/871] python-Levenshtein: rebuild for Python 3.8.

---
 srcpkgs/python-Levenshtein/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Levenshtein/template b/srcpkgs/python-Levenshtein/template
index 26f57d90e70..7d97147ccc8 100644
--- a/srcpkgs/python-Levenshtein/template
+++ b/srcpkgs/python-Levenshtein/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Levenshtein'
 pkgname=python-Levenshtein
 version=0.12.0
-revision=2
+revision=3
 build_style=python-module
 pycompile_module="Levenshtein"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"

From 438c7a68ab3fac4168f48dfb853c4335170a9756 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 027/871] python-M2Crypto: rebuild for Python 3.8.

---
 srcpkgs/python-M2Crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-M2Crypto/template b/srcpkgs/python-M2Crypto/template
index 102dbb7261e..6febd5a9ea1 100644
--- a/srcpkgs/python-M2Crypto/template
+++ b/srcpkgs/python-M2Crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-M2Crypto'
 pkgname=python-M2Crypto
 version=0.35.2
-revision=1
+revision=2
 wrksrc="M2Crypto-${version}"
 build_style=python-module
 pycompile_module="M2Crypto"

From cdf115d176deb0eeff6e81dbcc1c9f22d0369648 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 028/871] python-Mako: rebuild for Python 3.8.

---
 srcpkgs/python-Mako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Mako/template b/srcpkgs/python-Mako/template
index e5c3c76170c..f0184179b83 100644
--- a/srcpkgs/python-Mako/template
+++ b/srcpkgs/python-Mako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Mako'
 pkgname=python-Mako
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Mako-${version}"
 build_style=python-module

From c0632585aba2fc54366b055899a4d4ea3a2df949 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 029/871] python-Markdown: rebuild for Python 3.8.

---
 srcpkgs/python-Markdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markdown/template b/srcpkgs/python-Markdown/template
index 935dcc12bca..03a0d18e23b 100644
--- a/srcpkgs/python-Markdown/template
+++ b/srcpkgs/python-Markdown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markdown'
 pkgname=python-Markdown
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python-module

From 6c64d70e48be4ecd8ea397e5464073d293216b9e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:19 +0200
Subject: [PATCH 030/871] python-MarkupSafe: rebuild for Python 3.8.

---
 srcpkgs/python-MarkupSafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MarkupSafe/template b/srcpkgs/python-MarkupSafe/template
index c12dbb7e656..ae22857aa7a 100644
--- a/srcpkgs/python-MarkupSafe/template
+++ b/srcpkgs/python-MarkupSafe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MarkupSafe'
 pkgname=python-MarkupSafe
 version=1.1.1
-revision=1
+revision=2
 wrksrc="MarkupSafe-${version}"
 build_style=python-module
 pycompile_module="markupsafe"

From 8c4774189bf9d5c3de7833e9dc7712ad54438089 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 031/871] python-Markups: rebuild for Python 3.8.

---
 srcpkgs/python-Markups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Markups/template b/srcpkgs/python-Markups/template
index d4817feb430..02ba25ee05c 100644
--- a/srcpkgs/python-Markups/template
+++ b/srcpkgs/python-Markups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Markups'
 pkgname=python-Markups
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Markups-${version}"
 build_style=python-module

From bbfd346cb2fac79024d2fc6ce36d043cc0ded101 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 032/871] python3-MechanicalSoup: rebuild for Python 3.8.

---
 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 b1bbfa4184c..5a3b0b3eb03 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=1
+revision=2
 archs=noarch
 wrksrc=MechanicalSoup-${version}
 build_style=python3-module

From 11ebaf38f19d8f22615a4a6408a97f43c2466460 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 033/871] python-MiniMock: rebuild for Python 3.8.

---
 srcpkgs/python-MiniMock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-MiniMock/template b/srcpkgs/python-MiniMock/template
index 38c0723f374..8b8c4f5f1e6 100644
--- a/srcpkgs/python-MiniMock/template
+++ b/srcpkgs/python-MiniMock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-MiniMock'
 pkgname=python-MiniMock
 version=1.2.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 1817632c2c860f0ce208a31a3fa1816ef484b155 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 034/871] python-Pillow: rebuild for Python 3.8.

---
 srcpkgs/python-Pillow/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pillow/template b/srcpkgs/python-Pillow/template
index dd55107af11..bbe3d7b49d6 100644
--- a/srcpkgs/python-Pillow/template
+++ b/srcpkgs/python-Pillow/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pillow'
 pkgname=python-Pillow
 version=6.2.1
-revision=1
+revision=2
 wrksrc="Pillow-${version}"
 build_style=python-module
 pycompile_module="PIL"

From 8ab09652d55d62335d1e3eb7cd4fb18e23ea0b17 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 035/871] python-PyAudio: rebuild for Python 3.8.

---
 srcpkgs/python-PyAudio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyAudio/template b/srcpkgs/python-PyAudio/template
index 5c3286caae0..2e84cf5cc8f 100644
--- a/srcpkgs/python-PyAudio/template
+++ b/srcpkgs/python-PyAudio/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyAudio'
 pkgname=python-PyAudio
 version=0.2.11
-revision=2
+revision=3
 wrksrc="PyAudio-${version}"
 build_style=python-module
 pycompile_module="pyaudio.py"

From 6659c576c4c33eac23f47382ca80f26c9d022596 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 036/871] python3-PyBrowserID: rebuild for Python 3.8.

---
 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 abec9dac54e..eefd0175f1b 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=2
+revision=3
 archs=noarch
 wrksrc="PyBrowserID-${version}"
 build_style=python3-module

From 08da1ef728dbd1324d9cc8ff42c1b83c0295d879 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 037/871] python3-PyFxA: rebuild for Python 3.8.

---
 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 31175c92435..6fc6791efdd 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=1
+revision=2
 archs=noarch
 wrksrc="PyFxA-${version}"
 build_style=python3-module

From 638b0c75724f83467b0236a678cf9da706d90eb8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:20 +0200
Subject: [PATCH 038/871] python-PyHamcrest: rebuild for Python 3.8.

---
 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 61078241d8a..48f001595aa 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=1
+revision=2
 archs=noarch
 wrksrc="PyHamcrest-${version}"
 build_style=python-module

From 7fe6a7c8b256b0d64ac704669f2f3e4b535ccd54 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 039/871] python-PyICU: rebuild for Python 3.8.

---
 srcpkgs/python-PyICU/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyICU/template b/srcpkgs/python-PyICU/template
index be4aaf88639..aab2934cbbd 100644
--- a/srcpkgs/python-PyICU/template
+++ b/srcpkgs/python-PyICU/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyICU'
 pkgname=python-PyICU
 version=2.3.1
-revision=2
+revision=3
 wrksrc="PyICU-${version}"
 build_style=python-module
 pycompile_module="icu PyICU.py"

From d75d3691c846d1a460618b50ed1084230374bdb1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 040/871] python3-PyJWT: rebuild for Python 3.8.

---
 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 6f0830125c1..bf1dda0753e 100644
--- a/srcpkgs/python3-PyJWT/template
+++ b/srcpkgs/python3-PyJWT/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-PyJWT'
 pkgname=python3-PyJWT
 version=1.7.1
-revision=1
+revision=2
 wrksrc="PyJWT-${version}"
 build_style=python3-module
 pycompile_module="PyJWT.py"

From 4aa16ce10d554b4b8d81e238c309c7c11bd6e90b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 041/871] python-PyOpenGL: rebuild for Python 3.8.

---
 srcpkgs/python-PyOpenGL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyOpenGL/template b/srcpkgs/python-PyOpenGL/template
index ec08e0bd667..eafc3be1210 100644
--- a/srcpkgs/python-PyOpenGL/template
+++ b/srcpkgs/python-PyOpenGL/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL'
 pkgname=python-PyOpenGL
 version=3.1.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="PyOpenGL-${version}"
 build_style=python-module

From 0cd4a27de60c604f6915d836490f8e25650b5d26 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 17:15:54 +0200
Subject: [PATCH 042/871] python-PyOpenGL-accelerate: update to 3.1.3b1.

---
 srcpkgs/python-PyOpenGL-accelerate/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python-PyOpenGL-accelerate/template b/srcpkgs/python-PyOpenGL-accelerate/template
index 25d84abffcb..5d16a82b845 100644
--- a/srcpkgs/python-PyOpenGL-accelerate/template
+++ b/srcpkgs/python-PyOpenGL-accelerate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyOpenGL-accelerate'
 pkgname=python-PyOpenGL-accelerate
-version=3.1.0
-revision=5
+version=3.1.3b1
+revision=1
 wrksrc="PyOpenGL-accelerate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"
@@ -9,10 +9,10 @@ makedepends="python-devel python3-devel python-numpy python3-numpy"
 depends="python-numpy"
 short_desc="Acceleration code for PyOpenGL (Python2)"
 maintainer="Alain Kalker <a.c.kalker@gmail.com>"
-license="3-clause-BSD"
+license="BSD-3-Clause"
 homepage="http://pyopengl.sourceforge.net/"
 distfiles="${PYPI_SITE}/P/PyOpenGL-accelerate/PyOpenGL-accelerate-${version}.tar.gz"
-checksum=927f4670b893d46e2f6273ae938bf0a1db27ffae3336eba94813ccef6260c410
+checksum=e687eea7e006d65f531933b49b3b3d2feaaf51279147a904247f9d189762a36f
 
 post_install() {
 	vlicense license.txt LICENSE

From b8a1de2fbc1395fc0a56b0ba9c1e4815ff5c176f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 043/871] python-PyQt5: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5/template b/srcpkgs/python-PyQt5/template
index 6534d4e22e6..9eba20dc514 100644
--- a/srcpkgs/python-PyQt5/template
+++ b/srcpkgs/python-PyQt5/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5'
 pkgname=python-PyQt5
 version=5.13.0
-revision=1
+revision=2
 _sipver=4.19.18
 lib32disabled=yes
 wrksrc="PyQt5_gpl-${version}"

From 7915f8be9513988ebd9146505622bbdbc9517293 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 044/871] python-PyQt5-webengine: rebuild for Python 3.8.

---
 srcpkgs/python-PyQt5-webengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-PyQt5-webengine/template b/srcpkgs/python-PyQt5-webengine/template
index 996ef6b00e2..af7162d20cb 100644
--- a/srcpkgs/python-PyQt5-webengine/template
+++ b/srcpkgs/python-PyQt5-webengine/template
@@ -1,7 +1,7 @@
 # Template file for 'python-PyQt5-webengine'
 pkgname=python-PyQt5-webengine
 version=5.13.0
-revision=1
+revision=2
 wrksrc="PyQtWebEngine_gpl-${version}"
 pycompile_module="PyQt5WebEngine"
 hostmakedepends="pkg-config qt5-qmake

From 09ac8e33c0161db6f33d42c20ee787165cc0f178 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:21 +0200
Subject: [PATCH 045/871] python-Pygments: rebuild for Python 3.8.

---
 srcpkgs/python-Pygments/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pygments/template b/srcpkgs/python-Pygments/template
index f5a72ca6cea..8d2214a6bfc 100644
--- a/srcpkgs/python-Pygments/template
+++ b/srcpkgs/python-Pygments/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pygments'
 pkgname=python-Pygments
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Pygments-${version}"
 build_style=python-module

From 2f13ec494465137f0f2be446fbc89b6adddcf816 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 046/871] python-Pyro4: rebuild for Python 3.8.

---
 srcpkgs/python-Pyro4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Pyro4/template b/srcpkgs/python-Pyro4/template
index d8925aa141f..0417e9f6a8a 100644
--- a/srcpkgs/python-Pyro4/template
+++ b/srcpkgs/python-Pyro4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Pyro4'
 pkgname=python-Pyro4
 version=4.75
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 900437d13fa237200b574e720c48f15bd2be1200 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 047/871] python3-ReParser: rebuild for Python 3.8.

---
 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 5e7b5de3790..5959de9d0e3 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=1
+revision=2
 archs=noarch
 wrksrc=ReParser-${version}
 build_style=python3-module

From a9b5039ffba1f418c800de56ee1ad13a6595639f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 048/871] python-SPARQLWrapper: rebuild for Python 3.8.

---
 srcpkgs/python-SPARQLWrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-SPARQLWrapper/template b/srcpkgs/python-SPARQLWrapper/template
index d014eb8aab4..8d2db9a02b3 100644
--- a/srcpkgs/python-SPARQLWrapper/template
+++ b/srcpkgs/python-SPARQLWrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'python-SPARQLWrapper'
 pkgname=python-SPARQLWrapper
 version=1.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 638a270a8f26bdc971d4666c5148049dc363a26d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 049/871] python-SQLAlchemy: rebuild for Python 3.8.

---
 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 b27d3ee6ff8..c5046e10075 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.10
-revision=1
+revision=2
 wrksrc="SQLAlchemy-${version}"
 build_style=python-module
 pycompile_module="sqlalchemy"

From df22ae7c8a8c8e8637366eb06d5a1244d542c6b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 050/871] python3-SecretStorage: rebuild for Python 3.8.

---
 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 8df813ad247..b19d4865f7e 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.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="SecretStorage-${version}"
 build_style=python3-module

From 9bb06d28cd4c27aa9fac6db8579ea17561aec78c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 051/871] python3-SoCo: rebuild for Python 3.8.

---
 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 f0ac9825f57..01ebbeff15a 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="SoCo-${version}"
 build_style=python3-module

From a6f0225599663a0ff7b9bb903e58d43a950efd34 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 052/871] python-Sphinx: rebuild for Python 3.8.

---
 srcpkgs/python-Sphinx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Sphinx/template b/srcpkgs/python-Sphinx/template
index e70dc9b238e..42969925f9e 100644
--- a/srcpkgs/python-Sphinx/template
+++ b/srcpkgs/python-Sphinx/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Sphinx'
 pkgname=python-Sphinx
 version=1.8.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="Sphinx-${version}"
 build_style=python-module

From c844acf7ff7a10234e2f443d0d289957195abcbe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:22 +0200
Subject: [PATCH 053/871] python3-Telethon: rebuild for Python 3.8.

---
 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 b0786559591..d0fa8e34d3f 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.10.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="Telethon-${version}"
 build_style=python3-module

From aa5552b66517a2460122d7f10c7cd4d3079b634a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 054/871] python-Twisted: rebuild for Python 3.8.

---
 srcpkgs/python-Twisted/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Twisted/template b/srcpkgs/python-Twisted/template
index 519a1e251a9..e94e0edf26e 100644
--- a/srcpkgs/python-Twisted/template
+++ b/srcpkgs/python-Twisted/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Twisted'
 pkgname=python-Twisted
 version=18.9.0
-revision=3
+revision=4
 wrksrc="Twisted-${version}"
 build_style=python-module
 pycompile_module="twisted"

From 1375c909b7b75e0024c15f580cfadd43c8430861 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 055/871] python3-TxSNI: rebuild for Python 3.8.

---
 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 403010da5be..d9d7c2a0c83 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.1.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="TxSNI-${version}"
 build_style=python3-module

From 3eed3184dfac6514e58cda68b4d2af2d51e5a040 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 056/871] python-Unidecode: rebuild for Python 3.8.

---
 srcpkgs/python-Unidecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Unidecode/template b/srcpkgs/python-Unidecode/template
index 035c5d846be..444eb1427d6 100644
--- a/srcpkgs/python-Unidecode/template
+++ b/srcpkgs/python-Unidecode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Unidecode'
 pkgname=python-Unidecode
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="Unidecode-${version}"
 build_style=python-module

From acba13466f224c0fc65c97705e0ad9b005254c3f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 057/871] python-WTForms: rebuild for Python 3.8.

---
 srcpkgs/python-WTForms/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-WTForms/template b/srcpkgs/python-WTForms/template
index 06af2366050..98dff7d092f 100644
--- a/srcpkgs/python-WTForms/template
+++ b/srcpkgs/python-WTForms/template
@@ -1,7 +1,7 @@
 # Template file for 'python-WTForms'
 pkgname=python-WTForms
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="WTForms-${version}"
 build_style=python-module

From 7746af609544a7e273046664eeab19b935fc9e97 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 058/871] python3-WebOb: rebuild for Python 3.8.

---
 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 c360542a1f2..53e63879f2c 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=1
+revision=2
 archs=noarch
 wrksrc="WebOb-${version}"
 build_style=python3-module

From 49e54b93767e750e1876e37ff07f7f2e8606953f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 059/871] python-Werkzeug: rebuild for Python 3.8.

---
 srcpkgs/python-Werkzeug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Werkzeug/template b/srcpkgs/python-Werkzeug/template
index 24fff62f1ae..1ca303822e8 100644
--- a/srcpkgs/python-Werkzeug/template
+++ b/srcpkgs/python-Werkzeug/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Werkzeug'
 pkgname=python-Werkzeug
 version=0.15.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 6641b17817fd1e7f9d98bb4e318b71b27f350d0a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:23 +0200
Subject: [PATCH 060/871] python-Whoosh: rebuild for Python 3.8.

---
 srcpkgs/python-Whoosh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Whoosh/template b/srcpkgs/python-Whoosh/template
index f2118ed0af2..66856b206a7 100644
--- a/srcpkgs/python-Whoosh/template
+++ b/srcpkgs/python-Whoosh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-whoosh'
 pkgname=python-Whoosh
 version=2.7.4
-revision=1
+revision=2
 wrksrc="Whoosh-${version}"
 archs=noarch
 build_style=python-module

From fe0dab4eda80020ace87f783951dcac8bffd5851 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 061/871] python3-XlsxWriter: rebuild for Python 3.8.

---
 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 ea68ced9a03..b991457e01e 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.1.8
-revision=1
+revision=2
 archs="noarch"
 wrksrc="XlsxWriter-RELEASE_${version}"
 build_style=python3-module

From 91f3832b87da902d226810af34b4553402b01005 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 062/871] python-Yapsy: rebuild for Python 3.8.

---
 srcpkgs/python-Yapsy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-Yapsy/template b/srcpkgs/python-Yapsy/template
index 9f79423f91d..5ad8b234f5d 100644
--- a/srcpkgs/python-Yapsy/template
+++ b/srcpkgs/python-Yapsy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-Yapsy'
 pkgname=python-Yapsy
 version=1.12.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="Yapsy-${version}"
 build_style=python-module

From 39d96a4c9c371624b323a1ca7a351d9813c9fcd0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 063/871] python-aalib: rebuild for Python 3.8.

---
 srcpkgs/python-aalib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-aalib/template b/srcpkgs/python-aalib/template
index 349b8407343..f9621a9c8dc 100644
--- a/srcpkgs/python-aalib/template
+++ b/srcpkgs/python-aalib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-aalib'
 pkgname=python-aalib
 version=0.3.2
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="aalib.py"
 hostmakedepends="python-setuptools python3-setuptools"

From e3d9f821a49c7b334a43036a9a0abdb703ea46ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 064/871] python3-acme: rebuild for Python 3.8.

---
 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 d7ef20f2301..844dde9c814 100644
--- a/srcpkgs/python3-acme/template
+++ b/srcpkgs/python3-acme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-acme'
 pkgname=python3-acme
 version=0.39.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="acme-${version}"
 build_style=python3-module

From 8af2237f97ccced5486ef6541d608642a5476530 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 065/871] python3-aiodns: rebuild for Python 3.8.

---
 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 cca9f45dbf5..8e06ea6e614 100644
--- a/srcpkgs/python3-aiodns/template
+++ b/srcpkgs/python3-aiodns/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiodns'
 pkgname=python3-aiodns
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiodns-${version}"
 build_style=python3-module

From ab547fae3d4fb710f939699450d37e0a874c964f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 066/871] python3-aiohttp: rebuild for Python 3.8.

---
 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 fbe98e07b2b..67e450e6aab 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.5.4
-revision=3
+revision=4
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From 2ffea74cc0d26c6ba6e5a702cd1403ad21213fa2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 067/871] python3-aiohttp-cors: rebuild for Python 3.8.

---
 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 8a643ca1797..b621716e3cd 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=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 0593402bea534e0b12cf88e8c7ab062661644eb5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:24 +0200
Subject: [PATCH 068/871] python3-aiohttp-cors2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp-cors2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp-cors2/template b/srcpkgs/python3-aiohttp-cors2/template
index 7ff1206538b..f13b0598456 100644
--- a/srcpkgs/python3-aiohttp-cors2/template
+++ b/srcpkgs/python3-aiohttp-cors2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp-cors2'
 pkgname=python3-aiohttp-cors2
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module

From 02e77b3a0d312082f9c1499fb3aeab7e23cb4ab8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 069/871] python3-aiohttp2: rebuild for Python 3.8.

---
 srcpkgs/python3-aiohttp2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-aiohttp2/template b/srcpkgs/python3-aiohttp2/template
index b570043baba..db3704b5700 100644
--- a/srcpkgs/python3-aiohttp2/template
+++ b/srcpkgs/python3-aiohttp2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aiohttp2'
 pkgname=python3-aiohttp2
 version=2.3.10
-revision=2
+revision=3
 wrksrc="aiohttp-${version}"
 build_style=python3-module
 pycompile_module="aiohttp"

From d77355b7c0f33d7dd95ff94c1f4736dabdd6d6a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 070/871] python3-aiohttp_socks: rebuild for Python 3.8.

---
 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 93c45ff24c4..10ab967ef76 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.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiohttp_socks-${version}"
 build_style=python3-module

From ef8af2c8b4dc27817761eecdbe2e28606fa327b4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 071/871] python3-aiorpcx: rebuild for Python 3.8.

---
 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 42b6dc541bf..07922e15ccd 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.17.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="aiorpcX-${version}"
 build_style=python3-module

From 413f4c52de47f8e6e6164dd28cf0bcfb1c06aa2c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 072/871] python-alabaster: rebuild for Python 3.8.

---
 srcpkgs/python-alabaster/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alabaster/template b/srcpkgs/python-alabaster/template
index e4ece5c2991..b33009d5efb 100644
--- a/srcpkgs/python-alabaster/template
+++ b/srcpkgs/python-alabaster/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alabaster'
 pkgname=python-alabaster
 version=0.7.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="alabaster-${version}"
 build_style=python-module

From ddbf66ac8d312d376bbaeeef178bffa37f7e3ae6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 073/871] python-alembic: rebuild for Python 3.8.

---
 srcpkgs/python-alembic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-alembic/template b/srcpkgs/python-alembic/template
index 4011b33c0fa..aecbe10e7d0 100644
--- a/srcpkgs/python-alembic/template
+++ b/srcpkgs/python-alembic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-alembic'
 pkgname=python-alembic
 version=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="alembic-${version}"
 build_style=python-module

From f3612c137acfbd75b9fda3803e594ec983c23aca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 074/871] python3-altgraph: rebuild for Python 3.8.

---
 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 eff10f7aef4..2bf433edb6e 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.16.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="altgraph-${version}"
 build_style=python3-module

From d1e97db355d6d9da7ea0b735ea36804558fe2839 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 075/871] python3-aniso8601: rebuild for Python 3.8.

---
 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 26540bc8c3f..0253b89b5a3 100644
--- a/srcpkgs/python3-aniso8601/template
+++ b/srcpkgs/python3-aniso8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-aniso8601'
 pkgname=python3-aniso8601
 version=8.0.0
-revision=1
+revision=2
 archs=noarch
 _gitver=0ec13b9d81c9
 wrksrc="nielsenb-aniso8601-${_gitver}"

From 210846c644d3ee3a56540235ecd1a5939d9166c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:25 +0200
Subject: [PATCH 076/871] python-ansicolor: rebuild for Python 3.8.

---
 srcpkgs/python-ansicolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ansicolor/template b/srcpkgs/python-ansicolor/template
index af18c5b946d..3663a82f0cc 100644
--- a/srcpkgs/python-ansicolor/template
+++ b/srcpkgs/python-ansicolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ansicolor'
 pkgname=python-ansicolor
 version=0.2.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="ansicolor-${version}"
 build_style=python-module

From fc8d0813e7992d9f67867abe9cb61e5486a3f2e4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 077/871] python3-anytree: rebuild for Python 3.8.

---
 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 5a37dba6581..7368754c426 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.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="anytree-${version}"
 build_style=python3-module

From 437aad631d67741ff341dc048fbe5bd7d22ae209 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 078/871] python-appdirs: rebuild for Python 3.8.

---
 srcpkgs/python-appdirs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-appdirs/template b/srcpkgs/python-appdirs/template
index fdae1fe184b..15354ec5768 100644
--- a/srcpkgs/python-appdirs/template
+++ b/srcpkgs/python-appdirs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-appdirs'
 pkgname=python-appdirs
 version=1.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From e8b5cf6672e48a03ba44890ccb3bf55022d48901 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 079/871] python3-applib: rebuild for Python 3.8.

---
 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 95f589dc65a..0fb5a42e618 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=1
+revision=2
 archs=noarch
 wrksrc="applib-${version}"
 build_style=python3-module

From b19baa5e25ec5ced80c11c58c25ac1ac1b1d1b73 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 080/871] python-apsw: rebuild for Python 3.8.

---
 srcpkgs/python-apsw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-apsw/template b/srcpkgs/python-apsw/template
index ed47b4a7803..6146ea639db 100644
--- a/srcpkgs/python-apsw/template
+++ b/srcpkgs/python-apsw/template
@@ -3,7 +3,7 @@ pkgname=python-apsw
 _distver=3.29.0
 _patchver=r1
 version=${_distver}${_patchver}
-revision=1
+revision=2
 wrksrc="apsw-${_distver}-${_patchver}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 225d0da0bcfd35b936609eb68172fef12417b614 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 081/871] python-argh: rebuild for Python 3.8.

---
 srcpkgs/python-argh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argh/template b/srcpkgs/python-argh/template
index 4b7aec3b525..656da441757 100644
--- a/srcpkgs/python-argh/template
+++ b/srcpkgs/python-argh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argh'
 pkgname=python-argh
 version=0.26.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="argh-${version}"
 build_style=python-module

From e8facc2eeacffb5f53babdb7b9b1e20522d0f423 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 082/871] python-argon2: rebuild for Python 3.8.

---
 srcpkgs/python-argon2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-argon2/template b/srcpkgs/python-argon2/template
index 0b4b132cddd..1b5216cc9c0 100644
--- a/srcpkgs/python-argon2/template
+++ b/srcpkgs/python-argon2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-argon2'
 pkgname=python-argon2
 version=18.3.0
-revision=2
+revision=3
 wrksrc="argon2_cffi-${version}"
 build_style=python-module
 pycompile_module="argon2"

From 33ba396b6aab1ee33f779f0cc4bc8419731cdad5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:26 +0200
Subject: [PATCH 083/871] python-arxiv2bib: rebuild for Python 3.8.

---
 srcpkgs/python-arxiv2bib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-arxiv2bib/template b/srcpkgs/python-arxiv2bib/template
index 8bbc6bcf78e..4f245755dcf 100644
--- a/srcpkgs/python-arxiv2bib/template
+++ b/srcpkgs/python-arxiv2bib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-arxiv2bib'
 pkgname=python-arxiv2bib
 version=1.0.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="arxiv2bib-${version}"
 build_style=python-module

From 34dcdd1bda0e9253504b3f9bee5fb4e48bbb76e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 084/871] python-asn1crypto: rebuild for Python 3.8.

---
 srcpkgs/python-asn1crypto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-asn1crypto/template b/srcpkgs/python-asn1crypto/template
index 369c20af98f..e7ffe7415fc 100644
--- a/srcpkgs/python-asn1crypto/template
+++ b/srcpkgs/python-asn1crypto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-asn1crypto'
 pkgname=python-asn1crypto
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="asn1crypto-${version}"
 build_style=python-module

From fcae381ac2cc244da0376861d172eaec4b19b266 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 085/871] python-astral: rebuild for Python 3.8.

---
 srcpkgs/python-astral/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-astral/template b/srcpkgs/python-astral/template
index b8fdaee27ac..07aaeee166b 100644
--- a/srcpkgs/python-astral/template
+++ b/srcpkgs/python-astral/template
@@ -1,7 +1,7 @@
 # Template file for 'python-astral'
 pkgname=python-astral
 version=1.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python-}-${version}"
 build_style=python-module

From 8e8452f1614807835eae4519e70e6259a1e452e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 086/871] python3-astroid: rebuild for Python 3.8.

---
 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 28f01bd4445..d964fd2cdf3 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.2.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="astroid-${version}"
 build_style=python3-module

From 4f1cb8f2daa84d972812071a9a6a0e54994dbd35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 087/871] python3-async-timeout: rebuild for Python 3.8.

---
 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 d949a4fdf9a..854584fb5b2 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=1
+revision=2
 archs=noarch
 wrksrc="async-timeout-${version}"
 build_style=python3-module

From 1726189f2c3a4f924927599b7493877af5a92c41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 088/871] python3-async_generator: rebuild for Python 3.8.

---
 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 c2053d7bf1f..20d9f7ea0d1 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=1
+revision=2
 archs=noarch
 wrksrc="async_generator-${version}"
 build_style=python3-module

From 18e39d1eee165b9a00192bef4f146d382644cb1d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 089/871] python-atomicwrites: rebuild for Python 3.8.

---
 srcpkgs/python-atomicwrites/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atomicwrites/template b/srcpkgs/python-atomicwrites/template
index 849272e53f9..ec411d981d4 100644
--- a/srcpkgs/python-atomicwrites/template
+++ b/srcpkgs/python-atomicwrites/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atomicwrites'
 pkgname=python-atomicwrites
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="atomicwrites-${version}"
 build_style=python-module

From a2409f149a760e976fe1f51124dce74d0eaf40dc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 090/871] python-atspi: rebuild for Python 3.8.

---
 srcpkgs/python-atspi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-atspi/template b/srcpkgs/python-atspi/template
index 4a2007fa319..cfa1ef35377 100644
--- a/srcpkgs/python-atspi/template
+++ b/srcpkgs/python-atspi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-atspi'
 pkgname=python-atspi
 version=2.32.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure

From 04d56411caa439ec420280bbd234843e8a334202 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:27 +0200
Subject: [PATCH 091/871] python-attrs: rebuild for Python 3.8.

---
 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 aaddb13f5be..6e2297a9553 100644
--- a/srcpkgs/python-attrs/template
+++ b/srcpkgs/python-attrs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-attrs'
 pkgname=python-attrs
 version=19.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="attrs-${version}"
 build_style=python-module

From 7ec77483ee56a083055455bf110766320c98521d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 092/871] python-audioread: rebuild for Python 3.8.

---
 srcpkgs/python-audioread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-audioread/template b/srcpkgs/python-audioread/template
index fc788a2778c..bc878d4b82d 100644
--- a/srcpkgs/python-audioread/template
+++ b/srcpkgs/python-audioread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-audioread'
 pkgname=python-audioread
 version=2.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="audioread-${version}"
 build_style=python-module

From 93aa8c9c5153d6446c7efcaedd4f4f0a35b4d63a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 093/871] audit: rebuild for Python 3.8.

---
 srcpkgs/audit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/audit/template b/srcpkgs/audit/template
index c624aae0f6d..3e0d21784c0 100644
--- a/srcpkgs/audit/template
+++ b/srcpkgs/audit/template
@@ -1,7 +1,7 @@
 # Template file for 'audit'
 pkgname=audit
 version=2.8.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--libdir=/usr/lib --enable-shared=audit --enable-gssapi-krb5
  --with-apparmor --with-libcap-ng --with-python3"

From 426ba825f5b773bc9d6b84c88768baf90507eae8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 094/871] python3-autobahn: rebuild for Python 3.8.

---
 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 053e45608e5..524ba4b4566 100644
--- a/srcpkgs/python3-autobahn/template
+++ b/srcpkgs/python3-autobahn/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-autobahn'
 pkgname=python3-autobahn
 version=19.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="autobahn-${version}"
 build_style=python3-module

From cbd489d951a90ea1f87beb939f937ab9f18859fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 095/871] python-automat: rebuild for Python 3.8.

---
 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 4d0f89a89f5..984f5e9642a 100644
--- a/srcpkgs/python-automat/template
+++ b/srcpkgs/python-automat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-automat'
 pkgname=python-automat
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Automat-${version}"
 build_style=python-module

From 4a723405b3a4bb21615ee0f57b3a23b019a4f5e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 096/871] python-axolotl: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl/template b/srcpkgs/python-axolotl/template
index cf24db1b6e7..74480b5a9fe 100644
--- a/srcpkgs/python-axolotl/template
+++ b/srcpkgs/python-axolotl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl'
 pkgname=python-axolotl
 version=0.2.3
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="axolotl"

From 3d286ad4a4b7991b59603f9b1f55fb3e158bab91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 097/871] python-axolotl-curve25519: rebuild for Python 3.8.

---
 srcpkgs/python-axolotl-curve25519/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-axolotl-curve25519/template b/srcpkgs/python-axolotl-curve25519/template
index f7b273b8385..897de4e7cdf 100644
--- a/srcpkgs/python-axolotl-curve25519/template
+++ b/srcpkgs/python-axolotl-curve25519/template
@@ -1,7 +1,7 @@
 # Template file for 'python-axolotl-curve25519'
 pkgname=python-axolotl-curve25519
 version=0.4.1.post2
-revision=2
+revision=3
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 makedepends="python-devel python3-devel"

From f63a6367800c535fce37297d59e2eed527f82eed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 098/871] python-babelfish: rebuild for Python 3.8.

---
 srcpkgs/python-babelfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-babelfish/template b/srcpkgs/python-babelfish/template
index c156255f418..47d5bb176cc 100644
--- a/srcpkgs/python-babelfish/template
+++ b/srcpkgs/python-babelfish/template
@@ -1,7 +1,7 @@
 # Template file for 'python-babelfish'
 pkgname=python-babelfish
 version=0.5.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="babelfish-${version}"
 build_style=python-module

From ee47cc107216f7d5a72c3a3314eefdec21388963 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:28 +0200
Subject: [PATCH 099/871] python-backcall: rebuild for Python 3.8.

---
 srcpkgs/python-backcall/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-backcall/template b/srcpkgs/python-backcall/template
index 01dfab9c25d..a55af727ab6 100644
--- a/srcpkgs/python-backcall/template
+++ b/srcpkgs/python-backcall/template
@@ -1,7 +1,7 @@
 # Template file for 'python-backcall'
 pkgname=python-backcall
 version=0.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="backcall-${version}"
 build_style=python-module

From 2bcc8821ce39725a73019b272e04f837e7d069d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 100/871] bcc: rebuild for Python 3.8.

---
 srcpkgs/bcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template
index a4d32bce7a4..e872cb6a4a8 100644
--- a/srcpkgs/bcc/template
+++ b/srcpkgs/bcc/template
@@ -1,7 +1,7 @@
 # Template file for 'bcc'
 pkgname=bcc
 version=0.11.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DREVISION=${version}"
 hostmakedepends="flex"

From abc85a6e26560527cfff0519dbebe86eab08646e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 101/871] python-bcrypt: rebuild for Python 3.8.

---
 srcpkgs/python-bcrypt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bcrypt/template b/srcpkgs/python-bcrypt/template
index 1ccac21ee94..664b5c9df07 100644
--- a/srcpkgs/python-bcrypt/template
+++ b/srcpkgs/python-bcrypt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bcrypt'
 pkgname=python-bcrypt
 version=3.1.7
-revision=1
+revision=2
 wrksrc="bcrypt-${version}"
 build_style=python-module
 pycompile_module="bcrypt"

From 4ce55defcda61fe8fb824032dde717850749c2f1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 102/871] python-bibtexparser: rebuild for Python 3.8.

---
 srcpkgs/python-bibtexparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bibtexparser/template b/srcpkgs/python-bibtexparser/template
index 1eff201e6b8..c40115c9fb8 100644
--- a/srcpkgs/python-bibtexparser/template
+++ b/srcpkgs/python-bibtexparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bibtexparser'
 pkgname=python-bibtexparser
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bibtexparser-${version}"
 build_style=python-module

From 614cfe1818505799bcb363709d9b1277e66fdb9b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 103/871] python-bitarray: rebuild for Python 3.8.

---
 srcpkgs/python-bitarray/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitarray/template b/srcpkgs/python-bitarray/template
index 4f2b4ee392c..f928718a9df 100644
--- a/srcpkgs/python-bitarray/template
+++ b/srcpkgs/python-bitarray/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitarray'
 pkgname=python-bitarray
 version=1.0.1
-revision=1
+revision=2
 wrksrc="bitarray-${version}"
 build_style=python-module
 pycompile_module="bitarray"

From 8798618ba88df7d87f8f69a8f283183c84b83393 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 104/871] python-bitbucket-api: rebuild for Python 3.8.

---
 srcpkgs/python-bitbucket-api/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bitbucket-api/template b/srcpkgs/python-bitbucket-api/template
index 27747866baf..448ea60d53d 100644
--- a/srcpkgs/python-bitbucket-api/template
+++ b/srcpkgs/python-bitbucket-api/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bitbucket-api'
 pkgname=python-bitbucket-api
 version=0.5.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="bitbucket-api-${version}"
 build_style=python-module

From 5a1164827e51856208db3d3d81cfa37df91bc3b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 105/871] python-bleach: rebuild for Python 3.8.

---
 srcpkgs/python-bleach/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bleach/template b/srcpkgs/python-bleach/template
index da389c319a5..6e3d4a3bf4c 100644
--- a/srcpkgs/python-bleach/template
+++ b/srcpkgs/python-bleach/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bleach'
 pkgname=python-bleach
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="bleach-${version}"
 build_style=python-module

From 24fc4b5e14da3293fba89e6232e85e3b4f7ece63 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:29 +0200
Subject: [PATCH 106/871] python3-blessed: rebuild for Python 3.8.

---
 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 bb627b7a08e..d18f0a69381 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.16.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessed-${version}"
 build_style=python3-module

From f12ccdaa6ca561b64e9d842d1eca259c3c8274ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 107/871] python-blessings: rebuild for Python 3.8.

---
 srcpkgs/python-blessings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blessings/template b/srcpkgs/python-blessings/template
index f8e396da5c5..baa4938c328 100644
--- a/srcpkgs/python-blessings/template
+++ b/srcpkgs/python-blessings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blessings'
 pkgname=python-blessings
 version=1.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="blessings-${version}"
 build_style=python-module

From a734dbb73a879547cd48cc3436b12ec27dd2d256 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 108/871] python-blinker: rebuild for Python 3.8.

---
 srcpkgs/python-blinker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-blinker/template b/srcpkgs/python-blinker/template
index e34a4a9721a..b6d1d63d19a 100644
--- a/srcpkgs/python-blinker/template
+++ b/srcpkgs/python-blinker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-blinker'
 pkgname=python-blinker
 version=1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="blinker-${version}"
 build_style=python-module

From cea10653a2982d39b058ce59dd086d123c981e53 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 109/871] python-bluez: rebuild for Python 3.8.

---
 srcpkgs/python-bluez/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bluez/template b/srcpkgs/python-bluez/template
index 1112352e8ab..4734e47038d 100644
--- a/srcpkgs/python-bluez/template
+++ b/srcpkgs/python-bluez/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bluez'
 pkgname=python-bluez
 version=0.22
-revision=4
+revision=5
 wrksrc="pybluez-${version}"
 build_style=python-module
 pycompile_module="bluetooth"

From 1aded9f648758705e73e57aaeeb428999090ca9d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 110/871] python3-boltons: rebuild for Python 3.8.

---
 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 84a991feef4..1083eb98c51 100644
--- a/srcpkgs/python3-boltons/template
+++ b/srcpkgs/python3-boltons/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-boltons'
 pkgname=python3-boltons
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boltons-${version}"
 build_style=python3-module

From 816cf35d5b17fd26791bf1d1d076bd5daa249d3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 111/871] python-boto: rebuild for Python 3.8.

---
 srcpkgs/python-boto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-boto/template b/srcpkgs/python-boto/template
index 40bd3d888b9..684c00feee0 100644
--- a/srcpkgs/python-boto/template
+++ b/srcpkgs/python-boto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-boto'
 pkgname=python-boto
 version=2.49.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="boto-${version}"
 build_style=python-module

From 1d1f7a5c8e20e67150e5e7203a91e5e0e7bdfd91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 112/871] python-botocore: rebuild for Python 3.8.

---
 srcpkgs/python-botocore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-botocore/template b/srcpkgs/python-botocore/template
index f8ced7bbae2..36dfc4439a1 100644
--- a/srcpkgs/python-botocore/template
+++ b/srcpkgs/python-botocore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-botocore'
 pkgname=python-botocore
 version=1.12.253
-revision=1
+revision=2
 archs=noarch
 wrksrc="botocore-${version}"
 build_style=python-module

From 45cd626714d46a522ea8ab58de7dfca328238a16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 113/871] python-bottle: rebuild for Python 3.8.

---
 srcpkgs/python-bottle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bottle/template b/srcpkgs/python-bottle/template
index 8e3a2ad5ad7..0ffc8adfec7 100644
--- a/srcpkgs/python-bottle/template
+++ b/srcpkgs/python-bottle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bottle'
 pkgname=python-bottle
 version=0.12.17
-revision=1
+revision=2
 archs=noarch
 wrksrc="bottle-${version}"
 build_style=python-module

From 2fa553c8d29c82f95cc1749b8568e3f2784d258b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:30 +0200
Subject: [PATCH 114/871] brltty: rebuild for Python 3.8.

---
 srcpkgs/brltty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/brltty/template b/srcpkgs/brltty/template
index 33f3354a219..a838cd62d55 100644
--- a/srcpkgs/brltty/template
+++ b/srcpkgs/brltty/template
@@ -1,7 +1,7 @@
 # Template file for 'brltty'
 pkgname=brltty
 version=6.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-gpm --with-screen-driver=lx,sc
  --with-tables-directory=/usr/share/brltty PYTHON=/usr/bin/python3"

From df2edc31e9447769076b9faf7706545834972753 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 115/871] python-bsddb3: rebuild for Python 3.8.

---
 srcpkgs/python-bsddb3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-bsddb3/template b/srcpkgs/python-bsddb3/template
index f719a3f9560..1df37cc0e71 100644
--- a/srcpkgs/python-bsddb3/template
+++ b/srcpkgs/python-bsddb3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-bsddb3'
 pkgname=python-bsddb3
 version=6.2.6
-revision=2
+revision=3
 wrksrc="bsddb3-${version}"
 build_style=python-module
 make_build_args="--berkeley-db=${XBPS_CROSS_BASE}/usr"

From 19b6a2a4388cd397ec7e195f6cb3319e277efbfb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 116/871] python-cached-property: rebuild for Python 3.8.

---
 srcpkgs/python-cached-property/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cached-property/template b/srcpkgs/python-cached-property/template
index ca2f8536260..16c89346565 100644
--- a/srcpkgs/python-cached-property/template
+++ b/srcpkgs/python-cached-property/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cached-property'
 pkgname=python-cached-property
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cached-property-${version}"
 build_style=python-module

From ee6112dd97883499ad9ebcfe7e46523df317fee0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 117/871] python-cachetools: rebuild for Python 3.8.

---
 srcpkgs/python-cachetools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cachetools/template b/srcpkgs/python-cachetools/template
index ee3ed3a4c94..0f2fdcaed32 100644
--- a/srcpkgs/python-cachetools/template
+++ b/srcpkgs/python-cachetools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cachetools'
 pkgname=python-cachetools
 version=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cachetools-${version}"
 build_style=python-module

From e65e3ecb13e72677ada7d923517fc145b0843f87 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 118/871] python3-cairo: rebuild for Python 3.8.

---
 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 cdde1b83d20..ac158237dd2 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.18.1
-revision=1
+revision=2
 wrksrc="pycairo-${version}"
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From 26ae8b49d1d3cf35158bf55f756e76aff54bcafa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 119/871] python-cairocffi: rebuild for Python 3.8.

---
 srcpkgs/python-cairocffi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cairocffi/template b/srcpkgs/python-cairocffi/template
index baa61334a2a..c057739b03d 100644
--- a/srcpkgs/python-cairocffi/template
+++ b/srcpkgs/python-cairocffi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cairocffi'
 pkgname=python-cairocffi
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="cairocffi-${version}"
 build_style=python-module

From a6bbe9a069453259ecf37d1d99f78257ec70813a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 120/871] python3-canonicaljson: rebuild for Python 3.8.

---
 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 abc8e95820d..1cbe15f14ae 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.1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="canonicaljson-${version}"
 build_style=python3-module

From f69583b1c1da23a568c3ec21019eee282fe81c39 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 121/871] python3-casttube: rebuild for Python 3.8.

---
 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 ccd95f3f31c..9e5544b0101 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=1
+revision=2
 archs=noarch
 wrksrc="casttube-${version}"
 build_style=python3-module

From 69271edca28aad80cd530e000f9a9074b94cac1c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:31 +0200
Subject: [PATCH 122/871] python-cffi: rebuild for Python 3.8.

---
 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 27ae03879ac..8501b202bf2 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.12.3
-revision=1
+revision=2
 wrksrc="cffi-${version}"
 build_style=python-module
 pycompile_module="cffi"

From c1503dda7550e49e8bb844c299d643332fda164a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 123/871] python3-changelogs: rebuild for Python 3.8.

---
 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 5c2a4889959..d9a7784cf3b 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.14.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="changelogs-${version}"
 build_style=python3-module

From 05901a19ee45acb375a12da239f547e8537748be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 124/871] python-chardet: rebuild for Python 3.8.

---
 srcpkgs/python-chardet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chardet/template b/srcpkgs/python-chardet/template
index 685d3ab767f..bd502bbbddf 100644
--- a/srcpkgs/python-chardet/template
+++ b/srcpkgs/python-chardet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chardet'
 pkgname=python-chardet
 version=3.0.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="chardet-${version}"
 build_style=python-module

From d7aaeeea6f532bcf483b2a2188d6414b62d97a0d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 125/871] python3-cheetah3: rebuild for Python 3.8.

---
 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 40dfee6e322..b2149b2bc22 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.4
-revision=1
+revision=2
 wrksrc="Cheetah3-${version}"
 build_style=python3-module
 pycompile_module="Cheetah"

From eec519e167df2805e2c6e9409a3d933f43daabfa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 126/871] python3-chess: rebuild for Python 3.8.

---
 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 54b397517cf..e87dab6ca02 100644
--- a/srcpkgs/python3-chess/template
+++ b/srcpkgs/python3-chess/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chess'
 pkgname=python3-chess
 version=0.27.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-chess-${version}"
 build_style=python3-module

From 3d8ed0fad83a9bed328a2556fd7f125999941936 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 127/871] python3-chromecast: rebuild for Python 3.8.

---
 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 16df7502633..cfa41c5dfb5 100644
--- a/srcpkgs/python3-chromecast/template
+++ b/srcpkgs/python3-chromecast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-chromecast'
 pkgname=python3-chromecast
 version=4.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychromecast-${version}"
 build_style=python3-module

From d1bc6a1c8d591923125a0c88e1129229189b0542 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 128/871] python-chroot: rebuild for Python 3.8.

---
 srcpkgs/python-chroot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-chroot/template b/srcpkgs/python-chroot/template
index 36853e9f2c0..7faa0f4cce9 100644
--- a/srcpkgs/python-chroot/template
+++ b/srcpkgs/python-chroot/template
@@ -1,7 +1,7 @@
 # Template file for 'python-chroot'
 pkgname=python-chroot
 version=0.9.18
-revision=1
+revision=2
 archs=noarch
 wrksrc="pychroot-${version}"
 build_style=python-module

From 0ffeb845a8227d9b110b89085a63d251bce0ce1e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:32 +0200
Subject: [PATCH 129/871] python3-cli-ui: rebuild for Python 3.8.

---
 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 8303d44eed2..15a9bd32fce 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.9.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-cli-ui-${version}"
 build_style=python3-module

From d5c85c28cd481dda3faeb979f4296ec562c93cf4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 130/871] python3-cli_helpers: rebuild for Python 3.8.

---
 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 74b4abf2200..87b284e3cb5 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=1.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="cli_helpers-${version}"
 build_style=python3-module

From 6c792cf36aec44b91e22bc5c0db3fd902667ad60 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 131/871] python-click: rebuild for Python 3.8.

---
 srcpkgs/python-click/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click/template b/srcpkgs/python-click/template
index 217e617e73e..4014cb66a83 100644
--- a/srcpkgs/python-click/template
+++ b/srcpkgs/python-click/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click'
 pkgname=python-click
 version=7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Click-${version}"
 build_style="python-module"

From deaec0de726606f41faac321d9a9c7c0ebb57da3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 132/871] python-click-log: rebuild for Python 3.8.

---
 srcpkgs/python-click-log/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-log/template b/srcpkgs/python-click-log/template
index 37b53f04af0..b57a7a74b4a 100644
--- a/srcpkgs/python-click-log/template
+++ b/srcpkgs/python-click-log/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-log'
 pkgname=python-click-log
 version=0.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-log-${version}"
 build_style="python-module"

From cc579f5095261b743be63886c555ac835c9e8997 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 133/871] python3-click-plugins: rebuild for Python 3.8.

---
 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 cee484018d1..0ef6ce6b248 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=1
+revision=2
 archs=noarch
 wrksrc="click-plugins-${version}"
 build_style=python3-module

From b5df765ff675cb58d27b1d09d3dfb720322f3d9d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 134/871] python-click-threading: rebuild for Python 3.8.

---
 srcpkgs/python-click-threading/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-click-threading/template b/srcpkgs/python-click-threading/template
index 76125224992..49b4a4a9aae 100644
--- a/srcpkgs/python-click-threading/template
+++ b/srcpkgs/python-click-threading/template
@@ -1,7 +1,7 @@
 # Template file for 'python-click-threading'
 pkgname=python-click-threading
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="click-threading-${version}"
 build_style="python-module"

From 63098060cb9ec683b11d8e796ccaeb56686ba305 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 135/871] python3-cmdln: rebuild for Python 3.8.

---
 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 f00c9a63908..2b7e21f3980 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=1
+revision=2
 archs=noarch
 wrksrc="cmdln-${version}"
 build_style=python3-module

From 9fe8b7777e6d3b76979963f3cbfe64ae43ebe291 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 136/871] python-codespell: rebuild for Python 3.8.

---
 srcpkgs/python-codespell/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-codespell/template b/srcpkgs/python-codespell/template
index 4146e0d89c5..9ae2e19435c 100644
--- a/srcpkgs/python-codespell/template
+++ b/srcpkgs/python-codespell/template
@@ -1,7 +1,7 @@
 # Template file for 'python-codespell'
 pkgname=python-codespell
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="codespell-${version}"
 build_style=python-module

From 1aeba7fce813d6979b90a84db0982d7d205cd5a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:33 +0200
Subject: [PATCH 137/871] python-colorama: rebuild for Python 3.8.

---
 srcpkgs/python-colorama/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-colorama/template b/srcpkgs/python-colorama/template
index 98ea0d3be78..09562385243 100644
--- a/srcpkgs/python-colorama/template
+++ b/srcpkgs/python-colorama/template
@@ -1,7 +1,7 @@
 # Template file for 'python-colorama'
 pkgname=python-colorama
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="colorama-${version}"
 build_style=python-module

From dba87fa43d65eb65ffb28b601073cb409ffd3ec6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 138/871] python3-colorclass: rebuild for Python 3.8.

---
 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 4a80f379206..ed8d2d2ea02 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=1
+revision=2
 archs=noarch
 wrksrc="colorclass-${version}"
 build_style=python3-module

From 798b83e3dcd2dbf4d027c2208491865a1630c5b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 139/871] python-configobj: rebuild for Python 3.8.

---
 srcpkgs/python-configobj/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-configobj/template b/srcpkgs/python-configobj/template
index 95f30d4631a..a8cb5d5d34e 100644
--- a/srcpkgs/python-configobj/template
+++ b/srcpkgs/python-configobj/template
@@ -1,7 +1,7 @@
 # Template file for 'python-configobj'
 pkgname=python-configobj
 version=5.0.6
-revision=5
+revision=6
 archs=noarch
 wrksrc="configobj-${version}"
 build_style=python-module

From 3625a443e00ab5d78c4e93c66999c47f8b404a00 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 140/871] python-constantly: rebuild for Python 3.8.

---
 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 b5530908ac4..9160aec9edd 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=2
+revision=3
 archs=noarch
 wrksrc="constantly-${version}"
 build_style=python-module

From 87465cd8ca4b8e99781e94c9b7a1503376b35470 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 141/871] python-construct: rebuild for Python 3.8.

---
 srcpkgs/python-construct/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-construct/template b/srcpkgs/python-construct/template
index 2afe435652c..d6d0b8010e2 100644
--- a/srcpkgs/python-construct/template
+++ b/srcpkgs/python-construct/template
@@ -1,7 +1,7 @@
 # Template file for 'python-construct'
 pkgname=python-construct
 version=2.9.45
-revision=2
+revision=3
 archs=noarch
 wrksrc="construct-${version}"
 build_style=python-module

From a843d07797f976bdebf03a8420ecd83852a00625 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 142/871] python-coverage: rebuild for Python 3.8.

---
 srcpkgs/python-coverage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-coverage/template b/srcpkgs/python-coverage/template
index df6064b9879..1c44b5e18fb 100644
--- a/srcpkgs/python-coverage/template
+++ b/srcpkgs/python-coverage/template
@@ -1,7 +1,7 @@
 # Template file for 'python-coverage'
 pkgname=python-coverage
 version=4.5.4
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="coverage"

From fe76aa156a3087ee215bb3d22c0653740a637496 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 143/871] python-cram: rebuild for Python 3.8.

---
 srcpkgs/python-cram/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cram/template b/srcpkgs/python-cram/template
index f1fce32149f..8c5d65fe260 100644
--- a/srcpkgs/python-cram/template
+++ b/srcpkgs/python-cram/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cram'
 pkgname=python-cram
 version=0.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="cram-${version}"
 build_style=python-module

From 63581e05ffbf9389b940ed040e204e3cd0f6db33 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:34 +0200
Subject: [PATCH 144/871] python3-crcmod: rebuild for Python 3.8.

---
 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 4cd433d2420..9311dedc8ac 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=1
+revision=2
 wrksrc="crcmod-${version}"
 build_style=python3-module
 pycompile_module="crcmod"

From 25118b611fb3bcd4e105daae028d2841b8ad2dce Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 145/871] python-cryptography: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography/template b/srcpkgs/python-cryptography/template
index ce3184715dd..39e63d22f7d 100644
--- a/srcpkgs/python-cryptography/template
+++ b/srcpkgs/python-cryptography/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography'
 pkgname=python-cryptography
 version=2.7
-revision=1
+revision=2
 wrksrc="cryptography-${version}"
 build_style=python-module
 pycompile_module="cryptography"

From 12e373a59f556071899ea89901bfc9153e2a969a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 146/871] python-cryptography_vectors: rebuild for Python 3.8.

---
 srcpkgs/python-cryptography_vectors/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cryptography_vectors/template b/srcpkgs/python-cryptography_vectors/template
index d52e5f5e47c..8fba3a0ce27 100644
--- a/srcpkgs/python-cryptography_vectors/template
+++ b/srcpkgs/python-cryptography_vectors/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cryptography_vectors'
 pkgname=python-cryptography_vectors
 version=2.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="cryptography_vectors-${version}"
 build_style=python-module

From 2d84331a9b95c499b2727f993df0c67f4043f17b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 147/871] python-css-parser: rebuild for Python 3.8.

---
 srcpkgs/python-css-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-css-parser/template b/srcpkgs/python-css-parser/template
index e90b103e4a0..f6d2d0cbf8b 100644
--- a/srcpkgs/python-css-parser/template
+++ b/srcpkgs/python-css-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-css-parser'
 pkgname=python-css-parser
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="css-parser-${version}"
 build_style=python-module

From 9c106b0851f9546c0892a472226250b5e5553ab9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 148/871] python-cssselect: rebuild for Python 3.8.

---
 srcpkgs/python-cssselect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssselect/template b/srcpkgs/python-cssselect/template
index d7dbcebc0ea..c7f43ebca9f 100644
--- a/srcpkgs/python-cssselect/template
+++ b/srcpkgs/python-cssselect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssselect'
 pkgname=python-cssselect
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 47a83372601e9c534c6dcdf28def1a0fec422bca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 149/871] python-cssutils: rebuild for Python 3.8.

---
 srcpkgs/python-cssutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cssutils/template b/srcpkgs/python-cssutils/template
index 648c4754c22..5f08903b9a0 100644
--- a/srcpkgs/python-cssutils/template
+++ b/srcpkgs/python-cssutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cssutils'
 pkgname=python-cssutils
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="cssutils-${version}"
 build_style=python-module

From 400c40f9167a501510ef0a2c16d5b80e4f18f122 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 150/871] python-cups: rebuild for Python 3.8.

---
 srcpkgs/python-cups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cups/template b/srcpkgs/python-cups/template
index 2c26e9ef3d0..62c384c9db8 100644
--- a/srcpkgs/python-cups/template
+++ b/srcpkgs/python-cups/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cups'
 pkgname=python-cups
 version=1.9.74
-revision=2
+revision=3
 wrksrc="pycups-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From 7f937efaab15aa37198aa715bf71a6b25c459a3f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 151/871] system-config-printer: rebuild for Python 3.8.

---
 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 e8f8eca46ae..04fe74ff808 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.11
-revision=5
+revision=6
 build_style=gnu-configure
 configure_args="--with-udev-rules"
 make_build_args="udevhelperdir=/usr/lib/udev"

From 24034ec06b2b238e1e3159759967d3887312f44e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:35 +0200
Subject: [PATCH 152/871] python-curl: rebuild for Python 3.8.

---
 srcpkgs/python-curl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curl/template b/srcpkgs/python-curl/template
index f1f9051d53a..685c63ce68a 100644
--- a/srcpkgs/python-curl/template
+++ b/srcpkgs/python-curl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curl'
 pkgname=python-curl
 version=7.43.0.3
-revision=4
+revision=5
 wrksrc="pycurl-${version}"
 build_style=python-module
 pycompile_module="curl"

From 63c6678469ae379ad0dc55ffed478d0537efa2c4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 153/871] python-curtsies: rebuild for Python 3.8.

---
 srcpkgs/python-curtsies/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-curtsies/template b/srcpkgs/python-curtsies/template
index 158d1c5ce76..6126a11e9b4 100644
--- a/srcpkgs/python-curtsies/template
+++ b/srcpkgs/python-curtsies/template
@@ -1,7 +1,7 @@
 # Template file for 'python-curtsies'
 pkgname=python-curtsies
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="curtsies-${version}"
 build_style=python-module

From 95e7d59433d993211e0344f278873c0a13132b8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 154/871] python-cycler: rebuild for Python 3.8.

---
 srcpkgs/python-cycler/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-cycler/template b/srcpkgs/python-cycler/template
index ee6c985b288..0b53c195dae 100644
--- a/srcpkgs/python-cycler/template
+++ b/srcpkgs/python-cycler/template
@@ -1,7 +1,7 @@
 # Template file for 'python-cycler'
 pkgname=python-cycler
 version=0.10.0
-revision=4
+revision=5
 archs=noarch
 wrksrc="cycler-${version}"
 build_style=python-module

From 9972f66d4a7d86a3885cd8caf4fe8255d3fdaa4e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 155/871] python-daemonize: rebuild for Python 3.8.

---
 srcpkgs/python-daemonize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-daemonize/template b/srcpkgs/python-daemonize/template
index 699a156b26b..efaf163e573 100644
--- a/srcpkgs/python-daemonize/template
+++ b/srcpkgs/python-daemonize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-daemonize'
 pkgname=python-daemonize
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="daemonize-${version}"
 build_style=python-module

From e8d73e5cb2237b2d0fee0f8b4467a7b6f77ab6e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 156/871] python-dateutil: rebuild for Python 3.8.

---
 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 d9c0f73c883..7675b8f9447 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.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="dateutil"

From 644460fbd87ae7fbbf0a7e461ae84c7500d9556e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 157/871] python-dbus: rebuild for Python 3.8.

---
 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 869c10b2969..3845f6ce34a 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.12
-revision=1
+revision=2
 wrksrc="dbus-python-${version}"
 build_style=gnu-configure
 pycompile_module="dbus"

From fba07272650f8302e8c5c4999cc458a188ed72fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 158/871] python3-dbusmock: rebuild for Python 3.8.

---
 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 67e0ed68078..4abd47843cc 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.18.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-dbusmock-${version}"
 build_style=python3-module

From b32cc76191c8cfd20aef9136e7da1c7a4efa2470 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:36 +0200
Subject: [PATCH 159/871] python-decorator: rebuild for Python 3.8.

---
 srcpkgs/python-decorator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-decorator/template b/srcpkgs/python-decorator/template
index 14090c537c9..7f14fef90a6 100644
--- a/srcpkgs/python-decorator/template
+++ b/srcpkgs/python-decorator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-decorator'
 pkgname=python-decorator
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="decorator-${version}"
 build_style=python-module

From ae4c10a933fec7c363a48e692b63729fbda05055 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 160/871] python-defusedxml: rebuild for Python 3.8.

---
 srcpkgs/python-defusedxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-defusedxml/template b/srcpkgs/python-defusedxml/template
index afd62e94414..96234eb18c7 100644
--- a/srcpkgs/python-defusedxml/template
+++ b/srcpkgs/python-defusedxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-defusedxml'
 pkgname=python-defusedxml
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="defusedxml-${version}"
 build_style=python-module

From 50a1fde4b070b31b044d6f867d33c36de3a3b237 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 161/871] python3-discid: rebuild for Python 3.8.

---
 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 be5eae1f07f..cc4bc27a1aa 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=1
+revision=2
 archs=noarch
 wrksrc="discid-${version}"
 build_style=python3-module

From 70c2ef40000b66a94777155d1ee38cc71cb732c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 162/871] python-discogs_client: rebuild for Python 3.8.

---
 srcpkgs/python-discogs_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-discogs_client/template b/srcpkgs/python-discogs_client/template
index a27cc50f93c..5af18eda664 100644
--- a/srcpkgs/python-discogs_client/template
+++ b/srcpkgs/python-discogs_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-discogs_client'
 pkgname=python-discogs_client
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="discogs-client-${version}"
 build_style=python-module

From 3e7930d7ff4893db1394ad56a3525ddce1c1e356 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 163/871] python3-distro: rebuild for Python 3.8.

---
 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 86e94572ed7..f1205ace151 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.4.0
-revision=1
+revision=2
 wrksrc=distro-${version}
 build_style=python3-module
 pycompile_module="distro"

From b13e15c8a3eac05deebfb92b09875fcbec456a90 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 164/871] python-distutils-extra: rebuild for Python 3.8.

---
 srcpkgs/python-distutils-extra/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-distutils-extra/template b/srcpkgs/python-distutils-extra/template
index 9e5728ba08f..46bb0cccc31 100644
--- a/srcpkgs/python-distutils-extra/template
+++ b/srcpkgs/python-distutils-extra/template
@@ -1,7 +1,7 @@
 # Template file for 'python-distutils-extra'
 pkgname=python-distutils-extra
 version=2.39
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 pycompile_module="DistUtilsExtra"

From 4d01c6254e546e1fc68af75d69cee337f344d907 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 165/871] python-dkimpy: rebuild for Python 3.8.

---
 srcpkgs/python-dkimpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dkimpy/template b/srcpkgs/python-dkimpy/template
index 4ca5ad386b0..1da26c5de5d 100644
--- a/srcpkgs/python-dkimpy/template
+++ b/srcpkgs/python-dkimpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dkimpy'
 pkgname=python-dkimpy
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="dkimpy-${version}"
 build_style=python-module

From 1535eb2ddd07ef01c9eef60a9bbc5b30c73bd263 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 166/871] python-dnspython: rebuild for Python 3.8.

---
 srcpkgs/python-dnspython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dnspython/template b/srcpkgs/python-dnspython/template
index 15d4d7a8a73..66d237e89ee 100644
--- a/srcpkgs/python-dnspython/template
+++ b/srcpkgs/python-dnspython/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dnspython'
 pkgname=python-dnspython
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dnspython-${version}"
 build_style=python-module

From bd26df59c0c70bb6c22de396e42048f747019b9b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:37 +0200
Subject: [PATCH 167/871] python-docker: rebuild for Python 3.8.

---
 srcpkgs/python-docker/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker/template b/srcpkgs/python-docker/template
index b3f8cb2076b..83265bbb606 100644
--- a/srcpkgs/python-docker/template
+++ b/srcpkgs/python-docker/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker'
 pkgname=python-docker
 version=3.7.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-${version}"
 build_style=python-module

From 9f2aafc4294027da1bd8f1b66f47b0c9e912ca3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 168/871] python-docker-pycreds: rebuild for Python 3.8.

---
 srcpkgs/python-docker-pycreds/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docker-pycreds/template b/srcpkgs/python-docker-pycreds/template
index c478ded9de6..2224be0d21d 100644
--- a/srcpkgs/python-docker-pycreds/template
+++ b/srcpkgs/python-docker-pycreds/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docker-pycreds'
 pkgname=python-docker-pycreds
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="docker-pycreds-${version}"
 build_style=python-module

From 355fb572d94ce4c20f221a1b0b8583c55891c88e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 169/871] python-dockerpty: rebuild for Python 3.8.

---
 srcpkgs/python-dockerpty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dockerpty/template b/srcpkgs/python-dockerpty/template
index 78ba5bc3b09..4a0b3a7a33f 100644
--- a/srcpkgs/python-dockerpty/template
+++ b/srcpkgs/python-dockerpty/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dockerpty'
 pkgname=python-dockerpty
 version=0.4.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="dockerpty-${version}"
 build_style=python-module

From 249226b0c3fafa6465fb19314c73b50de7df643c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 170/871] python-docopt: rebuild for Python 3.8.

---
 srcpkgs/python-docopt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docopt/template b/srcpkgs/python-docopt/template
index 4b8661ed2e1..48e5f86c1e0 100644
--- a/srcpkgs/python-docopt/template
+++ b/srcpkgs/python-docopt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docopt'
 pkgname=python-docopt
 version=0.6.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="docopt-${version}"
 build_style=python-module

From a1e39f298e30c2d12040a89a0556d784b83905ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 171/871] python-docutils: rebuild for Python 3.8.

---
 srcpkgs/python-docutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-docutils/template b/srcpkgs/python-docutils/template
index 62f080f416a..8fd21a7450b 100644
--- a/srcpkgs/python-docutils/template
+++ b/srcpkgs/python-docutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-docutils'
 pkgname=python-docutils
 version=0.15.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="docutils-${version}"
 build_style=python-module

From 68ac724b53c2ecfc1f25e0690e8d336b36a93437 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 172/871] python-dogpile.cache: rebuild for Python 3.8.

---
 srcpkgs/python-dogpile.cache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index f6e106fb4e8..894c6f695bf 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dogpile.cache'
 pkgname=python-dogpile.cache
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dogpile.cache-${version}"
 build_style=python-module

From 7981e28aeb8ad7dc2a96ca43a26b66c1f9b078a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 173/871] python-dominate: rebuild for Python 3.8.

---
 srcpkgs/python-dominate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dominate/template b/srcpkgs/python-dominate/template
index 14ec659bac8..6d6f2caa323 100644
--- a/srcpkgs/python-dominate/template
+++ b/srcpkgs/python-dominate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dominate'
 pkgname=python-dominate
 version=2.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="dominate-${version}"
 build_style=python-module

From 1393a320cb04bf46ec31288c884daac91c90ee37 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 174/871] python-dulwich: rebuild for Python 3.8.

---
 srcpkgs/python-dulwich/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dulwich/template b/srcpkgs/python-dulwich/template
index 0bddda65069..7b8ac45011e 100644
--- a/srcpkgs/python-dulwich/template
+++ b/srcpkgs/python-dulwich/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dulwich'
 pkgname=python-dulwich
 version=0.19.13
-revision=1
+revision=2
 wrksrc="dulwich-${version}"
 build_style=python-module
 pycompile_module="dulwich"

From db94c1f14475474b581d4c4771f194249fc0af63 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:38 +0200
Subject: [PATCH 175/871] python3-easygui: rebuild for Python 3.8.

---
 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 c1ec4767ae9..a9a2f66d865 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="easygui-${version}"
 build_style=python3-module

From 8d2d9d31e93e62e066d9e69900200684b9764c27 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 176/871] python-ecdsa: rebuild for Python 3.8.

---
 srcpkgs/python-ecdsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ecdsa/template b/srcpkgs/python-ecdsa/template
index 5e0b217fa73..e6e7d58cd10 100644
--- a/srcpkgs/python-ecdsa/template
+++ b/srcpkgs/python-ecdsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ecdsa'
 pkgname=python-ecdsa
 version=0.13.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 5b08d9981e02d3d00af7216e2a1f670647cdec0c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 177/871] python-editor: rebuild for Python 3.8.

---
 srcpkgs/python-editor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-editor/template b/srcpkgs/python-editor/template
index 4b86afa6924..3594e407205 100644
--- a/srcpkgs/python-editor/template
+++ b/srcpkgs/python-editor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-editor'
 pkgname=python-editor
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="editor"

From 304747456354186778761a8d5a6de16607580337 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 178/871] python3-eliot: rebuild for Python 3.8.

---
 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 15b05dd7331..8453789b688 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="eliot-${version}"
 build_style=python3-module

From 6270d990bddaf21e5d93b6f9c2ff0446570cfc67 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 179/871] python-empy: rebuild for Python 3.8.

---
 srcpkgs/python-empy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-empy/template b/srcpkgs/python-empy/template
index 97476250cf2..4668a9cc814 100644
--- a/srcpkgs/python-empy/template
+++ b/srcpkgs/python-empy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-empy'
 pkgname=python-empy
 version=3.3.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="empy-${version}"
 build_style=python-module

From 8308973076f68b8e91781e53e8d05e6248f2211c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 180/871] python-enchant: rebuild for Python 3.8.

---
 srcpkgs/python-enchant/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enchant/template b/srcpkgs/python-enchant/template
index a443877d821..e499957b47e 100644
--- a/srcpkgs/python-enchant/template
+++ b/srcpkgs/python-enchant/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enchant'
 pkgname=python-enchant
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python-module

From f9433cc6f529c441de3392a4fec715a98f55e952 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:39 +0200
Subject: [PATCH 181/871] python-entrypoints: rebuild for Python 3.8.

---
 srcpkgs/python-entrypoints/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-entrypoints/template b/srcpkgs/python-entrypoints/template
index ebefb2d04dc..6070650f35d 100644
--- a/srcpkgs/python-entrypoints/template
+++ b/srcpkgs/python-entrypoints/template
@@ -1,7 +1,7 @@
 # Template file for 'python-entrypoints'
 pkgname=python-entrypoints
 version=0.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="entrypoints-${version}"
 build_style=python-module

From 4d255bb04facca6b1368de23eed8a1fe0bd3c254 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 182/871] python-envdir: rebuild for Python 3.8.

---
 srcpkgs/python-envdir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-envdir/template b/srcpkgs/python-envdir/template
index 622fcee6b34..b8cccad60ac 100644
--- a/srcpkgs/python-envdir/template
+++ b/srcpkgs/python-envdir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-envdir'
 pkgname=python-envdir
 version=1.0.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 8bb6c25180381753812adffea0a45f92197df850 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 183/871] python-enzyme: rebuild for Python 3.8.

---
 srcpkgs/python-enzyme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-enzyme/template b/srcpkgs/python-enzyme/template
index 637c858195b..f28f40b0319 100644
--- a/srcpkgs/python-enzyme/template
+++ b/srcpkgs/python-enzyme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-enzyme'
 pkgname=python-enzyme
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="enzyme-${version}"
 build_style=python-module

From c3d18d20e518e2ff663587fce9b28e7985856a52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 184/871] python3-esprima: rebuild for Python 3.8.

---
 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 c3a564123de..aec8930a6bf 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=1
+revision=2
 wrksrc="esprima-${version}"
 build_style=python3-module
 pycompile_module="esprima"

From dc13cc598c6cd8da2ae170fbccecda95a2897f9a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 185/871] python-evdev: rebuild for Python 3.8.

---
 srcpkgs/python-evdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-evdev/template b/srcpkgs/python-evdev/template
index 3c1a5253513..cff10211628 100644
--- a/srcpkgs/python-evdev/template
+++ b/srcpkgs/python-evdev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-evdev'
 pkgname=python-evdev
 version=1.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="evdev"
 hostmakedepends="python-setuptools python3-setuptools"

From 29371dac31501e8c706381be4078320889ef9c68 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 186/871] python-ewmh: rebuild for Python 3.8.

---
 srcpkgs/python-ewmh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ewmh/template b/srcpkgs/python-ewmh/template
index be6d04316b0..a96490fb56d 100644
--- a/srcpkgs/python-ewmh/template
+++ b/srcpkgs/python-ewmh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ewmh'
 pkgname=python-ewmh
 version=0.1.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 359c508989c182b8cec3711ec080246b22d58bfe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 187/871] python-exifread: rebuild for Python 3.8.

---
 srcpkgs/python-exifread/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-exifread/template b/srcpkgs/python-exifread/template
index 853f885fff8..834aa7730ee 100644
--- a/srcpkgs/python-exifread/template
+++ b/srcpkgs/python-exifread/template
@@ -1,7 +1,7 @@
 # Template file for 'python-exifread'
 pkgname=python-exifread
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="exif-py-${version}"
 build_style="python-module"

From 4bc3374a7edc83210aa575239a1feca26adaf4b0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 188/871] python-fasteners: rebuild for Python 3.8.

---
 srcpkgs/python-fasteners/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fasteners/template b/srcpkgs/python-fasteners/template
index 34ca4e0e9db..24d2ec0611f 100644
--- a/srcpkgs/python-fasteners/template
+++ b/srcpkgs/python-fasteners/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fasteners'
 pkgname=python-fasteners
 version=0.15
-revision=1
+revision=2
 archs=noarch
 wrksrc="fasteners-${version}"
 build_style=python-module

From 56874a17b65c11a89302a98b2c90c273fcddc013 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:40 +0200
Subject: [PATCH 189/871] python-feedgenerator: rebuild for Python 3.8.

---
 srcpkgs/python-feedgenerator/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedgenerator/template b/srcpkgs/python-feedgenerator/template
index 3e5abc4f433..bcffb6728aa 100644
--- a/srcpkgs/python-feedgenerator/template
+++ b/srcpkgs/python-feedgenerator/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedgenerator'
 pkgname=python-feedgenerator
 version=1.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="feedgenerator-${version}"
 build_style=python-module

From 5ce28ffefdd0b7395a1069f4051c7d99e2ec26a2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 190/871] python-feedparser: rebuild for Python 3.8.

---
 srcpkgs/python-feedparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-feedparser/template b/srcpkgs/python-feedparser/template
index c5c5e8783eb..94f0a58ec88 100644
--- a/srcpkgs/python-feedparser/template
+++ b/srcpkgs/python-feedparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-feedparser'
 pkgname=python-feedparser
 version=5.2.1
-revision=5
+revision=6
 archs=noarch
 wrksrc="feedparser-${version}"
 build_style=python-module

From e038ae63686ca8ec96dc0db3b55e30c1df22aad8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 191/871] python3-fido2: rebuild for Python 3.8.

---
 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 fafb4d61d56..fb737d68d20 100644
--- a/srcpkgs/python3-fido2/template
+++ b/srcpkgs/python3-fido2/template
@@ -2,7 +2,7 @@
 pkgname=python3-fido2
 _pkgname=fido2
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From 516e82df67ad1a7f40c4a2114e73c7d7252ece9e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 192/871] python3-filelock: rebuild for Python 3.8.

---
 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 8e0bc8f1070..9105ff8689d 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.0.12
-revision=1
+revision=2
 wrksrc="filelock-${version}"
 build_style=python3-module
 pycompile_module="filelock.py"

From 414ae12bb4b07dcd2b2de38272074dd147dbb7d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 193/871] python-filetype: rebuild for Python 3.8.

---
 srcpkgs/python-filetype/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-filetype/template b/srcpkgs/python-filetype/template
index 37896cff9d8..10b974794b5 100644
--- a/srcpkgs/python-filetype/template
+++ b/srcpkgs/python-filetype/template
@@ -1,7 +1,7 @@
 # Template file for 'python-filetype'
 pkgname=python-filetype
 version=1.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="filetype-${version}"
 build_style=python-module

From c6fb6681248c13c19bfa41251405446ee2742977 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 194/871] python3-fishnet: rebuild for Python 3.8.

---
 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 9dde60cbb6c..6280ae8e966 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=1
+revision=2
 archs=noarch
 wrksrc="fishnet-${version}"
 build_style=python3-module

From 6e6b174aff8b6f855fea29da280ab7cdd24f725d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 195/871] python-flaky: rebuild for Python 3.8.

---
 srcpkgs/python-flaky/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-flaky/template b/srcpkgs/python-flaky/template
index d5211c9cb60..e8e681421f7 100644
--- a/srcpkgs/python-flaky/template
+++ b/srcpkgs/python-flaky/template
@@ -1,7 +1,7 @@
 # Template file for 'python-flaky'
 pkgname=python-flaky
 version=3.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From b71be0bf553d4761ed713d7e83995e2a236bdbfe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:41 +0200
Subject: [PATCH 196/871] python3-flexmock: rebuild for Python 3.8.

---
 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 0663ed5122d..8a7c9a2894d 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.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="flexmock-${version}"
 build_style=python3-module

From 879119febeb46842b9dd88902e1c61020ccf9513 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 197/871] python3-fonttools: rebuild for Python 3.8.

---
 srcpkgs/python3-fonttools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-fonttools/template b/srcpkgs/python3-fonttools/template
index 15cf36585fb..ccd4b66c5d8 100644
--- a/srcpkgs/python3-fonttools/template
+++ b/srcpkgs/python3-fonttools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-fonttools'
 pkgname=python3-fonttools
 version=4.0.2
-revision=1
+revision=2
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 pycompile_module="fonttools"

From e3e50ac65f1db466ba238b0048c404d52f3d8beb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 198/871] python3-frozendict: rebuild for Python 3.8.

---
 srcpkgs/python3-frozendict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-frozendict/template b/srcpkgs/python3-frozendict/template
index d3b4dc91602..739000a887c 100644
--- a/srcpkgs/python3-frozendict/template
+++ b/srcpkgs/python3-frozendict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-frozendict'
 pkgname=python3-frozendict
 version=1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="frozendict-${version}"
 build_style=python3-module

From 57e8e1ba3c4a07aebbe079c57deaf044c47e5d74 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 199/871] python-fuse: rebuild for Python 3.8.

---
 srcpkgs/python-fuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-fuse/template b/srcpkgs/python-fuse/template
index 6449cc36a02..2e99e9866d3 100644
--- a/srcpkgs/python-fuse/template
+++ b/srcpkgs/python-fuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-fuse'
 pkgname=python-fuse
 version=0.3.1
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="fuseparts fuse.py"
 hostmakedepends="pkg-config python-setuptools python3-setuptools"

From 4f32997ab148c3812e20c83fbfb86a5538e20dd1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 200/871] python-future: rebuild for Python 3.8.

---
 srcpkgs/python-future/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-future/template b/srcpkgs/python-future/template
index 1844be2efbc..6cd53908823 100644
--- a/srcpkgs/python-future/template
+++ b/srcpkgs/python-future/template
@@ -1,7 +1,7 @@
 # Template file for 'python-future'
 pkgname=python-future
 version=0.17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="future-${version}"
 build_style=python-module

From 8b0daf7a8b05cb765b3a0ccdddc8b60c94148256 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 201/871] python3-geojson: rebuild for Python 3.8.

---
 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 6bcd0c3092e..90e7d5a0e60 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=1
+revision=2
 archs=noarch
 wrksrc="geojson-${version}"
 build_style=python3-module

From 196ca140d7bfc1f8eae5c697f9408a865057ff6d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 202/871] python-gevent: rebuild for Python 3.8.

---
 srcpkgs/python-gevent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gevent/template b/srcpkgs/python-gevent/template
index 2bbabee00fc..35c76146d56 100644
--- a/srcpkgs/python-gevent/template
+++ b/srcpkgs/python-gevent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gevent'
 pkgname=python-gevent
 version=1.4.0
-revision=1
+revision=2
 wrksrc="gevent-${version}"
 build_style=python-module
 pycompile_module="gevent"

From bffe8514d9cfb93e6ef99afabadbd6daebefb004 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 203/871] python3-gitchangelog: rebuild for Python 3.8.

---
 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 ed381e07d78..cc1945f2623 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=1
+revision=2
 archs=noarch
 wrksrc="gitchangelog-${version}"
 build_style=python3-module

From cedc9cfed1c57845d67cdb0619c91a094b5c80d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:42 +0200
Subject: [PATCH 204/871] python-gitdb: rebuild for Python 3.8.

---
 srcpkgs/python-gitdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitdb/template b/srcpkgs/python-gitdb/template
index d9e624b9f53..253ddaa07bd 100644
--- a/srcpkgs/python-gitdb/template
+++ b/srcpkgs/python-gitdb/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitdb'
 pkgname=python-gitdb
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="gitdb2-${version}"
 build_style=python-module

From d7ddb8bb9358798c244af7f9f71bec1fe5f6275f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 205/871] python-github3: rebuild for Python 3.8.

---
 srcpkgs/python-github3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-github3/template b/srcpkgs/python-github3/template
index 2cb71368f3d..425fe1b7362 100644
--- a/srcpkgs/python-github3/template
+++ b/srcpkgs/python-github3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-github3'
 pkgname=python-github3
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="github3.py-${version}"
 build_style=python-module

From 40d7e9e097b4d506b53c3ec27245d7429921e323 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 206/871] python-gitlab: rebuild for Python 3.8.

---
 srcpkgs/python-gitlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gitlab/template b/srcpkgs/python-gitlab/template
index 7db583b54c4..0f71b4c7153 100644
--- a/srcpkgs/python-gitlab/template
+++ b/srcpkgs/python-gitlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gitlab'
 pkgname=python-gitlab
 version=1.12.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gitlab"

From efa78a1c8e3a31f38579af8a5f05909a63469ff7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 207/871] python-gmpy2: rebuild for Python 3.8.

---
 srcpkgs/python-gmpy2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gmpy2/template b/srcpkgs/python-gmpy2/template
index c41a9f4595b..74e9b583288 100644
--- a/srcpkgs/python-gmpy2/template
+++ b/srcpkgs/python-gmpy2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gmpy2'
 pkgname=python-gmpy2
 version=2.0.8
-revision=5
+revision=6
 wrksrc="gmpy2-${version}"
 build_style=python-module
 hostmakedepends="unzip python-setuptools python3-setuptools

From 39b0460248656d5a8bc7781293784bf557f86ed9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 208/871] python-gntp: rebuild for Python 3.8.

---
 srcpkgs/python-gntp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gntp/template b/srcpkgs/python-gntp/template
index 14bd36518f8..7b3bb5a7bb7 100644
--- a/srcpkgs/python-gntp/template
+++ b/srcpkgs/python-gntp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gntp'
 pkgname=python-gntp
 version=1.0.3
-revision=4
+revision=5
 archs=noarch
 wrksrc="gntp-${version}"
 build_style=python-module

From 333947ec14d6dc761faabc09fae54b39759dc71d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 209/871] python-gnupg: rebuild for Python 3.8.

---
 srcpkgs/python-gnupg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gnupg/template b/srcpkgs/python-gnupg/template
index ae6f49c7e27..24c0943d1e4 100644
--- a/srcpkgs/python-gnupg/template
+++ b/srcpkgs/python-gnupg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gnupg'
 pkgname=python-gnupg
 version=0.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="gnupg.py"

From b23dde07418322e593ecdb90260a7950d375b368 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 210/871] python3-gobject: rebuild for Python 3.8.

---
 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 242d33ed3ac..8713ddf5334 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.32.2
-revision=1
+revision=2
 wrksrc="pygobject-${version}"
 build_style=meson
 build_helper="gir"

From 768ca023475e74eb810f483247009cfb56c12ecb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:43 +0200
Subject: [PATCH 211/871] python-gogs-client: rebuild for Python 3.8.

---
 srcpkgs/python-gogs-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gogs-client/template b/srcpkgs/python-gogs-client/template
index e8189bc8805..027135d430c 100644
--- a/srcpkgs/python-gogs-client/template
+++ b/srcpkgs/python-gogs-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gogs-client'
 pkgname=python-gogs-client
 version=1.0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="gogs_client-${version}"
 build_style=python-module

From cbf9cee47bfaca6d14dc65de4a8326b47fd3e943 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 212/871] python-google-api-python-client: rebuild for Python
 3.8.

---
 srcpkgs/python-google-api-python-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-api-python-client/template b/srcpkgs/python-google-api-python-client/template
index 273cd0722b8..69c2d4e96eb 100644
--- a/srcpkgs/python-google-api-python-client/template
+++ b/srcpkgs/python-google-api-python-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-api-python-client'
 pkgname=python-google-api-python-client
 version=1.7.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From bf4cf1ce55bd23a2d3f0afd8eee1dba85a95049c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 213/871] python-google-auth: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth/template b/srcpkgs/python-google-auth/template
index 708fe08325a..1de6800e3d2 100644
--- a/srcpkgs/python-google-auth/template
+++ b/srcpkgs/python-google-auth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth'
 pkgname=python-google-auth
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From d1b4f350364cbea7c67e25f85194fd7262f771eb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 214/871] python-google-auth-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-google-auth-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-google-auth-httplib2/template b/srcpkgs/python-google-auth-httplib2/template
index 9a7fd093ce5..9e43bc92292 100644
--- a/srcpkgs/python-google-auth-httplib2/template
+++ b/srcpkgs/python-google-auth-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-google-auth-httplib2'
 pkgname=python-google-auth-httplib2
 version=0.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From ae88b2622faa0932c182aacb210ae9a08f6bf96c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 215/871] python-gpg: rebuild for Python 3.8.

---
 srcpkgs/python-gpg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-gpg/template b/srcpkgs/python-gpg/template
index 4ef85846b42..a17a0324af8 100644
--- a/srcpkgs/python-gpg/template
+++ b/srcpkgs/python-gpg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-gpg'
 pkgname=python-gpg
 version=1.10.0
-revision=3
+revision=4
 wrksrc="gpg-${version}"
 build_style=python-module
 hostmakedepends="swig gpgme-devel python-devel python3-devel"

From 4e9f66ef316ca9678ae34385bcef4e4879f408a6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 216/871] python-grako: rebuild for Python 3.8.

---
 srcpkgs/python-grako/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-grako/template b/srcpkgs/python-grako/template
index cc02973b31e..2b401732735 100644
--- a/srcpkgs/python-grako/template
+++ b/srcpkgs/python-grako/template
@@ -1,7 +1,7 @@
 # Template file for 'python-grako'
 pkgname=python-grako
 version=3.99.9
-revision=3
+revision=4
 wrksrc="neogeny-${pkgname/python-/}-275d3c4fe4ac"
 build_style=python-module
 pycompile_module="grako"

From 2b268155d5973f77515094730f163e05b9093126 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 217/871] python-graphviz: rebuild for Python 3.8.

---
 srcpkgs/python-graphviz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-graphviz/template b/srcpkgs/python-graphviz/template
index 521f2e81213..e3d487a2db7 100644
--- a/srcpkgs/python-graphviz/template
+++ b/srcpkgs/python-graphviz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-graphviz'
 pkgname=python-graphviz
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From ddc73cd8d32114764d8a2f683660e6bb9a21e426 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 218/871] python-greenlet: rebuild for Python 3.8.

---
 srcpkgs/python-greenlet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-greenlet/template b/srcpkgs/python-greenlet/template
index d1e63ac7adb..b540e9a286b 100644
--- a/srcpkgs/python-greenlet/template
+++ b/srcpkgs/python-greenlet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-greenlet'
 pkgname=python-greenlet
 version=0.4.15
-revision=2
+revision=3
 wrksrc="greenlet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 79985b98e9f11f9acf314b685611818549bd8dac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:44 +0200
Subject: [PATCH 219/871] python-guessit: rebuild for Python 3.8.

---
 srcpkgs/python-guessit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-guessit/template b/srcpkgs/python-guessit/template
index 5029048a041..a962f14522f 100644
--- a/srcpkgs/python-guessit/template
+++ b/srcpkgs/python-guessit/template
@@ -1,7 +1,7 @@
 # Template file for 'python-guessit'
 pkgname=python-guessit
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="guessit-${version}"
 build_style=python-module

From 4eb88395f4089fbc33eb9ed2923251ed12838250 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 220/871] python-h11: rebuild for Python 3.8.

---
 srcpkgs/python-h11/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-h11/template b/srcpkgs/python-h11/template
index cd6bdbc8497..7f2d2c5fa8a 100644
--- a/srcpkgs/python-h11/template
+++ b/srcpkgs/python-h11/template
@@ -1,7 +1,7 @@
 # Template file for 'python-h11'
 pkgname=python-h11
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=h11-${version}
 build_style=python-module

From fc4153bb415a8b82433ed152e45f5431c091ba3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 221/871] python-habanero: rebuild for Python 3.8.

---
 srcpkgs/python-habanero/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-habanero/template b/srcpkgs/python-habanero/template
index 86d66befc3d..a914f21ecb7 100644
--- a/srcpkgs/python-habanero/template
+++ b/srcpkgs/python-habanero/template
@@ -1,7 +1,7 @@
 # Template file for 'python-habanero'
 pkgname=python-habanero
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="habanero-${version}"
 build_style=python-module

From c587ff2f0476b619613f04a047843ed5a3725623 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 222/871] python3-hawkauthlib: rebuild for Python 3.8.

---
 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 fd7f1405790..1456fa7d814 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=2
+revision=3
 archs=noarch
 wrksrc="hawkauthlib-${version}"
 build_style=python3-module

From 68f7c8285c9aa820ef4e637098c7b09a08df1679 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 223/871] python-hiredis: rebuild for Python 3.8.

---
 srcpkgs/python-hiredis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hiredis/template b/srcpkgs/python-hiredis/template
index 23694ae92d7..82a97d5eaf3 100644
--- a/srcpkgs/python-hiredis/template
+++ b/srcpkgs/python-hiredis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hiredis'
 pkgname=python-hiredis
 version=0.2.0
-revision=4
+revision=5
 wrksrc="hiredis-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"

From ac392ae82dee5e93930c01647e8962a4c7e0e1fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 224/871] python3-hkdf: rebuild for Python 3.8.

---
 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 fabc91ee974..0faaf05b5fe 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=1
+revision=2
 archs=noarch
 wrksrc="hkdf-${version}"
 build_style=python3-module

From 84aed29b05413d313de9c87a1646149842f28eeb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 225/871] python-hoedown: rebuild for Python 3.8.

---
 srcpkgs/python-hoedown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hoedown/template b/srcpkgs/python-hoedown/template
index a964fbbb709..4b82aba9afc 100644
--- a/srcpkgs/python-hoedown/template
+++ b/srcpkgs/python-hoedown/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hoedown'
 pkgname=python-hoedown
 version=0.3.0
-revision=2
+revision=3
 wrksrc="hoedown-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 9f01d178f55e1a49e30b92eba204f567c568736a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 226/871] python-hpack: rebuild for Python 3.8.

---
 srcpkgs/python-hpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hpack/template b/srcpkgs/python-hpack/template
index c69e91daa0e..ffbac313103 100644
--- a/srcpkgs/python-hpack/template
+++ b/srcpkgs/python-hpack/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hpack'
 pkgname=python-hpack
 version=3.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hpack-${version}
 build_style=python-module

From be5a30e3eb4ec353ba43b1b70dd6764d034ede3a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:45 +0200
Subject: [PATCH 227/871] python3-html2text: rebuild for Python 3.8.

---
 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 006f2a127ad..c74e236a053 100644
--- a/srcpkgs/python3-html2text/template
+++ b/srcpkgs/python3-html2text/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-html2text'
 pkgname=python3-html2text
 version=2019.9.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module

From a9bf5bbf8688bacb83314afae772b2633917ddf3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 228/871] python-html5-parser: rebuild for Python 3.8.

---
 srcpkgs/python-html5-parser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5-parser/template b/srcpkgs/python-html5-parser/template
index 130c5037e57..41bbd0ea157 100644
--- a/srcpkgs/python-html5-parser/template
+++ b/srcpkgs/python-html5-parser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5-parser'
 pkgname=python-html5-parser
 version=0.4.8
-revision=1
+revision=2
 wrksrc="html5-parser-${version}"
 build_style=python-module
 pycompile_module="html5_parser"

From 9178d7a7d25413beb1170dd851665f4e73c52ec7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 229/871] python-html5lib: rebuild for Python 3.8.

---
 srcpkgs/python-html5lib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-html5lib/template b/srcpkgs/python-html5lib/template
index 81e683f7bcf..2565de64fd2 100644
--- a/srcpkgs/python-html5lib/template
+++ b/srcpkgs/python-html5lib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-html5lib'
 pkgname=python-html5lib
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="html5lib-${version}"
 build_style=python-module

From f44ef4b0813fdb73e640d7673779dd6ff982e8be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 230/871] python-httmock: rebuild for Python 3.8.

---
 srcpkgs/python-httmock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httmock/template b/srcpkgs/python-httmock/template
index 61a60126936..e798b4fc1b3 100644
--- a/srcpkgs/python-httmock/template
+++ b/srcpkgs/python-httmock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httmock'
 pkgname=python-httmock
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="httmock-${version}"
 build_style=python-module

From 7b1f9d75c4582cc26b1130c68a4293a087032eb6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 231/871] python-httplib2: rebuild for Python 3.8.

---
 srcpkgs/python-httplib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-httplib2/template b/srcpkgs/python-httplib2/template
index 4d9e5ba3822..9cf4c293d87 100644
--- a/srcpkgs/python-httplib2/template
+++ b/srcpkgs/python-httplib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-httplib2'
 pkgname=python-httplib2
 version=0.14.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="httplib2-${version}"
 build_style=python-module

From b90fa809b79e8afa673c28b640d444422626a6ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 232/871] python3-humanize: rebuild for Python 3.8.

---
 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 c82c20fb0f2..d1011fb92e9 100644
--- a/srcpkgs/python3-humanize/template
+++ b/srcpkgs/python3-humanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-humanize'
 pkgname=python3-humanize
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="humanize-${version}"
 build_style=python3-module

From ce900e0ce6ef7458e1b23df202b1c18ac786e5d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:46 +0200
Subject: [PATCH 233/871] python-hyperframe: rebuild for Python 3.8.

---
 srcpkgs/python-hyperframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hyperframe/template b/srcpkgs/python-hyperframe/template
index e4cea346f7e..6b544c2061c 100644
--- a/srcpkgs/python-hyperframe/template
+++ b/srcpkgs/python-hyperframe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperframe'
 pkgname=python-hyperframe
 version=5.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=hyperframe-${version}
 build_style=python-module

From f43f064582739943eb17a3dfa4e1c54db4e1aa74 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 234/871] python-hyperlink: rebuild for Python 3.8.

---
 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 1cc7aa0670a..945bf72ee59 100644
--- a/srcpkgs/python-hyperlink/template
+++ b/srcpkgs/python-hyperlink/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hyperlink'
 pkgname=python-hyperlink
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="hyperlink-${version}"
 build_style=python-module

From d293de19a28519634618c1d45ab868d431d188cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 235/871] python-hypothesis: rebuild for Python 3.8.

---
 srcpkgs/python-hypothesis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-hypothesis/template b/srcpkgs/python-hypothesis/template
index f3eb931e410..de55593fc02 100644
--- a/srcpkgs/python-hypothesis/template
+++ b/srcpkgs/python-hypothesis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-hypothesis'
 pkgname=python-hypothesis
 version=4.38.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="hypothesis-hypothesis-python-${version}"
 build_wrksrc=hypothesis-python

From 9457ed6cd143846285c7f7e0c384f465e7b061cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 236/871] python-icalendar: rebuild for Python 3.8.

---
 srcpkgs/python-icalendar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-icalendar/template b/srcpkgs/python-icalendar/template
index b2129648ea6..be45f2d608d 100644
--- a/srcpkgs/python-icalendar/template
+++ b/srcpkgs/python-icalendar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-icalendar'
 pkgname=python-icalendar
 version=4.0.3
-revision=1
+revision=2
 wrksrc="icalendar-${version}"
 archs=noarch
 build_style=python-module

From bfb1bfeb858f50456b412efb7bf549c46fe81b76 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 237/871] icdiff: rebuild for Python 3.8.

---
 srcpkgs/icdiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template
index 31cfc3e2354..396448b86f4 100644
--- a/srcpkgs/icdiff/template
+++ b/srcpkgs/icdiff/template
@@ -1,7 +1,7 @@
 # Template file for 'icdiff'
 pkgname=icdiff
 version=1.9.5
-revision=1
+revision=2
 wrksrc="${pkgname}-release-${version}"
 archs=noarch
 build_style=python-module

From 539759ecb6f8b2e9d07d4f60220633697d66f2e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 238/871] python-idna: rebuild for Python 3.8.

---
 srcpkgs/python-idna/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-idna/template b/srcpkgs/python-idna/template
index 4c6baefd41b..446a04da7d7 100644
--- a/srcpkgs/python-idna/template
+++ b/srcpkgs/python-idna/template
@@ -1,7 +1,7 @@
 # Template file for 'python-idna'
 pkgname=python-idna
 version=2.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-${version}"
 build_style=python-module

From d0188f425389f9b52da9c7b210efc54077269f22 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 239/871] python3-idna-ssl: rebuild for Python 3.8.

---
 srcpkgs/python3-idna-ssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-idna-ssl/template b/srcpkgs/python3-idna-ssl/template
index df953f4d0d9..0608fb7278c 100644
--- a/srcpkgs/python3-idna-ssl/template
+++ b/srcpkgs/python3-idna-ssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-idna-ssl'
 pkgname=python3-idna-ssl
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="idna-ssl-${version}"
 build_style=python3-module

From 49f723c72fd2af167b15ec815f0c99f603a9199e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 240/871] python3-ifaddr: rebuild for Python 3.8.

---
 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 37bc2bbaf73..683d76662a3 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="ifaddr-${version}"
 build_style=python3-module

From 7d0c34882dad3359d964e22f2efa3697e3660af0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:47 +0200
Subject: [PATCH 241/871] python-imagesize: rebuild for Python 3.8.

---
 srcpkgs/python-imagesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-imagesize/template b/srcpkgs/python-imagesize/template
index ee231eb9f24..f64c86812b5 100644
--- a/srcpkgs/python-imagesize/template
+++ b/srcpkgs/python-imagesize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-imagesize'
 pkgname=python-imagesize
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="imagesize-${version}"
 build_style=python-module

From 2dd67d26a720347b9429a960e96b3ca4af806af7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 242/871] python3-importlib_metadata: rebuild for Python 3.8.

---
 srcpkgs/python3-importlib_metadata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-importlib_metadata/template b/srcpkgs/python3-importlib_metadata/template
index 9acbe968e10..f88e9d9b780 100644
--- a/srcpkgs/python3-importlib_metadata/template
+++ b/srcpkgs/python3-importlib_metadata/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-importlib_metadata'
 pkgname=python3-importlib_metadata
 version=0.23
-revision=1
+revision=2
 archs=noarch
 wrksrc="importlib_metadata-${version}"
 build_style=python3-module

From c3532731d9edf18841786017c9e8193f1ed36cac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 243/871] python-incremental: rebuild for Python 3.8.

---
 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 a1c07042365..70477e26866 100644
--- a/srcpkgs/python-incremental/template
+++ b/srcpkgs/python-incremental/template
@@ -1,7 +1,7 @@
 # Template file for 'python-incremental'
 pkgname=python-incremental
 version=17.5.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="incremental-${version}"
 build_style=python-module

From 842d58d147d37684a4ee6c2a61f33a2b98b615dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 244/871] python-inotify: rebuild for Python 3.8.

---
 srcpkgs/python-inotify/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-inotify/template b/srcpkgs/python-inotify/template
index f8e26bcc415..64e48fd9330 100644
--- a/srcpkgs/python-inotify/template
+++ b/srcpkgs/python-inotify/template
@@ -1,7 +1,7 @@
 # Template file for 'python-inotify'
 pkgname=python-inotify
 version=0.9.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="pyinotify-${version}"
 build_style=python-module

From 0b6d38100013922f1256173d4ad0054995a04e72 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 245/871] python-iptools: rebuild for Python 3.8.

---
 srcpkgs/python-iptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iptools/template b/srcpkgs/python-iptools/template
index 599a85ccdba..3c53013fb9d 100644
--- a/srcpkgs/python-iptools/template
+++ b/srcpkgs/python-iptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iptools'
 pkgname=python-iptools
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 060ee3851162cbb1246b08952501ff2444f73cad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 246/871] python3-ipython: rebuild for Python 3.8.

---
 srcpkgs/python3-ipython/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template
index 63242f382db..2c08bad1e41 100644
--- a/srcpkgs/python3-ipython/template
+++ b/srcpkgs/python3-ipython/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-ipython'
 pkgname=python3-ipython
 version=7.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipython-${version}"
 build_style=python3-module

From 0e4ef18cdd6ab14e99096302a71e6aa19cbf6a74 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 247/871] python-ipython_genutils: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_genutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_genutils/template b/srcpkgs/python-ipython_genutils/template
index 9af9604ca00..d46a3b0b716 100644
--- a/srcpkgs/python-ipython_genutils/template
+++ b/srcpkgs/python-ipython_genutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_genutils'
 pkgname=python-ipython_genutils
 version=0.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="ipython_genutils-${version}"
 build_style=python-module

From a1cc9258fc7117898ac38c29e344dce9d24ac2c9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:48 +0200
Subject: [PATCH 248/871] python-ipython_ipykernel: rebuild for Python 3.8.

---
 srcpkgs/python-ipython_ipykernel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ipython_ipykernel/template b/srcpkgs/python-ipython_ipykernel/template
index 5ddc333798a..ca17b58c006 100644
--- a/srcpkgs/python-ipython_ipykernel/template
+++ b/srcpkgs/python-ipython_ipykernel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ipython_ipykernel'
 pkgname=python-ipython_ipykernel
 version=4.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ipykernel-${version}"
 build_style=python-module

From 8a025e2a2a6aa9128b0a8d1a2b7117d9c79bd21f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 249/871] python3-irc: rebuild for Python 3.8.

---
 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 eea3a629128..714c11dc943 100644
--- a/srcpkgs/python3-irc/template
+++ b/srcpkgs/python3-irc/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-irc'
 pkgname=python3-irc
 version=17.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="irc-${version}"
 build_style=python3-module

From d1bd80344f3eb6038d9d3afb4f16e184f1b2b83e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 250/871] python-isbnlib: rebuild for Python 3.8.

---
 srcpkgs/python-isbnlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isbnlib/template b/srcpkgs/python-isbnlib/template
index 3e2f66c6b66..1cc46a060d6 100644
--- a/srcpkgs/python-isbnlib/template
+++ b/srcpkgs/python-isbnlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isbnlib'
 pkgname=python-isbnlib
 version=3.9.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="isbnlib-${version}"
 build_style=python-module

From 0e5f429f3627fa74a8564edbb1a4e3603c0318a8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 251/871] python-iso-8601: rebuild for Python 3.8.

---
 srcpkgs/python-iso-8601/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iso-8601/template b/srcpkgs/python-iso-8601/template
index a483e55b0bd..a841866d439 100644
--- a/srcpkgs/python-iso-8601/template
+++ b/srcpkgs/python-iso-8601/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iso-8601'
 pkgname=python-iso-8601
 version=0.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="iso-8601-${version}"
 build_style=python-module

From 08522b09c32e3592c33860d1674329f6beb99d7c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 252/871] python-isodate: rebuild for Python 3.8.

---
 srcpkgs/python-isodate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isodate/template b/srcpkgs/python-isodate/template
index b2a7eb46591..74e4e813e64 100644
--- a/srcpkgs/python-isodate/template
+++ b/srcpkgs/python-isodate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isodate'
 pkgname=python-isodate
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="isodate-${version}"
 build_style=python-module

From 7bca354303bfc975c852c3fa15052475f6305c3e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 253/871] python-isort: rebuild for Python 3.8.

---
 srcpkgs/python-isort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-isort/template b/srcpkgs/python-isort/template
index df7fcfbf2d2..cd8e43b69ea 100644
--- a/srcpkgs/python-isort/template
+++ b/srcpkgs/python-isort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-isort'
 pkgname=python-isort
 version=4.3.21
-revision=1
+revision=2
 archs=noarch
 wrksrc="isort-${version}"
 build_style=python-module

From be7f72433d66188508cab321ede5d3ab37e16725 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 254/871] python-itsdangerous: rebuild for Python 3.8.

---
 srcpkgs/python-itsdangerous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-itsdangerous/template b/srcpkgs/python-itsdangerous/template
index d1d9234df88..6e6fe5dcb2b 100644
--- a/srcpkgs/python-itsdangerous/template
+++ b/srcpkgs/python-itsdangerous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-itsdangerous'
 pkgname=python-itsdangerous
 version=0.24
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 386317f944729f785780cd6dec6ebf3cd98c2c72 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 255/871] python-iwlib: rebuild for Python 3.8.

---
 srcpkgs/python-iwlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-iwlib/template b/srcpkgs/python-iwlib/template
index 2c58d4c8d29..2f4149b4e92 100644
--- a/srcpkgs/python-iwlib/template
+++ b/srcpkgs/python-iwlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-iwlib'
 pkgname=python-iwlib
 version=1.6.2
-revision=1
+revision=2
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="iwlib"

From c8d49b27400af885c7b30dd38e87a2ecfe5fe2af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:49 +0200
Subject: [PATCH 256/871] python-jedi: rebuild for Python 3.8.

---
 srcpkgs/python-jedi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jedi/template b/srcpkgs/python-jedi/template
index 136e6adbea4..a994f0e2861 100644
--- a/srcpkgs/python-jedi/template
+++ b/srcpkgs/python-jedi/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jedi'
 pkgname=python-jedi
 version=0.15.1
-revision=1
+revision=2
 archs=noarch
 _parsover=0.5.0
 wrksrc="jedi-${version}"

From 50949546750f9434aed13479bf05ed1bf407f5b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 257/871] python3-jeepney: rebuild for Python 3.8.

---
 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 2ae308a6fc6..9c5c007aa17 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.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="jeepney-${version}"
 build_style=python3-module

From 8c29c5b6c04bb719eae61aad4f411fb882d63f0b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 258/871] python3-jellyfish: rebuild for Python 3.8.

---
 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 dec74539e3f..5d0a614c397 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.7.2
-revision=1
+revision=2
 wrksrc="jellyfish-${version}"
 build_style=python3-module
 pycompile_module="jellyfish"

From ab255c705dd85f7292cd2e6f294689f9c11b7b9b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 259/871] python-jmespath: rebuild for Python 3.8.

---
 srcpkgs/python-jmespath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jmespath/template b/srcpkgs/python-jmespath/template
index 47508a3a0c2..220f1a33c07 100644
--- a/srcpkgs/python-jmespath/template
+++ b/srcpkgs/python-jmespath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jmespath'
 pkgname=python-jmespath
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jmespath.py-${version}"
 build_style=python-module

From f5362a59488ed80b1e995dac27652d11e70f359b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 260/871] python3-josepy: rebuild for Python 3.8.

---
 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 6d6e4547d38..903bd7028ed 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="josepy-${version}"
 build_style=python3-module

From 63639680c758dde53bbd58f8dbcd6b926b12e6a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 261/871] python-jsonpointer: rebuild for Python 3.8.

---
 srcpkgs/python-jsonpointer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonpointer/template b/srcpkgs/python-jsonpointer/template
index ed865fbfcba..fd103d123aa 100644
--- a/srcpkgs/python-jsonpointer/template
+++ b/srcpkgs/python-jsonpointer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonpointer'
 pkgname=python-jsonpointer
 version=2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonpointer-${version}"
 build_style=python-module

From ae015242a72c13c3680f094f23c981cc04a3e177 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 262/871] python-jsonrpclib: rebuild for Python 3.8.

---
 srcpkgs/python-jsonrpclib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonrpclib/template b/srcpkgs/python-jsonrpclib/template
index 7253607fe57..a245168a824 100644
--- a/srcpkgs/python-jsonrpclib/template
+++ b/srcpkgs/python-jsonrpclib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jsonrpclib'
 pkgname=python-jsonrpclib
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jsonrpclib-pelix-${version}"
 build_style=python-module

From b756975c3835b1eec68dbb97d6138d2007909994 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:50 +0200
Subject: [PATCH 263/871] python-jsonschema: rebuild for Python 3.8.

---
 srcpkgs/python-jsonschema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jsonschema/template b/srcpkgs/python-jsonschema/template
index 63c30ce6863..326b5609d36 100644
--- a/srcpkgs/python-jsonschema/template
+++ b/srcpkgs/python-jsonschema/template
@@ -2,7 +2,7 @@
 pkgname=python-jsonschema
 reverts="3.0.2_1"
 version=2.6.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="jsonschema-${version}"
 build_style=python-module

From 6c76c24b2f5b87cc145ea8d0139daac572a54c82 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 264/871] python-jupyter_client: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_client/template b/srcpkgs/python-jupyter_client/template
index ab5cd0c5b3c..6365dd9e175 100644
--- a/srcpkgs/python-jupyter_client/template
+++ b/srcpkgs/python-jupyter_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_client'
 pkgname=python-jupyter_client
 version=5.2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_client-${version}"
 build_style=python-module

From 0bc715cad5eaca587f2654b082f3a42c6d402ea6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 265/871] python3-jupyter_console: rebuild for Python 3.8.

---
 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 25b2eda4c2f..3837e5b3bbf 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_console-${version}"
 build_style=python3-module

From 00617c70a92ba68ea07a3ff0959b7381b798eac5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 266/871] python-jupyter_core: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_core/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_core/template b/srcpkgs/python-jupyter_core/template
index fcce4e0fe0b..f1629208e86 100644
--- a/srcpkgs/python-jupyter_core/template
+++ b/srcpkgs/python-jupyter_core/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_core'
 pkgname=python-jupyter_core
 version=4.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="jupyter_core-${version}"
 build_style=python-module

From fcde9deb9e9e8ee2e1bb0dfb169b53e041965bb3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 267/871] python-jupyter_ipywidgets: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_ipywidgets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_ipywidgets/template b/srcpkgs/python-jupyter_ipywidgets/template
index 3d511a25152..44570cf390a 100644
--- a/srcpkgs/python-jupyter_ipywidgets/template
+++ b/srcpkgs/python-jupyter_ipywidgets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_ipywidgets'
 pkgname=python-jupyter_ipywidgets
 version=7.4.2
-revision=1
+revision=2
 archs=noarch
 _widgetsnbextver=3.4.0
 wrksrc="ipywidgets-${version}"

From 401c6729e7c631c0da5c341a15efe24b4a01b760 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 268/871] python-jupyter_nbconvert: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbconvert/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbconvert/template b/srcpkgs/python-jupyter_nbconvert/template
index 57ac5cce23f..e6cdad7d21c 100644
--- a/srcpkgs/python-jupyter_nbconvert/template
+++ b/srcpkgs/python-jupyter_nbconvert/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbconvert'
 pkgname=python-jupyter_nbconvert
 version=5.4.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="nbconvert-${version}"
 build_style=python-module

From 503f074cd445816bac386de1f10e1e041934b0f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 269/871] python-jupyter_nbformat: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_nbformat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_nbformat/template b/srcpkgs/python-jupyter_nbformat/template
index 11098fd3f90..e2addc8866f 100644
--- a/srcpkgs/python-jupyter_nbformat/template
+++ b/srcpkgs/python-jupyter_nbformat/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_nbformat'
 pkgname=python-jupyter_nbformat
 version=4.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="nbformat-${version}"
 build_style=python-module

From 5a9eb3ff8ba9c5620f7299ad78aa375654922f5b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 270/871] python-jupyter_notebook: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_notebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_notebook/template b/srcpkgs/python-jupyter_notebook/template
index c3f478c1fb4..4f6de0f642d 100644
--- a/srcpkgs/python-jupyter_notebook/template
+++ b/srcpkgs/python-jupyter_notebook/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_notebook'
 pkgname=python-jupyter_notebook
 version=5.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="notebook-${version}"
 build_style=python-module

From 2ac4f7767c156267a34db488af8ff456e31c35ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:51 +0200
Subject: [PATCH 271/871] python-jupyter_qtconsole: rebuild for Python 3.8.

---
 srcpkgs/python-jupyter_qtconsole/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_qtconsole/template b/srcpkgs/python-jupyter_qtconsole/template
index f8f85534bbd..ea7f89a62af 100644
--- a/srcpkgs/python-jupyter_qtconsole/template
+++ b/srcpkgs/python-jupyter_qtconsole/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_qtconsole'
 pkgname=python-jupyter_qtconsole
 version=4.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="qtconsole-${version}"
 build_style=python-module

From b1f5130d8fd05dd27b4eec7e4ee048d7b166b50b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 272/871] python-jupyter_widgetsnbextension: rebuild for Python
 3.8.

---
 srcpkgs/python-jupyter_widgetsnbextension/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-jupyter_widgetsnbextension/template b/srcpkgs/python-jupyter_widgetsnbextension/template
index dacd88ccb4f..05e9c0d00a3 100644
--- a/srcpkgs/python-jupyter_widgetsnbextension/template
+++ b/srcpkgs/python-jupyter_widgetsnbextension/template
@@ -1,7 +1,7 @@
 # Template file for 'python-jupyter_widgetsnbextension'
 pkgname=python-jupyter_widgetsnbextension
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="widgetsnbextension-${version}"
 build_style=python-module

From 746ab330409bb7b66fe9c827840de8373df2128b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 273/871] python-kaptan: rebuild for Python 3.8.

---
 srcpkgs/python-kaptan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kaptan/template b/srcpkgs/python-kaptan/template
index 649eeec8568..6668b240008 100644
--- a/srcpkgs/python-kaptan/template
+++ b/srcpkgs/python-kaptan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kaptan'
 pkgname=python-kaptan
 version=0.5.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="kaptan-${version}"
 build_style=python-module

From 93e279442ffa68359045d51bb415e8cd7f090789 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 274/871] python-keepalive: rebuild for Python 3.8.

---
 srcpkgs/python-keepalive/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keepalive/template b/srcpkgs/python-keepalive/template
index deb95a07236..50e1d7e6e78 100644
--- a/srcpkgs/python-keepalive/template
+++ b/srcpkgs/python-keepalive/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keepalive'
 pkgname=python-keepalive
 version=0.5
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 6e252b4ac526cb4f13f15ceffdf1e436c7bfdbe1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 275/871] python-keyring: rebuild for Python 3.8.

---
 srcpkgs/python-keyring/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyring/template b/srcpkgs/python-keyring/template
index df1c21ee1be..2a87160b04d 100644
--- a/srcpkgs/python-keyring/template
+++ b/srcpkgs/python-keyring/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyring'
 pkgname=python-keyring
 version=18.0.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyring-${version}"
 build_style=python-module

From ae5096d955ede8ee2da5e9d2fd9bd51d1e37ead0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 276/871] python3-keyrings-alt: rebuild for Python 3.8.

---
 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 d5820535e54..ed09cfac4a7 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=3.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="keyrings.alt-${version}"
 build_style=python3-module

From 7c7a25135200326d3a7d61ae9a377f78bfca2fe1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 277/871] python-keyutils: rebuild for Python 3.8.

---
 srcpkgs/python-keyutils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-keyutils/template b/srcpkgs/python-keyutils/template
index d56ada0e30e..a72819e963a 100644
--- a/srcpkgs/python-keyutils/template
+++ b/srcpkgs/python-keyutils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-keyutils'
 pkgname=python-keyutils
 version=0.6
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="keyutils"
 hostmakedepends="python-setuptools python3-setuptools"

From 3a8ccb102954761ab7c9c64f65514ff027985b1c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:52 +0200
Subject: [PATCH 278/871] python-kitchen: rebuild for Python 3.8.

---
 srcpkgs/python-kitchen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kitchen/template b/srcpkgs/python-kitchen/template
index 2bbd68c13c9..68a46986de9 100644
--- a/srcpkgs/python-kitchen/template
+++ b/srcpkgs/python-kitchen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kitchen'
 pkgname=python-kitchen
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="kitchen-${version}"
 build_style=python-module

From 542cbe613cd828ffba24fce8c945dc3a3a0e315d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 279/871] python-kiwisolver: rebuild for Python 3.8.

---
 srcpkgs/python-kiwisolver/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-kiwisolver/template b/srcpkgs/python-kiwisolver/template
index 072bd5af038..67f0805aa51 100644
--- a/srcpkgs/python-kiwisolver/template
+++ b/srcpkgs/python-kiwisolver/template
@@ -1,7 +1,7 @@
 # Template file for 'python-kiwisolver'
 pkgname=python-kiwisolver
 version=1.0.1
-revision=2
+revision=3
 wrksrc="kiwisolver-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 78b76a28b464a4155b400ba0862f7ccf1dec79bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 280/871] python-lazy-object-proxy: rebuild for Python 3.8.

---
 srcpkgs/python-lazy-object-proxy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lazy-object-proxy/template b/srcpkgs/python-lazy-object-proxy/template
index 07efb7b4777..ab2c6dce05c 100644
--- a/srcpkgs/python-lazy-object-proxy/template
+++ b/srcpkgs/python-lazy-object-proxy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lazy-object-proxy'
 pkgname=python-lazy-object-proxy
 version=1.3.1
-revision=3
+revision=4
 wrksrc="lazy-object-proxy-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 9386c38cce66a117d287f22702ae9372b5271d7e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 281/871] python-ldap: rebuild for Python 3.8.

---
 srcpkgs/python-ldap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap/template b/srcpkgs/python-ldap/template
index 7770baa8774..e3efc2fc6b3 100644
--- a/srcpkgs/python-ldap/template
+++ b/srcpkgs/python-ldap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap'
 pkgname=python-ldap
 version=3.2.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="ldap ldapurl.py ldif.py slapdtest"
 hostmakedepends="python-setuptools python3-setuptools"

From 5c11439473a385dbaab4bed0a0604501751c5844 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 282/871] python-ldap3: rebuild for Python 3.8.

---
 srcpkgs/python-ldap3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ldap3/template b/srcpkgs/python-ldap3/template
index 0a9c1ebca03..39fcc264979 100644
--- a/srcpkgs/python-ldap3/template
+++ b/srcpkgs/python-ldap3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ldap3'
 pkgname=python-ldap3
 version=2.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ldap3-${version}"
 build_style=python-module

From 7832935d74a588215a405d48283b841e6e9f1f4f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 283/871] python3-libevdev: rebuild for Python 3.8.

---
 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 0a79893726c..f0295cdee9b 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.8
-revision=1
+revision=2
 _githash=1827bebcf789adee8492cbfcc7cf8d56059a42a4
 wrksrc="python-libevdev-${version}-${_githash}"
 build_style=python3-module

From c6ff1cf85e9c2b85ac950634a82e50b8237c993d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 284/871] libsmbios: rebuild for Python 3.8.

---
 srcpkgs/libsmbios/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsmbios/template b/srcpkgs/libsmbios/template
index 31d8ffda65f..161cb79deb9 100644
--- a/srcpkgs/libsmbios/template
+++ b/srcpkgs/libsmbios/template
@@ -1,7 +1,7 @@
 # Template file for 'libsmbios'
 pkgname=libsmbios
 version=2.4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--sbindir=/usr/bin --disable-static"
 hostmakedepends="automake doxygen gettext-devel help2man libtool pkg-config"

From 5d413bf7a8ee106f594a89562466c397cb524275 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 285/871] python-libtmux: rebuild for Python 3.8.

---
 srcpkgs/python-libtmux/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-libtmux/template b/srcpkgs/python-libtmux/template
index 36fa7ca7ffd..20f43af5f7d 100644
--- a/srcpkgs/python-libtmux/template
+++ b/srcpkgs/python-libtmux/template
@@ -1,7 +1,7 @@
 # Template file for 'python-libtmux'
 pkgname=python-libtmux
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="libtmux-${version}"
 build_style=python-module

From bde34a8b323b0ada46928deb3688040a1b3a4c3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:53 +0200
Subject: [PATCH 286/871] python-llfuse: rebuild for Python 3.8.

---
 srcpkgs/python-llfuse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-llfuse/template b/srcpkgs/python-llfuse/template
index 203c5e2fd84..b453c67e91d 100644
--- a/srcpkgs/python-llfuse/template
+++ b/srcpkgs/python-llfuse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-llfuse'
 pkgname=python-llfuse
 version=1.3.6
-revision=1
+revision=2
 wrksrc="llfuse-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pkg-config"

From 1919fa0666ae821366dd42799b1dd83b5c8a9956 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 287/871] python-lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lockfile/template b/srcpkgs/python-lockfile/template
index 4c4612ed144..778cecba7e9 100644
--- a/srcpkgs/python-lockfile/template
+++ b/srcpkgs/python-lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lockfile'
 pkgname=python-lockfile
 version=0.12.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="lockfile-${version}"
 build_style=python-module

From fb39f2d8f155b5cd8b1be9629571016ab908ab28 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 288/871] python-logfury: rebuild for Python 3.8.

---
 srcpkgs/python-logfury/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-logfury/template b/srcpkgs/python-logfury/template
index 4b1c435e34a..1b52d2d7fdf 100644
--- a/srcpkgs/python-logfury/template
+++ b/srcpkgs/python-logfury/template
@@ -1,7 +1,7 @@
 # Template file for 'python-logfury'
 pkgname=python-logfury
 version=0.1.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="logfury-${version}"
 build_style=python-module

From 72ed394f16cd15f9f54f40baf802130d8514dce5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 289/871] python-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lxml/template b/srcpkgs/python-lxml/template
index c3aeabfbf1b..1a6a3ac9113 100644
--- a/srcpkgs/python-lxml/template
+++ b/srcpkgs/python-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lxml'
 pkgname=python-lxml
 version=4.4.1
-revision=1
+revision=2
 wrksrc="lxml-lxml-${version}"
 build_style=python-module
 pycompile_module="lxml"

From 9d1e186fda335aee1599343393fbe6e5bd635db4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 290/871] python-lz4: rebuild for Python 3.8.

---
 srcpkgs/python-lz4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-lz4/template b/srcpkgs/python-lz4/template
index dab8e8ed542..76a2e800e38 100644
--- a/srcpkgs/python-lz4/template
+++ b/srcpkgs/python-lz4/template
@@ -1,7 +1,7 @@
 # Template file for 'python-lz4'
 pkgname=python-lz4
 version=2.1.6
-revision=2
+revision=3
 wrksrc="lz4-${version}"
 build_style=python-module
 pycompile_module="lz4"

From 295a2457246d2d093a78703408a385f5d4a4be09 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 291/871] python3-macaroons: rebuild for Python 3.8.

---
 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 d44100c20f2..420f5aff043 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=1
+revision=2
 archs=noarch
 wrksrc="pymacaroons-${version}"
 build_style=python3-module

From c7f2f80b2a18be92e24dc48562d94dedffa1908d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 292/871] python3-macholib: rebuild for Python 3.8.

---
 srcpkgs/python3-macholib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-macholib/template b/srcpkgs/python3-macholib/template
index a2738f57eb0..525b5f7106b 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.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="macholib-${version}"
 build_style=python3-module

From 53d44ace786b5ed5fa274989dad03be377abfc6e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:54 +0200
Subject: [PATCH 293/871] python-magic: rebuild for Python 3.8.

---
 srcpkgs/python-magic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-magic/template b/srcpkgs/python-magic/template
index 98e3c0802ab..5a59efa4808 100644
--- a/srcpkgs/python-magic/template
+++ b/srcpkgs/python-magic/template
@@ -1,7 +1,7 @@
 # Template file for 'python-magic'
 pkgname=python-magic
 version=0.4.15
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="magic.py"

From 73437d774f70a345d8b07c40594544cce5c06aef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 294/871] python-marisa-trie: rebuild for Python 3.8.

---
 srcpkgs/python-marisa-trie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-marisa-trie/template b/srcpkgs/python-marisa-trie/template
index bb09c933335..5e46b686ace 100644
--- a/srcpkgs/python-marisa-trie/template
+++ b/srcpkgs/python-marisa-trie/template
@@ -1,7 +1,7 @@
 # Template file for 'python-marisa-trie'
 pkgname=python-marisa-trie
 version=0.7.5
-revision=2
+revision=3
 wrksrc="marisa-trie-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From fa97a70b0fdc4b5bcf8b551347162f567caf790c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 295/871] python-markdown2: rebuild for Python 3.8.

---
 srcpkgs/python-markdown2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-markdown2/template b/srcpkgs/python-markdown2/template
index 2d352ba029d..e9068f64202 100644
--- a/srcpkgs/python-markdown2/template
+++ b/srcpkgs/python-markdown2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-markdown2'
 pkgname=python-markdown2
 version=2.3.8
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="markdown2"

From 2b899c908b4a71280bea6d6129dd98fd7c407ec2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 296/871] python3-matplotlib: rebuild for Python 3.8.

---
 srcpkgs/python3-matplotlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template
index 857ba17cacf..be02817a4d3 100644
--- a/srcpkgs/python3-matplotlib/template
+++ b/srcpkgs/python3-matplotlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-matplotlib'
 pkgname=python3-matplotlib
 version=3.1.1
-revision=1
+revision=2
 wrksrc="matplotlib-${version}"
 build_style=python3-module
 pycompile_module="matplotlib mpl_toolkits pylab.py"

From 760f7ff63e4ae9f0778a3641ad73ee5a5fcabb8b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 297/871] python-mccabe: rebuild for Python 3.8.

---
 srcpkgs/python-mccabe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mccabe/template b/srcpkgs/python-mccabe/template
index b6a01929540..1e2ed6328b8 100644
--- a/srcpkgs/python-mccabe/template
+++ b/srcpkgs/python-mccabe/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mccabe'
 pkgname=python-mccabe
 version=0.6.1
-revision=2
+revision=3
 archs=noarch
 replaces="mccabe>=0"
 wrksrc="mccabe-${version}"

From 355bc5a7116c03bf68492d30caab4ea4adcd16f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 298/871] python-mechanize: rebuild for Python 3.8.

---
 srcpkgs/python-mechanize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mechanize/template b/srcpkgs/python-mechanize/template
index c5b2b5789a7..ca29bbd0d23 100644
--- a/srcpkgs/python-mechanize/template
+++ b/srcpkgs/python-mechanize/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mechanize'
 pkgname=python-mechanize
 version=0.4.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="mechanize-${version}"
 build_style=python-module

From 5805d2dc45ae7b8cb3145a017769f0f3206878ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 299/871] python3-minidb: rebuild for Python 3.8.

---
 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 50490794600..140964b7a8a 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.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="minidb-${version}"
 build_style=python3-module

From 172f42a02af7b0eca7daf4c6390627e19d025cc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 300/871] python-miniupnpc: rebuild for Python 3.8.

---
 srcpkgs/python-miniupnpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-miniupnpc/template b/srcpkgs/python-miniupnpc/template
index 500c217c78e..f7892bab073 100644
--- a/srcpkgs/python-miniupnpc/template
+++ b/srcpkgs/python-miniupnpc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-miniupnpc'
 pkgname=python-miniupnpc
 version=2.0.2
-revision=2
+revision=3
 wrksrc="${pkgname#python-}-$version"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 48fbd14147042e2863f1aecda9143e21dd76d383 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:55 +0200
Subject: [PATCH 301/871] python-mistune: rebuild for Python 3.8.

---
 srcpkgs/python-mistune/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mistune/template b/srcpkgs/python-mistune/template
index 0ee8dfde5b1..ef5c054ba75 100644
--- a/srcpkgs/python-mistune/template
+++ b/srcpkgs/python-mistune/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mistune'
 pkgname=python-mistune
 version=0.8.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="mistune-${version}"
 build_style=python-module

From cb476d7b76ef5ffe227952993fdbf4180d0d975a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 302/871] python3-more-itertools: rebuild for Python 3.8.

---
 srcpkgs/python3-more-itertools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-more-itertools/template b/srcpkgs/python3-more-itertools/template
index b089992f84e..a765da98495 100644
--- a/srcpkgs/python3-more-itertools/template
+++ b/srcpkgs/python3-more-itertools/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-more-itertools'
 pkgname=python3-more-itertools
 version=7.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python3-module

From 983f2600118779199e07f7a40eeec4c12c345adb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 303/871] python-mpd2: rebuild for Python 3.8.

---
 srcpkgs/python-mpd2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template
index 682d9a85f5e..0389f8c2a28 100644
--- a/srcpkgs/python-mpd2/template
+++ b/srcpkgs/python-mpd2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpd2'
 pkgname=python-mpd2
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mpd"

From bcb43ee3bbda21fb23ac513eadd0d35a3aecd338 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 304/871] python3-mpi4py: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-mpi4py/template | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/python3-mpi4py/template b/srcpkgs/python3-mpi4py/template
index 94a83b688f2..8f9e76867cc 100644
--- a/srcpkgs/python3-mpi4py/template
+++ b/srcpkgs/python3-mpi4py/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpi4py'
 pkgname=python3-mpi4py
 version=3.0.2
-revision=1
+revision=2
 wrksrc="mpi4py-${version}"
 build_style=python3-module
 pycompile_module="mpi4py"
@@ -15,6 +15,12 @@ homepage="https://bitbucket.org/mpi4py/mpi4py"
 distfiles="$PYPI_SITE/m/mpi4py/mpi4py-${version}.tar.gz"
 checksum=f8d629d1e3e3b7b89cb99d0e3bc5505e76cc42089829807950d5c56606ed48e0
 
+post_extract() {
+	# recythonize
+	rm src/mpi4py/include/mpi4py/mpi4py.MPI.h \
+		src/mpi4py/include/mpi4py/mpi4py.MPI_api.h \
+		src/mpi4py.MPI.c
+}
 post_install() {
 	vlicense LICENSE.rst
 }

From 4d54f35a47c535a9088965a39ee2baf56d7a99e8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 305/871] python-mpmath: rebuild for Python 3.8.

---
 srcpkgs/python-mpmath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mpmath/template b/srcpkgs/python-mpmath/template
index b0a38c01514..8fd4873dd62 100644
--- a/srcpkgs/python-mpmath/template
+++ b/srcpkgs/python-mpmath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mpmath'
 pkgname=python-mpmath
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="mpmath-${version}"
 build_style=python-module

From 06cb4328697b604bb97a3279111cf532b3db8f37 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 306/871] python3-mpv: rebuild for Python 3.8.

---
 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 2780c02610b..1910a4d231d 100644
--- a/srcpkgs/python3-mpv/template
+++ b/srcpkgs/python3-mpv/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-mpv'
 pkgname=python3-mpv
 version=0.3.9
-revision=2
+revision=3
 archs=noarch
 wrksrc="python-mpv-${version}"
 build_style=python3-module

From f0c791b50fda55ee14474d77464a464d9832f63a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 307/871] python-msgpack: rebuild for Python 3.8.

---
 srcpkgs/python-msgpack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-msgpack/template b/srcpkgs/python-msgpack/template
index 34280f72c8c..81a1ae2c3fc 100644
--- a/srcpkgs/python-msgpack/template
+++ b/srcpkgs/python-msgpack/template
@@ -1,7 +1,7 @@
 # Template file for 'python-msgpack'
 pkgname=python-msgpack
 version=0.6.2
-revision=1
+revision=2
 wrksrc="msgpack-${version}"
 build_style=python-module
 pycompile_module="msgpack"

From 72565acf197f6fdfe7fab199f1f36cec88eea0f1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:56 +0200
Subject: [PATCH 308/871] python3-msoffcrypto-tool: rebuild for Python 3.8.

---
 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 5996d3bf355..d1b369fc773 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=4.10.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="msoffcrypto-tool-${version}"
 build_style=python3-module

From 2fac6cec677c83053ff56ebd6a3a0fe6ea268072 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 309/871] python-mtranslate: rebuild for Python 3.8.

---
 srcpkgs/python-mtranslate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mtranslate/template b/srcpkgs/python-mtranslate/template
index d56fa18f0f0..992c7b76fe9 100644
--- a/srcpkgs/python-mtranslate/template
+++ b/srcpkgs/python-mtranslate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mtranslate'
 pkgname=python-mtranslate
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="mtranslate-${version}"
 build_style=python-module

From 265f54812df835cbf7faad93fe8630ee42419595 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 310/871] python3-multidict: rebuild for Python 3.8.

---
 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 82888db842f..62054db71f1 100644
--- a/srcpkgs/python3-multidict/template
+++ b/srcpkgs/python3-multidict/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-multidict'
 pkgname=python3-multidict
 version=4.5.2
-revision=2
+revision=3
 wrksrc="multidict-${version}"
 build_style=python3-module
 pycompile_module="multidict"

From 7790f0903cd22d453d39e0d04fd784d4eae4e3a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 311/871] python3-munkres: rebuild for Python 3.8.

---
 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 15767afe3fe..d0d0a013e80 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python3-module

From 8da28cf02fd9b1f5f911abe8d2695163e49f6c90 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 312/871] python-musicbrainzngs: rebuild for Python 3.8.

---
 srcpkgs/python-musicbrainzngs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-musicbrainzngs/template b/srcpkgs/python-musicbrainzngs/template
index 588c25f7cd8..3d738f0c3c0 100644
--- a/srcpkgs/python-musicbrainzngs/template
+++ b/srcpkgs/python-musicbrainzngs/template
@@ -1,7 +1,7 @@
 # Template file for 'python-musicbrainzngs'
 pkgname=python-musicbrainzngs
 version=0.6
-revision=3
+revision=4
 archs=noarch
 wrksrc="musicbrainzngs-${version}"
 build_style="python-module"

From 072b3abd0fbed5d5c77d8c8ac35eddda1bae6712 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 313/871] python3-musicpd: rebuild for Python 3.8.

---
 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 3328b2f4bbf..8c6ba2fb451 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=1
+revision=2
 archs=noarch
 wrksrc="python-musicpd-${version}"
 build_style=python3-module

From 5b0f4b88a9b8050f37cd4a4656a6e463d2e14f3c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 314/871] mutagen: rebuild for Python 3.8.

---
 srcpkgs/mutagen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mutagen/template b/srcpkgs/mutagen/template
index cbf05ea8583..8b24cc82dc8 100644
--- a/srcpkgs/mutagen/template
+++ b/srcpkgs/mutagen/template
@@ -1,7 +1,7 @@
 # Template file for 'mutagen'
 pkgname=mutagen
 version=1.42.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="mutagen"

From f69d4f1be712380e3b98b152c430f0c68165a2a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 315/871] python-mygpoclient: rebuild for Python 3.8.

---
 srcpkgs/python-mygpoclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mygpoclient/template b/srcpkgs/python-mygpoclient/template
index 3f85c72cc0c..ffad63a70a1 100644
--- a/srcpkgs/python-mygpoclient/template
+++ b/srcpkgs/python-mygpoclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mygpoclient'
 pkgname=python-mygpoclient
 version=1.8
-revision=2
+revision=3
 archs=noarch
 wrksrc="mygpoclient-${version}"
 build_style=python-module

From 4d52606a9d18e6b621f22774622a25fd2e573169 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:57 +0200
Subject: [PATCH 316/871] python3-mypy: rebuild for Python 3.8.

---
 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 37ecd732c06..564c0a4d47c 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.730
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy-${version}"
 build_style=python3-module

From c512cf64fce7a5ec9dba7f0d0c854be87fb5a992 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 317/871] python3-mypy_extensions: rebuild for Python 3.8.

---
 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 2761924248e..25de48ea141 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="mypy_extensions-${version}"
 build_style=python3-module

From 8b44cbada238015a5660737224feaac424f6abd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 318/871] python-mysqlclient: rebuild for Python 3.8.

---
 srcpkgs/python-mysqlclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-mysqlclient/template b/srcpkgs/python-mysqlclient/template
index 43fed28d4f0..079666a6dab 100644
--- a/srcpkgs/python-mysqlclient/template
+++ b/srcpkgs/python-mysqlclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-mysqlclient'
 pkgname=python-mysqlclient
 version=1.3.14
-revision=2
+revision=3
 wrksrc="mysqlclient-${version}"
 build_style=python-module
 pycompile_module="MySQLdb _mysql_exceptions.py"

From 58c8ce6a72d414a18bfaa27df674bf09d6b1abd5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 319/871] python3-nacl: rebuild for Python 3.8.

---
 srcpkgs/python3-nacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-nacl/template b/srcpkgs/python3-nacl/template
index 5dd6a71ad6a..b59ea0196ac 100644
--- a/srcpkgs/python3-nacl/template
+++ b/srcpkgs/python3-nacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-nacl'
 pkgname=python3-nacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python3-module
 pycompile_module="nacl"

From af9c599ba7e38539cc4bae7315bc7d8085c09030 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 320/871] python-namedlist: rebuild for Python 3.8.

---
 srcpkgs/python-namedlist/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-namedlist/template b/srcpkgs/python-namedlist/template
index 4c6e6f1f3d5..75626b9f6d5 100644
--- a/srcpkgs/python-namedlist/template
+++ b/srcpkgs/python-namedlist/template
@@ -1,7 +1,7 @@
 # Template file for 'python-namedlist'
 pkgname=python-namedlist
 version=1.7
-revision=5
+revision=6
 archs=noarch
 wrksrc="namedlist-${version}"
 build_style=python-module

From adff1c6d9665df89dcc57c46acec3c167a23b392 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 321/871] python-natsort: rebuild for Python 3.8.

---
 srcpkgs/python-natsort/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-natsort/template b/srcpkgs/python-natsort/template
index 754ac50c419..7101e297aad 100644
--- a/srcpkgs/python-natsort/template
+++ b/srcpkgs/python-natsort/template
@@ -1,7 +1,7 @@
 # Template file for 'python-natsort'
 pkgname=python-natsort
 version=6.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="natsort-${version}"
 build_style=python-module

From 48a1a390f8ec4a2ad7e502d09ce11f5ff92d6f9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 322/871] python-nbxmpp: rebuild for Python 3.8.

---
 srcpkgs/python-nbxmpp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nbxmpp/template b/srcpkgs/python-nbxmpp/template
index 4952ee1e102..8c39a93bca7 100644
--- a/srcpkgs/python-nbxmpp/template
+++ b/srcpkgs/python-nbxmpp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nbxmpp'
 pkgname=python-nbxmpp
 version=0.6.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 60bdb332b620d8a8d1111c3079882e2e7f89cee7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:58 +0200
Subject: [PATCH 323/871] python-ndg_httpsclient: rebuild for Python 3.8.

---
 srcpkgs/python-ndg_httpsclient/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ndg_httpsclient/template b/srcpkgs/python-ndg_httpsclient/template
index 908d7137391..54b653f68a9 100644
--- a/srcpkgs/python-ndg_httpsclient/template
+++ b/srcpkgs/python-ndg_httpsclient/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ndg_httpsclient'
 pkgname=python-ndg_httpsclient
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="ndg_httpsclient-${version}"
 build_style=python-module

From f7c8ef2577ae13d63176bc564aab66d1f485da0f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 324/871] python3-neovim: rebuild for Python 3.8.

---
 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 44068f17b66..2730cd1b92b 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.3.2
-revision=3
+revision=4
 archs=noarch
 wrksrc="pynvim-${version}"
 build_style="python3-module"

From 9fd69f4e11879c4d97f028e5c0f8d929b9fd0737 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 325/871] python-netaddr: rebuild for Python 3.8.

---
 srcpkgs/python-netaddr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netaddr/template b/srcpkgs/python-netaddr/template
index 851095a3c7c..20cc1c93134 100644
--- a/srcpkgs/python-netaddr/template
+++ b/srcpkgs/python-netaddr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netaddr'
 pkgname=python-netaddr
 version=0.7.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="netaddr-${version}"
 build_style=python-module

From e8a03ff155fdf7518ceefa99224f8269024bef08 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 326/871] python-netifaces: rebuild for Python 3.8.

---
 srcpkgs/python-netifaces/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-netifaces/template b/srcpkgs/python-netifaces/template
index b8d6e505879..760f657aaba 100644
--- a/srcpkgs/python-netifaces/template
+++ b/srcpkgs/python-netifaces/template
@@ -1,7 +1,7 @@
 # Template file for 'python-netifaces'
 pkgname=python-netifaces
 version=0.10.9
-revision=1
+revision=2
 wrksrc="netifaces-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 397aa250304660262662649a6dacb154a56c134c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 327/871] python3-networkx: rebuild for Python 3.8.

---
 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 eae29038d94..84acd3e929c 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.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="networkx-${version}"
 build_style=python3-module

From 2125f806185c5e64b3d975f1ce9d32a60ef4da1c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 328/871] python-nose: rebuild for Python 3.8.

---
 srcpkgs/python-nose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose/template b/srcpkgs/python-nose/template
index c9fbe9d28d3..f2cd7fe5c3f 100644
--- a/srcpkgs/python-nose/template
+++ b/srcpkgs/python-nose/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose'
 pkgname=python-nose
 version=1.3.7
-revision=3
+revision=4
 archs=noarch
 wrksrc="nose-${version}"
 build_style=python-module

From 8bdbb355a38faac0ba8f2f85e4b44c09aa009dae Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 329/871] python-nose2: rebuild for Python 3.8.

---
 srcpkgs/python-nose2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-nose2/template b/srcpkgs/python-nose2/template
index a9ddf5969a1..058abbd4253 100644
--- a/srcpkgs/python-nose2/template
+++ b/srcpkgs/python-nose2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-nose2'
 pkgname=python-nose2
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From e5ca77e5a7bb7fb916160feaa8cd4bcbe9b965d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 330/871] python-npyscreen: rebuild for Python 3.8.

---
 srcpkgs/python-npyscreen/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-npyscreen/template b/srcpkgs/python-npyscreen/template
index 0457fa1aaed..2223850f22e 100644
--- a/srcpkgs/python-npyscreen/template
+++ b/srcpkgs/python-npyscreen/template
@@ -1,7 +1,7 @@
 # Template file for 'python-npyscreen'
 pkgname=python-npyscreen
 version=4.10.5.1
-revision=1
+revision=2
 wrksrc="npyscreen-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From 3375c3504ac19e24102ce48b44181c3fc5f979d9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:09:59 +0200
Subject: [PATCH 331/871] python-ntplib: rebuild for Python 3.8.

---
 srcpkgs/python-ntplib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ntplib/template b/srcpkgs/python-ntplib/template
index 81bac24971e..0582fb326c1 100644
--- a/srcpkgs/python-ntplib/template
+++ b/srcpkgs/python-ntplib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ntplib'
 pkgname=python-ntplib
 version=0.3.3
-revision=3
+revision=4
 archs=noarch
 build_style=python-module
 wrksrc="ntplib-${version}"

From e5291f2d745f7a7c98893d207a0494a1ece71bcf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 332/871] python-numexpr: rebuild for Python 3.8.

---
 srcpkgs/python-numexpr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numexpr/template b/srcpkgs/python-numexpr/template
index 1db40092411..baf91175a33 100644
--- a/srcpkgs/python-numexpr/template
+++ b/srcpkgs/python-numexpr/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numexpr'
 pkgname=python-numexpr
 version=2.7.0
-revision=1
+revision=2
 wrksrc="numexpr-${version}"
 build_style=python-module
 pycompile_module="numexpr"

From c77632bf6ff451ae1f30d84f6c2ac6702897dbd7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 333/871] python3-numpy: rebuild for Python 3.8.

---
 srcpkgs/python3-numpy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-numpy/template b/srcpkgs/python3-numpy/template
index cdff44fd662..d3535c49a76 100644
--- a/srcpkgs/python3-numpy/template
+++ b/srcpkgs/python3-numpy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-numpy'
 pkgname=python3-numpy
 version=1.17.3
-revision=2
+revision=3
 wrksrc="numpy-${version}"
 build_style=python3-module
 pycompile_module="numpy"

From ccb19e639b5ee0ef8a94c46ee370c8eec6d2963d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 334/871] python-numpy-stl: rebuild for Python 3.8.

---
 srcpkgs/python-numpy-stl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-numpy-stl/template b/srcpkgs/python-numpy-stl/template
index 3eed838e4f6..cce1a8ead1f 100644
--- a/srcpkgs/python-numpy-stl/template
+++ b/srcpkgs/python-numpy-stl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-numpy-stl'
 pkgname=python-numpy-stl
 version=2.10.1
-revision=1
+revision=2
 wrksrc="numpy-stl-v${version}"
 build_style=python-module
 pycompile_module="stl"

From 89bd20c770a0917b9a51e8da57ee787b1555686c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 335/871] python-oauth2client: rebuild for Python 3.8.

---
 srcpkgs/python-oauth2client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauth2client/template b/srcpkgs/python-oauth2client/template
index fd135e4e98f..2398adba276 100644
--- a/srcpkgs/python-oauth2client/template
+++ b/srcpkgs/python-oauth2client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauth2client'
 pkgname=python-oauth2client
 version=4.1.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 48b9bfb696e61ccc38e43d583d477a221a34e231 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 336/871] python-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-oauthlib/template b/srcpkgs/python-oauthlib/template
index 5bbaa7df29b..036f1b31c92 100644
--- a/srcpkgs/python-oauthlib/template
+++ b/srcpkgs/python-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-oauthlib'
 pkgname=python-oauthlib
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5cf792ccb8add72d02174a4edc1318727c890a0c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 337/871] python-olefile: rebuild for Python 3.8.

---
 srcpkgs/python-olefile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-olefile/template b/srcpkgs/python-olefile/template
index 4346cfcf667..803d7b67cd8 100644
--- a/srcpkgs/python-olefile/template
+++ b/srcpkgs/python-olefile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-olefile'
 pkgname=python-olefile
 version=0.46
-revision=1
+revision=2
 archs=noarch
 wrksrc="olefile-${version}"
 build_style=python-module

From 59307221ec5cd6933bcde62b83e77724a6201fa3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:00 +0200
Subject: [PATCH 338/871] python3-oletools: rebuild for Python 3.8.

---
 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 af9a91ff273..a4fda46427b 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.54.2b
-revision=1
+revision=2
 archs=noarch
 wrksrc="oletools-${version}"
 build_style=python3-module

From 232c2d1ccd272dbdbce327c1b2e0007475cce685 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 339/871] openrazer-meta: rebuild for Python 3.8.

---
 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 d4bd24878b2..112cb9e900b 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=1
+revision=2
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From c20c3b431b2a9285b18ac6ae19ed4ace04011372 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 340/871] python-openssl: rebuild for Python 3.8.

---
 srcpkgs/python-openssl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-openssl/template b/srcpkgs/python-openssl/template
index 94bccaa166f..8aabda074fa 100644
--- a/srcpkgs/python-openssl/template
+++ b/srcpkgs/python-openssl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-openssl'
 pkgname=python-openssl
 version=19.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyOpenSSL-${version}"
 build_style=python-module

From 3e6fdf64577c0092e3756f6abd1ea14cf81b2a77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 341/871] python3-orocos-kdl: rebuild for Python 3.8.

---
 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 df3e27d5e7b..85b573b2fa4 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=1
+revision=2
 wrksrc=orocos_kinematics_dynamics-${version}
 build_wrksrc=python_orocos_kdl
 build_style=cmake

From 82fcf5e285ebf91edf85adfa9977715d4fd60760 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 342/871] python3-owm: rebuild for Python 3.8.

---
 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 d51e01831e6..acdb960ab45 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=1
+revision=2
 wrksrc="pyowm-${version}"
 build_style=python3-module
 pycompile_module="pyowm"

From 292c02b6fa7ecfe282f75f996d66a2d132af75ae Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 343/871] python-packaging: rebuild for Python 3.8.

---
 srcpkgs/python-packaging/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-packaging/template b/srcpkgs/python-packaging/template
index 505631bb29c..06042d12b90 100644
--- a/srcpkgs/python-packaging/template
+++ b/srcpkgs/python-packaging/template
@@ -1,7 +1,7 @@
 # Template file for 'python-packaging'
 pkgname=python-packaging
 version=19.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="packaging-${version}"
 build_style=python-module

From 350d95bd0171d2c71e26710b7d355f15b0ce7f44 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:01 +0200
Subject: [PATCH 344/871] python-pam: rebuild for Python 3.8.

---
 srcpkgs/python-pam/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pam/template b/srcpkgs/python-pam/template
index e696a05ae7f..28c22cfd6ea 100644
--- a/srcpkgs/python-pam/template
+++ b/srcpkgs/python-pam/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pam'
 pkgname=python-pam
 version=1.8.4
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="pam.py"

From e0a7e18c35f2dcd7d46ea413ba6656709fbea5eb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 345/871] python3-pandas: rebuild for Python 3.8.

---
 srcpkgs/python3-pandas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pandas/template b/srcpkgs/python3-pandas/template
index ad282b4d5d4..10f9d5a77d9 100644
--- a/srcpkgs/python3-pandas/template
+++ b/srcpkgs/python3-pandas/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pandas'
 pkgname=python3-pandas
 version=0.25.1
-revision=1
+revision=2
 wrksrc="pandas-${version}"
 build_style=python3-module
 pycompile_module="pandas"

From 178000b2a2f214fbdf9223d7cb39e47974495471 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 346/871] python-pandocfilters: rebuild for Python 3.8.

---
 srcpkgs/python-pandocfilters/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pandocfilters/template b/srcpkgs/python-pandocfilters/template
index a7a3d442052..8650d20256f 100644
--- a/srcpkgs/python-pandocfilters/template
+++ b/srcpkgs/python-pandocfilters/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pandocfilters'
 pkgname=python-pandocfilters
 version=1.4.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="pandocfilters-${version}"
 build_style=python-module

From 6acb94df3cde9b6fdae3f74f084f245dd8829c6b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 347/871] python-paramiko: rebuild for Python 3.8.

---
 srcpkgs/python-paramiko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-paramiko/template b/srcpkgs/python-paramiko/template
index c512ceb951f..d6f75508a03 100644
--- a/srcpkgs/python-paramiko/template
+++ b/srcpkgs/python-paramiko/template
@@ -1,7 +1,7 @@
 # Template file for 'python-paramiko'
 pkgname=python-paramiko
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module

From 0d78b350cec06298e4b9bb3b252567325d3dcc2a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 348/871] python-parse: rebuild for Python 3.8.

---
 srcpkgs/python-parse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parse/template b/srcpkgs/python-parse/template
index 298d0b65e78..ded581b4420 100644
--- a/srcpkgs/python-parse/template
+++ b/srcpkgs/python-parse/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parse'
 pkgname=python-parse
 version=1.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="parse-${version}"
 build_style=python-module

From 9ab1cee465e8097b17fb2cfd0ddc4825bd0421ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 349/871] python3-parsedatetime: rebuild for Python 3.8.

---
 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 d3ac21d7d34..34e9ba0f416 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="parsedatetime-${version}"
 build_style=python3-module

From 753739f8e93c7009786dfc7af942ff3e53889b07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 350/871] python-parsing: rebuild for Python 3.8.

---
 srcpkgs/python-parsing/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parsing/template b/srcpkgs/python-parsing/template
index 0cc744eaf79..bd6cf2c2238 100644
--- a/srcpkgs/python-parsing/template
+++ b/srcpkgs/python-parsing/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parsing'
 pkgname=python-parsing
 version=2.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyparsing-pyparsing_${version}"
 build_style=python-module

From 26a5d90e2b44408a5ca0b7621a6adee89f62be16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 351/871] python-parso: rebuild for Python 3.8.

---
 srcpkgs/python-parso/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-parso/template b/srcpkgs/python-parso/template
index 20e5fe306c0..1959b42622a 100644
--- a/srcpkgs/python-parso/template
+++ b/srcpkgs/python-parso/template
@@ -1,7 +1,7 @@
 # Template file for 'python-parso'
 pkgname=python-parso
 version=0.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="parso-${version}"
 build_style=python-module

From f5c74689a57d418c1ec4396f7f07ad4d7059e12f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:02 +0200
Subject: [PATCH 352/871] python-passlib: rebuild for Python 3.8.

---
 srcpkgs/python-passlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-passlib/template b/srcpkgs/python-passlib/template
index 3af12ce7b1b..f46a3e92642 100644
--- a/srcpkgs/python-passlib/template
+++ b/srcpkgs/python-passlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-passlib'
 pkgname=python-passlib
 version=1.7.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="passlib-${version}"
 build_style=python-module

From 42d19a79312e102b861c23fcbfc1611a06ca71cf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 353/871] python-pathlib2: rebuild for Python 3.8.

---
 srcpkgs/python-pathlib2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathlib2/template b/srcpkgs/python-pathlib2/template
index bb7bec778f5..fa600b78fbe 100644
--- a/srcpkgs/python-pathlib2/template
+++ b/srcpkgs/python-pathlib2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathlib2'
 pkgname=python-pathlib2
 version=2.3.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pathlib2-${version}"
 build_style=python-module

From e30c3b0dc0ce15222b460f33e6bcb0d91d2359f8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 354/871] python-pathspec: rebuild for Python 3.8.

---
 srcpkgs/python-pathspec/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathspec/template b/srcpkgs/python-pathspec/template
index 7c5fe04097a..2fa8fa1a811 100644
--- a/srcpkgs/python-pathspec/template
+++ b/srcpkgs/python-pathspec/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathspec'
 pkgname=python-pathspec
 version=0.5.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathspec-${version}"
 build_style=python-module

From bcc0f159a563fd121998b35816496cce8a092f8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 355/871] python-pathtools: rebuild for Python 3.8.

---
 srcpkgs/python-pathtools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pathtools/template b/srcpkgs/python-pathtools/template
index 218e6ed2f57..47dc6ef6a71 100644
--- a/srcpkgs/python-pathtools/template
+++ b/srcpkgs/python-pathtools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pathtools'
 pkgname=python-pathtools
 version=0.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pathtools-${version}"
 build_style=python-module

From 3e31be7dd1ddcd26daa8cb1554161d0d83fa4d9c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 356/871] python-pbkdf2: rebuild for Python 3.8.

---
 srcpkgs/python-pbkdf2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pbkdf2/template b/srcpkgs/python-pbkdf2/template
index edc50f824c2..956d0b4cad9 100644
--- a/srcpkgs/python-pbkdf2/template
+++ b/srcpkgs/python-pbkdf2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pbkdf2'
 pkgname=python-pbkdf2
 version=1.3
-revision=3
+revision=4
 archs=noarch
 wrksrc="pbkdf2-${version}"
 build_style=python-module

From 60130471b57bb17788990f786666ade4f6083490 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 357/871] python-pbr: rebuild for Python 3.8.

---
 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 7ab0b39539f..9c7216056fe 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.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pbr-${version}"
 build_style=python-module

From 53df8b6f4f10ed4c3b00b4b6c9a58e56b7c2b770 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 358/871] python3-pcodedmp: rebuild for Python 3.8.

---
 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 efe8cc83ee7..eb52c809fae 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=1
+revision=2
 archs=noarch
 wrksrc="pcodedmp-${version}"
 build_style=python3-module

From f49b9d771bb74d06baeb33764129d4ced701e377 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:03 +0200
Subject: [PATCH 359/871] python-pdfrw: rebuild for Python 3.8.

---
 srcpkgs/python-pdfrw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pdfrw/template b/srcpkgs/python-pdfrw/template
index ddb43b928fc..ef7db98e491 100644
--- a/srcpkgs/python-pdfrw/template
+++ b/srcpkgs/python-pdfrw/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pdfrw'
 pkgname=python-pdfrw
 version=0.4
-revision=2
+revision=3
 archs=noarch
 replaces="python-pdfrw-example<${version}_${revision}"
 wrksrc="${pkgname/python-//}-${version}"

From 88593d8ad4d0a469ecb96935fae8da96c94f953d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 360/871] python-peewee: rebuild for Python 3.8.

---
 srcpkgs/python-peewee/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-peewee/template b/srcpkgs/python-peewee/template
index 9b07ed413b9..de0068a330e 100644
--- a/srcpkgs/python-peewee/template
+++ b/srcpkgs/python-peewee/template
@@ -1,7 +1,7 @@
 # Template file for 'python-peewee'
 pkgname=python-peewee
 version=3.11.2
-revision=1
+revision=2
 wrksrc="peewee-${version}"
 build_style=python-module
 pycompile_module="playhouse peewee.py pwiz.py"

From ab1d4bb2fccaf43f6d14c4cf8e241293286085bb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 361/871] python3-pefile: rebuild for Python 3.8.

---
 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 305d64e0758..8791f06640b 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=1
+revision=2
 archs=noarch
 wrksrc="pefile-${version}"
 build_style=python3-module

From e1c0ed99166f35a8cfc16d020a277e5be41e23ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 362/871] python3-pem: rebuild for Python 3.8.

---
 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 3517c80b66a..15417666597 100644
--- a/srcpkgs/python3-pem/template
+++ b/srcpkgs/python3-pem/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pem'
 pkgname=python3-pem
 version=19.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pem-${version}"
 build_style=python3-module

From ff6236e3c0d98c1bcd7c5a5db01e18600a043121 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 363/871] python-pex: rebuild for Python 3.8.

---
 srcpkgs/python-pex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pex/template b/srcpkgs/python-pex/template
index f3ed4d96e41..9ae4c9fa7f1 100644
--- a/srcpkgs/python-pex/template
+++ b/srcpkgs/python-pex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pex'
 pkgname=python-pex
 version=1.6.12
-revision=1
+revision=2
 archs=noarch
 wrksrc="pex-${version}"
 build_style=python-module

From 8b0fe473d51dbe54ecfd4626a5e81433d936a6e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 364/871] python-pexpect: rebuild for Python 3.8.

---
 srcpkgs/python-pexpect/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pexpect/template b/srcpkgs/python-pexpect/template
index 8d03a1945f3..03102c3d294 100644
--- a/srcpkgs/python-pexpect/template
+++ b/srcpkgs/python-pexpect/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pexpect'
 pkgname=python-pexpect
 version=4.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pexpect-${version}"
 build_style=python-module

From 7c06b8718f7ec29cdc71016e4ef4152915d75c32 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 365/871] python-pgmigrate: rebuild for Python 3.8.

---
 srcpkgs/python-pgmigrate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgmigrate/template b/srcpkgs/python-pgmigrate/template
index b441ba2a89f..767b6cf8921 100644
--- a/srcpkgs/python-pgmigrate/template
+++ b/srcpkgs/python-pgmigrate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgmigrate'
 pkgname=python-pgmigrate
 version=1.0.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgmigrate-${version}"
 build_style=python-module

From c91d53c986c68042065827175cc0672ea71bf7f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:04 +0200
Subject: [PATCH 366/871] python-pgpdump: rebuild for Python 3.8.

---
 srcpkgs/python-pgpdump/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pgpdump/template b/srcpkgs/python-pgpdump/template
index 58be9116feb..a28b6e209e7 100644
--- a/srcpkgs/python-pgpdump/template
+++ b/srcpkgs/python-pgpdump/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pgpdump'
 pkgname=python-pgpdump
 version=1.5
-revision=5
+revision=6
 archs=noarch
 build_style=python-module
 pycompile_module="pgpdump"

From c7fb55eeff25f2ec133ad52c5b90c770038a9361 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 367/871] python3-pgspecial: rebuild for Python 3.8.

---
 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 dc52d12c214..c4f67a707f1 100644
--- a/srcpkgs/python3-pgspecial/template
+++ b/srcpkgs/python3-pgspecial/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pgspecial'
 pkgname=python3-pgspecial
 version=1.11.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgspecial-${version}"
 build_style=python3-module

From a7cee7ba3648cdb09b6a5518228abccdaa8917a3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 368/871] python3-pgzero: rebuild for Python 3.8.

---
 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 9653505acda..8b8f477112d 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
-revision=1
+revision=2
 archs=noarch
 wrksrc="pgzero-${version}"
 build_style=python3-module

From c8e0b2590874b31d868db671336d55b182bd10b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 369/871] python3-phonenumbers: rebuild for Python 3.8.

---
 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 ebf33f226e4..7b4e889fd8d 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.10.20
-revision=1
+revision=2
 archs=noarch
 wrksrc="phonenumbers-${version}"
 build_style=python3-module

From 1c0bb66b3f08b0f0a88c855453c0e06508e079c6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 370/871] python-picamera: rebuild for Python 3.8.

---
 srcpkgs/python-picamera/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-picamera/template b/srcpkgs/python-picamera/template
index 92bc2a57a6d..e3c9a17bfdc 100644
--- a/srcpkgs/python-picamera/template
+++ b/srcpkgs/python-picamera/template
@@ -1,7 +1,7 @@
 # Template file for 'python-picamera'
 pkgname=python-picamera
 version=1.13
-revision=1
+revision=2
 archs=noarch
 wrksrc="picamera-${version}"
 build_style=python-module

From 41832da1d9e7136176baf6abbe731d35526d3b5c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 371/871] python-pickleshare: rebuild for Python 3.8.

---
 srcpkgs/python-pickleshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pickleshare/template b/srcpkgs/python-pickleshare/template
index 2485c95230a..c1d86826c15 100644
--- a/srcpkgs/python-pickleshare/template
+++ b/srcpkgs/python-pickleshare/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pickleshare'
 pkgname=python-pickleshare
 version=0.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pickleshare-${version}"
 build_style=python-module

From c9aecad242a7fff1a4d5592fbd279da0e0a4aba6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 372/871] python3-pillow-simd: rebuild for Python 3.8.

---
 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 7bab9fb20c3..4c756b07c79 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=5.3.0.post1
-revision=1
+revision=2
 archs="x86_64*"
 wrksrc="pillow-simd-${version}"
 build_style=python3-module

From ca24ad41a062a86f1dd0b8012ac60c3f909e326e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:05 +0200
Subject: [PATCH 373/871] python-pip: rebuild for Python 3.8.

---
 srcpkgs/python-pip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pip/template b/srcpkgs/python-pip/template
index 75f11561816..9d4607095c7 100644
--- a/srcpkgs/python-pip/template
+++ b/srcpkgs/python-pip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pip'
 pkgname=python-pip
 version=19.2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pip-${version}"
 build_style=python-module

From 6bfaa044bc464d507bcc59bba55351bf4188b9d5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 374/871] python-pipenv: rebuild for Python 3.8.

---
 srcpkgs/python-pipenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pipenv/template b/srcpkgs/python-pipenv/template
index e7ce3922875..210a0813673 100644
--- a/srcpkgs/python-pipenv/template
+++ b/srcpkgs/python-pipenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pipenv'
 pkgname=python-pipenv
 version=2018.11.26
-revision=3
+revision=4
 archs=noarch
 wrksrc="pipenv-${version}"
 build_style=python-module

From 4ea97811936a3e0a05daf0bf8351516c246af12b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 375/871] python-pkgconfig: rebuild for Python 3.8.

---
 srcpkgs/python-pkgconfig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pkgconfig/template b/srcpkgs/python-pkgconfig/template
index 13e1dcd3bf7..e9e5480907d 100644
--- a/srcpkgs/python-pkgconfig/template
+++ b/srcpkgs/python-pkgconfig/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pkgconfig'
 pkgname=python-pkgconfig
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pkgconfig-${version}"
 build_style=python-module

From 468ca40032b2791fd44dcbccf8a754c8a4fdb535 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 376/871] python-plotly: rebuild for Python 3.8.

---
 srcpkgs/python-plotly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-plotly/template b/srcpkgs/python-plotly/template
index fbbb3a3a520..1593b108f7a 100644
--- a/srcpkgs/python-plotly/template
+++ b/srcpkgs/python-plotly/template
@@ -1,7 +1,7 @@
 # Template file for 'python-plotly'
 pkgname=python-plotly
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 #wrksrc="${pkgname#*-}-${version}"
 wrksrc="plotly.py-${version}"

From 5b7a1016b0c4e476f7b9128c9877d50ed0c2fa64 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 377/871] python3-pluggy: rebuild for Python 3.8.

---
 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 37ebc2dae40..6f97cb25f21 100644
--- a/srcpkgs/python3-pluggy/template
+++ b/srcpkgs/python3-pluggy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pluggy'
 pkgname=python3-pluggy
 version=0.13.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python3-module

From c9cb5c50387c42e876bd70334930eb17201b483f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 378/871] python-ply: rebuild for Python 3.8.

---
 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 034fbcfa531..04a3defa6aa 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=1
+revision=2
 archs=noarch
 wrksrc="ply-${version}"
 build_style=python-module

From 62ee78df1ebed8f4678abc20bcbcbe6d4b0ef26e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 379/871] python3-pmw: rebuild for Python 3.8.

---
 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 646e7129443..289b5ef1d0d 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=1
+revision=2
 archs=noarch
 short_desc="Python 3 Tkinter widget toolkit"
 homepage="http://pmw.sourceforge.net/"

From 6df35f3e68b3343e3e9a3d3e2af8d3204b2386d8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 380/871] python-podcastparser: rebuild for Python 3.8.

---
 srcpkgs/python-podcastparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-podcastparser/template b/srcpkgs/python-podcastparser/template
index e4847d3ed65..61702f0d28b 100644
--- a/srcpkgs/python-podcastparser/template
+++ b/srcpkgs/python-podcastparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-podcastparser'
 pkgname=python-podcastparser
 version=0.6.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="podcastparser-${version}"
 build_style=python-module

From 64fecbf47b6ce2ef39a35352003fd179983486b6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 381/871] python-polib: rebuild for Python 3.8.

---
 srcpkgs/python-polib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-polib/template b/srcpkgs/python-polib/template
index b0ade05d90d..8b8d4b66c68 100644
--- a/srcpkgs/python-polib/template
+++ b/srcpkgs/python-polib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-polib'
 pkgname=python-polib
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="polib-${version}"
 build_style=python-module

From 863780c62bfd229b9d3cf4248977e0c57882bc2e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 382/871] python-portend: rebuild for Python 3.8.

---
 srcpkgs/python-portend/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python-portend/template b/srcpkgs/python-portend/template
index 216ae413d09..0538f68083f 100644
--- a/srcpkgs/python-portend/template
+++ b/srcpkgs/python-portend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-portend'
 pkgname=python-portend
 version=2.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="portend-${version}"
 build_style=python-module
@@ -14,7 +14,7 @@ license="MIT"
 homepage="https://github.com/jaraco/portend"
 changelog="https://github.com/jaraco/portend/blob/master/CHANGES.rst"
 distfiles="https://github.com/jaraco/portend/archive/${version}.tar.gz"
-checksum=61aa1a8fd76d64bd6093e4151a2bfeda177d5083bf2e2bcc92a053bd2104fde3
+checksum=c0740375a19168e117d291e7ed307e985d2c0e2dc732ca97444bc58a28076dfa
 
 pre_build() {
 	sed -i setup.py \

From 0ea6b192d9789ca26e8b2d564e9becc8fec9a9ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 383/871] python-prctl: rebuild for Python 3.8.

---
 srcpkgs/python-prctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prctl/template b/srcpkgs/python-prctl/template
index 2b420d655cf..e8bf54b98fd 100644
--- a/srcpkgs/python-prctl/template
+++ b/srcpkgs/python-prctl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prctl'
 pkgname=python-prctl
 version=1.7
-revision=3
+revision=4
 build_style=python-module
 pycompile_module="prctl.py"
 hostmakedepends="python-setuptools python3-setuptools libcap-devel"

From e8b8e78522532aeb2be830ae5fa8e899aae8e27e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 384/871] python3-precis-i18n: rebuild for Python 3.8.

---
 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 19612bc818b..be7bb0b0b56 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=1
+revision=2
 archs=noarch
 wrksrc="precis_i18n-${version}"
 build_style=python3-module

From c5d882fecf2448bdcd3ef2de0fef6306b9e370d0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 385/871] python-pretend: rebuild for Python 3.8.

---
 srcpkgs/python-pretend/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pretend/template b/srcpkgs/python-pretend/template
index 9a647271b57..6d8063fc43a 100644
--- a/srcpkgs/python-pretend/template
+++ b/srcpkgs/python-pretend/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pretend'
 pkgname=python-pretend
 version=1.0.9
-revision=1
+revision=2
 archs=noarch
 wrksrc="pretend-${version}"
 build_style=python-module

From c39323eaa6cc94f3ab24690a0db0336cc02a3ae1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 386/871] python-progress: rebuild for Python 3.8.

---
 srcpkgs/python-progress/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-progress/template b/srcpkgs/python-progress/template
index 7d3924e3618..0d6bd1db69d 100644
--- a/srcpkgs/python-progress/template
+++ b/srcpkgs/python-progress/template
@@ -1,7 +1,7 @@
 # Template file for 'python-progress'
 pkgname=python-progress
 version=1.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="progress-${version}"
 build_style=python-module

From 16e189c9b84513ddca92db1755f153c4a095aeb1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:07 +0200
Subject: [PATCH 387/871] python-prometheus_client: rebuild for Python 3.8.

---
 srcpkgs/python-prometheus_client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prometheus_client/template b/srcpkgs/python-prometheus_client/template
index 46df561f7d4..7b71fbeffc2 100644
--- a/srcpkgs/python-prometheus_client/template
+++ b/srcpkgs/python-prometheus_client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prometheus_client'
 pkgname=python-prometheus_client
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="prometheus_client-${version}"
 build_style=python-module

From 121a9ff0cde788917d12dabc15e719afd970cff9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 388/871] python-prompt_toolkit1: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit1/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit1/template b/srcpkgs/python-prompt_toolkit1/template
index d117d620ba5..7afe6179f33 100644
--- a/srcpkgs/python-prompt_toolkit1/template
+++ b/srcpkgs/python-prompt_toolkit1/template
@@ -2,7 +2,7 @@
 pkgname=python-prompt_toolkit1
 reverts="2.0.9_1"
 version=1.0.15
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From 57c7271a48a8bbbe98b24543dcd893c633048ac9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 389/871] python-prompt_toolkit2: rebuild for Python 3.8.

---
 srcpkgs/python-prompt_toolkit2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-prompt_toolkit2/template b/srcpkgs/python-prompt_toolkit2/template
index 0fa71fa06dc..d7f2fd11e14 100644
--- a/srcpkgs/python-prompt_toolkit2/template
+++ b/srcpkgs/python-prompt_toolkit2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-prompt_toolkit2'
 pkgname=python-prompt_toolkit2
 version=2.0.9
-revision=3
+revision=4
 archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python-module

From ea3a5bd036a6d0c005b2b52f979863bf5b45eb9d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 390/871] python-proselint: rebuild for Python 3.8.

---
 srcpkgs/python-proselint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-proselint/template b/srcpkgs/python-proselint/template
index c017c497386..b1da90de474 100644
--- a/srcpkgs/python-proselint/template
+++ b/srcpkgs/python-proselint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-proselint'
 pkgname=python-proselint
 version=0.10.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="proselint-${version}"
 build_style=python-module

From 9fc5d3fbcee5bce54111fff98320f1102572c7b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 391/871] python-protobuf: rebuild for Python 3.8.

---
 srcpkgs/python-protobuf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-protobuf/template b/srcpkgs/python-protobuf/template
index 4b736f1e7af..7dbed97fb76 100644
--- a/srcpkgs/python-protobuf/template
+++ b/srcpkgs/python-protobuf/template
@@ -1,7 +1,7 @@
 # Template file for 'python-protobuf'
 pkgname=python-protobuf
 version=3.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="protobuf-${version}"
 build_style=python-module

From bf1996a7d8603440166d2c45d9f3015ae13a8294 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 392/871] python-psutil: rebuild for Python 3.8.

---
 srcpkgs/python-psutil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psutil/template b/srcpkgs/python-psutil/template
index 96cbb3c399f..11353ed2179 100644
--- a/srcpkgs/python-psutil/template
+++ b/srcpkgs/python-psutil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psutil'
 pkgname=python-psutil
 version=5.6.3
-revision=1
+revision=2
 wrksrc="psutil-${version}"
 build_style=python-module
 pycompile_module="psutil"

From d499d446513255e2f8485620fb21bd0cbefbacf8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 393/871] python-psycopg2: rebuild for Python 3.8.

---
 srcpkgs/python-psycopg2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-psycopg2/template b/srcpkgs/python-psycopg2/template
index f41de2880e6..14b28b8aed1 100644
--- a/srcpkgs/python-psycopg2/template
+++ b/srcpkgs/python-psycopg2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-psycopg2'
 pkgname=python-psycopg2
 version=2.8.3
-revision=1
+revision=2
 wrksrc="psycopg2-${version}"
 build_style=python-module
 pycompile_module="psycopg2"

From e500b7da4593689ab2d22e06b03c40a355826cdc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:08 +0200
Subject: [PATCH 394/871] python-ptyprocess: rebuild for Python 3.8.

---
 srcpkgs/python-ptyprocess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ptyprocess/template b/srcpkgs/python-ptyprocess/template
index 04c4cf89391..fd2e51fa3ac 100644
--- a/srcpkgs/python-ptyprocess/template
+++ b/srcpkgs/python-ptyprocess/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ptyprocess'
 pkgname=python-ptyprocess
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ptyprocess-${version}"
 build_style=python-module

From d6b1c925c8312f786aec211c12ea50c29279fdcb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 395/871] python3-pulsectl: rebuild for Python 3.8.

---
 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 429dd1abe45..045afdb411b 100644
--- a/srcpkgs/python3-pulsectl/template
+++ b/srcpkgs/python3-pulsectl/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pulsectl'
 pkgname=python3-pulsectl
 version=19.9.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="pulsectl-${version}"
 build_style=python3-module

From 2cd5f20c3919f4c80193bda5bc56f1b986396ba6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 396/871] python-py: rebuild for Python 3.8.

---
 srcpkgs/python-py/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-py/template b/srcpkgs/python-py/template
index 99644bc228a..07a1ae2a21b 100644
--- a/srcpkgs/python-py/template
+++ b/srcpkgs/python-py/template
@@ -1,7 +1,7 @@
 # Template file for 'python-py'
 pkgname=python-py
 version=1.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="py-${version}"
 build_style=python-module

From b756caeb1658dcaa033902bf8696b80ec2bfd3f4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 397/871] python-pyPEG2: rebuild for Python 3.8.

---
 srcpkgs/python-pyPEG2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyPEG2/template b/srcpkgs/python-pyPEG2/template
index 113948af730..6ba175687f1 100644
--- a/srcpkgs/python-pyPEG2/template
+++ b/srcpkgs/python-pyPEG2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyPEG2'
 pkgname=python-pyPEG2
 version=2.15.2
-revision=4
+revision=5
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 163b038a01c1779b4e44a7ae1b8a9b30eb3da238 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 398/871] python-pyacoustid: rebuild for Python 3.8.

---
 srcpkgs/python-pyacoustid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyacoustid/template b/srcpkgs/python-pyacoustid/template
index 068d3d52649..d5b2d967f4e 100644
--- a/srcpkgs/python-pyacoustid/template
+++ b/srcpkgs/python-pyacoustid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyacoustid'
 pkgname=python-pyacoustid
 version=1.1.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyacoustid-${version}"
 build_style=python-module

From c9ff68281f3e1ece7753ece08d700abc93c6ec70 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 399/871] python-pyaes: rebuild for Python 3.8.

---
 srcpkgs/python-pyaes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyaes/template b/srcpkgs/python-pyaes/template
index a8c812a9e01..d31766d0481 100644
--- a/srcpkgs/python-pyaes/template
+++ b/srcpkgs/python-pyaes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyaes'
 pkgname=python-pyaes
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyaes-${version}"
 build_style=python-module

From 78f3ab6bcfb9a2bdb5ba4dc016984affc4dc35ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 400/871] python-pyasn1: rebuild for Python 3.8.

---
 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 510dfa09816..fcddad43633 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyasn1-${version}"
 build_style=python-module

From ec26f280972bacb1bdfc5456f4048d0edaf69365 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 401/871] python-pyasn1-modules: rebuild for Python 3.8.

---
 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 bc19e4940ed..b142819a272 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.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From f1d3fc36c465cbfdcabc505dd00695577a3af314 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:09 +0200
Subject: [PATCH 402/871] python3-pycares: rebuild for Python 3.8.

---
 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 c52702904b4..ed82808bada 100644
--- a/srcpkgs/python3-pycares/template
+++ b/srcpkgs/python3-pycares/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pycares'
 pkgname=python3-pycares
 version=2.3.0
-revision=2
+revision=3
 wrksrc="pycares-${version}"
 build_style=python3-module
 pycompile_module="pycares"

From 66fcfa3978b5be8bb3f9f052a904f40668fa0919 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 403/871] python-pycodestyle: rebuild for Python 3.8.

---
 srcpkgs/python-pycodestyle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycodestyle/template b/srcpkgs/python-pycodestyle/template
index ca20d8e0c97..08bc8c8bec7 100644
--- a/srcpkgs/python-pycodestyle/template
+++ b/srcpkgs/python-pycodestyle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycodestyle'
 pkgname=python-pycodestyle
 version=2.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycodestyle-${version}"
 build_style=python-module

From 458a7cd663d14ff12f84c5627586a2acbb6e8550 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 404/871] python-pycountry: rebuild for Python 3.8.

---
 srcpkgs/python-pycountry/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycountry/template b/srcpkgs/python-pycountry/template
index 88a0025f258..205db6240b7 100644
--- a/srcpkgs/python-pycountry/template
+++ b/srcpkgs/python-pycountry/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycountry'
 pkgname=python-pycountry
 version=18.12.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycountry-${version}"
 build_style=python-module

From 5aba7475fcb0db2e6af2b3635c32046fdb4bed9e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 405/871] python-pycparser: rebuild for Python 3.8.

---
 srcpkgs/python-pycparser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycparser/template b/srcpkgs/python-pycparser/template
index a521b3494ab..d2e83aa79b2 100644
--- a/srcpkgs/python-pycparser/template
+++ b/srcpkgs/python-pycparser/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycparser'
 pkgname=python-pycparser
 version=2.19
-revision=1
+revision=2
 archs=noarch
 wrksrc="pycparser-${version}"
 build_style=python-module

From 27bc1cecea0a32405093835ed43af3165e0e6135 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 406/871] python-pycryptodome: rebuild for Python 3.8.

---
 srcpkgs/python-pycryptodome/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pycryptodome/template b/srcpkgs/python-pycryptodome/template
index f01b5731c45..a4368d61b39 100644
--- a/srcpkgs/python-pycryptodome/template
+++ b/srcpkgs/python-pycryptodome/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pycryptodome'
 pkgname=python-pycryptodome
 version=3.9.0
-revision=1
+revision=2
 wrksrc="pycryptodome-${version}"
 build_style=python-module
 pycompile_module="Crypto"

From e69c73009d97176676b8b8006dd9cb34ff46b63a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 407/871] python-pyelftools: rebuild for Python 3.8.

---
 srcpkgs/python-pyelftools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyelftools/template b/srcpkgs/python-pyelftools/template
index a6e9e9b644e..193650442fc 100644
--- a/srcpkgs/python-pyelftools/template
+++ b/srcpkgs/python-pyelftools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyelftools'
 pkgname=python-pyelftools
 version=0.25
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyelftools-${version}"
 build_style=python-module

From a269c5b908f340d58c26ff8432b82c52fa106886 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 408/871] python3-pyfiglet: rebuild for Python 3.8.

---
 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 d00b4fda62a..a4a67b12d42 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=1
+revision=2
 archs=noarch
 wrksrc="pyfiglet-${version}"
 build_style="python3-module"

From 6b2f13c267d42fe553ae2d2a094a0ba15f99497f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:10 +0200
Subject: [PATCH 409/871] python-pyflakes: rebuild for Python 3.8.

---
 srcpkgs/python-pyflakes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyflakes/template b/srcpkgs/python-pyflakes/template
index 86d477c47f2..19229ebb3a4 100644
--- a/srcpkgs/python-pyflakes/template
+++ b/srcpkgs/python-pyflakes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyflakes'
 pkgname=python-pyflakes
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyflakes-${version}"
 build_style=python-module

From 4678939217e7195124b2610c11a5d3caafcdb0e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 410/871] python-pygame: rebuild for Python 3.8.

---
 srcpkgs/python-pygame/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pygame/template b/srcpkgs/python-pygame/template
index e8597c15cf6..4970301899a 100644
--- a/srcpkgs/python-pygame/template
+++ b/srcpkgs/python-pygame/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pygame'
 pkgname=python-pygame
 version=1.9.6
-revision=1
+revision=2
 wrksrc="pygame-${version}"
 build_style=python-module
 pycompile_module="pygame"

From c706be64876f43888b216ef6c87c1beafa7714a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 411/871] python-pyglet: rebuild for Python 3.8.

---
 srcpkgs/python-pyglet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyglet/template b/srcpkgs/python-pyglet/template
index f8315bdf616..ee6ed16064c 100644
--- a/srcpkgs/python-pyglet/template
+++ b/srcpkgs/python-pyglet/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyglet'
 pkgname=python-pyglet
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyglet-${version}"
 build_style=python-module

From e5d5a38278ce66c18f2dcbaec0456aee470ced7b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 412/871] python3-pykeepass: rebuild for Python 3.8.

---
 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 c0e0fd4db41..135da6fea65 100644
--- a/srcpkgs/python3-pykeepass/template
+++ b/srcpkgs/python3-pykeepass/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pykeepass'
 pkgname=python3-pykeepass
 version=3.0.3
-revision=2
+revision=3
 archs=noarch
 wrksrc="pykeepass-${version}"
 build_style=python3-module

From ff115326b5911210b9a17538a5f75831940c80e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 413/871] python3-pykwalify: rebuild for Python 3.8.

---
 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 27bc0c37355..b3727aba651 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.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pykwalify-${version}"
 build_style=python3-module

From 677c1c66573ce9eea4ba37803ecf501fc4a5beef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 414/871] python3-pylast: rebuild for Python 3.8.

---
 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 187b51943a8..60184348d80 100644
--- a/srcpkgs/python3-pylast/template
+++ b/srcpkgs/python3-pylast/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylast'
 pkgname=python3-pylast
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylast-${version}"
 build_style=python3-module

From a1144cacaed91d80d03e2b3ef0a55136964d98f8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 415/871] python3-pylibgen: rebuild for Python 3.8.

---
 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 641bf649c17..540ccb32790 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pylibgen-${version}"
 build_style=python3-module

From 2120b279392598aba39e0f5c007aa0a7f9f743fc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 416/871] python3-pylint: rebuild for Python 3.8.

---
 srcpkgs/python3-pylint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pylint/template b/srcpkgs/python3-pylint/template
index 6c8800069f0..315dbffb3fc 100644
--- a/srcpkgs/python3-pylint/template
+++ b/srcpkgs/python3-pylint/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pylint'
 pkgname=python3-pylint
 version=2.3.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="pylint-${version}"
 build_style=python3-module

From 0a520f127e57ac41b566e4f670ca70b39da57d7e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:11 +0200
Subject: [PATCH 417/871] python-pynacl: rebuild for Python 3.8.

---
 srcpkgs/python-pynacl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pynacl/template b/srcpkgs/python-pynacl/template
index 6ead91820b1..7a7fe246821 100644
--- a/srcpkgs/python-pynacl/template
+++ b/srcpkgs/python-pynacl/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pynacl'
 pkgname=python-pynacl
 version=1.3.0
-revision=1
+revision=2
 wrksrc="PyNaCl-${version}"
 build_style=python-module
 pycompile_module="nacl"

From 0809a2411eaaf0c5cf55c9793d5ef16bc931de64 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 418/871] python-pyotp: rebuild for Python 3.8.

---
 srcpkgs/python-pyotp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyotp/template b/srcpkgs/python-pyotp/template
index 54714ee2ebb..b70bd73d4aa 100644
--- a/srcpkgs/python-pyotp/template
+++ b/srcpkgs/python-pyotp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyotp'
 pkgname=python-pyotp
 version=2.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyotp-${version}"
 build_style=python-module

From 5526ad81f51bb41842512dcc0a3cbb58917e9049 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 419/871] python-pyperclip: rebuild for Python 3.8.

---
 srcpkgs/python-pyperclip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyperclip/template b/srcpkgs/python-pyperclip/template
index 512dc8d3dfb..b173f1479a5 100644
--- a/srcpkgs/python-pyperclip/template
+++ b/srcpkgs/python-pyperclip/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyperclip'
 pkgname=python-pyperclip
 version=1.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=pyperclip-${version}
 build_style=python-module

From 794e30779cbba809b8b11bd83ce57605eb96432f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 420/871] python-pyqtgraph: rebuild for Python 3.8.

---
 srcpkgs/python-pyqtgraph/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyqtgraph/template b/srcpkgs/python-pyqtgraph/template
index f90e2b15319..1bea9c2ffdf 100644
--- a/srcpkgs/python-pyqtgraph/template
+++ b/srcpkgs/python-pyqtgraph/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyqtgraph'
 pkgname=python-pyqtgraph
 version=0.10.0
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname#*-}-${pkgname#*-}-${version}"
 build_style=python-module

From a7c0d8bb69643c541c7f9958c30b473b2e65256d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 421/871] python-pyrfc3339: rebuild for Python 3.8.

---
 srcpkgs/python-pyrfc3339/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyrfc3339/template b/srcpkgs/python-pyrfc3339/template
index 618e46d1c4b..cd81c4d0624 100644
--- a/srcpkgs/python-pyrfc3339/template
+++ b/srcpkgs/python-pyrfc3339/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyrfc3339'
 pkgname=python-pyrfc3339
 version=1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="pyrfc3339"

From 225d8e46a72b12bb088c0e37d427679a7ce416b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 422/871] python-pyscss: rebuild for Python 3.8.

---
 srcpkgs/python-pyscss/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyscss/template b/srcpkgs/python-pyscss/template
index 1f7d8b7d8cd..1a8e9c44d7d 100644
--- a/srcpkgs/python-pyscss/template
+++ b/srcpkgs/python-pyscss/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyscss'
 pkgname=python-pyscss
 version=1.3.5
-revision=6
+revision=7
 wrksrc="pyScss-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools pcre-devel"

From 0d8d296a9805dbbb287b0716ff02712da4a028b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 423/871] python3-pysdl2: rebuild for Python 3.8.

---
 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 d59ea7d7fa2..3efdca5b667 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=1
+revision=2
 archs=noarch
 wrksrc="py-sdl2-rel_${version//./_}"
 build_style=python3-module

From 9f810037661c3d8a726d49cd5e5b21bf13e531d0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:12 +0200
Subject: [PATCH 424/871] python-pyserial: rebuild for Python 3.8.

---
 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 8808e76d206..354be493b16 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=2
+revision=3
 archs=noarch
 wrksrc="pyserial-${version}"
 build_style=python-module

From 69f0cfa0896867683b8f00d603c38bef0572c3eb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 425/871] python3-pyside2: rebuild for Python 3.8.

---
 srcpkgs/python3-pyside2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pyside2/template b/srcpkgs/python3-pyside2/template
index a5d60b17568..1da3400f239 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.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From 7e824ef90fe600a3d0f3a3dc537b91306673265e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 426/871] python3-pysigset: rebuild for Python 3.8.

---
 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 8de87145a09..50d9162ea70 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.3.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysigset-${version}"
 build_style=python3-module

From 4c4b138c123b078fa171272590d890ff49ffa3af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 427/871] python-pysocks: rebuild for Python 3.8.

---
 srcpkgs/python-pysocks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysocks/template b/srcpkgs/python-pysocks/template
index 68a27819e3d..d9b216aeab8 100644
--- a/srcpkgs/python-pysocks/template
+++ b/srcpkgs/python-pysocks/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysocks'
 pkgname=python-pysocks
 version=1.6.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="PySocks-${version}"
 build_style=python-module

From 831c500a21f8fe0566a80d1774a309975e30756e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 428/871] python3-pysol_cards: rebuild for Python 3.8.

---
 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 e03d92fe077..a37429754a2 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.8.6
-revision=1
+revision=2
 wrksrc="pysol_cards-${version}"
 build_style=python3-module
 pycompile_module="pysol_cards"

From 11e5ab3dadf526ed9922542de678362671ad7c0f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 429/871] python-pysrt: rebuild for Python 3.8.

---
 srcpkgs/python-pysrt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pysrt/template b/srcpkgs/python-pysrt/template
index 061435a52c7..7e154825bef 100644
--- a/srcpkgs/python-pysrt/template
+++ b/srcpkgs/python-pysrt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pysrt'
 pkgname=python-pysrt
 version=1.1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysrt-${version}"
 build_style=python-module

From a37c47738470833ddd3050f2db9e0fbc354adb53 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 430/871] python-pystache: rebuild for Python 3.8.

---
 srcpkgs/python-pystache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pystache/template b/srcpkgs/python-pystache/template
index 13f8b04aa88..c1a5bcd57d9 100644
--- a/srcpkgs/python-pystache/template
+++ b/srcpkgs/python-pystache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pystache'
 pkgname=python-pystache
 version=0.5.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pystache-${version}"
 build_style=python-module

From 36f4e0a0bdbb6997dac49b3b8fbc3b373129c317 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:13 +0200
Subject: [PATCH 431/871] python-pyte: rebuild for Python 3.8.

---
 srcpkgs/python-pyte/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyte/template b/srcpkgs/python-pyte/template
index 43b708adc66..76efbec91d1 100644
--- a/srcpkgs/python-pyte/template
+++ b/srcpkgs/python-pyte/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyte'
 pkgname=python-pyte
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyte-${version}"
 build_style=python-module

From eba979d262906525a673af63087716776367eddd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 432/871] python-pytest: rebuild for Python 3.8.

---
 srcpkgs/python-pytest/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest/template b/srcpkgs/python-pytest/template
index 6481f21e677..d5c246599c6 100644
--- a/srcpkgs/python-pytest/template
+++ b/srcpkgs/python-pytest/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest'
 pkgname=python-pytest
 version=3.7.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 2e73d95ed8554d79f19934aa65de0f284a1c3a4b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 433/871] python3-pytest-asyncio: rebuild for Python 3.8.

---
 srcpkgs/python3-pytest-asyncio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template
index bd104f99e2c..0c90d33a9e5 100644
--- a/srcpkgs/python3-pytest-asyncio/template
+++ b/srcpkgs/python3-pytest-asyncio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pytest-asyncio'
 pkgname=python3-pytest-asyncio
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytest-asyncio-${version}"
 build_style=python3-module

From 068c38d9af7f20a734f5c55306a9f0c977bf2618 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 434/871] python-pytest-fixture-config: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-fixture-config/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-fixture-config/template b/srcpkgs/python-pytest-fixture-config/template
index cd3e38a592a..14255af8a35 100644
--- a/srcpkgs/python-pytest-fixture-config/template
+++ b/srcpkgs/python-pytest-fixture-config/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-fixture-config'
 pkgname=python-pytest-fixture-config
 version=1.3.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 854b634fcd9840e71fcfb1230629f924d2c977b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 435/871] python-pytest-mock: rebuild for Python 3.8.

---
 srcpkgs/python-pytest-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytest-mock/template b/srcpkgs/python-pytest-mock/template
index f3dc85810b6..240e8773aaa 100644
--- a/srcpkgs/python-pytest-mock/template
+++ b/srcpkgs/python-pytest-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest-mock'
 pkgname=python-pytest-mock
 version=1.10.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From e9e6af44f6fcb833177ccebf35ec94a92e08ce20 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 436/871] python-pytz: rebuild for Python 3.8.

---
 srcpkgs/python-pytz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pytz/template b/srcpkgs/python-pytz/template
index d6becf829a7..40f582962c8 100644
--- a/srcpkgs/python-pytz/template
+++ b/srcpkgs/python-pytz/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytz'
 pkgname=python-pytz
 version=2019.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="pytz-${version}"
 build_style=python-module

From e095a9c982a87e42c0474e6dae543aa3e63d3813 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 437/871] python-pyudev: rebuild for Python 3.8.

---
 srcpkgs/python-pyudev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyudev/template b/srcpkgs/python-pyudev/template
index d059b7882a2..2ec53088636 100644
--- a/srcpkgs/python-pyudev/template
+++ b/srcpkgs/python-pyudev/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyudev'
 pkgname=python-pyudev
 version=0.21.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="pyudev-${version}"
 build_style=python-module

From 56b41dac846c92e788dd4fe66d30df48cb46c939 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 438/871] python3-pyx: rebuild for Python 3.8.

---
 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 87608c43428..89963bed89f 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.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="PyX-${version}"
 build_style=python3-module

From fa256797e2f50313b6f57c06aa7f33cea1307a52 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:14 +0200
Subject: [PATCH 439/871] python-pyzbar: rebuild for Python 3.8.

---
 srcpkgs/python-pyzbar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzbar/template b/srcpkgs/python-pyzbar/template
index 06ae37a5708..35b568eb4e6 100644
--- a/srcpkgs/python-pyzbar/template
+++ b/srcpkgs/python-pyzbar/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzbar'
 pkgname=python-pyzbar
 version=0.1.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyzbar-${version}"
 build_style=python-module

From 31d52cada5a6994a0f5b35f3c889ee63e47326c3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 440/871] python-pyzmq: rebuild for Python 3.8.

---
 srcpkgs/python-pyzmq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-pyzmq/template b/srcpkgs/python-pyzmq/template
index 859aab5983d..27dbe29e516 100644
--- a/srcpkgs/python-pyzmq/template
+++ b/srcpkgs/python-pyzmq/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pyzmq'
 pkgname=python-pyzmq
 version=18.0.1
-revision=1
+revision=2
 wrksrc="pyzmq-${version}"
 build_style=python-module
 make_build_args="--zmq=${XBPS_CROSS_BASE}/usr"

From 4cfb716814c18a8e5daf87033780dc23fe3cc21d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 441/871] python-qrcode: rebuild for Python 3.8.

---
 srcpkgs/python-qrcode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-qrcode/template b/srcpkgs/python-qrcode/template
index 9deb485855f..bf35c82757e 100644
--- a/srcpkgs/python-qrcode/template
+++ b/srcpkgs/python-qrcode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-qrcode'
 pkgname=python-qrcode
 version=6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="qrcode-${version}"
 build_style=python-module

From 11b27c141238290b000897965decb78612ec0498 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 442/871] python-random2: rebuild for Python 3.8.

---
 srcpkgs/python-random2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-random2/template b/srcpkgs/python-random2/template
index 92f36fee139..2603cae3584 100644
--- a/srcpkgs/python-random2/template
+++ b/srcpkgs/python-random2/template
@@ -1,7 +1,7 @@
 # Template file for 'python-random2'
 pkgname=python-random2
 version=1.0.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="random2-${version}"
 build_style=python-module

From 906c8d70b432a8b33e74465c9d6a739cea8ab9ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 443/871] python-rarfile: rebuild for Python 3.8.

---
 srcpkgs/python-rarfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rarfile/template b/srcpkgs/python-rarfile/template
index e0c597c1fb1..e3b6f3e2887 100644
--- a/srcpkgs/python-rarfile/template
+++ b/srcpkgs/python-rarfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rarfile'
 pkgname=python-rarfile
 version=3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="rarfile-${version}"
 build_style=python-module

From 869e39b2290989657b956cf65e98af599bc5d817 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 444/871] python-raven: rebuild for Python 3.8.

---
 srcpkgs/python-raven/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-raven/template b/srcpkgs/python-raven/template
index eec4e5f49b6..87382c21602 100644
--- a/srcpkgs/python-raven/template
+++ b/srcpkgs/python-raven/template
@@ -1,7 +1,7 @@
 # Template file for 'python-raven'
 pkgname=python-raven
 version=6.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="raven-${version}"
 build_style=python-module

From 338f3d5dc3a8d06c0bda0a913c268d4d37c5deef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 445/871] python-rdflib: rebuild for Python 3.8.

---
 srcpkgs/python-rdflib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rdflib/template b/srcpkgs/python-rdflib/template
index 0512abb0e5a..f676dedfb2f 100644
--- a/srcpkgs/python-rdflib/template
+++ b/srcpkgs/python-rdflib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rdflib'
 pkgname=python-rdflib
 version=4.2.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="rdflib-${version}"
 build_style=python-module

From e05cbd7301fd25dab8143d8753d42423436d7d07 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:15 +0200
Subject: [PATCH 446/871] python-readability-lxml: rebuild for Python 3.8.

---
 srcpkgs/python-readability-lxml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-readability-lxml/template b/srcpkgs/python-readability-lxml/template
index ddf0602b730..19dadaa336f 100644
--- a/srcpkgs/python-readability-lxml/template
+++ b/srcpkgs/python-readability-lxml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-readability-lxml'
 pkgname=python-readability-lxml
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="readability-lxml-${version}"
 build_style=python-module

From e78558a9a1326c39181c96d655e9edd470876e58 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 447/871] python3-readlike: rebuild for Python 3.8.

---
 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 cbba969b076..43159962442 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=1
+revision=2
 archs=noarch
 wrksrc=readlike-${version}
 build_style=python3-module

From ae3f7b29204e6167e0210028117a517c540048a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 448/871] python-rebulk: rebuild for Python 3.8.

---
 srcpkgs/python-rebulk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rebulk/template b/srcpkgs/python-rebulk/template
index 1cf6cf623c8..8f9c2621304 100644
--- a/srcpkgs/python-rebulk/template
+++ b/srcpkgs/python-rebulk/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rebulk'
 pkgname=python-rebulk
 version=2.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rebulk-${version}"
 build_style=python-module

From dbd642a5357a64271088d5174ce946cd317c1fd2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 449/871] python-redis: rebuild for Python 3.8.

---
 srcpkgs/python-redis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-redis/template b/srcpkgs/python-redis/template
index f57c0d841b3..b7e773fde54 100644
--- a/srcpkgs/python-redis/template
+++ b/srcpkgs/python-redis/template
@@ -1,7 +1,7 @@
 # Template file for 'python-redis'
 pkgname=python-redis
 version=2.10.6
-revision=2
+revision=3
 archs=noarch
 wrksrc="redis-${version}"
 build_style=python-module

From 37f438cfa0647f77a8953b504ae16e7cd5c3b425 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 450/871] python-regex: rebuild for Python 3.8.

---
 srcpkgs/python-regex/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-regex/template b/srcpkgs/python-regex/template
index 33e99b0127b..7a624db9477 100644
--- a/srcpkgs/python-regex/template
+++ b/srcpkgs/python-regex/template
@@ -1,7 +1,7 @@
 # Template file for 'python-regex'
 pkgname=python-regex
 version=2019.08.19
-revision=1
+revision=2
 wrksrc="regex-${version}"
 build_style=python-module
 pycompile_module="_regex_core.py regex.py test_regex.py"

From 69fea0727ca46bacdc071ed6991df85448119ec2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 451/871] python-rencode: rebuild for Python 3.8.

---
 srcpkgs/python-rencode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rencode/template b/srcpkgs/python-rencode/template
index 7176038a60a..021e1d414b8 100644
--- a/srcpkgs/python-rencode/template
+++ b/srcpkgs/python-rencode/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rencode'
 pkgname=python-rencode
 version=1.0.6
-revision=2
+revision=3
 wrksrc="rencode-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"

From fae7db57d64d7568b36fa26582b08eeda0b396be Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 452/871] python-reportlab: rebuild for Python 3.8.

---
 srcpkgs/python-reportlab/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-reportlab/template b/srcpkgs/python-reportlab/template
index 7f153d65a2a..3915767b6d3 100644
--- a/srcpkgs/python-reportlab/template
+++ b/srcpkgs/python-reportlab/template
@@ -1,7 +1,7 @@
 # Template file for 'python-reportlab'
 pkgname=python-reportlab
 version=3.5.23
-revision=1
+revision=2
 wrksrc="reportlab-${version}"
 build_style=python-module
 pycompile_module="reportlab"

From abb92b85648ed53cca412fee4d121a9404d6649f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 453/871] python-requests: rebuild for Python 3.8.

---
 srcpkgs/python-requests/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests/template b/srcpkgs/python-requests/template
index fc806b611e9..73d2d5945ef 100644
--- a/srcpkgs/python-requests/template
+++ b/srcpkgs/python-requests/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests'
 pkgname=python-requests
 version=2.22.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-${version}"
 build_style=python-module

From 86359ff8f64625425e2af536712cdf49592df458 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:16 +0200
Subject: [PATCH 454/871] python-requests-mock: rebuild for Python 3.8.

---
 srcpkgs/python-requests-mock/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-mock/template b/srcpkgs/python-requests-mock/template
index 5b89b5ed3b8..2d1410fcd1b 100644
--- a/srcpkgs/python-requests-mock/template
+++ b/srcpkgs/python-requests-mock/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-mock'
 pkgname=python-requests-mock
 version=1.5.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="requests-mock-${version}"
 build_style=python-module

From 989806ffdef821f87a965d700a06b190a18e895b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 455/871] python-requests-oauthlib: rebuild for Python 3.8.

---
 srcpkgs/python-requests-oauthlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-oauthlib/template b/srcpkgs/python-requests-oauthlib/template
index b011ea17a36..8cd838090a7 100644
--- a/srcpkgs/python-requests-oauthlib/template
+++ b/srcpkgs/python-requests-oauthlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-oauthlib'
 pkgname=python-requests-oauthlib
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From f6a695f88687d589141bdfbb10d9694e5f53bd7a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 456/871] python-requests-toolbelt: rebuild for Python 3.8.

---
 srcpkgs/python-requests-toolbelt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-requests-toolbelt/template b/srcpkgs/python-requests-toolbelt/template
index 3ba66a0a007..13a81586221 100644
--- a/srcpkgs/python-requests-toolbelt/template
+++ b/srcpkgs/python-requests-toolbelt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-requests-toolbelt'
 pkgname=python-requests-toolbelt
 version=0.9.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 76c9c2dbe5ce7dfad8e9ca2b0cc42b7c01dd5447 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 457/871] python3-requests-unixsocket: rebuild for Python 3.8.

---
 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 ec9e1074566..fd389ec2d13 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.2.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="requests-unixsocket-${version}"
 build_style=python3-module

From e8365bb377e1d4b402f9eeb6cfc462cd4428f8a6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 458/871] python-rfc6555: rebuild for Python 3.8.

---
 srcpkgs/python-rfc6555/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rfc6555/template b/srcpkgs/python-rfc6555/template
index c3babc25b93..2522872cc32 100644
--- a/srcpkgs/python-rfc6555/template
+++ b/srcpkgs/python-rfc6555/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rfc6555'
 pkgname=python-rfc6555
 version=0.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="rfc6555-${version}"
 build_style=python-module

From d4985d66b9020f9ed8d9b4e95f2700a70864667e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 459/871] python-ripe-atlas-cousteau: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-cousteau/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-cousteau/template b/srcpkgs/python-ripe-atlas-cousteau/template
index ac16300fe3d..72f32a9da0d 100644
--- a/srcpkgs/python-ripe-atlas-cousteau/template
+++ b/srcpkgs/python-ripe-atlas-cousteau/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-cousteau'
 pkgname=python-ripe-atlas-cousteau
 version=1.4.2
-revision=1
+revision=2
 build_style=python-module
 archs=noarch
 pycompile_module="ripe/atlas/cousteau"

From 4e3df75959dc80d41dc5914b9e331820884ea336 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 460/871] python-ripe-atlas-sagan: rebuild for Python 3.8.

---
 srcpkgs/python-ripe-atlas-sagan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ripe-atlas-sagan/template b/srcpkgs/python-ripe-atlas-sagan/template
index 60a9b883b93..22abb48af46 100644
--- a/srcpkgs/python-ripe-atlas-sagan/template
+++ b/srcpkgs/python-ripe-atlas-sagan/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ripe-atlas-sagan'
 pkgname=python-ripe-atlas-sagan
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="ripe.atlas.sagan-${version}"
 build_style=python-module

From 59d57451c0d97bc06b911fb4d7702ce883c7e4a7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:17 +0200
Subject: [PATCH 461/871] python-rsa: rebuild for Python 3.8.

---
 srcpkgs/python-rsa/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-rsa/template b/srcpkgs/python-rsa/template
index a4ae59846ff..11e9bf2c60d 100644
--- a/srcpkgs/python-rsa/template
+++ b/srcpkgs/python-rsa/template
@@ -1,7 +1,7 @@
 # Template file for 'python-rsa'
 pkgname=python-rsa
 version=4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From c0e0b75987603b88d4b30987e65b71d1d6609431 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 462/871] python3-rsistent: rebuild for Python 3.8.

---
 srcpkgs/python3-rsistent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-rsistent/template b/srcpkgs/python3-rsistent/template
index 13019f472cd..7897e107b2b 100644
--- a/srcpkgs/python3-rsistent/template
+++ b/srcpkgs/python3-rsistent/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-rsistent'
 pkgname=python3-rsistent
 version=0.15.4
-revision=1
+revision=2
 wrksrc="pyrsistent-${version}"
 build_style=python3-module
 pycompile_module="pyrsistent"

From 2597df7c11892e8219c9f6e8ebaabd2e1993ed87 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 463/871] python3-rss2email: rebuild for Python 3.8.

---
 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 d07984d33d8..34e7d4e65a6 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.10
-revision=1
+revision=2
 archs=noarch
 wrksrc="rss2email-${version}"
 build_style=python3-module

From 6a9adf49fa783613c85b8b7e87067ca97155fe8a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 464/871] python-ruamel.yaml: rebuild for Python 3.8.

---
 srcpkgs/python-ruamel.yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ruamel.yaml/template b/srcpkgs/python-ruamel.yaml/template
index d86ddfc67c9..789f8a7acd2 100644
--- a/srcpkgs/python-ruamel.yaml/template
+++ b/srcpkgs/python-ruamel.yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ruamel.yaml'
 pkgname=python-ruamel.yaml
 version=0.15.92
-revision=1
+revision=2
 wrksrc="ruamel.yaml-${version}"
 build_style=python-module
 pycompile_module="ruamel/yaml"

From 540117218d41374fef87bebff9e538c49e868a27 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 465/871] python3-s-tui: rebuild for Python 3.8.

---
 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 4c7db6ff3c9..85a945b1b09 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=0.8.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="s-tui-${version}"
 build_style=python3-module

From c7704bb1a1a995a00d8431b2d6b6d2b27bafd833 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 466/871] python-s3transfer: rebuild for Python 3.8.

---
 srcpkgs/python-s3transfer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-s3transfer/template b/srcpkgs/python-s3transfer/template
index e306c3c3b1a..dd92eeff657 100644
--- a/srcpkgs/python-s3transfer/template
+++ b/srcpkgs/python-s3transfer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-s3transfer'
 pkgname=python-s3transfer
 version=0.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="s3transfer-${version}"
 build_style=python-module

From 654f32de029fffe9e8b59c874be946b3c5c4c60e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 467/871] python3-saml2: rebuild for Python 3.8.

---
 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 e94602a82ea..c0dabb5e9d0 100644
--- a/srcpkgs/python3-saml2/template
+++ b/srcpkgs/python3-saml2/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-saml2'
 pkgname=python3-saml2
 version=4.8.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="pysaml2-${version}"
 build_style=python3-module

From 809286f6b0df87dab26ddc02e57285e05c5c7114 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:18 +0200
Subject: [PATCH 468/871] python-scandir: rebuild for Python 3.8.

---
 srcpkgs/python-scandir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scandir/template b/srcpkgs/python-scandir/template
index 774fac91b8f..b02fe6d0281 100644
--- a/srcpkgs/python-scandir/template
+++ b/srcpkgs/python-scandir/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scandir'
 pkgname=python-scandir
 version=1.10.0
-revision=2
+revision=3
 wrksrc="scandir-${version}"
 build_style=python-module
 pycompile_module="scandir.py"

From 6f135d159b5a40d57ea469b6477f303679a1167e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 469/871] python3-scard: rebuild for Python 3.8.

---
 srcpkgs/python3-scard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scard/template b/srcpkgs/python3-scard/template
index 793f144a74b..279419ac3e3 100644
--- a/srcpkgs/python3-scard/template
+++ b/srcpkgs/python3-scard/template
@@ -2,7 +2,7 @@
 pkgname=python3-scard
 _pkgname=pyscard
 version=1.9.8
-revision=1
+revision=2
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module
 pycompile_module=smartcard

From ae3e6b1e760d0cb20c4d5cd06e6076d674ebd398 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 470/871] python3-scikit-learn: rebuild for Python 3.8.

---
 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 73799b9f420..8ac82167832 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.20.4
-revision=1
+revision=2
 wrksrc="scikit-learn-${version}"
 build_style=python3-module
 pycompile_module="sklearn"

From d9b1e5ce2c44fecd8e58991153dac24a14ed2261 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 471/871] python3-scipy: rebuild for Python 3.8.

---
 srcpkgs/python3-scipy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-scipy/template b/srcpkgs/python3-scipy/template
index 291ac3734f1..2cef9ac33e1 100644
--- a/srcpkgs/python3-scipy/template
+++ b/srcpkgs/python3-scipy/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-scipy'
 pkgname=python3-scipy
 version=1.3.1
-revision=1
+revision=2
 wrksrc="scipy-${version}"
 build_style=python3-module
 pycompile_module="scipy"

From fe30d241ec54ba78820981defda976b37278d36e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 472/871] python-scour: rebuild for Python 3.8.

---
 srcpkgs/python-scour/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-scour/template b/srcpkgs/python-scour/template
index b78cf37f057..0db5b157ce1 100644
--- a/srcpkgs/python-scour/template
+++ b/srcpkgs/python-scour/template
@@ -1,7 +1,7 @@
 # Template file for 'python-scour'
 pkgname=python-scour
 version=0.37
-revision=1
+revision=2
 archs=noarch
 wrksrc="scour-${version}"
 build_style=python-module

From 2eca359c1d25d75a6a50d1e0c5304e576036beca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 473/871] python3-scruffy: rebuild for Python 3.8.

---
 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 e797b110f42..62a21a74eca 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.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="scruffy-${version}"
 build_style=python3-module

From ba146d77b6d97980c1f83596ab2842db780e91bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 474/871] python-send2trash: rebuild for Python 3.8.

---
 srcpkgs/python-send2trash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-send2trash/template b/srcpkgs/python-send2trash/template
index 49c3a2b3d77..94f56545695 100644
--- a/srcpkgs/python-send2trash/template
+++ b/srcpkgs/python-send2trash/template
@@ -1,7 +1,7 @@
 # Template file for 'python-send2trash'
 pkgname=python-send2trash
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="send2trash-${version}"
 build_style=python-module

From 5cdcea7f6142b9e2231e27fd2b2c9759ef3147b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 475/871] python-serpent: rebuild for Python 3.8.

---
 srcpkgs/python-serpent/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-serpent/template b/srcpkgs/python-serpent/template
index b60d390c1ab..a40f0d44515 100644
--- a/srcpkgs/python-serpent/template
+++ b/srcpkgs/python-serpent/template
@@ -1,7 +1,7 @@
 # Template file for 'python-serpent'
 pkgname=python-serpent
 version=1.28
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 78ff8a5bdc61ca5da810d668e2b9bfef9708d679 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:19 +0200
Subject: [PATCH 476/871] python-service_identity: rebuild for Python 3.8.

---
 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 eae084c858f..e21a1520a75 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=1
+revision=2
 archs=noarch
 wrksrc="service_identity-${version}"
 build_style=python-module

From 2bfd99ea9af033dc5dde546bb869bb7cbc14f27c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 477/871] setconf: rebuild for Python 3.8.

---
 srcpkgs/setconf/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/setconf/template b/srcpkgs/setconf/template
index a3d22376a5b..1911c558c77 100644
--- a/srcpkgs/setconf/template
+++ b/srcpkgs/setconf/template
@@ -1,7 +1,7 @@
 # Template file for 'setconf'
 pkgname=setconf
 version=0.7.6
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="setconf.py"

From 27b2fe6409f92006625950e33e5cc315ac120ab9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 478/871] python-setproctitle: rebuild for Python 3.8.

---
 srcpkgs/python-setproctitle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setproctitle/template b/srcpkgs/python-setproctitle/template
index d0d41ae888d..c47e3a9db53 100644
--- a/srcpkgs/python-setproctitle/template
+++ b/srcpkgs/python-setproctitle/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setproctitle'
 pkgname=python-setproctitle
 version=1.1.10
-revision=5
+revision=6
 wrksrc="setproctitle-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From df177a58fbbb9102149a1552104e603cd9048d51 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 479/871] python-setuptools: rebuild for Python 3.8.

---
 srcpkgs/python-setuptools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-setuptools/template b/srcpkgs/python-setuptools/template
index 382a9b45bcd..a172f8e8e09 100644
--- a/srcpkgs/python-setuptools/template
+++ b/srcpkgs/python-setuptools/template
@@ -1,7 +1,7 @@
 # Template file for 'python-setuptools'
 pkgname=python-setuptools
 version=41.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python-module

From fefeb3ac7659adf5f80bd56831999dc84efa6fd8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 480/871] python-sh: rebuild for Python 3.8.

---
 srcpkgs/python-sh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sh/template b/srcpkgs/python-sh/template
index 1826986b25c..76985dc1f01 100644
--- a/srcpkgs/python-sh/template
+++ b/srcpkgs/python-sh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sh'
 pkgname=python-sh
 version=1.12.14
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From fee3a07c7dd5ff352333d4d8536f464dcc92696d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 481/871] python-shapely: rebuild for Python 3.8.

---
 srcpkgs/python-shapely/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-shapely/template b/srcpkgs/python-shapely/template
index 25cc875a02c..114726838f9 100644
--- a/srcpkgs/python-shapely/template
+++ b/srcpkgs/python-shapely/template
@@ -1,7 +1,7 @@
 # Template file for 'python-shapely'
 pkgname=python-shapely
 version=1.7a1
-revision=2
+revision=3
 wrksrc="Shapely-${version}"
 build_style=python-module
 pycompile_module="shapely"

From d54085271b4ec42c7312802d629193b85038edfd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 482/871] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index d552ce8432d..1f9c8043b46 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=4
+revision=5
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From 78375c434d22a6133dd4903028030715a4bd1318 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:20 +0200
Subject: [PATCH 483/871] shiboken2: rebuild for Python 3.8.

---
 srcpkgs/shiboken2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken2/template b/srcpkgs/shiboken2/template
index 394d9ba4f94..a08edf3f2a0 100644
--- a/srcpkgs/shiboken2/template
+++ b/srcpkgs/shiboken2/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken2'
 pkgname=shiboken2
 version=5.11.2
-revision=2
+revision=3
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DUSE_PYTHON_VERSION=3 -DCMAKE_INSTALL_PREFIX=/usr

From b6da63692b13118514b4e8abe7e4adc41d5678ae Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 484/871] python3-shodan: rebuild for Python 3.8.

---
 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 858a0b921f8..033b5a269ff 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.19.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="shodan-python-${version}"
 build_style=python3-module

From 3a2c14e52370356a18efef5516beb9c2e179f159 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 485/871] python3-signedjson: rebuild for Python 3.8.

---
 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 6f6fb339fd2..d8f9b06b22f 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.0.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-signedjson-${version}"
 build_style=python3-module

From 04a8077d16ae9f7dcab8dc863bca7c9372a5075d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 486/871] python-simplebayes: rebuild for Python 3.8.

---
 srcpkgs/python-simplebayes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplebayes/template b/srcpkgs/python-simplebayes/template
index e76b94ad549..6c95222fa7e 100644
--- a/srcpkgs/python-simplebayes/template
+++ b/srcpkgs/python-simplebayes/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplebayes'
 pkgname=python-simplebayes
 version=1.5.8
-revision=1
+revision=2
 archs=noarch
 wrksrc="simplebayes-${version}"
 build_style=python-module

From 0ca6aa08539f89c9faeba81b5845357dec97c5e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 487/871] python-simplegeneric: rebuild for Python 3.8.

---
 srcpkgs/python-simplegeneric/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplegeneric/template b/srcpkgs/python-simplegeneric/template
index 3dc4e1dda94..f352387fa1f 100644
--- a/srcpkgs/python-simplegeneric/template
+++ b/srcpkgs/python-simplegeneric/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplegeneric'
 pkgname=python-simplegeneric
 version=0.8.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="simplegeneric-${version}"
 build_style=python-module

From f144caacd87b9e009a3c6257ff35d53ec6b7a195 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 488/871] python-simplejson: rebuild for Python 3.8.

---
 srcpkgs/python-simplejson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-simplejson/template b/srcpkgs/python-simplejson/template
index b453ae952ba..1b8523d0d46 100644
--- a/srcpkgs/python-simplejson/template
+++ b/srcpkgs/python-simplejson/template
@@ -1,7 +1,7 @@
 # Template file for 'python-simplejson'
 pkgname=python-simplejson
 version=3.16.1
-revision=2
+revision=3
 wrksrc="simplejson-${version}"
 build_style=python-module
 pycompile_module="simplejson"

From 2c4eeffbfe156ce6e652a392c19362e77217a28d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 489/871] sip: rebuild for Python 3.8.

---
 srcpkgs/sip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sip/template b/srcpkgs/sip/template
index d21275bd26e..96a8f1f5dc6 100644
--- a/srcpkgs/sip/template
+++ b/srcpkgs/sip/template
@@ -1,7 +1,7 @@
 # Template file for 'sip'
 pkgname=sip
 version=4.19.19
-revision=1
+revision=2
 hostmakedepends="python-devel python3-devel"
 makedepends="${hostmakedepends}"
 short_desc="Python extension module generator for C/C++ libraries"

From 98df4dc3851f20f87a3280115cf347b799ec09d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:21 +0200
Subject: [PATCH 490/871] python-six: rebuild for Python 3.8.

---
 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 c6d91f5ece9..a25323caa2a 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.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="six-${version}"
 build_style=python-module

From e642734789a2f8449389f7329b99f2907a2753ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 491/871] python3-slixmpp: rebuild for Python 3.8.

---
 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 db367c3d0ab..cbbde6f394b 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.4.2
-revision=1
+revision=2
 wrksrc="slixmpp-${version}"
 build_style=python3-module
 pycompile_module="slixmpp"

From 3f16ac762475d52dcf3ef10cd602ebbb6ab43c54 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 492/871] python3-slugify: rebuild for Python 3.8.

---
 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 44d37f2aed7..012bb98f063 100644
--- a/srcpkgs/python3-slugify/template
+++ b/srcpkgs/python3-slugify/template
@@ -3,7 +3,7 @@ pkgname=python3-slugify
 # Please don't update. Only required by Transifx-client,
 # doesn't work with newer versions
 version=1.2.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-slugify-${version}"
 build_style=python3-module

From acda657beb2511d9f7839d73e6720233f525da50 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 493/871] python-smbc: rebuild for Python 3.8.

---
 srcpkgs/python-smbc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smbc/template b/srcpkgs/python-smbc/template
index abc745f8982..6a280139a25 100644
--- a/srcpkgs/python-smbc/template
+++ b/srcpkgs/python-smbc/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smbc'
 pkgname=python-smbc
 version=1.0.16
-revision=1
+revision=2
 wrksrc="pysmbc-${version}"
 build_style=python-module
 pycompile_module="smbc"

From d83404b5344a976bfe7f253c69bbac76d7b86a78 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 494/871] python-smmap: rebuild for Python 3.8.

---
 srcpkgs/python-smmap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-smmap/template b/srcpkgs/python-smmap/template
index 4aa0c37ff40..8c8ea952285 100644
--- a/srcpkgs/python-smmap/template
+++ b/srcpkgs/python-smmap/template
@@ -1,7 +1,7 @@
 # Template file for 'python-smmap'
 pkgname=python-smmap
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="smmap-${version}"
 build_style=python-module

From 7ab70f6590c54850f63f3e98be0b1b1ac3afcdc0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 495/871] python-snakeoil: rebuild for Python 3.8.

---
 srcpkgs/python-snakeoil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snakeoil/template b/srcpkgs/python-snakeoil/template
index 9c98461c555..79e964d9254 100644
--- a/srcpkgs/python-snakeoil/template
+++ b/srcpkgs/python-snakeoil/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snakeoil'
 pkgname=python-snakeoil
 version=0.7.5
-revision=2
+revision=3
 wrksrc="snakeoil-${version}"
 build_style=python-module
 pycompile_module="snakeoil"

From 4b9dd2429d66fba899a27b2c01329bbe6efb44b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 496/871] python-snappy: rebuild for Python 3.8.

---
 srcpkgs/python-snappy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snappy/template b/srcpkgs/python-snappy/template
index ac386f64fae..b1870cbe681 100644
--- a/srcpkgs/python-snappy/template
+++ b/srcpkgs/python-snappy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snappy'
 pkgname=python-snappy
 version=0.5.4
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="snappy"
 hostmakedepends="python-setuptools python3-setuptools"

From 12028fd1ca081e11de04a55fb7e492c08875fca2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:22 +0200
Subject: [PATCH 497/871] python-snowballstemmer: rebuild for Python 3.8.

---
 srcpkgs/python-snowballstemmer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-snowballstemmer/template b/srcpkgs/python-snowballstemmer/template
index 6c21632cffa..221478860e5 100644
--- a/srcpkgs/python-snowballstemmer/template
+++ b/srcpkgs/python-snowballstemmer/template
@@ -1,7 +1,7 @@
 # Template file for 'python-snowballstemmer'
 pkgname=python-snowballstemmer
 version=1.2.1
-revision=3
+revision=4
 archs=noarch
 wrksrc="snowballstemmer-${version}"
 build_style=python-module

From 78d3ee780c27c3623e44d5a2777bd86f69cbf6a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 498/871] python-socketIO-client: rebuild for Python 3.8.

---
 srcpkgs/python-socketIO-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-socketIO-client/template b/srcpkgs/python-socketIO-client/template
index 32fdac4117d..9495d7cf40b 100644
--- a/srcpkgs/python-socketIO-client/template
+++ b/srcpkgs/python-socketIO-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-socketIO-client'
 pkgname=python-socketIO-client
 version=0.7.2
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 pycompile_module="socketIO_client"

From 432996bde2d62c80691d2b2c7df314eb66d562ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 499/871] python3-sortedcontainers: rebuild for Python 3.8.

---
 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 2b531ded9b6..41d87d4ebd0 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.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="sortedcontainers-${version}"
 build_style=python3-module

From 41b4d555321b7d4c1b035ab3dd8ac1b6a5bd8fbb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 500/871] python-soupsieve: rebuild for Python 3.8.

---
 srcpkgs/python-soupsieve/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-soupsieve/template b/srcpkgs/python-soupsieve/template
index 586553ca759..63b65c5910f 100644
--- a/srcpkgs/python-soupsieve/template
+++ b/srcpkgs/python-soupsieve/template
@@ -1,7 +1,7 @@
 # Template file for 'python-soupsieve'
 pkgname=python-soupsieve
 version=1.9.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="soupsieve-${version}"
 build_style=python-module

From 033d8993c10d4188a11faea0827c0b43080f7c3f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 501/871] python3-spake2: rebuild for Python 3.8.

---
 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 ff83afed1d6..dc0cdced747 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=1
+revision=2
 archs=noarch
 wrksrc="python-spake2-${version}"
 build_style=python3-module

From 9c8170dcff7be06d2901e47ad836aadc5a8abcc5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 502/871] python-sphinx_rtd_theme: rebuild for Python 3.8.

---
 srcpkgs/python-sphinx_rtd_theme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinx_rtd_theme/template b/srcpkgs/python-sphinx_rtd_theme/template
index 90def1c9d1d..ebd4f13da8f 100644
--- a/srcpkgs/python-sphinx_rtd_theme/template
+++ b/srcpkgs/python-sphinx_rtd_theme/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinx_rtd_theme'
 pkgname=python-sphinx_rtd_theme
 version=0.4.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinx_rtd_theme-${version}"
 build_style=python-module

From 4f0cbca2d9fed978866c5245bbd3bd62deddc90b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 503/871] python-sphinxcontrib: rebuild for Python 3.8.

---
 srcpkgs/python-sphinxcontrib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib/template b/srcpkgs/python-sphinxcontrib/template
index ce3befc56d7..c6789cc77f5 100644
--- a/srcpkgs/python-sphinxcontrib/template
+++ b/srcpkgs/python-sphinxcontrib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib'
 pkgname=python-sphinxcontrib
 version=1.0
-revision=2
+revision=3
 archs=noarch
 create_wrksrc=yes
 pycompile_module="sphinxcontrib"

From 6db0fb9b5aa64fe98c027afdf80526bab481ef19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 504/871] python-sphinxcontrib-websupport: rebuild for Python
 3.8.

---
 srcpkgs/python-sphinxcontrib-websupport/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sphinxcontrib-websupport/template b/srcpkgs/python-sphinxcontrib-websupport/template
index 2236e50b25b..5387dec6519 100644
--- a/srcpkgs/python-sphinxcontrib-websupport/template
+++ b/srcpkgs/python-sphinxcontrib-websupport/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sphinxcontrib-websupport'
 pkgname=python-sphinxcontrib-websupport
 version=1.1.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="sphinxcontrib-websupport-${version}"
 build_style=python-module

From 260c26299919df4bc92dbba7c99a8257b8fa0076 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:23 +0200
Subject: [PATCH 505/871] python-sqlalchemy-migrate: rebuild for Python 3.8.

---
 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 cfdf6166695..bb002660c0f 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=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 3a0e2a10f0aac0e672cbd7a60f2921b6abe69367 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 506/871] python-sqlparse: rebuild for Python 3.8.

---
 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 29a477db392..0f8c6f8ea2e 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=1
+revision=2
 archs=noarch
 wrksrc="sqlparse-${version}"
 build_style=python-module

From fcb19c895342c074087e7bfc0a7a1e449adb19b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 507/871] python-stem: rebuild for Python 3.8.

---
 srcpkgs/python-stem/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index e04ae0a848c..e16e79d84bb 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stem'
 pkgname=python-stem
 version=1.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stem-${version/b/}"
 build_style=python-module

From 01c92426aaa207fab5a2e7f09c408d1010646ccb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 508/871] python-stevedore: rebuild for Python 3.8.

---
 srcpkgs/python-stevedore/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stevedore/template b/srcpkgs/python-stevedore/template
index 281538211af..4f781304d3f 100644
--- a/srcpkgs/python-stevedore/template
+++ b/srcpkgs/python-stevedore/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stevedore'
 pkgname=python-stevedore
 version=1.30.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="stevedore-${version}"
 build_style=python-module

From 3b3e59e735db72dd1e706bbb8dfa324f2527f6ba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 509/871] python-stormssh: rebuild for Python 3.8.

---
 srcpkgs/python-stormssh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-stormssh/template b/srcpkgs/python-stormssh/template
index 250e838e582..11f63f67bba 100644
--- a/srcpkgs/python-stormssh/template
+++ b/srcpkgs/python-stormssh/template
@@ -1,7 +1,7 @@
 # Template file for 'python-stormssh'
 pkgname=python-stormssh
 version=0.7.0
-revision=1
+revision=2
 archs=noarch
 wrksrc=storm-${version}
 build_style=python-module

From 0235788df4a40b6af2d014edcf779cce9e5ad59b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 510/871] python-subliminal: rebuild for Python 3.8.

---
 srcpkgs/python-subliminal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-subliminal/template b/srcpkgs/python-subliminal/template
index 035ca844880..216c11bb4c0 100644
--- a/srcpkgs/python-subliminal/template
+++ b/srcpkgs/python-subliminal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-subliminal'
 pkgname=python-subliminal
 version=2.0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="subliminal-${version}"
 build_style=python-module

From 4e88080f11e9171a69cf34cfc0204bfc75056a53 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 511/871] python-sympy: rebuild for Python 3.8.

---
 srcpkgs/python-sympy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-sympy/template b/srcpkgs/python-sympy/template
index 21d8cf69840..d41c8a392b0 100644
--- a/srcpkgs/python-sympy/template
+++ b/srcpkgs/python-sympy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-sympy'
 pkgname=python-sympy
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="sympy-${version}"
 build_style=python-module

From 7ea11c71db7707f71d724541bac0b82465103417 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:24 +0200
Subject: [PATCH 512/871] python-tables: rebuild for Python 3.8.

---
 srcpkgs/python-tables/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tables/template b/srcpkgs/python-tables/template
index 644ae3d1a35..5f61fe8fb88 100644
--- a/srcpkgs/python-tables/template
+++ b/srcpkgs/python-tables/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tables'
 pkgname=python-tables
 version=3.5.2
-revision=1
+revision=2
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="tables"

From 7697613b6ab0c2f2db86d9288105c947a5fbb4ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 513/871] python3-tabulate: rebuild for Python 3.8.

---
 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 19b61edd88c..6f142077300 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.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="tabulate-${version}"
 build_style=python3-module

From b0d36b462d01ad60b99f72f63fa92834e38d7544 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 514/871] python-tempita: rebuild for Python 3.8.

---
 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 9e7123fbd9d..c1c75ee1cac 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=3
+revision=4
 archs=noarch
 wrksrc="Tempita-${version}"
 build_style=python-module

From 27cf54395776eed15435491bcef50ccfe3ed9dbf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 515/871] python-tempora: rebuild for Python 3.8.

---
 srcpkgs/python-tempora/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tempora/template b/srcpkgs/python-tempora/template
index fa1cbd4fbd1..866d163f367 100644
--- a/srcpkgs/python-tempora/template
+++ b/srcpkgs/python-tempora/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tempora'
 pkgname=python-tempora
 version=1.14.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tempora-${version}"
 build_style=python-module

From cebddc70c77196929eb9ac2c2c2861ed4a78e0e9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 516/871] python-termcolor: rebuild for Python 3.8.

---
 srcpkgs/python-termcolor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-termcolor/template b/srcpkgs/python-termcolor/template
index 877e5e59d9b..73c18fc79eb 100644
--- a/srcpkgs/python-termcolor/template
+++ b/srcpkgs/python-termcolor/template
@@ -1,7 +1,7 @@
 # Template file for 'python-termcolor'
 pkgname=python-termcolor
 version=1.1.0
-revision=5
+revision=6
 archs=noarch
 wrksrc="termcolor-${version}"
 build_style=python-module

From 749d278b76cf89afb7a27297e5d42e0ce7d207a0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 517/871] python-terminado: rebuild for Python 3.8.

---
 srcpkgs/python-terminado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-terminado/template b/srcpkgs/python-terminado/template
index cdfe6163991..d649364d88d 100644
--- a/srcpkgs/python-terminado/template
+++ b/srcpkgs/python-terminado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-terminado'
 pkgname=python-terminado
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="terminado-${version}"
 build_style=python-module

From a940ff3c7470caa4b392994423e7ee1b3a31c4f1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 518/871] python3-terminaltables: rebuild for Python 3.8.

---
 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 60ada7ffcb6..4f781eab76d 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=1
+revision=2
 archs=noarch
 wrksrc="terminaltables-${version}"
 build_style=python3-module

From 667b768cdffcd68a7013b57255243658ead4be84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:25 +0200
Subject: [PATCH 519/871] python-testpath: rebuild for Python 3.8.

---
 srcpkgs/python-testpath/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-testpath/template b/srcpkgs/python-testpath/template
index bac7270fd40..abfc59900c0 100644
--- a/srcpkgs/python-testpath/template
+++ b/srcpkgs/python-testpath/template
@@ -1,7 +1,7 @@
 # Template file for 'python-testpath'
 pkgname=python-testpath
 version=0.4.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="testpath-${version}"
 build_style=python-module

From a55167dd81b684946aa0b985a5e50ec2c9896551 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 520/871] python3-text-unidecode: rebuild for Python 3.8.

---
 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 77163d9e0b6..b3b5aa95575 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.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="text-unidecode-${version}"
 build_style=python3-module

From 13593f93365ea58b9dc1ef5c905368131b2afae3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 521/871] python-texttable: rebuild for Python 3.8.

---
 srcpkgs/python-texttable/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-texttable/template b/srcpkgs/python-texttable/template
index a9c5ec66db1..24bac87af6a 100644
--- a/srcpkgs/python-texttable/template
+++ b/srcpkgs/python-texttable/template
@@ -1,7 +1,7 @@
 # Template file for 'python-texttable'
 pkgname=python-texttable
 version=1.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="texttable-${version}"
 build_style=python-module

From 31501c342cc4031f52acc442df926b993968e96d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 522/871] python3-tinycss: rebuild for Python 3.8.

---
 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 91fda6f808d..3b4717c234e 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=1
+revision=2
 archs=noarch
 wrksrc=tinycss-${version}
 build_style=python3-module

From 3aff0dbb762fb2771005528f6bb387eb10a83990 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 523/871] python-tmuxp: rebuild for Python 3.8.

---
 srcpkgs/python-tmuxp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tmuxp/template b/srcpkgs/python-tmuxp/template
index 00c86730cbe..45b4a9772b2 100644
--- a/srcpkgs/python-tmuxp/template
+++ b/srcpkgs/python-tmuxp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tmuxp'
 pkgname=python-tmuxp
 version=1.5.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="tmuxp-${version}"
 build_style=python-module

From f74c8035f4337b52cad83f4ead1d49e16c484b9f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 524/871] python-toml: rebuild for Python 3.8.

---
 srcpkgs/python-toml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-toml/template b/srcpkgs/python-toml/template
index 0eee1b0b2c3..2fd6eaa0cea 100644
--- a/srcpkgs/python-toml/template
+++ b/srcpkgs/python-toml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-toml'
 pkgname=python-toml
 version=0.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="toml-${version}"
 build_style=python-module

From 8e9a479244fd96d1609292a8598db0a81fa66222 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 525/871] python-tornado: rebuild for Python 3.8.

---
 srcpkgs/python-tornado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tornado/template b/srcpkgs/python-tornado/template
index 7e5700177f5..bd558d251f5 100644
--- a/srcpkgs/python-tornado/template
+++ b/srcpkgs/python-tornado/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tornado'
 pkgname=python-tornado
 version=5.1.1
-revision=1
+revision=2
 wrksrc="tornado-${version}"
 build_style=python-module
 pycompile_module="tornado"

From da8fadc40c32d7d5c4d8361376fe7800cb4b7330 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 526/871] python-tqdm: rebuild for Python 3.8.

---
 srcpkgs/python-tqdm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tqdm/template b/srcpkgs/python-tqdm/template
index 5929657c686..c1d8287265b 100644
--- a/srcpkgs/python-tqdm/template
+++ b/srcpkgs/python-tqdm/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tqdm'
 pkgname=python-tqdm
 version=4.37.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="tqdm-${version}"
 build_style=python-module

From a5175f174d41d191f8fd78291f5edfa64d5ac758 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:26 +0200
Subject: [PATCH 527/871] python-traitlets: rebuild for Python 3.8.

---
 srcpkgs/python-traitlets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-traitlets/template b/srcpkgs/python-traitlets/template
index d2d1b85edb6..797dd0268da 100644
--- a/srcpkgs/python-traitlets/template
+++ b/srcpkgs/python-traitlets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-traitlets'
 pkgname=python-traitlets
 version=4.3.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="traitlets-${version}"
 build_style=python-module

From 000afc95c06dc4114538e2fcdd33477f8d2f1d95 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 528/871] python3-transifex-client: rebuild for Python 3.8.

---
 srcpkgs/python3-transifex-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-transifex-client/template b/srcpkgs/python3-transifex-client/template
index 77ca15313e0..5ea767b5a7d 100644
--- a/srcpkgs/python3-transifex-client/template
+++ b/srcpkgs/python3-transifex-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-transifex-client'
 pkgname=python3-transifex-client
 version=0.13.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="transifex-client-${version}"
 build_style=python3-module

From 920dca444d6be978fea7e1f481e29dc1e2a3aa16 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 529/871] python3-treq: rebuild for Python 3.8.

---
 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 8f210d13489..e46e1e7e7a5 100644
--- a/srcpkgs/python3-treq/template
+++ b/srcpkgs/python3-treq/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-treq'
 pkgname=python3-treq
 version=18.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="treq-${version}"
 build_style=python3-module

From abee9ce044b87930c0e6676d72d74080395480cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 530/871] python-ttystatus: rebuild for Python 3.8.

---
 srcpkgs/python-ttystatus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-ttystatus/template b/srcpkgs/python-ttystatus/template
index 9fbefad3461..43e87ddcdf0 100644
--- a/srcpkgs/python-ttystatus/template
+++ b/srcpkgs/python-ttystatus/template
@@ -1,7 +1,7 @@
 # Template file for 'python-ttystatus'
 pkgname=python-ttystatus
 version=0.38
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="ttystatus"

From 067cf3b3d85f83e694abf2321fd746aae2383731 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 531/871] python-twitter: rebuild for Python 3.8.

---
 srcpkgs/python-twitter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-twitter/template b/srcpkgs/python-twitter/template
index c299b28dedf..e5e7194078a 100644
--- a/srcpkgs/python-twitter/template
+++ b/srcpkgs/python-twitter/template
@@ -1,7 +1,7 @@
 # Template file for 'python-twitter'
 pkgname=python-twitter
 version=3.5
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="twitter"

From 0a93cdcdfd93ae270523449e82e79948dd311361 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 532/871] python3-txacme: rebuild for Python 3.8.

---
 srcpkgs/python3-txacme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-txacme/template b/srcpkgs/python3-txacme/template
index e6becf593e7..c678addda4d 100644
--- a/srcpkgs/python3-txacme/template
+++ b/srcpkgs/python3-txacme/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txacme'
 pkgname=python3-txacme
 version=0.9.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="txacme-${version}"
 build_style=python3-module

From 70a52ad39794f289a44f6b9b707dae29ba129546 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 533/871] python3-txaio: rebuild for Python 3.8.

---
 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 fa13338cd30..8163f5c90fd 100644
--- a/srcpkgs/python3-txaio/template
+++ b/srcpkgs/python3-txaio/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txaio'
 pkgname=python3-txaio
 version=18.8.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="txaio-${version}"
 build_style=python3-module

From 50defe3689bf6a3d3ac1c8af415e8b42cf0202b8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 534/871] python3-txtorcon: rebuild for Python 3.8.

---
 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 3018a65e457..a10ab59c582 100644
--- a/srcpkgs/python3-txtorcon/template
+++ b/srcpkgs/python3-txtorcon/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-txtorcon'
 pkgname=python3-txtorcon
 version=19.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="txtorcon-${version}"
 build_style=python3-module

From eb6088ce83e92228d0bb13af42e3a889b3fbf7b2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 535/871] python3-typed-ast: update to 1.4.0.

---
 srcpkgs/python3-typed-ast/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-typed-ast/template b/srcpkgs/python3-typed-ast/template
index ec5b5b9df11..b38f0fe065c 100644
--- a/srcpkgs/python3-typed-ast/template
+++ b/srcpkgs/python3-typed-ast/template
@@ -1,8 +1,8 @@
 # Template file for 'python3-typed-ast'
 pkgname=python3-typed-ast
-version=1.3.4
+version=1.4.0
 revision=1
-wrksrc="typed-ast-${version}"
+wrksrc="typed_ast-${version}"
 build_style=python3-module
 pycompile_module="typed_ast"
 hostmakedepends="python3-devel python3-setuptools"
@@ -11,6 +11,6 @@ short_desc="Ast module with type comment support"
 maintainer="whoami <whoami@systemli.org>"
 license="Apache-2.0"
 homepage="https://github.com/python/typed_ast"
-distfiles="${PYPI_SITE}/t/typed-ast/typed-ast-${version}.tar.gz"
-checksum=68c362848d9fb71d3c3e5f43c09974a0ae319144634e7a47db62f0f2a54a7fa7
+distfiles="${PYPI_SITE}/t/typed-ast/typed_ast-${version}.tar.gz"
+checksum=66480f95b8167c9c5c5c87f32cf437d585937970f3fc24386f313a4c97b44e34
 nocross="https://travis-ci.org/void-linux/void-packages/jobs/509366923#L1009"

From 8ac3986b89db5652b6dab7abd5c65e60ca6f4a7d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 536/871] python3-typing_extensions: rebuild for Python 3.8.

---
 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 ab96df4eb2d..605af46216d 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=3.6.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module

From c42a43fd4a65c92f284e73370503d26cbd1d3fe7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 537/871] python-tzlocal: rebuild for Python 3.8.

---
 srcpkgs/python-tzlocal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-tzlocal/template b/srcpkgs/python-tzlocal/template
index 396eada3982..684d2a21b40 100644
--- a/srcpkgs/python-tzlocal/template
+++ b/srcpkgs/python-tzlocal/template
@@ -1,7 +1,7 @@
 # Template file for 'python-tzlocal'
 pkgname=python-tzlocal
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="tzlocal-${version}"
 build_style=python-module

From f0fc716ef64d99eb0016ecb1d70ee7b369c6b778 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 538/871] python-unittest-mixins: rebuild for Python 3.8.

---
 srcpkgs/python-unittest-mixins/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-unittest-mixins/template b/srcpkgs/python-unittest-mixins/template
index 6f7c7204112..2ff5c497523 100644
--- a/srcpkgs/python-unittest-mixins/template
+++ b/srcpkgs/python-unittest-mixins/template
@@ -1,7 +1,7 @@
 # Template file for 'python-unittest-mixins'
 pkgname=python-unittest-mixins
 version=1.6
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module

From 71ccff6b64c3e5ffb3c8f1b5844406de4a593099 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 539/871] python3-unpaddedbase64: rebuild for Python 3.8.

---
 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 37df2c1d642..06a47db3b64 100644
--- a/srcpkgs/python3-unpaddedbase64/template
+++ b/srcpkgs/python3-unpaddedbase64/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-unpaddedbase64'
 pkgname=python3-unpaddedbase64
 version=1.1.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-unpaddedbase64-${version}"
 build_style=python3-module

From 183c546e4b4aa181ece26232a838ac75befb8657 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:28 +0200
Subject: [PATCH 540/871] python-urbandict: rebuild for Python 3.8.

---
 srcpkgs/python-urbandict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urbandict/template b/srcpkgs/python-urbandict/template
index ff09e963fa7..ed359c744be 100644
--- a/srcpkgs/python-urbandict/template
+++ b/srcpkgs/python-urbandict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urbandict'
 pkgname=python-urbandict
 version=0.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="urbandict-${version}"
 build_style=python-module

From fdc64f72174f9473a3f22a7128b6162f2241f629 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 541/871] python-uritemplate: rebuild for Python 3.8.

---
 srcpkgs/python-uritemplate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-uritemplate/template b/srcpkgs/python-uritemplate/template
index 7a530fee03b..cdcda419efe 100644
--- a/srcpkgs/python-uritemplate/template
+++ b/srcpkgs/python-uritemplate/template
@@ -1,7 +1,7 @@
 # Template file for 'python-uritemplate'
 pkgname=python-uritemplate
 version=3.0.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 2c8d1d8d41f6637fd763723711fe7c1688173883 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 542/871] python3-urlgrabber: rebuild for Python 3.8.

---
 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 087087d5ed1..eef67c8e13c 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=1
+revision=2
 archs=noarch
 wrksrc="urlgrabber-${version}"
 build_style=python3-module

From 53e0b585e80b4815694c3a8a941b536bb59be728 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 543/871] python-urllib3: rebuild for Python 3.8.

---
 srcpkgs/python-urllib3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urllib3/template b/srcpkgs/python-urllib3/template
index 8056518c9c1..1ff21f7555d 100644
--- a/srcpkgs/python-urllib3/template
+++ b/srcpkgs/python-urllib3/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urllib3'
 pkgname=python-urllib3
 version=1.25.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="urllib3-${version}"
 build_style=python-module

From cfba0cf9e2dd26c50c95065a4918a45b31b83288 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 544/871] python-urwid: rebuild for Python 3.8.

---
 srcpkgs/python-urwid/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwid/template b/srcpkgs/python-urwid/template
index ae6722b1135..7adf8b76b96 100644
--- a/srcpkgs/python-urwid/template
+++ b/srcpkgs/python-urwid/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwid'
 pkgname=python-urwid
 version=2.0.1
-revision=2
+revision=3
 wrksrc="urwid-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"

From c1f657123c36154a1d3e4d9a8815df9da1cdeea6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 545/871] python-urwidtrees: rebuild for Python 3.8.

---
 srcpkgs/python-urwidtrees/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-urwidtrees/template b/srcpkgs/python-urwidtrees/template
index be0e906addf..62d214489e2 100644
--- a/srcpkgs/python-urwidtrees/template
+++ b/srcpkgs/python-urwidtrees/template
@@ -1,7 +1,7 @@
 # Template file for 'python-urwidtrees'
 pkgname=python-urwidtrees
 version=1.0.2
-revision=2
+revision=3
 archs=noarch
 wrksrc="urwidtrees-${version}"
 build_style=python-module

From 1fa93eff8a4b3d307edfdd71dbc786492b3972dd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 546/871] python3-usb: rebuild for Python 3.8.

---
 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 a081ee5ba76..d26c24df669 100644
--- a/srcpkgs/python3-usb/template
+++ b/srcpkgs/python3-usb/template
@@ -2,7 +2,7 @@
 pkgname=python3-usb
 _pkgname=pyusb
 version=1.0.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module

From 42c0ac8e5e6cf1ad713852559ad6f7251b228542 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 547/871] python-utils: rebuild for Python 3.8.

---
 srcpkgs/python-utils/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-utils/template b/srcpkgs/python-utils/template
index e881e70c0f0..6745df121a6 100644
--- a/srcpkgs/python-utils/template
+++ b/srcpkgs/python-utils/template
@@ -1,7 +1,7 @@
 # Template file for 'python-utils'
 pkgname=python-utils
 version=2.3.0
-revision=2
+revision=3
 archs=noarch
 build_style=python-module
 wrksrc="python-utils-${version}"

From 52ca3e3f335abc4dce406b57c380ce61013d8c10 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:29 +0200
Subject: [PATCH 548/871] python3-validators: rebuild for Python 3.8.

---
 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 29b9fc74c30..6d9da94c4bb 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.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="validators-${version}"
 build_style=python3-module

From 556aab1f9c6171b69ea53ad157766d90b84b7b01 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 549/871] python3-vdf: rebuild for Python 3.8.

---
 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 44c635ecdd6..88bd521beaa 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.2
-revision=1
+revision=2
 wrksrc=vdf-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From c3081ca9efc1796ad1cdb23b2dd1ac97e9d10ef6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 550/871] python-vint: rebuild for Python 3.8.

---
 srcpkgs/python-vint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vint/template b/srcpkgs/python-vint/template
index 4ca693f7eb2..62c663bf18e 100644
--- a/srcpkgs/python-vint/template
+++ b/srcpkgs/python-vint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vint'
 pkgname=python-vint
 version=0.3.19
-revision=2
+revision=3
 archs=noarch
 wrksrc="vim-vint-${version}"
 build_style=python-module

From 3910aa626aff75da0618e1147112725736851a98 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 551/871] python-virtualenv: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv/template b/srcpkgs/python-virtualenv/template
index 1f9166e79a2..cdeda28c53e 100644
--- a/srcpkgs/python-virtualenv/template
+++ b/srcpkgs/python-virtualenv/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv'
 pkgname=python-virtualenv
 version=16.7.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="virtualenv-${version}"
 build_style=python-module

From f6bb7b3ba690eb6409d9614f184bb1c17241895f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 552/871] python-virtualenv-clone: rebuild for Python 3.8.

---
 srcpkgs/python-virtualenv-clone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-virtualenv-clone/template b/srcpkgs/python-virtualenv-clone/template
index 3c9f601bc6e..273b9ddf6d3 100644
--- a/srcpkgs/python-virtualenv-clone/template
+++ b/srcpkgs/python-virtualenv-clone/template
@@ -1,7 +1,7 @@
 # Template file for 'python-virtualenv-clone'
 pkgname=python-virtualenv-clone
 version=0.4.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 6d5c884190f63850dfee6b90f5fce5764a24d670 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 553/871] python3-virustotal-api: rebuild for Python 3.8.

---
 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 2bc6592c91f..fc362c03b39 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=1
+revision=2
 archs=noarch
 wrksrc="virustotal-api-${version}"
 build_style=python3-module

From 009c547a7629b16bc57f3e3f8df3e8947c0feedf Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 554/871] python-vispy: rebuild for Python 3.8.

---
 srcpkgs/python-vispy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vispy/template b/srcpkgs/python-vispy/template
index b757e5a271f..624ade6f12b 100644
--- a/srcpkgs/python-vispy/template
+++ b/srcpkgs/python-vispy/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vispy'
 pkgname=python-vispy
 version=0.6.1
-revision=1
+revision=2
 wrksrc="vispy-${version}"
 build_style=python-module
 pycompile_module="vispy"

From d1fc691d511c1cd571f91a692c1861e9f571c136 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:30 +0200
Subject: [PATCH 555/871] python-vobject: rebuild for Python 3.8.

---
 srcpkgs/python-vobject/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-vobject/template b/srcpkgs/python-vobject/template
index 54f575aa1a1..2c1c215527c 100644
--- a/srcpkgs/python-vobject/template
+++ b/srcpkgs/python-vobject/template
@@ -1,7 +1,7 @@
 # Template file for 'python-vobject'
 pkgname=python-vobject
 version=0.9.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="vobject-${version}"
 build_style=python-module

From e22787ac1da8841ee575a84b450c3e76a61a5671 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 556/871] python-voluptuous: rebuild for Python 3.8.

---
 srcpkgs/python-voluptuous/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-voluptuous/template b/srcpkgs/python-voluptuous/template
index fd44ae2e324..1dd5de27491 100644
--- a/srcpkgs/python-voluptuous/template
+++ b/srcpkgs/python-voluptuous/template
@@ -1,7 +1,7 @@
 # Template file for 'python-voluptuous'
 pkgname=python-voluptuous
 version=0.11.5
-revision=2
+revision=3
 archs=noarch
 wrksrc="voluptuous-${version}"
 build_style=python-module

From dbb535fe1cf0dd25ea20e6756ce9ac1b161e7337 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 557/871] python-watchdog: rebuild for Python 3.8.

---
 srcpkgs/python-watchdog/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchdog/template b/srcpkgs/python-watchdog/template
index f6027c3b5ca..2eea6397f00 100644
--- a/srcpkgs/python-watchdog/template
+++ b/srcpkgs/python-watchdog/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchdog'
 pkgname=python-watchdog
 version=0.9.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="watchdog-${version}"
 build_style=python-module

From 3a76cc584138fb13e2e34b79f485022223ccc237 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 558/871] python-watchman: rebuild for Python 3.8.

---
 srcpkgs/python-watchman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-watchman/template b/srcpkgs/python-watchman/template
index 4c41c275ca2..97400668d64 100644
--- a/srcpkgs/python-watchman/template
+++ b/srcpkgs/python-watchman/template
@@ -1,7 +1,7 @@
 # Template file for 'python-watchman'
 pkgname=python-watchman
 version=1.4.1
-revision=2
+revision=3
 wrksrc="pywatchman-${version}"
 build_style=python-module
 pycompile_module="pywatchman"

From fc6057f329ad9cd6eb9fbb469221f95e31beca77 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 559/871] python-wcwidth: rebuild for Python 3.8.

---
 srcpkgs/python-wcwidth/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wcwidth/template b/srcpkgs/python-wcwidth/template
index 34bc22cbcb6..8ec6d17450c 100644
--- a/srcpkgs/python-wcwidth/template
+++ b/srcpkgs/python-wcwidth/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wcwidth'
 pkgname=python-wcwidth
 version=0.1.7
-revision=2
+revision=3
 archs=noarch
 wrksrc="wcwidth-${version}"
 build_style=python-module

From a089c4cbc34d7c97060d3cc14493c7f670a13a6d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 560/871] python-webassets: rebuild for Python 3.8.

---
 srcpkgs/python-webassets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webassets/template b/srcpkgs/python-webassets/template
index 3ad5475bd17..789be9684f7 100644
--- a/srcpkgs/python-webassets/template
+++ b/srcpkgs/python-webassets/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webassets'
 pkgname=python-webassets
 version=0.12.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From f5bb2cdf68ed0c7a669d8f79c3e41c2d43cb9bf5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 561/871] python-webencodings: rebuild for Python 3.8.

---
 srcpkgs/python-webencodings/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-webencodings/template b/srcpkgs/python-webencodings/template
index 5a05af10835..f047a9e3c52 100644
--- a/srcpkgs/python-webencodings/template
+++ b/srcpkgs/python-webencodings/template
@@ -1,7 +1,7 @@
 # Template file for 'python-webencodings'
 pkgname=python-webencodings
 version=0.5.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="webencodings-${version}"
 build_style=python-module

From 8805ef679bfa789d3a9f1a4765ea82e04e89a421 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:31 +0200
Subject: [PATCH 562/871] python-websocket-client: rebuild for Python 3.8.

---
 srcpkgs/python-websocket-client/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-websocket-client/template b/srcpkgs/python-websocket-client/template
index 8aa276655cb..3df8ab42b36 100644
--- a/srcpkgs/python-websocket-client/template
+++ b/srcpkgs/python-websocket-client/template
@@ -1,7 +1,7 @@
 # Template file for 'python-websocket-client'
 pkgname=python-websocket-client
 version=0.56.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="websocket_client-${version}"
 build_style=python-module

From 452927f77b0ee2fe846f3faa53d7243908978ada Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 563/871] python-wheel: rebuild for Python 3.8.

---
 srcpkgs/python-wheel/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wheel/template b/srcpkgs/python-wheel/template
index 11c50bd65e6..11aeaf42316 100644
--- a/srcpkgs/python-wheel/template
+++ b/srcpkgs/python-wheel/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wheel'
 pkgname=python-wheel
 version=0.32.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="wheel-${version}"
 build_style=python-module

From 8e13daafedb2c10a3ce62c0bea58b6c6880b1690 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 564/871] python-wikipedia: rebuild for Python 3.8.

---
 srcpkgs/python-wikipedia/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wikipedia/template b/srcpkgs/python-wikipedia/template
index e6ebf65f7c2..f8a69755b74 100644
--- a/srcpkgs/python-wikipedia/template
+++ b/srcpkgs/python-wikipedia/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wikipedia'
 pkgname=python-wikipedia
 version=1.4.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="wikipedia-${version}"
 build_style=python-module

From b2ff9a20cda5efceda356fc2e3d97ca60bb522f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 565/871] python-wrapt: rebuild for Python 3.8.

---
 srcpkgs/python-wrapt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wrapt/template b/srcpkgs/python-wrapt/template
index a3a237aa08d..c2d2850bf5a 100644
--- a/srcpkgs/python-wrapt/template
+++ b/srcpkgs/python-wrapt/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wrapt'
 pkgname=python-wrapt
 version=1.10.11
-revision=3
+revision=4
 wrksrc="wrapt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"

From a3e72d1cf80301e09bebc5522d7ae6faa1f347fe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 566/871] python-wsproto: rebuild for Python 3.8.

---
 srcpkgs/python-wsproto/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-wsproto/template b/srcpkgs/python-wsproto/template
index 582471ae637..f8b131104e6 100644
--- a/srcpkgs/python-wsproto/template
+++ b/srcpkgs/python-wsproto/template
@@ -1,7 +1,7 @@
 # Template file for 'python-wsproto'
 pkgname=python-wsproto
 version=0.15.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="wsproto-${version}"
 build_style=python-module

From 23280059906a330d95f6d50e12652ceda6467749 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 567/871] python-xapp: rebuild for Python 3.8.

---
 srcpkgs/python-xapp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xapp/template b/srcpkgs/python-xapp/template
index 9b6938113f2..798041eb946 100644
--- a/srcpkgs/python-xapp/template
+++ b/srcpkgs/python-xapp/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xapp'
 pkgname=python-xapp
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="xapp"

From e9a589a602a1dbcff1b7abc4bffc0ba91fd5d42b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 568/871] python-xdg: rebuild for Python 3.8.

---
 srcpkgs/python-xdg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xdg/template b/srcpkgs/python-xdg/template
index afa6c180043..4e819c8bec7 100644
--- a/srcpkgs/python-xdg/template
+++ b/srcpkgs/python-xdg/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xdg'
 pkgname=python-xdg
 version=0.26
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyxdg-${version}"
 build_style=python-module

From 8af2dc09e7ddc01fd6fc02a9f6f3b0a7bf80c3f5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 569/871] python-xlib: rebuild for Python 3.8.

---
 srcpkgs/python-xlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xlib/template b/srcpkgs/python-xlib/template
index 1f97c4117d4..e67d1d82e73 100644
--- a/srcpkgs/python-xlib/template
+++ b/srcpkgs/python-xlib/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xlib'
 pkgname=python-xlib
 version=0.25
-revision=1
+revision=2
 archs=noarch
 build_style=python-module
 pycompile_module="Xlib"

From b80eff70cda4cac4e24e23aec18c7411af791fe6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:32 +0200
Subject: [PATCH 570/871] python-xmldiff: rebuild for Python 3.8.

---
 srcpkgs/python-xmldiff/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmldiff/template b/srcpkgs/python-xmldiff/template
index a0a8004ea7b..4f3cc2d27b7 100644
--- a/srcpkgs/python-xmldiff/template
+++ b/srcpkgs/python-xmldiff/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmldiff'
 pkgname=python-xmldiff
 version=2.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmldiff-${version}"
 build_style=python-module

From 0b791ceea0102394e26aaf84e1a50e3445830e00 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 571/871] python-xmltodict: rebuild for Python 3.8.

---
 srcpkgs/python-xmltodict/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-xmltodict/template b/srcpkgs/python-xmltodict/template
index a48e6d46aa6..b3d7ef042e8 100644
--- a/srcpkgs/python-xmltodict/template
+++ b/srcpkgs/python-xmltodict/template
@@ -1,7 +1,7 @@
 # Template file for 'python-xmltodict'
 pkgname=python-xmltodict
 version=0.12.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="xmltodict-${version}"
 build_style=python-module

From b0f7877195e6ecc572dd4a7b984b6167756fcee2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 572/871] python-yaml: rebuild for Python 3.8.

---
 srcpkgs/python-yaml/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yaml/template b/srcpkgs/python-yaml/template
index 8a7caf1d99e..e3bad0ae59b 100644
--- a/srcpkgs/python-yaml/template
+++ b/srcpkgs/python-yaml/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yaml'
 pkgname=python-yaml
 version=5.1.2
-revision=1
+revision=2
 wrksrc="PyYAML-${version}"
 build_style=python-module
 pycompile_module="yaml"

From ed136b13ac87c5546b27bedb2527887b34eed679 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 573/871] python-yamllint: rebuild for Python 3.8.

---
 srcpkgs/python-yamllint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-yamllint/template b/srcpkgs/python-yamllint/template
index 1a05e1043bb..d0b51ba637a 100644
--- a/srcpkgs/python-yamllint/template
+++ b/srcpkgs/python-yamllint/template
@@ -1,7 +1,7 @@
 # Template file for 'python-yamllint'
 pkgname=python-yamllint
 version=1.15.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="yamllint-${version}"
 build_style=python-module

From bc739f5ea0486a44053dab1e8f1901a496a474ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 574/871] python3-yarl: rebuild for Python 3.8.

---
 srcpkgs/python3-yarl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-yarl/template b/srcpkgs/python3-yarl/template
index 222f176cfcf..ecb79a3cc9c 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.3.0
-revision=2
+revision=3
 wrksrc="yarl-${version}"
 build_style=python3-module
 pycompile_module="yarl"

From 11efe27332143b964d589b1044d923dd67ea7742 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 575/871] python-zc.lockfile: rebuild for Python 3.8.

---
 srcpkgs/python-zc.lockfile/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zc.lockfile/template b/srcpkgs/python-zc.lockfile/template
index cb0bee99506..b77071af04f 100644
--- a/srcpkgs/python-zc.lockfile/template
+++ b/srcpkgs/python-zc.lockfile/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zc.lockfile'
 pkgname=python-zc.lockfile
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 4bbbbe05ecc54b247818b6b388dd87412c1e4ed3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:33 +0200
Subject: [PATCH 576/871] python3-zeroconf: rebuild for Python 3.8.

---
 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 497a8bc6b69..dda37bd3dc4 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.23.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="python-zeroconf-${version}"
 build_style=python3-module

From 5fead2821ee308294055874b841272b2550d14ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 577/871] python3-zipp: rebuild for Python 3.8.

---
 srcpkgs/python3-zipp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python3-zipp/template b/srcpkgs/python3-zipp/template
index 8445c10825c..ba682915beb 100644
--- a/srcpkgs/python3-zipp/template
+++ b/srcpkgs/python3-zipp/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-zipp'
 pkgname=python3-zipp
 version=0.6.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="zipp-${version}"
 build_style=python3-module

From 304437219f4f2b901d3fc26daafb4289ccb81c4a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 578/871] python-zipstream: rebuild for Python 3.8.

---
 srcpkgs/python-zipstream/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zipstream/template b/srcpkgs/python-zipstream/template
index 89079e21b22..2c7390127ac 100644
--- a/srcpkgs/python-zipstream/template
+++ b/srcpkgs/python-zipstream/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zipstream'
 pkgname=python-zipstream
 version=1.1.4
-revision=3
+revision=4
 archs=noarch
 wrksrc="python-zipstream-${version}"
 build_style=python-module

From 080f02d6fb2fb32a1f1c315fd1b22e01aa05e307 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 579/871] python3-zope.cachedescriptors: rebuild for Python
 3.8.

---
 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 bdd5ef41e21..1f1fae5b27b 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.3.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="zope.cachedescriptors-${version}"
 build_style=python3-module

From bcd48070edafecdb2233930f04b5f3d949758dda Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 580/871] python-zope.component: rebuild for Python 3.8.

---
 srcpkgs/python-zope.component/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.component/template b/srcpkgs/python-zope.component/template
index 7cea5b9d71d..66ef109a4aa 100644
--- a/srcpkgs/python-zope.component/template
+++ b/srcpkgs/python-zope.component/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.component'
 pkgname=python-zope.component
 version=4.5
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 5b5681822abb8ae400a9004e7e6a77959e2e4199 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 581/871] python-zope.event: rebuild for Python 3.8.

---
 srcpkgs/python-zope.event/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-zope.event/template b/srcpkgs/python-zope.event/template
index 3c7fb8dfd6e..6518cb4529b 100644
--- a/srcpkgs/python-zope.event/template
+++ b/srcpkgs/python-zope.event/template
@@ -1,7 +1,7 @@
 # Template file for 'python-zope.event'
 pkgname=python-zope.event
 version=4.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module

From 2c8ac286ae92ce399f2b74af37546e6fef5a6a9b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:34 +0200
Subject: [PATCH 582/871] python-zope.interface: rebuild for Python 3.8.

---
 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 d3c57be85f7..1dbcbecd377 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=4.6.0
-revision=2
+revision=3
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="zope"

From 748a51eab524adeea7e721748f2f7d42722098f8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:06 +0200
Subject: [PATCH 583/871] python3-pivy: fix and rebuild for Python 3.8.

---
 srcpkgs/python3-pivy/patches/73cd928f.patch | 36 +++++++++++++++++++++
 srcpkgs/python3-pivy/template               |  2 +-
 2 files changed, 37 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/python3-pivy/patches/73cd928f.patch

diff --git a/srcpkgs/python3-pivy/patches/73cd928f.patch b/srcpkgs/python3-pivy/patches/73cd928f.patch
new file mode 100644
index 00000000000..edff803822a
--- /dev/null
+++ b/srcpkgs/python3-pivy/patches/73cd928f.patch
@@ -0,0 +1,36 @@
+From 73cd928fe1a9c2abbe6f28844a7fc695ad11d7cf Mon Sep 17 00:00:00 2001
+From: Peter Lama <peterldev94@gmail.com>
+Date: Fri, 24 Aug 2018 17:25:47 -0700
+Subject: [PATCH] Fix issue #39: PyUnicode_AsUTF8 returns const char*
+
+Even with python 2, it doesn't seem like char* is needed
+
+--- Inventor/nodes/SoMarkerSet.i
++++ Inventor/nodes/SoMarkerSet.i
+@@ -5,7 +5,7 @@
+         short WIDTH, HEIGHT;
+         size.getValue(WIDTH, HEIGHT);
+         short BYTEWIDTH = (WIDTH + 7) / 2;
+-        char* coin_marker;
++        const char* coin_marker;
+ #ifdef PY_2
+         if (PyString_Check(string))
+         {
+@@ -49,4 +49,4 @@
+         delete[] bitmapbytes;
+         bitmapbytes = NULL;
+     }
+-}
+\ No newline at end of file
++}
+--- Inventor/sensors/SoSensor.i
++++ Inventor/sensors/SoSensor.i
+@@ -4,7 +4,7 @@ SoSensorPythonCB(void * data, SoSensor * sensor)
+ {
+   PyGILState_STATE gil = PyGILState_Ensure();
+   swig_type_info * swig_type = 0;
+-  char * sensor_cast_name = NULL;
++  const char * sensor_cast_name = NULL;
+   PyObject * func, * arglist;
+   PyObject * result, * pysensor;
+ 
diff --git a/srcpkgs/python3-pivy/template b/srcpkgs/python3-pivy/template
index 4a733e805e3..9caa13837e2 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.4
-revision=1
+revision=2
 wrksrc="Coin3D-${pkgname#python3-}-a84100beff22"
 build_style=python3-module
 pycompile_module="pivy"

From 769bb671b5b6d4765fdead14c1669c4c39d4ee1e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Wed, 16 Oct 2019 16:10:27 +0200
Subject: [PATCH 584/871] python-tweepy: update to 3.8.0.

---
 srcpkgs/python-tweepy/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python-tweepy/template b/srcpkgs/python-tweepy/template
index ef61039dac5..4605bbf83ea 100644
--- a/srcpkgs/python-tweepy/template
+++ b/srcpkgs/python-tweepy/template
@@ -1,6 +1,6 @@
 # Template file for 'python-tweepy'
 pkgname=python-tweepy
-version=3.7.0
+version=3.8.0
 revision=1
 archs=noarch
 wrksrc="tweepy-${version}"
@@ -14,8 +14,8 @@ license="MIT"
 homepage="https://github.com/tweepy/tweepy"
 distfiles="${PYPI_SITE}/t/tweepy/tweepy-${version}.tar.gz
  https://raw.githubusercontent.com/tweepy/tweepy/master/LICENSE>LICENSE.txt"
-checksum="fe85a79f58a01dd335968523b91c5fce760e7fe78bf25a6e71c72204fe499d0b
- deeeae0dcc22dbf108a801b8dc4e484bcc1bfb541b1a4f4615ab3e61def44fb5"
+checksum="8abd828ba51a85a2b5bb7373715d6d3bb32d18ac624e3a4db02e4ef8ab48316b
+ bf9bc5b9dcb8421bb3c342bb7fd29194688e1262b50766bd71b21a07461e74b7"
 
 post_install() {
 	vlicense ../LICENSE.txt

From 62e6e052dff40c00e5ed5413d70974c42d62f87f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 585/871] Electron-Cash: rebuild for Python 3.8.

---
 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 2db05c94832..08670c5f08d 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.0.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electroncash electroncash_gui electroncash_plugins"

From 55a3a21566e82a647137e51b9e35c00f5f7f3d91 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 586/871] OpenLP: rebuild for Python 3.8.

---
 srcpkgs/OpenLP/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/OpenLP/template b/srcpkgs/OpenLP/template
index fb417f8d05e..ccae6d0282e 100644
--- a/srcpkgs/OpenLP/template
+++ b/srcpkgs/OpenLP/template
@@ -1,7 +1,7 @@
 # Template file for 'OpenLP'
 pkgname=OpenLP
 version=2.4.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="openlp"

From f532cb90d8d12bed22937ef84467f848e5353c15 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 587/871] PhotoCollage: rebuild for Python 3.8.

---
 srcpkgs/PhotoCollage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/PhotoCollage/template b/srcpkgs/PhotoCollage/template
index 2c55ca87ce0..9997d1e7d98 100644
--- a/srcpkgs/PhotoCollage/template
+++ b/srcpkgs/PhotoCollage/template
@@ -1,7 +1,7 @@
 # Template file for 'PhotoCollage'
 pkgname=PhotoCollage
 version=1.4.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="photocollage"

From f825e782badf4eb089af0f4b60261b48b0521c04 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 588/871] ReText: rebuild for Python 3.8.

---
 srcpkgs/ReText/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ReText/template b/srcpkgs/ReText/template
index cc092ee6a36..a6551fbdf7c 100644
--- a/srcpkgs/ReText/template
+++ b/srcpkgs/ReText/template
@@ -1,7 +1,7 @@
 # Template file for 'ReText'
 pkgname=ReText
 version=7.0.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ReText"

From a31b922ca44752c041591a8217d30e61b3eff787 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:25 +0200
Subject: [PATCH 589/871] SoapySDR: rebuild for Python 3.8.

---
 srcpkgs/SoapySDR/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/SoapySDR/template b/srcpkgs/SoapySDR/template
index 1bb66ce0689..bcfe45dc78a 100644
--- a/srcpkgs/SoapySDR/template
+++ b/srcpkgs/SoapySDR/template
@@ -1,7 +1,7 @@
 # Template file for 'SoapySDR'
 pkgname=SoapySDR
 version=0.7.1
-revision=1
+revision=2
 wrksrc="${pkgname}-soapy-sdr-${version}"
 build_style=cmake
 pycompile_module="SoapySDR.py"

From 3853fa5c0d05a24c6b609f8d02eeef583bc7ceac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 590/871] Solaar: rebuild for Python 3.8.

---
 srcpkgs/Solaar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Solaar/template b/srcpkgs/Solaar/template
index 2e8f4112e0e..86cab83d497 100644
--- a/srcpkgs/Solaar/template
+++ b/srcpkgs/Solaar/template
@@ -1,7 +1,7 @@
 # Template file for 'Solaar'
 pkgname=Solaar
 version=1.0.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="hidapi logitech_receiver solaar"

From 753caa59a39ad1aa51e25d37a87a686c13947f41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 591/871] Trimage: rebuild for Python 3.8.

---
 srcpkgs/Trimage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Trimage/template b/srcpkgs/Trimage/template
index 14fc1d1bd1c..c9f4b047ccd 100644
--- a/srcpkgs/Trimage/template
+++ b/srcpkgs/Trimage/template
@@ -1,7 +1,7 @@
 # Template file for 'Trimage'
 pkgname=Trimage
 version=1.0.6
-revision=1
+revision=2
 wrksrc="Trimage-${version}"
 build_style=python3-module
 hostmakedepends="python3"

From 2f3072a9aa0fab9d9988a78673dcd78bd3f5e0e7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 592/871] TwitchNotifier: rebuild for Python 3.8.

---
 srcpkgs/TwitchNotifier/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/TwitchNotifier/template b/srcpkgs/TwitchNotifier/template
index 01153bcc710..3bbba11db49 100644
--- a/srcpkgs/TwitchNotifier/template
+++ b/srcpkgs/TwitchNotifier/template
@@ -1,7 +1,7 @@
 # Template file for 'TwitchNotifier'
 pkgname=TwitchNotifier
 version=0.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-devel"
 makedepends="python3-devel"

From a7a7c61f7dd1feaacd10cff121afa4e7eb8a8479 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 593/871] Uranium: rebuild for Python 3.8.

---
 srcpkgs/Uranium/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/Uranium/template b/srcpkgs/Uranium/template
index 193d5e211df..7a9509c2079 100644
--- a/srcpkgs/Uranium/template
+++ b/srcpkgs/Uranium/template
@@ -1,7 +1,7 @@
 # Template file for 'Uranium'
 pkgname=Uranium
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=cmake
 pycompile_module="UM"

From bf34d0d595caf18b7a95ca75e1d91d0c8f19d145 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 594/871] afew: rebuild for Python 3.8.

---
 srcpkgs/afew/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/afew/template b/srcpkgs/afew/template
index a9156bbc902..f4b10098e66 100644
--- a/srcpkgs/afew/template
+++ b/srcpkgs/afew/template
@@ -1,7 +1,7 @@
 # Template file for 'afew'
 pkgname=afew
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="afew"

From 5e119efd40fd8f8d4230952f8c300011d6660e4e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 595/871] alot: rebuild for Python 3.8.

---
 srcpkgs/alot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/alot/template b/srcpkgs/alot/template
index 4ff75637282..c8e29e36297 100644
--- a/srcpkgs/alot/template
+++ b/srcpkgs/alot/template
@@ -1,7 +1,7 @@
 # Template file for 'alot'
 pkgname=alot
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="alot"

From c65c25be21bb375a0476ca031ed78e4d7a4f4140 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 596/871] ansible: rebuild for Python 3.8.

---
 srcpkgs/ansible/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ansible/template b/srcpkgs/ansible/template
index 0a7fcc0b4ec..b3c4bf6bde1 100644
--- a/srcpkgs/ansible/template
+++ b/srcpkgs/ansible/template
@@ -1,7 +1,7 @@
 # Template file for 'ansible'
 pkgname=ansible
 version=2.8.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ansible"

From 5a48ae476267afcedf09c08343290005252b76cd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:26 +0200
Subject: [PATCH 597/871] apparmor: rebuild for Python 3.8.

---
 srcpkgs/apparmor/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/apparmor/template b/srcpkgs/apparmor/template
index c0ef28bae03..e4f8e3fb3ae 100644
--- a/srcpkgs/apparmor/template
+++ b/srcpkgs/apparmor/template
@@ -1,7 +1,7 @@
 # Template file for 'apparmor'
 pkgname=apparmor
 version=2.13.3
-revision=1
+revision=2
 wrksrc="${pkgname}-v${version}"
 build_wrksrc=libraries/libapparmor
 build_style=gnu-configure

From c167b9da6c61f834a92914682fd04578e956013f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 598/871] arandr: rebuild for Python 3.8.

---
 srcpkgs/arandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/arandr/template b/srcpkgs/arandr/template
index 71c8cbcd6ed..610dbc28bca 100644
--- a/srcpkgs/arandr/template
+++ b/srcpkgs/arandr/template
@@ -1,7 +1,7 @@
 # Template file for 'arandr'
 pkgname=arandr
 version=0.1.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenlayout"

From bba30530daf488b6023298eabe0286ef22dc234b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 599/871] asciinema: rebuild for Python 3.8.

---
 srcpkgs/asciinema/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/asciinema/template b/srcpkgs/asciinema/template
index 961b2756301..38b8871753c 100644
--- a/srcpkgs/asciinema/template
+++ b/srcpkgs/asciinema/template
@@ -1,7 +1,7 @@
 # Template file for 'asciinema'
 pkgname=asciinema
 version=2.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="asciinema"

From 1d6b1496186ef841bc1242060c2c7b81e338b365 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 600/871] attic: rebuild for Python 3.8.

---
 srcpkgs/attic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/attic/template b/srcpkgs/attic/template
index 533ef7377bc..ed454302ce4 100644
--- a/srcpkgs/attic/template
+++ b/srcpkgs/attic/template
@@ -1,7 +1,7 @@
 # Template file for 'attic'
 pkgname=attic
 version=0.16
-revision=14
+revision=15
 wrksrc="Attic-$version"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel python3-Sphinx"

From d8ed902e6856e2786c8cb54d894a8c99d1b9016f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 601/871] autorandr: rebuild for Python 3.8.

---
 srcpkgs/autorandr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/autorandr/template b/srcpkgs/autorandr/template
index bf38b833632..7f9796be18f 100644
--- a/srcpkgs/autorandr/template
+++ b/srcpkgs/autorandr/template
@@ -1,7 +1,7 @@
 # Template file for 'autorandr'
 pkgname=autorandr
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="autorandr.py"

From e7031a6e7316d513cbb59201107c90b4a57e4fa2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 602/871] avideo: rebuild for Python 3.8.

---
 srcpkgs/avideo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/avideo/template b/srcpkgs/avideo/template
index e4d004aafff..6430d391286 100644
--- a/srcpkgs/avideo/template
+++ b/srcpkgs/avideo/template
@@ -1,7 +1,7 @@
 # Template file for 'avideo'
 pkgname=avideo
 version=2017.9.27
-revision=3
+revision=4
 archs=noarch
 wrksrc="avideo"
 build_style=python3-module

From 4323d91b68da2735bf6055f35404626473ab43ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 603/871] aws-cli: rebuild for Python 3.8.

---
 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 9760121cf36..210fc0e9ff8 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.16.263
-revision=1
+revision=2
 archs=noarch
 wrksrc="aws-cli-${version}"
 build_style=python3-module

From a072a4b78500849e1505140a2a2348f1b87376b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:27 +0200
Subject: [PATCH 604/871] bandit: rebuild for Python 3.8.

---
 srcpkgs/bandit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bandit/template b/srcpkgs/bandit/template
index e6c1aa52d7c..d29873ecf61 100644
--- a/srcpkgs/bandit/template
+++ b/srcpkgs/bandit/template
@@ -1,7 +1,7 @@
 # Template file for 'bandit'
 pkgname=bandit
 version=1.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="bandit"

From 9213036d48cfcae05fb72eb57a9d7adf35ef7349 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 605/871] beancount: rebuild for Python 3.8.

---
 srcpkgs/beancount/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beancount/template b/srcpkgs/beancount/template
index b1e2a121668..0ba68fc8f4e 100644
--- a/srcpkgs/beancount/template
+++ b/srcpkgs/beancount/template
@@ -1,7 +1,7 @@
 # Template file for 'beancount'
 pkgname=beancount
 version=2.2.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="beancount"
 hostmakedepends="python3-setuptools"

From f80c318ccd4cd9ae05af733d0a5adc64fbdbc1c1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 606/871] beets: rebuild for Python 3.8.

---
 srcpkgs/beets/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/beets/template b/srcpkgs/beets/template
index 7dab56ceef8..975e6ec9f86 100644
--- a/srcpkgs/beets/template
+++ b/srcpkgs/beets/template
@@ -1,7 +1,7 @@
 # Template file for 'beets'
 pkgname=beets
 version=1.4.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="beets beetsplug"

From 4283c7615ca794b60bb9e55b859ada9f5f82e148 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 607/871] black: rebuild for Python 3.8.

---
 srcpkgs/black/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/black/template b/srcpkgs/black/template
index f6d433038b9..38498a1db07 100644
--- a/srcpkgs/black/template
+++ b/srcpkgs/black/template
@@ -1,7 +1,7 @@
 # Template file for 'black'
 pkgname=black
 version=19.3b0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="black.py blib2to3"

From 34bdad1d3183eaa6d948b88888152ddaebe3a219 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 608/871] blueman: rebuild for Python 3.8.

---
 srcpkgs/blueman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blueman/template b/srcpkgs/blueman/template
index 83f9b899583..3616aee7da3 100644
--- a/srcpkgs/blueman/template
+++ b/srcpkgs/blueman/template
@@ -1,7 +1,7 @@
 # Template file for 'blueman'
 pkgname=blueman
 version=2.1.1
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_module="blueman"
 configure_args="--disable-static"

From 983885706b89ab08c74986a287ee715732a349bc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 609/871] borg: rebuild for Python 3.8.

---
 srcpkgs/borg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borg/template b/srcpkgs/borg/template
index 520b1b2f65a..b69c7d3418e 100644
--- a/srcpkgs/borg/template
+++ b/srcpkgs/borg/template
@@ -1,7 +1,7 @@
 # Template file for 'borg'
 pkgname=borg
 version=1.1.10
-revision=2
+revision=3
 wrksrc="borgbackup-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-devel libressl-devel"

From 39aec37bcdca815613283eabb365231786bc31f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 610/871] borgmatic: rebuild for Python 3.8.

---
 srcpkgs/borgmatic/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/borgmatic/template b/srcpkgs/borgmatic/template
index 25b3956dada..ac44a48ebd6 100644
--- a/srcpkgs/borgmatic/template
+++ b/srcpkgs/borgmatic/template
@@ -1,7 +1,7 @@
 # Template file for 'borgmatic'
 pkgname=borgmatic
 version=1.4.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="borgmatic"

From 75c8b9cafed941bac487b46707ecdfd13fa62e86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:28 +0200
Subject: [PATCH 611/871] btrfs-backup: rebuild for Python 3.8.

---
 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 07d08a1b62b..55a3800a857 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=1
+revision=2
 wrksrc="${pkgname/-/_}-${version}"
 archs=noarch
 build_style=python3-module

From 244b354578239055c7c37ed5f6863ce0c654aaa1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 612/871] bum: rebuild for Python 3.8.

---
 srcpkgs/bum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bum/template b/srcpkgs/bum/template
index 58d0bb2b7f7..20f200e74d6 100644
--- a/srcpkgs/bum/template
+++ b/srcpkgs/bum/template
@@ -1,7 +1,7 @@
 # Template file for 'bum'
 pkgname=bum
 version=0.1.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="bum"

From 45a0590e978749c9ab246603df9e78399675b116 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 613/871] caffeine-ng: rebuild for Python 3.8.

---
 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 36287fbef5b..455b2f225c4 100644
--- a/srcpkgs/caffeine-ng/template
+++ b/srcpkgs/caffeine-ng/template
@@ -1,7 +1,7 @@
 # Template file for 'caffeine-ng'
 pkgname=caffeine-ng
 version=3.4.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="caffeine"

From 9dfc35d43f0f74003f4a362016ffbd29df9949e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 614/871] cairo-dock-plugins: rebuild for Python 3.8.

---
 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 9e6149c617f..0c23a7f6928 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=11
+revision=12
 build_style=cmake
 hostmakedepends="pkg-config"
 # XXX libetpan, libdbusmenu, etc

From 616690f8740e6e5c758687457a3d805dcd0f1c0a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 615/871] canto-curses: rebuild for Python 3.8.

---
 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 0905972b480..4270d61c2e0 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=4
+revision=5
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel ncurses-devel readline-devel"

From 2d4059655ffcce12454d23825d3d92ca235076ca Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 616/871] canto-next: rebuild for Python 3.8.

---
 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 fff7e82e238..fa28bde891b 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.7
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From af7572f709614ad92b93476ab99b766fcd6ac5d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 617/871] capstone: rebuild for Python 3.8.

---
 srcpkgs/capstone/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/capstone/template b/srcpkgs/capstone/template
index e13c7666ed1..fded7c7157e 100644
--- a/srcpkgs/capstone/template
+++ b/srcpkgs/capstone/template
@@ -1,7 +1,7 @@
 # Template file for 'capstone'
 pkgname=capstone
 version=4.0.1
-revision=1
+revision=2
 build_style=gnu-makefile
 make_use_env=1
 hostmakedepends="python-setuptools python3-setuptools"

From 0006c2bdf5a85253db14dec34fa0a014f1b10c22 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 618/871] catfish: rebuild for Python 3.8.

---
 srcpkgs/catfish/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/catfish/template b/srcpkgs/catfish/template
index 1b28ffcafff..b53de6b8ea6 100644
--- a/srcpkgs/catfish/template
+++ b/srcpkgs/catfish/template
@@ -1,7 +1,7 @@
 # Template file for 'catfish'
 pkgname=catfish
 version=1.4.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="catfish catfish_lib"

From 23a638f302526de7e7bedcc74ed2856565b2d1a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:29 +0200
Subject: [PATCH 619/871] ccsm: rebuild for Python 3.8.

---
 srcpkgs/ccsm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ccsm/template b/srcpkgs/ccsm/template
index 0421e587b23..3067003017f 100644
--- a/srcpkgs/ccsm/template
+++ b/srcpkgs/ccsm/template
@@ -1,7 +1,7 @@
 # Template file for 'ccsm'
 pkgname=ccsm
 version=0.8.16
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 hostmakedepends="automake intltool libtool pkg-config python3"

From c0de00e9660d34b8fe4db25caf9ff7d8c4439154 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 620/871] cheat: rebuild for Python 3.8.

---
 srcpkgs/cheat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cheat/template b/srcpkgs/cheat/template
index b60b4ba53b2..f1e419c3c5a 100644
--- a/srcpkgs/cheat/template
+++ b/srcpkgs/cheat/template
@@ -1,7 +1,7 @@
 # Template file for 'cheat'
 pkgname=cheat
 version=2.5.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="cheat"
 conf_files="/etc/cheat"

From 4440d97a47fb52686954d825c64feeed973663d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 621/871] clearine: rebuild for Python 3.8.

---
 srcpkgs/clearine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/clearine/template b/srcpkgs/clearine/template
index 419bb3c4550..539d494b79b 100644
--- a/srcpkgs/clearine/template
+++ b/srcpkgs/clearine/template
@@ -1,7 +1,7 @@
 # Template file for 'clearine'
 pkgname=clearine
 version=0.7
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="Clearine"
 hostmakedepends="python3-setuptools"

From dc2d87682c2bd29a7afa8fe15c43b1707cbf38e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 622/871] coccigrep: rebuild for Python 3.8.

---
 srcpkgs/coccigrep/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/coccigrep/template b/srcpkgs/coccigrep/template
index 736f16a458e..a02c2f78bb2 100644
--- a/srcpkgs/coccigrep/template
+++ b/srcpkgs/coccigrep/template
@@ -1,7 +1,7 @@
 # Template file for 'coccigrep'
 pkgname=coccigrep
 version=1.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coccigrep"

From f69a21c7c793f5c6314710b2454275296bbff4fc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 623/871] compizconfig-python: rebuild for Python 3.8.

---
 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 b9d9ce2892b..77d53c97f46 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.16
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static"
 hostmakedepends="automake intltool libtool pkg-config glib-devel gettext-devel python3-Cython"

From 2e74d3c33d8bf824bbcbbec89d8abaf26d085486 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 624/871] coursera-dl: rebuild for Python 3.8.

---
 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 0dfdd73083f..2b09e53d836 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.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="coursera"

From 906c6e3be41b46b4510c795b26108f8fcbce5749 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 625/871] cozy: rebuild for Python 3.8.

---
 srcpkgs/cozy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cozy/template b/srcpkgs/cozy/template
index ba56e812f56..4975c76f8e4 100644
--- a/srcpkgs/cozy/template
+++ b/srcpkgs/cozy/template
@@ -1,7 +1,7 @@
 # Template file for 'cozy'
 pkgname=cozy
 version=0.6.9
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 pycompile_module="cozy"

From 77d65f9c5ebb4c3209d4c85f064a2bdc68e99c14 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 626/871] cpuset: rebuild for Python 3.8.

---
 srcpkgs/cpuset/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cpuset/template b/srcpkgs/cpuset/template
index cf3910d2304..12b54631617 100644
--- a/srcpkgs/cpuset/template
+++ b/srcpkgs/cpuset/template
@@ -1,7 +1,7 @@
 # Template file for 'cpuset'
 pkgname=cpuset
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="cpuset"

From 0b398bcdc830ed261b22f0b01dd911b2c7f32df9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:30 +0200
Subject: [PATCH 627/871] ctop: rebuild for Python 3.8.

---
 srcpkgs/ctop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ctop/template b/srcpkgs/ctop/template
index b8ea58515b2..5231b4a4cb3 100644
--- a/srcpkgs/ctop/template
+++ b/srcpkgs/ctop/template
@@ -1,7 +1,7 @@
 # Template file for 'ctop'
 pkgname=ctop
 version=1.0.0
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="cgroup_top.py"

From 1a9b9cb8b777cc2dd52d14f9e398289a9f5ad57b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 628/871] cura: rebuild for Python 3.8.

---
 srcpkgs/cura/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/cura/template b/srcpkgs/cura/template
index 31318e5aecf..ab5cd315f21 100644
--- a/srcpkgs/cura/template
+++ b/srcpkgs/cura/template
@@ -1,7 +1,7 @@
 # Template file for 'cura'
 pkgname=cura
 version=4.3.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="Cura-${version}"
 build_style=cmake

From 65933bcc67817fd77d8eadd6c819ff9a67708b17 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 629/871] curseradio: rebuild for Python 3.8.

---
 srcpkgs/curseradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/curseradio/template b/srcpkgs/curseradio/template
index 4fe2306364a..f5afe3bba34 100644
--- a/srcpkgs/curseradio/template
+++ b/srcpkgs/curseradio/template
@@ -1,7 +1,7 @@
 # Template file for 'curseradio'
 pkgname=curseradio
 version=0.0.20171017
-revision=3
+revision=4
 archs=noarch
 _commit=1bd4bd0faeec675e0647bac9a100b526cba19f8d
 wrksrc="curseradio-${_commit}"

From 7fbb188d1002676d3626dae0094ba9fa60d9cbc2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 630/871] d-feet: rebuild for Python 3.8.

---
 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 6930eddf582..7f7d593f30a 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.15
-revision=1
+revision=2
 build_style=meson
 maintainer="Enno Boland <gottox@voidlinux.org>"
 hostmakedepends="pkg-config intltool itstool python3-pycodestyle"

From 2b16b88770e1acac7453f69344a2851b781f91b1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 631/871] deluge: rebuild for Python 3.8.

---
 srcpkgs/deluge/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/deluge/template b/srcpkgs/deluge/template
index 6dc7f26184d..8148c68033c 100644
--- a/srcpkgs/deluge/template
+++ b/srcpkgs/deluge/template
@@ -1,7 +1,7 @@
 # Template file for 'deluge'
 pkgname=deluge
 version=2.0.3
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="deluge"

From 1608bff5c8f796b97cb478a99845bf4db5d31db8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 632/871] devedeng: rebuild for Python 3.8.

---
 srcpkgs/devedeng/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/devedeng/template b/srcpkgs/devedeng/template
index d971b2e207b..2d0516cedd3 100644
--- a/srcpkgs/devedeng/template
+++ b/srcpkgs/devedeng/template
@@ -1,7 +1,7 @@
 # Template file for 'devedeng'
 pkgname=devedeng
 version=4.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="devedeng"

From 09f9fdbb261ad7f76280447071a9889fc2845c17 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 633/871] distcc: rebuild for Python 3.8.

---
 srcpkgs/distcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/distcc/template b/srcpkgs/distcc/template
index ded4255becd..4d6a450533f 100644
--- a/srcpkgs/distcc/template
+++ b/srcpkgs/distcc/template
@@ -1,7 +1,7 @@
 # Template file for 'distcc'
 pkgname=distcc
 version=3.3.3
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-Werror --with-gtk"
 conf_files="

From f5634510cf2b5ebebdee855f95712c7afc0f9930 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 634/871] docker-compose: rebuild for Python 3.8.

---
 srcpkgs/docker-compose/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/docker-compose/template b/srcpkgs/docker-compose/template
index c3383fdf1ad..f4a34005c83 100644
--- a/srcpkgs/docker-compose/template
+++ b/srcpkgs/docker-compose/template
@@ -1,7 +1,7 @@
 # Template file for 'docker-compose'
 pkgname=docker-compose
 version=1.24.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="compose-${version}"
 build_style=python3-module

From c4c3c51c1fef29a94a4d07ee38eec68fe04a727f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 635/871] edx-dl: rebuild for Python 3.8.

---
 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 209884640c6..a51c917d606 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.10
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="edx_dl"

From bcd695ebeab546a933aabbeceb8538927ff79a0e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:31 +0200
Subject: [PATCH 636/871] electrum: rebuild for Python 3.8.

---
 srcpkgs/electrum/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template
index 3861becdda9..7525e08e9e2 100644
--- a/srcpkgs/electrum/template
+++ b/srcpkgs/electrum/template
@@ -1,7 +1,7 @@
 # Template file for 'electrum'
 pkgname=electrum
 version=3.3.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="electrum electrum_gui electrum_plugins"

From e068a456d18e08f1f7e340f858cc80e1b17ac30f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 637/871] electrum-ltc: rebuild for Python 3.8.

---
 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 ad6f745e152..cf7265fbec8 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.6.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"

From 5317fd53eac551e44dbccf386a1a3da9ae841ba6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 638/871] eolie: rebuild for Python 3.8.

---
 srcpkgs/eolie/patches/python-3.8.patch | 11 +++++++++++
 srcpkgs/eolie/template                 |  2 +-
 2 files changed, 12 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/eolie/patches/python-3.8.patch

diff --git a/srcpkgs/eolie/patches/python-3.8.patch b/srcpkgs/eolie/patches/python-3.8.patch
new file mode 100644
index 00000000000..1c80a7e8a4f
--- /dev/null
+++ b/srcpkgs/eolie/patches/python-3.8.patch
@@ -0,0 +1,11 @@
+--- python-webextension/meson.build.orig
++++ python-webextension/meson.build
+@@ -2,7 +2,7 @@
+ 
+ webkitextension = dependency('webkit2gtk-web-extension-4.0')
+ pyobject = dependency('pygobject-3.0')
+-python3 = dependency('python3')
++python3 = dependency('python3-embed')
+ 
+ pythonloader = configure_file(
+   input: 'pythonloader.c.in',
diff --git a/srcpkgs/eolie/template b/srcpkgs/eolie/template
index b3da3dcd829..94514510c98 100644
--- a/srcpkgs/eolie/template
+++ b/srcpkgs/eolie/template
@@ -1,7 +1,7 @@
 # Template file for 'eolie'
 pkgname=eolie
 version=0.9.62
-revision=1
+revision=2
 _eolie_hash=bb4aad19272cc636bd17f2f6602127fe
 build_style=meson
 pycompile_module="eolie"

From 025d34fbb1df072a160b9e47620706369d818c35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 639/871] eyeD3: rebuild for Python 3.8.

---
 srcpkgs/eyeD3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/eyeD3/template b/srcpkgs/eyeD3/template
index 7be047810bd..211553f0adb 100644
--- a/srcpkgs/eyeD3/template
+++ b/srcpkgs/eyeD3/template
@@ -1,7 +1,7 @@
 # Template file for 'eyeD3'
 pkgname=eyeD3
 version=0.8.10
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="eyed3"

From edadf3e163a7e7681159395f6557b1be83ad582c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 640/871] fail2ban: rebuild for Python 3.8.

---
 srcpkgs/fail2ban/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index 829e93385dc..361bcd12edd 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -1,7 +1,7 @@
 # Template file for 'fail2ban'
 pkgname=fail2ban
 version=0.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config python3"

From 35224cd38e09c7e2ce835c84f8fd1ab957a365ee Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 641/871] fava: rebuild for Python 3.8.

---
 srcpkgs/fava/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fava/template b/srcpkgs/fava/template
index 24e66cac45b..890858b095b 100644
--- a/srcpkgs/fava/template
+++ b/srcpkgs/fava/template
@@ -1,7 +1,7 @@
 # Template file for 'fava'
 pkgname=fava
 version=1.11
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fava"

From db146283a28f0c8183a3fd1e7f9512805479c80e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 642/871] fierce: rebuild for Python 3.8.

---
 srcpkgs/fierce/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fierce/template b/srcpkgs/fierce/template
index 86dedb39ad2..86692c6457b 100644
--- a/srcpkgs/fierce/template
+++ b/srcpkgs/fierce/template
@@ -1,7 +1,7 @@
 # Template file for 'fierce'
 pkgname=fierce
 version=1.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="fierce"

From 2a37ac295b6f5b0b72e9d0c5cc2bf5d5d366c57a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 643/871] fifengine: rebuild for Python 3.8.

---
 srcpkgs/fifengine/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/fifengine/template b/srcpkgs/fifengine/template
index 1d4bcbb9297..871c94ad7e0 100644
--- a/srcpkgs/fifengine/template
+++ b/srcpkgs/fifengine/template
@@ -1,7 +1,7 @@
 # Template file for 'fifengine'
 pkgname=fifengine
 version=0.4.2
-revision=1
+revision=2
 build_style=cmake
 pycompile_module="fife"
 hostmakedepends="swig python3"

From e5ee1a9a1e5db54bb99870743fa830c0ba6ba0b9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:32 +0200
Subject: [PATCH 644/871] flake8: rebuild for Python 3.8.

---
 srcpkgs/flake8/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/flake8/template b/srcpkgs/flake8/template
index d8f2b095644..4d7ebeba176 100644
--- a/srcpkgs/flake8/template
+++ b/srcpkgs/flake8/template
@@ -1,7 +1,7 @@
 # Template file for 'flake8'
 pkgname=flake8
 version=3.7.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="flake8"

From 0f222a4aef9a450ee38fa2e6d0b771b0042fb31d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 645/871] fontforge: fix and rebuild for Python 3.8.

---
 srcpkgs/fontforge/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/fontforge/template b/srcpkgs/fontforge/template
index 7fb02d7e371..2893bc52cfb 100644
--- a/srcpkgs/fontforge/template
+++ b/srcpkgs/fontforge/template
@@ -1,7 +1,7 @@
 # Template file for 'fontforge'
 pkgname=fontforge
 version=20190801
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake ca-certificates git libltdl-devel libtool m4
  pkg-config python3"
@@ -20,6 +20,7 @@ checksum="e4501de5bd8e7f6c68fe7d3abd4667bf44a07b981d342ffa00e8f42e155ce633
  1bf9c7eb8835e6ed94e62cb49f1141bc046c562849e52e6c3c7f1d7cfc95c7b3"
 
 pre_configure() {
+        sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION}/&-embed/g' m4/fontforge_arg_enable.m4
 	./bootstrap
 }
 

From d0186b5b0f6370508e3ee0df23b1d625a1262548 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 646/871] gajim: rebuild for Python 3.8.

---
 srcpkgs/gajim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gajim/template b/srcpkgs/gajim/template
index 8c49c0cf6ef..e81015b3906 100644
--- a/srcpkgs/gajim/template
+++ b/srcpkgs/gajim/template
@@ -1,7 +1,7 @@
 # Template file for 'gajim'
 pkgname=gajim
 version=1.1.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gajim"

From 7d4f1ad597ad9bf955f100ba307fbac0f94f638d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 647/871] gajim-omemo: rebuild for Python 3.8.

---
 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 803f94713be..64d47228496 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.6.29
-revision=1
+revision=2
 wrksrc="omemo"
 hostmakedepends="unzip"
 depends="python3 python3-setuptools python3-cryptography python3-axolotl python3-qrcode"

From 397ff6db07520e94573c075d85fce38e4eaa2b43 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 648/871] gallery-dl: rebuild for Python 3.8.

---
 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 a25258fb2d8..38558e5bd89 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.10.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gallery_dl"

From 25917d11e2a610f34a5d933fcbafdeb3161833d4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 649/871] gandi-cli: rebuild for Python 3.8.

---
 srcpkgs/gandi-cli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gandi-cli/template b/srcpkgs/gandi-cli/template
index c5e805a09fd..4193bfe4638 100644
--- a/srcpkgs/gandi-cli/template
+++ b/srcpkgs/gandi-cli/template
@@ -1,7 +1,7 @@
 # Template file for 'gandi-cli'
 pkgname=gandi-cli
 version=1.4
-revision=1
+revision=2
 archs=noarch
 wrksrc="gandi.cli-${version}"
 build_style=python3-module

From fab9df095b7675fb2b845d0a95766ec5823d6f57 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 650/871] gcovr: rebuild for Python 3.8.

---
 srcpkgs/gcovr/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gcovr/template b/srcpkgs/gcovr/template
index 2b9ff94bf2a..0d4addfc8a7 100644
--- a/srcpkgs/gcovr/template
+++ b/srcpkgs/gcovr/template
@@ -1,7 +1,7 @@
 # Template file for 'gcovr'
 pkgname=gcovr
 version=4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gcovr"

From 6f86ae27e1791bfd40ded26a72a3a29f4b92b5cd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:33 +0200
Subject: [PATCH 651/871] gedit: rebuild for Python 3.8.

---
 srcpkgs/gedit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gedit/template b/srcpkgs/gedit/template
index 904d3b7c3c4..6666c331c52 100644
--- a/srcpkgs/gedit/template
+++ b/srcpkgs/gedit/template
@@ -1,7 +1,7 @@
 # Template file for 'gedit'
 pkgname=gedit
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gi/overrides"

From c0ad146223e25d9a2c2f70a93baa87cbd3bc64fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 652/871] geis: rebuild for Python 3.8.

---
 srcpkgs/geis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/geis/template b/srcpkgs/geis/template
index fe31a3d2aeb..20afe76b0d8 100644
--- a/srcpkgs/geis/template
+++ b/srcpkgs/geis/template
@@ -1,7 +1,7 @@
 # Template file for 'geis'
 pkgname=geis
 version=2.2.17
-revision=4
+revision=5
 hostmakedepends="pkg-config python3-devel"
 makedepends="dbus-devel grail-devel frame-devel libXi-devel python3-devel xorg-server-devel"
 build_style="gnu-configure"

From 489bb1caf6725ac0654eb3621c6a0ff226d69e5f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 653/871] git-cola: rebuild for Python 3.8.

---
 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 7eaba90f3be..fd0bbf971d3 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.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/share/git-cola/lib"

From 32a9dfbda38edcb1a8d34686ca0c4424fdb82a3d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 654/871] git-review: rebuild for Python 3.8.

---
 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 d999dc87b16..c180cc60780 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="git_review"

From edd2e0efe128a19ffa0b2add54248adb7283188d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 655/871] git-revise: rebuild for Python 3.8.

---
 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 4179a52bddc..a1bf51dc447 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.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gitrevise"

From d3bf261b0fe095cfd44776f2fd60dec21786ebba Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 656/871] gitg: rebuild for Python 3.8.

---
 srcpkgs/gitg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gitg/template b/srcpkgs/gitg/template
index e0da8e9490d..a3381fdb3a7 100644
--- a/srcpkgs/gitg/template
+++ b/srcpkgs/gitg/template
@@ -1,7 +1,7 @@
 # Template file for 'gitg'
 pkgname=gitg
 version=3.32.1
-revision=1
+revision=2
 build_style=meson
 hostmakedepends="intltool pkg-config gobject-introspection vala glib-devel"
 makedepends="gtksourceview-devel libgit2-glib-devel libgee08-devel gtkspell3-devel

From b2d9acdb78784db6e65726c50a62ea63d74f70ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 657/871] glances: rebuild for Python 3.8.

---
 srcpkgs/glances/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glances/template b/srcpkgs/glances/template
index 230a277b64a..2f2614e00be 100644
--- a/srcpkgs/glances/template
+++ b/srcpkgs/glances/template
@@ -1,7 +1,7 @@
 # Template file for 'glances'
 pkgname=glances
 version=3.1.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="glances"

From 8440629696d0439c1dd509c3ad2b6dc4b8a6a85e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 658/871] glusterfs: rebuild for Python 3.8.

---
 srcpkgs/glusterfs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/glusterfs/template b/srcpkgs/glusterfs/template
index 574d580df6d..2b09d478736 100644
--- a/srcpkgs/glusterfs/template
+++ b/srcpkgs/glusterfs/template
@@ -1,7 +1,7 @@
 # Template file for 'glusterfs'
 pkgname=glusterfs
 version=7.0
-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 1fd9846fda16a886f0dd954c795a0bd8865cc369 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:34 +0200
Subject: [PATCH 659/871] gnome-authenticator: rebuild for Python 3.8.

---
 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 52d161897c7..ab7c505c0fe 100644
--- a/srcpkgs/gnome-authenticator/template
+++ b/srcpkgs/gnome-authenticator/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-authenticator'
 pkgname=gnome-authenticator
 version=0.2.4
-revision=2
+revision=3
 _libgd_hash=7ae254bfc5f641c60566614e08245176f7bc5aa8
 wrksrc="Authenticator-${version}"
 build_style=meson

From 83ba5f82f6285e0ebb684e8a5bc62a74895faa18 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 660/871] gnome-music: rebuild for Python 3.8.

---
 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 bceb7c369c8..e2fbbcbdeca 100644
--- a/srcpkgs/gnome-music/template
+++ b/srcpkgs/gnome-music/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-music'
 pkgname=gnome-music
 version=3.32.2
-revision=1
+revision=2
 build_helper="gir"
 build_style=meson
 pycompile_module="gnomemusic"

From 648a94e7c7085e04f9bceb4d7a371533fcf1a908 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 661/871] gnome-passbook: rebuild for Python 3.8.

---
 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 54035dc920b..89047338503 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.1
-revision=1
+revision=2
 _release_hash=0a227cfdf706f4bfcc0b782026f1aeb2
 wrksrc="passbook-${version}"
 build_style=meson

From 8c289f4f1a4955c88297a0d63ab97c9c7fe7acfe Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 662/871] gnome-passwordsafe: rebuild for Python 3.8.

---
 srcpkgs/gnome-passwordsafe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnome-passwordsafe/template b/srcpkgs/gnome-passwordsafe/template
index f310ce03a08..8f1f19174d2 100644
--- a/srcpkgs/gnome-passwordsafe/template
+++ b/srcpkgs/gnome-passwordsafe/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-passwordsafe'
 pkgname=gnome-passwordsafe
 version=3.32.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="PasswordSafe-${version}"
 build_style=meson

From fb62ec0ceb405c96df802eeecfef34441910a0a6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 663/871] gns3-gui: rebuild for Python 3.8.

---
 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 38751dea59b..f4318dc6afc 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.1.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3"

From 701e9a18968eaf79b35392f9d1b8e44aa1997954 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 664/871] gns3-net-converter: rebuild for Python 3.8.

---
 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 b9b7403e8a6..70b6c90e8c8 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=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="gns3converter"

From 2ef27267599e5d78afde3733ee12c4d8ed490633 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:35 +0200
Subject: [PATCH 665/871] gns3-server: rebuild for Python 3.8.

---
 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 6bd9c067b20..739c584cb7c 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.1.21
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="gns3server"
 hostmakedepends="python3-setuptools"

From 869a06c8779433fb7d5bf19f28db5028dad4dfb2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 666/871] gnucash: rebuild for Python 3.8.

---
 srcpkgs/gnucash/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gnucash/template b/srcpkgs/gnucash/template
index 68bb811fc42..d8ff0a8ec86 100644
--- a/srcpkgs/gnucash/template
+++ b/srcpkgs/gnucash/template
@@ -1,7 +1,7 @@
 # Template file for 'gnucash'
 pkgname=gnucash
 version=3.7
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DWITH_SQL=0 -DWITH_PYTHON=1"
 hostmakedepends="pkg-config guile python3 libxslt perl"

From 1637d753864284b26fbd7b0a041dd1af5fcf3bd6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 667/871] gom: rebuild for Python 3.8.

---
 srcpkgs/gom/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gom/template b/srcpkgs/gom/template
index 6ec2a5e338f..0b45e19def4 100644
--- a/srcpkgs/gom/template
+++ b/srcpkgs/gom/template
@@ -1,7 +1,7 @@
 # Template file for 'gom'
 pkgname=gom
 version=0.3.3
-revision=3
+revision=4
 build_style=meson
 build_helper="gir"
 configure_args="-Denable-introspection=$(vopt_if gir true false)

From 133e0a9702fecd3fa6e71679d7adc5e264abcd31 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 668/871] gpodder: rebuild for Python 3.8.

---
 srcpkgs/gpodder/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gpodder/template b/srcpkgs/gpodder/template
index 7c7414e19cd..5cc63ab4205 100644
--- a/srcpkgs/gpodder/template
+++ b/srcpkgs/gpodder/template
@@ -1,7 +1,7 @@
 # Template file for 'gpodder'
 pkgname=gpodder
 version=3.10.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="gpodder-${version}"
 make_check_target=unittest

From deedb9ea5b6545d0771c02ff76a971991e64474d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 669/871] gramps: rebuild for Python 3.8.

---
 srcpkgs/gramps/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gramps/template b/srcpkgs/gramps/template
index 9d1d1a4616a..5d40aeefb49 100644
--- a/srcpkgs/gramps/template
+++ b/srcpkgs/gramps/template
@@ -1,7 +1,7 @@
 # Template file for 'gramps'
 pkgname=gramps
 version=5.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="gramps"

From 87a398ef3f9824aa5cd434e9c08b85c9d50bbcad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 670/871] greg: rebuild for Python 3.8.

---
 srcpkgs/greg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/greg/template b/srcpkgs/greg/template
index 9c15ba82f4b..d898d5fdf61 100644
--- a/srcpkgs/greg/template
+++ b/srcpkgs/greg/template
@@ -1,7 +1,7 @@
 # Template file for 'greg'
 pkgname=greg
 version=0.4.7
-revision=4
+revision=5
 archs=noarch
 build_style=python3-module
 pycompile_module="greg"

From b2518bece0bea93ae71e420b7b60e9b63fd12ef1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 671/871] gst1-python3: rebuild for Python 3.8.

---
 srcpkgs/gst1-python3/patches/python-3.8.patch | 11 +++++++++++
 srcpkgs/gst1-python3/template                 |  2 +-
 2 files changed, 12 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/gst1-python3/patches/python-3.8.patch

diff --git a/srcpkgs/gst1-python3/patches/python-3.8.patch b/srcpkgs/gst1-python3/patches/python-3.8.patch
new file mode 100644
index 00000000000..cbf1a58ea51
--- /dev/null
+++ b/srcpkgs/gst1-python3/patches/python-3.8.patch
@@ -0,0 +1,11 @@
+--- meson.build
++++ meson.build
+@@ -24,7 +24,7 @@ pygobject_dep = dependency('pygobject-3.0', fallback: ['pygobject', 'pygobject_d
+ 
+ pymod = import('python')
+ python = pymod.find_installation(get_option('python'))
+-python_dep = python.dependency(required : true)
++python_dep = dependency('python3-embed', required : true)
+ 
+ python_abi_flags = python.get_variable('ABIFLAGS', '')
+ pylib_loc = get_option('libpython-dir')
diff --git a/srcpkgs/gst1-python3/template b/srcpkgs/gst1-python3/template
index 6f02f19aca3..bf946f6a8bf 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.16.1
-revision=1
+revision=2
 wrksrc="gst-python-${version}"
 build_style=meson
 pycompile_module="gi/overrides"

From 673c0d36c8fce22ec8addb5e8d1489f3f03b56c2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 672/871] guake: rebuild for Python 3.8.

---
 srcpkgs/guake/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/guake/template b/srcpkgs/guake/template
index 86eaba649a7..d92fdf89355 100644
--- a/srcpkgs/guake/template
+++ b/srcpkgs/guake/template
@@ -1,7 +1,7 @@
 # Template file for 'guake'
 pkgname=guake
 version=3.6.3
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 wrksrc="Guake-${version}"

From 360848272923ec69b39769579eca64440329fa19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 673/871] gufw: rebuild for Python 3.8.

---
 srcpkgs/gufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gufw/template b/srcpkgs/gufw/template
index d2b8a4b025d..a4e7d861d71 100644
--- a/srcpkgs/gufw/template
+++ b/srcpkgs/gufw/template
@@ -1,7 +1,7 @@
 # Template file for 'gufw'
 pkgname=gufw
 version=19.10.0
-revision=1
+revision=2
 archs=noarch
 wrksrc="gui-ufw-${version}"
 build_style=python3-module

From 453c4069633bff01bc1e68f4af5be877c2bc0b35 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:36 +0200
Subject: [PATCH 674/871] hamlib: rebuild for Python 3.8.

---
 srcpkgs/hamlib/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hamlib/template b/srcpkgs/hamlib/template
index c28a069cd6f..d52436c0893 100644
--- a/srcpkgs/hamlib/template
+++ b/srcpkgs/hamlib/template
@@ -1,7 +1,7 @@
 # Template file for 'hamlib'
 pkgname=hamlib
 version=3.3
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-static --with-perl-binding --with-python-binding
  --with-tcl-binding --with-xml-support"

From b2d1dfe47266b42e813a2bcbf6ada7c8c40cd864 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 675/871] hangups: rebuild for Python 3.8.

---
 srcpkgs/hangups/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hangups/template b/srcpkgs/hangups/template
index 0a2f2db16b4..0837a2c47c3 100644
--- a/srcpkgs/hangups/template
+++ b/srcpkgs/hangups/template
@@ -1,7 +1,7 @@
 # Template file for 'hangups'
 pkgname=hangups
 version=0.4.9
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="hangups"
 hostmakedepends="python3-setuptools"

From f3379f1423acecb1b8f011a769e4c5c56a7544b3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 676/871] hplip: rebuild for Python 3.8.

---
 srcpkgs/hplip/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hplip/template b/srcpkgs/hplip/template
index 07a707569f6..3ef76e4591b 100644
--- a/srcpkgs/hplip/template
+++ b/srcpkgs/hplip/template
@@ -1,7 +1,7 @@
 # Template file for 'hplip'
 pkgname=hplip
 version=3.19.8
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="usr/share/hplip"
 configure_args="

From 9461a1520ab9b744b68c6703ab72c0d55b5cf92e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 677/871] httpie: rebuild for Python 3.8.

---
 srcpkgs/httpie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/httpie/template b/srcpkgs/httpie/template
index 387af8ebf05..61fc1499d35 100644
--- a/srcpkgs/httpie/template
+++ b/srcpkgs/httpie/template
@@ -1,7 +1,7 @@
 # Template file for 'httpie'
 pkgname=httpie
 version=1.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="httpie"

From 9bf70c096694769966f21ca1c06db2c01f2f42d2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 678/871] ibus: rebuild for Python 3.8.

---
 srcpkgs/ibus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ibus/template b/srcpkgs/ibus/template
index 4875c7535d6..d3c35d786a4 100644
--- a/srcpkgs/ibus/template
+++ b/srcpkgs/ibus/template
@@ -1,7 +1,7 @@
 # Template file for 'ibus'
 pkgname=ibus
 version=1.5.20
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 configure_args="--enable-ui --enable-gtk3 --disable-tests

From fdb5aea4ca9099ac7f42fb4fc32a255a631d7eb5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 679/871] iotop: rebuild for Python 3.8.

---
 srcpkgs/iotop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template
index 146a9e97791..522bf32a7c2 100644
--- a/srcpkgs/iotop/template
+++ b/srcpkgs/iotop/template
@@ -1,7 +1,7 @@
 # Template file for 'iotop'
 pkgname=iotop
 version=0.6
-revision=5
+revision=6
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From fbfd515e4877c9309685c62d76e5a3e0590d0f5a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 680/871] jrnl: rebuild for Python 3.8.

---
 srcpkgs/jrnl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template
index 3d08f129885..b184ef09508 100644
--- a/srcpkgs/jrnl/template
+++ b/srcpkgs/jrnl/template
@@ -1,7 +1,7 @@
 # Template file for 'jrnl'
 pkgname=jrnl
 version=1.9.8
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 pycompile_module="jrnl"

From 5bcfc624d4aa0fdfa9c5cd82abbdc82b03941a33 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:37 +0200
Subject: [PATCH 681/871] khal: rebuild for Python 3.8.

---
 srcpkgs/khal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khal/template b/srcpkgs/khal/template
index 39d08a66ba8..a73516695bf 100644
--- a/srcpkgs/khal/template
+++ b/srcpkgs/khal/template
@@ -1,7 +1,7 @@
 # Template file for 'khal'
 pkgname=khal
 version=0.10.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khal"

From 2e75bfe25d7e2d9d9ad59337bfcb4747291d0d49 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 682/871] khard: rebuild for Python 3.8.

---
 srcpkgs/khard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/khard/template b/srcpkgs/khard/template
index 6c6f3024be1..3ec9f398d99 100644
--- a/srcpkgs/khard/template
+++ b/srcpkgs/khard/template
@@ -1,7 +1,7 @@
 # Template file for 'khard'
 pkgname=khard
 version=0.14.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="khard"

From 4f8ea5c302f2ecdb286d095f2f87214e99a5b90f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 683/871] lfm: rebuild for Python 3.8.

---
 srcpkgs/lfm/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lfm/template b/srcpkgs/lfm/template
index 0a0a3b4f563..1e0e7cf29fa 100644
--- a/srcpkgs/lfm/template
+++ b/srcpkgs/lfm/template
@@ -1,7 +1,7 @@
 # Template file for 'lfm'
 pkgname=lfm
 version=3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 06d3995aff25c2717896cbc4ed8d7c196e163a6e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 684/871] libArcus: rebuild for Python 3.8.

---
 srcpkgs/libArcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libArcus/template b/srcpkgs/libArcus/template
index 8e6c97ada21..d2ffda576d4 100644
--- a/srcpkgs/libArcus/template
+++ b/srcpkgs/libArcus/template
@@ -1,7 +1,7 @@
 # Template file for 'libArcus'
 pkgname=libArcus
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DBUILD_EXAMPLES=OFF"
 hostmakedepends="protobuf python3-sip-devel"

From 69977b24bebce8c6fba66e2b18d905470e08047a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 685/871] libSavitar: rebuild for Python 3.8.

---
 srcpkgs/libSavitar/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libSavitar/template b/srcpkgs/libSavitar/template
index a9d3020158f..213f02f4d65 100644
--- a/srcpkgs/libSavitar/template
+++ b/srcpkgs/libSavitar/template
@@ -1,7 +1,7 @@
 # Template file for 'libSavitar'
 pkgname=libSavitar
 version=4.3.0
-revision=1
+revision=2
 build_style=cmake
 hostmakedepends="python3"
 makedepends="python3-sip-devel python3-devel pugixml-devel"

From 541beba69db3f5d196c8cb49c50fdf4bb960f51a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 686/871] libaccounts-glib: rebuild for Python 3.8.

---
 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 717be24f209..239f9307261 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=2
+revision=3
 wrksrc="${pkgname}-VERSION_${version}-8948717702424ce15f4e23e5db2c8ce0799ec120"
 build_style=meson
 hostmakedepends="gtk-doc pkg-config glib-devel gobject-introspection vala"

From 4760dea00a1658f7d1d96ae01ff3f0d54784d176 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 687/871] libblockdev: rebuild for Python 3.8.

---
 srcpkgs/libblockdev/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libblockdev/template b/srcpkgs/libblockdev/template
index 4b505ea12ed..122c0fc70a6 100644
--- a/srcpkgs/libblockdev/template
+++ b/srcpkgs/libblockdev/template
@@ -1,7 +1,7 @@
 # Template file for 'libblockdev'
 pkgname=libblockdev
 version=2.23
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="cryptsetup-devel device-mapper-devel dmraid-devel libbytesize-devel

From 54bb2be59e35899bf209c75a5b4dfbdf98a214d1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 688/871] libbytesize: rebuild for Python 3.8.

---
 srcpkgs/libbytesize/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libbytesize/template b/srcpkgs/libbytesize/template
index ef082d02d0c..cb72e5b9fe4 100644
--- a/srcpkgs/libbytesize/template
+++ b/srcpkgs/libbytesize/template
@@ -1,7 +1,7 @@
 # Template file for 'libbytesize'
 pkgname=libbytesize
 version=2.1
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python3"
 makedepends="mpfr-devel pcre2-devel"

From 7679dc590a7d6b60b7c47cf9ada6ac5561d3a881 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 689/871] libcap-ng: rebuild for Python 3.8.

---
 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 f462636c4c1..c6ec4f0a216 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.7.10
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-python --without-python3"
 short_desc="Alternate POSIX capabilities library"

From f2554978c3e49ee70c250b631af4682edc9fb5ea Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:38 +0200
Subject: [PATCH 690/871] libffado: rebuild for Python 3.8.

---
 srcpkgs/libffado/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libffado/template b/srcpkgs/libffado/template
index a9b6a5ec6a8..d566806bd82 100644
--- a/srcpkgs/libffado/template
+++ b/srcpkgs/libffado/template
@@ -1,7 +1,7 @@
 # Template file for 'libffado'
 pkgname=libffado
 version=2.4.1
-revision=1
+revision=2
 build_style=scons
 make_build_args="PREFIX=/usr MANDIR=/usr/share/man
  UDEVDIR=/usr/lib/udev/rules.d CUSTOM_ENV=1 BUILD_TESTS=0

From 3324cd7f98470319b8a66c45a538ab8fe0e12d25 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 691/871] libgit2-glib: rebuild for Python 3.8.

---
 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 05389a18258..ce68cb35d66 100644
--- a/srcpkgs/libgit2-glib/template
+++ b/srcpkgs/libgit2-glib/template
@@ -1,7 +1,7 @@
 # Template file for 'libgit2-glib'
 pkgname=libgit2-glib
 version=0.28.0.1
-revision=1
+revision=2
 build_style=meson
 build_helper="gir"
 configure_args="-Dintrospection=$(vopt_if gir true false)

From ff57cb8bb1f13c63969900aa88b245b02edc4333 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 692/871] libixion: rebuild for Python 3.8.

---
 srcpkgs/libixion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libixion/template b/srcpkgs/libixion/template
index 5d2c58ee7c0..dbc05d8b9c1 100644
--- a/srcpkgs/libixion/template
+++ b/srcpkgs/libixion/template
@@ -2,7 +2,7 @@
 pkgname=libixion
 reverts="0.15.0_1"
 version=0.14.1
-revision=2
+revision=3
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="boost-devel mdds python3-devel"

From 5150d083626198737858fecc55babfe906f0ca74 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 693/871] liblouis: rebuild for Python 3.8.

---
 srcpkgs/liblouis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liblouis/template b/srcpkgs/liblouis/template
index a0eca12e4ee..617f1490e75 100644
--- a/srcpkgs/liblouis/template
+++ b/srcpkgs/liblouis/template
@@ -1,7 +1,7 @@
 # Template file for 'liblouis'
 pkgname=liblouis
 version=3.11.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--enable-ucs4"
 pycompile_module="louis"

From 5a43754fc5f16b507c782f78282dddcb64ff6550 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 694/871] opencv: rebuild for Python 3.8.

---
 srcpkgs/opencv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/opencv/template b/srcpkgs/opencv/template
index fcc38299f23..474b77be181 100644
--- a/srcpkgs/opencv/template
+++ b/srcpkgs/opencv/template
@@ -1,7 +1,7 @@
 # Template file for 'opencv'
 pkgname=opencv
 version=3.4.5
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_PRECOMPILED_HEADERS=OFF -DWITH_OPENMP=ON
  -DWITH_OPENCL=ON -DENABLE_CXX11=ON -DOPENCV_SKIP_PYTHON_LOADER=ON

From 62e6181dd28a5af336dce30e24d007e53771eba2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 2 Nov 2019 19:02:42 +0100
Subject: [PATCH 695/871] libopenshot-audio: apply upsteam PR 39 to build with
 GCC 9.

---
 .../patches/fix-std_isfinite.patch            | 23 -------------------
 srcpkgs/libopenshot-audio/template            | 12 +++++++---
 2 files changed, 9 insertions(+), 26 deletions(-)
 delete mode 100644 srcpkgs/libopenshot-audio/patches/fix-std_isfinite.patch

diff --git a/srcpkgs/libopenshot-audio/patches/fix-std_isfinite.patch b/srcpkgs/libopenshot-audio/patches/fix-std_isfinite.patch
deleted file mode 100644
index 231f183d5a7..00000000000
--- a/srcpkgs/libopenshot-audio/patches/fix-std_isfinite.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-Fix for gcc6 which does not have std::isfinite() but suggests
-to use std::finite() instead.
-
---- JuceLibraryCode/modules/juce_core/maths/juce_MathsFunctions.h	2016-08-30 06:24:27.000000000 +0200
-+++ JuceLibraryCode/modules/juce_core/maths/juce_MathsFunctions.h	2016-12-12 14:33:29.170005576 +0100
-@@ -381,7 +381,7 @@
-    #if JUCE_WINDOWS && !JUCE_MINGW
-     return _finite (value) != 0;
-    #else
--    return std::isfinite (value);
-+    return finite (value);
-    #endif
- }
- 
-@@ -391,7 +391,7 @@
-    #if JUCE_WINDOWS && !JUCE_MINGW
-     return _finite (value) != 0;
-    #else
--    return std::isfinite (value);
-+    return finite (value);
-    #endif
- }
- 
diff --git a/srcpkgs/libopenshot-audio/template b/srcpkgs/libopenshot-audio/template
index 2e97478137a..32724ecd9fb 100644
--- a/srcpkgs/libopenshot-audio/template
+++ b/srcpkgs/libopenshot-audio/template
@@ -1,7 +1,7 @@
 # Template file for 'libopenshot-audio'
 pkgname=libopenshot-audio
 version=0.1.8
-revision=1
+revision=2
 build_style=cmake
 hostmakedepends="doxygen"
 makedepends="alsa-lib-devel libXcursor-devel libXinerama-devel libXrandr-devel
@@ -10,11 +10,17 @@ short_desc="OpenShot audio library"
 maintainer="Spencer Hill <spencernh77@gmail.com>"
 license="GPL-3.0-or-later"
 homepage="https://github.com/OpenShot/libopenshot-audio"
-distfiles="https://github.com/OpenShot/libopenshot-audio/archive/v${version}.tar.gz"
-checksum=384d0ef39c78f16d77048de3c96152321724084f978dc622675dd6bb16e15e19
+distfiles="https://github.com/OpenShot/libopenshot-audio/archive/v${version}.tar.gz
+ https://patch-diff.githubusercontent.com/raw/OpenShot/libopenshot-audio/pull/39.patch"
+checksum="384d0ef39c78f16d77048de3c96152321724084f978dc622675dd6bb16e15e19
+ ae784a96730f7cf09ba7bf29d06704ba6a0eca662d242d786b0a86a4343e9dc9"
 
 CXXFLAGS="-I${XBPS_CROSS_BASE}/usr/include/freetype2"
 
+post_extract() {
+	patch -p1 <../39.patch
+}
+
 libopenshot-audio-devel_package() {
 	short_desc+=" - development files"
 	depends+=" ${sourcepkg}>=${version}_${revision}"

From 8cbd9ffc963bfe40dc200878e723851f5e0a55cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 696/871] libopenshot: apply upstream PR 209 for GCC 9 and
 rebuild for Python 3.8.

---
 srcpkgs/libopenshot/template | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/libopenshot/template b/srcpkgs/libopenshot/template
index e1ac18faf93..0414c01effb 100644
--- a/srcpkgs/libopenshot/template
+++ b/srcpkgs/libopenshot/template
@@ -1,7 +1,7 @@
 # Template file for 'libopenshot'
 pkgname=libopenshot
 version=0.2.3
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 build_style=cmake
 pycompile_module="openshot.py"
@@ -15,8 +15,14 @@ short_desc="Library files for the OpenShot video editor"
 maintainer="Spencer Hill <spencernh77@gmail.com>"
 license="LGPL-3.0-or-later"
 homepage="https://github.com/OpenShot/libopenshot"
-distfiles="https://github.com/OpenShot/libopenshot/archive/v${version}.tar.gz"
-checksum=8536b0a790b0d98ed4c3b10e11d1b34ae68ccbc710887e3703a5143d95598746
+distfiles="https://github.com/OpenShot/libopenshot/archive/v${version}.tar.gz
+ https://github.com/OpenShot/libopenshot/pull/209.patch"
+checksum="8536b0a790b0d98ed4c3b10e11d1b34ae68ccbc710887e3703a5143d95598746
+ 038b945763dc035ecffe0968a9f0f7a29bb86a3919f4192901d5f152eb5c7f89"
+
+post_extract() {
+	patch -p1 <../209.patch
+}
 
 libopenshot-devel_package() {
 	short_desc+=" - development files"

From a7e34d615200f7d262a8262393ef68c4382b1fd7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 697/871] liborcus: rebuild for Python 3.8.

---
 srcpkgs/liborcus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/liborcus/template b/srcpkgs/liborcus/template
index 3523d7830d8..e7704c43974 100644
--- a/srcpkgs/liborcus/template
+++ b/srcpkgs/liborcus/template
@@ -2,7 +2,7 @@
 pkgname=liborcus
 reverts="0.15.0_1"
 version=0.14.1
-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 b425948a2b39fcf809b715ffddbbefd843a79cfc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:39 +0200
Subject: [PATCH 698/871] libpwquality: rebuild for Python 3.8.

---
 srcpkgs/libpwquality/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpwquality/template b/srcpkgs/libpwquality/template
index 0fccc596ac9..3abd1eca48b 100644
--- a/srcpkgs/libpwquality/template
+++ b/srcpkgs/libpwquality/template
@@ -1,7 +1,7 @@
 # Template file for 'libpwquality'
 pkgname=libpwquality
 version=1.4.2
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static --enable-pam --with-securedir=/usr/lib/security"
 hostmakedepends="libtool automake gettext-devel"

From 8cffe13b31a160908012da611f0563e04b3133d3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 699/871] libsearpc: rebuild for Python 3.8.

---
 srcpkgs/libsearpc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsearpc/template b/srcpkgs/libsearpc/template
index db61c1f4f22..a4a92d3d66d 100644
--- a/srcpkgs/libsearpc/template
+++ b/srcpkgs/libsearpc/template
@@ -2,7 +2,7 @@
 # WARNING: upstream sometimes retag source. Wait for official announcement
 pkgname=libsearpc
 version=3.2.0
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_module="pysearpc"
 configure_args="PYTHON=python3 --disable-static --disable-compile-demo"

From f342f721f817d8bf680ce753a25168aed463c1c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 700/871] libtorrent-rasterbar: fix and rebuild for Python 3.8.

---
 srcpkgs/libtorrent-rasterbar/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libtorrent-rasterbar/template b/srcpkgs/libtorrent-rasterbar/template
index 118108c6184..51b7175fb81 100644
--- a/srcpkgs/libtorrent-rasterbar/template
+++ b/srcpkgs/libtorrent-rasterbar/template
@@ -1,9 +1,9 @@
 # Template file for 'libtorrent-rasterbar'
 pkgname=libtorrent-rasterbar
 version=1.1.13
-revision=3
+revision=4
 build_style=gnu-configure
-configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=boost_python36"
+configure_args="--enable-examples --enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr --with-boost-python=libboost_python${py3_ver/./}"
 hostmakedepends="automake pkg-config intltool libtool python3-devel"
 makedepends="libressl-devel boost-devel geoip-devel python3-devel"
 short_desc="C++ bittorrent library by Rasterbar Software"
@@ -14,9 +14,9 @@ distfiles="https://github.com/arvidn/libtorrent/releases/download/libtorrent-${v
 checksum=30040719858e3c06634764e0c1778738eb42ecd0b45e814afa746329a948ead7
 
 pre_configure() {
-	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
-	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython3.6m"
+	export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
+	export PYTHON_EXTRA_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython${py3_ver}${py3_abiver}"
 	autoreconf -fi
 }
 

From a705b76ec5565c7de15245a1b9c00ec5c6f67c41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 701/871] libvirt-python: rebuild for Python 3.8.

---
 srcpkgs/libvirt-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvirt-python/template b/srcpkgs/libvirt-python/template
index a2f0e038166..56253c9d3b0 100644
--- a/srcpkgs/libvirt-python/template
+++ b/srcpkgs/libvirt-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libvirt-python'
 pkgname=libvirt-python
 version=5.8.0
-revision=1
+revision=2
 build_style=python-module
 pycompile_module="libvirt.py libvirt_lxc.py libvirt_qemu.py"
 hostmakedepends="pkg-config python-devel python3-devel libvirt-devel"

From 8ef27ac8a16116dab4764f354baa451b2754ec84 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 702/871] libvoikko: rebuild for Python 3.8.

---
 srcpkgs/libvoikko/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libvoikko/template b/srcpkgs/libvoikko/template
index 8d21b0f9c71..ba8eef837ee 100644
--- a/srcpkgs/libvoikko/template
+++ b/srcpkgs/libvoikko/template
@@ -1,7 +1,7 @@
 # Template file for 'libvoikko'
 pkgname=libvoikko
 version=4.2
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-hfst=false --with-dictionary-path=/usr/share/voikko"
 pycompile_module="libvoikko.py"

From 35109466d5055cb65987c1af77ec9b78d6e988da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 703/871] libxml2-python: rebuild for Python 3.8.

---
 srcpkgs/libxml2-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libxml2-python/template b/srcpkgs/libxml2-python/template
index a80208823c2..5514ed43437 100644
--- a/srcpkgs/libxml2-python/template
+++ b/srcpkgs/libxml2-python/template
@@ -1,7 +1,7 @@
 # Template file for 'libxml2-python'
 pkgname=libxml2-python
 version=2.9.9
-revision=3
+revision=4
 wrksrc="${pkgname%-python}-${version}"
 build_wrksrc=python
 build_style=python-module

From 16ddab1b69781c3e174540bf3e52748c9ee3c428 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 704/871] lightdm-gtk-greeter-settings: rebuild for Python 3.8.

---
 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 715f41bbef4..76a25b91e4c 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=1
+revision=2
 build_style=python3-module
 pycompile_module="lightdm_gtk_greeter_settings"
 hostmakedepends="python3-distutils-extra intltool"

From eac74258184a0698518aa6e568af1bbb6c75f6bd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 705/871] llvm9: rebuild for Python 3.8.

---
 srcpkgs/llvm9/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/llvm9/template b/srcpkgs/llvm9/template
index 3c1a1a3451b..890a93855d8 100644
--- a/srcpkgs/llvm9/template
+++ b/srcpkgs/llvm9/template
@@ -1,7 +1,7 @@
 # Template file for 'llvm9'
 pkgname=llvm9
 version=9.0.0
-revision=2
+revision=3
 wrksrc="llvm-${version}.src"
 build_style=cmake
 configure_args="

From a634084342a2841b02669a7c7cc8325eab5b33ff Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:40 +0200
Subject: [PATCH 706/871] lollypop: rebuild for Python 3.8.

---
 srcpkgs/lollypop/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lollypop/template b/srcpkgs/lollypop/template
index b3da41654e3..d5c1ba80eba 100644
--- a/srcpkgs/lollypop/template
+++ b/srcpkgs/lollypop/template
@@ -1,7 +1,7 @@
 # Template file for 'lollypop'
 pkgname=lollypop
 version=1.2.3
-revision=1
+revision=2
 # Gitlab upload tag hash
 _uhash=24663baf49d563c97a2029703803f87c
 archs=noarch

From 83028583c7ada3e84e25243d64557f03608c1fc0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 707/871] lutris: rebuild for Python 3.8.

---
 srcpkgs/lutris/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/lutris/template b/srcpkgs/lutris/template
index 8f54d693a12..75be521cc7c 100644
--- a/srcpkgs/lutris/template
+++ b/srcpkgs/lutris/template
@@ -1,7 +1,7 @@
 # Template file for 'lutris'
 pkgname=lutris
 version=0.5.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 build_helper="gir"

From a7d4cd4ea7b6776039d0949eb5415b493f7c00f5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 708/871] magic-wormhole: rebuild for Python 3.8.

---
 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 c07753ce6ad..d93a1bbe1fc 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.11.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wormhole"

From c3dfb90e02591b4b81594b637c2b078e1ce0c198 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 709/871] mate-tweak: rebuild for Python 3.8.

---
 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 85b829e85e8..76b79524269 100644
--- a/srcpkgs/mate-tweak/template
+++ b/srcpkgs/mate-tweak/template
@@ -1,7 +1,7 @@
 # Template file for 'mate-tweak'
 pkgname=mate-tweak
 version=19.10.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-pbr python3-setuptools"

From de97c2b0cc7dfae928ac8c7a225b3b304aeeb47d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 710/871] med: rebuild for Python 3.8.

---
 srcpkgs/med/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/med/template b/srcpkgs/med/template
index 34dd6d006d6..acd79293246 100644
--- a/srcpkgs/med/template
+++ b/srcpkgs/med/template
@@ -1,7 +1,7 @@
 # Template file for 'med'
 pkgname=med
 version=4.0.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--with-swig=yes --includedir=/usr/include/med"
 pycompile_module=med

From 9d94ea3b765d8b2f29ac235dbe5bbb35c50d3bde Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 711/871] meld: rebuild for Python 3.8.

---
 srcpkgs/meld/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meld/template b/srcpkgs/meld/template
index 9ed6114299e..7cbac065ce6 100644
--- a/srcpkgs/meld/template
+++ b/srcpkgs/meld/template
@@ -1,7 +1,7 @@
 # Template file for 'meld'
 pkgname=meld
 version=3.20.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="meld"

From 3702fa187d2477f14686dbc8b1cfc8a0af1af275 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 712/871] menulibre: rebuild for Python 3.8.

---
 srcpkgs/menulibre/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/menulibre/template b/srcpkgs/menulibre/template
index 64311115bec..f16c5f64337 100644
--- a/srcpkgs/menulibre/template
+++ b/srcpkgs/menulibre/template
@@ -1,7 +1,7 @@
 # Template file for 'menulibre'
 pkgname=menulibre
 version=2.2.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="menulibre menulibre_lib"

From d39a6ab0a451f562637776635638f163ac7cc2da Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:41 +0200
Subject: [PATCH 713/871] meson-cmake-wrapper: rebuild for Python 3.8.

---
 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 ca14e533431..57eea159ca8 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mcw"

From 4900fde4e47ad790aab258e34de1a662587276cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 714/871] mimeo: rebuild for Python 3.8.

---
 srcpkgs/mimeo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mimeo/template b/srcpkgs/mimeo/template
index 0301f263763..66cd1e12539 100644
--- a/srcpkgs/mimeo/template
+++ b/srcpkgs/mimeo/template
@@ -1,7 +1,7 @@
 # Template file for 'mimeo'
 pkgname=mimeo
 version=2019.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="Mimeo.py"

From 9073cb98cb3910220966f598bca0a113491d49ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 715/871] mozo: rebuild for Python 3.8.

---
 srcpkgs/mozo/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template
index 041f2454c3d..7bc18f017c7 100644
--- a/srcpkgs/mozo/template
+++ b/srcpkgs/mozo/template
@@ -1,7 +1,7 @@
 # Template file for 'mozo'
 pkgname=mozo
 version=1.22.2
-revision=1
+revision=2
 archs=noarch
 build_style=gnu-configure
 pycompile_module="Mozo"

From be96ace6ea151f038eea3a95ce3918d2acee5d1d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 716/871] mpd-sima: rebuild for Python 3.8.

---
 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 fb72f0d2632..831fec709b7 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=1
+revision=2
 archs=noarch
 wrksrc="MPD_sima-${version}"
 build_style=python3-module

From e86866b3134a705572843f1d5eeb8a62b2d400ac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 717/871] mps-youtube: rebuild for Python 3.8.

---
 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 7b104aa706f..2141b3e627d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mps_youtube"

From 39b51221e15fea0e3795d5e0ca940dbf44a6648f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 718/871] mugshot: rebuild for Python 3.8.

---
 srcpkgs/mugshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mugshot/template b/srcpkgs/mugshot/template
index cf27b30acac..1e695654a86 100644
--- a/srcpkgs/mugshot/template
+++ b/srcpkgs/mugshot/template
@@ -1,7 +1,7 @@
 # Template file for 'mugshot'
 pkgname=mugshot
 version=0.4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra"

From 2631882a14e47fc07f71f88bde9b894a54a0a74d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 719/871] multibootusb: rebuild for Python 3.8.

---
 srcpkgs/multibootusb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/multibootusb/template b/srcpkgs/multibootusb/template
index 049b641c5fd..70cb07a85ac 100644
--- a/srcpkgs/multibootusb/template
+++ b/srcpkgs/multibootusb/template
@@ -1,7 +1,7 @@
 # Template file for 'multibootusb'
 pkgname=multibootusb
 version=9.2.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="scripts"

From de3d00639e16628bec1ad434272b800111f74828 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 720/871] mymcplus: rebuild for Python 3.8.

---
 srcpkgs/mymcplus/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/mymcplus/template b/srcpkgs/mymcplus/template
index 369ac8048ed..f30c62b09f4 100644
--- a/srcpkgs/mymcplus/template
+++ b/srcpkgs/mymcplus/template
@@ -1,7 +1,7 @@
 # Template file for 'mymcplus'
 pkgname=mymcplus
 version=3.0.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mymcplus"

From 9103630bcf4099b7d5056224682995aea2e8b4e2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:42 +0200
Subject: [PATCH 721/871] nagstamon: fix and rebuild for Python 3.8.

---
 srcpkgs/nagstamon/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/nagstamon/template b/srcpkgs/nagstamon/template
index 3a63bb5f1d9..0eb5bc75d27 100644
--- a/srcpkgs/nagstamon/template
+++ b/srcpkgs/nagstamon/template
@@ -1,7 +1,7 @@
 # Template file for 'nagstamon'
 pkgname=nagstamon
 version=3.2.1
-revision=1
+revision=2
 archs=noarch
 wrksrc=Nagstamon
 build_style=python3-module
@@ -16,6 +16,10 @@ homepage="https://nagstamon.ifw-dresden.de"
 distfiles="https://nagstamon.ifw-dresden.de/files/stable/Nagstamon-${version}.tar.gz"
 checksum=a834460e78dc01f62171a83c4a11d890702264ed662863dff39edaf14ae98880
 
+post_extract() {
+	# Gone in python 3.8, but these where the python 3.6 values.  ;)
+	vsed -i -e 's/platform.dist()/("","","")/g' setup.py
+}
 post_install() {
 	chmod 644 ${DESTDIR}/usr/share/pixmaps/nagstamon.svg
 	mv -v ${DESTDIR}/usr/bin/nagstamon.py ${DESTDIR}/usr/bin/nagstamon

From 06b49b05ba6be88eee127a493edb31ea01374322 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 722/871] neovim-remote: rebuild for Python 3.8.

---
 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 d8473bf0521..7391f9df2ee 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.2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nvr"

From 7c26badb13c8773eab3084796060fd88b7f52ab8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 723/871] newt: rebuild for Python 3.8.

---
 srcpkgs/newt/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/newt/template b/srcpkgs/newt/template
index 3971bbfdbf7..25ccc946f51 100644
--- a/srcpkgs/newt/template
+++ b/srcpkgs/newt/template
@@ -1,7 +1,7 @@
 # Template file for 'newt'
 pkgname=newt
 version=0.52.21
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="python-devel python3-devel"
 makedepends="slang-devel popt-devel python3-devel python-devel"

From 421cddd80436683b3d63be161533af427a53cd2c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 724/871] notmuch: rebuild for Python 3.8.

---
 srcpkgs/notmuch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/notmuch/template b/srcpkgs/notmuch/template
index 6bb8578fa1e..a1b9bc2bcb5 100644
--- a/srcpkgs/notmuch/template
+++ b/srcpkgs/notmuch/template
@@ -1,7 +1,7 @@
 # Template file for 'notmuch'
 pkgname=notmuch
 version=0.29.2
-revision=1
+revision=2
 hostmakedepends="perl pkg-config python-devel python3-Sphinx python3-devel"
 makedepends="bash-completion gmime3-devel talloc-devel xapian-core-devel"
 short_desc="Thread-based email index, search, and tagging"

From 2202004accf986b3d1ff33db1a2710790199435b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 725/871] nyx: rebuild for Python 3.8.

---
 srcpkgs/nyx/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/nyx/template b/srcpkgs/nyx/template
index 201ab5856ff..4b265771793 100644
--- a/srcpkgs/nyx/template
+++ b/srcpkgs/nyx/template
@@ -1,7 +1,7 @@
 # Template file for 'nyx'
 pkgname=nyx
 version=2.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="nyx"

From adb6681c21949e07d398110fe29d09fba231f344 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 726/871] olm-python: rebuild for Python 3.8.

---
 srcpkgs/olm-python/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/olm-python/template b/srcpkgs/olm-python/template
index 57ac1cfa01b..0141611ea3f 100644
--- a/srcpkgs/olm-python/template
+++ b/srcpkgs/olm-python/template
@@ -1,7 +1,7 @@
 # Template file for 'olm-python'
 pkgname=olm-python
 version=3.1.4
-revision=1
+revision=2
 wrksrc="olm-${version}"
 build_wrksrc=python
 build_style=python-module

From 7baeaa63b15fda9a28bbfef779eb49689f494795 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 727/871] onboard: rebuild for Python 3.8.

---
 srcpkgs/onboard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onboard/template b/srcpkgs/onboard/template
index 844744038d8..467ed8f0ea5 100644
--- a/srcpkgs/onboard/template
+++ b/srcpkgs/onboard/template
@@ -1,7 +1,7 @@
 # Template file for 'onboard'
 pkgname=onboard
 version=1.4.1
-revision=4
+revision=5
 build_style=python3-module
 pycompile_module="Onboard"
 patch_args="-Np1"

From 8842479589f7c70c2eb205ecc64c40521d728863 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:43 +0200
Subject: [PATCH 728/871] openrazer-meta: rebuild for Python 3.8.

---
 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 112cb9e900b..60dc8212a73 100644
--- a/srcpkgs/openrazer-meta/template
+++ b/srcpkgs/openrazer-meta/template
@@ -1,7 +1,7 @@
 # Template file for 'openrazer-meta'
 pkgname=openrazer-meta
 version=2.5.0
-revision=2
+revision=3
 wrksrc="openrazer-${version}"
 build_style=gnu-makefile
 make_install_target="setup_dkms udev_install daemon_install xdg_install

From 891df33ecd09225b66ef6c01cfd9cfa42e0fe3a5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 729/871] openshot: rebuild for Python 3.8.

---
 srcpkgs/openshot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/openshot/template b/srcpkgs/openshot/template
index 605ea7305c2..d71b4d09fae 100644
--- a/srcpkgs/openshot/template
+++ b/srcpkgs/openshot/template
@@ -1,7 +1,7 @@
 # Template file for 'openshot'
 pkgname=openshot
 version=2.4.4
-revision=1
+revision=2
 archs="i686 x86_64 ppc64le"
 wrksrc="${pkgname}-qt-${version}"
 build_style=python3-module

From d4125fa5216f1b283a4609213ff8a928aa79019c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 730/871] papis: rebuild for Python 3.8.

---
 srcpkgs/papis/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/papis/template b/srcpkgs/papis/template
index 95044b2a6a4..d99f358fc0d 100644
--- a/srcpkgs/papis/template
+++ b/srcpkgs/papis/template
@@ -1,7 +1,7 @@
 # Template file for 'papis'
 pkgname=papis
 version=0.8
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-requests python3-yaml python3-chardet python3-BeautifulSoup4

From a62b944d1e3c1c48d3b5494d5df1d4023f462a55 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 731/871] paraview: rebuild for Python 3.8.

---
 srcpkgs/paraview/template | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/paraview/template b/srcpkgs/paraview/template
index 3b721b1833a..d928a5ea095 100644
--- a/srcpkgs/paraview/template
+++ b/srcpkgs/paraview/template
@@ -1,7 +1,7 @@
 # Template file for 'paraview'
 pkgname=paraview
 version=5.6.1
-revision=1
+revision=2
 wrksrc=ParaView-v${version}
 build_style=cmake
 configure_args="-DPARAVIEW_ENABLE_FFMPEG=ON
@@ -58,6 +58,11 @@ checksum=50ef01f54db6358b402e50d1460ef47c04d675bf26f250c6937737169f1e6612
 CFLAGS="-D_GNU_SOURCE"
 CXXFLAGS="-D_GNU_SOURCE"
 
+post_extract() {
+	# Python 3.8 API change: https://docs.python.org/3/c-api/typeobj.html
+	sed -i '/\/\/ tp_print/s/nullptr/0/' \
+		VTK/Wrapping/Tools/*.c VTK/Wrapping/PythonCore/*.cxx
+}
 post_install() {
 	vlicense Copyright.txt
 }

From b13f7287da311545a8fe8321e136929f136f19c4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 732/871] pass-git-helper: rebuild for Python 3.8.

---
 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 dfeed3ba4f0..6d7f25bd8a7 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.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 0da4f59e5b5b30e9fe705863c4907f0fa6b51aa4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 733/871] peframe: rebuild for Python 3.8.

---
 srcpkgs/peframe/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peframe/template b/srcpkgs/peframe/template
index b9d64f7a5a6..5ecede6cf56 100644
--- a/srcpkgs/peframe/template
+++ b/srcpkgs/peframe/template
@@ -1,7 +1,7 @@
 # Template file for 'peframe'
 pkgname=peframe
 version=6.0.3
-revision=1
+revision=2
 archs=noarch
 build_style="python3-module"
 pycompile_module="peframe"

From ac8dbdde8fccdbde02985f71754ae380a5a6ddac Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 734/871] peru: rebuild for Python 3.8.

---
 srcpkgs/peru/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/peru/template b/srcpkgs/peru/template
index 682440f0b50..10d4689338d 100644
--- a/srcpkgs/peru/template
+++ b/srcpkgs/peru/template
@@ -1,7 +1,7 @@
 # Template file for 'peru'
 pkgname=peru
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="peru"

From 6e0510a80a0851592ffc87267830dd8e812df739 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:44 +0200
Subject: [PATCH 735/871] pgcli: rebuild for Python 3.8.

---
 srcpkgs/pgcli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index b967287e9cb..b187a0a4440 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,7 +1,7 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=2.1.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pgcli"

From bfe5fcde3ae8034aa107686126a354690e279e6c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 736/871] picard: rebuild for Python 3.8.

---
 srcpkgs/picard/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/picard/template b/srcpkgs/picard/template
index 1bae142434a..08404a88475 100644
--- a/srcpkgs/picard/template
+++ b/srcpkgs/picard/template
@@ -1,7 +1,7 @@
 # Template file for 'picard'
 pkgname=picard
 version=2.2.2
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname}-release-${version}"
 build_style=python3-module

From 16c34329091464d1ea34a5f8e25e0f9abccbe229 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 737/871] piper: rebuild for Python 3.8.

---
 srcpkgs/piper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/piper/template b/srcpkgs/piper/template
index af8cc854991..91a31131f84 100644
--- a/srcpkgs/piper/template
+++ b/srcpkgs/piper/template
@@ -1,7 +1,7 @@
 # Template file for 'piper'
 pkgname=piper
 version=0.2.904
-revision=1
+revision=2
 archs=noarch
 build_style=meson
 hostmakedepends="libratbag pkg-config glib-devel"

From df50b7b441c144f5b91813fa099005dc6acf4220 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 738/871] playitslowly: rebuild for Python 3.8.

---
 srcpkgs/playitslowly/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/playitslowly/template b/srcpkgs/playitslowly/template
index d26cea3510a..6d3483ae251 100644
--- a/srcpkgs/playitslowly/template
+++ b/srcpkgs/playitslowly/template
@@ -1,7 +1,7 @@
 # Template file for 'playitslowly'
 pkgname=playitslowly
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From 62f1b01b75508d40a065b835b5bb51c728f5ab3b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 739/871] pmbootstrap: rebuild for Python 3.8.

---
 srcpkgs/pmbootstrap/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pmbootstrap/template b/srcpkgs/pmbootstrap/template
index 1bfa8183a84..15e606439c2 100644
--- a/srcpkgs/pmbootstrap/template
+++ b/srcpkgs/pmbootstrap/template
@@ -1,7 +1,7 @@
 # Template file for 'pmbootstrap'
 pkgname=pmbootstrap
 version=1.9.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pmb"

From 7d4ad0f1d5a52d2d5b4cc836f42b6e6721042fb6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 740/871] pockyt: fix and rebuild for Python 3.8.

---
 srcpkgs/pockyt/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/pockyt/template b/srcpkgs/pockyt/template
index 760573904b1..ff12361d443 100644
--- a/srcpkgs/pockyt/template
+++ b/srcpkgs/pockyt/template
@@ -1,7 +1,7 @@
 # Template file for 'pockyt'
 pkgname=pockyt
 version=1.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -13,3 +13,7 @@ license="GPL-3.0-or-later"
 homepage="https://github.com/arvindch/pockyt"
 distfiles="${homepage}/archive/${version}.tar.gz"
 checksum=cd9561e126a6a01c73762639eb7e38b8c509ed1412f72fcc4729b12565b9962c
+
+post_extract() {
+	sed -i 's/(3, 7)/&, (3, 8)/' setup.py
+}

From ccdc7bbfb5c76a6aaa30c7b4b1d78a055386595f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 741/871] poezio: rebuild for Python 3.8.

---
 srcpkgs/poezio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/poezio/template b/srcpkgs/poezio/template
index 56f8138bb5e..4b318419dab 100644
--- a/srcpkgs/poezio/template
+++ b/srcpkgs/poezio/template
@@ -1,7 +1,7 @@
 # Template file for 'poezio'
 pkgname=poezio
 version=0.12.1
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="poezio poezio_plugins poezio_themes"
 hostmakedepends="python3-setuptools pkg-config"

From b917228a03b654bd5361d5ffdafdd7079b3ad705 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:45 +0200
Subject: [PATCH 742/871] protontricks: rebuild for Python 3.8.

---
 srcpkgs/protontricks/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/protontricks/template b/srcpkgs/protontricks/template
index a32f51c4845..dc003b63690 100644
--- a/srcpkgs/protontricks/template
+++ b/srcpkgs/protontricks/template
@@ -1,7 +1,7 @@
 # Template file for 'protontricks'
 pkgname=protontricks
 version=1.2.5
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-setuptools"

From d32e3084381f0e055b862aa5c48512a016c67db4 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 743/871] pulseaudio-equalizer-ladspa: rebuild for Python 3.8.

---
 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 62d7eef2a65..10198de2c08 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=1
+revision=2
 wrksrc="equalizer-${version}"
 build_style=meson
 pycompile_module="pulseeq"

From fc7f518755a2866aa14a65205be14921a6d99f13 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 744/871] pulseeffects: rebuild for Python 3.8.

---
 srcpkgs/pulseeffects/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pulseeffects/template b/srcpkgs/pulseeffects/template
index 7fc44f938d9..dc9044cad32 100644
--- a/srcpkgs/pulseeffects/template
+++ b/srcpkgs/pulseeffects/template
@@ -2,7 +2,7 @@
 pkgname=pulseeffects
 reverts="4.3.4_1"
 version=3.2.3
-revision=3
+revision=4
 build_style=meson
 pycompile_module="PulseEffects PulseEffectsTest"
 hostmakedepends="pkg-config"

From 5bd4394a9001c3681d9077b92324ed8ee9353d61 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 745/871] py3status: rebuild for Python 3.8.

---
 srcpkgs/py3status/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/py3status/template b/srcpkgs/py3status/template
index b7a263270e4..01709cfd14d 100644
--- a/srcpkgs/py3status/template
+++ b/srcpkgs/py3status/template
@@ -1,7 +1,7 @@
 # Template file for 'py3status'
 pkgname=py3status
 version=3.21
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="py3status"

From 2b22eacb3219dcac7e2da0f9a5beed4161aa364f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 746/871] pychess: rebuild for Python 3.8.

---
 srcpkgs/pychess/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pychess/template b/srcpkgs/pychess/template
index 2c6ecef7bf9..d0594aa77f4 100644
--- a/srcpkgs/pychess/template
+++ b/srcpkgs/pychess/template
@@ -1,7 +1,7 @@
 # Template file for 'pychess'
 pkgname=pychess
 version=0.12.4
-revision=2
+revision=3
 build_style=python3-module
 pycompile_module="pychess"
 archs=noarch

From 403ab497ad766f20bdf9f46746c432d09f4be1af Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 747/871] pycp: rebuild for Python 3.8.

---
 srcpkgs/pycp/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pycp/template b/srcpkgs/pycp/template
index 770eb50d3f4..c9066259862 100644
--- a/srcpkgs/pycp/template
+++ b/srcpkgs/pycp/template
@@ -1,7 +1,7 @@
 # Template file for 'pycp'
 pkgname=pycp
 version=8.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pycp"

From e381cecc4c548e1e6bb8195cbe541d555e3b3f6f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 748/871] pymol: rebuild for Python 3.8.

---
 srcpkgs/pymol/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pymol/template b/srcpkgs/pymol/template
index 428ba7a6deb..e1031f325c0 100644
--- a/srcpkgs/pymol/template
+++ b/srcpkgs/pymol/template
@@ -1,7 +1,7 @@
 # Template file for 'pymol'
 pkgname=pymol
 version=2.3.0
-revision=1
+revision=2
 wrksrc=${pkgname}-open-source-${version}
 build_style="python3-module"
 makedepends="msgpack-devel python3-numpy freetype-devel libfreeglut-devel glew-devel

From 6178e9c6db08c488e0937b641ba68f5d95121108 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 749/871] pyradio: rebuild for Python 3.8.

---
 srcpkgs/pyradio/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyradio/template b/srcpkgs/pyradio/template
index 10d7d8c6fbb..d2d5feddbdd 100644
--- a/srcpkgs/pyradio/template
+++ b/srcpkgs/pyradio/template
@@ -1,7 +1,7 @@
 # Template file for 'pyradio'
 pkgname=pyradio
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pyradio"

From 8f833908e3d7651068b46f8c1091be68964c0ea1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:46 +0200
Subject: [PATCH 750/871] pyside2-tools: rebuild for Python 3.8.

---
 srcpkgs/pyside2-tools/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pyside2-tools/template b/srcpkgs/pyside2-tools/template
index 4ba0044452d..0a153de8c15 100644
--- a/srcpkgs/pyside2-tools/template
+++ b/srcpkgs/pyside2-tools/template
@@ -1,7 +1,7 @@
 # Template file for 'pyside2-tools'
 pkgname=pyside2-tools
 version=5.11.2
-revision=1
+revision=2
 _pkgname="pyside-setup-everywhere-src-${version}"
 wrksrc="$_pkgname"
 configure_args="-DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release

From c6013c1f62ec73eff09d4f80bc44d3aee9b2f6f2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 751/871] pysolfc: rebuild for Python 3.8.

---
 srcpkgs/pysolfc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pysolfc/template b/srcpkgs/pysolfc/template
index 62eb90009af..1631e9619d3 100644
--- a/srcpkgs/pysolfc/template
+++ b/srcpkgs/pysolfc/template
@@ -1,7 +1,7 @@
 # Template file for 'pysolfc'
 pkgname=pysolfc
 version=2.6.4
-revision=2
+revision=3
 archs="noarch"
 wrksrc="PySolFC-${pkgname}-${version}"
 build_style=python3-module

From 52faef0206533b7e6eeaa211d70b08394b2281e7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 752/871] pywal: rebuild for Python 3.8.

---
 srcpkgs/pywal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pywal/template b/srcpkgs/pywal/template
index 214a36698f2..98c4e1581e4 100644
--- a/srcpkgs/pywal/template
+++ b/srcpkgs/pywal/template
@@ -1,7 +1,7 @@
 # Template file for 'pywal'
 pkgname=pywal
 version=3.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="pywal"

From 49b40e86bcb78526b5372fe51d7cd108d095c837 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 753/871] qomui: rebuild for Python 3.8.

---
 srcpkgs/qomui/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qomui/template b/srcpkgs/qomui/template
index 4e68864252d..8063350ba06 100644
--- a/srcpkgs/qomui/template
+++ b/srcpkgs/qomui/template
@@ -1,7 +1,7 @@
 # Template file for 'qomui'
 pkgname=qomui
 version=0.8.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qomui"

From 69245b7acd1328875e7a100a0c91421e9694d47a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 754/871] quodlibet: rebuild for Python 3.8.

---
 srcpkgs/quodlibet/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/quodlibet/template b/srcpkgs/quodlibet/template
index 53f6e926315..4b0c4ba0de5 100644
--- a/srcpkgs/quodlibet/template
+++ b/srcpkgs/quodlibet/template
@@ -1,7 +1,7 @@
 # Template file for 'quodlibet'
 pkgname=quodlibet
 version=4.2.1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="quodlibet"

From fb6fb79dce09314bc071d6f670f38357207e65ec Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 755/871] qutebrowser: rebuild for Python 3.8.

---
 srcpkgs/qutebrowser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/qutebrowser/template b/srcpkgs/qutebrowser/template
index 11b74e4445d..07257c2d84b 100644
--- a/srcpkgs/qutebrowser/template
+++ b/srcpkgs/qutebrowser/template
@@ -1,7 +1,7 @@
 # Template file for 'qutebrowser'
 pkgname=qutebrowser
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="qutebrowser"

From 0c43875b88460001b2248095eb1b1cd299729e22 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 756/871] r128gain: rebuild for Python 3.8.

---
 srcpkgs/r128gain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/r128gain/template b/srcpkgs/r128gain/template
index cdea955828e..1cb30c786f8 100644
--- a/srcpkgs/r128gain/template
+++ b/srcpkgs/r128gain/template
@@ -1,7 +1,7 @@
 # Template file for 'r128gain'
 pkgname=r128gain
 version=0.9.3
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="r128gain"
 hostmakedepends="python3-setuptools"

From 4c8625ed02b794d5c12472894997aa9b8479f871 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 757/871] radicale2: rebuild for Python 3.8.

---
 srcpkgs/radicale2/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/radicale2/template b/srcpkgs/radicale2/template
index 0d8a27d89f3..310bc8cb3cf 100644
--- a/srcpkgs/radicale2/template
+++ b/srcpkgs/radicale2/template
@@ -1,7 +1,7 @@
 # Template file for 'radicale2'
 pkgname=radicale2
 version=2.1.11
-revision=1
+revision=2
 archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module

From 847eb20569b593368a359ed658039108084c017f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:47 +0200
Subject: [PATCH 758/871] ranger: rebuild for Python 3.8.

---
 srcpkgs/ranger/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template
index a387eac4ed7..a49716971a5 100644
--- a/srcpkgs/ranger/template
+++ b/srcpkgs/ranger/template
@@ -1,7 +1,7 @@
 # Template file for 'ranger'
 pkgname=ranger
 version=1.9.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ranger"

From cf8e9399d86aa9c8cfba5a942a0296c320501e0c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 759/871] rednotebook: rebuild for Python 3.8.

---
 srcpkgs/rednotebook/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rednotebook/template b/srcpkgs/rednotebook/template
index ac870a7a992..af7dea12fd5 100644
--- a/srcpkgs/rednotebook/template
+++ b/srcpkgs/rednotebook/template
@@ -1,7 +1,7 @@
 # Template file for 'rednotebook'
 pkgname=rednotebook
 version=2.11.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rednotebook"

From 6646bedccc88874af2a3dea88d3784b38217c99d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 760/871] redshift: rebuild for Python 3.8.

---
 srcpkgs/redshift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/redshift/template b/srcpkgs/redshift/template
index bb31e7cec05..c58b8daeb76 100644
--- a/srcpkgs/redshift/template
+++ b/srcpkgs/redshift/template
@@ -1,7 +1,7 @@
 # Template file for 'redshift'
 pkgname=redshift
 version=1.12
-revision=1
+revision=2
 build_style=gnu-configure
 build_options="geoclue2"
 configure_args="--enable-gui --disable-geoclue $(vopt_enable geoclue2)"

From 2d91c715a6e644766f693598ab646915a1dfd4a1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 761/871] ripe-atlas-tools: rebuild for Python 3.8.

---
 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 c8eef786962..c5e21c4b8dc 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=2.3.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ripe/atlas/tools"

From 07f47ecb89ffcc4fcbe286e92439d30cbbfa3991 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 762/871] rmlint: rebuild for Python 3.8.

---
 srcpkgs/rmlint/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rmlint/template b/srcpkgs/rmlint/template
index dc8d904d0c2..894a9a1dd01 100644
--- a/srcpkgs/rmlint/template
+++ b/srcpkgs/rmlint/template
@@ -1,7 +1,7 @@
 # Template file for 'rmlint'
 pkgname=rmlint
 version=2.9.0
-revision=1
+revision=2
 build_style=scons
 hostmakedepends="pkg-config python3-Sphinx glib-devel"
 makedepends="libblkid-devel elfutils-devel json-glib-devel"

From 35b701d052b7a5028464862ce7e838ba7052c895 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 763/871] rtv: rebuild for Python 3.8.

---
 srcpkgs/rtv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rtv/template b/srcpkgs/rtv/template
index 1a089e3e88d..1fc137b2e5b 100644
--- a/srcpkgs/rtv/template
+++ b/srcpkgs/rtv/template
@@ -1,7 +1,7 @@
 # Template file for 'rtv'
 pkgname=rtv
 version=1.27.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="rtv"

From f4f31ab458dad66c17ee453a996e749594d8eb94 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:48 +0200
Subject: [PATCH 764/871] rubber: rebuild for Python 3.8.

---
 srcpkgs/rubber/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/rubber/template b/srcpkgs/rubber/template
index cf668638cef..c7fe4cbbd06 100644
--- a/srcpkgs/rubber/template
+++ b/srcpkgs/rubber/template
@@ -1,7 +1,7 @@
 # Template file for 'rubber'
 pkgname=rubber
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From 09218f831424ff8a77359f8d55561ce246818695 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 765/871] safeeyes: rebuild for Python 3.8.

---
 srcpkgs/safeeyes/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/safeeyes/template b/srcpkgs/safeeyes/template
index bc35f302011..e7019662316 100644
--- a/srcpkgs/safeeyes/template
+++ b/srcpkgs/safeeyes/template
@@ -1,7 +1,7 @@
 # Template file for 'safeeyes'
 pkgname=safeeyes
 version=2.0.9
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="safeeyes"

From 4826bc6cd37c778f9615ba34f1a9ff428f73b919 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 766/871] scapy: rebuild for Python 3.8.

---
 srcpkgs/scapy/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scapy/template b/srcpkgs/scapy/template
index 65242f332a8..36972bfd461 100644
--- a/srcpkgs/scapy/template
+++ b/srcpkgs/scapy/template
@@ -1,7 +1,7 @@
 # Template file for 'scapy'
 pkgname=scapy
 version=2.4.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="scapy"

From fda52af9f9f2c9759b98c01a66d6b74e374e1a03 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 767/871] screenplain: rebuild for Python 3.8.

---
 srcpkgs/screenplain/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/screenplain/template b/srcpkgs/screenplain/template
index 8410ab45e40..8eb759ae6a6 100644
--- a/srcpkgs/screenplain/template
+++ b/srcpkgs/screenplain/template
@@ -1,7 +1,7 @@
 # Template file for 'screenplain'
 pkgname=screenplain
 version=0.8.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="screenplain"

From 8c8f8f16eb0c4222cad6527365fe4059e101d7ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 768/871] scudcloud: rebuild for Python 3.8.

---
 srcpkgs/scudcloud/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
index 1b9f5f27d8a..1ab2618066e 100644
--- a/srcpkgs/scudcloud/template
+++ b/srcpkgs/scudcloud/template
@@ -1,7 +1,7 @@
 # Template file for 'scudcloud'
 pkgname=scudcloud
 version=1.65
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="scudcloud"
 hostmakedepends="python3-setuptools"

From 1417cec150803e71ac902253a7395fc4c3471188 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 769/871] sonata: rebuild for Python 3.8.

---
 srcpkgs/sonata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template
index 3e07610d1e5..fc2d86e6c1a 100644
--- a/srcpkgs/sonata/template
+++ b/srcpkgs/sonata/template
@@ -1,7 +1,7 @@
 # Template file for 'sonata'
 pkgname=sonata
 version=1.7b1
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="sonata"

From f5ffc13d6dd4744977162d8aab3411e1946b0577 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 770/871] speech-dispatcher: rebuild for Python 3.8.

---
 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 0c27951586a..39cebf1f320 100644
--- a/srcpkgs/speech-dispatcher/template
+++ b/srcpkgs/speech-dispatcher/template
@@ -1,7 +1,7 @@
 # Template build file for 'speech-dispatcher'.
 pkgname=speech-dispatcher
 version=0.8.8
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--disable-static"
 short_desc="High-level device independent layer for speech synthesis interface"

From b42378bacb1c35748ca95c50a4421eb90c1c8cb7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:49 +0200
Subject: [PATCH 771/871] speedtest-cli: rebuild for Python 3.8.

---
 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 6746ea3a35e..c65d9fd631d 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.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="speedtest.py"

From 38fea948cc085acd108258951bf01a7f295ba679 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 772/871] sshuttle: rebuild for Python 3.8.

---
 srcpkgs/sshuttle/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sshuttle/template b/srcpkgs/sshuttle/template
index e74d90171f2..04bae9a15c3 100644
--- a/srcpkgs/sshuttle/template
+++ b/srcpkgs/sshuttle/template
@@ -1,7 +1,7 @@
 # Template file for 'sshuttle'
 pkgname=sshuttle
 version=0.78.5
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="sshuttle"

From a418d276f3979b9f9de6115aabc3d733f91dd37d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 773/871] sssd: rebuild for Python 3.8.

---
 srcpkgs/sssd/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sssd/template b/srcpkgs/sssd/template
index 2ea28d21bee..13d0da0ba99 100644
--- a/srcpkgs/sssd/template
+++ b/srcpkgs/sssd/template
@@ -1,7 +1,7 @@
 # Template file for 'sssd'
 pkgname=sssd
 version=2.0.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--without-selinux --without-semanage
  --disable-cifs-idmap-plugin --without-samba --with-os=fedora

From 41764baa7fd278235ea67f760a8a96580048e425 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 774/871] stcgal: rebuild for Python 3.8.

---
 srcpkgs/stcgal/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stcgal/template b/srcpkgs/stcgal/template
index 3410ccf8678..d75e88837cc 100644
--- a/srcpkgs/stcgal/template
+++ b/srcpkgs/stcgal/template
@@ -1,7 +1,7 @@
 # Template file for 'stcgal'
 pkgname=stcgal
 version=1.6
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="stcgal"

From a839a68f96477640e7311dd40e34197328a9695f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 775/871] stig: rebuild for Python 3.8.

---
 srcpkgs/stig/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stig/template b/srcpkgs/stig/template
index 0777c5f0cc2..abe5f3b563c 100644
--- a/srcpkgs/stig/template
+++ b/srcpkgs/stig/template
@@ -1,7 +1,7 @@
 # Template file for 'stig'
 pkgname=stig
 version=0.10.1a
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 718241b798f6d4da232f69050056df4c1672e069 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 776/871] streamlink: rebuild for Python 3.8.

---
 srcpkgs/streamlink/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/streamlink/template b/srcpkgs/streamlink/template
index abcdc12c4ac..59caa85dc8a 100644
--- a/srcpkgs/streamlink/template
+++ b/srcpkgs/streamlink/template
@@ -1,7 +1,7 @@
 # Template file for 'streamlink'
 pkgname=streamlink
 version=1.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="streamlink streamlink_cli"

From 1b992228758706f91326f79949ab2f2fee0a823d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 777/871] subuser: rebuild for Python 3.8.

---
 srcpkgs/subuser/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/subuser/template b/srcpkgs/subuser/template
index 50444246b29..0bc3e71db36 100644
--- a/srcpkgs/subuser/template
+++ b/srcpkgs/subuser/template
@@ -1,7 +1,7 @@
 # Template file for 'subuser'
 pkgname=subuser
 version=0.6.2
-revision=2
+revision=3
 archs="x86_64*"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 4ceabe2099fa9a0c620da1e0ff21c2f4fc47ef86 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 778/871] synapse: rebuild for Python 3.8.

---
 srcpkgs/synapse/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template
index daae80e5792..0c0fd6841fb 100644
--- a/srcpkgs/synapse/template
+++ b/srcpkgs/synapse/template
@@ -1,7 +1,7 @@
 # Template file for 'synapse'
 pkgname=synapse
 version=1.3.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 97f13af2ed8cb69d9c7d4436fcc15351cc8bd7b7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:50 +0200
Subject: [PATCH 779/871] tekaim: rebuild for Python 3.8.

---
 srcpkgs/tekaim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tekaim/template b/srcpkgs/tekaim/template
index e3cc5335ecc..bd60dcc57a6 100644
--- a/srcpkgs/tekaim/template
+++ b/srcpkgs/tekaim/template
@@ -1,7 +1,7 @@
 # Template file for 'tekaim'
 pkgname=tekaim
 version=1.6.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3"

From fcd5ac24d9ba71098cb734098d7989db26caacc8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 780/871] telepresence: rebuild for Python 3.8.

---
 srcpkgs/telepresence/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/telepresence/template b/srcpkgs/telepresence/template
index 17300f3b548..fa7f916f66f 100644
--- a/srcpkgs/telepresence/template
+++ b/srcpkgs/telepresence/template
@@ -1,7 +1,7 @@
 # Template file for 'telepresence'
 pkgname=telepresence
 version=0.102
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="telepresence"

From 21f1ffc6643b20090059bb43b93df3bae97c8d8f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 781/871] termdown: rebuild for Python 3.8.

---
 srcpkgs/termdown/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/termdown/template b/srcpkgs/termdown/template
index 90a4a894d42..299de920389 100644
--- a/srcpkgs/termdown/template
+++ b/srcpkgs/termdown/template
@@ -1,7 +1,7 @@
 # Template file for 'termdown'
 pkgname=termdown
 version=1.16.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="termdown.py"

From a64feedcd922e30b29ed6cd6e7c959a43fb4bc26 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 782/871] terminal_markdown_viewer: rebuild for Python 3.8.

---
 srcpkgs/terminal_markdown_viewer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/terminal_markdown_viewer/template b/srcpkgs/terminal_markdown_viewer/template
index e5d0f38aae2..ba3fcfdc8d6 100644
--- a/srcpkgs/terminal_markdown_viewer/template
+++ b/srcpkgs/terminal_markdown_viewer/template
@@ -1,7 +1,7 @@
 # Template file for 'terminal_markdown_viewer'
 pkgname=terminal_markdown_viewer
 version=1.6.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="mdv"

From 7cb93a1f44ac9501de681ff6899ef1068cafd9b5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 783/871] thefuck: rebuild for Python 3.8.

---
 srcpkgs/thefuck/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thefuck/template b/srcpkgs/thefuck/template
index 714cd7982c7..a0de1c7b6a3 100644
--- a/srcpkgs/thefuck/template
+++ b/srcpkgs/thefuck/template
@@ -1,7 +1,7 @@
 # Template file for 'thefuck'
 pkgname=thefuck
 version=3.29
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="thefuck"

From f0a9bf3d83a41a13a76e345132bd503314f223fd Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 784/871] thinkpad-scripts: rebuild for Python 3.8.

---
 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 8d26cf23e77..855d42492fb 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=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tps"

From 6c5ba8a1c78b5546c590eaf93f00c3d8f1905c36 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 785/871] thrift: rebuild for Python 3.8.

---
 srcpkgs/thrift/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/thrift/template b/srcpkgs/thrift/template
index d6b62b2a9fe..ac7eb2ba3a7 100644
--- a/srcpkgs/thrift/template
+++ b/srcpkgs/thrift/template
@@ -1,7 +1,7 @@
 # Template file for 'thrift'
 pkgname=thrift
 version=0.13.0
-revision=1
+revision=2
 build_style=gnu-configure
 makedepends="boost-devel libressl-devel"
 short_desc="Apache Thrift compiler"

From 19d9412631cf6b39e18f4bf383a6f5f9f951b5c7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 786/871] todoman: rebuild for Python 3.8.

---
 srcpkgs/todoman/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/todoman/template b/srcpkgs/todoman/template
index 2e0489ff49e..676412b8d0b 100644
--- a/srcpkgs/todoman/template
+++ b/srcpkgs/todoman/template
@@ -1,7 +1,7 @@
 # Template file for 'todoman'
 pkgname=todoman
 version=3.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="todoman"

From 916bd05303872c582ae1a0751f072feab6a39d89 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:51 +0200
Subject: [PATCH 787/871] toot: rebuild for Python 3.8.

---
 srcpkgs/toot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template
index b6dcdc9ede6..7f9fac6ca01 100644
--- a/srcpkgs/toot/template
+++ b/srcpkgs/toot/template
@@ -1,7 +1,7 @@
 # Template file for 'toot'
 pkgname=toot
 version=0.24.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="toot"

From 141b313c1c18ad40985c758a342676ba8b3e685e Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 788/871] torbrowser-launcher: fix and rebuild for Python 3.8.

---
 srcpkgs/torbrowser-launcher/template | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/torbrowser-launcher/template b/srcpkgs/torbrowser-launcher/template
index a4aa707495c..4986b6b3240 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.2
-revision=1
+revision=2
 archs="i686 x86_64" # limited by Tor Browser itself
 build_style=python3-module
 pycompile_module="torbrowser_launcher"
@@ -15,6 +15,10 @@ changelog="https://raw.githubusercontent.com/micahflee/torbrowser-launcher/maste
 distfiles="https://github.com/micahflee/torbrowser-launcher/archive/v${version}.tar.gz"
 checksum=25ad4b0c70579628bf18f4cdcd18ac303fe4f7f1c590cc48df2a87651c92991c
 
+post_extract() { 
+	# Python 3.8 removed platform.dist()
+	sed -i 's/distro =.*/distro = "Void"/' setup.py
+}
 post_install() {
 	vlicense LICENSE
 	rm ${DESTDIR}/usr/share/locale/torbrowser-launcher.mo # installed twice

From 8dea2dc035266ae362e3a5bb99d2b90ae644bd41 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 789/871] tox: rebuild for Python 3.8.

---
 srcpkgs/tox/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tox/template b/srcpkgs/tox/template
index 8c6b63a3cb1..908cb86bb38 100644
--- a/srcpkgs/tox/template
+++ b/srcpkgs/tox/template
@@ -1,7 +1,7 @@
 # Template file for 'tox'
 pkgname=tox
 version=3.14.0
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="tox"
 hostmakedepends="python3-setuptools"

From 961b7f981b662a910253aacbdc7da6df43f5bc02 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 790/871] trackma: rebuild for Python 3.8.

---
 srcpkgs/trackma/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/trackma/template b/srcpkgs/trackma/template
index 96833382346..4c29bb8a35d 100644
--- a/srcpkgs/trackma/template
+++ b/srcpkgs/trackma/template
@@ -1,7 +1,7 @@
 # Template file for 'trackma'
 pkgname=trackma
 version=0.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From df43e9caa47fcc67486be583fb54886019b45d03 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 791/871] trash-cli: rebuild for Python 3.8.

---
 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 2a08548c7c8..4ab724d8cb1 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.17.1.14
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3"

From b592408a78bd36b73cfbeda310da42a48b1fd7a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 792/871] tryton: rebuild for Python 3.8.

---
 srcpkgs/tryton/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tryton/template b/srcpkgs/tryton/template
index 196033361f6..61e0f733dc9 100644
--- a/srcpkgs/tryton/template
+++ b/srcpkgs/tryton/template
@@ -1,7 +1,7 @@
 # Template file for 'tryton'
 pkgname=tryton
 version=5.0.8
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tryton"

From a5e890b5de22796167799e66e01cf9fa33372a8f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 793/871] tuimoji: rebuild for Python 3.8.

---
 srcpkgs/tuimoji/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuimoji/template b/srcpkgs/tuimoji/template
index 71e0bf540c0..73f5cff281f 100644
--- a/srcpkgs/tuimoji/template
+++ b/srcpkgs/tuimoji/template
@@ -1,7 +1,7 @@
 # Template file for 'tuimoji'
 pkgname=tuimoji
 version=1.0.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tuimoji"

From 0431ef926092bbafafb63d1e24e1818bb191403a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:52 +0200
Subject: [PATCH 794/871] tuir: rebuild for Python 3.8.

---
 srcpkgs/tuir/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tuir/template b/srcpkgs/tuir/template
index dfc0b15c535..a98f4484544 100644
--- a/srcpkgs/tuir/template
+++ b/srcpkgs/tuir/template
@@ -1,7 +1,7 @@
 # Template file for 'tuir'
 pkgname=tuir
 version=1.28.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=python3-module

From b8bfdc99cd7a38c5db6af90f64349fde0ade6768 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 795/871] tzupdate: rebuild for Python 3.8.

---
 srcpkgs/tzupdate/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/tzupdate/template b/srcpkgs/tzupdate/template
index 9531f0f7540..de2217476bd 100644
--- a/srcpkgs/tzupdate/template
+++ b/srcpkgs/tzupdate/template
@@ -1,7 +1,7 @@
 # Template file for 'tzupdate'
 pkgname=tzupdate
 version=1.5.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="tzupdate.py"

From 3418c87113ca8014c4baf8f392f989d523c5ceef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 796/871] udiskie: rebuild for Python 3.8.

---
 srcpkgs/udiskie/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/udiskie/template b/srcpkgs/udiskie/template
index 536f4d5609d..06d58236046 100644
--- a/srcpkgs/udiskie/template
+++ b/srcpkgs/udiskie/template
@@ -1,7 +1,7 @@
 # Template file for 'udiskie'
 pkgname=udiskie
 version=1.7.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="udiskie"

From 4a08a2ff025bea87a806771bacfae57b40b457f7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 797/871] ueberzug: rebuild for Python 3.8.

---
 srcpkgs/ueberzug/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ueberzug/template b/srcpkgs/ueberzug/template
index e0c474ff63e..dfa1ab29d96 100644
--- a/srcpkgs/ueberzug/template
+++ b/srcpkgs/ueberzug/template
@@ -1,7 +1,7 @@
 # Template file for 'ueberzug'
 pkgname=ueberzug
 version=18.1.3
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel libX11-devel libXext-devel"

From 9daf6664627da0b1f0463e62450cd07e6cb78761 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 798/871] ufw: rebuild for Python 3.8.

---
 srcpkgs/ufw/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ufw/template b/srcpkgs/ufw/template
index ac7dfa45cdd..0bf2a3a0b76 100644
--- a/srcpkgs/ufw/template
+++ b/srcpkgs/ufw/template
@@ -1,7 +1,7 @@
 # Template file for 'ufw'
 pkgname=ufw
 version=0.36
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="ufw"

From 5b796771808883c693b434b86fbcec3e192d9322 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 799/871] unicorn: rebuild for Python 3.8.

---
 srcpkgs/unicorn/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/unicorn/template b/srcpkgs/unicorn/template
index 317e261ae88..971d44752ca 100644
--- a/srcpkgs/unicorn/template
+++ b/srcpkgs/unicorn/template
@@ -1,7 +1,7 @@
 # Template file for 'unicorn'
 pkgname=unicorn
 version=1.0.1
-revision=2
+revision=3
 archs="x86_64* i686*"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"
 short_desc="Lightweight multi-platform, multi-architecture CPU emulator framework"

From d2a3b94b84c8b4b41863acf1d0c0a8c770bf085b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 800/871] unknown-horizons: rebuild for Python 3.8.

---
 srcpkgs/unknown-horizons/patches/py38.patch | 14 ++++++++++++++
 srcpkgs/unknown-horizons/template           |  2 +-
 2 files changed, 15 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/unknown-horizons/patches/py38.patch

diff --git a/srcpkgs/unknown-horizons/patches/py38.patch b/srcpkgs/unknown-horizons/patches/py38.patch
new file mode 100644
index 00000000000..59194750cd1
--- /dev/null
+++ b/srcpkgs/unknown-horizons/patches/py38.patch
@@ -0,0 +1,14 @@
+--- setup.py.orig
++++ setup.py
+@@ -39,10 +39,7 @@
+ # Ensure we are in the correct directory
+ os.chdir(os.path.realpath(os.path.dirname(__file__)))
+ 
+-if platform.dist()[0].lower() in ('debian', 'ubuntu'):
+-	executable_path = 'games'
+-else:
+-	executable_path = 'bin'
++executable_path = 'bin'
+ 
+ 
+ # this trick is for setting RELEASE_VERSION if the code is cloned from git repository
diff --git a/srcpkgs/unknown-horizons/template b/srcpkgs/unknown-horizons/template
index b5fc593b744..6e81970800d 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=2
+revision=3
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3 intltool git python3-Pillow"

From 69f0413132450e05ede5d9fb850a9c7b5207d40d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 801/871] urh: rebuild for Python 3.8.

---
 srcpkgs/urh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urh/template b/srcpkgs/urh/template
index 38da3569724..7e9d3aedad2 100644
--- a/srcpkgs/urh/template
+++ b/srcpkgs/urh/template
@@ -1,7 +1,7 @@
 # Template file for 'urh'
 pkgname=urh
 version=2.8.0
-revision=1
+revision=2
 build_style=python3-module
 pycompile_module="urh"
 hostmakedepends="python3-setuptools python3-Cython"

From 4d947580b4c3bc6fc6290d31d2be3a6dabb3fe1f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:53 +0200
Subject: [PATCH 802/871] urlscan: rebuild for Python 3.8.

---
 srcpkgs/urlscan/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlscan/template b/srcpkgs/urlscan/template
index f6f0d1db07b..2bb1688dad7 100644
--- a/srcpkgs/urlscan/template
+++ b/srcpkgs/urlscan/template
@@ -1,7 +1,7 @@
 # Template file for 'urlscan'
 pkgname=urlscan
 version=0.9.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlscan"

From 4471ea36f1429047026ae6a3e760fbcd766f7a72 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 803/871] urlwatch: rebuild for Python 3.8.

---
 srcpkgs/urlwatch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/urlwatch/template b/srcpkgs/urlwatch/template
index e8a5e403c92..1166fe101a7 100644
--- a/srcpkgs/urlwatch/template
+++ b/srcpkgs/urlwatch/template
@@ -1,7 +1,7 @@
 # Template file for 'urlwatch'
 pkgname=urlwatch
 version=2.17
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="urlwatch"

From de5bb28a04ef38208dd2f735eb464e07906c2ab5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 804/871] vapoursynth: fix and rebuild for Python 3.8.

---
 srcpkgs/vapoursynth/template | 1 +
 1 file changed, 1 insertion(+)

diff --git a/srcpkgs/vapoursynth/template b/srcpkgs/vapoursynth/template
index ce40f4f8920..1c417a624c3 100644
--- a/srcpkgs/vapoursynth/template
+++ b/srcpkgs/vapoursynth/template
@@ -21,6 +21,7 @@ case $XBPS_TARGET_MACHINE in
 esac
 
 pre_configure() {
+	sed -i '/PKG_CHECK_MODULES/s/PYTHON_VERSION/&-embed/g' configure.ac
 	./autogen.sh
 	case $XBPS_TARGET_MACHINE in
 		arm*musl)

From 66ae3e22e4eba608415015d27d40beffb4124391 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 805/871] variety: rebuild for Python 3.8.

---
 srcpkgs/variety/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/variety/template b/srcpkgs/variety/template
index b4ea756c0c9..4d327a830f8 100644
--- a/srcpkgs/variety/template
+++ b/srcpkgs/variety/template
@@ -1,7 +1,7 @@
 # Template file for 'variety'
 pkgname=variety
 version=0.7.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="jumble variety variety_lib"

From baaba822cdfe05e2ceae7c1550984c6ca8657cc1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 806/871] vdirsyncer: rebuild for Python 3.8.

---
 srcpkgs/vdirsyncer/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vdirsyncer/template b/srcpkgs/vdirsyncer/template
index 24080413456..708204afda2 100644
--- a/srcpkgs/vdirsyncer/template
+++ b/srcpkgs/vdirsyncer/template
@@ -1,7 +1,7 @@
 # Template file for 'vdirsyncer'
 pkgname=vdirsyncer
 version=0.16.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="vdirsyncer"

From c080c87d7b5fc5984ccc4a89479ac0487cb787d0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 807/871] vidcutter: rebuild for Python 3.8.

---
 srcpkgs/vidcutter/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vidcutter/template b/srcpkgs/vidcutter/template
index 4f30b888805..6ca85d4e766 100644
--- a/srcpkgs/vidcutter/template
+++ b/srcpkgs/vidcutter/template
@@ -1,7 +1,7 @@
 # Template file for 'vidcutter'
 pkgname=vidcutter
 version=6.0.0
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="vidcutter"

From 1e6098ab957aafe4d62bfaa31cd815f5276d0829 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 808/871] vimiv: rebuild for Python 3.8.

---
 srcpkgs/vimiv/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vimiv/template b/srcpkgs/vimiv/template
index 20fcbe7a03f..a560d4c9d81 100644
--- a/srcpkgs/vimiv/template
+++ b/srcpkgs/vimiv/template
@@ -1,7 +1,7 @@
 # Template file for 'vimiv'
 pkgname="vimiv"
 version=0.9.1
-revision=2
+revision=3
 build_style=gnu-makefile
 pycompile_module=vimiv
 hostmakedepends="python3-setuptools python3-devel"

From de850df9a59cc4a456990b3d212c6bbfa53d85eb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 809/871] virtme: rebuild for Python 3.8.

---
 srcpkgs/virtme/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtme/template b/srcpkgs/virtme/template
index 3905cb24b1d..30035a734f3 100644
--- a/srcpkgs/virtme/template
+++ b/srcpkgs/virtme/template
@@ -1,7 +1,7 @@
 # Template file for 'virtme'
 pkgname=virtme
 version=0.0.3.20180725
-revision=1
+revision=2
 archs=noarch
 _commit=60100bea82183b5d32ed9fca6534cd0fc60d5eb2
 wrksrc="${_commit}"

From ffa647929516d199edac201059609236c2846027 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:54 +0200
Subject: [PATCH 810/871] virtualenvwrapper: rebuild for Python 3.8.

---
 srcpkgs/virtualenvwrapper/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/virtualenvwrapper/template b/srcpkgs/virtualenvwrapper/template
index 6007cc5d2ed..1f0c2efee86 100644
--- a/srcpkgs/virtualenvwrapper/template
+++ b/srcpkgs/virtualenvwrapper/template
@@ -1,7 +1,7 @@
 # Template file for 'virtualenvwrapper'
 pkgname=virtualenvwrapper
 version=4.8.4
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="virtualenvwrapper"

From ea3b47028db3b90400c89474c4971aa474629900 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 811/871] visidata: rebuild for Python 3.8.

---
 srcpkgs/visidata/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/visidata/template b/srcpkgs/visidata/template
index 715896e5f7c..c5c3ae7c82e 100644
--- a/srcpkgs/visidata/template
+++ b/srcpkgs/visidata/template
@@ -1,7 +1,7 @@
 # Template file for 'visidata'
 pkgname=visidata
 version=1.5.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="visidata"

From 8d4431bcf4a19cfcfc1db0958a9ceebd1303d80c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 812/871] volctl: rebuild for Python 3.8.

---
 srcpkgs/volctl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template
index 2b01750b9eb..585aabd2495 100644
--- a/srcpkgs/volctl/template
+++ b/srcpkgs/volctl/template
@@ -1,7 +1,7 @@
 # Template file for 'volctl'
 pkgname=volctl
 version=0.6.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="volctl"

From 307964a52ca30d0065f26fbc0690e0a869834271 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 813/871] voltron: rebuild for Python 3.8.

---
 srcpkgs/voltron/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/voltron/template b/srcpkgs/voltron/template
index c258bb9bab9..38f47a824e3 100644
--- a/srcpkgs/voltron/template
+++ b/srcpkgs/voltron/template
@@ -1,7 +1,7 @@
 # Template file for 'voltron'
 pkgname=voltron
 version=0.1.7
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="voltron"

From 1e793f15eea49af5d3d62a86e2017fe3377cce9d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 814/871] volume_key: rebuild for Python 3.8.

---
 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 11d7b16bed8..14431cb70e9 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=1
+revision=2
 build_style=gnu-configure
 make_build_args="PYTHON3_CFLAGS=-I${XBPS_CROSS_BASE}/${py3_inc}
  PYTHON_CFLAGS=-I${XBPS_CROSS_BASE}/${py2_inc}"

From ff43cd8de901a41f82b5c6c582c4bfcc203c9888 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 815/871] weather: rebuild for Python 3.8.

---
 srcpkgs/weather/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weather/template b/srcpkgs/weather/template
index ffa8a828b36..3ac33bfac15 100644
--- a/srcpkgs/weather/template
+++ b/srcpkgs/weather/template
@@ -1,7 +1,7 @@
 # Template file for 'weather'
 pkgname=weather
 version=2.3
-revision=2
+revision=3
 archs=noarch
 hostmakedepends="python3"
 depends="python3"

From ae14c4ff3642aa5f9f3aab8218a505ab857c5d1a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 816/871] wfuzz: rebuild for Python 3.8.

---
 srcpkgs/wfuzz/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wfuzz/template b/srcpkgs/wfuzz/template
index 8e0d350b301..15de80da391 100644
--- a/srcpkgs/wfuzz/template
+++ b/srcpkgs/wfuzz/template
@@ -1,7 +1,7 @@
 # Template file for 'wfuzz'
 pkgname=wfuzz
 version=2.4.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wfuzz"

From ca9548061e943f8c56d440b2971cb85d3f6c9392 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 817/871] wpgtk: rebuild for Python 3.8.

---
 srcpkgs/wpgtk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpgtk/template b/srcpkgs/wpgtk/template
index ed931079816..32d2d7c03e8 100644
--- a/srcpkgs/wpgtk/template
+++ b/srcpkgs/wpgtk/template
@@ -1,7 +1,7 @@
 # Template file for 'wpgtk'
 pkgname=wpgtk
 version=6.0.11
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpgtk"

From 17eea1e532d83badff0a07fa3b8ac17545405749 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:55 +0200
Subject: [PATCH 818/871] wpull: rebuild for Python 3.8.

---
 srcpkgs/wpull/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpull/template b/srcpkgs/wpull/template
index 5e9b9dcc641..621e1c85428 100644
--- a/srcpkgs/wpull/template
+++ b/srcpkgs/wpull/template
@@ -1,7 +1,7 @@
 # Template file for 'wpull'
 pkgname=wpull
 version=2.0.3
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="wpull"

From 3cccafdd3be15a249dc3d17edf34feccab7f1ad5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 819/871] wxPython4: rebuild for Python 3.8.

---
 srcpkgs/wxPython4/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wxPython4/template b/srcpkgs/wxPython4/template
index 2aa7117d5e0..b65e0b2ffe1 100644
--- a/srcpkgs/wxPython4/template
+++ b/srcpkgs/wxPython4/template
@@ -1,7 +1,7 @@
 # Template file for 'wxPython4'
 pkgname=wxPython4
 version=4.0.6
-revision=2
+revision=3
 wrksrc="wxPython-${version}"
 build_style=python3-module
 pycompile_module="wx"

From 07f525252e64b49a2c04ba2dfa0980e11eb148d6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 820/871] xcb-proto: rebuild for Python 3.8.

---
 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 1b26ecd73f3..020524bda87 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.13
-revision=2
+revision=3
 archs=noarch
 build_style=gnu-configure
 pycompile_module="xcbgen"

From f2604e3a1d0e598eb12d5096a6dd0570e50fe24a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 821/871] xdot: rebuild for Python 3.8.

---
 srcpkgs/xdot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xdot/template b/srcpkgs/xdot/template
index 23f7b1f17e0..f7507ffb8c5 100644
--- a/srcpkgs/xdot/template
+++ b/srcpkgs/xdot/template
@@ -1,7 +1,7 @@
 # Template file for 'xdot'
 pkgname=xdot
 version=1.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="xdot.py-${version}"
 build_style=python3-module

From 7c54685acf5d5f3d71c920f8034df31951dea793 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 822/871] xkcdpass: rebuild for Python 3.8.

---
 srcpkgs/xkcdpass/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xkcdpass/template b/srcpkgs/xkcdpass/template
index 46b4a9635f9..37fb6872079 100644
--- a/srcpkgs/xkcdpass/template
+++ b/srcpkgs/xkcdpass/template
@@ -1,7 +1,7 @@
 # Template file for 'xkcdpass'
 pkgname=xkcdpass
 version=1.17.3
-revision=1
+revision=2
 archs=noarch
 wrksrc="XKCD-password-generator-xkcdpass-${version}"
 build_style=python3-module

From d1d71c70fde54ecba493ec9895080e089dafdac7 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 823/871] xonsh: rebuild for Python 3.8.

---
 srcpkgs/xonsh/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/xonsh/template b/srcpkgs/xonsh/template
index 22f5cefac59..7f0fee838e4 100644
--- a/srcpkgs/xonsh/template
+++ b/srcpkgs/xonsh/template
@@ -1,7 +1,7 @@
 # Template file for 'xonsh'
 pkgname=xonsh
 version=0.9.13
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="xonsh xontrib"

From 76d72f5b7043286e0d3fef118c5f40b6f1db6ca2 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:56 +0200
Subject: [PATCH 824/871] yq: rebuild for Python 3.8.

---
 srcpkgs/yq/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yq/template b/srcpkgs/yq/template
index d8dbcdaadd7..a0c66899d12 100644
--- a/srcpkgs/yq/template
+++ b/srcpkgs/yq/template
@@ -1,7 +1,7 @@
 # Template file for 'yq'
 pkgname=yq
 version=2.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 03b85e44bce454542dd0e0b6888d01136ed3e361 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 825/871] ytcc: rebuild for Python 3.8.

---
 srcpkgs/ytcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ytcc/template b/srcpkgs/ytcc/template
index feafa404b75..df4195758c7 100644
--- a/srcpkgs/ytcc/template
+++ b/srcpkgs/ytcc/template
@@ -1,7 +1,7 @@
 # Template file for 'ytcc'
 pkgname=ytcc
 version=1.8.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="ytcc"

From 32e3e12373416d9ca29ee8afc06f9084f11adbe9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 826/871] yturl: rebuild for Python 3.8.

---
 srcpkgs/yturl/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/yturl/template b/srcpkgs/yturl/template
index 6fa3e9872ee..ee14b77b5a0 100644
--- a/srcpkgs/yturl/template
+++ b/srcpkgs/yturl/template
@@ -1,7 +1,7 @@
 # Template file for 'yturl'
 pkgname=yturl
 version=2.0.2
-revision=3
+revision=4
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From 9d73e5e5740549b39201e2d4334800033d567202 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 827/871] yubikey-manager: rebuild for Python 3.8.

---
 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 af0330e8e15..fcc7b7cb737 100644
--- a/srcpkgs/yubikey-manager/template
+++ b/srcpkgs/yubikey-manager/template
@@ -1,7 +1,7 @@
 # Template file for 'yubikey-manager'
 pkgname=yubikey-manager
 version=3.1.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From c0eef64fae5edddadb34deb6ee952652637844c5 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 828/871] z3: rebuild for Python 3.8.

---
 srcpkgs/z3/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/z3/template b/srcpkgs/z3/template
index d632a285019..e054915df91 100644
--- a/srcpkgs/z3/template
+++ b/srcpkgs/z3/template
@@ -1,7 +1,7 @@
 # Template file for 'z3'
 pkgname=z3
 version=4.8.6
-revision=2
+revision=3
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=configure
 configure_args="--prefix=/usr -g --python $(vopt_if ocaml --ml)"

From 19c120ab68e97acef0c50e0612fb492feca84237 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Thu, 17 Oct 2019 11:04:57 +0200
Subject: [PATCH 829/871] zim: rebuild for Python 3.8.

---
 srcpkgs/zim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/zim/template b/srcpkgs/zim/template
index 45b9df5357c..dff4ad22081 100644
--- a/srcpkgs/zim/template
+++ b/srcpkgs/zim/template
@@ -1,7 +1,7 @@
 # Template file for 'zim'
 pkgname=zim
 version=0.71.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="zim"

From 755abbd49b11eb9ba6fd53dbfbff5ee3bc8f37a9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 830/871] python3-pafy: rebuild for Python 3.8.

---
 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 ce26f770c69..b59c9a0adff 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.4
-revision=2
+revision=3
 archs=noarch
 wrksrc="pafy-${version}"
 build_style=python3-module

From fba7eef22194fd104979d0cbd7585417bee2b286 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 831/871] python3-perf: rebuild for Python 3.8.

---
 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 a03251f97e8..3d57ddb1c1a 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.6.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="pyperf-${version}"
 build_style=python3-module

From bd9e5b67cd6b87164d6c4c5ad3f6c48f2202f901 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:20:15 +0200
Subject: [PATCH 832/871] python3-yara: rebuild for Python 3.8.

---
 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 4a6c56dd083..3bdff14a0da 100644
--- a/srcpkgs/python3-yara/template
+++ b/srcpkgs/python3-yara/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-yara'
 pkgname=python3-yara
 version=3.11.0
-revision=1
+revision=2
 wrksrc="yara-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"

From aa9042bfebdf04024da9761297aae52af22fda19 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:31 +0200
Subject: [PATCH 833/871] azote: rebuild for Python 3.8.

---
 srcpkgs/azote/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/azote/template b/srcpkgs/azote/template
index 0a23c209551..2748cb98733 100644
--- a/srcpkgs/azote/template
+++ b/srcpkgs/azote/template
@@ -1,7 +1,7 @@
 # Template file for 'azote'
 pkgname=azote
 version=1.5.1
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="azote"

From 1edb4be90ef6070e34bac67fec550fcd24b475f6 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 834/871] binwalk: rebuild for Python 3.8.

---
 srcpkgs/binwalk/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/binwalk/template b/srcpkgs/binwalk/template
index 461ea4b547a..fccd523d584 100644
--- a/srcpkgs/binwalk/template
+++ b/srcpkgs/binwalk/template
@@ -1,7 +1,7 @@
 # Template file for 'binwalk'
 pkgname=binwalk
 version=2.2.0
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="binwalk"

From 56fe82c8e57be1ad86cdf985fbdd50a0991073ad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 835/871] gnome-builder: rebuild for Python 3.8.

---
 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 9ae9ff9d94c..85aeeee9a15 100644
--- a/srcpkgs/gnome-builder/template
+++ b/srcpkgs/gnome-builder/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-builder'
 pkgname=gnome-builder
 version=3.34.1
-revision=1
+revision=2
 build_style=meson
 configure_args="-Dwith_webkit=true -Dwith_sysprof=true -Dhelp=true"
 hostmakedepends="appdata-tools desktop-file-utils flex gobject-introspection

From c00e746f4a8383591a879544b6b946a479dc52cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 836/871] gnome-tweaks: rebuild for Python 3.8.

---
 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 ac1f8bdb873..d0879253ac5 100644
--- a/srcpkgs/gnome-tweaks/template
+++ b/srcpkgs/gnome-tweaks/template
@@ -1,7 +1,7 @@
 # Template file for 'gnome-tweaks'
 pkgname=gnome-tweaks
 version=3.34.0
-revision=2
+revision=3
 archs=noarch
 build_style=meson
 pycompile_module="gtweak"

From 0f815f730af0cc46d68a794f1585d3d9d60a7283 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 837/871] meson: rebuild for Python 3.8.

---
 srcpkgs/meson/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/meson/template b/srcpkgs/meson/template
index 315a0f27a92..76791451681 100644
--- a/srcpkgs/meson/template
+++ b/srcpkgs/meson/template
@@ -2,7 +2,7 @@
 pkgname=meson
 reverts="0.52.0_1 0.52.0_2"
 version=0.51.2
-revision=2
+revision=3
 archs=noarch
 build_style=python3-module
 pycompile_module="mesonbuild"

From e7341c8fb2a6a192b65f949afb2022db02adc234 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 838/871] onionshare: rebuild for Python 3.8.

---
 srcpkgs/onionshare/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/onionshare/template b/srcpkgs/onionshare/template
index c585ae6101e..c37c5962736 100644
--- a/srcpkgs/onionshare/template
+++ b/srcpkgs/onionshare/template
@@ -1,7 +1,7 @@
 # Template file for 'onionshare'
 pkgname=onionshare
 version=2.2
-revision=1
+revision=2
 archs=noarch
 build_style=python3-module
 pycompile_module="onionshare"

From f85f071b87a1948de3d7250e1ff166ddd12fbea8 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 839/871] portage: rebuild for Python 3.8.

---
 srcpkgs/portage/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/portage/template b/srcpkgs/portage/template
index 2ebed65fb3c..7047c85f96c 100644
--- a/srcpkgs/portage/template
+++ b/srcpkgs/portage/template
@@ -1,7 +1,7 @@
 # Template file for 'portage'
 pkgname=portage
 version=2.3.78
-revision=1
+revision=2
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=python3-module
 pycompile_module="portage _emerge"

From 6ad57e88d109844c04724bfe8d81a0952135b0f3 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 840/871] rpm: fix and rebuild for Python 3.8.

---
 srcpkgs/rpm/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/rpm/template b/srcpkgs/rpm/template
index 98e35930c4c..695195323fd 100644
--- a/srcpkgs/rpm/template
+++ b/srcpkgs/rpm/template
@@ -1,7 +1,7 @@
 # Template file for 'rpm'
 pkgname=rpm
 version=4.15.0
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--with-lua --with-cap --with-acl --with-external-db
  --enable-python PYTHON=python3"
@@ -18,7 +18,7 @@ distfiles="http://ftp.rpm.org/releases/rpm-4.15.x/rpm-${version}.tar.bz2"
 checksum=1e06723b13591e57c99ebe2006fb8daddc4cf72efb366a64a34673ba5f61c201
 conflicts="rpmextract>=0" # Both provide rpm2cpio
 
-CFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6"
+CFLAGS="-I${XBPS_CROSS_BASE}${py3_inc}"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nss"
 CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nspr"
 

From 393e3c4e93b7f1c41ed0421f67e81f8d966f9efc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:24:32 +0200
Subject: [PATCH 841/871] youtube-dl: rebuild for Python 3.8.

---
 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 933fd4a57d6..7bd35a6d086 100644
--- a/srcpkgs/youtube-dl/template
+++ b/srcpkgs/youtube-dl/template
@@ -1,7 +1,7 @@
 # Template file for 'youtube-dl'
 pkgname=youtube-dl
 version=2019.10.29
-revision=1
+revision=2
 archs=noarch
 wrksrc=youtube-dl
 build_style=python3-module

From 244182cdcd229572291a89dc4efa1063396ea733 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 842/871] blender: rebuild for Python 3.8.

---
 srcpkgs/blender/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template
index 758d1235185..47cb8f8ad13 100644
--- a/srcpkgs/blender/template
+++ b/srcpkgs/blender/template
@@ -1,7 +1,7 @@
 # Template file for 'blender'
 pkgname=blender
 version=2.79b
-revision=9
+revision=10
 build_style="cmake"
 makedepends="
  libgomp-devel libpng-devel tiff-devel python3-devel glu-devel

From d8d362924fe3a893d738d708f6a00bdee3ae8684 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 843/871] freecad: fix and rebuild for Python 3.8.

---
 srcpkgs/freecad/patches/090-py38.patch | 22 ++++++++++++++++++++++
 srcpkgs/freecad/template               |  2 +-
 2 files changed, 23 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/freecad/patches/090-py38.patch

diff --git a/srcpkgs/freecad/patches/090-py38.patch b/srcpkgs/freecad/patches/090-py38.patch
new file mode 100644
index 00000000000..92566df9df3
--- /dev/null
+++ b/srcpkgs/freecad/patches/090-py38.patch
@@ -0,0 +1,22 @@
+From 174011749d836f3b6c6ae2630f53b2f4c1f9d3fc Mon Sep 17 00:00:00 2001
+From: Richard <hobbes1069@gmail.com>
+Date: Thu, 17 Oct 2019 11:20:10 -0500
+Subject: [PATCH] Update swigpyrun.in for Python 3.8
+
+In Python 3.8 some functions related to thread state were intentionally made private.
+
+This fix (specific to FreeCAD) was suggested here:
+
+https://bugs.python.org/issue35886
+
+--- src/Base/swigpyrun.inl
++++ src/Base/swigpyrun.inl
+@@ -72,7 +72,7 @@ void cleanupSWIG_T(const char* TypeName)
+ 
+     PyObject *module, *dict;
+     PyInterpreterState *interp = PyThreadState_GET()->interp;
+-    PyObject *modules = interp->modules;
++    PyObject *modules = PyImport_GetModuleDict();
+     module = PyDict_GetItemString(modules, "__builtin__");
+     if (module != NULL && PyModule_Check(module)) {
+         dict = PyModule_GetDict(module);
diff --git a/srcpkgs/freecad/template b/srcpkgs/freecad/template
index 70caa0f5793..54759a77399 100644
--- a/srcpkgs/freecad/template
+++ b/srcpkgs/freecad/template
@@ -1,7 +1,7 @@
 # Template file for 'freecad'
 pkgname=freecad
 version=0.18.4
-revision=1
+revision=2
 wrksrc="FreeCAD-${version}"
 build_style=cmake
 

From 7e0159ffa7f9f0c6b6879037df16a778c81d701b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 844/871] gdb: rebuild for Python 3.8.

---
 srcpkgs/gdb/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gdb/template b/srcpkgs/gdb/template
index 9f84e4869e9..39aab79d08a 100644
--- a/srcpkgs/gdb/template
+++ b/srcpkgs/gdb/template
@@ -1,7 +1,7 @@
 # Template file for 'gdb'
 pkgname=gdb
 version=8.3.1
-revision=1
+revision=2
 build_style=gnu-configure
 pycompile_dirs="/usr/share/gdb"
 configure_args="--disable-werror --disable-nls --with-system-readline

From d4b6c095825630e9b217f28b8e9666b75cd68b65 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 845/871] hexchat: rebuild for Python 3.8.

---
 srcpkgs/hexchat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hexchat/template b/srcpkgs/hexchat/template
index fbeaf28ae8a..9f7d7957b76 100644
--- a/srcpkgs/hexchat/template
+++ b/srcpkgs/hexchat/template
@@ -1,7 +1,7 @@
 # Template file for 'hexchat'
 pkgname=hexchat
 version=2.14.2
-revision=6
+revision=7
 build_style=meson
 configure_args="-Dwith-dbus=true -Dwith-ssl=true -Dwith-text=false
  -Dwith-perl=/usr/bin/perl -Dwith-python=python3

From d0fe3dd780e0f25a09fd3ad9a8e8191227a5a00c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:34 +0200
Subject: [PATCH 846/871] hyperion: rebuild for Python 3.8.

---
 srcpkgs/hyperion/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hyperion/template b/srcpkgs/hyperion/template
index 0befdbe7064..7ce415e929e 100644
--- a/srcpkgs/hyperion/template
+++ b/srcpkgs/hyperion/template
@@ -1,7 +1,7 @@
 # Template file for 'hyperion'
 pkgname=hyperion
 version=1.03.2
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DUSE_SYSTEM_PROTO_LIBS=ON -DENABLE_QT5=ON
  -DPROTOBUF_PROTOC_EXECUTABLE=/usr/bin/protoc -DENABLE_AMLOGIC=ON

From fbdd1747825be4f119eeeb6f877cb2e93a56ab99 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 847/871] kdevelop-python: rebuild for Python 3.8.

---
 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 0265916a3d0..a306eb8f442 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.4.2
-revision=1
+revision=2
 wrksrc="kdev-python-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/kdevpythonsupport"

From 087e09a5585806a877fb0d061f8e95e8136ba17c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 848/871] kitty: rebuild for Python 3.8.

---
 srcpkgs/kitty/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/kitty/template b/srcpkgs/kitty/template
index d79bcc4acce..54cd08c23ec 100644
--- a/srcpkgs/kitty/template
+++ b/srcpkgs/kitty/template
@@ -1,7 +1,7 @@
 # Template file for 'kitty'
 pkgname=kitty
 version=0.14.6
-revision=1
+revision=2
 pycompile_dirs="usr/lib/kitty"
 hostmakedepends="ncurses pkg-config python3 wayland-devel wayland-protocols"
 makedepends="gettext-devel glfw-devel harfbuzz-devel libxkbcommon-devel

From a33133b8a5290f24b2d221fbcb81fffeac2e98fa Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 849/871] krita: rebuild for Python 3.8, fix sha256sum.

Tarball was yanked for trivial fix.
---
 srcpkgs/krita/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/krita/template b/srcpkgs/krita/template
index 7a59fc9ac58..67f128c61ce 100644
--- a/srcpkgs/krita/template
+++ b/srcpkgs/krita/template
@@ -1,7 +1,7 @@
 # Template file for 'krita'
 pkgname=krita
 version=4.2.7.1
-revision=1
+revision=2
 build_style=cmake
 configure_args="-Wno-dev -DBUILD_TESTING=OFF"
 hostmakedepends="extra-cmake-modules pkg-config python3"
@@ -18,6 +18,6 @@ license="GPL-3.0-only"
 homepage="https://krita.org/"
 KDE_SITE="http://ftp5.gwdg.de/pub/linux/kde/stable/"
 distfiles="${KDE_SITE}/krita/${version}/krita-${version}.tar.gz"
-checksum=28218030edca9dfa1c7e255401ca6fc8fe0e5329f7611cfc196e35746d312086
+checksum=3ed29fd9d8e067def55e703fc55312815c21041d274727e228bdbe0478c09c3d
 nocross=yes
 replaces="calligra-krita>=0"

From 33500b8ce395556e0e748bc3df419e48fb8823e0 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:26:38 +0200
Subject: [PATCH 850/871] libpeas: rebuild for Python 3.8.

---
 srcpkgs/libpeas/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index a69238bf823..d4dcf8b5941 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,7 +1,7 @@
 # Template file for 'libpeas'
 pkgname=libpeas
 version=1.22.0
-revision=5
+revision=6
 build_style=gnu-configure
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"

From 911e53e0f2d0cb10ce0c829a887bf849d4c82a8b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 851/871] libreoffice: rebuild for Python 3.8.

---
 srcpkgs/libreoffice/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template
index 9d09324b59b..90c2542cf6c 100644
--- a/srcpkgs/libreoffice/template
+++ b/srcpkgs/libreoffice/template
@@ -1,7 +1,7 @@
 # Template file for 'libreoffice'
 pkgname=libreoffice
 version=6.2.5.2
-revision=2
+revision=3
 build_style=meta
 make_build_args="build-nocheck"
 nocross=yes

From 6272bbd1eb3a4d4f9d3b5ab17f7b1dff31ab13ef Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 852/871] shiboken: rebuild for Python 3.8.

---
 srcpkgs/shiboken/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
index 1f9c8043b46..34174be7535 100644
--- a/srcpkgs/shiboken/template
+++ b/srcpkgs/shiboken/template
@@ -1,7 +1,7 @@
 # Template file for 'shiboken'
 pkgname=shiboken
 version=1.2.2
-revision=5
+revision=6
 wrksrc="shiboken-${version}"
 hostmakedepends="cmake"
 makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"

From 7688aec5ca8fa6e9f52baf156f7103d092a7d500 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:35 +0200
Subject: [PATCH 853/871] libsigrokdecode: rebuild for Python 3.8.

---
 srcpkgs/libsigrokdecode/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libsigrokdecode/template b/srcpkgs/libsigrokdecode/template
index 59e15dd61b9..cc9d9a10367 100644
--- a/srcpkgs/libsigrokdecode/template
+++ b/srcpkgs/libsigrokdecode/template
@@ -1,7 +1,7 @@
 # Template file for 'libsigrokdecode'
 pkgname=libsigrokdecode
 version=0.5.2
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="glib-devel python3-devel"

From e18e058362ac54e325f4092c4c68f42e8f85866b Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 854/871] luxrays: rebuild for Python 3.8.

---
 srcpkgs/luxrays/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/luxrays/template b/srcpkgs/luxrays/template
index c783e9fe3e5..58037fbfc05 100644
--- a/srcpkgs/luxrays/template
+++ b/srcpkgs/luxrays/template
@@ -1,7 +1,7 @@
 # Template file for 'luxrays'
 pkgname=luxrays
 version=3.1
-revision=13
+revision=14
 build_style=cmake
 configure_args="-DLUXRAYS_DISABLE_OPENCL=OFF -DCMAKE_SKIP_RPATH=ON"
 hostmakedepends="flex bison boost-devel"

From f3aa7c30e6d5a4051bcf54039630785fac14391a Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 855/871] navit: rebuild for Python 3.8.

---
 srcpkgs/navit/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/navit/template b/srcpkgs/navit/template
index 461689a3c73..24cd151c64b 100644
--- a/srcpkgs/navit/template
+++ b/srcpkgs/navit/template
@@ -1,7 +1,7 @@
 # Template file for 'navit'
 pkgname=navit
 version=0.5.3
-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 5cd2a0eb4e5cb271782feae07ceb731852542663 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 856/871] obs: rebuild for Python 3.8.

---
 srcpkgs/obs/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/obs/template b/srcpkgs/obs/template
index bec2ad776d8..fcc26ba1bf4 100644
--- a/srcpkgs/obs/template
+++ b/srcpkgs/obs/template
@@ -1,7 +1,7 @@
 # Template file for 'obs'
 pkgname=obs
 version=24.0.3
-revision=1
+revision=2
 _commit_hash_obs_browser="693498b518cf893876f454ef581e13106e8370ec"
 _commit_hash_obs_vst="fde438f7a8afdf41a7ab386a0aa1a61175fc8427"
 _commit_hash_ftl_sdk="98289f7c2ed754c647d451899b3356850c0c1fa3"

From 1de99a965d425a088fe49db869edec16ac12f4ed Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 857/871] renderdoc: fix and rebuild for Python 3.8.

---
 srcpkgs/renderdoc/files/swig-py38.patch    | 28 +++++++++++++
 srcpkgs/renderdoc/patches/cmake-py38.patch | 48 ++++++++++++++++++++++
 srcpkgs/renderdoc/template                 |  8 ++--
 3 files changed, 81 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/renderdoc/files/swig-py38.patch
 create mode 100644 srcpkgs/renderdoc/patches/cmake-py38.patch

diff --git a/srcpkgs/renderdoc/files/swig-py38.patch b/srcpkgs/renderdoc/files/swig-py38.patch
new file mode 100644
index 00000000000..0595599c658
--- /dev/null
+++ b/srcpkgs/renderdoc/files/swig-py38.patch
@@ -0,0 +1,28 @@
+From dbe955dd0300d55a32fd73a4eef730b3e30ed5c4 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 20:32:03 +0200
+Subject: [PATCH] swig: avoid use of _PyObject_GC_UNTRACK
+
+It is deprecated[1]. Use PyObject_GC_UnTrack instead.
+
+[1] https://docs.python.org/3/c-api/gcsupport.html#c._PyObject_GC_UNTRACK
+---
+ Lib/python/builtin.swg | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Lib/python/builtin.swg b/Lib/python/builtin.swg
+index 9597653b7..6af45a9d1 100644
+--- a/Lib/python/builtin.swg
++++ b/Lib/python/builtin.swg
+@@ -120,7 +120,7 @@ SwigPyBuiltin_FunpackSetterClosure (PyObject *obj, PyObject *val, void *closure)
+ 
+ SWIGINTERN void
+ SwigPyStaticVar_dealloc(PyDescrObject *descr) {
+-  _PyObject_GC_UNTRACK(descr);
++  PyObject_GC_UnTrack(descr);
+   Py_XDECREF(PyDescr_TYPE(descr));
+   Py_XDECREF(PyDescr_NAME(descr));
+   PyObject_GC_Del(descr);
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/patches/cmake-py38.patch b/srcpkgs/renderdoc/patches/cmake-py38.patch
new file mode 100644
index 00000000000..fc1adb9ddbc
--- /dev/null
+++ b/srcpkgs/renderdoc/patches/cmake-py38.patch
@@ -0,0 +1,48 @@
+From 56769d3e2cc12670b73a1ddd9dfaab959340c2e2 Mon Sep 17 00:00:00 2001
+From: Christian Kellner <christian@kellner.me>
+Date: Thu, 11 Jul 2019 21:27:02 +0200
+Subject: [PATCH] CMake: py3.8 support, ability to patch swig
+
+Add 3.8 to list of python versions and ability to patch the custom
+swig, also needed for 3.8
+---
+ CMakeLists.txt            | 2 +-
+ qrenderdoc/CMakeLists.txt | 2 ++
+ 2 files changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 13818e5b8..00feda2ad 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -308,7 +308,7 @@ add_subdirectory(renderdoc)
+ # are handled in common
+ if(ENABLE_QRENDERDOC OR ENABLE_PYRENDERDOC)
+     # Make sure Python 3 is found
+-    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7)
++    set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7 3.8)
+     find_package(PythonInterp 3 REQUIRED)
+     find_package(PythonLibs 3 REQUIRED)
+     # we also need python3-config for swig
+diff --git a/qrenderdoc/CMakeLists.txt b/qrenderdoc/CMakeLists.txt
+index 9fd65b2d3..1ef284349 100644
+--- a/qrenderdoc/CMakeLists.txt
++++ b/qrenderdoc/CMakeLists.txt
+@@ -7,6 +7,7 @@ endif()
+ 
+ set(QMAKE_QT5_COMMAND ${QT_QMAKE_EXECUTABLE} CACHE STRING "Command to run to invoke Qt5's qmake. Normally this is qmake, possibly with qtchooser, but might be qmake-qt5")
+ set(RENDERDOC_SWIG_PACKAGE https://github.com/baldurk/swig/archive/renderdoc-modified-6.zip CACHE STRING "The location where RenderDoc's swig fork source can be found. By default points to the URL on github but can be pointed to a local file.")
++set(RENDERDOC_SWIG_PATCH "" CACHE STRING "The location for the patch to apply to swig.")
+ 
+ set(QMAKE_CONFIG "debug")
+ set(QMAKE_LDFLAGS "")
+@@ -99,6 +100,7 @@ ExternalProject_Add(custom_swig
+     # using an URL to a zip directly so we don't clone the history etc
+     URL ${RENDERDOC_SWIG_PACKAGE}
+     BUILD_IN_SOURCE 1
++    PATCH_COMMAND patch -p1 -i ${RENDERDOC_SWIG_PATCH} > /dev/null
+     CONFIGURE_COMMAND ./autogen.sh > /dev/null 2>&1
+     COMMAND CC=${SWIG_CONFIGURE_CC} CXX=${SWIG_CONFIGURE_CXX} CFLAGS=-fPIC CXXFLAGS=-fPIC ./configure --with-pcre=yes --prefix=${CMAKE_BINARY_DIR} > /dev/null
+     BUILD_COMMAND ${GENERATOR_MAKE} > /dev/null 2>&1
+-- 
+2.21.0
+
diff --git a/srcpkgs/renderdoc/template b/srcpkgs/renderdoc/template
index 32d051864d3..9972d9435b0 100644
--- a/srcpkgs/renderdoc/template
+++ b/srcpkgs/renderdoc/template
@@ -1,11 +1,13 @@
 # Template file for 'renderdoc'
 pkgname=renderdoc
 version=1.4
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DENABLE_GL=ON -DENABLE_GLES=ON -DENABLE_QRENDERDOC=ON
  -DENABLE_RENDERDOCCMD=ON -DENABLE_VULKAN=ON -DENABLE_XCB=ON -DENABLE_XLIB=ON
- -DENABLE_PYRENDERDOC=ON"
+ -DENABLE_PYRENDERDOC=ON
+ -DRENDERDOC_SWIG_PATCH=${XBPS_SRCPKGDIR}/${pkgname}/files/swig-py38.patch"
+patch_args="-p1"
 hostmakedepends="bison autoconf automake pkg-config python3"
 makedepends="libX11-devel libxcb-devel xcb-util-keysyms-devel libGL qt5-devel
  qt5-svg-devel qt5-x11extras-devel pcre-devel python3-devel"
@@ -17,7 +19,7 @@ distfiles="https://github.com/baldurk/${pkgname}/archive/v${version}.tar.gz"
 checksum=9a78951f386fb7c3ecf7df6919d300db59719d14f0621438963ae30a75d33677
 
 case "$XBPS_TARGET_MACHINE" in
-	*-musl) broken="This package uses execnfo.h which is not available on musl"
+	*-musl) broken="This package uses execinfo.h which is not available on musl"
 esac
 
 if [ "$CROSS_BUILD" ]; then

From 64ba670c09b5e5dc6fb7c875524bd6e28862512d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 858/871] sigil: rebuild for Python 3.8.

---
 srcpkgs/sigil/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/sigil/template b/srcpkgs/sigil/template
index 4a90ef95798..1d577ee3487 100644
--- a/srcpkgs/sigil/template
+++ b/srcpkgs/sigil/template
@@ -1,7 +1,7 @@
 # Template file for 'sigil'
 pkgname=sigil
 version=0.9.13
-revision=1
+revision=2
 wrksrc="Sigil-${version}"
 build_style=cmake
 pycompile_dirs="usr/share/sigil/python3lib"

From 109d82636044201ac23e43ae45c75fba7c1bd85c Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 859/871] uwsgi: rebuild for Python 3.8.

---
 srcpkgs/uwsgi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/uwsgi/template b/srcpkgs/uwsgi/template
index 2e96cd2e38e..e283d6bc357 100644
--- a/srcpkgs/uwsgi/template
+++ b/srcpkgs/uwsgi/template
@@ -1,7 +1,7 @@
 # Template file for 'uwsgi'
 pkgname=uwsgi
 version=2.0.18
-revision=1
+revision=2
 hostmakedepends="python python3"
 makedepends="python-devel python3-devel"
 short_desc="Fast, self-healing application container server"

From e9e0833692db66d4cce990a21da44dfa8b57bebb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:36 +0200
Subject: [PATCH 860/871] vim: rebuild for Python 3.8.

---
 srcpkgs/vim/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vim/template b/srcpkgs/vim/template
index 8f543069d19..7c7fd4a30f7 100644
--- a/srcpkgs/vim/template
+++ b/srcpkgs/vim/template
@@ -1,7 +1,7 @@
 # Template file for 'vim'
 pkgname=vim
 version=8.1.2021
-revision=3
+revision=4
 hostmakedepends="glib-devel pkg-config"
 makedepends="acl-devel gtk+3-devel libXt-devel lua-devel ncurses-devel
  perl python-devel python3-devel ruby-devel"

From 1673b47a4bfbe3853edb03d1fc0fcff8c2a6b26d Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 861/871] weechat: rebuild for Python 3.8.

---
 srcpkgs/weechat/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/weechat/template b/srcpkgs/weechat/template
index 19f8af4fd8f..14c3e2360f5 100644
--- a/srcpkgs/weechat/template
+++ b/srcpkgs/weechat/template
@@ -1,7 +1,7 @@
 # Template file for 'weechat'
 pkgname=weechat
 version=2.6
-revision=2
+revision=3
 build_style=cmake
 configure_args="-DENABLE_MAN=ON -DENABLE_ENCHANT=ON -DENABLE_PERL=ON
  -DENABLE_LUA=ON -DENABLE_RUBY=ON -DENABLE_SPELL=ON

From 483feae680d6a16ff7530c5d3ac54a4e794848cc Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 16:32:37 +0200
Subject: [PATCH 862/871] znc: rebuild for Python 3.8.

---
 srcpkgs/znc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/znc/template b/srcpkgs/znc/template
index 8af8f23a145..696b59133c8 100644
--- a/srcpkgs/znc/template
+++ b/srcpkgs/znc/template
@@ -1,7 +1,7 @@
 # Template file for 'znc'
 pkgname=znc
 version=1.7.5
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="
  --enable-python

From a4642de06219759bd89a1b862f9645983fea2cad Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:18:51 +0200
Subject: [PATCH 863/871] boost: rebuild for Python 3.8.

---
 srcpkgs/boost/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 40a4fe67730..1fb0e8ed519 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=5
+revision=6
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"

From 17ec5ba440ff3f123f87e50393b7ec0ce86965b9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:10 +0200
Subject: [PATCH 864/871] python-pyside: remove, obsolete.

---
 srcpkgs/python-pyside/INSTALL.msg | 1 -
 srcpkgs/python-pyside/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/python-pyside/INSTALL.msg
 delete mode 100644 srcpkgs/python-pyside/template

diff --git a/srcpkgs/python-pyside/INSTALL.msg b/srcpkgs/python-pyside/INSTALL.msg
deleted file mode 100644
index 6de207b7aa2..00000000000
--- a/srcpkgs/python-pyside/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-python-pyside is no longer provided by Void Linux, and will be fully removed from the repos on 2019-07-17
diff --git a/srcpkgs/python-pyside/template b/srcpkgs/python-pyside/template
deleted file mode 100644
index 7053f0e7fc3..00000000000
--- a/srcpkgs/python-pyside/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'python-pyside'
-pkgname=python-pyside
-version=1.2.2
-revision=7
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="http://www.pyside.org/"

From ac6780ceba5879b9fbd85e73494ed18c310f774f Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:21:52 +0200
Subject: [PATCH 865/871] pyside-tools: remove, obsolete.

---
 srcpkgs/pyside-tools/INSTALL.msg | 1 -
 srcpkgs/pyside-tools/template    | 9 ---------
 2 files changed, 10 deletions(-)
 delete mode 100644 srcpkgs/pyside-tools/INSTALL.msg
 delete mode 100644 srcpkgs/pyside-tools/template

diff --git a/srcpkgs/pyside-tools/INSTALL.msg b/srcpkgs/pyside-tools/INSTALL.msg
deleted file mode 100644
index fdb45eb0f42..00000000000
--- a/srcpkgs/pyside-tools/INSTALL.msg
+++ /dev/null
@@ -1 +0,0 @@
-pyside-tools is no longer provided by Void Linux, and will be fully removed from the repos on 2019-10-30
diff --git a/srcpkgs/pyside-tools/template b/srcpkgs/pyside-tools/template
deleted file mode 100644
index 27cfc18eea4..00000000000
--- a/srcpkgs/pyside-tools/template
+++ /dev/null
@@ -1,9 +0,0 @@
-# Template file for 'pyside-tools'
-pkgname=pyside-tools
-version=0.2.15
-revision=2
-archs=noarch
-build_style=meta
-short_desc="LGPL-licensed Python2 bindings for the Qt4 toolkit (removed package)"
-license="BSD-2-Clause"
-homepage="https://wiki.qt.io/"

From 2ca617a90d4126da89b95c578044373cf32960eb Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:22:03 +0200
Subject: [PATCH 866/871] shiboken: remove, obsolete.

---
 srcpkgs/shiboken/patches/python3.6.patch |  11 ---
 srcpkgs/shiboken/template                | 110 -----------------------
 2 files changed, 121 deletions(-)
 delete mode 100644 srcpkgs/shiboken/patches/python3.6.patch
 delete mode 100644 srcpkgs/shiboken/template

diff --git a/srcpkgs/shiboken/patches/python3.6.patch b/srcpkgs/shiboken/patches/python3.6.patch
deleted file mode 100644
index 7145fb4308b..00000000000
--- a/srcpkgs/shiboken/patches/python3.6.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- cmake/Modules/FindPython3Libs.cmake.orig
-+++ cmake/Modules/FindPython3Libs.cmake
-@@ -27,7 +27,7 @@
- # Search for the python framework on Apple.
- # CMAKE_FIND_FRAMEWORKS(Python)
- 
--FOREACH(_CURRENT_VERSION 3.4 3.3 3.2 3.1 3.0)
-+FOREACH(_CURRENT_VERSION 3.6 3.5 3.4 3.3 3.2 3.1 3.0)
-   IF(_CURRENT_VERSION GREATER 3.1)
-       SET(_32FLAGS "m" "u" "mu" "dm" "du" "dmu" "")
-   ELSE()
diff --git a/srcpkgs/shiboken/template b/srcpkgs/shiboken/template
deleted file mode 100644
index 34174be7535..00000000000
--- a/srcpkgs/shiboken/template
+++ /dev/null
@@ -1,110 +0,0 @@
-# Template file for 'shiboken'
-pkgname=shiboken
-version=1.2.2
-revision=6
-wrksrc="shiboken-${version}"
-hostmakedepends="cmake"
-makedepends="python-devel python3-devel qt-devel libxml2-devel libxslt-devel"
-short_desc="CPython bindings generator for C++ libraries"
-maintainer="Enno Boland <gottox@voidlinux.org>"
-homepage="http://www.pyside.org"
-license="LGPL-2.1"
-distfiles="https://download.qt.io/official_releases/pyside/shiboken-${version}.tar.bz2"
-checksum=7625bbcf1fe313fd910c6b8c9cf49ac5495499f9d00867115a2f1f2a69fce5c4
-
-nocross="https://travis-ci.org/voidlinux/void-packages/jobs/269193001#L906"
-
-pre_build() {
-	# Fix inconsistent naming of libshiboken.so and ShibokenConfig.cmake
-	sed -i "/get_config_var('SOABI')/d" cmake/Modules/FindPython3InterpWithDebug.cmake
-}
-do_build() {
-	local args= configure_args="
-		-DCMAKE_INSTALL_PREFIX=/usr \
-		-DCMAKE_BUILD_TYPE=Release \
-		-DBUILD_TESTS=OFF"
-
-	for pyver in $py2_ver $py3_ver; do
-		args=
-		if [ "$pyver" = "$py2_ver" ]; then
-			args="-DPYTHON_SUFFIX=-python$py2_ver"
-		else
-			args="-DUSE_PYTHON3=yes"
-		fi
-
-		[ ! -d build-${pyver} ] && mkdir build-${pyver}
-		pushd build-${pyver}
-		cmake .. ${configure_args} ${args}
-		make ${makejobs}
-		popd
-	done
-}
-do_install() {
-	for pyver in $py2_ver $py3_ver; do
-		make -C build-${pyver} DESTDIR=${DESTDIR} install
-	done
-}
-post_install() {
-	# Fix conflict between .pc files
-	rm -f ${DESTDIR}/usr/lib/pkgconfig/*
-	for pyver in $py2_ver $py3_ver; do
-		vinstall build-${pyver}/data/shiboken.pc 644 \
-			usr/lib/pkgconfig shiboken-python${pyver}.pc
-	done
-}
-
-libshiboken-common-devel_package() {
-	depends="${sourcepkg}-${version}_${revision}"
-	short_desc+=" - common development files"
-	pkg_install() {
-		vmove usr/include
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig.cmake
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfigVersion.cmake
-	}
-}
-libshiboken-python-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python-${version}_${revision}"
-	short_desc="Python2 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py2_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py2_ver}.pc
-		vmove usr/lib/libshiboken-python${py2_ver}.so
-	}
-}
-libshiboken-python_package() {
-	short_desc="Python2 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py2_ver}.so.${version}
-	}
-}
-python-shiboken_package() {
-	short_desc="Python2 shiboken bindings"
-	pkg_install() {
-		vmove ${py2_sitelib}/shiboken.so
-	}
-}
-libshiboken-python3-devel_package() {
-	depends="libshiboken-common-devel-${version}_${revision}
-	 libshiboken-python3-${version}_${revision}"
-	short_desc="Python3 shiboken bindings - shared library (development files)"
-	pkg_install() {
-		vmove usr/lib/cmake/Shiboken-${version}/ShibokenConfig-python${py3_ver}.cmake
-		vmove usr/lib/pkgconfig/shiboken-python${py3_ver}.pc
-		vmove usr/lib/libshiboken-python${py3_ver}.so
-	}
-}
-libshiboken-python3_package() {
-	short_desc="Python3 shiboken bindings - shared library"
-	pkg_install() {
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version%.*}
-		vmove usr/lib/libshiboken-python${py3_ver}.so.${version}
-	}
-}
-python3-shiboken_package() {
-	short_desc="Python3 shiboken bindings"
-	pkg_install() {
-		vmove ${py3_sitelib}/shiboken.so
-	}
-}

From 598f8573570b7320bc4e11d88ae21deee0f95ac9 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 18:34:00 +0200
Subject: [PATCH 867/871] boost: rebuild for Python 3.8.

Also ensure bjam is called with the same parameters, to avoid
a full rebuild with -j1 in do_install.
---
 common/shlibs          |  2 +-
 srcpkgs/boost/template | 13 +++++++------
 2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/common/shlibs b/common/shlibs
index c8e21637ac7..a59fff7c205 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -683,7 +683,7 @@ libboost_stacktrace_noop.so.1.69.0 libboost_stacktrace_noop1.69-1.69.0_1<1.70.0
 libboost_stacktrace_addr2line.so.1.69.0 libboost_stacktrace_addr2line1.69-1.69.0_1<1.70.0
 libboost_stacktrace_basic.so.1.69.0 libboost_stacktrace_basic1.69-1.69.0_1<1.70.0
 libboost_python27.so.1.69.0 boost-python1.69-1.69.0_1<1.70.0
-libboost_python36.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
+libboost_python38.so.1.69.0 boost-python3-1.69-1.69.0_1<1.70.0
 libexempi.so.8 exempi-2.5.0_1
 libatasmart.so.4 libatasmart-0.17_1
 libsgutils2.so.2 libsgutils-1.42_1
diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 1fb0e8ed519..b516b348b14 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -1,7 +1,7 @@
 # Template file for 'boost'
 pkgname=boost
 version=1.69.0
-revision=6
+revision=7
 wrksrc="${pkgname}_${version//\./_}"
 hostmakedepends="bzip2-devel icu-devel python-devel python3-devel"
 makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel"
@@ -60,9 +60,9 @@ do_build() {
 	using python : ${py3_ver} : ${XBPS_CROSS_BASE}/usr/bin/python3 : ${XBPS_CROSS_BASE}${py3_inc} : ${XBPS_CROSS_BASE}${py3_lib} ;
 
 	__EOF
-	./bjam ${makejobs} \
+	./bjam ${makejobs} --prefix=${DESTDIR}/usr \
 		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam --debug-building \
+		--user-config=${wrksrc}/user-config.jam \
 		python=2.7,${py3_ver}
 }
 do_install() {
@@ -72,9 +72,10 @@ do_install() {
 	done
 
 	# Install headers/libs
-	./bjam --prefix=${DESTDIR}/usr abi=${_abi} architecture=${_arch} \
-		--user-config=${wrksrc}/user-config.jam python=2.7,${py3_ver} install
-
+	./bjam --prefix=${DESTDIR}/usr \
+		--toolset=${_toolset} abi=${_abi} architecture=${_arch} \
+		--user-config=${wrksrc}/user-config.jam \
+		python=2.7,${py3_ver} install
 	# Install Boost.Build stuff.
 	vmkdir usr/share/boost-build
 	cd ${wrksrc}/tools/build && cp -a . ${DESTDIR}/usr/share/boost-build

From 3b8ca23d5997c7f71b7cc3546c3a4e4d36629e88 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 19:40:03 +0200
Subject: [PATCH 868/871] libpeas: update to 1.24.0.

---
 srcpkgs/libpeas/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template
index d4dcf8b5941..1ff2598c527 100644
--- a/srcpkgs/libpeas/template
+++ b/srcpkgs/libpeas/template
@@ -1,8 +1,8 @@
 # Template file for 'libpeas'
 pkgname=libpeas
-version=1.22.0
-revision=6
-build_style=gnu-configure
+version=1.24.0
+revision=1
+build_style=meson
 build_helper="gir"
 hostmakedepends="pkg-config intltool glib-devel python3 lua51"
 makedepends="vala-devel gtk+3-devel python3-gobject-devel
@@ -13,7 +13,7 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://wiki.gnome.org/Projects/Libpeas"
 distfiles="${GNOME_SITE}/${pkgname}/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=5b2fc0f53962b25bca131a5ec0139e6fef8e254481b6e777975f7a1d2702a962
+checksum=0b9a00138c129a663de3eef5569b00ace03ce31d345f7af783768e9f35c8e6f9
 
 pre_build() {
 	if [ "$CROSS_BUILD" ]; then
@@ -35,7 +35,6 @@ libpeas-devel_package() {
 		vmove usr/lib/pkgconfig
 		vmove "usr/lib/*.so"
 		vmove usr/share/gir-1.0
-		vmove usr/share/gtk-doc
 		vmove usr/share/glade
 	}
 }

From 301503cbad2fba315ae447a3d227330f3e3ca8e1 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Sat, 19 Oct 2019 20:33:53 +0200
Subject: [PATCH 869/871] scudcloud: upstream dead.

---
 srcpkgs/scudcloud/template | 21 ---------------------
 1 file changed, 21 deletions(-)
 delete mode 100644 srcpkgs/scudcloud/template

diff --git a/srcpkgs/scudcloud/template b/srcpkgs/scudcloud/template
deleted file mode 100644
index 1ab2618066e..00000000000
--- a/srcpkgs/scudcloud/template
+++ /dev/null
@@ -1,21 +0,0 @@
-# Template file for 'scudcloud'
-pkgname=scudcloud
-version=1.65
-revision=2
-build_style=python3-module
-pycompile_module="scudcloud"
-hostmakedepends="python3-setuptools"
-makedepends="python3-setuptools python-PyQt5 python-dbus python3-PyQt5-dbus"
-depends="python3-setuptools python-PyQt5 python3-PyQt5-dbus
- python3-PyQt5-webkit xdg-utils"
-short_desc="Non official desktop client app for Slack"
-archs=noarch
-maintainer="Gurpreet Singh <gurpreet@mailfence.com>"
-license="MIT"
-homepage="https://launchpad.net/~rael-gc/+archive/ubuntu/scudcloud"
-distfiles="https://github.com/raelgc/${pkgname}/archive/v${version}.tar.gz"
-checksum=1b5420a868a37e181655e9799a3d1fcbbc0b0112349c44ac3d7936b626334791
-
-post_install() {
-	vlicense LICENSE
-}

From 6009802248d69a8d92f41d5c3da7077a42c2330b Mon Sep 17 00:00:00 2001
From: John <johnz@posteo.net>
Date: Tue, 30 Jul 2019 21:26:02 +0200
Subject: [PATCH 870/871] blender: update to 2.80.

---
 srcpkgs/blender/patches/D6038.diff            |  49 ++++++++
 .../blender/patches/blender-2.78a-musl.patch  |  49 ++++----
 .../collada-1.6.68_DocumentImporter.cpp.patch |  14 ---
 .../collada-1.6.68_DocumentImporter.h.patch   |  11 --
 srcpkgs/blender/patches/ffmpeg4.patch         | 116 ------------------
 srcpkgs/blender/patches/gcc9-elbeem.patch     |  31 -----
 srcpkgs/blender/patches/tree_hpp.patch        |  11 --
 srcpkgs/blender/patches/util_sseb.patch       |  11 --
 srcpkgs/blender/template                      |  15 ++-
 9 files changed, 84 insertions(+), 223 deletions(-)
 create mode 100644 srcpkgs/blender/patches/D6038.diff
 delete mode 100644 srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch
 delete mode 100644 srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch
 delete mode 100644 srcpkgs/blender/patches/ffmpeg4.patch
 delete mode 100644 srcpkgs/blender/patches/gcc9-elbeem.patch
 delete mode 100644 srcpkgs/blender/patches/tree_hpp.patch
 delete mode 100644 srcpkgs/blender/patches/util_sseb.patch

diff --git a/srcpkgs/blender/patches/D6038.diff b/srcpkgs/blender/patches/D6038.diff
new file mode 100644
index 00000000000..c26934e3447
--- /dev/null
+++ b/srcpkgs/blender/patches/D6038.diff
@@ -0,0 +1,49 @@
+Index: blender-2.80_patched/source/blender/python/generic/py_capi_utils.c
+===================================================================
+--- blender-2.80_patched/source/blender/python/generic/py_capi_utils.c
++++ blender-2.80_patched/source/blender/python/generic/py_capi_utils.c
+@@ -717,9 +717,11 @@
+  ****************************************************************************/
+ PyObject *PyC_DefaultNameSpace(const char *filename)
+ {
+-  PyInterpreterState *interp = PyThreadState_GET()->interp;
++  PyObject *modules = PyImport_GetModuleDict();
++  PyObject *builtins = PyDict_GetItemString(modules, "builtins");
++
+   PyObject *mod_main = PyModule_New("__main__");
+-  PyDict_SetItemString(interp->modules, "__main__", mod_main);
++  PyDict_SetItemString(modules, "__main__", mod_main);
+   Py_DECREF(mod_main); /* sys.modules owns now */
+   PyModule_AddStringConstant(mod_main, "__name__", "__main__");
+   if (filename) {
+@@ -727,8 +729,8 @@
+      * note: this wont map to a real file when executing text-blocks and buttons. */
+     PyModule_AddObject(mod_main, "__file__", PyC_UnicodeFromByte(filename));
+   }
+-  PyModule_AddObject(mod_main, "__builtins__", interp->builtins);
+-  Py_INCREF(interp->builtins); /* AddObject steals a reference */
++  PyModule_AddObject(mod_main, "__builtins__", builtins);
++  Py_INCREF(builtins); /* AddObject steals a reference */
+   return PyModule_GetDict(mod_main);
+ }
+ 
+@@ -755,15 +757,15 @@
+ /* restore MUST be called after this */
+ void PyC_MainModule_Backup(PyObject **main_mod)
+ {
+-  PyInterpreterState *interp = PyThreadState_GET()->interp;
+-  *main_mod = PyDict_GetItemString(interp->modules, "__main__");
++  PyObject *modules = PyImport_GetModuleDict();
++  *main_mod = PyDict_GetItemString(modules, "__main__");
+   Py_XINCREF(*main_mod); /* don't free */
+ }
+ 
+ void PyC_MainModule_Restore(PyObject *main_mod)
+ {
+-  PyInterpreterState *interp = PyThreadState_GET()->interp;
+-  PyDict_SetItemString(interp->modules, "__main__", main_mod);
++  PyObject *modules = PyImport_GetModuleDict();
++  PyDict_SetItemString(modules, "__main__", main_mod);
+   Py_XDECREF(main_mod);
+ }
+ 
diff --git a/srcpkgs/blender/patches/blender-2.78a-musl.patch b/srcpkgs/blender/patches/blender-2.78a-musl.patch
index 1ffd09cd57d..bddae1f8d3c 100644
--- a/srcpkgs/blender/patches/blender-2.78a-musl.patch
+++ b/srcpkgs/blender/patches/blender-2.78a-musl.patch
@@ -20,30 +20,9 @@ diff -ru blender-2.78.orig/CMakeLists.txt blender-2.78a/CMakeLists.txt
  elseif(WIN32)
  	set(_init_JACK                           OFF)
  elseif(APPLE)
-diff -ru blender-2.78.orig/intern/guardedalloc/intern/mallocn_intern.h blender-2.78a/intern/guardedalloc/intern/mallocn_intern.h
---- blender-2.78.orig/intern/guardedalloc/intern/mallocn_intern.h	2016-09-28 09:26:55.000000000 +0000
-+++ blender-2.78a/intern/guardedalloc/intern/mallocn_intern.h	2017-02-07 14:44:35.213040733 +0000
-@@ -52,7 +52,7 @@
- #undef HAVE_MALLOC_STATS
- #define USE_MALLOC_USABLE_SIZE  /* internal, when we have malloc_usable_size() */
- 
--#if defined(__linux__) || (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || defined(__GLIBC__)
-+#if (defined(__linux__) && defined(HAVE_EXECINFO_H)) || (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || defined(__GLIBC__)
- #  include <malloc.h>
- #  define HAVE_MALLOC_STATS
- #elif defined(__FreeBSD__)
 diff -ru blender-2.78.orig/source/blender/blenlib/intern/system.c blender-2.78a/source/blender/blenlib/intern/system.c
 --- blender-2.78.orig/source/blender/blenlib/intern/system.c	2016-10-25 09:59:23.000000000 +0000
 +++ blender-2.78a/source/blender/blenlib/intern/system.c	2017-02-07 14:44:35.213040733 +0000
-@@ -31,7 +31,7 @@
- #include "MEM_guardedalloc.h"
- 
- /* for backtrace */
--#if defined(__linux__) || defined(__APPLE__)
-+#if (defined(__linux__) && defined(HAVE_EXECINFO_H)) || defined(__APPLE__)
- #  include <execinfo.h>
- #elif defined(WIN32)
- #  include <windows.h>
 @@ -77,7 +77,7 @@
  {
  	/* ------------- */
@@ -65,3 +44,31 @@ diff -ru blender-2.78.orig/source/creator/creator_signals.c blender-2.78a/source
  	feenableexcept(FE_DIVBYZERO | FE_INVALID | FE_OVERFLOW);
  # endif /* defined(__linux__) && defined(__GNUC__) */
  # if defined(OSX_SSE_FPE)
+--- a/source/blender/blenlib/intern/system.c	2019-07-30 21:05:30.702224608 +0200
++++ -	2019-07-30 21:13:21.535328709 +0200
+@@ -38,10 +38,13 @@
+ #  include <dbghelp.h>
+ #  pragma warning(pop)
+ #else
+-#  include <execinfo.h>
+ #  include <unistd.h>
+ #endif
+ 
++#if (defined(__linux__) && defined(HAVE_EXECINFO_H)) || defined(__APPLE__)
++#  include <execinfo.h>
++#endif
++
+ int BLI_cpu_support_sse2(void)
+ {
+ #if defined(__x86_64__) || defined(_M_X64)
+--- a/intern/guardedalloc/intern/mallocn_intern.h	2019-07-24 09:41:39.000000000 +0200
++++ -	2019-10-20 00:03:13.450031866 +0200
+@@ -40,7 +40,7 @@
+ #undef HAVE_MALLOC_STATS
+ #define USE_MALLOC_USABLE_SIZE /* internal, when we have malloc_usable_size() */
+ 
+-#if defined(__linux__) || (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || \
++#if (defined(__FreeBSD_kernel__) && !defined(__FreeBSD__)) || \
+     defined(__GLIBC__)
+ #  include <malloc.h>
+ #  define HAVE_MALLOC_STATS
diff --git a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch b/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch
deleted file mode 100644
index e181a004379..00000000000
--- a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.cpp.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/source/blender/collada/DocumentImporter.cpp
-+++ b/source/blender/collada/DocumentImporter.cpp
-@@ -1340,6 +1340,11 @@ bool DocumentImporter::writeAnimationLis
- 	return anim_importer.write_animation_list(animationList);
- }
- 
-+bool DocumentImporter::writeAnimationClip(const COLLADAFW::AnimationClip *AnimationClip)
-+{
-+	return true;
-+}
-+
- /** When this method is called, the writer must write the skin controller data.
-  * \return The writer should return true, if writing succeeded, false otherwise.*/
- bool DocumentImporter::writeSkinControllerData(const COLLADAFW::SkinControllerData *skin)
diff --git a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch b/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch
deleted file mode 100644
index af0d2b4dded..00000000000
--- a/srcpkgs/blender/patches/collada-1.6.68_DocumentImporter.h.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/source/blender/collada/DocumentImporter.h.orig	2018-12-03 07:38:12 UTC
-+++ b/source/blender/collada/DocumentImporter.h
-@@ -107,6 +107,8 @@ public:
- 	bool writeAnimation(const COLLADAFW::Animation*);
- 
- 	bool writeAnimationList(const COLLADAFW::AnimationList*);
-+	
-+	bool writeAnimationClip( const COLLADAFW::AnimationClip* );
- 
- 	bool writeGeometry(const COLLADAFW::Geometry*);
- 
diff --git a/srcpkgs/blender/patches/ffmpeg4.patch b/srcpkgs/blender/patches/ffmpeg4.patch
deleted file mode 100644
index 6b29e58f273..00000000000
--- a/srcpkgs/blender/patches/ffmpeg4.patch
+++ /dev/null
@@ -1,116 +0,0 @@
-source: https://git.archlinux.org/svntogit/community.git/plain/trunk/ffmpeg4.0.patch?h=packages/blender
-
-diff --git a/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp b/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp
-index e9eea195208..84aea330313 100644
---- a/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp
-+++ b/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp
-@@ -264,9 +264,9 @@ AUD_FFMPEGReader::AUD_FFMPEGReader(boost::shared_ptr<AUD_Buffer> buffer) :
- 		m_membuffer(buffer),
- 		m_membufferpos(0)
- {
--	m_membuf = reinterpret_cast<data_t*>(av_malloc(FF_MIN_BUFFER_SIZE + FF_INPUT_BUFFER_PADDING_SIZE));
-+	m_membuf = reinterpret_cast<data_t*>(av_malloc(AV_INPUT_BUFFER_MIN_SIZE + AV_INPUT_BUFFER_PADDING_SIZE));
- 
--	m_aviocontext = avio_alloc_context(m_membuf, FF_MIN_BUFFER_SIZE, 0, this,
-+	m_aviocontext = avio_alloc_context(m_membuf, AV_INPUT_BUFFER_MIN_SIZE, 0, this,
- 									   read_packet, NULL, seek_packet);
- 
- 	if(!m_aviocontext)
-diff --git a/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp b/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
-index 3f95ac7a4da..2c2f0916406 100644
---- a/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
-+++ b/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
-@@ -163,7 +163,7 @@ AUD_FFMPEGWriter::AUD_FFMPEGWriter(std::string filename, AUD_DeviceSpecs specs,
- 		try
- 		{
- 			if(m_formatCtx->oformat->flags & AVFMT_GLOBALHEADER)
--				m_codecCtx->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+				m_codecCtx->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 
- 			AVCodec* codec = avcodec_find_encoder(m_codecCtx->codec_id);
- 			if(!codec)
-@@ -185,11 +185,11 @@ AUD_FFMPEGWriter::AUD_FFMPEGWriter(std::string filename, AUD_DeviceSpecs specs,
- 			if(avcodec_open2(m_codecCtx, codec, NULL))
- 				AUD_THROW(AUD_ERROR_FFMPEG, codec_error);
- 
--			m_output_buffer.resize(FF_MIN_BUFFER_SIZE);
-+			m_output_buffer.resize(AV_INPUT_BUFFER_MIN_SIZE);
- 			int samplesize = AUD_MAX(AUD_SAMPLE_SIZE(m_specs), AUD_DEVICE_SAMPLE_SIZE(m_specs));
- 
- 			if(m_codecCtx->frame_size <= 1) {
--				m_input_size = FF_MIN_BUFFER_SIZE * 8 / m_codecCtx->bits_per_coded_sample / m_codecCtx->channels;
-+				m_input_size = AV_INPUT_BUFFER_MIN_SIZE * 8 / m_codecCtx->bits_per_coded_sample / m_codecCtx->channels;
- 				m_input_buffer.resize(m_input_size * samplesize);
- 			}
- 			else
-diff --git a/source/blender/blenkernel/intern/writeffmpeg.c b/source/blender/blenkernel/intern/writeffmpeg.c
-index d7fcd896e11..9e82df17dce 100644
---- a/source/blender/blenkernel/intern/writeffmpeg.c
-+++ b/source/blender/blenkernel/intern/writeffmpeg.c
-@@ -619,8 +619,6 @@ static AVStream *alloc_video_stream(FFMpegContext *context, RenderData *rd, int
- 	c->rc_buffer_aggressivity = 1.0;
- #endif
- 
--	c->me_method = ME_EPZS;
--	
- 	codec = avcodec_find_encoder(c->codec_id);
- 	if (!codec)
- 		return NULL;
-@@ -682,14 +680,14 @@ static AVStream *alloc_video_stream(FFMpegContext *context, RenderData *rd, int
- 	    )
- 	{
- 		PRINT("Using global header\n");
--		c->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+		c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 	}
- 	
- 	/* Determine whether we are encoding interlaced material or not */
- 	if (rd->mode & R_FIELDS) {
- 		PRINT("Encoding interlaced video\n");
--		c->flags |= CODEC_FLAG_INTERLACED_DCT;
--		c->flags |= CODEC_FLAG_INTERLACED_ME;
-+		c->flags |= AV_CODEC_FLAG_INTERLACED_DCT;
-+		c->flags |= AV_CODEC_FLAG_INTERLACED_ME;
- 	}
- 
- 	/* xasp & yasp got float lately... */
-@@ -779,7 +777,7 @@ static AVStream *alloc_audio_stream(FFMpegContext *context, RenderData *rd, int
- 	}
- 
- 	if (of->oformat->flags & AVFMT_GLOBALHEADER) {
--		c->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+		c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 	}
- 
- 	set_ffmpeg_properties(rd, c, "audio", &opts);
-@@ -798,14 +796,14 @@ static AVStream *alloc_audio_stream(FFMpegContext *context, RenderData *rd, int
- 	st->codec->time_base.den = st->codec->sample_rate;
- 
- #ifndef FFMPEG_HAVE_ENCODE_AUDIO2
--	context->audio_outbuf_size = FF_MIN_BUFFER_SIZE;
-+	context->audio_outbuf_size = AV_INPUT_BUFFER_MIN_SIZE;
- #endif
- 
- 	if (c->frame_size == 0)
- 		// used to be if ((c->codec_id >= CODEC_ID_PCM_S16LE) && (c->codec_id <= CODEC_ID_PCM_DVD))
- 		// not sure if that is needed anymore, so let's try out if there are any
- 		// complaints regarding some ffmpeg versions users might have
--		context->audio_input_samples = FF_MIN_BUFFER_SIZE * 8 / c->bits_per_coded_sample / c->channels;
-+		context->audio_input_samples = AV_INPUT_BUFFER_MIN_SIZE * 8 / c->bits_per_coded_sample / c->channels;
- 	else {
- 		context->audio_input_samples = c->frame_size;
- #ifndef FFMPEG_HAVE_ENCODE_AUDIO2
-diff --git a/source/blender/imbuf/intern/indexer.c b/source/blender/imbuf/intern/indexer.c
-index eaf4dfd84b4..9c2f42feb52 100644
---- a/source/blender/imbuf/intern/indexer.c
-+++ b/source/blender/imbuf/intern/indexer.c
-@@ -537,7 +537,7 @@ static struct proxy_output_ctx *alloc_proxy_output_ffmpeg(
- 	av_opt_set_int(rv->c, "qmax", ffmpeg_quality, 0);
- 
- 	if (rv->of->flags & AVFMT_GLOBALHEADER) {
--		rv->c->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+		rv->c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- 	}
- 
- 	if (avio_open(&rv->of->pb, fname, AVIO_FLAG_WRITE) < 0) {
-
diff --git a/srcpkgs/blender/patches/gcc9-elbeem.patch b/srcpkgs/blender/patches/gcc9-elbeem.patch
deleted file mode 100644
index 26c58e7d988..00000000000
--- a/srcpkgs/blender/patches/gcc9-elbeem.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-https://bugs.gentoo.org/685922
-
---- a/intern/elbeem/intern/solver_main.cpp
-+++ b/intern/elbeem/intern/solver_main.cpp
-@@ -381,7 +381,7 @@ LbmFsgrSolver::mainLoop(const int lev)
- 	GRID_REGION_INIT();
- #if PARALLEL==1
- 	const int gDebugLevel = ::gDebugLevel;
--#pragma omp parallel default(none) num_threads(mNumOMPThreads) \
-+#pragma omp parallel default(none) firstprivate(gDebugLevel,iend,lev,cutConst) num_threads(mNumOMPThreads) \
-   reduction(+: \
- 	  calcCurrentMass,calcCurrentVolume, \
- 		calcCellsFilled,calcCellsEmptied, \
-@@ -1126,7 +1126,7 @@ LbmFsgrSolver::preinitGrids()
- 		GRID_REGION_INIT();
- #if PARALLEL==1
- 	const int gDebugLevel = ::gDebugLevel;
--#pragma omp parallel default(none) num_threads(mNumOMPThreads) \
-+#pragma omp parallel default(none) firstprivate(gDebugLevel,iend,lev) num_threads(mNumOMPThreads) \
-   reduction(+: \
- 	  calcCurrentMass,calcCurrentVolume, \
- 		calcCellsFilled,calcCellsEmptied, \
-@@ -1164,7 +1164,7 @@ LbmFsgrSolver::standingFluidPreinit()
- 	GRID_REGION_INIT();
- #if PARALLEL==1
- 	const int gDebugLevel = ::gDebugLevel;
--#pragma omp parallel default(none) num_threads(mNumOMPThreads) \
-+#pragma omp parallel default(none) firstprivate(gDebugLevel,iend,lev) num_threads(mNumOMPThreads) \
-   reduction(+: \
- 	  calcCurrentMass,calcCurrentVolume, \
- 		calcCellsFilled,calcCellsEmptied, \
diff --git a/srcpkgs/blender/patches/tree_hpp.patch b/srcpkgs/blender/patches/tree_hpp.patch
deleted file mode 100644
index 7c9fbca1821..00000000000
--- a/srcpkgs/blender/patches/tree_hpp.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/intern/itasc/kdl/tree.hpp	2018-03-23 16:22:25.000000000 +0100
-+++ b/intern/itasc/kdl/tree.hpp	2018-08-13 19:31:32.101185313 +0200
-@@ -34,7 +34,7 @@
-     //Forward declaration
-     class TreeElement;
-     // Eigen allocator is needed for alignment of Eigen data types
--    typedef std::map<std::string,TreeElement, std::less<std::string>, Eigen::aligned_allocator<std::pair<std::string, TreeElement> > > SegmentMap;
-+    typedef std::map<std::string,TreeElement, std::less<std::string>, Eigen::aligned_allocator<std::pair<const std::string, TreeElement> > > SegmentMap;
- 
-     class TreeElement
-     {
diff --git a/srcpkgs/blender/patches/util_sseb.patch b/srcpkgs/blender/patches/util_sseb.patch
deleted file mode 100644
index 85396282d81..00000000000
--- a/srcpkgs/blender/patches/util_sseb.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/intern/cycles/util/util_sseb.h
-+++ b/intern/cycles/util/util_sseb.h
-@@ -116,7 +116,7 @@ __forceinline const sseb unpacklo( const sseb& a, const sseb& b ) { return _mm_u
- __forceinline const sseb unpackhi( const sseb& a, const sseb& b ) { return _mm_unpackhi_ps(a, b); }
- 
- template<size_t i0, size_t i1, size_t i2, size_t i3> __forceinline const sseb shuffle( const sseb& a ) {
--	return _mm_shuffle_epi32(a, _MM_SHUFFLE(i3, i2, i1, i0));
-+	return _mm_castsi128_ps(_mm_shuffle_epi32(a, _MM_SHUFFLE(i3, i2, i1, i0)));
- }
- 
- template<> __forceinline const sseb shuffle<0, 1, 0, 1>( const sseb& a ) {
diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template
index 47cb8f8ad13..2beb7f96dd8 100644
--- a/srcpkgs/blender/template
+++ b/srcpkgs/blender/template
@@ -1,21 +1,22 @@
 # Template file for 'blender'
 pkgname=blender
-version=2.79b
-revision=10
+version=2.80
+revision=1
 build_style="cmake"
 makedepends="
  libgomp-devel libpng-devel tiff-devel python3-devel glu-devel
  glew-devel freetype-devel jack-devel libopenal-devel libsndfile-devel
  libsamplerate-devel ffmpeg-devel fftw-devel boost-devel pcre-devel llvm
  libopenexr-devel libopenjpeg-devel libXi-devel openimageio-devel
- opencolorio-devel opencollada-devel"
+ opencolorio-devel opencollada-devel python3-numpy"
 depends="desktop-file-utils hicolor-icon-theme"
 short_desc="3D graphics creation suite"
 maintainer="Enno Boland <gottox@voidlinux.org>"
-license="GPL-2"
+license="GPL-2.0-or-later"
 homepage="http://www.blender.org"
-distfiles="http://download.blender.org/source/${pkgname}-${version}.tar.gz"
-checksum=4c944c304a49e68ac687ea06f5758204def049b66dc211e1cffa1857716393bc
+#distfiles="http://download.blender.org/source/${pkgname}-${version}.tar.gz"
+distfiles="https://ftp.halifax.rwth-aachen.de/blender/source/blender-${version}.tar.gz"
+checksum=cd9d7e505c1f6e63a4f72366ed04d446859977eeb34cde21283aaea6a304a5c0
 patch_args="-Np1"
 
 pycompile_version="$py3_ver"
@@ -25,9 +26,7 @@ archs="x86_64* i686* ppc64*"
 configure_args="
 -DWITH_INSTALL_PORTABLE=OFF
 -DWITH_PYTHON_INSTALL=OFF
--DWITH_GAMEENGINE=ON
 -DWITH_JACK=ON
--DWITH_PLAYER=ON
 -DWITH_CODEC_FFMPEG=ON
 -DWITH_CODEC_SNDFILE=ON
 -DWITH_OPENMP=ON

From a230f3d93fe90a541bf2748c0e4dd47d5d7e7649 Mon Sep 17 00:00:00 2001
From: Leah Neukirchen <leah@vuxu.org>
Date: Mon, 21 Oct 2019 14:41:53 +0200
Subject: [PATCH 871/871] attic: remove, upstream dead.

---
 srcpkgs/attic/template | 29 -----------------------------
 1 file changed, 29 deletions(-)
 delete mode 100644 srcpkgs/attic/template

diff --git a/srcpkgs/attic/template b/srcpkgs/attic/template
deleted file mode 100644
index ed454302ce4..00000000000
--- a/srcpkgs/attic/template
+++ /dev/null
@@ -1,29 +0,0 @@
-# Template file for 'attic'
-pkgname=attic
-version=0.16
-revision=15
-wrksrc="Attic-$version"
-build_style=python3-module
-hostmakedepends="python3-setuptools python3-devel libressl-devel python3-Sphinx"
-makedepends="${hostmakedepends/python3-setuptools/} acl-devel"
-depends="python3-msgpack python3-llfuse"
-pycompile_module="attic"
-short_desc="A deduplicating backup program for efficient and secure backups"
-maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
-homepage="https://attic-backup.org/"
-license="BSD"
-distfiles="${PYPI_SITE}/A/Attic/Attic-0.16.tar.gz"
-checksum=6650cd28072101c2e05941e77b93a62f91da6179785e4e4b4880916c469bba2c
-
-pre_build() {
-	if [ "$CROSS_BUILD" ]; then
-		sed -i "s|\(possible_openssl_prefixes\) =.*|\1 = ['${XBPS_CROSS_BASE}/usr']|" setup.py
-	fi
-}
-post_build() {
-	PYTHONPATH=.. make -C docs man SPHINXBUILD=sphinx-build3
-}
-post_install() {
-	vlicense LICENSE
-	vman docs/_build/man/attic-deduplicatingarchiver.1 attic.1
-}

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (22 preceding siblings ...)
  2019-11-02 18:09 ` voidlinux-github
@ 2019-11-02 18:10 ` voidlinux-github
  2019-11-02 21:09 ` voidlinux-github
                   ` (8 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-11-02 18:10 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 182 bytes --]

New comment by leahneukirchen on void-packages repository

https://github.com/void-linux/void-packages/pull/15623#issuecomment-549067803

Comment:
Ok, all fixed but kdevelop-python.

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (23 preceding siblings ...)
  2019-11-02 18:10 ` voidlinux-github
@ 2019-11-02 21:09 ` voidlinux-github
  2019-11-02 21:09 ` voidlinux-github
                   ` (7 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-11-02 21:09 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 304 bytes --]

New comment by Johnnynator on void-packages repository

https://github.com/void-linux/void-packages/pull/15623#issuecomment-549081447

Comment:
https://cgit.kde.org/kdev-python.git/patch/?id=e23fa8f15af89a8bd4bd84dd96b5fd7017457516 this should get kdevelo-python working (currently compiling it locally)

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (24 preceding siblings ...)
  2019-11-02 21:09 ` voidlinux-github
@ 2019-11-02 21:09 ` voidlinux-github
  2019-11-02 21:12 ` voidlinux-github
                   ` (6 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-11-02 21:09 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 305 bytes --]

New comment by Johnnynator on void-packages repository

https://github.com/void-linux/void-packages/pull/15623#issuecomment-549081447

Comment:
https://cgit.kde.org/kdev-python.git/patch/?id=e23fa8f15af89a8bd4bd84dd96b5fd7017457516 this should get kdevelop-python working (currently compiling it locally)

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (25 preceding siblings ...)
  2019-11-02 21:09 ` voidlinux-github
@ 2019-11-02 21:12 ` voidlinux-github
  2019-11-02 21:36 ` voidlinux-github
                   ` (5 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-11-02 21:12 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 729 bytes --]

New comment by Johnnynator on void-packages repository

https://github.com/void-linux/void-packages/pull/15623#issuecomment-549081447

Comment:
https://cgit.kde.org/kdev-python.git/patch/?id=e23fa8f15af89a8bd4bd84dd96b5fd7017457516 this should get kdevelop-python working (currently compiling it locally)
```
kdevelop-python-5.4.2_2: configuring ...
Byte-compiling python code in usr/share/kdevpythonsupport...
*** Error compiling 'usr/share/kdevpythonsupport/documentation_files/PyKDE4/kdecore.py'...
  File "usr/share/kdevpythonsupport/documentation_files/PyKDE4/kdecore.py", line 315
    def setExecutesAsync(self, async):
                               ^
SyntaxError: invalid syntax
```

Nope this is not working.

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (26 preceding siblings ...)
  2019-11-02 21:12 ` voidlinux-github
@ 2019-11-02 21:36 ` voidlinux-github
  2019-11-02 22:07 ` voidlinux-github
                   ` (4 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-11-02 21:36 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 777 bytes --]

New comment by Johnnynator on void-packages repository

https://github.com/void-linux/void-packages/pull/15623#issuecomment-549081447

Comment:
https://cgit.kde.org/kdev-python.git/patch/?id=e23fa8f15af89a8bd4bd84dd96b5fd7017457516 this should get kdevelop-python working (currently compiling it locally)
```
kdevelop-python-5.4.2_2: configuring ...
Byte-compiling python code in usr/share/kdevpythonsupport...
*** Error compiling 'usr/share/kdevpythonsupport/documentation_files/PyKDE4/kdecore.py'...
  File "usr/share/kdevpythonsupport/documentation_files/PyKDE4/kdecore.py", line 315
    def setExecutesAsync(self, async):
                               ^
SyntaxError: invalid syntax
```

Nope this is not working. I noted it down in the related bugzilla ticket.

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (27 preceding siblings ...)
  2019-11-02 21:36 ` voidlinux-github
@ 2019-11-02 22:07 ` voidlinux-github
  2019-11-02 22:23 ` voidlinux-github
                   ` (3 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-11-02 22:07 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 183 bytes --]

New comment by leahneukirchen on void-packages repository

https://github.com/void-linux/void-packages/pull/15623#issuecomment-549085536

Comment:
That didn't apply on 5.4 here even.

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (28 preceding siblings ...)
  2019-11-02 22:07 ` voidlinux-github
@ 2019-11-02 22:23 ` voidlinux-github
  2019-11-02 22:24 ` voidlinux-github
                   ` (2 subsequent siblings)
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-11-02 22:23 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 254 bytes --]

New comment by Johnnynator on void-packages repository

https://github.com/void-linux/void-packages/pull/15623#issuecomment-549086547

Comment:
> That didn't apply on 5.4 here even.

Well, it applies fine here after changing the prefixes of the patch.

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (29 preceding siblings ...)
  2019-11-02 22:23 ` voidlinux-github
@ 2019-11-02 22:24 ` voidlinux-github
  2019-11-06  1:11 ` voidlinux-github
  2019-12-30 12:44 ` [PR PATCH] [Closed]: " voidlinux-github
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-11-02 22:24 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 248 bytes --]

New comment by Johnnynator on void-packages repository

https://github.com/void-linux/void-packages/pull/15623#issuecomment-549086547

Comment:
> That didn't apply on 5.4 here even.

It applies fine here after changing the prefixes of the patch.

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (30 preceding siblings ...)
  2019-11-02 22:24 ` voidlinux-github
@ 2019-11-06  1:11 ` voidlinux-github
  2019-12-30 12:44 ` [PR PATCH] [Closed]: " voidlinux-github
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-11-06  1:11 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 393 bytes --]

New comment by obunden on void-packages repository

https://github.com/void-linux/void-packages/pull/15623#issuecomment-550095341

Comment:
I was trying to upgrade blender and noticed the python 3.7 requirement. I'm glad that python will get an update to fix it. I added a couple of comments on the blender diff btw, don't know if they are of any use. Is libreoffice the only showstopper now?

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PR PATCH] [Closed]: [WIP] Python 3.8
  2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
                   ` (31 preceding siblings ...)
  2019-11-06  1:11 ` voidlinux-github
@ 2019-12-30 12:44 ` voidlinux-github
  32 siblings, 0 replies; 34+ messages in thread
From: voidlinux-github @ 2019-12-30 12:44 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 913 bytes --]

There's a closed pull request on the void-packages repository

[WIP] Python 3.8
https://github.com/void-linux/void-packages/pull/15623

Description:
This huge PR tries to bump all packages that either shlib-require
libpython3.6m.so.1.0 or put files into /usr/lib/python3.6/site-packages.

Broken packages (on x86_64):

- [x] ~~attic~~ -> upstream dead, remove?
- [x] blender -> update to 2.80
- [x] eolie -> meson
- [x] fontforge
- [x] freecad
- [x] gst1-python -> meson
- [x] libopenshot -> gcc9 issue, but supposedly fixed? @Spencer-H 
- [x] libpeas
- [x] nagstamon
- [x] paraview
- [x] pockyt
- [x] ~~scudcloud~~
- [x] torbrowser-launcher
- [x] unknown-horizons
- [x] vapoursynth
- [x] variety
- [ ] kdevelop-python -> upstream: https://bugs.kde.org/show_bug.cgi?id=411956 wait for 5.5
- [x] krita: SHA256 mismatch
- [x] ~~shiboken~~
- [x] renderdoc

Untested:

- [ ] libreoffice


^ permalink raw reply	[flat|nested] 34+ messages in thread

end of thread, other threads:[~2019-12-30 12:44 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-19 15:16 [PR PATCH] [WIP] Python 3.8 voidlinux-github
2019-10-19 15:23 ` voidlinux-github
2019-10-19 16:55 ` [PR PATCH] [Updated] " voidlinux-github
2019-10-19 16:55 ` voidlinux-github
2019-10-19 18:43 ` voidlinux-github
2019-10-19 19:02 ` [PR PATCH] [Updated] " voidlinux-github
2019-10-19 19:02 ` voidlinux-github
2019-10-19 21:03 ` voidlinux-github
2019-10-19 21:14 ` [PR PATCH] [Updated] " voidlinux-github
2019-10-19 21:14 ` voidlinux-github
2019-10-19 21:15 ` voidlinux-github
2019-10-19 21:36 ` [PR PATCH] [Updated] " voidlinux-github
2019-10-19 21:36 ` voidlinux-github
2019-10-19 22:15 ` voidlinux-github
2019-10-20 15:23 ` [PR PATCH] [Updated] " voidlinux-github
2019-10-20 15:23 ` voidlinux-github
2019-10-21 10:49 ` voidlinux-github
2019-10-21 12:41 ` voidlinux-github
2019-10-21 12:42 ` [PR PATCH] [Updated] " voidlinux-github
2019-10-21 12:42 ` voidlinux-github
2019-11-02 15:43 ` voidlinux-github
2019-11-02 15:51 ` voidlinux-github
2019-11-02 18:09 ` [PR PATCH] [Updated] " voidlinux-github
2019-11-02 18:09 ` voidlinux-github
2019-11-02 18:10 ` voidlinux-github
2019-11-02 21:09 ` voidlinux-github
2019-11-02 21:09 ` voidlinux-github
2019-11-02 21:12 ` voidlinux-github
2019-11-02 21:36 ` voidlinux-github
2019-11-02 22:07 ` voidlinux-github
2019-11-02 22:23 ` voidlinux-github
2019-11-02 22:24 ` voidlinux-github
2019-11-06  1:11 ` voidlinux-github
2019-12-30 12:44 ` [PR PATCH] [Closed]: " voidlinux-github

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).