diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 02:57:58 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 02:57:58 +0000 |
commit | be1c7e50e1e8809ea56f2c9d472eccd8ffd73a97 (patch) | |
tree | 9754ff1ca740f6346cf8483ec915d4054bc5da2d /web/server/h2o/libh2o/deps/picotls/misc | |
parent | Initial commit. (diff) | |
download | netdata-be1c7e50e1e8809ea56f2c9d472eccd8ffd73a97.tar.xz netdata-be1c7e50e1e8809ea56f2c9d472eccd8ffd73a97.zip |
Adding upstream version 1.44.3.upstream/1.44.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'web/server/h2o/libh2o/deps/picotls/misc')
-rwxr-xr-x | web/server/h2o/libh2o/deps/picotls/misc/dump-github-repository.pl | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/web/server/h2o/libh2o/deps/picotls/misc/dump-github-repository.pl b/web/server/h2o/libh2o/deps/picotls/misc/dump-github-repository.pl new file mode 100755 index 00000000..ab811575 --- /dev/null +++ b/web/server/h2o/libh2o/deps/picotls/misc/dump-github-repository.pl @@ -0,0 +1,41 @@ +#! /usr/bin/perl + +use strict; +use warnings; +use Errno (); +use File::Basename qw(basename); + +die "Usage: $0 <https://github.com/user/repo> <commit> <dest-dir> [<path>]\n" + if @ARGV < 3; + +my ($repo, $commit, $dest, $path) = @ARGV; +my $strip_components = 1; +my ($rm_path, $tar_path); + +if (defined $path) { + $path =~ s|/*$||; + $strip_components += scalar(split "/", $path) - 1; + $rm_path = "$dest/" . basename $path; + $tar_path = "*/$path"; +} else { + $path = ""; + $rm_path = "$dest"; + $tar_path = ""; +} + +run("rm -rf $rm_path"); + +mkdir("$dest") + or $! == Errno::EEXIST or die "failed to (re)create directory:$dest:$!"; +run("curl --silent --show-error --location $repo/archive/$commit.tar.gz | (cd $dest && tar x --strip-components $strip_components -zf - $tar_path)") == 0 + or die "failed to extract $repo/archive/$commit.tar.gz to $dest"; +run("git add -f `find $rm_path -type f`") == 0 + or die "failed to add files under $dest"; +run("git commit --allow-empty -m 'extract $repo @ $commit @{[defined $path ? qq{($path)} : '']} at $dest' $dest") == 0 + or die "failed to commit"; + +sub run { + my $cmd = shift; + print "$cmd\n"; + system($cmd); +} |