Date: Sunday, February 9, 2020 @ 10:36:56 Author: alucryd Revision: 565271
upgpkg: python-quart 0.11.0-1 Modified: python-quart/trunk/PKGBUILD ----------+ PKGBUILD | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-02-09 10:33:21 UTC (rev 565270) +++ PKGBUILD 2020-02-09 10:36:56 UTC (rev 565271) @@ -1,8 +1,8 @@ # Maintainer: Maxime Gauduin <[email protected]> pkgname=python-quart -pkgver=0.10.0 -pkgrel=3 +pkgver=0.11.0 +pkgrel=1 pkgdesc='A Python ASGI web microframework with the same API as Flask' url=https://gitlab.com/pgjones/quart arch=(any) @@ -30,9 +30,15 @@ python-pytest-sugar python-tox ) -source=(git+https://gitlab.com/pgjones/quart.git#tag=${pkgver}) +source=(git+https://gitlab.com/pgjones/quart.git#tag=ad3de08632930049c75cb0f690131b16ca2e446b) sha256sums=(SKIP) +pkgver() { + cd quart + + git describe --tags +} + build() { cd quart @@ -48,7 +54,7 @@ package() { cd quart - python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 + python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/python-quart/ }
