[pacman-dev] [PATCH 2/4] makepkg: add more information to .BUILDINFO

Allan McRae allan at archlinux.org
Mon Apr 17 12:03:01 UTC 2017


From: Levente Polyak <anthraxx at archlinux.org>

The .BUILDINFO file should retain all the information needed to reproducibly
build a package.  Add some extra information to the file and also provide a
version number to keep track of future changes.

Signed-off-by: Allan McRae <allan at archlinux.org>
---
 scripts/makepkg.sh.in | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
index d61c7fff..7692ade5 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -688,13 +688,17 @@ write_pkginfo() {
 write_buildinfo() {
 	msg2 "$(gettext "Generating %s file...")" ".BUILDINFO"
 
-	write_kv_pair "builddir"  "${BUILDDIR}"
+	write_kv_pair "format" "1"
+	write_kv_pkgname
+	write_kv_pkgver
 
 	local sum="$(sha256sum "${BUILDFILE}")"
 	sum=${sum%% *}
-
 	write_kv_pair "pkgbuild_sha256sum" $sum
 
+	write_kv_pair "packager" "$(get_packager)"
+	write_kv_pair "builddate" "${SOURCE_DATE_EPOCH}"
+	write_kv_pair "builddir"  "${BUILDDIR}"
 	write_kv_pair "buildenv" "${BUILDENV[@]}"
 	write_kv_pair "options" "${OPTIONS[@]}"
 
-- 
2.12.0


More information about the pacman-dev mailing list