2018-06-16 07:28:34 +08:00
|
|
|
#!/bin/sh
|
2009-01-31 06:32:13 +08:00
|
|
|
# Script to build release-archives with. Note that this requires a checkout
|
2010-03-22 07:34:09 +08:00
|
|
|
# from git and you should first run ./buildconf and build curl once.
|
1999-12-29 22:20:26 +08:00
|
|
|
#
|
2009-01-11 21:34:05 +08:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
2023-01-02 20:51:48 +08:00
|
|
|
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2009-01-11 21:34:05 +08:00
|
|
|
#
|
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
2020-11-04 21:02:01 +08:00
|
|
|
# are also available at https://curl.se/docs/copyright.html.
|
2009-01-11 21:34:05 +08:00
|
|
|
#
|
|
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
|
|
#
|
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: curl
|
2022-05-17 17:16:50 +08:00
|
|
|
#
|
2009-01-11 21:34:05 +08:00
|
|
|
###########################################################################
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2024-04-05 21:27:05 +08:00
|
|
|
set -eu
|
|
|
|
|
|
|
|
export LC_ALL=C
|
|
|
|
export TZ=UTC
|
|
|
|
|
|
|
|
version="${1:-}"
|
2003-10-18 20:00:34 +08:00
|
|
|
|
|
|
|
if [ -z "$version" ]; then
|
|
|
|
echo "Specify a version number!"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2024-04-05 21:27:05 +08:00
|
|
|
if [ "only" = "${2:-}" ]; then
|
2018-06-16 07:28:34 +08:00
|
|
|
echo "Setup version number only!"
|
|
|
|
only=1
|
2024-04-05 21:27:05 +08:00
|
|
|
else
|
|
|
|
only=
|
2016-10-10 20:11:44 +08:00
|
|
|
fi
|
|
|
|
|
1999-12-29 22:20:26 +08:00
|
|
|
libversion="$version"
|
|
|
|
|
2003-10-18 20:00:34 +08:00
|
|
|
# we make curl the same version as libcurl
|
2024-04-05 21:27:05 +08:00
|
|
|
curlversion="$libversion"
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2024-04-05 21:27:05 +08:00
|
|
|
major=$(echo "$libversion" | cut -d. -f1 | sed -e "s/[^0-9]//g")
|
|
|
|
minor=$(echo "$libversion" | cut -d. -f2 | sed -e "s/[^0-9]//g")
|
|
|
|
patch=$(echo "$libversion" | cut -d. -f3 | cut -d- -f1 | sed -e "s/[^0-9]//g")
|
2003-11-06 19:34:19 +08:00
|
|
|
|
2016-10-10 20:11:44 +08:00
|
|
|
if test -z "$patch"; then
|
2018-06-16 07:28:34 +08:00
|
|
|
echo "invalid version number? needs to be z.y.z"
|
|
|
|
exit
|
2016-10-10 20:11:44 +08:00
|
|
|
fi
|
|
|
|
|
2017-08-11 04:52:28 +08:00
|
|
|
#
|
|
|
|
# As a precaution, remove all *.dist files that may be lying around, to reduce
|
|
|
|
# the risk of old leftovers getting shipped. The root 'Makefile.dist' is the
|
|
|
|
# exception.
|
|
|
|
echo "removing all old *.dist files"
|
|
|
|
find . -name "*.dist" -a ! -name Makefile.dist -exec rm {} \;
|
|
|
|
|
2024-04-08 07:35:09 +08:00
|
|
|
numeric="$(printf "%02x%02x%02x\n" "$major" "$minor" "$patch")"
|
2003-11-06 19:34:19 +08:00
|
|
|
|
2004-03-22 16:37:38 +08:00
|
|
|
HEADER=include/curl/curlver.h
|
2011-10-06 23:39:00 +08:00
|
|
|
CHEADER=src/tool_version.h
|
2016-10-10 20:11:44 +08:00
|
|
|
|
|
|
|
if test -z "$only"; then
|
2018-06-16 07:28:34 +08:00
|
|
|
ext=".dist"
|
|
|
|
# when not setting up version numbers locally
|
2024-04-08 20:54:35 +08:00
|
|
|
for a in $HEADER $CHEADER; do
|
2024-04-05 21:27:05 +08:00
|
|
|
cp "$a" "$a$ext"
|
2018-06-16 07:28:34 +08:00
|
|
|
done
|
|
|
|
HEADER="$HEADER$ext"
|
|
|
|
CHEADER="$CHEADER$ext"
|
2016-10-10 20:11:44 +08:00
|
|
|
fi
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2024-04-05 21:27:05 +08:00
|
|
|
# requires a date command that knows + for format and -d for date input
|
|
|
|
timestamp=${SOURCE_DATE_EPOCH:-$(date +"%s")}
|
|
|
|
datestamp=$(date -d "@$timestamp" +"%F")
|
|
|
|
filestamp=$(date -d "@$timestamp" +"%Y%m%d%H%M.%S")
|
2007-02-12 19:53:35 +08:00
|
|
|
|
1999-12-29 22:20:26 +08:00
|
|
|
# Replace version number in header file:
|
2018-06-16 07:28:34 +08:00
|
|
|
sed -i.bak \
|
2024-04-05 21:27:05 +08:00
|
|
|
-e "s/^#define LIBCURL_VERSION .*/#define LIBCURL_VERSION \"$libversion\"/g" \
|
|
|
|
-e "s/^#define LIBCURL_VERSION_NUM .*/#define LIBCURL_VERSION_NUM 0x$numeric/g" \
|
|
|
|
-e "s/^#define LIBCURL_VERSION_MAJOR .*/#define LIBCURL_VERSION_MAJOR $major/g" \
|
|
|
|
-e "s/^#define LIBCURL_VERSION_MINOR .*/#define LIBCURL_VERSION_MINOR $minor/g" \
|
|
|
|
-e "s/^#define LIBCURL_VERSION_PATCH .*/#define LIBCURL_VERSION_PATCH $patch/g" \
|
|
|
|
-e "s/^#define LIBCURL_TIMESTAMP .*/#define LIBCURL_TIMESTAMP \"$datestamp\"/g" \
|
|
|
|
"$HEADER"
|
2018-06-16 07:28:34 +08:00
|
|
|
rm -f "$HEADER.bak"
|
1999-12-29 22:20:26 +08:00
|
|
|
|
|
|
|
# Replace version number in header file:
|
2024-04-05 21:27:05 +08:00
|
|
|
sed -i.bak "s/#define CURL_VERSION .*/#define CURL_VERSION \"$curlversion\"/g" "$CHEADER"
|
2018-06-16 07:28:34 +08:00
|
|
|
rm -f "$CHEADER.bak"
|
2016-10-10 20:11:44 +08:00
|
|
|
|
|
|
|
if test -n "$only"; then
|
2018-06-16 07:28:34 +08:00
|
|
|
# done!
|
2024-04-05 21:27:05 +08:00
|
|
|
exit
|
2016-10-10 20:11:44 +08:00
|
|
|
fi
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2002-10-14 15:39:49 +08:00
|
|
|
echo "curl version $curlversion"
|
|
|
|
echo "libcurl version $libversion"
|
|
|
|
echo "libcurl numerical $numeric"
|
2007-02-12 19:53:35 +08:00
|
|
|
echo "datestamp $datestamp"
|
2002-10-14 15:39:49 +08:00
|
|
|
|
2018-06-16 07:28:34 +08:00
|
|
|
findprog() {
|
1999-12-29 22:20:26 +08:00
|
|
|
file="$1"
|
2024-04-05 21:27:05 +08:00
|
|
|
for part in $(echo "$PATH" | tr ':' ' '); do
|
1999-12-29 22:20:26 +08:00
|
|
|
path="$part/$file"
|
|
|
|
if [ -x "$path" ]; then
|
|
|
|
# there it is!
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# no such executable
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
############################################################################
|
|
|
|
#
|
2001-01-08 20:57:38 +08:00
|
|
|
# Enforce a rerun of configure (updates the VERSION)
|
1999-12-29 22:20:26 +08:00
|
|
|
#
|
2001-01-08 20:57:38 +08:00
|
|
|
|
2001-09-27 20:44:17 +08:00
|
|
|
echo "Re-running config.status"
|
|
|
|
./config.status --recheck >/dev/null
|
1999-12-29 22:20:26 +08:00
|
|
|
|
|
|
|
############################################################################
|
|
|
|
#
|
|
|
|
# automake is needed to run to make a non-GNU Makefile.in if Makefile.am has
|
|
|
|
# been modified.
|
|
|
|
#
|
|
|
|
|
|
|
|
if { findprog automake >/dev/null 2>/dev/null; } then
|
2024-04-05 21:27:05 +08:00
|
|
|
echo "- Could not find or run automake, I hope you know what you are doing!"
|
1999-12-29 22:20:26 +08:00
|
|
|
else
|
|
|
|
echo "Runs automake --include-deps"
|
2001-09-27 20:44:17 +08:00
|
|
|
automake --include-deps Makefile >/dev/null
|
1999-12-29 22:20:26 +08:00
|
|
|
fi
|
|
|
|
|
2010-06-22 04:42:36 +08:00
|
|
|
echo "produce CHANGES"
|
2015-05-24 06:09:23 +08:00
|
|
|
git log --pretty=fuller --no-color --date=short --decorate=full -1000 | ./scripts/log2changes.pl > CHANGES.dist
|
2010-06-22 04:42:36 +08:00
|
|
|
|
2024-03-31 04:46:14 +08:00
|
|
|
echo "produce RELEASE-TOOLS.md"
|
2024-04-08 23:14:35 +08:00
|
|
|
./scripts/release-tools.sh "$timestamp" "$version" > docs/RELEASE-TOOLS.md.dist
|
2024-03-31 04:46:14 +08:00
|
|
|
|
1999-12-29 22:20:26 +08:00
|
|
|
############################################################################
|
|
|
|
#
|
2001-09-27 20:44:17 +08:00
|
|
|
# Now run make dist to generate a tar.gz archive
|
1999-12-29 22:20:26 +08:00
|
|
|
#
|
|
|
|
|
2003-12-12 23:28:04 +08:00
|
|
|
echo "make dist"
|
2001-09-27 20:44:17 +08:00
|
|
|
targz="curl-$version.tar.gz"
|
2024-04-05 21:27:05 +08:00
|
|
|
make -sj dist "VERSION=$version"
|
2022-02-08 16:33:38 +08:00
|
|
|
res=$?
|
|
|
|
|
|
|
|
if test "$res" != 0; then
|
2024-04-05 21:27:05 +08:00
|
|
|
echo "make dist failed"
|
|
|
|
exit 2
|
2022-02-08 16:33:38 +08:00
|
|
|
fi
|
2001-09-27 20:44:17 +08:00
|
|
|
|
2024-04-05 21:27:05 +08:00
|
|
|
retar() {
|
|
|
|
tempdir=$1
|
|
|
|
rm -rf "$tempdir"
|
|
|
|
mkdir "$tempdir"
|
|
|
|
cd "$tempdir"
|
|
|
|
gzip -dc "../$targz" | tar -xf -
|
2024-04-09 14:46:35 +08:00
|
|
|
find curl-* -depth -exec touch -c -t "$filestamp" '{}' +
|
|
|
|
tar --create --format=ustar --owner=0 --group=0 --numeric-owner --sort=name curl-* | gzip --best --no-name > out.tar.gz
|
2024-04-05 21:27:05 +08:00
|
|
|
mv out.tar.gz ../
|
|
|
|
cd ..
|
|
|
|
rm -rf "$tempdir"
|
|
|
|
}
|
|
|
|
|
|
|
|
retar ".tarbuild"
|
|
|
|
echo "replace $targz with out.tar.gz"
|
|
|
|
mv out.tar.gz "$targz"
|
|
|
|
|
2001-09-27 20:44:17 +08:00
|
|
|
############################################################################
|
|
|
|
#
|
|
|
|
# Now make a bz2 archive from the tar.gz original
|
|
|
|
#
|
|
|
|
|
|
|
|
bzip2="curl-$version.tar.bz2"
|
|
|
|
echo "Generating $bzip2"
|
2024-04-05 21:27:05 +08:00
|
|
|
gzip -dc "$targz" | bzip2 --best > "$bzip2"
|
2009-02-23 17:36:08 +08:00
|
|
|
|
|
|
|
############################################################################
|
|
|
|
#
|
2017-06-22 04:40:55 +08:00
|
|
|
# Now make an xz archive from the tar.gz original
|
2009-02-23 17:36:08 +08:00
|
|
|
#
|
|
|
|
|
2017-06-22 04:40:55 +08:00
|
|
|
xz="curl-$version.tar.xz"
|
|
|
|
echo "Generating $xz"
|
2024-04-05 21:27:05 +08:00
|
|
|
gzip -dc "$targz" | xz -6e - > "$xz"
|
2001-09-27 20:44:17 +08:00
|
|
|
|
|
|
|
############################################################################
|
|
|
|
#
|
|
|
|
# Now make a zip archive from the tar.gz original
|
|
|
|
#
|
2018-06-16 07:28:34 +08:00
|
|
|
makezip() {
|
2024-04-05 21:27:05 +08:00
|
|
|
rm -rf "$tempdir"
|
|
|
|
mkdir "$tempdir"
|
|
|
|
cd "$tempdir"
|
|
|
|
gzip -dc "../$targz" | tar -xf -
|
|
|
|
find . | sort | zip -9 -X "$zip" -@ >/dev/null
|
|
|
|
mv "$zip" ../
|
2001-09-27 20:44:17 +08:00
|
|
|
cd ..
|
2024-04-05 21:27:05 +08:00
|
|
|
rm -rf "$tempdir"
|
2001-09-27 20:44:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
zip="curl-$version.zip"
|
|
|
|
echo "Generating $zip"
|
|
|
|
tempdir=".builddir"
|
|
|
|
makezip
|
|
|
|
|
2024-04-05 21:27:05 +08:00
|
|
|
# Set deterministic timestamp
|
|
|
|
touch -c -t "$filestamp" "$targz" "$bzip2" "$xz" "$zip"
|
|
|
|
|
2001-09-27 20:44:17 +08:00
|
|
|
echo "------------------"
|
|
|
|
echo "maketgz report:"
|
|
|
|
echo ""
|
2024-04-05 21:27:05 +08:00
|
|
|
ls -l "$targz" "$bzip2" "$xz" "$zip"
|
|
|
|
sha256sum "$targz" "$bzip2" "$xz" "$zip"
|
2003-05-20 14:33:13 +08:00
|
|
|
|
2007-09-16 05:06:11 +08:00
|
|
|
echo "Run this:"
|
2024-04-05 21:27:05 +08:00
|
|
|
echo "gpg -b -a '$targz' && gpg -b -a '$bzip2' && gpg -b -a '$xz' && gpg -b -a '$zip'"
|