-
Notifications
You must be signed in to change notification settings - Fork 1
/
find-latest-version
executable file
·59 lines (41 loc) · 1.69 KB
/
find-latest-version
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/local/cpanel/3rdparty/bin/perl
# cpanel - find-latest-version Copyright(c) 2022 cPanel, L.L.C.
# All rights Reserved.
# [email protected] http://cpanel.net
# This code is subject to the cPanel license. Unauthorized copying is prohibited
package ea_nginx_njs::find_latest_version;
use strict;
use warnings;
use lib "../ea-tools/lib/ea4_tool"; # assumes ea-tools is checked out next to this repo
use ea4_tool::util ();
ea4_tool::util::find_latest_version( \&_get_required, \&_add_sum ) if !caller();
###############
#### helpers ##
###############
sub _get_required {
my ($http) = @_;
my $res = $http->get("https://api.github.com/repos/nginx/njs/tags");
if ( !$res->{success} ) {
die "Could not GET ngx_njs info from github ($res->{status} $res->{reason})\n\t Throttled? `curl -I https://api.github.com/rate_limit 2>&1 | grep ^X-RateLimit`\n";
}
# get $version, $url, $name from $res
my $version;
for my $tag ( @{ ea4_tool::util::json2ref( $res->{content} ) } ) {
next if $tag->{name} !~ m/^\d+\.\d+\.\d+$/;
$version = $tag->{name};
last;
}
die "Could not determine version from github\n" if !$version;
my $name = "$version.tar.gz"; # needs to match $version
my $url = "https://github.com/nginx/njs/archive/refs/tags/$version.tar.gz";
return ( $version, $url, $name );
}
sub _add_sum {
my ( $http, $hr ) = @_;
# github does not currently have a way to get the sum
return;
}
__END__
=encoding utf-8
=head1 README
Typical github release-tag pattern