maketgz: move from / into scripts

Closes #14797
This commit is contained in:
Daniel Stenberg 2024-09-05 16:31:38 +02:00
parent 0d1504b205
commit 5c14d696fe
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
7 changed files with 7 additions and 7 deletions

View File

@ -40,7 +40,7 @@ jobs:
- name: 'maketgz' - name: 'maketgz'
run: | run: |
SOURCE_DATE_EPOCH=1711526400 ./maketgz 99.98.97 SOURCE_DATE_EPOCH=1711526400 ./scripts/maketgz 99.98.97
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4 - uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4
with: with:

View File

@ -13,7 +13,7 @@
# docker run --rm -it -u $(id -u):$(id -g) -v $(pwd):/usr/src -w /usr/src curl/curl autoreconf -fi # docker run --rm -it -u $(id -u):$(id -g) -v $(pwd):/usr/src -w /usr/src curl/curl autoreconf -fi
# docker run --rm -it -u $(id -u):$(id -g) -v $(pwd):/usr/src -w /usr/src curl/curl ./configure --without-ssl --without-libpsl # docker run --rm -it -u $(id -u):$(id -g) -v $(pwd):/usr/src -w /usr/src curl/curl ./configure --without-ssl --without-libpsl
# docker run --rm -it -u $(id -u):$(id -g) -v $(pwd):/usr/src -w /usr/src curl/curl make # docker run --rm -it -u $(id -u):$(id -g) -v $(pwd):/usr/src -w /usr/src curl/curl make
# docker run --rm -it -u $(id -u):$(id -g) -v $(pwd):/usr/src -w /usr/src curl/curl ./maketgz 8.7.1 # docker run --rm -it -u $(id -u):$(id -g) -v $(pwd):/usr/src -w /usr/src curl/curl ./scripts/maketgz 8.7.1
# #
# or get into a shell in the build environment, for example # or get into a shell in the build environment, for example
# #
@ -21,7 +21,7 @@
# $ autoreconf -fi # $ autoreconf -fi
# $ ./configure --without-ssl --without-libpsl # $ ./configure --without-ssl --without-libpsl
# $ make # $ make
# $ ./maketgz 8.7.1 # $ ./scripts/maketgz 8.7.1
# To update, get the latest digest e.g. from https://hub.docker.com/_/debian/tags # To update, get the latest digest e.g. from https://hub.docker.com/_/debian/tags
FROM debian:bookworm-slim@sha256:903d3225acecaa272bbdd7273c6c312c2af8b73644058838d23a8c9e6e5c82cf FROM debian:bookworm-slim@sha256:903d3225acecaa272bbdd7273c6c312c2af8b73644058838d23a8c9e6e5c82cf

View File

@ -82,7 +82,7 @@ PLAN9_DIST = plan9/include/mkfile \
plan9/src/mkfile.inc \ plan9/src/mkfile.inc \
plan9/src/mkfile plan9/src/mkfile
EXTRA_DIST = CHANGES.md COPYING maketgz Makefile.dist curl-config.in \ EXTRA_DIST = CHANGES.md COPYING Makefile.dist curl-config.in \
RELEASE-NOTES libcurl.pc.in $(CMAKE_DIST) $(VC_DIST) $(WINBUILD_DIST) \ RELEASE-NOTES libcurl.pc.in $(CMAKE_DIST) $(VC_DIST) $(WINBUILD_DIST) \
$(PLAN9_DIST) lib/libcurl.vers.in buildconf.bat Dockerfile $(PLAN9_DIST) lib/libcurl.vers.in buildconf.bat Dockerfile

View File

@ -24,7 +24,7 @@
EXTRA_DIST = coverage.sh completion.pl firefox-db2pem.sh checksrc.pl \ EXTRA_DIST = coverage.sh completion.pl firefox-db2pem.sh checksrc.pl \
mk-ca-bundle.pl schemetable.c cd2nroff nroff2cd cdall cd2cd managen \ mk-ca-bundle.pl schemetable.c cd2nroff nroff2cd cdall cd2cd managen \
dmaketgz release-tools.sh verify-release cmakelint.sh dmaketgz maketgz release-tools.sh verify-release cmakelint.sh
ZSH_FUNCTIONS_DIR = @ZSH_FUNCTIONS_DIR@ ZSH_FUNCTIONS_DIR = @ZSH_FUNCTIONS_DIR@
FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@ FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@

View File

@ -51,4 +51,4 @@ docker run --rm -u "$(id -u):$(id -g)" \
autoreconf -fi autoreconf -fi
./configure --without-ssl --without-libpsl ./configure --without-ssl --without-libpsl
make -sj8 make -sj8
./maketgz $version" ./scripts/maketgz $version"

View File

@ -70,6 +70,6 @@ cat <<MOO
## Generate the tarball with the same timestamp ## Generate the tarball with the same timestamp
- export SOURCE_DATE_EPOCH=$timestamp - export SOURCE_DATE_EPOCH=$timestamp
- ./maketgz [version] - ./scripts/maketgz [version]
MOO MOO