diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /security/nss/lib/zlib/vendor.sh | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'security/nss/lib/zlib/vendor.sh')
-rwxr-xr-x | security/nss/lib/zlib/vendor.sh | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/security/nss/lib/zlib/vendor.sh b/security/nss/lib/zlib/vendor.sh new file mode 100755 index 0000000000..b5c02e6536 --- /dev/null +++ b/security/nss/lib/zlib/vendor.sh @@ -0,0 +1,59 @@ +#!/usr/bin/env bash +# Vendor a new version of zlib. +# +# Note: This script doesn't remove files if they are removed in the zlib release. + +set -e + +if [[ $# -lt 1 ]]; then + echo "Usage: $0 <version>" 1>&2 + exit 2 +fi + +version="$1" +ztmp="zlib.$version" + +cd "$(dirname "$0")" +../../fuzz/config/git-copy.sh https://github.com/madler/zlib "v$version" "$ztmp" +fullversion="$version ("$(cat "$ztmp"/.git-copy)")" +sed -i -e 's/^Version: .*/Version: '"$fullversion"'/' README.nss + +prune=( + .git-copy + .github + .gitignore + CMakeLists.txt + ChangeLog + FAQ + INDEX + Makefile + Makefile.in + amiga + configure + contrib + doc + example.c + examples + make_vms.com + minigzip.c + msdos + nintendods + old + os400 + qnx + test + treebuild.xml + watcom + win32 + zconf.h.cmakein + zconf.h.in + zlib.3 + zlib.3.pdf + zlib.map + zlib.pc.cmakein + zlib.pc.in + zlib2ansi +) +for i in "${prune[@]}"; do rm -rf "$ztmp"/"$i"; done +for i in "$ztmp"/*; do mv "$i" .; done +rmdir "$ztmp" |