Date: Sunday, August 14, 2022 @ 21:06:53 Author: polyzen Revision: 1266088
upgpkg: python-typing_extensions 4.3.0-1 Modified: python-typing_extensions/trunk/PKGBUILD ----------+ PKGBUILD | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2022-08-14 20:54:34 UTC (rev 1266087) +++ PKGBUILD 2022-08-14 21:06:53 UTC (rev 1266088) @@ -3,11 +3,11 @@ # Contributor: Michael Yeatts <[email protected]> pkgname=python-typing_extensions -pkgver=4.2.0 +pkgver=4.3.0 pkgrel=1 -pkgdesc='Backported and Experimental Type Hints for Python 3.5+' +pkgdesc='Backported and Experimental Type Hints for Python 3.7+' arch=(any) -url=https://github.com/python/typing/tree/master/typing_extensions +url=https://github.com/python/typing_extensions license=(custom) depends=(python) makedepends=(git python-build python-flit-core python-installer) @@ -14,17 +14,17 @@ checkdepends=(python-tests) provides=(python-typing-extensions) conflicts=(python-typing-extensions) -source=("git+https://github.com/python/typing.git#tag=${pkgver}") -sha256sums=(SKIP) +source=("git+$url.git#tag=${pkgver}") +b2sums=(SKIP) build() { - cd typing/typing_extensions + cd typing_extensions python -m build --wheel --skip-dependency-check --no-isolation } check() { - cd typing/typing_extensions + cd typing_extensions python -m venv --system-site-packages test-env test-env/bin/python -m installer dist/*.whl @@ -32,7 +32,7 @@ } package() { - cd typing/typing_extensions + cd typing_extensions python -m installer --destdir="${pkgdir}" dist/*.whl
