Date: Wednesday, August 31, 2022 @ 21:16:55 Author: felixonmars Revision: 1289535
upgpkg: python-paste 3.5.2-1 Modified: python-paste/trunk/PKGBUILD ----------+ PKGBUILD | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2022-08-31 21:05:18 UTC (rev 1289534) +++ PKGBUILD 2022-08-31 21:16:55 UTC (rev 1289535) @@ -3,27 +3,27 @@ # Contributor: Cilyan Olowen <[email protected]> pkgname=python-paste -pkgver=3.5.1 +pkgver=3.5.2 pkgrel=1 pkgdesc="Tools for using a Web Server Gateway Interface stack" arch=('any') -url="http://pythonpaste.org/index.html" +url="https://pythonpaste.readthedocs.io/" license=('MIT') depends=('python-six') optdepends=('python-flup: WSGI utilities') -makedepends=('python-setuptools' 'python-six') -checkdepends=('python-pytest-runner' 'python-flup') +makedepends=('python-setuptools') +checkdepends=('python-pytest' 'python-flup') source=("https://files.pythonhosted.org/packages/source/P/Paste/Paste-${pkgver}.tar.gz") -sha512sums=('7ae39691bb6067309a12bf76e2a110913c7be6ddcda6215eaf0228144ff26a1c7b50500729b65e27652dc7a7edf6fe26bd144d261e8754d7af8bac495d4613f9') +sha512sums=('a1920dbd7ebea137ca33f8f8c33aad563329d1eea193d84e6aa7fc57690f706c1969e3ba76bbf21a73c59a0fe0f732daa4db15705914ac359814b4332a01bc75') build() { - cd "$srcdir"/Paste-$pkgver + cd Paste-$pkgver python setup.py build } check() { - cd "$srcdir"/Paste-$pkgver - python setup.py pytest + cd Paste-$pkgver + pytest } package() { @@ -30,5 +30,5 @@ cd Paste-$pkgver python setup.py install --root="$pkgdir" --optimize=1 - install -Dm644 docs/license.txt "$pkgdir"/usr/share/licenses/$pkgname/license.txt + install -Dm644 docs/license.txt -t "$pkgdir"/usr/share/licenses/$pkgname/ }
