Date: Sunday, December 13, 2020 @ 09:46:26 Author: daurnimator Revision: 773968
use python hashseed to make reproducible Modified: yq/trunk/PKGBUILD ----------+ PKGBUILD | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-12-13 09:39:50 UTC (rev 773967) +++ PKGBUILD 2020-12-13 09:46:26 UTC (rev 773968) @@ -1,9 +1,11 @@ # Maintainer: Felix Yan <[email protected]> +# Maintainer: Daurnimator <[email protected]> +# Maintainer: Polyzen <[email protected]> # Contributor: Caleb Maclennan <[email protected]> pkgname=yq pkgver=2.11.1 -pkgrel=1 +pkgrel=2 pkgdesc="Command-line YAML/XML processor - jq wrapper for YAML/XML documents" arch=('any') url="https://github.com/kislyuk/yq" @@ -28,5 +30,6 @@ package() { cd $pkgname-$pkgver + export PYTHONHASHSEED=0 python setup.py install --root="$pkgdir" --optimize=1 --skip-build }
