release-tools.sh: store the timestamp and release tag too

When maketgz invokes this script to generate the docs/RELEASE-TOOLS.md
file that gets bundled in the release, it now also passes on the exact
timestamp and version number so that those details also get mentioned in
the document. They will help users reproduce an identical tarball.

Closes #13319
This commit is contained in:
Daniel Stenberg 2024-04-08 17:14:35 +02:00
parent 41e07d836f
commit fd6c16c345
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
2 changed files with 10 additions and 4 deletions

View File

@ -168,7 +168,7 @@ echo "produce CHANGES"
git log --pretty=fuller --no-color --date=short --decorate=full -1000 | ./scripts/log2changes.pl > CHANGES.dist
echo "produce RELEASE-TOOLS.md"
./scripts/release-tools.sh > docs/RELEASE-TOOLS.md.dist
./scripts/release-tools.sh "$timestamp" "$version" > docs/RELEASE-TOOLS.md.dist
############################################################################
#

View File

@ -25,8 +25,13 @@
set -eu
# this should ideally be passed in
timestamp=${1:-unknown}
version=${2:-unknown}
tag=$(echo "curl-$version" | tr '.' '_')
cat <<MOO
# Release tools
# Release tools used for curl $version
The following tools and their Debian package version numbers were used to
produce this release tarball.
@ -53,7 +58,7 @@ cat <<MOO
# Reproduce the tarball
- Clone the repo and checkout the release tag
- Clone the repo and checkout the tag: $tag
- Install the same set of tools + versions as listed above
## Do a standard build
@ -62,8 +67,9 @@ cat <<MOO
- ./configure [...]
- make
## Generate the tarball
## Generate the tarball with the same timestamp
- export SOURCE_DATE_EPOCH=$timestamp
- ./maketgz [version]
MOO