Date: Tuesday, January 10, 2023 @ 20:07:03 Author: felixonmars Revision: 1382363
upgpkg: python-toposort 1.8-1 Modified: python-toposort/trunk/PKGBUILD ----------+ PKGBUILD | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2023-01-10 19:12:35 UTC (rev 1382362) +++ PKGBUILD 2023-01-10 20:07:03 UTC (rev 1382363) @@ -1,20 +1,20 @@ # Maintainer: Felix Yan <[email protected]> pkgname=python-toposort -pkgver=1.7 -pkgrel=3 +pkgver=1.8 +pkgrel=1 pkgdesc='Implements a topological sort algorithm' arch=('any') license=('Apache') url='https://gitlab.com/ericvsmith/toposort' depends=('python') -makedepends=('python-pyproject2setuppy') -source=("https://pypi.io/packages/source/t/toposort/toposort-$pkgver.tar.gz") -sha512sums=('a585d1c103b2162fa3f37f6b0ef60a8709f08d9543d7fab619af3718bf9f752a293e50061d370fd08872b2d8a8db504cb9d9c1cce5446885b46fe8e833813833') +makedepends=('python-build' 'python-installer' 'python-setuptools' 'python-wheel') +source=("https://gitlab.com/ericvsmith/toposort/-/archive/$pkgver/toposort-$pkgver.tar.bz2") +sha512sums=('c8ccdf71dd1d53bff93b69da4558f0e2e23103aa20d0db7dd1a0aa5c33371ccb1bb699502d5a286c7a81d71f71809bc79d454a61d14712f5940044755b556f9c') build() { cd toposort-$pkgver - python -m pyproject2setuppy.main build + python -m build -nw } check() { @@ -24,5 +24,5 @@ package() { cd toposort-$pkgver - python -m pyproject2setuppy.main install --root="$pkgdir" --optimize=1 + python -m installer --destdir="$pkgdir" dist/*.whl }
