summaryrefslogtreecommitdiffstats
path: root/resources/scripts/helpers/build/release
diff options
context:
space:
mode:
authorFrancis Rowe <fchmmr@minifree.lan>2015-12-04 14:03:52 (EST)
committer Francis Rowe <fchmmr@minifree.lan>2015-12-04 14:08:06 (EST)
commit26d16fa5cdc9e351fcb582104cf8c7b3bf9ddaf0 (patch)
tree06502e98de84f539fd001d6bd64cb71f8cb8e0a7 /resources/scripts/helpers/build/release
parent2e7fde09174aed5f3cc7d714dbe32e451873f3c9 (diff)
downloadlibreboot-26d16fa5cdc9e351fcb582104cf8c7b3bf9ddaf0.zip
libreboot-26d16fa5cdc9e351fcb582104cf8c7b3bf9ddaf0.tar.gz
libreboot-26d16fa5cdc9e351fcb582104cf8c7b3bf9ddaf0.tar.bz2
grub: build reproducibly
Diffstat (limited to 'resources/scripts/helpers/build/release')
-rwxr-xr-xresources/scripts/helpers/build/release/docs4
-rwxr-xr-xresources/scripts/helpers/build/release/roms4
-rwxr-xr-xresources/scripts/helpers/build/release/sha512sums2
-rwxr-xr-xresources/scripts/helpers/build/release/src4
-rwxr-xr-xresources/scripts/helpers/build/release/tobuild4
-rwxr-xr-xresources/scripts/helpers/build/release/util4
6 files changed, 22 insertions, 0 deletions
diff --git a/resources/scripts/helpers/build/release/docs b/resources/scripts/helpers/build/release/docs
index 966bccf..32203ac 100755
--- a/resources/scripts/helpers/build/release/docs
+++ b/resources/scripts/helpers/build/release/docs
@@ -28,9 +28,11 @@ printf 'Building the documentation release archive\n'
if [ -f "version" ]; then
# _src release archive is being used
version="$(cat version)"
+ versiondate="$(cat versiondate)"
else
# git repo is being used
version="$(git describe --tags HEAD)"
+ versiondate="$(git show -s --format=%ct)"
fi
versiondir="release/${version}"
distname="libreboot_${version}_docs"
@@ -60,6 +62,8 @@ fi
# include version information
printf '%s\n' "${version}" >"${distdir}/version"
+# include version date information
+printf '%s\n' "${versiondate}" >"${distdir}/versiondate"
printf 'Creating compressed documentation archive at %s\n' "${distdir}.tar.xz"
(cd "${versiondir}/" && tar -c "${distname}/" | xz -9e >"${distname}.tar.xz")
diff --git a/resources/scripts/helpers/build/release/roms b/resources/scripts/helpers/build/release/roms
index e2ef74d..e39aca5 100755
--- a/resources/scripts/helpers/build/release/roms
+++ b/resources/scripts/helpers/build/release/roms
@@ -31,9 +31,11 @@ fi
if [ -f "version" ]; then
# _src release archive is being used
version="$(cat version)"
+ versiondate="$(cat versiondate)"
else
# git repo is being used
version="$(git describe --tags HEAD)"
+ versiondate="$(git show -s --format=%ct)"
fi
versiondir="release/${version}"
romdir="${versiondir}/rom"
@@ -75,6 +77,8 @@ for payload in *; do
# Put the version string in the archive.
printf '%s\n' "${version}" >"${archivename}/version"
+ # Put the version date string in the archive
+ printf '%s\n' "${versiondate}" >"${archivename}/versiondate"
# Create the compressed archive.
tar -c "${archivename}/" | xz -9e >"../../${romdir}/${payload}/${archivename}.tar.xz"
diff --git a/resources/scripts/helpers/build/release/sha512sums b/resources/scripts/helpers/build/release/sha512sums
index 456764b..502f059 100755
--- a/resources/scripts/helpers/build/release/sha512sums
+++ b/resources/scripts/helpers/build/release/sha512sums
@@ -25,9 +25,11 @@ set -u -e
if [ -f "version" ]; then
# _src release archive is being used
version="$(cat version)"
+ versiondate="$(cat versiondate)"
else
# git repo is being used
version="$(git describe --tags HEAD)"
+ versiondate="$(git show -s --format=%ct)"
fi
versiondir="release/${version}"
sha512filename="SHA512SUMS"
diff --git a/resources/scripts/helpers/build/release/src b/resources/scripts/helpers/build/release/src
index ed7ec68..294c3c2 100755
--- a/resources/scripts/helpers/build/release/src
+++ b/resources/scripts/helpers/build/release/src
@@ -28,9 +28,11 @@ printf 'Building the source release archive\n'
if [ -f "version" ]; then
# _src release archive is being used
version="$(cat version)"
+ versiondate="$(cat versiondate)"
else
# git repo is being used
version="$(git describe --tags HEAD)"
+ versiondate="$(git show -s --format=%ct)"
fi
versiondir="release/${version}"
distname="libreboot_${version}_src"
@@ -65,6 +67,8 @@ fi
# include version information
printf '%s\n' "${version}" >"${distdir}/version"
+# include version date information
+printf '%s\n' "${versiondate}" >"${distdir}/versiondate"
printf 'Cleaning files in %s/\n' "${distdir}"
diff --git a/resources/scripts/helpers/build/release/tobuild b/resources/scripts/helpers/build/release/tobuild
index da1b6d9..bc1f6dd 100755
--- a/resources/scripts/helpers/build/release/tobuild
+++ b/resources/scripts/helpers/build/release/tobuild
@@ -26,9 +26,11 @@ set -u -e
if [ -f "version" ]; then
# _src release archive is being used
version="$(cat version)"
+ versiondate="$(cat versiondate)"
else
# git repo is being used
version="$(git describe --tags HEAD)"
+ versiondate="$(git show -s --format=%ct)"
fi
versiondir="release/${version}"
distname="libreboot_${version}_tobuild"
@@ -84,6 +86,8 @@ fi
# include version information
printf '%s\n' "${version}" >"${distdir}/version"
+# include version date information
+printf '%s\n' "${versiondate}" >"${distdir}/versiondate"
# that is all. now tar it up
(cd "${versiondir}/" && tar -c "${distname}/" | xz -9e >"${distname}.tar.xz")
diff --git a/resources/scripts/helpers/build/release/util b/resources/scripts/helpers/build/release/util
index 1a0d72f..3e9910d 100755
--- a/resources/scripts/helpers/build/release/util
+++ b/resources/scripts/helpers/build/release/util
@@ -44,9 +44,11 @@ fi
if [ -f "version" ]; then
# _src release archive is being used
version="$(cat version)"
+ versiondate="$(cat versiondate)"
else
# git repo is being used
version="$(git describe --tags HEAD)"
+ versiondate="$(git show -s --format=%ct)"
fi
versiondir="release/${version}"
distname="libreboot_${version}_util"
@@ -76,6 +78,8 @@ fi
# include version information
printf '%s\n' "${version}" >"${distdir}/version"
+# include version date information
+printf '%s\n' "${versiondate}" >"${distdir}/versiondate"
# --------------
# BUC.TS related