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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
|
# $OpenBSD: PackageName.pm,v 1.4 2004/02/20 19:11:28 espie Exp $
#
# Copyright (c) 2003 Marc Espie.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE OPENBSD PROJECT AND CONTRIBUTORS
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OPENBSD
# PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
use strict;
use warnings;
package OpenBSD::PackageName;
sub url2pkgname($)
{
my $name = $_[0];
$name =~ s|.*/||;
$name =~ s|\.tgz$||;
return $name;
}
sub new
{
my ($class, $name) = @_;
my $self = { name => $name };
# remove irrelevant filesystem info
my $pkgname = url2pkgname($name);
$self->{pkgname} = $pkgname;
# cut pkgname into pieces
my @list = splitname($pkgname);
$self->{stem} = $list[0];
$self->{version} = $list[1];
$self->{flavors} = [];
push @{$self->{flavors}}, @list[2,];
bless $self, $class;
}
# see package-specs(7)
sub splitname
{
local $_ = shift;
if (/\-(?=\d)/) {
my $stem = $`;
my $rest = $';
my @all = split /\-/, $rest;
return ($stem, @all);
} else {
return ($_);
}
}
sub is_stem
{
local $_ = shift;
if (m/\-\d/) {
return 0;
} else {
return 1;
}
}
sub findstem
{
my ($k, @list) = @_;
my @r = ();
for my $n (@list) {
my $stem = (splitname $n)[0];
if ($k eq $stem) {
push(@r, $n);
}
}
return @r;
}
# all the shit that does handle package specifications
sub compare_pseudo_numbers
{
my ($n, $m) = @_;
my ($n1, $m1);
if ($n =~ m/^\d+/) {
$n1 = $&;
$n = $';
}
if ($m =~ m/^\d+/) {
$m1 = $&;
$m = $';
}
if ($n1 == $m1) {
return $n cmp $m;
} else {
return $n1 <=> $m1;
}
}
sub dewey_compare
{
my ($a, $b) = @_;
my ($pa, $pb);
unless ($b =~ m/p\d+$/) { # does the Dewey hold a p<number> ?
$a =~ s/p\d+$//; # No -> strip it from version.
}
return 0 if $a =~ /^$b$/; # bare equality
if ($a =~ s/p(\d+)$//) { # extract patchlevels
$pa = $1;
}
if ($b =~ s/p(\d+)$//) {
$pb = $1;
}
my @a = split(/\./, $a);
push @a, $pa if defined $pa; # ... and restore them
my @b = split(/\\\./, $b);
push @b, $pb if defined $pb;
while (@a > 0 && @b > 0) {
my $va = shift @a;
my $vb = shift @b;
next if $va eq $vb;
return compare_pseudo_numbers($va, $vb);
}
if (@a > 0) {
return 1;
} else {
return -1;
}
}
sub check_version
{
my ($v, $spec) = @_;
local $_;
# any version spec
return 1 if $spec eq '.*';
my @specs = split(/,/, $spec);
for (grep /^\d/, @specs) { # exact number: check match
return 1 if $v =~ /^$_$/;
return 1 if $v =~ /^${_}p\d+$/; # allows for recent patches
}
# Last chance: dewey specs ?
my @deweys = grep !/^\d/, @specs;
for (@deweys) {
if (m/^\<\=|\>\=|\<|\>/) {
my ($op, $dewey) = ($&, $');
my $compare = dewey_compare($v, $dewey);
return 0 if $op eq '<' && $compare >= 0;
return 0 if $op eq '<=' && $compare > 0;
return 0 if $op eq '>' && $compare <= 0;
return 0 if $op eq '>=' && $compare < 0;
} else {
return 0; # unknown spec type
}
}
return @deweys == 0 ? 0 : 1;
}
sub check_1flavor
{
my ($f, $spec) = @_;
local $_;
for (split /-/, $spec) {
# must not be here
if (m/^\!/) {
return 0 if $f->{$'};
# must be here
} else {
return 0 unless $f->{$_};
}
}
return 1;
}
sub check_flavor
{
my ($f, $spec) = @_;
local $_;
# no flavor constraints
return 1 if $spec eq '';
$spec =~ s/^-//;
# retrieve all flavors
my %f = map +($_, 1), split /\-/, $f;
# check each flavor constraint
for (split /,/, $spec) {
if (check_1flavor(\%f, $_)) {
return 1;
}
}
return 0;
}
sub subpattern_match
{
my ($p, $list) = @_;
local $_;
my ($stemspec, $vspec, $flavorspec);
# then, guess at where the version number is if any,
# this finds patterns like -<=2.3,>=3.4.p1-
# the only constraint is that the actual number
# - must start with a digit,
# - not contain - or ,
if ($p =~ m/\-((?:\>|\>\=|\<|\<\=)?\d[^-]*)/) {
($stemspec, $vspec, $flavorspec) = ($`, $1, $');
# `any version' matcher
} elsif ($p =~ m/\-\*/) {
($stemspec, $vspec, $flavorspec) = ($`, '*', $');
# okay, so no version marker. Assume no flavor spec.
} else {
($stemspec, $vspec, $flavorspec) = ($p, '', '');
}
$stemspec =~ s/\./\\\./g;
$stemspec =~ s/\+/\\\+/g;
$stemspec =~ s/\*/\.\*/g;
$stemspec =~ s/\?/\./g;
$vspec =~ s/\./\\\./g;
$vspec =~ s/\+/\\\+/g;
$vspec =~ s/\*/\.\*/g;
$vspec =~ s/\?/\./g;
$p = $stemspec;
$p.="-.*" if $vspec ne '';
# First trim down the list
my @l = grep {/^$p$/} @$list;
my @result = ();
# Now, have to extract the version number, and the flavor...
for (@l) {
my ($stem, $v, $flavor);
if (m/\-(\d[^-]*)/) {
($stem, $v, $flavor) = ($`, $1, $');
if ($stem =~ m/^$stemspec$/ &&
check_version($v, $vspec) &&
check_flavor($flavor, $flavorspec)) {
push(@result, $_);
}
}
}
return @result;
}
sub pkgspec_match
{
my ($pattern, @list) = @_;
my @l = ();
for my $subpattern (split /\|/, $pattern) {
push(@l, subpattern_match($subpattern, \@list));
}
return @l;
}
1;
|