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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
|
package SBO::Lib::Info;
use 5.016;
use strict;
use warnings;
our $VERSION = '2.7';
use SBO::Lib::Util qw/ get_arch get_sbo_from_loc open_read script_error slurp usage_error /;
use SBO::Lib::Tree qw/ get_orig_location get_sbo_location is_local /;
use Exporter 'import';
our @EXPORT_OK = qw{
check_x32
get_download_info
get_from_info
get_orig_version
get_requires
get_sbo_version
parse_info
};
our %EXPORT_TAGS = (
all => \@EXPORT_OK,
);
=pod
=encoding UTF-8
=head1 NAME
SBO::Lib::Info - Utilities to get data from SBo .info files.
=head1 SYNOPSIS
use SBO::Lib::Info qw/ get_reqs /;
my @reqs = @{ get_requires($sbo) };
=head1 SUBROUTINES
=cut
=head2 check_x32
my $bool = check_x32($location);
C<check_x32()> checks if the SBo in C<$location> considers 64bit builds
C<UNTESTED> or C<UNSUPPORTED>, and if so returns a true value. Otherwise it
returns a false value.
=cut
# determine whether or not a given sbo is 32-bit only
sub check_x32 {
script_error('check_x32 requires an argument.') unless @_ == 1;
my $dl = get_from_info(LOCATION => shift, GET => 'DOWNLOAD_x86_64');
return $$dl[0] =~ /UN(SUPPOR|TES)TED/ ? 1 : undef;
}
=head2 get_download_info
my $downloads = get_download_info(LOCATION => $location, X64 => $x64);
my $downloads = get_download_info(LOCATION => $location);
C<get_download_info()> takes a C<$location> to read a .info file in, and
C<$x64> which is a flag to determine if the x64 link should be used or not.
If the C<$x64> flag is not given, it defaults to a true value.
It returns a hashref where each key is a download link, and the corresponding
value is the md5sum it should have.
=cut
# get downloads and md5sums from an sbo's .info file, first
# checking for x86_64-specific info if we are told to
sub get_download_info {
my %args = (
LOCATION => 0,
X64 => 1,
@_
);
$args{LOCATION} or script_error('get_download_info requires LOCATION.');
my ($get, $downs, $exit, $md5s, %return);
$get = ($args{X64} ? 'DOWNLOAD_x86_64' : 'DOWNLOAD');
$downs = get_from_info(LOCATION => $args{LOCATION}, GET => $get);
# did we get nothing back, or UNSUPPORTED/UNTESTED?
if ($args{X64}) {
if (! $$downs[0] || $$downs[0] =~ qr/^UN(SUPPOR|TES)TED$/) {
$args{X64} = 0;
$downs = get_from_info(LOCATION => $args{LOCATION},
GET => 'DOWNLOAD');
}
}
# if we still don't have any links, something is really wrong.
return() unless $$downs[0];
# grab the md5s and build a hash
$get = $args{X64} ? 'MD5SUM_x86_64' : 'MD5SUM';
$md5s = get_from_info(LOCATION => $args{LOCATION}, GET => $get);
return() unless $$md5s[0];
$return{$$downs[$_]} = $$md5s[$_] for (keys @$downs);
return \%return;
}
=head2 get_from_info
my $data = get_from_info(LOCATION => $location, GET => $key);
C<get_from_info()> retrieves the information under C<$key> from the .info file
in C<$location>.
=cut
# pull piece(s) of data, GET, from the $sbo.info file under LOCATION.
sub get_from_info {
my %args = (
LOCATION => '',
GET => '',
@_
);
unless ($args{LOCATION} && $args{GET}) {
script_error('get_from_info requires LOCATION and GET.');
}
state $store = {LOCATION => ['']};
my $sbo = get_sbo_from_loc($args{LOCATION});
return $store->{$args{GET}} if $store->{LOCATION}[0] eq $args{LOCATION};
# if we're here, we haven't read in the .info file yet.
my $contents = slurp("$args{LOCATION}/$sbo.info");
usage_error("get_from_info: could not read $args{LOCATION}/$sbo.info.") unless
defined $contents;
my %parse = parse_info($contents);
script_error("error when parsing $sbo.info file.") unless %parse;
$store = {};
$store->{LOCATION} = [$args{LOCATION}];
foreach my $k (keys %parse) { $store->{$k} = $parse{$k}; }
# allow local overrides to get away with not having quite all the fields
if (is_local($sbo)) {
for my $key (qw/DOWNLOAD_x86_64 MD5SUM_x86_64 REQUIRES/) {
$store->{$key} //= ['']; # if they don't exist, treat them as empty
}
}
return $store->{$args{GET}};
}
=head2 get_orig_version
my $ver = get_orig_version($sbo);
C<get_orig_version()> returns the version in the SlackBuilds.org tree for the
given C<$sbo>.
=cut
sub get_orig_version {
script_error('get_orig_version requires an argument.') unless @_ == 1;
my $sbo = shift;
my $location = get_orig_location($sbo);
return $location if not defined $location;
return get_sbo_version($location);
}
=head2 get_requires
my $reqs = get_requires($sbo);
C<get_requires()> returns the requirements for a given C<$sbo>.
=cut
# wrapper to pull the list of requirements for a given sbo
sub get_requires {
my $location = get_sbo_location(shift);
return undef unless $location;
my $info = get_from_info(LOCATION => $location, GET => 'REQUIRES');
return $info;
}
=head2 get_sbo_version
my $ver = get_sbo_version($location);
C<get_sbo_version()> returns the version found in the .info file in
C<$location>.
=cut
# find the version in the tree for a given sbo (provided a location)
sub get_sbo_version {
script_error('get_sbo_version requires an argument.') unless @_ == 1;
my $version = get_from_info(LOCATION => shift, GET => 'VERSION');
return $version->[0];
}
=head2 parse_info
my %parse = parse_info($str);
C<parse_info()> parses the contents of an .info file from C<$str> and returns
a key-value list of it.
=cut
sub parse_info {
script_error('parse_info requires an argument.') unless @_ == 1;
my $info_str = shift;
my $pos = 0;
my %ret;
while ($info_str =~ /\G([A-Za-z0-9_]+)="([^"]*)"\s*(?:\n|\z)/g) {
my ($key, $val) = ($1, $2);
$val =~ s/\\[ \t]*$/ /mg;
my @val = split " ", $val;
@val = '' unless @val;
$ret{$key} = \@val;
$pos = pos($info_str);
}
return if $pos != length($info_str);
return %ret;
}
=head1 AUTHORS
SBO::Lib was originally written by Jacob Pipkin <j@dawnrazor.net> with
contributions from Luke Williams <xocel@iquidus.org> and Andreas
Guldstrand <andreas.guldstrand@gmail.com>.
=head1 LICENSE
The sbotools are licensed under the WTFPL <http://sam.zoy.org/wtfpl/COPYING>.
Copyright (C) 2012-2017, Jacob Pipkin, Luke Williams, Andreas Guldstrand.
=cut
1;
|