From 4c430abe17f8ff24f49e4bb4bca58eafa26de7be Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 29 Oct 2024 07:26:47 -0400 Subject: [PATCH] ilot/py3-django-dynamic-fixture: drop due to inclusion in community --- ilot/py3-django-dynamic-fixture/APKBUILD | 38 ------------------------ 1 file changed, 38 deletions(-) delete mode 100644 ilot/py3-django-dynamic-fixture/APKBUILD diff --git a/ilot/py3-django-dynamic-fixture/APKBUILD b/ilot/py3-django-dynamic-fixture/APKBUILD deleted file mode 100644 index 92533aa..0000000 --- a/ilot/py3-django-dynamic-fixture/APKBUILD +++ /dev/null @@ -1,38 +0,0 @@ -# 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 -"