git » python-structlog.git » commit c437036

make it reproducible; add myself as a maintainer

author Chih-Hsuan Yen
2020-07-05 16:03:08 UTC
committer Chih-Hsuan Yen
2020-07-05 16:03:08 UTC
parent e40f47d4f87f5774ef4913e9f4391eb1bbc2490a

make it reproducible; add myself as a maintainer

Don't bother with build/lib in check()

PKGBUILD +3 -2

diff --git a/PKGBUILD b/PKGBUILD
index 89c321a..eaac2a0 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,8 +1,9 @@
 # Maintainer: Felix Yan <felixonmars@archlinux.org>
+# Maintainer: Chih-Hsuan Yen <yan12125@archlinux.org>
 
 pkgname=python-structlog
 pkgver=20.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Structured Logging for Python"
 url="https://www.structlog.org"
 license=('Apache')
@@ -21,7 +22,7 @@ build() {
 
 check() {
   cd structlog-$pkgver
-  PYTHONPATH="$PWD"/build/lib pytest
+  PYTHONPATH="$PWD"/src pytest
 }
 
 package() {