git » python-click.git » commit afb2856

reproducible builds bytecode

author Morten Linderud
2021-05-16 14:02:30 UTC
committer Morten Linderud
2021-05-16 14:02:30 UTC
parent ef46eb7206f613bd7b0c2b84fb6bb7e800228ce6

reproducible builds bytecode

PKGBUILD +2 -1

diff --git a/PKGBUILD b/PKGBUILD
index c7b59ba..ebcd274 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
 pkgname=python-click
 _realname=click
 pkgver=8.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A simple wrapper around optparse for powerful command line utilities"
 arch=("any")
 url="http://click.pocoo.org/"
@@ -21,6 +21,7 @@ build() {
 
 package() {
     cd "${srcdir}/${_realname}-${pkgver}"
+    export PYTHONHASHSEED=0
     python setup.py install --skip-build --root="${pkgdir}" --optimize=1
     install -Dm644 "LICENSE.rst" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.rst"
 }