diff --git a/python-pluggy/PKGBUILD b/python-pluggy/PKGBUILD index 4f225ea4..064df0b9 100644 --- a/python-pluggy/PKGBUILD +++ b/python-pluggy/PKGBUILD @@ -4,7 +4,7 @@ _realname=pluggy pkgbase=python-pluggy pkgname=(python-${_realname}) pkgver=1.3.0 -pkgrel=1 +pkgrel=2 pkgdesc="Plugin and hook calling mechanisms for python" arch=('any') url="https://github.com/pytest-dev/pluggy" @@ -17,7 +17,6 @@ makedepends=( 'python-build' 'python-installer' ) -checkdepends=('python-pytest-runner') provides=("python3-${_realname}") replaces=("python3-${_realname}") conflicts=("python3-${_realname}") diff --git a/python-pytest-runner/PKGBUILD b/python-pytest-runner/PKGBUILD deleted file mode 100644 index e7c3b3bb..00000000 --- a/python-pytest-runner/PKGBUILD +++ /dev/null @@ -1,33 +0,0 @@ -# Maintainer: J. Peter Mugaas - -_realname=pytest-runner -pkgbase=python-${_realname} -pkgname=("python-${_realname}") -pkgver=6.0.1 -pkgrel=1 -pkgdesc="Invoke py.test as distutils command with dependency resolution" -arch=('any') -license=('MIT') -url="https://github.com/pytest-dev/pytest-runner" -depends=('python-pytest') -makedepends=('python-build' 'python-installer' 'python-setuptools' 'python-setuptools-scm' 'python-wheel') -provides=("python3-${_realname}") -replaces=("python3-${_realname}") -conflicts=("python3-${_realname}") -source=("https://pypi.org/packages/source/p/pytest-runner/pytest-runner-$pkgver.tar.gz") -sha512sums=('06708acca31649eee1495ddd81f8bb807fe6c5ffde06c437884ac6d3e28b4e0351a202a453fa6660a5fb7dde8609ea2fffefc568c24dbd000d38d984f38e1c94') - -prepare() { - export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver -} - -build() { - cd "${srcdir}/${_realname}-${pkgver}" - /usr/bin/python -m build --wheel --skip-dependency-check --no-isolation -} - -package() { - cd "${srcdir}/${_realname}-${pkgver}" - /usr/bin/python -m installer --destdir="${pkgdir}" dist/*.whl - install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE -}