[tor-commits] [tor/release-0.4.6] release: Patches to make tarball reproducible

dgoulet at torproject.org dgoulet at torproject.org
Fri Oct 29 13:21:27 UTC 2021


commit d37273be0dc5f3b6b9fb30b95ba3978772f30dd4
Author: Alexander Færøy <ahf at torproject.org>
Date:   Fri Jul 10 02:31:35 2020 +0200

    release: Patches to make tarball reproducible
    
    Closes #26299
    
    Signed-off-by: David Goulet <dgoulet at torproject.org>
---
 doc/asciidoc-helper.sh | 4 +++-
 doc/nofooter.conf      | 3 +++
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/doc/asciidoc-helper.sh b/doc/asciidoc-helper.sh
index a3ef53f884..2b63154441 100755
--- a/doc/asciidoc-helper.sh
+++ b/doc/asciidoc-helper.sh
@@ -12,6 +12,8 @@ if [ $# != 3 ]; then
   exit 1;
 fi
 
+export SOURCE_DATE_EPOCH=$(git show --no-patch --format='%ct')
+
 output=$3
 
 if [ "$1" = "html" ]; then
@@ -19,7 +21,7 @@ if [ "$1" = "html" ]; then
     base=${output%%.html.in}
 
     if [ "$2" != none ]; then
-      TZ=UTC "$2" -d manpage -o $output $input;
+      TZ=UTC "$2" -f "$(dirname $0)/nofooter.conf" -d manpage -o "$output" "$input";
     else
       echo "==================================";
       echo;
diff --git a/doc/nofooter.conf b/doc/nofooter.conf
new file mode 100644
index 0000000000..f16d76b2da
--- /dev/null
+++ b/doc/nofooter.conf
@@ -0,0 +1,3 @@
+# There is a single space on the footer-text line to make it reproducible.
+[footer-text]
+ 





More information about the tor-commits mailing list