From f5b189f460cf5d21c8def4a8421828a0ef7db5ce Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Sun, 1 Dec 2024 15:00:08 -0500 Subject: [PATCH] ilot/py3-pyrad: drop due to in community --- ilot/py3-pyrad/APKBUILD | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 ilot/py3-pyrad/APKBUILD diff --git a/ilot/py3-pyrad/APKBUILD b/ilot/py3-pyrad/APKBUILD deleted file mode 100644 index 21a2d72..0000000 --- a/ilot/py3-pyrad/APKBUILD +++ /dev/null @@ -1,39 +0,0 @@ -# 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="py3-netaddr" -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 -"