Date: Monday, December 12, 2022 @ 17:13:29 Author: alucryd Revision: 1358872
upgpkg: python-graphene 3.2.1-1 Modified: python-graphene/trunk/PKGBUILD ----------+ PKGBUILD | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2022-12-12 17:05:25 UTC (rev 1358871) +++ PKGBUILD 2022-12-12 17:13:29 UTC (rev 1358872) @@ -2,7 +2,7 @@ # Contributor: Sven Schneider <[email protected]> pkgname=python-graphene -pkgver=3.1.1 +pkgver=3.2.1 pkgrel=1 pkgdesc='GraphQL framework for Python' arch=(any) @@ -18,27 +18,24 @@ git python-setuptools ) -_tag=b20bbdcdf728eb1e009edb20da62df1f13fb165f -source=($pkgname::git+https://github.com/graphql-python/graphene.git#tag=${_tag}) +_tag=340d5ed12f7e736ca6ca6fd82c9ec4abdc635d4a +source=(python-graphene::git+https://github.com/graphql-python/graphene.git#tag=${_tag}) sha512sums=(SKIP) pkgver() { - cd $pkgname - + cd python-graphene git describe --tags | sed 's/^v//' } build() { - cd $pkgname - + cd python-graphene python setup.py build } package() { - cd $pkgname - + cd python-graphene python setup.py install --root="${pkgdir}" --optimize=1 --skip-build - install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/$pkgname + install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/python-graphene } -# vim:set sw=2 sts=-1 et: +# vim: ts=2 sw=2 et:
