From 942da57349cd9b7ec7557c7c55e853fd2d266ffa Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 20:42:31 -0400 Subject: [PATCH 01/24] 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 9ff99e55fc5aaf645f28717ba5e902e09ec781dc Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 20:42:36 -0400 Subject: [PATCH 02/24] 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..2c5545d --- /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 081edd6b271a957d7e617108f9a0a7fc6a29fc54 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 20:42:38 -0400 Subject: [PATCH 03/24] ilot/py3-microsoft-kiota-abstractions: new aport --- .../py3-microsoft-kiota-abstractions/APKBUILD | 41 +++++++++++++++++++ 1 file changed, 41 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..b19da62 --- /dev/null +++ b/ilot/py3-microsoft-kiota-abstractions/APKBUILD @@ -0,0 +1,41 @@ +# 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-uritemplate + py3-opentelemetry-sdk + " +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 dca6c9be18f7eb41ec5ae6339d1ac988bd9123fc Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 20:42:40 -0400 Subject: [PATCH 04/24] ilot/py3-microsoft-kiota-authentication-azure: new aport --- .../APKBUILD | 41 +++++++++++++++++++ 1 file changed, 41 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..a3e12d0 --- /dev/null +++ b/ilot/py3-microsoft-kiota-authentication-azure/APKBUILD @@ -0,0 +1,41 @@ +# 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 + " +checkdepends="py3-pytest" +makedepends="py3-setuptools py3-gpep517 py3-wheel py3-flit" +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 61a2b8a079ccd5d9cd443dac06865e55562e8bd4 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 20:42:43 -0400 Subject: [PATCH 05/24] ilot/py3-microsoft-kiota-http: new aport --- ilot/py3-microsoft-kiota-http/APKBUILD | 41 ++++++++++++++++++++++++++ 1 file changed, 41 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..085d9c7 --- /dev/null +++ b/ilot/py3-microsoft-kiota-http/APKBUILD @@ -0,0 +1,41 @@ +# 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" +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 f826867661ee10f9a21ed33ab569c795d42d34a4 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 20:42:45 -0400 Subject: [PATCH 06/24] 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 902c60f1c86a8eccd722c12f301d11ead916dacb Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 20:42:47 -0400 Subject: [PATCH 07/24] ilot/py3-microsoft-kiota-serialization-json: new aport --- .../APKBUILD | 41 +++++++++++++++++++ 1 file changed, 41 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..33524bc --- /dev/null +++ b/ilot/py3-microsoft-kiota-serialization-json/APKBUILD @@ -0,0 +1,41 @@ +# 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" +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-serialization-json-1.3.2.tar.gz +" From ca9ac1f4829650ae68e1241ff716fa81e0bfd0d6 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 20:42:50 -0400 Subject: [PATCH 08/24] 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..a8035f0 --- /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" +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 b3114cb44c30e4a42a5be1823562cd5aa4c9a6fe Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 20:42:53 -0400 Subject: [PATCH 09/24] 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 8ccb010ee289382e8e8e22e4f4483c54fc14ebdf Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 20:42:55 -0400 Subject: [PATCH 10/24] 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 2fcdb05587af91fd82fd609ae8cae2dec584a435 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 20:42:58 -0400 Subject: [PATCH 11/24] 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 829aa2e8b70d7607ef63e31a69ea8d177b783fc1 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 20:43:00 -0400 Subject: [PATCH 12/24] ilot/py3-msgraph-core: new aport --- ilot/py3-msgraph-core/APKBUILD | 41 ++++++++++++++++++++++++++++++++++ 1 file changed, 41 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..9a788cc --- /dev/null +++ b/ilot/py3-msgraph-core/APKBUILD @@ -0,0 +1,41 @@ +# 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-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" +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 0e17f9e40651678220432769743ad078ec11e134 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 20:43:02 -0400 Subject: [PATCH 13/24] ilot/py3-msgraph-sdk: new aport --- ilot/py3-msgraph-sdk/APKBUILD | 45 +++++++++++++++++++++++++++++++++++ 1 file changed, 45 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..d087aa5 --- /dev/null +++ b/ilot/py3-msgraph-sdk/APKBUILD @@ -0,0 +1,45 @@ +# 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-azure-identity + py3-microsoft-kiota-serialization-json + 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/$pkgver.tar.gz" +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 9b96dcf8727b17e55d600d0b6f9541d8d6363846 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 20:43:05 -0400 Subject: [PATCH 14/24] ilot/py3-opentelemetry: new aport --- ilot/py3-opentelemetry/APKBUILD | 75 +++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 ilot/py3-opentelemetry/APKBUILD diff --git a/ilot/py3-opentelemetry/APKBUILD b/ilot/py3-opentelemetry/APKBUILD new file mode 100644 index 0000000..f443154 --- /dev/null +++ b/ilot/py3-opentelemetry/APKBUILD @@ -0,0 +1,75 @@ +# Contributor: Antoine Martin (ayakael) +# Maintainer: Antoine Martin (ayakael) +pkgname=py3-opentelemetry-api +#_pkgreal is used by apkbuild-pypi to find modules at PyPI +_pkgreal=opentelemetry-api +pkgver=1.27.0 +pkgrel=0 +pkgdesc="OpenTelemetry Python API" +url="https://github.com/open-telemetry/opentelemetry-python/tree/main" +arch="noarch" +license="Apache-2.0" +depends="py3-deprecated" +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-sdk + 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-api + python3 -m installer -d "$pkgdir" \ + .dist/*.whl +} + +sdk() { + pkgdesc="OpenTelemetry Python SDK" + depends="py3-opentelemetry-semantic-conventions py3-typing-extensions" + cd "$builddir"/opentelemetry-sdk + 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-api-1.27.0.tar.gz +" From c12cd14e1393d0f3441086b97844eaf3f8dccc9a Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 20:49:08 -0400 Subject: [PATCH 15/24] lint --- ilot/py3-azure-identity/APKBUILD | 4 ++-- ilot/py3-microsoft-kiota-http/APKBUILD | 2 +- ilot/py3-microsoft-kiota-serialization-json/APKBUILD | 2 +- ilot/py3-msgraph-sdk/APKBUILD | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ilot/py3-azure-identity/APKBUILD b/ilot/py3-azure-identity/APKBUILD index 2c5545d..e448e38 100644 --- a/ilot/py3-azure-identity/APKBUILD +++ b/ilot/py3-azure-identity/APKBUILD @@ -19,8 +19,8 @@ depends=" 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 +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() { diff --git a/ilot/py3-microsoft-kiota-http/APKBUILD b/ilot/py3-microsoft-kiota-http/APKBUILD index 085d9c7..1a63d83 100644 --- a/ilot/py3-microsoft-kiota-http/APKBUILD +++ b/ilot/py3-microsoft-kiota-http/APKBUILD @@ -11,7 +11,7 @@ arch="noarch" license="MIT" depends=" py3-microsoft-kiota-abstractions - py3-httpx + py3-httpx " checkdepends="py3-pytest" makedepends="py3-setuptools py3-gpep517 py3-wheel py3-flit" diff --git a/ilot/py3-microsoft-kiota-serialization-json/APKBUILD b/ilot/py3-microsoft-kiota-serialization-json/APKBUILD index 33524bc..0637ff3 100644 --- a/ilot/py3-microsoft-kiota-serialization-json/APKBUILD +++ b/ilot/py3-microsoft-kiota-serialization-json/APKBUILD @@ -37,5 +37,5 @@ package() { } sha512sums=" -bdf2a42d4509b7a6f093295c8f5d661e771d040965ebdd7fb7772503482fbc6d449c5ac7b16f5f497d9005018d463d3a68650b4b4da0f1a7fbcb0ad3377d12b5 py3-microsoft-serialization-json-1.3.2.tar.gz +bdf2a42d4509b7a6f093295c8f5d661e771d040965ebdd7fb7772503482fbc6d449c5ac7b16f5f497d9005018d463d3a68650b4b4da0f1a7fbcb0ad3377d12b5 py3-microsoft-kiota-serialization-json-1.3.2.tar.gz " diff --git a/ilot/py3-msgraph-sdk/APKBUILD b/ilot/py3-msgraph-sdk/APKBUILD index d087aa5..512f7a1 100644 --- a/ilot/py3-msgraph-sdk/APKBUILD +++ b/ilot/py3-msgraph-sdk/APKBUILD @@ -15,7 +15,7 @@ depends=" py3-microsoft-kiota-serialization-text py3-microsoft-kiota-serialization-form py3-microsoft-kiota-serialization-multipart - py3-msgraph-core + py3-msgraph-core " checkdepends="py3-pytest" makedepends="py3-setuptools py3-gpep517 py3-wheel py3-flit" From 6f559543deed58c252a3dc3e28aa9328ef10aff3 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 20:54:28 -0400 Subject: [PATCH 16/24] opentelemetry --- .../APKBUILD | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) rename ilot/{py3-opentelemetry => py3-opentelemetry-sdk}/APKBUILD (88%) diff --git a/ilot/py3-opentelemetry/APKBUILD b/ilot/py3-opentelemetry-sdk/APKBUILD similarity index 88% rename from ilot/py3-opentelemetry/APKBUILD rename to ilot/py3-opentelemetry-sdk/APKBUILD index f443154..e1fc583 100644 --- a/ilot/py3-opentelemetry/APKBUILD +++ b/ilot/py3-opentelemetry-sdk/APKBUILD @@ -1,15 +1,15 @@ # Contributor: Antoine Martin (ayakael) # Maintainer: Antoine Martin (ayakael) -pkgname=py3-opentelemetry-api +pkgname=py3-opentelemetry-sdk #_pkgreal is used by apkbuild-pypi to find modules at PyPI -_pkgreal=opentelemetry-api +_pkgreal=opentelemetry-sdk pkgver=1.27.0 pkgrel=0 -pkgdesc="OpenTelemetry Python API" +pkgdesc="OpenTelemetry Python SDK" url="https://github.com/open-telemetry/opentelemetry-python/tree/main" arch="noarch" license="Apache-2.0" -depends="py3-deprecated" +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" @@ -18,7 +18,7 @@ options="!check" # TODO # need to figure out -pyc subpackages=" $pkgname-pyc - py3-opentelemetry-sdk + py3-opentelemetry-api py3-opentelemetry-semantic-conventions py3-opentelemetry-proto " @@ -41,15 +41,15 @@ check() { } package() { - cd "$builddir"/opentelemetry-api + cd "$builddir"/opentelemetry-sdk python3 -m installer -d "$pkgdir" \ .dist/*.whl } -sdk() { - pkgdesc="OpenTelemetry Python SDK" - depends="py3-opentelemetry-semantic-conventions py3-typing-extensions" - cd "$builddir"/opentelemetry-sdk +api() { + depends="py3-deprecated" + pkgdesc="OpenTelemetry Python API" + cd "$builddir"/opentelemetry-api python3 -m installer -d "$subpkgdir" \ .dist/*.whl } From 70a8c2b06036c52ef49a401d12079d5f7c701c00 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 20:57:09 -0400 Subject: [PATCH 17/24] chksum --- ilot/py3-opentelemetry-sdk/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ilot/py3-opentelemetry-sdk/APKBUILD b/ilot/py3-opentelemetry-sdk/APKBUILD index e1fc583..14a474c 100644 --- a/ilot/py3-opentelemetry-sdk/APKBUILD +++ b/ilot/py3-opentelemetry-sdk/APKBUILD @@ -71,5 +71,5 @@ proto() { } sha512sums=" -d8b5a617c7e804b4e6e1b508395e87481a3dcc3b375573110750830a1cf6037cfeb5c09dba3e7cfa472e385dbf619afedd79b1c31c5bfe4e87d44ea65f4d2f0b py3-opentelemetry-api-1.27.0.tar.gz +d8b5a617c7e804b4e6e1b508395e87481a3dcc3b375573110750830a1cf6037cfeb5c09dba3e7cfa472e385dbf619afedd79b1c31c5bfe4e87d44ea65f4d2f0b py3-opentelemetry-sdk-1.27.0.tar.gz " From 47635e19362806b3871c9d3d8ad73a177eba77a5 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 21:00:16 -0400 Subject: [PATCH 18/24] abstractions --- ilot/py3-microsoft-kiota-abstractions/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ilot/py3-microsoft-kiota-abstractions/APKBUILD b/ilot/py3-microsoft-kiota-abstractions/APKBUILD index b19da62..7bed6ca 100644 --- a/ilot/py3-microsoft-kiota-abstractions/APKBUILD +++ b/ilot/py3-microsoft-kiota-abstractions/APKBUILD @@ -14,7 +14,7 @@ depends=" py3-opentelemetry-sdk " checkdepends="py3-pytest" -makedepends="py3-setuptools py3-gpep517 py3-wheel py3-flit" +makedepends="py3-setuptools py3-gpep517 py3-wheel py3-flit py3-importlib-metadata" 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" From 925c7106f067c5751624d7a353ac1d42ef896a17 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 21:10:58 -0400 Subject: [PATCH 19/24] 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 c254ec59753606988e7dba48b7d08a898d3812b4 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 21:11:06 -0400 Subject: [PATCH 20/24] abstractions --- ilot/py3-microsoft-kiota-abstractions/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ilot/py3-microsoft-kiota-abstractions/APKBUILD b/ilot/py3-microsoft-kiota-abstractions/APKBUILD index 7bed6ca..cc8a47d 100644 --- a/ilot/py3-microsoft-kiota-abstractions/APKBUILD +++ b/ilot/py3-microsoft-kiota-abstractions/APKBUILD @@ -10,7 +10,7 @@ url="https://pypi.python.org/project/microsoft-kiota-abstractions" arch="noarch" license="MIT" depends=" - py3-uritemplate + py3-std-uritemplate py3-opentelemetry-sdk " checkdepends="py3-pytest" From ba74e2d7a5d8efa96a5961a39c3be3401d66b5ac Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 21:15:54 -0400 Subject: [PATCH 21/24] importa --- ilot/py3-microsoft-kiota-abstractions/APKBUILD | 3 ++- ilot/py3-microsoft-kiota-authentication-azure/APKBUILD | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ilot/py3-microsoft-kiota-abstractions/APKBUILD b/ilot/py3-microsoft-kiota-abstractions/APKBUILD index cc8a47d..b298650 100644 --- a/ilot/py3-microsoft-kiota-abstractions/APKBUILD +++ b/ilot/py3-microsoft-kiota-abstractions/APKBUILD @@ -12,9 +12,10 @@ license="MIT" depends=" py3-std-uritemplate py3-opentelemetry-sdk + py3-importlib-metadata " checkdepends="py3-pytest" -makedepends="py3-setuptools py3-gpep517 py3-wheel py3-flit py3-importlib-metadata" +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" diff --git a/ilot/py3-microsoft-kiota-authentication-azure/APKBUILD b/ilot/py3-microsoft-kiota-authentication-azure/APKBUILD index a3e12d0..083e4e0 100644 --- a/ilot/py3-microsoft-kiota-authentication-azure/APKBUILD +++ b/ilot/py3-microsoft-kiota-authentication-azure/APKBUILD @@ -12,6 +12,7 @@ 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" From 484650ff2e9999e910f8401ff06238976b55d10c Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 21:20:58 -0400 Subject: [PATCH 22/24] azure --- ilot/py3-microsoft-kiota-authentication-azure/APKBUILD | 1 + 1 file changed, 1 insertion(+) diff --git a/ilot/py3-microsoft-kiota-authentication-azure/APKBUILD b/ilot/py3-microsoft-kiota-authentication-azure/APKBUILD index 083e4e0..2149918 100644 --- a/ilot/py3-microsoft-kiota-authentication-azure/APKBUILD +++ b/ilot/py3-microsoft-kiota-authentication-azure/APKBUILD @@ -16,6 +16,7 @@ depends=" " 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" From aa0d033c5d98d952890c2512ba420263c3de6775 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 21:32:39 -0400 Subject: [PATCH 23/24] http --- ilot/py3-microsoft-kiota-http/APKBUILD | 1 + 1 file changed, 1 insertion(+) diff --git a/ilot/py3-microsoft-kiota-http/APKBUILD b/ilot/py3-microsoft-kiota-http/APKBUILD index 1a63d83..e1ded6f 100644 --- a/ilot/py3-microsoft-kiota-http/APKBUILD +++ b/ilot/py3-microsoft-kiota-http/APKBUILD @@ -16,6 +16,7 @@ depends=" 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" From 168aa05d562d0722750af61bc4ff482ae8b15a3d Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 18 Sep 2024 21:37:38 -0400 Subject: [PATCH 24/24] check --- ilot/py3-microsoft-kiota-serialization-json/APKBUILD | 1 + ilot/py3-microsoft-kiota-serialization-multipart/APKBUILD | 2 +- ilot/py3-msgraph-core/APKBUILD | 2 ++ ilot/py3-msgraph-sdk/APKBUILD | 3 +-- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ilot/py3-microsoft-kiota-serialization-json/APKBUILD b/ilot/py3-microsoft-kiota-serialization-json/APKBUILD index 0637ff3..8efe8fa 100644 --- a/ilot/py3-microsoft-kiota-serialization-json/APKBUILD +++ b/ilot/py3-microsoft-kiota-serialization-json/APKBUILD @@ -16,6 +16,7 @@ depends=" 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" diff --git a/ilot/py3-microsoft-kiota-serialization-multipart/APKBUILD b/ilot/py3-microsoft-kiota-serialization-multipart/APKBUILD index a8035f0..bf088b7 100644 --- a/ilot/py3-microsoft-kiota-serialization-multipart/APKBUILD +++ b/ilot/py3-microsoft-kiota-serialization-multipart/APKBUILD @@ -9,7 +9,7 @@ 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" +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" diff --git a/ilot/py3-msgraph-core/APKBUILD b/ilot/py3-msgraph-core/APKBUILD index 9a788cc..affc2a5 100644 --- a/ilot/py3-msgraph-core/APKBUILD +++ b/ilot/py3-msgraph-core/APKBUILD @@ -10,12 +10,14 @@ 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" diff --git a/ilot/py3-msgraph-sdk/APKBUILD b/ilot/py3-msgraph-sdk/APKBUILD index 512f7a1..551301a 100644 --- a/ilot/py3-msgraph-sdk/APKBUILD +++ b/ilot/py3-msgraph-sdk/APKBUILD @@ -10,8 +10,6 @@ url="https://pypi.python.org/project/msgraph-sdk" arch="noarch" license="MIT" depends=" - py3-azure-identity - py3-microsoft-kiota-serialization-json py3-microsoft-kiota-serialization-text py3-microsoft-kiota-serialization-form py3-microsoft-kiota-serialization-multipart @@ -20,6 +18,7 @@ depends=" 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/$pkgver.tar.gz" +options="!check" # TODO builddir="$srcdir/$_pkgreal-python-$pkgver" subpackages="$pkgname-pyc"