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
|
#! /usr/bin/perl
# Copyright (c) 2005 Marc Espie <espie@openbsd.org>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
use strict;
use OpenBSD::PackageLocator;
use OpenBSD::PackageInfo;
use OpenBSD::PackingList;
use OpenBSD::Getopt;
use OpenBSD::Error;
use File::Path;
package OpenBSD::PackingElement;
sub print_name {}
package OpenBSD::PackingElement::FileObject;
sub print_name
{
my ($self, $fh, $pkgname) = @_;
print $fh $pkgname, ":", $self->fullname(), "\n";
}
package main;
set_usage('pkg_mklocatedb -nq [-r release] [-s src] [-x X11src] [pkgname ...]');
our ($opt_n, $opt_q, $opt_s, $opt_x, $opt_r);
try {
getopts('nqs:x:r:');
} catchall {
Usage($_);
};
my $fh;
my $MKLOCATEDB="/usr/libexec/locate.mklocatedb";
if ($opt_n or -t STDOUT) {
$fh = \*STDOUT;
} else {
open $fh, "|-", $MKLOCATEDB, $MKLOCATEDB or die "couldn't open pipe: $!";
}
if ($opt_s || $opt_x) {
my ($rev, $arch) = split(/ /, `uname -mr`);
chomp $arch;
$rev =~ s/\.//;
if ($opt_s) {
my $dir = "$opt_s/distrib/sets/lists";
for my $set (qw(base comp etc game man misc)) {
for my $f ("$dir/$set/mi", "$dir/$set/md.$arch") {
open my $l, '<', $f or next;
while (my $e = <$l>) {
chomp $e;
$e =~ s/^\.//;
print "$set$rev:$e\n";
}
}
}
}
if ($opt_x) {
my $dir = "$opt_x/distrib/sets/lists";
for my $set (qw(xbase xetc xfont xserv xshare)) {
for my $f ("$dir/$set/mi", "$dir/$set/md.$arch") {
open my $l, '<', $f or next;
while (my $e = <$l>) {
chomp $e;
$e =~ s/^\.//;
print "$set$rev:$e\n";
}
}
}
}
}
if ($opt_r) {
require OpenBSD::Ustar;
opendir(my $dir, $opt_r) or next;
while (my $e = readdir $dir) {
if ($e =~ m/^(\w+\d\d)\.tgz$/) {
my $set = $1;
open my $arc, '-|', '/usr/bin/gzip', 'gzip', '-c', '-d', "$opt_r/$e";
my $u = OpenBSD::Ustar->new($arc, '/');
while (my $f = $u->next()) {
my $name = $f->{name};
$name =~ s/^\.//;
print "$set:$name\n";
}
close $arc;
}
}
closedir($dir);
}
if (@ARGV==0) {
for my $pkgname (installed_packages()) {
print STDERR "$pkgname\n" unless $opt_q;
my $plist = OpenBSD::PackingList->from_installation($pkgname);
$plist->visit('print_name', $fh, $plist->pkgname());
}
} else {
for my $pkgname (@ARGV) {
print STDERR "$pkgname\n" unless $opt_q;
my $true_package = OpenBSD::PackageLocator->find($pkgname);
next unless $true_package;
my $dir = $true_package->info();
$true_package->close();
my $plist = OpenBSD::PackingList->fromfile($dir.CONTENTS);
$plist->visit('print_name', $fh, $plist->pkgname());
rmtree($dir);
}
}
|