diff options
author | Blair Bonnett | 2023-06-11 09:14:52 +0200 |
---|---|---|
committer | Blair Bonnett | 2023-06-11 09:14:52 +0200 |
commit | 85b8911fb642c603d69d06e72258eb17177082d7 (patch) | |
tree | 05890f3bd55e57b904ba358623c011179c8a663f | |
parent | 94761f4923d099a836122d0130d36df9cf63f950 (diff) | |
download | aur-85b8911fb642c603d69d06e72258eb17177082d7.tar.gz |
Update to 1.2.0
-rw-r--r-- | .SRCINFO | 6 | ||||
-rw-r--r-- | PKGBUILD | 22 |
2 files changed, 15 insertions, 13 deletions
@@ -1,6 +1,6 @@ pkgbase = jupyterhub-nativeauthenticator pkgdesc = Authenticator for storing users in the JupyterHub database - pkgver = 1.1.0 + pkgver = 1.2.0 pkgrel = 1 url = https://github.com/jupyterhub/nativeauthenticator arch = any @@ -15,7 +15,7 @@ pkgbase = jupyterhub-nativeauthenticator depends = jupyterhub depends = python-bcrypt depends = python-onetimepass - source = https://files.pythonhosted.org/packages/source/j/jupyterhub-nativeauthenticator/jupyterhub-nativeauthenticator-1.1.0.tar.gz - sha256sums = 190e760da620acea25246eb215ff671da7aee8a1603f9cbf3c359a404f009088 + source = https://files.pythonhosted.org/packages/source/j/jupyterhub-nativeauthenticator/jupyterhub-nativeauthenticator-1.2.0.tar.gz + sha256sums = 826228e6e9ca37736361e2e60c5723e245ec72e34fdc42cc218fc54a67f968e1 pkgname = jupyterhub-nativeauthenticator @@ -2,33 +2,35 @@ pkgname=jupyterhub-nativeauthenticator pkgdesc="Authenticator for storing users in the JupyterHub database" -pkgver=1.1.0 +pkgver=1.2.0 pkgrel=1 url="https://github.com/jupyterhub/nativeauthenticator" +license=('BSD') arch=('any') + depends=('jupyterhub' 'python-bcrypt' 'python-onetimepass') makedepends=('python-build' 'python-installer' 'python-setuptools' 'python-wheel') checkdepends=('python-pytest' 'python-pytest-asyncio' 'jupyter-notebook') -license=('BSD') + source=( "https://files.pythonhosted.org/packages/source/j/$pkgname/$pkgname-$pkgver.tar.gz" ) sha256sums=( - '190e760da620acea25246eb215ff671da7aee8a1603f9cbf3c359a404f009088' + '826228e6e9ca37736361e2e60c5723e245ec72e34fdc42cc218fc54a67f968e1' ) build() { - cd "$pkgname-$pkgver" - python -m build --wheel --no-isolation + cd "$pkgname-$pkgver" + python -m build --wheel --no-isolation } check() { - cd "$pkgname-$pkgver" - pytest -v + cd "$pkgname-$pkgver" + pytest -v } package() { - cd "$pkgname-$pkgver" - python -m installer --destdir="$pkgdir" dist/*.whl - install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" + cd "$pkgname-$pkgver" + python -m installer --destdir="$pkgdir" dist/*.whl + install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } |