From 796a4c1f76d1e0b9117ba0ea22716e4b57741862 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 10 Sep 2024 11:34:07 -0400 Subject: [PATCH 01/33] ilot/listmonk: bump --- ilot/listmonk/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ilot/listmonk/APKBUILD b/ilot/listmonk/APKBUILD index 0ad6acd..7b799f2 100644 --- a/ilot/listmonk/APKBUILD +++ b/ilot/listmonk/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Antoine Martin (ayakael) pkgname=listmonk pkgver=3.0.0 -pkgrel=1 +pkgrel=2 pkgdesc='Self-hosted newsletter and mailing list manager with a modern dashboard' arch="all" url=https://listmonk.app From 4a2c481926b87b6942e7675c85477013e96db110 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 10 Sep 2024 11:38:34 -0400 Subject: [PATCH 02/33] ilot/uptime-kuma: bump --- ilot/uptime-kuma/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ilot/uptime-kuma/APKBUILD b/ilot/uptime-kuma/APKBUILD index f0acb67..b54cbc8 100644 --- a/ilot/uptime-kuma/APKBUILD +++ b/ilot/uptime-kuma/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Antoine Martin (ayakael) pkgname=uptime-kuma pkgver=1.23.13 -pkgrel=1 +pkgrel=2 pkgdesc='A fancy self-hosted monitoring tool' arch="all" url="https://github.com/louislam/uptime-kuma" From 7a38e04ba77db921672bdcb0cd4d14226ca1f6f1 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 22:06:07 -0400 Subject: [PATCH 03/33] ilot/py3-django-tenants: fix license --- ilot/py3-django-tenants/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ilot/py3-django-tenants/APKBUILD b/ilot/py3-django-tenants/APKBUILD index 167cc81..a0c82f0 100644 --- a/ilot/py3-django-tenants/APKBUILD +++ b/ilot/py3-django-tenants/APKBUILD @@ -4,11 +4,11 @@ pkgname=py3-django-tenants #_pkgreal is used by apkbuild-pypi to find modules at PyPI _pkgreal=django-tenants pkgver=3.6.1 -pkgrel=2 +pkgrel=3 pkgdesc="Tenant support for Django using PostgreSQL schemas." url="https://pypi.python.org/project/django-tenants" arch="noarch" -license="KIT" +license="MIT" depends="py3-django py3-psycopg py3-gunicorn py3-coverage" checkdepends="python3-dev py3-pytest" makedepends="py3-setuptools py3-gpep517 py3-wheel" From 1e82c5a4deadcf86080620da6e37f664993aa3ee Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 22:11:58 -0400 Subject: [PATCH 04/33] ilot/py3-django-countries: new aport --- ilot/py3-django-countries/APKBUILD | 40 ++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 ilot/py3-django-countries/APKBUILD diff --git a/ilot/py3-django-countries/APKBUILD b/ilot/py3-django-countries/APKBUILD new file mode 100644 index 0000000..67e36b5 --- /dev/null +++ b/ilot/py3-django-countries/APKBUILD @@ -0,0 +1,40 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-django-countries +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=django-countries +pkgver=7.6.1 +pkgrel=0 +pkgdesc="Provides a country field for Django models." +url="https://pypi.python.org/project/django-countries" +arch="noarch" +license="MIT" +depends="py3-django py3-asgiref py3-typing-extensions" +# missing py3-graphene +checkdepends="py3-pytest-django py3-pytest-cov py3-django-rest-framework" +makedepends="py3-setuptools py3-gpep517 py3-wheel" +source="$pkgname-$pkgver.tar.gz::https://github.com/SmileyChris/django-countries/archive/refs/tags/v$pkgver.tar.gz" +options="!check" # TODO +builddir="$srcdir/$_pkgreal-$pkgver" +subpackages="$pkgname-pyc" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + python3 -m venv --clear --without-pip --system-site-packages .testenv + .testenv/bin/python3 -m installer .dist/*.whl + .testenv/bin/python3 -m pytest -v +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +53c7db02244aad196c141d1d04db5087c802d69d12de25e86fe0b2abdfb4ce9ed6ec84b6344c423dc6e7d2e57c2bb14a5324739c7cead54ec7d261e7e3fe6112 py3-django-countries-7.6.1.tar.gz +" From b3eae54fedbcf6fa86f7ed658bd23820c184e79e Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 21:43:06 -0400 Subject: [PATCH 05/33] ilot/py3-azure-core: new aport --- ilot/py3-azure-core/APKBUILD | 39 ++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 ilot/py3-azure-core/APKBUILD diff --git a/ilot/py3-azure-core/APKBUILD b/ilot/py3-azure-core/APKBUILD new file mode 100644 index 0000000..8befd33 --- /dev/null +++ b/ilot/py3-azure-core/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-azure-core +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=azure-core +pkgver=1.31.0 +pkgrel=0 +pkgdesc="Microsoft Azure Core Library for Python" +url="https://pypi.python.org/project/microsoft-kiota-authentication-azure" +arch="noarch" +license="MIT" +depends="py3-aiohttp py3-requests" +checkdepends="py3-pytest-asyncio py3-trio" +makedepends="py3-setuptools py3-gpep517 py3-wheel py3-flit" +options="!check" #todo +source="$pkgname-$pkgver.tar.gz::https://github.com/Azure/azure-sdk-for-python/archive/refs/tags/azure-core_$pkgver.tar.gz" +builddir="$srcdir"/azure-sdk-for-python-azure-core_$pkgver/sdk/core/azure-core +subpackages="$pkgname-pyc" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + python3 -m venv --clear --without-pip --system-site-packages .testenv + .testenv/bin/python3 -m installer .dist/*.whl + .testenv/bin/python3 -m pytest -v +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +be2fc27610034ee5c345ed11f59233ec81d8ad628c4b732531a24e0d54720b81f22d855e5a4d9214c6a8234e479da059b37a40c7ad15e738e2dd46fb4755dad6 py3-azure-core-1.31.0.tar.gz +" From 94c753da26b10f1d3d6322d30bc8155fce7acc64 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 21:43:08 -0400 Subject: [PATCH 06/33] ilot/py3-azure-identity: new aport --- ilot/py3-azure-identity/APKBUILD | 45 ++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 ilot/py3-azure-identity/APKBUILD diff --git a/ilot/py3-azure-identity/APKBUILD b/ilot/py3-azure-identity/APKBUILD new file mode 100644 index 0000000..e448e38 --- /dev/null +++ b/ilot/py3-azure-identity/APKBUILD @@ -0,0 +1,45 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-azure-identity +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=azure-identity +pkgver=1.18.0 +_pkgver=${pkgver}b2 +pkgrel=0 +pkgdesc="Microsoft Azure Identity Library for Python" +url="https://pypi.org/project/azure-identity/" +arch="noarch" +license="MIT" +depends=" + py3-azure-core + py3-cryptography + py3-msal-extensions + py3-typing-extensions +" +checkdepends="py3-pytest" +makedepends="py3-setuptools py3-gpep517 py3-wheel py3-flit" +options="!check" #todo +source="$pkgname-$pkgver.tar.gz::https://github.com/Azure/azure-sdk-for-python/archive/refs/tags/azure-identity_$_pkgver.tar.gz" +builddir="$srcdir"/azure-sdk-for-python-azure-identity_$_pkgver/sdk/identity/azure-identity +subpackages="$pkgname-pyc" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + python3 -m venv --clear --without-pip --system-site-packages .testenv + .testenv/bin/python3 -m installer .dist/*.whl + .testenv/bin/python3 -m pytest -v +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +84defc19db3aea614b13dbf2d24ee3ea13c210a05460a4ae2968b01d34f136c81eb9d77b7ce1f0c4590e6f36af0b6fe114787fc7897ffa0f2d8093a9bcb48bf4 py3-azure-identity-1.18.0.tar.gz +" From 3c69bcbaa560f31209bf4d490209940d87560cc2 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 21:43:10 -0400 Subject: [PATCH 07/33] ilot/py3-microsoft-kiota-abstractions: new aport --- .../py3-microsoft-kiota-abstractions/APKBUILD | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 ilot/py3-microsoft-kiota-abstractions/APKBUILD diff --git a/ilot/py3-microsoft-kiota-abstractions/APKBUILD b/ilot/py3-microsoft-kiota-abstractions/APKBUILD new file mode 100644 index 0000000..b298650 --- /dev/null +++ b/ilot/py3-microsoft-kiota-abstractions/APKBUILD @@ -0,0 +1,42 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-microsoft-kiota-abstractions +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=microsoft-kiota-abstractions +pkgver=1.3.3 +pkgrel=0 +pkgdesc="Abstractions library for Kiota generated Python clients" +url="https://pypi.python.org/project/microsoft-kiota-abstractions" +arch="noarch" +license="MIT" +depends=" + py3-std-uritemplate + py3-opentelemetry-sdk + py3-importlib-metadata + " +checkdepends="py3-pytest" +makedepends="py3-setuptools py3-gpep517 py3-wheel py3-flit" +source="$pkgname-$pkgver.tar.gz::https://github.com/microsoft/kiota-abstractions-python/archive/refs/tags/v$pkgver.tar.gz" +builddir="$srcdir/kiota-abstractions-python-$pkgver" +subpackages="$pkgname-pyc" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + python3 -m venv --clear --without-pip --system-site-packages .testenv + .testenv/bin/python3 -m installer .dist/*.whl + .testenv/bin/python3 -m pytest -v +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +b416b14cc68dab4eb99d8abc2378c8691781c984f453c7328eefe5bc10788d8244bdc0e3c98d4c2cdbad60d5f672893da4eeed99037d4e361849bcef458547e1 py3-microsoft-kiota-abstractions-1.3.3.tar.gz +" From 40dbd0165e30ad01218506a678f0fd6372a95378 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 21:43:12 -0400 Subject: [PATCH 08/33] ilot/py3-microsoft-kiota-authentication-azure: new aport --- .../APKBUILD | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 ilot/py3-microsoft-kiota-authentication-azure/APKBUILD diff --git a/ilot/py3-microsoft-kiota-authentication-azure/APKBUILD b/ilot/py3-microsoft-kiota-authentication-azure/APKBUILD new file mode 100644 index 0000000..2149918 --- /dev/null +++ b/ilot/py3-microsoft-kiota-authentication-azure/APKBUILD @@ -0,0 +1,43 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-microsoft-kiota-authentication-azure +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=microsoft-kiota-authentication-azure +pkgver=1.1.0 +pkgrel=0 +pkgdesc="Authentication provider for Kiota using Azure Identity" +url="https://pypi.python.org/project/microsoft-kiota-authentication-azure" +arch="noarch" +license="MIT" +depends=" + py3-azure-core + py3-microsoft-kiota-abstractions + py3-importlib-metadata + " +checkdepends="py3-pytest" +makedepends="py3-setuptools py3-gpep517 py3-wheel py3-flit" +options="!check" # TODO +source="$pkgname-$pkgver.tar.gz::https://github.com/microsoft/kiota-authentication-azure-python/archive/refs/tags/v$pkgver.tar.gz" +builddir="$srcdir/kiota-authentication-azure-python-$pkgver" +subpackages="$pkgname-pyc" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + python3 -m venv --clear --without-pip --system-site-packages .testenv + .testenv/bin/python3 -m installer .dist/*.whl + .testenv/bin/python3 -m pytest -v +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +4a58a49c027951dd856bc24b03c6ba44b448949bcd3210237d2574e3ceec32eefb403057720e4d517027494d6f977874dd48abbfb5cf856399eb5d1c895376fc py3-microsoft-kiota-authentication-azure-1.1.0.tar.gz +" From b15e1a5e10aa2ccb53a0d503166c2c78641deab6 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 21:43:14 -0400 Subject: [PATCH 09/33] ilot/py3-microsoft-kiota-http: new aport --- ilot/py3-microsoft-kiota-http/APKBUILD | 42 ++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 ilot/py3-microsoft-kiota-http/APKBUILD diff --git a/ilot/py3-microsoft-kiota-http/APKBUILD b/ilot/py3-microsoft-kiota-http/APKBUILD new file mode 100644 index 0000000..e1ded6f --- /dev/null +++ b/ilot/py3-microsoft-kiota-http/APKBUILD @@ -0,0 +1,42 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-microsoft-kiota-http +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=microsoft-kiota-http +pkgver=1.3.3 +pkgrel=0 +pkgdesc="Kiota http request adapter implementation for httpx library" +url="https://pypi.python.org/project/microsoft-kiota-http" +arch="noarch" +license="MIT" +depends=" + py3-microsoft-kiota-abstractions + py3-httpx + " +checkdepends="py3-pytest" +makedepends="py3-setuptools py3-gpep517 py3-wheel py3-flit" +source="$pkgname-$pkgver.tar.gz::https://github.com/microsoft/kiota-http-python/archive/refs/tags/v$pkgver.tar.gz" +options="!check" # TODO +builddir="$srcdir/kiota-http-python-$pkgver" +subpackages="$pkgname-pyc" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + python3 -m venv --clear --without-pip --system-site-packages .testenv + .testenv/bin/python3 -m installer .dist/*.whl + .testenv/bin/python3 -m pytest -v +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +fff2dc37a0e379ad5689ff9532b43e6ee62ca97589b2feed39898c17a45c5cdb17c20bd714c46cd6ae6e2522de695b6c747aaf5fb0ef96dfd504cd37a6169a87 py3-microsoft-kiota-http-1.3.3.tar.gz +" From be4b2fc8a5d2ddee9640ecea8281fc3f25ef8a02 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 21:43:16 -0400 Subject: [PATCH 10/33] ilot/py3-microsoft-kiota-serialization-form: new aport --- .../APKBUILD | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 ilot/py3-microsoft-kiota-serialization-form/APKBUILD diff --git a/ilot/py3-microsoft-kiota-serialization-form/APKBUILD b/ilot/py3-microsoft-kiota-serialization-form/APKBUILD new file mode 100644 index 0000000..de1939f --- /dev/null +++ b/ilot/py3-microsoft-kiota-serialization-form/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-microsoft-kiota-serialization-form +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=microsoft-kiota-serialization-form +pkgver=0.1.1 +pkgrel=0 +pkgdesc="Kiota Form encoded serialization implementation for Python" +url="https://pypi.python.org/project/microsoft-kiota-serialization-form" +arch="noarch" +license="MIT" +depends=" + py3-microsoft-kiota-abstractions + py3-pendulum + " +checkdepends="py3-pytest" +makedepends="py3-setuptools py3-gpep517 py3-wheel py3-flit" +source="$pkgname-$pkgver.tar.gz::https://github.com/microsoft/kiota-serialization-form-python/archive/refs/tags/v$pkgver.tar.gz" +builddir="$srcdir/kiota-serialization-form-python-$pkgver" +subpackages="$pkgname-pyc" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + python3 -m venv --clear --without-pip --system-site-packages .testenv + .testenv/bin/python3 -m installer .dist/*.whl + .testenv/bin/python3 -m pytest -v +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +0afb2b3f0f7d325e630b8a11d17a98b2c42446cb803384e36406074c62ade2be994e29b9d7cb098d9de55609dda28c339eed6397ec373375caaf158b139a5449 py3-microsoft-kiota-serialization-form-0.1.1.tar.gz +" From 597efc0359a95761cc184693fcc3ac3718c21454 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 21:43:19 -0400 Subject: [PATCH 11/33] ilot/py3-microsoft-kiota-serialization-json: new aport --- .../APKBUILD | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 ilot/py3-microsoft-kiota-serialization-json/APKBUILD diff --git a/ilot/py3-microsoft-kiota-serialization-json/APKBUILD b/ilot/py3-microsoft-kiota-serialization-json/APKBUILD new file mode 100644 index 0000000..8efe8fa --- /dev/null +++ b/ilot/py3-microsoft-kiota-serialization-json/APKBUILD @@ -0,0 +1,42 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-microsoft-kiota-serialization-json +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=microsoft-kiota-serialization-json +pkgver=1.3.2 +pkgrel=0 +pkgdesc="JSON serialization implementation for Kiota clients in Python" +url="https://pypi.python.org/project/microsoft-kiota-serialization-json" +arch="noarch" +license="MIT" +depends=" + py3-microsoft-kiota-abstractions + py3-pendulum + " +checkdepends="py3-pytest" +makedepends="py3-setuptools py3-gpep517 py3-wheel py3-flit" +source="$pkgname-$pkgver.tar.gz::https://github.com/microsoft/kiota-serialization-json-python/archive/refs/tags/v$pkgver.tar.gz" +options="!check" # TODO +builddir="$srcdir/kiota-serialization-json-python-$pkgver" +subpackages="$pkgname-pyc" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + python3 -m venv --clear --without-pip --system-site-packages .testenv + .testenv/bin/python3 -m installer .dist/*.whl + .testenv/bin/python3 -m pytest -v +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +bdf2a42d4509b7a6f093295c8f5d661e771d040965ebdd7fb7772503482fbc6d449c5ac7b16f5f497d9005018d463d3a68650b4b4da0f1a7fbcb0ad3377d12b5 py3-microsoft-kiota-serialization-json-1.3.2.tar.gz +" From 373154a889405c6b1977dba9f0ae804c6e8e00c1 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 21:43:20 -0400 Subject: [PATCH 12/33] ilot/py3-microsoft-kiota-serialization-multipart: new aport --- .../APKBUILD | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 ilot/py3-microsoft-kiota-serialization-multipart/APKBUILD diff --git a/ilot/py3-microsoft-kiota-serialization-multipart/APKBUILD b/ilot/py3-microsoft-kiota-serialization-multipart/APKBUILD new file mode 100644 index 0000000..bf088b7 --- /dev/null +++ b/ilot/py3-microsoft-kiota-serialization-multipart/APKBUILD @@ -0,0 +1,38 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-microsoft-kiota-serialization-multipart +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=microsoft-kiota-serialization-multipart +pkgver=0.1.0 +pkgrel=0 +pkgdesc="Multipart serialization implementation for python based kiota clients" +url="https://pypi.python.org/project/microsoft-kiota-serialization-multipart" +arch="noarch" +license="MIT" +depends="py3-microsoft-kiota-abstractions py3-microsoft-kiota-serialization-json" +checkdepends="py3-pytest" +makedepends="py3-setuptools py3-gpep517 py3-wheel py3-flit" +source="$pkgname-$pkgver.tar.gz::https://github.com/microsoft/kiota-serialization-multipart-python/archive/refs/tags/v$pkgver.tar.gz" +builddir="$srcdir/kiota-serialization-multipart-python-$pkgver" +subpackages="$pkgname-pyc" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + python3 -m venv --clear --without-pip --system-site-packages .testenv + .testenv/bin/python3 -m installer .dist/*.whl + .testenv/bin/python3 -m pytest -v +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +a402f4fc891a70789c8ac6cb16ae30f2059e6aed4013c7601a33f37b959446067cbf0abc630f15aadeb4c85eb04703cead3c19fbbff628332efdebce3c4badb8 py3-microsoft-kiota-serialization-multipart-0.1.0.tar.gz +" From 607df6f9affbf09a2e7836331fe4ec716a8b6238 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 21:43:22 -0400 Subject: [PATCH 13/33] ilot/py3-microsoft-kiota-serialization-text: new aport --- .../APKBUILD | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 ilot/py3-microsoft-kiota-serialization-text/APKBUILD diff --git a/ilot/py3-microsoft-kiota-serialization-text/APKBUILD b/ilot/py3-microsoft-kiota-serialization-text/APKBUILD new file mode 100644 index 0000000..7684d45 --- /dev/null +++ b/ilot/py3-microsoft-kiota-serialization-text/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-microsoft-kiota-serialization-text +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=microsoft-kiota-serialization-text +pkgver=1.0.0 +pkgrel=0 +pkgdesc="Text serialization implementation for Kiota generated clients in Python" +url="https://pypi.python.org/project/microsoft-kiota-abstractions" +arch="noarch" +license="MIT" +depends=" + py3-microsoft-kiota-abstractions + py3-dateutil + " +checkdepends="py3-pytest" +makedepends="py3-setuptools py3-gpep517 py3-wheel py3-flit" +source="$pkgname-$pkgver.tar.gz::https://github.com/microsoft/kiota-serialization-text-python/archive/refs/tags/v$pkgver.tar.gz" +builddir="$srcdir/kiota-serialization-text-python-$pkgver" +subpackages="$pkgname-pyc" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + python3 -m venv --clear --without-pip --system-site-packages .testenv + .testenv/bin/python3 -m installer .dist/*.whl + .testenv/bin/python3 -m pytest -v +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +b3b0d0a7e69c70c14ed606f70179a49107f6df6f2ba577e9bacbdb15b3071062a180d2e6b77a43d82fe7a67264ad24aa685c71695042ffd54ea4406f9b990208 py3-microsoft-kiota-serialization-text-1.0.0.tar.gz +" From bb77fc4cf0d64afb00a01f2b61e99b0fefa66dda Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 21:43:24 -0400 Subject: [PATCH 14/33] ilot/py3-msal-extensions: new aport --- ilot/py3-msal-extensions/APKBUILD | 42 +++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 ilot/py3-msal-extensions/APKBUILD diff --git a/ilot/py3-msal-extensions/APKBUILD b/ilot/py3-msal-extensions/APKBUILD new file mode 100644 index 0000000..a2e26c4 --- /dev/null +++ b/ilot/py3-msal-extensions/APKBUILD @@ -0,0 +1,42 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-msal-extensions +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=msal-extensions +pkgver=1.2.0 +pkgrel=0 +pkgdesc="Microsoft Authentication Library extensions (MSAL EX) provides a persistence API " +url="https://pypi.org/project/msal-extensions" +arch="noarch" +license="MIT" +depends=" + py3-msal + py3-portalocker +" +checkdepends="py3-pytest" +makedepends="py3-setuptools py3-gpep517 py3-wheel" +options="!check" #todo +source="$pkgname-$pkgver.tar.gz::https://github.com/AzureAD/microsoft-authentication-extensions-for-python/archive/refs/tags/$pkgver.tar.gz" +builddir="$srcdir"/microsoft-authentication-extensions-for-python-$pkgver +subpackages="$pkgname-pyc" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + python3 -m venv --clear --without-pip --system-site-packages .testenv + .testenv/bin/python3 -m installer .dist/*.whl + .testenv/bin/python3 -m pytest -v +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +847a87e2f7a7b71d47fb758bd3445666b2a9f1f2034c575f8a78ba687e1c5faa682b89ea78906d4afa1350bca608cd9452c7ad244c7ec456145c15c49ad46fb2 py3-msal-extensions-1.2.0.tar.gz +" From 9dc65b5a5fd15d3dc0d843926de2b614587dc323 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 21:43:26 -0400 Subject: [PATCH 15/33] ilot/py3-msal: new aport --- ilot/py3-msal/APKBUILD | 43 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 ilot/py3-msal/APKBUILD diff --git a/ilot/py3-msal/APKBUILD b/ilot/py3-msal/APKBUILD new file mode 100644 index 0000000..826a32a --- /dev/null +++ b/ilot/py3-msal/APKBUILD @@ -0,0 +1,43 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-msal +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=msal +pkgver=1.31.0 +pkgrel=0 +pkgdesc="Microsoft Authentication Library (MSAL) for Python" +url="https://pypi.org/project/msal" +arch="noarch" +license="MIT" +depends=" + py3-requests + py3-cryptography + py3-jwt +" +checkdepends="py3-pytest" +makedepends="py3-setuptools py3-gpep517 py3-wheel" +options="!check" #todo +source="$pkgname-$pkgver.tar.gz::https://github.com/AzureAD/microsoft-authentication-library-for-python/archive/refs/tags/$pkgver.tar.gz" +builddir="$srcdir"/microsoft-authentication-library-for-python-$pkgver +subpackages="$pkgname-pyc" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + python3 -m venv --clear --without-pip --system-site-packages .testenv + .testenv/bin/python3 -m installer .dist/*.whl + .testenv/bin/python3 -m pytest -v +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +712342167c7cc958c16c45d9c21a58d83efd9ff3dccf4494d7c83fb226678ed944fef1751a4002fcb292450884c682f1b5d00cdca248d1def54d6f884cdb5dc2 py3-msal-1.31.0.tar.gz +" From 3bead9e60cf8aeef97d7259df78d717b3f498bd4 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 21:43:28 -0400 Subject: [PATCH 16/33] ilot/py3-msgraph-core: new aport --- ilot/py3-msgraph-core/APKBUILD | 43 ++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 ilot/py3-msgraph-core/APKBUILD diff --git a/ilot/py3-msgraph-core/APKBUILD b/ilot/py3-msgraph-core/APKBUILD new file mode 100644 index 0000000..affc2a5 --- /dev/null +++ b/ilot/py3-msgraph-core/APKBUILD @@ -0,0 +1,43 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-msgraph-core +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=msgraph-core +pkgver=1.1.3 +pkgrel=0 +pkgdesc="The Microsoft Graph Python SDK" +url="https://pypi.python.org/project/msgraph-core" +arch="noarch" +license="MIT" +depends=" + py3-azure-identity + py3-microsoft-kiota-authentication-azure + py3-microsoft-kiota-http + " +checkdepends="py3-pytest" +makedepends="py3-setuptools py3-gpep517 py3-wheel py3-flit" +source="$pkgname-$pkgver.tar.gz::https://github.com/microsoftgraph/msgraph-sdk-python-core/archive/refs/tags/v$pkgver.tar.gz" +options="!check" # TODO +builddir="$srcdir/msgraph-sdk-python-core-$pkgver" +subpackages="$pkgname-pyc" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + python3 -m venv --clear --without-pip --system-site-packages .testenv + .testenv/bin/python3 -m installer .dist/*.whl + .testenv/bin/python3 -m pytest -v +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +48b47b5b02062fe05f9f917d1c6461f539f9ff6dfbafb4a2dcfbe91237725eb7427b2673aec7eb994f733fab109879d96e06e122d72ecab69ff77a1f76fafe49 py3-msgraph-core-1.1.3.tar.gz +" From e2a90c491b567d1a293335f8bb73379ea25e7b2d Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 21:43:30 -0400 Subject: [PATCH 17/33] ilot/py3-msgraph-sdk: new aport --- ilot/py3-msgraph-sdk/APKBUILD | 44 +++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 ilot/py3-msgraph-sdk/APKBUILD diff --git a/ilot/py3-msgraph-sdk/APKBUILD b/ilot/py3-msgraph-sdk/APKBUILD new file mode 100644 index 0000000..d59a1e7 --- /dev/null +++ b/ilot/py3-msgraph-sdk/APKBUILD @@ -0,0 +1,44 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-msgraph-sdk +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=msgraph-sdk +pkgver=1.8.0 +pkgrel=0 +pkgdesc="The Microsoft Graph Python SDK" +url="https://pypi.python.org/project/msgraph-sdk" +arch="noarch" +license="MIT" +depends=" + py3-microsoft-kiota-serialization-text + py3-microsoft-kiota-serialization-form + py3-microsoft-kiota-serialization-multipart + py3-msgraph-core + " +checkdepends="py3-pytest" +makedepends="py3-setuptools py3-gpep517 py3-wheel py3-flit" +source="$pkgname-$pkgver.tar.gz::https://github.com/microsoftgraph/msgraph-sdk-python/archive/refs/tags/v$pkgver.tar.gz" +options="!check" # TODO +builddir="$srcdir/$_pkgreal-python-$pkgver" +subpackages="$pkgname-pyc" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + python3 -m venv --clear --without-pip --system-site-packages .testenv + .testenv/bin/python3 -m installer .dist/*.whl + .testenv/bin/python3 -m pytest -v +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +e7d93a4b0f29023dcce0529b54a397b568f44ff40b1efe52e1c060b4552dd055e6a62e0ebcb72cbf3c1babe00440c41e6f897e86a01c3e261a8b88b23cd3af2c py3-msgraph-sdk-1.8.0.tar.gz +" From c29ac3817b2ab9e22c70b57c1da69ae05b080352 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 21:43:32 -0400 Subject: [PATCH 18/33] ilot/py3-std-uritemplate: new aport --- ilot/py3-std-uritemplate/APKBUILD | 41 +++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 ilot/py3-std-uritemplate/APKBUILD diff --git a/ilot/py3-std-uritemplate/APKBUILD b/ilot/py3-std-uritemplate/APKBUILD new file mode 100644 index 0000000..9294abc --- /dev/null +++ b/ilot/py3-std-uritemplate/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-std-uritemplate +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=std-uritemplate +pkgver=1.0.6 +pkgrel=0 +pkgdesc="A complete and maintained cross-language implementation of the Uri Template specification RFC 6570 Level 4" +url="https://pypi.python.org/project/std-uritemplate" +arch="noarch" +license="Apache-2.0" +depends="python3" +checkdepends="py3-pytest" +makedepends="py3-setuptools py3-gpep517 py3-wheel poetry" +source="$pkgname-$pkgver.tar.gz::https://github.com/std-uritemplate/std-uritemplate/archive/refs/tags/$pkgver.tar.gz" +options="!check" # TODO +builddir="$srcdir"/$_pkgreal-$pkgver/python +subpackages="$pkgname-pyc" + +prepare() { + default_prepare + ln -s ../Readme.md Readme.md +} +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + poetry run python test.py +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +4873ce356170aea1b45479d5ded0b596265782c097d3fd9d1bb4cc8ad902067bab654057173a2e2b1da37e5ac36ebee024feca43b0e4298b103dc979f97e7c1c py3-std-uritemplate-1.0.6.tar.gz +" From 400631811a620f2f10dd5ba46bbc5123c8a0bed5 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 21:44:00 -0400 Subject: [PATCH 19/33] ilot/py3-opentelemetry-sdk: new aport --- ilot/py3-opentelemetry-sdk/APKBUILD | 75 +++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 ilot/py3-opentelemetry-sdk/APKBUILD diff --git a/ilot/py3-opentelemetry-sdk/APKBUILD b/ilot/py3-opentelemetry-sdk/APKBUILD new file mode 100644 index 0000000..14a474c --- /dev/null +++ b/ilot/py3-opentelemetry-sdk/APKBUILD @@ -0,0 +1,75 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-opentelemetry-sdk +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=opentelemetry-sdk +pkgver=1.27.0 +pkgrel=0 +pkgdesc="OpenTelemetry Python SDK" +url="https://github.com/open-telemetry/opentelemetry-python/tree/main" +arch="noarch" +license="Apache-2.0" +depends="py3-opentelemetry-semantic-conventions py3-typing-extensions" +checkdepends="py3-pytest" +makedepends="py3-setuptools py3-gpep517 py3-wheel py3-hatchling" +source="$pkgname-$pkgver.tar.gz::https://github.com/open-telemetry/opentelemetry-python/archive/refs/tags/v$pkgver.tar.gz" +builddir="$srcdir/opentelemetry-python-$pkgver" +options="!check" # TODO +# need to figure out -pyc +subpackages=" + $pkgname-pyc + py3-opentelemetry-api + py3-opentelemetry-semantic-conventions + py3-opentelemetry-proto + " + +build() { + for i in api semantic-conventions sdk proto; do + cd "$builddir"/opentelemetry-$i + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 + done +} + +check() { + for i in api semantic-conventions sdk proto; do + python3 -m venv --clear --without-pip --system-site-packages "$builddir"/.testenv + "$builddir"/.testenv/bin/python3 -m installer .dist/*.whl + "$builddir"/.testenv/bin/python3 -m pytest -v + done +} + +package() { + cd "$builddir"/opentelemetry-sdk + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +api() { + depends="py3-deprecated" + pkgdesc="OpenTelemetry Python API" + cd "$builddir"/opentelemetry-api + python3 -m installer -d "$subpkgdir" \ + .dist/*.whl +} + +conventions() { + pkgdesc="OpenTelemetry Semantic Conventions" + depends="py3-opentelemetry-api py3-deprecated" + cd "$builddir"/opentelemetry-semantic-conventions + python3 -m installer -d "$subpkgdir" \ + .dist/*.whl +} + +proto() { + pkgdesc="OpenTelemetry Python Proto" + depends="py3-protobuf" + cd "$builddir"/opentelemetry-proto + python3 -m installer -d "$subpkgdir" \ + .dist/*.whl +} + +sha512sums=" +d8b5a617c7e804b4e6e1b508395e87481a3dcc3b375573110750830a1cf6037cfeb5c09dba3e7cfa472e385dbf619afedd79b1c31c5bfe4e87d44ea65f4d2f0b py3-opentelemetry-sdk-1.27.0.tar.gz +" From 73d28673bcc0bc2e893e035fc13ca9078c2b9ff0 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 22:22:08 -0400 Subject: [PATCH 20/33] ilot/py3-drf-orjson-renderer: new aport --- ilot/py3-drf-orjson-renderer/APKBUILD | 39 +++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 ilot/py3-drf-orjson-renderer/APKBUILD diff --git a/ilot/py3-drf-orjson-renderer/APKBUILD b/ilot/py3-drf-orjson-renderer/APKBUILD new file mode 100644 index 0000000..52a7c47 --- /dev/null +++ b/ilot/py3-drf-orjson-renderer/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-drf-orjson-renderer +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=drf_orjson_renderer +pkgver=1.7.3 +_gittag=9a59352f82e262bd78ccc0228361bcb321a33623 +pkgrel=0 +pkgdesc="Django RestFramework JSON Renderer Backed by orjson" +url="https://pypi.python.org/project/drf-orjson-renderer" +arch="noarch" +license="MIT" +depends="py3-django-rest-framework py3-orjson" +checkdepends="py3-pytest-django py3-numpy" +makedepends="py3-setuptools py3-gpep517 py3-wheel" +source="$pkgname-$pkgver.tar.gz::https://github.com/brianjbuck/drf_orjson_renderer/archive/$_gittag.tar.gz" +builddir="$srcdir/$_pkgreal-$_gittag" +subpackages="$pkgname-pyc" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + python3 -m venv --clear --without-pip --system-site-packages .testenv + .testenv/bin/python3 -m installer .dist/*.whl + .testenv/bin/python3 -m pytest -v +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +7870aebf6bcc249228b1620f4b50124eef54e251dcac236e23be4287284461617d630b073d2e9122f66779a908dfd69c5e16b486b23de0114b06b3df6b468e95 py3-drf-orjson-renderer-1.7.3.tar.gz +" From e0b230da51ebc4b58a9f2420fee9c063fd8d78aa Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 22:26:27 -0400 Subject: [PATCH 21/33] ilot/py3-pyrad: new aport --- ilot/py3-pyrad/APKBUILD | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 ilot/py3-pyrad/APKBUILD diff --git a/ilot/py3-pyrad/APKBUILD b/ilot/py3-pyrad/APKBUILD new file mode 100644 index 0000000..748ef46 --- /dev/null +++ b/ilot/py3-pyrad/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-pyrad +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=pyrad +pkgver=2.4 +pkgrel=0 +pkgdesc="Python RADIUS Implementation" +url="https://pypi.python.org/project/pyrad" +arch="noarch" +license="BSD-3-Clause" +depends="python3" +checkdepends="py3-pytest" +makedepends="py3-setuptools py3-gpep517 py3-wheel poetry" +source="$pkgname-$pkgver.tar.gz::https://github.com/pyradius/pyrad/archive/refs/tags/$pkgver.tar.gz" +options="!check" # TODO +builddir="$srcdir/$_pkgreal-$pkgver" +subpackages="$pkgname-pyc" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + python3 -m venv --clear --without-pip --system-site-packages .testenv + .testenv/bin/python3 -m installer .dist/*.whl + .testenv/bin/python3 -m pytest -v +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +e4f4c687596bd226cf2cdb409a8d940c7b665fb7f722d09113dd9a1b05ab176ce8f920b235918ec01695f262930d13b4057b199cf6aac72afa54950c1fb59166 py3-pyrad-2.4.tar.gz +" From 82149b928761adcb3c44dad58f700cac9d962e85 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 18:23:11 -0400 Subject: [PATCH 22/33] ilot/authentik: upgrade to 2024.6.4 --- ilot/authentik/APKBUILD | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/ilot/authentik/APKBUILD b/ilot/authentik/APKBUILD index 615f078..2727481 100644 --- a/ilot/authentik/APKBUILD +++ b/ilot/authentik/APKBUILD @@ -1,7 +1,7 @@ # Contributor: Antoine Martin (ayakael) # Maintainer: Antoine Martin (ayakael) pkgname=authentik -pkgver=2024.4.4 +pkgver=2024.6.4 pkgrel=0 pkgdesc="An open-source Identity Provider focused on flexibility and versatility" url="https://github.com/goauthentik/authentik" @@ -54,11 +54,13 @@ depends=" py3-deprecated py3-dnspython py3-django + py3-django-cte py3-django-filter py3-django-guardian py3-django-model-utils py3-django-otp py3-django-prometheus + py3-django-pglock py3-django-redis py3-django-rest-framework~=3.14.0 py3-django-rest-framework-guardian @@ -70,12 +72,12 @@ depends=" py3-duo_client py3-drf-spectacular py3-email-validator - py3-facebook-sdk py3-fido2 py3-flower py3-frozenlist py3-geoip2 py3-google-auth + py3-google-api-python-client py3-gunicorn py3-h11 py3-httptools @@ -93,6 +95,7 @@ depends=" py3-lxml py3-maxminddb py3-msgpack + py3-msgraph-sdk py3-multidict py3-oauthlib py3-opencontainers @@ -247,7 +250,7 @@ package() { } sha512sums=" -22c8ff16b93b9fcb84478b6476dd4f6413719037affc7756f20ba1dc3afff1fbaae2f1fc89d7b3a9c4372fcc856009d8a4ef5eb7854855e4528523fb456a2491 authentik-2024.4.4.tar.gz +8939dd22097a0ac17d3d974788d1e4c2d363706ff07179a73c5bc03f42c4d45e92e562521212a5908b806fee103a8dcd613852cf36952f14e36f82e434e013ce authentik-2024.6.4.tar.gz 4defb4fe3a4230f4aa517fbecd5e5b8bcef2a64e1b40615660ae9eec33597310a09df5e126f4d39ce7764bd1716c0a7040637699135c103cbc1879593c6c06f1 authentik.openrc 6cb03b9b69df39bb4539fe05c966536314d766b2e9307a92d87070ba5f5b7e7ab70f1b5ee1ab3c0c50c23454f9c5a4caec29e63fdf411bbb7a124ad687569b89 authentik-worker.openrc 351e6920d987861f8bf0d7ab2f942db716a8dbdad1f690ac662a6ef29ac0fd46cf817cf557de08f1c024703503d36bc8b46f0d9eb1ecaeb399dce4c3bb527d17 authentik-ldap.openrc From 6b4003ebaa350ed595ca835185ab181e417ca734 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 22:35:04 -0400 Subject: [PATCH 23/33] ilot/authentik: upgrade to 2024.8.2 --- ilot/authentik/APKBUILD | 10 +++++++--- ilot/authentik/go-downgrade-1.22.patch | 15 +++++++++++++++ 2 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 ilot/authentik/go-downgrade-1.22.patch diff --git a/ilot/authentik/APKBUILD b/ilot/authentik/APKBUILD index 2727481..552b6dd 100644 --- a/ilot/authentik/APKBUILD +++ b/ilot/authentik/APKBUILD @@ -1,7 +1,7 @@ # Contributor: Antoine Martin (ayakael) # Maintainer: Antoine Martin (ayakael) pkgname=authentik -pkgver=2024.6.4 +pkgver=2024.8.2 pkgrel=0 pkgdesc="An open-source Identity Provider focused on flexibility and versatility" url="https://github.com/goauthentik/authentik" @@ -54,6 +54,7 @@ depends=" py3-deprecated py3-dnspython py3-django + py3-django-countries py3-django-cte py3-django-filter py3-django-guardian @@ -70,6 +71,7 @@ depends=" py3-dotenv py3-dumb-init py3-duo_client + py3-drf-orjson-renderer py3-drf-spectacular py3-email-validator py3-fido2 @@ -110,6 +112,7 @@ depends=" py3-pydantic-scim py3-pynacl py3-pyrsistent + py3-pyrad py3-python-jwt py3-redis py3-requests @@ -127,7 +130,6 @@ depends=" py3-swagger-spec-validator py3-tornado py3-twilio - py3-twisted py3-txaio py3-tenant-schemas-celery py3-typing-extensions @@ -168,6 +170,7 @@ source=" authentik-manage.sh fix-ak-bash.patch root-settings-csrf_trusted_origins.patch + go-downgrade-1.22.patch " builddir="$srcdir/"authentik-version-$pkgver subpackages="$pkgname-openrc $pkgname-doc" @@ -250,7 +253,7 @@ package() { } sha512sums=" -8939dd22097a0ac17d3d974788d1e4c2d363706ff07179a73c5bc03f42c4d45e92e562521212a5908b806fee103a8dcd613852cf36952f14e36f82e434e013ce authentik-2024.6.4.tar.gz +02e54183fa35e7a06780f68239db7b3b5e2ccd3c6e1fcaf97690d9b596077c7a5345dbb5b005f39ff67a0dae83bd9b71d1c6d18ba8fae9cc7174d5d856360bff authentik-2024.8.2.tar.gz 4defb4fe3a4230f4aa517fbecd5e5b8bcef2a64e1b40615660ae9eec33597310a09df5e126f4d39ce7764bd1716c0a7040637699135c103cbc1879593c6c06f1 authentik.openrc 6cb03b9b69df39bb4539fe05c966536314d766b2e9307a92d87070ba5f5b7e7ab70f1b5ee1ab3c0c50c23454f9c5a4caec29e63fdf411bbb7a124ad687569b89 authentik-worker.openrc 351e6920d987861f8bf0d7ab2f942db716a8dbdad1f690ac662a6ef29ac0fd46cf817cf557de08f1c024703503d36bc8b46f0d9eb1ecaeb399dce4c3bb527d17 authentik-ldap.openrc @@ -258,4 +261,5 @@ sha512sums=" f1a3cb215b6210fa7d857a452a9f2bc4dc0520e49b9fa7027547cff093d740a7e2548f1bf1f8831f7d5ccb80c8e523ee0c8bafcc4dc42d2788725f2137d21bee authentik-manage.sh 3e47db684a3f353dcecdb7bab8836b9d5198766735d77f676a51d952141a0cf9903fcb92e6306c48d2522d7a1f3028b37247fdc1dc74d4d6e043da7eb4f36d49 fix-ak-bash.patch 5c60e54b6a7829d611af66f5cb8184a002b5ae927efbd024c054a7c176fcb9efcfbe5685279ffcf0390b0f0abb3bb03e02782c6867c2b38d1ad2d508aae83fa0 root-settings-csrf_trusted_origins.patch +2cf7df44edfdbd9b0887efdc2fb2005d199470af2c16d7d5aef635760d63c34c948b58eabdb856a786a7ed4b127d1a19109c2ce6f186055ca4f19ac2637721fd go-downgrade-1.22.patch " diff --git a/ilot/authentik/go-downgrade-1.22.patch b/ilot/authentik/go-downgrade-1.22.patch new file mode 100644 index 0000000..a476cab --- /dev/null +++ b/ilot/authentik/go-downgrade-1.22.patch @@ -0,0 +1,15 @@ +diff --git a/go.mod.orig b/go.mod +index 65490a2..6de12af 100644 +--- a/go.mod.orig ++++ b/go.mod +@@ -1,8 +1,8 @@ + module goauthentik.io + +-go 1.23 ++go 1.22 + +-toolchain go1.23.0 ++toolchain go1.22.0 + + require ( + beryju.io/ldap v0.1.0 From 9530585161755e29070775846b9b076f3c12a9ec Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 15:46:01 -0400 Subject: [PATCH 24/33] ilot/py3-django-cte: new aport --- ilot/py3-django-cte/APKBUILD | 39 ++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 ilot/py3-django-cte/APKBUILD diff --git a/ilot/py3-django-cte/APKBUILD b/ilot/py3-django-cte/APKBUILD new file mode 100644 index 0000000..ec94c5c --- /dev/null +++ b/ilot/py3-django-cte/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-django-cte +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=django-cte +pkgver=1.3.3 +pkgrel=0 +pkgdesc="Common Table Expressions (CTE) for Django" +url="https://pypi.python.org/project/django-cte" +arch="noarch" +license="BSD-Clause-3" +depends="py3-django" +checkdepends="py3-pytest" +makedepends="py3-setuptools py3-gpep517 py3-wheel" +source="$pkgname-$pkgver.tar.gz::https://github.com/dimagi/django-cte/archive/refs/tags/v$pkgver.tar.gz" +options="!check" # Requires active psql +builddir="$srcdir/$_pkgreal-$pkgver" +subpackages="$pkgname-pyc" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + python3 -m venv --clear --without-pip --system-site-packages .testenv + .testenv/bin/python3 -m installer .dist/*.whl + DJANGO_SETTINGS_MODULE=tests.settings .testenv/bin/python3 -m pytest -v +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +543ca5d7ae546d00facadaccb23498534f9016ef7f1ce68cf0ca7640e8d0d4bbf0e1354e2d1b02d6787cc51c58098deda5783100ff9b8974fd9abe37ec662402 py3-django-cte-1.3.3.tar.gz +" From 5468f12b95fe70e8d11a81f3e1eae4f5dadfa8ea Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 18:22:22 -0400 Subject: [PATCH 25/33] ilot/py3-django-dynamic-fixture: new aport --- ilot/py3-django-dynamic-fixture/APKBUILD | 38 ++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 ilot/py3-django-dynamic-fixture/APKBUILD diff --git a/ilot/py3-django-dynamic-fixture/APKBUILD b/ilot/py3-django-dynamic-fixture/APKBUILD new file mode 100644 index 0000000..92533aa --- /dev/null +++ b/ilot/py3-django-dynamic-fixture/APKBUILD @@ -0,0 +1,38 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-django-dynamic-fixture +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=django-dynamic-fixture +pkgver=4.0.1 +pkgrel=0 +pkgdesc="A complete library to create dynamic model instances for testing purposes." +url="https://pypi.python.org/project/django-dynamic-fixture" +arch="noarch" +license="BDS-3-Clause" +depends="py3-django" +checkdepends="py3-pytest py3-pytest-django py3-pytest-cov py3-psycopg2" +makedepends="py3-setuptools py3-gpep517 py3-wheel poetry" +source="$pkgname-$pkgver.tar.gz::https://github.com/paulocheque/django-dynamic-fixture/archive/refs/tags/$pkgver.tar.gz" +builddir="$srcdir/$_pkgreal-$pkgver" +subpackages="$pkgname-pyc" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + python3 -m venv --clear --without-pip --system-site-packages .testenv + .testenv/bin/python3 -m installer .dist/*.whl + .testenv/bin/python3 -m pytest -v +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +e2a1a67459cf35f092b8f3e34a6162ef3334062f2f779df593f1f7e738371e28996a7e96d6a08397385a7b29d59be143284cf4a921cb2da972ee238d1ff6660d py3-django-dynamic-fixture-4.0.1.tar.gz +" From a364ba266de5f5e17e7db17a6529da54f74d83ae Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 18:22:34 -0400 Subject: [PATCH 26/33] ilot/py3-django-pgactivity: new aport --- ilot/py3-django-pgactivity/APKBUILD | 39 +++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 ilot/py3-django-pgactivity/APKBUILD diff --git a/ilot/py3-django-pgactivity/APKBUILD b/ilot/py3-django-pgactivity/APKBUILD new file mode 100644 index 0000000..58842a0 --- /dev/null +++ b/ilot/py3-django-pgactivity/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-django-pgactivity +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=django-pgactivity +pkgver=1.5.0 +pkgrel=0 +pkgdesc="View, filter, and kill Postgres queries." +url="https://pypi.python.org/project/django-pgactivity" +arch="noarch" +license="BDS-3-Clause" +depends="py3-django" +checkdepends="py3-pytest py3-pytest-cov py3-pytest-django py3-pytest-mock py3-django-extensions py3-dj-database-url py3-psycopg2 py3-typing-extensions py3-django-dynamic-fixture" +makedepends="py3-setuptools py3-gpep517 py3-wheel poetry" +options="!check" # requires database setup +source="$pkgname-$pkgver.tar.gz::https://github.com/Opus10/django-pgactivity/archive/refs/tags/$pkgver.tar.gz" +builddir="$srcdir/$_pkgreal-$pkgver" +subpackages="$pkgname-pyc" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + python3 -m venv --clear --without-pip --system-site-packages .testenv + .testenv/bin/python3 -m installer .dist/*.whl + .testenv/bin/python3 -m pytest -v +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +e052965e05878f75e790c30c4faeafec1900080f9d6119e20331c4418c3e9b6f2331b17b97902c41b538e88d6182466513674c33b146e2cbf566c56cbed20a81 py3-django-pgactivity-1.5.0.tar.gz +" From d70a1db2fd42786e98edf28499a15caa719dbc16 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 18:22:55 -0400 Subject: [PATCH 27/33] ilot/py3-django-pglock: new aport --- ilot/py3-django-pglock/APKBUILD | 40 +++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 ilot/py3-django-pglock/APKBUILD diff --git a/ilot/py3-django-pglock/APKBUILD b/ilot/py3-django-pglock/APKBUILD new file mode 100644 index 0000000..a1dea2e --- /dev/null +++ b/ilot/py3-django-pglock/APKBUILD @@ -0,0 +1,40 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-django-pglock +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=django-pglock +pkgver=1.6.2 +pkgrel=0 +pkgdesc="Postgres advisory locks, table locks, and blocking lock management." +url="https://pypi.python.org/project/django-pglock" +arch="noarch" +license="BDS-3-Clause" +depends="py3-django py3-django-pgactivity" +# missing py3-pytest-reraise py3-pytest-dotenv +checkdepends="py3-pytest py3-pytest-cov py3-pytest-django py3-pytest-mock py3-django-extensions py3-django-dynamic-fixture" +makedepends="py3-setuptools py3-gpep517 py3-wheel poetry" +source="$pkgname-$pkgver.tar.gz::https://github.com/Opus10/django-pglock/archive/refs/tags/$pkgver.tar.gz" +options="!check" # requires test database +builddir="$srcdir/$_pkgreal-$pkgver" +subpackages="$pkgname-pyc" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + python3 -m venv --clear --without-pip --system-site-packages .testenv + .testenv/bin/python3 -m installer .dist/*.whl + .testenv/bin/python3 -m pytest -v +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +f87914934c72686d38c175d9a617b96ded332d3ad2caa5e1d5f1dc9cd0e3444a50bf29d66b47162221fd9cd12a27056c8d3cad3154f4a09f69b3fd92becb896f py3-django-pglock-1.6.2.tar.gz +" From c6b0b9ddb98ddd233c62153730831b5aacab605d Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 18:23:11 -0400 Subject: [PATCH 28/33] ilot/authentik: upgrade to 2024.6.4 --- ilot/authentik/APKBUILD | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/ilot/authentik/APKBUILD b/ilot/authentik/APKBUILD index 615f078..2727481 100644 --- a/ilot/authentik/APKBUILD +++ b/ilot/authentik/APKBUILD @@ -1,7 +1,7 @@ # Contributor: Antoine Martin (ayakael) # Maintainer: Antoine Martin (ayakael) pkgname=authentik -pkgver=2024.4.4 +pkgver=2024.6.4 pkgrel=0 pkgdesc="An open-source Identity Provider focused on flexibility and versatility" url="https://github.com/goauthentik/authentik" @@ -54,11 +54,13 @@ depends=" py3-deprecated py3-dnspython py3-django + py3-django-cte py3-django-filter py3-django-guardian py3-django-model-utils py3-django-otp py3-django-prometheus + py3-django-pglock py3-django-redis py3-django-rest-framework~=3.14.0 py3-django-rest-framework-guardian @@ -70,12 +72,12 @@ depends=" py3-duo_client py3-drf-spectacular py3-email-validator - py3-facebook-sdk py3-fido2 py3-flower py3-frozenlist py3-geoip2 py3-google-auth + py3-google-api-python-client py3-gunicorn py3-h11 py3-httptools @@ -93,6 +95,7 @@ depends=" py3-lxml py3-maxminddb py3-msgpack + py3-msgraph-sdk py3-multidict py3-oauthlib py3-opencontainers @@ -247,7 +250,7 @@ package() { } sha512sums=" -22c8ff16b93b9fcb84478b6476dd4f6413719037affc7756f20ba1dc3afff1fbaae2f1fc89d7b3a9c4372fcc856009d8a4ef5eb7854855e4528523fb456a2491 authentik-2024.4.4.tar.gz +8939dd22097a0ac17d3d974788d1e4c2d363706ff07179a73c5bc03f42c4d45e92e562521212a5908b806fee103a8dcd613852cf36952f14e36f82e434e013ce authentik-2024.6.4.tar.gz 4defb4fe3a4230f4aa517fbecd5e5b8bcef2a64e1b40615660ae9eec33597310a09df5e126f4d39ce7764bd1716c0a7040637699135c103cbc1879593c6c06f1 authentik.openrc 6cb03b9b69df39bb4539fe05c966536314d766b2e9307a92d87070ba5f5b7e7ab70f1b5ee1ab3c0c50c23454f9c5a4caec29e63fdf411bbb7a124ad687569b89 authentik-worker.openrc 351e6920d987861f8bf0d7ab2f942db716a8dbdad1f690ac662a6ef29ac0fd46cf817cf557de08f1c024703503d36bc8b46f0d9eb1ecaeb399dce4c3bb527d17 authentik-ldap.openrc From 309c461e67a5e53de292951dd3eb3ec091560136 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 22:06:07 -0400 Subject: [PATCH 29/33] ilot/py3-django-tenants: fix license --- ilot/py3-django-tenants/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ilot/py3-django-tenants/APKBUILD b/ilot/py3-django-tenants/APKBUILD index 167cc81..a0c82f0 100644 --- a/ilot/py3-django-tenants/APKBUILD +++ b/ilot/py3-django-tenants/APKBUILD @@ -4,11 +4,11 @@ pkgname=py3-django-tenants #_pkgreal is used by apkbuild-pypi to find modules at PyPI _pkgreal=django-tenants pkgver=3.6.1 -pkgrel=2 +pkgrel=3 pkgdesc="Tenant support for Django using PostgreSQL schemas." url="https://pypi.python.org/project/django-tenants" arch="noarch" -license="KIT" +license="MIT" depends="py3-django py3-psycopg py3-gunicorn py3-coverage" checkdepends="python3-dev py3-pytest" makedepends="py3-setuptools py3-gpep517 py3-wheel" From 47c5ff9e92c5570416f63160f7df47c6d05125d9 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 22:11:58 -0400 Subject: [PATCH 30/33] ilot/py3-django-countries: new aport --- ilot/py3-django-countries/APKBUILD | 40 ++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 ilot/py3-django-countries/APKBUILD diff --git a/ilot/py3-django-countries/APKBUILD b/ilot/py3-django-countries/APKBUILD new file mode 100644 index 0000000..67e36b5 --- /dev/null +++ b/ilot/py3-django-countries/APKBUILD @@ -0,0 +1,40 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-django-countries +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=django-countries +pkgver=7.6.1 +pkgrel=0 +pkgdesc="Provides a country field for Django models." +url="https://pypi.python.org/project/django-countries" +arch="noarch" +license="MIT" +depends="py3-django py3-asgiref py3-typing-extensions" +# missing py3-graphene +checkdepends="py3-pytest-django py3-pytest-cov py3-django-rest-framework" +makedepends="py3-setuptools py3-gpep517 py3-wheel" +source="$pkgname-$pkgver.tar.gz::https://github.com/SmileyChris/django-countries/archive/refs/tags/v$pkgver.tar.gz" +options="!check" # TODO +builddir="$srcdir/$_pkgreal-$pkgver" +subpackages="$pkgname-pyc" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + python3 -m venv --clear --without-pip --system-site-packages .testenv + .testenv/bin/python3 -m installer .dist/*.whl + .testenv/bin/python3 -m pytest -v +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +53c7db02244aad196c141d1d04db5087c802d69d12de25e86fe0b2abdfb4ce9ed6ec84b6344c423dc6e7d2e57c2bb14a5324739c7cead54ec7d261e7e3fe6112 py3-django-countries-7.6.1.tar.gz +" From 5c1c64550bd9a28cf771a5e3ed6d50a78488a9c1 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 22:22:08 -0400 Subject: [PATCH 31/33] ilot/py3-drf-orjson-renderer: new aport --- ilot/py3-drf-orjson-renderer/APKBUILD | 39 +++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 ilot/py3-drf-orjson-renderer/APKBUILD diff --git a/ilot/py3-drf-orjson-renderer/APKBUILD b/ilot/py3-drf-orjson-renderer/APKBUILD new file mode 100644 index 0000000..52a7c47 --- /dev/null +++ b/ilot/py3-drf-orjson-renderer/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-drf-orjson-renderer +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=drf_orjson_renderer +pkgver=1.7.3 +_gittag=9a59352f82e262bd78ccc0228361bcb321a33623 +pkgrel=0 +pkgdesc="Django RestFramework JSON Renderer Backed by orjson" +url="https://pypi.python.org/project/drf-orjson-renderer" +arch="noarch" +license="MIT" +depends="py3-django-rest-framework py3-orjson" +checkdepends="py3-pytest-django py3-numpy" +makedepends="py3-setuptools py3-gpep517 py3-wheel" +source="$pkgname-$pkgver.tar.gz::https://github.com/brianjbuck/drf_orjson_renderer/archive/$_gittag.tar.gz" +builddir="$srcdir/$_pkgreal-$_gittag" +subpackages="$pkgname-pyc" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + python3 -m venv --clear --without-pip --system-site-packages .testenv + .testenv/bin/python3 -m installer .dist/*.whl + .testenv/bin/python3 -m pytest -v +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +7870aebf6bcc249228b1620f4b50124eef54e251dcac236e23be4287284461617d630b073d2e9122f66779a908dfd69c5e16b486b23de0114b06b3df6b468e95 py3-drf-orjson-renderer-1.7.3.tar.gz +" From fda327f5ddb311921100d5d617f080231f6a11ca Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 22:26:27 -0400 Subject: [PATCH 32/33] ilot/py3-pyrad: new aport --- ilot/py3-pyrad/APKBUILD | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 ilot/py3-pyrad/APKBUILD diff --git a/ilot/py3-pyrad/APKBUILD b/ilot/py3-pyrad/APKBUILD new file mode 100644 index 0000000..748ef46 --- /dev/null +++ b/ilot/py3-pyrad/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-pyrad +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=pyrad +pkgver=2.4 +pkgrel=0 +pkgdesc="Python RADIUS Implementation" +url="https://pypi.python.org/project/pyrad" +arch="noarch" +license="BSD-3-Clause" +depends="python3" +checkdepends="py3-pytest" +makedepends="py3-setuptools py3-gpep517 py3-wheel poetry" +source="$pkgname-$pkgver.tar.gz::https://github.com/pyradius/pyrad/archive/refs/tags/$pkgver.tar.gz" +options="!check" # TODO +builddir="$srcdir/$_pkgreal-$pkgver" +subpackages="$pkgname-pyc" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +check() { + python3 -m venv --clear --without-pip --system-site-packages .testenv + .testenv/bin/python3 -m installer .dist/*.whl + .testenv/bin/python3 -m pytest -v +} + +package() { + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +e4f4c687596bd226cf2cdb409a8d940c7b665fb7f722d09113dd9a1b05ab176ce8f920b235918ec01695f262930d13b4057b199cf6aac72afa54950c1fb59166 py3-pyrad-2.4.tar.gz +" From eeaf974b17711ba973aa7f85f324ee4ab72e5218 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 22:35:04 -0400 Subject: [PATCH 33/33] ilot/authentik: upgrade to 2024.8.2 --- ilot/authentik/APKBUILD | 10 +++++++--- ilot/authentik/go-downgrade-1.22.patch | 15 +++++++++++++++ 2 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 ilot/authentik/go-downgrade-1.22.patch diff --git a/ilot/authentik/APKBUILD b/ilot/authentik/APKBUILD index 2727481..552b6dd 100644 --- a/ilot/authentik/APKBUILD +++ b/ilot/authentik/APKBUILD @@ -1,7 +1,7 @@ # Contributor: Antoine Martin (ayakael) # Maintainer: Antoine Martin (ayakael) pkgname=authentik -pkgver=2024.6.4 +pkgver=2024.8.2 pkgrel=0 pkgdesc="An open-source Identity Provider focused on flexibility and versatility" url="https://github.com/goauthentik/authentik" @@ -54,6 +54,7 @@ depends=" py3-deprecated py3-dnspython py3-django + py3-django-countries py3-django-cte py3-django-filter py3-django-guardian @@ -70,6 +71,7 @@ depends=" py3-dotenv py3-dumb-init py3-duo_client + py3-drf-orjson-renderer py3-drf-spectacular py3-email-validator py3-fido2 @@ -110,6 +112,7 @@ depends=" py3-pydantic-scim py3-pynacl py3-pyrsistent + py3-pyrad py3-python-jwt py3-redis py3-requests @@ -127,7 +130,6 @@ depends=" py3-swagger-spec-validator py3-tornado py3-twilio - py3-twisted py3-txaio py3-tenant-schemas-celery py3-typing-extensions @@ -168,6 +170,7 @@ source=" authentik-manage.sh fix-ak-bash.patch root-settings-csrf_trusted_origins.patch + go-downgrade-1.22.patch " builddir="$srcdir/"authentik-version-$pkgver subpackages="$pkgname-openrc $pkgname-doc" @@ -250,7 +253,7 @@ package() { } sha512sums=" -8939dd22097a0ac17d3d974788d1e4c2d363706ff07179a73c5bc03f42c4d45e92e562521212a5908b806fee103a8dcd613852cf36952f14e36f82e434e013ce authentik-2024.6.4.tar.gz +02e54183fa35e7a06780f68239db7b3b5e2ccd3c6e1fcaf97690d9b596077c7a5345dbb5b005f39ff67a0dae83bd9b71d1c6d18ba8fae9cc7174d5d856360bff authentik-2024.8.2.tar.gz 4defb4fe3a4230f4aa517fbecd5e5b8bcef2a64e1b40615660ae9eec33597310a09df5e126f4d39ce7764bd1716c0a7040637699135c103cbc1879593c6c06f1 authentik.openrc 6cb03b9b69df39bb4539fe05c966536314d766b2e9307a92d87070ba5f5b7e7ab70f1b5ee1ab3c0c50c23454f9c5a4caec29e63fdf411bbb7a124ad687569b89 authentik-worker.openrc 351e6920d987861f8bf0d7ab2f942db716a8dbdad1f690ac662a6ef29ac0fd46cf817cf557de08f1c024703503d36bc8b46f0d9eb1ecaeb399dce4c3bb527d17 authentik-ldap.openrc @@ -258,4 +261,5 @@ sha512sums=" f1a3cb215b6210fa7d857a452a9f2bc4dc0520e49b9fa7027547cff093d740a7e2548f1bf1f8831f7d5ccb80c8e523ee0c8bafcc4dc42d2788725f2137d21bee authentik-manage.sh 3e47db684a3f353dcecdb7bab8836b9d5198766735d77f676a51d952141a0cf9903fcb92e6306c48d2522d7a1f3028b37247fdc1dc74d4d6e043da7eb4f36d49 fix-ak-bash.patch 5c60e54b6a7829d611af66f5cb8184a002b5ae927efbd024c054a7c176fcb9efcfbe5685279ffcf0390b0f0abb3bb03e02782c6867c2b38d1ad2d508aae83fa0 root-settings-csrf_trusted_origins.patch +2cf7df44edfdbd9b0887efdc2fb2005d199470af2c16d7d5aef635760d63c34c948b58eabdb856a786a7ed4b127d1a19109c2ce6f186055ca4f19ac2637721fd go-downgrade-1.22.patch " diff --git a/ilot/authentik/go-downgrade-1.22.patch b/ilot/authentik/go-downgrade-1.22.patch new file mode 100644 index 0000000..a476cab --- /dev/null +++ b/ilot/authentik/go-downgrade-1.22.patch @@ -0,0 +1,15 @@ +diff --git a/go.mod.orig b/go.mod +index 65490a2..6de12af 100644 +--- a/go.mod.orig ++++ b/go.mod +@@ -1,8 +1,8 @@ + module goauthentik.io + +-go 1.23 ++go 1.22 + +-toolchain go1.23.0 ++toolchain go1.22.0 + + require ( + beryju.io/ldap v0.1.0