tSet SOURCE_DATE_EPOCH to 1610550434. - libdevuansdk - common library for devuan's simple distro kits
HTML git clone https://git.parazyd.org/libdevuansdk
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
DIR commit 580fecb67cbf6c6a94113f492c9927ceb2b50e9c
DIR parent 7eb4f578833f4b093e224633176a12a214dec300
HTML Author: parazyd <parazyd@dyne.org>
Date: Wed, 13 Jan 2021 16:07:58 +0100
Set SOURCE_DATE_EPOCH to 1610550434.
This should help with determinism/reproducibility.
Diffstat:
M zlibs/bootstrap | 1 +
M zlibs/helpers | 1 +
2 files changed, 2 insertions(+), 0 deletions(-)
---
DIR diff --git a/zlibs/bootstrap b/zlibs/bootstrap
t@@ -29,6 +29,7 @@ bootstrap_complete_base()
export LANG=C
export LC_ALL=C
export DEBIAN_FRONTEND=noninteractive
+ export SOURCE_DATE_EPOCH=1610550434
bootstrap_cpio_stage3="$R/tmp/bootstrap-${os}-${arch}-stage3.cpio.gz"
bootstrap_cpio_stage4="$R/tmp/bootstrap-${os}-${arch}-stage4.cpio.gz"
DIR diff --git a/zlibs/helpers b/zlibs/helpers
t@@ -204,6 +204,7 @@ chroot-script()
sudo sed -i "$_path/$_script" \
-e 's@^#!/bin/sh@&\nexport DEBIAN_FRONTEND=noninteractive@' \
+ -e 's@^#!/bin/sh@&\nexport SOURCE_DATE_EPOCH=1610550434@' \
-e 's@^#!/bin/sh@&\nexport LC_ALL=C@' \
-e 's@^#!/bin/sh@&\nexport LANG=C@' \
-e 's@^#!/bin/sh@&\nset -x ; exec 2>/'$_script'.log@'