From eec80b45f6c86106a291bcb6fa2353f15d759cf4 Mon Sep 17 00:00:00 2001 From: ptrcnull Date: Fri, 21 Apr 2023 23:46:53 +0200 Subject: [PATCH] testing/py3-b*: split -pyc --- testing/py3-banal/APKBUILD | 3 ++- testing/py3-bandwidth-sdk/APKBUILD | 3 ++- testing/py3-banknumber/APKBUILD | 3 ++- testing/py3-barcodenumber/APKBUILD | 3 ++- testing/py3-beartype/APKBUILD | 3 ++- testing/py3-billiard/APKBUILD | 3 ++- testing/py3-bleach-allowlist/APKBUILD | 3 ++- testing/py3-blis/APKBUILD | 4 ++-- testing/py3-blockchain/APKBUILD | 3 ++- testing/py3-blockdiag/APKBUILD | 4 ++-- testing/py3-blurhash/APKBUILD | 3 ++- testing/py3-bookkeeper/APKBUILD | 3 ++- testing/py3-bottle-api/APKBUILD | 3 ++- testing/py3-bottle-redis/APKBUILD | 3 ++- testing/py3-bottle-renderer/APKBUILD | 3 ++- testing/py3-bottle-request/APKBUILD | 3 ++- testing/py3-bottle-rest/APKBUILD | 3 ++- testing/py3-bottle-session/APKBUILD | 3 ++- testing/py3-bottle-sqlalchemy/APKBUILD | 3 ++- testing/py3-bottle-sqlite/APKBUILD | 3 ++- testing/py3-bottle-websocket/APKBUILD | 3 ++- testing/py3-bottle-werkzeug/APKBUILD | 3 ++- testing/py3-bson/APKBUILD | 3 ++- testing/py3-businesstime/APKBUILD | 3 ++- 24 files changed, 48 insertions(+), 26 deletions(-) diff --git a/testing/py3-banal/APKBUILD b/testing/py3-banal/APKBUILD index 796dbb0930a..69c7d4e178e 100644 --- a/testing/py3-banal/APKBUILD +++ b/testing/py3-banal/APKBUILD @@ -2,13 +2,14 @@ pkgname=py3-banal _pkgname=banal pkgver=1.0.6 -pkgrel=1 +pkgrel=2 pkgdesc="Commons of banal micro-functions for Python." url="https://pypi.org/project/banal/" arch="noarch" license="MIT" depends="python3" makedepends="py3-setuptools" +subpackages="$pkgname-pyc" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" builddir="$srcdir/$_pkgname-$pkgver" options="!check" # no test suite available diff --git a/testing/py3-bandwidth-sdk/APKBUILD b/testing/py3-bandwidth-sdk/APKBUILD index 982e53d5733..7bf6f0ba153 100644 --- a/testing/py3-bandwidth-sdk/APKBUILD +++ b/testing/py3-bandwidth-sdk/APKBUILD @@ -1,13 +1,14 @@ # Maintainer: pkgname=py3-bandwidth-sdk pkgver=3.1.0 -pkgrel=5 +pkgrel=6 pkgdesc="python helpers for using bandwidth.com API" url="https://pypi.org/project/bandwidth-sdk/" arch="noarch" license="MIT" depends="py3-requests py3-dateutil py3-lxml py3-six" makedepends="py3-setuptools" +subpackages="$pkgname-pyc" source="bandwidth-sdk-$pkgver.tar.gz::https://github.com/Bandwidth/python-bandwidth/archive/v$pkgver.tar.gz" builddir="$srcdir/python-bandwidth-$pkgver" diff --git a/testing/py3-banknumber/APKBUILD b/testing/py3-banknumber/APKBUILD index 6e98de08a1c..b803dde6498 100644 --- a/testing/py3-banknumber/APKBUILD +++ b/testing/py3-banknumber/APKBUILD @@ -3,13 +3,14 @@ pkgname=py3-banknumber _pkgname=banknumber pkgver=2.0 -pkgrel=7 +pkgrel=8 pkgdesc="Python3 module to validate Bank codes" url="https://bitbucket.org/zikzakmedia/python-banknumber" arch="noarch" license="GPL-3.0-or-later" depends="python3" makedepends="py3-setuptools" +subpackages="$pkgname-pyc" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" builddir="$srcdir"/$_pkgname-$pkgver diff --git a/testing/py3-barcodenumber/APKBUILD b/testing/py3-barcodenumber/APKBUILD index f3f3c5a361f..b24a2eb4eca 100644 --- a/testing/py3-barcodenumber/APKBUILD +++ b/testing/py3-barcodenumber/APKBUILD @@ -3,13 +3,14 @@ pkgname=py3-barcodenumber _pkgname=barcodenumber pkgver=0.2.1 -pkgrel=7 +pkgrel=8 pkgdesc="A Python module to validate product codes" url="https://bitbucket.org/zikzakmedia/python-barcodenumber" arch="noarch" license="GPL-3.0-or-later" depends="python3" makedepends="py3-setuptools" +subpackages="$pkgname-pyc" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" builddir="$srcdir"/$_pkgname-$pkgver diff --git a/testing/py3-beartype/APKBUILD b/testing/py3-beartype/APKBUILD index f025d0472e9..138bbcb9bac 100644 --- a/testing/py3-beartype/APKBUILD +++ b/testing/py3-beartype/APKBUILD @@ -3,7 +3,7 @@ pkgname=py3-beartype _pyname=beartype pkgver=0.13.1 -pkgrel=0 +pkgrel=1 pkgdesc="Fast, pure-Python type checker" url="https://github.com/beartype/beartype" arch="noarch" @@ -11,6 +11,7 @@ license="MIT" depends="python3" makedepends="py3-setuptools" checkdepends="py3-pytest py3-numpy py3-mypy py3-docutils py3-sphinx" +subpackages="$pkgname-pyc" source=" $_pyname-$pkgver.tar.gz::https://github.com/beartype/beartype/archive/refs/tags/v$pkgver.tar.gz " diff --git a/testing/py3-billiard/APKBUILD b/testing/py3-billiard/APKBUILD index de65ca8fdfb..126becf5a89 100644 --- a/testing/py3-billiard/APKBUILD +++ b/testing/py3-billiard/APKBUILD @@ -1,13 +1,14 @@ # Maintainer: Drew DeVault pkgname=py3-billiard pkgver=3.6.4.0 -pkgrel=3 +pkgrel=4 pkgdesc="a message queue abstraction layer" url="https://pypi.org/project/billiard/" arch="noarch" license="BSD-3-Clause" makedepends="py3-setuptools" checkdepends="py3-psutil py3-pytest py3-nose py3-case" +subpackages="$pkgname-pyc" source="https://files.pythonhosted.org/packages/source/b/billiard/billiard-$pkgver.tar.gz $pkgname-py311.patch::https://github.com/celery/billiard/commit/ff8efc5d689ef048f5203593390f1ff6a052a5d5.patch " diff --git a/testing/py3-bleach-allowlist/APKBUILD b/testing/py3-bleach-allowlist/APKBUILD index 4e1621b114f..e5cb6aabcdb 100644 --- a/testing/py3-bleach-allowlist/APKBUILD +++ b/testing/py3-bleach-allowlist/APKBUILD @@ -2,13 +2,14 @@ # Maintainer: Bart Ribbers pkgname=py3-bleach-allowlist pkgver=1.0.3 -pkgrel=2 +pkgrel=3 pkgdesc="Curated list of tags and attributes for sanitizing html" url="https://github.com/yourcelf/bleach-allowlist" arch="noarch" license="BSD-2-Clause" depends="python3" makedepends="py3-setuptools" +subpackages="$pkgname-pyc" source="https://pypi.python.org/packages/source/b/bleach-allowlist/bleach-allowlist-$pkgver.tar.gz" options="!check" # No tests builddir="$srcdir/bleach-allowlist-$pkgver" diff --git a/testing/py3-blis/APKBUILD b/testing/py3-blis/APKBUILD index ec9bb579ab1..89f8ce8c7fd 100644 --- a/testing/py3-blis/APKBUILD +++ b/testing/py3-blis/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Oleg Titov pkgname=py3-blis pkgver=0.9.1 -pkgrel=1 +pkgrel=2 pkgdesc="Fast matrix-multiplication as a self-contained Python library" url="https://github.com/explosion/cython-blis" arch="x86_64 x86" @@ -10,7 +10,7 @@ license="MIT" depends="python3 py3-numpy" makedepends="python3-dev py3-setuptools cython py3-numpy-dev" checkdepends="py3-pytest py3-hypothesis" -subpackages="$pkgname-doc" +subpackages="$pkgname-doc $pkgname-pyc" source="blis-$pkgver.tar.gz::https://github.com/explosion/cython-blis/archive/v$pkgver.tar.gz" #options="!check" # Disable checks as py3-hypothesis 5.x is not supported builddir="$srcdir/cython-blis-$pkgver" diff --git a/testing/py3-blockchain/APKBUILD b/testing/py3-blockchain/APKBUILD index 246a47dd515..601dd1506b0 100644 --- a/testing/py3-blockchain/APKBUILD +++ b/testing/py3-blockchain/APKBUILD @@ -3,13 +3,14 @@ pkgname=py3-blockchain _pkgname=blockchain pkgver=1.4.4 -pkgrel=4 +pkgrel=5 pkgdesc="Blockchain API library (v1)" url="https://github.com/blockchain/api-v1-client-python" arch="noarch" license="MIT" depends="py3-future" makedepends="py3-setuptools" +subpackages="$pkgname-pyc" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" builddir="$srcdir"/$_pkgname-$pkgver diff --git a/testing/py3-blockdiag/APKBUILD b/testing/py3-blockdiag/APKBUILD index f9cd30c1318..e418d0fe0c0 100644 --- a/testing/py3-blockdiag/APKBUILD +++ b/testing/py3-blockdiag/APKBUILD @@ -3,14 +3,14 @@ pkgname=py3-blockdiag _pkgname=blockdiag pkgver=3.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="Generate block-diagram image file from spec-text file" url="http://blockdiag.com" arch="noarch" license="Apache-2.0" depends="py3-funcparserlib py3-pillow py3-webcolors" makedepends="py3-setuptools" -subpackages="$pkgname-tests" +subpackages="$pkgname-tests $pkgname-pyc" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" builddir="$srcdir"/$_pkgname-$pkgver diff --git a/testing/py3-blurhash/APKBUILD b/testing/py3-blurhash/APKBUILD index 05681f3bd45..ae190618bc1 100644 --- a/testing/py3-blurhash/APKBUILD +++ b/testing/py3-blurhash/APKBUILD @@ -4,13 +4,14 @@ pkgname=py3-blurhash #_pkgreal is used by apkbuild-pypi to find modules at PyPI _pkgreal=blurhash pkgver=1.1.4 -pkgrel=2 +pkgrel=3 pkgdesc="Pure-Python implementation of the blurhash algorithm." url="https://pypi.org/project/blurhash" arch="noarch" license="MIT" depends="python3" makedepends="py3-setuptools" +subpackages="$pkgname-pyc" source="https://files.pythonhosted.org/packages/source/${_pkgreal:0:1}/$_pkgreal/$_pkgreal-$pkgver.tar.gz" builddir="$srcdir/$_pkgreal-$pkgver" diff --git a/testing/py3-bookkeeper/APKBUILD b/testing/py3-bookkeeper/APKBUILD index 0bfe6bc8832..9523b90635d 100644 --- a/testing/py3-bookkeeper/APKBUILD +++ b/testing/py3-bookkeeper/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Alex Yam pkgname=py3-bookkeeper pkgver=4.15.3 -pkgrel=1 +pkgrel=2 pkgdesc="Python client for Apache Bookkeeper" url="https://github.com/apache/bookkeeper" arch="noarch" @@ -10,6 +10,7 @@ license="Apache-2.0" depends="python3" makedepends="py3-setuptools" options="!check" # test requires bookkeeper server +subpackages="$pkgname-pyc" source="bookkeeper-release-$pkgver.tar.gz::https://github.com/apache/bookkeeper/archive/refs/tags/release-$pkgver.tar.gz" builddir="$srcdir/bookkeeper-release-$pkgver/stream/clients/python" diff --git a/testing/py3-bottle-api/APKBUILD b/testing/py3-bottle-api/APKBUILD index 9621387c7bb..e4a736df714 100644 --- a/testing/py3-bottle-api/APKBUILD +++ b/testing/py3-bottle-api/APKBUILD @@ -3,7 +3,7 @@ pkgname=py3-bottle-api _pkgname=bottle-api pkgver=0.0.4 -pkgrel=4 +pkgrel=5 pkgdesc="Bottle JSON Web API" options="!check" # tests not present in pypi tarballs, only github which has no tags url="https://github.com/tomotaka/bottle-api" @@ -11,6 +11,7 @@ arch="noarch" license="MIT" depends="python3 py3-bottle" makedepends="py3-setuptools" +subpackages="$pkgname-pyc" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" replaces="py-bottle-api" # Backwards compat diff --git a/testing/py3-bottle-redis/APKBUILD b/testing/py3-bottle-redis/APKBUILD index 30bf9b70d27..8f997fb03db 100644 --- a/testing/py3-bottle-redis/APKBUILD +++ b/testing/py3-bottle-redis/APKBUILD @@ -3,7 +3,7 @@ pkgname=py3-bottle-redis _pkgname=bottle-redis pkgver=0.2.3 -pkgrel=3 +pkgrel=4 pkgdesc="Bottle redis plugin" options="!check" # No testsuite url="https://github.com/bottlepy/bottle-redis" @@ -11,6 +11,7 @@ arch="noarch" license="MIT" depends="python3 py3-bottle py3-redis" makedepends="py3-setuptools" +subpackages="$pkgname-pyc" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" builddir="$srcdir"/$_pkgname-$pkgver diff --git a/testing/py3-bottle-renderer/APKBUILD b/testing/py3-bottle-renderer/APKBUILD index af36ff03a5f..8b73e0e65a6 100644 --- a/testing/py3-bottle-renderer/APKBUILD +++ b/testing/py3-bottle-renderer/APKBUILD @@ -3,7 +3,7 @@ pkgname=py3-bottle-renderer _pkgname=bottle-renderer pkgver=0.1.1 -pkgrel=6 +pkgrel=7 pkgdesc="Bottle renderer plugin" options="!check" # No testsuite upstream url="https://pypi.org/project/bottle-renderer" @@ -11,6 +11,7 @@ arch="noarch" license="MIT" depends="python3 py3-bottle" makedepends="py3-setuptools" +subpackages="$pkgname-pyc" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" replaces="py-bottle-renderer" # Backwards compat diff --git a/testing/py3-bottle-request/APKBUILD b/testing/py3-bottle-request/APKBUILD index a8990ffb5f6..c1b18aee6c3 100644 --- a/testing/py3-bottle-request/APKBUILD +++ b/testing/py3-bottle-request/APKBUILD @@ -3,7 +3,7 @@ pkgname=py3-bottle-request _pkgname=bottle-request pkgver=0.2.0 -pkgrel=6 +pkgrel=7 pkgdesc="Bottle 'stateless' request object plugin" options="!check" # No testsuite url="https://github.com/turtlebender/bottle-request/" @@ -11,6 +11,7 @@ arch="noarch" license="MIT" depends="python3 py3-bottle" makedepends="py3-setuptools" +subpackages="$pkgname-pyc" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" builddir="$srcdir"/$_pkgname-$pkgver diff --git a/testing/py3-bottle-rest/APKBUILD b/testing/py3-bottle-rest/APKBUILD index 4fbcd5ad716..a45b1fb9643 100644 --- a/testing/py3-bottle-rest/APKBUILD +++ b/testing/py3-bottle-rest/APKBUILD @@ -3,7 +3,7 @@ pkgname=py3-bottle-rest _pkgname=bottle-rest pkgver=0.5.2 -pkgrel=4 +pkgrel=5 pkgdesc="A decorator for REST in Bottle" options="!check" # Has no github tarballs with tests url="https://pypi.org/project/bottle-rest/" @@ -11,6 +11,7 @@ arch="noarch" license="MIT" depends="python3 py3-bottle" makedepends="py3-setuptools" +subpackages="$pkgname-pyc" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" replaces="py-bottle-rest" # Backwards compat diff --git a/testing/py3-bottle-session/APKBUILD b/testing/py3-bottle-session/APKBUILD index 87e2dd6b517..6028052518e 100644 --- a/testing/py3-bottle-session/APKBUILD +++ b/testing/py3-bottle-session/APKBUILD @@ -3,7 +3,7 @@ pkgname=py3-bottle-session _pkgname=bottle-session pkgver=1.0 -pkgrel=3 +pkgrel=4 pkgdesc="Bottle session plugin" options="!check" # No testsuite on tarball url="https://bitbucket.org/devries/bottle-session" @@ -11,6 +11,7 @@ arch="noarch" license="Artistic-2.0" depends="python3 py3-bottle py3-redis" makedepends="py3-setuptools" +subpackages="$pkgname-pyc" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" replaces="py-bottle-session" # Backwards compat diff --git a/testing/py3-bottle-sqlalchemy/APKBUILD b/testing/py3-bottle-sqlalchemy/APKBUILD index df6ef92915b..030580115c3 100644 --- a/testing/py3-bottle-sqlalchemy/APKBUILD +++ b/testing/py3-bottle-sqlalchemy/APKBUILD @@ -3,7 +3,7 @@ pkgname=py3-bottle-sqlalchemy _pkgname=bottle-sqlalchemy pkgver=0.4.3 -pkgrel=5 +pkgrel=6 pkgdesc="Bottle SQLAlchemy integration plugin" options="!check" # No testsuite in tarballs or usable github tarballs url="https://github.com/iurisilvio/bottle-sqlalchemy" @@ -11,6 +11,7 @@ arch="noarch" license="MIT" depends="python3 py3-bottle py3-sqlalchemy" makedepends="py3-setuptools" +subpackages="$pkgname-pyc" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" replaces="py-bottle-sqlalchemy" # Backwards compat diff --git a/testing/py3-bottle-sqlite/APKBUILD b/testing/py3-bottle-sqlite/APKBUILD index d41ffbe1f15..3b0cc3ce8ab 100644 --- a/testing/py3-bottle-sqlite/APKBUILD +++ b/testing/py3-bottle-sqlite/APKBUILD @@ -3,7 +3,7 @@ pkgname=py3-bottle-sqlite _pkgname=bottle-sqlite pkgver=0.2.0 -pkgrel=4 +pkgrel=5 pkgdesc="Bottle sqlite plugin" options="!check" # No testsuite url="https://pypi.org/project/bottle-sqlite" @@ -11,6 +11,7 @@ arch="noarch" license="MIT" depends="python3 py3-bottle" makedepends="py3-setuptools" +subpackages="$pkgname-pyc" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" builddir="$srcdir/$_pkgname-$pkgver" diff --git a/testing/py3-bottle-websocket/APKBUILD b/testing/py3-bottle-websocket/APKBUILD index 9bca6a9f99f..e5f485ffff3 100644 --- a/testing/py3-bottle-websocket/APKBUILD +++ b/testing/py3-bottle-websocket/APKBUILD @@ -3,7 +3,7 @@ pkgname=py3-bottle-websocket _pkgname=bottle-websocket pkgver=0.2.9 -pkgrel=5 +pkgrel=6 pkgdesc="Bottle websocket plugin" options="!check" # No upstream testsuite url="https://pypi.org/project/bottle-websocket" @@ -11,6 +11,7 @@ arch="noarch" license="MIT" depends="python3 py3-bottle py3-gevent-websocket" makedepends="py3-setuptools" +subpackages="$pkgname-pyc" source="$pkgname-$pkgver.tar.gz::https://github.com/zeekay/bottle-websocket/archive/v$pkgver.tar.gz" replaces="py-bottle-websocket" # Backwards compat diff --git a/testing/py3-bottle-werkzeug/APKBUILD b/testing/py3-bottle-werkzeug/APKBUILD index 948d0022f6b..1c2b40a0f07 100644 --- a/testing/py3-bottle-werkzeug/APKBUILD +++ b/testing/py3-bottle-werkzeug/APKBUILD @@ -3,7 +3,7 @@ pkgname=py3-bottle-werkzeug _pkgname=bottle-werkzeug pkgver=0.1.1 -pkgrel=6 +pkgrel=7 pkgdesc="Bottle werkzeug plugin" url="https://pypi.org/project/bottle-werkzeug" arch="noarch" @@ -11,6 +11,7 @@ license="MIT" depends="python3 py3-bottle py3-werkzeug" makedepends="py3-setuptools" options="!check" +subpackages="$pkgname-pyc" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" builddir="$srcdir/$_pkgname-$pkgver" diff --git a/testing/py3-bson/APKBUILD b/testing/py3-bson/APKBUILD index 5444a833212..c902db0b900 100644 --- a/testing/py3-bson/APKBUILD +++ b/testing/py3-bson/APKBUILD @@ -3,7 +3,7 @@ pkgname=py3-bson _pkgname=bson pkgver=0.5.10 -pkgrel=3 +pkgrel=4 pkgdesc="Independent BSON codec for Python that doesn’t depend on MongoDB" options="!check" # No testsuite url="https://github.com/py-bson/bson" @@ -11,6 +11,7 @@ arch="noarch" license="BSD-3-Clause" depends="py3-dateutil py3-six" makedepends="py3-setuptools" +subpackages="$pkgname-pyc" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" builddir="$srcdir"/${_pkgname/-/_}-$pkgver diff --git a/testing/py3-businesstime/APKBUILD b/testing/py3-businesstime/APKBUILD index 3f7eed4960e..f4e38b9f7c9 100644 --- a/testing/py3-businesstime/APKBUILD +++ b/testing/py3-businesstime/APKBUILD @@ -3,7 +3,7 @@ pkgname=py3-businesstime _pkgname=businesstime pkgver=0.3.0 -pkgrel=6 +pkgrel=7 pkgdesc="Python utility for calculating business time between two datetimes" url="https://github.com/seatgeek/businesstime" arch="noarch" @@ -12,6 +12,7 @@ replaces="py-businesstime" # for backwards compatibility provides="py-businesstime=$pkgver-r$pkgrel" # for backwards compatibility depends="python3" makedepends="python3-dev py3-setuptools" +subpackages="$pkgname-pyc" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" builddir="$srcdir"/$_pkgname-$pkgver