Date: Friday, September 30, 2022 @ 10:21:20 Author: jelle Revision: 1318956
Make reproducible Don't set the $ADDRESS to the build host / user. Modified: namazu/trunk/PKGBUILD ----------+ PKGBUILD | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2022-09-30 10:21:18 UTC (rev 1318955) +++ PKGBUILD 2022-09-30 10:21:20 UTC (rev 1318956) @@ -3,7 +3,7 @@ pkgname=namazu pkgver=2.0.21 -pkgrel=4 +pkgrel=5 pkgdesc="Namazu is a full-text search engine intended for easy use." url="http://namazu.org/" license=('GPL') @@ -23,6 +23,9 @@ --mandir=/usr/share/man \ --libexecdir=/usr/lib/namazu \ --libdir=/usr/lib/namazu + # Make the address reproducible, the address shouldn't be our build host + # anyway but changed by the user. + sed -i 's/\$ADDRESS = .*/\$ADDRESS = "[email protected]";/' pl/conf.pl make }
