File: madison-lite

package info (click to toggle)
madison-lite 0.13
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 72 kB
  • ctags: 28
  • sloc: perl: 574; sh: 109; makefile: 25
file content (758 lines) | stat: -rwxr-xr-x 21,054 bytes parent folder | download
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
#! /usr/bin/perl -w
#
# Copyright (C) Colin Watson 2003, 2004, 2005, 2006, 2007, 2008.
#
# Version comparison algorithm code based on Dpkg::Version:
#   Copyright (C) Ian Jackson.
#   Copyright (C) Colin Watson.
#   Copyright (C) Don Armstrong 2007.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

use strict;

use File::Path;
use Getopt::Long;

use constant VERSION => '0.13';

use constant USER_CONFIG => "$ENV{HOME}/.madison-lite";
use constant SYSTEM_CONFIG => '/etc/madison-lite';

use constant CACHE_FORMAT => 2;

my $configfile;
my $simplemirror;
my $caching = 1;
my $update_cache = 0;
my $source_and_binary = 0;
my $regex = 0;
my ($architectures, %architectures);
my ($components, %components);
my ($suites, @suites);

my %config;
my (@packages, %packages);


############################################################################
# Utility functions
############################################################################

# Print a usage message to FILEHANDLE and exit with status EXITCODE.
sub usage (*$) {
    my ($filehandle, $exitcode) = @_;
    print $filehandle <<EOF;
Usage: madison-lite [options] package [...]

Inspect a Debian package archive and display the versions of the given
packages found in each suite.

  --config-file FILE         read configuration from FILE
  --mirror DIRECTORY         use DIRECTORY as top level of Debian mirror
  --nocache                  don't cache parsed Packages and Sources files

  -a, --architecture ARCH    only show info for ARCH(es)
  -c, --component COMPONENT  only show info for COMPONENT(s)
  -h, --help                 show this help and exit
  -r, --regex                treat PACKAGE as a regular expression
  -s, --suite SUITE          only show info for SUITE(s)
  -S, --source-and-binary    show info for binary children of source packages

ARCH, COMPONENT, and SUITE can be comma- or space-separated lists.
EOF
    exit $exitcode;
}

# Print version information to standard output and exit with zero status.
sub showversion () {
    print 'madison-lite version ', VERSION, "\n";
    exit 0;
}

# Read configuration file FILENAME into %config. Return true if the file
# was opened successfully, otherwise false.
sub read_config ($) {
    my $filename = shift;
    local *CONFIG;
    return 0 unless open CONFIG, "< $filename";
    local $_;
    while (<CONFIG>) {
	chomp;
	next if /^#/;
	if (/^mirror\s+(.*)/) {
	    $config{mirror} = $1;
	} elsif (/^suite\s+(.*?) # name
			\s+(.*?) # directory
			((?: \s+(.*?) )*) # optional components
		  $/x) {
	    my ($name, $directory, $components) = ($1, $2, $3);
	    $config{suites}{$name} = $directory;
	    push @{$config{suiteorder}}, $name;
	    $components =~ s/^\s+//;
	    $config{suitecomponents}{$name} = [split ' ', $components];
	} else {
	    print STDERR "$0: $filename:$.: unrecognized directive '$_'\n";
	}
    }
    return 1;
}

# Compare two architecture names. Normal comparison except that 'source'
# always compares earlier.
sub archcmp ($$)
{
    if ($_[0] eq 'source') {
	if ($_[1] eq 'source') {
	    return 0;
	} else {
	    return -1;
	}
    } else {
	if ($_[1] eq 'source') {
	    return 1;
	} else {
	    return $_[0] cmp $_[1];
	}
    }
}

# Parse a Debian version number into its component parts.
sub parseversion ($)
{
    my $ver = shift;
    my %verhash;
    if ($ver =~ /:/)
    {
	$ver =~ /^(\d+):(.+)/ or die "bad version number '$ver'";
	$verhash{epoch} = $1;
	$ver = $2;
    }
    else
    {
	$verhash{epoch} = 0;
    }
    if ($ver =~ /(.+)-(.+)$/)
    {
	$verhash{version} = $1;
	$verhash{revision} = $2;
    }
    else
    {
	$verhash{version} = $ver;
	$verhash{revision} = 0;
    }
    return %verhash;
}

# Compare upstream-version or Debian-revision components of a Debian version
# number.
sub verrevcmp ($$)
{
    sub order ($)
    {
	my ($x) = @_;
	# #define order(x) ((x) == '~' ? -1 \
	#            : cisdigit((x)) ? 0 \
	#            : !(x) ? 0 \
	#            : cisalpha((x)) ? (x) \
	#            : (x) + 256)
	# This comparison is out of dpkg's order to avoid
	# comparing things to undef and triggering warnings.
	if (not defined $x) {
	    return 0;
	} elsif ($x eq '~') {
	    return -1;
	} elsif ($x =~ /^\d$/) {
	    return 0;
	} elsif ($x =~ /^[A-Z]$/i) {
	    return ord($x);
	} else {
	    return ord($x) + 256;
	}
    }

    sub next_elem (\@) {
	my $a = shift;
	return @{$a} ? shift @{$a} : undef;
    }

    my ($val, $ref) = @_;
    $val = "" if not defined $val;
    $ref = "" if not defined $ref;
    my @val = split //, $val;
    my @ref = split //, $ref;
    my $vc = next_elem @val;
    my $rc = next_elem @ref;
    while (defined $vc or defined $rc) {
	my $first_diff = 0;
	while ((defined $vc and $vc !~ /^\d$/) or
	       (defined $rc and $rc !~ /^\d$/)) {
	    my $vo = order($vc);
	    my $ro = order($rc);
	    # Unlike dpkg's verrevcmp, we only return 1 or -1 here.
	    return (($vo - $ro > 0) ? 1 : -1) if $vo != $ro;
	    $vc = next_elem @val;
	    $rc = next_elem @ref;
	}
	while (defined $vc and $vc eq '0') {
	    $vc = next_elem @val;
	}
	while (defined $rc and $rc eq '0') {
	    $rc = next_elem @ref;
	}
	while (defined $vc and $vc =~ /^\d$/ and
	       defined $rc and $rc =~ /^\d$/) {
	    $first_diff = ord($vc) - ord($rc) if !$first_diff;
	    $vc = next_elem @val;
	    $rc = next_elem @ref;
	}
	return 1 if defined $vc and $vc =~ /^\d$/;
	return -1 if defined $rc and $rc =~ /^\d$/;
	return $first_diff if $first_diff;
    }
    return 0;
}

# Compare the two arguments as dpkg-style version numbers. Returns -1 if the
# first argument represents a lower version number than the second, 1 if the
# first argument represents a higher version number than the second, and 0
# if the two arguments represent equal version numbers.
sub vercmp ($$)
{
    my %version = parseversion $_[0];
    my %refversion = parseversion $_[1];
    return 1 if $version{epoch} > $refversion{epoch};
    return -1 if $version{epoch} < $refversion{epoch};
    my $r = verrevcmp $version{version}, $refversion{version};
    return $r if $r;
    return verrevcmp $version{revision}, $refversion{revision};
}

# Find the first of FILENAME, FILENAME.gz, or FILENAME.bz2 that exists.
sub find_list_file ($) {
    my $filename = shift;
    if (-f $filename) {
	return $filename;
    } elsif (-f "$filename.gz") {
	return "$filename.gz";
    } elsif (-f "$filename.bz2") {
	return "$filename.bz2";
    } else {
	return undef;
    }
}

# Open a Packages or Sources file FILENAME, decompressing it if necessary.
# Return a filehandle associated with that (uncompressed) file, or undef if
# it could not be opened successfully.
sub open_list_file ($) {
    my $filename = shift;
    return undef unless defined $filename;
    my $fh;
    if ($filename =~ /\.gz$/) {
	open my $fh, "zcat \Q$filename\E |" or return undef;
	return $fh;
    } elsif ($filename =~ /\.bz2$/) {
	open my $fh, "bzcat \Q$filename\E |" or return undef;
	return $fh;
    } else {
	open my $fh, "< $filename" or return undef;
	return $fh;
    }
}

# Print a warning about caching being disabled, unless it has been printed
# before.
{
    my $cache_warning_printed = 0;
    sub caching_disabled ($) {
	return if $cache_warning_printed;
	my $why = shift;
	print STDERR "$0: caching disabled because $why\n";
	$cache_warning_printed = 1;
    }
}

my $cache_dir_created = 0;

# Encode FILENAME into a cache filename.
sub cache_filename ($) {
    my $filename = shift;
    my $cache_dir = USER_CONFIG . '/cache';

    eval { require Digest::MD5; import Digest::MD5 qw(md5_hex); };
    if ($@) {
	caching_disabled 'Digest::MD5 cannot be loaded';
	return undef;
    }

    unless ($cache_dir_created) {
	eval { mkpath ($cache_dir); };
	die "$0: can't create cache directory '$cache_dir': $@" if $@;

	$cache_dir_created = 1;

	unless (-f "$cache_dir/CACHEDIR.TAG") {
	    if (open TAG, "> $cache_dir/CACHEDIR.TAG") {
		print TAG <<EOF;
Signature: 8a477f597d28d172789f06886806bc55
# This file is a cache directory tag created by madison-lite.
# For information about cache directory tags, see:
#	http://www.brynosaurus.com/cachedir/
EOF
		close TAG;
	    }
	}
    }

    return "$cache_dir/" . md5_hex ($filename);
}

# Print the cache format to FILEHANDLE.
sub cache_print_format (*) {
    my $filehandle = shift;
    print $filehandle 'Format: ', CACHE_FORMAT, "\n";
}

# Check the cache format in FILEHANDLE. Return true if it's OK, otherwise
# false.
sub cache_check_format (*) {
    my $filehandle = shift;
    my $line = <$filehandle>;
    return 0 unless defined $line;
    chomp $line;
    if ($line eq ('Format: ' . CACHE_FORMAT)) {
	return 1;
    } else {
	return 0;
    }
}

# Convert a list file FILENAME into cached form. The package cache contains:
#   <package> <version>
# The source cache contains:
#   <source> <binaries> (space-separated)
# Return true if a cached form is now available, otherwise false.
sub cache_list_file ($$$) {
    my ($filename, $what, $is_packages) = @_;
    my $real_filename = find_list_file $filename;
    unless (defined $real_filename) {
	warn "$0: can't find $what\n";
	return 0;
    }
    my $listtime = (stat $real_filename)[9];
    my $cache_filename = cache_filename $filename;
    return 0 unless defined $cache_filename;

    # Already cached?
    if (not $update_cache and
	(-f "$cache_filename.pkg" and
	 (stat "$cache_filename.pkg")[9] >= $listtime) and
	(-f "$cache_filename.src" and
	 (stat "$cache_filename.src")[9] >= $listtime)) {
	local (*PCACHE, *SCACHE);
	if ((open PCACHE, "< $cache_filename.pkg") and
	    (open SCACHE, "< $cache_filename.src") and
	    cache_check_format (*PCACHE) and
	    cache_check_format (*SCACHE)) {
	    return 1;
	}
    }

    my $fh = open_list_file $real_filename;

    unless (open PCACHE, "> $cache_filename.pkg") {
	caching_disabled "'$cache_filename.pkg' cannot be opened: $!";
	return 0;
    }
    cache_print_format *PCACHE;
    print PCACHE "Original: $filename\n";

    my %sources;

    local $/ = ''; # paragraph mode
    local $_;
    while (<$fh>) {
	if (/^Package:\s+(.*)/m) {
	    my $package = $1;
	    next if $package =~ /\s/;
	    if (/^Version:\s+(.*)/m) {
		my $version = $1;
		if ($is_packages and /^Architecture: all$/m) {
		    print PCACHE "$package $version all\n";
		} else {
		    print PCACHE "$package $version\n";
		}
	    }
	    if (/^Source:\s+(.*)/m) {
		# Packages file
		push @{$sources{$1}}, $package;
	    }
	    # Don't bother with Binary: entries in Sources files. There
	    # should always be corresponding Package: and Source: pairs in
	    # Packages, and if there aren't we won't be able to do anything
	    # useful with the source-to-binary mapping anyway.
	}
    }

    close PCACHE;

    unless (open SCACHE, "> $cache_filename.src") {
	caching_disabled "'$cache_filename.src' cannot be opened: $!";
	return 0;
    }
    cache_print_format *SCACHE;
    print SCACHE "Original: $filename\n";
    for my $source (sort keys %sources) {
	print SCACHE "$source ", (join ' ', @{$sources{$source}}), "\n";
    }
    close SCACHE;

    return 1;
    # $fh is auto-closed
}

# Search a list file for %packages, given a FILEHANDLE and a precompiled
# regex FIELD matching the desired field names.
sub search_list_file ($$$$) {
    my ($fh, $field, $is_packages, $arch) = @_;
    my @results;

    # Precompile search pattern.
    my $packlist;
    if ($regex) {
	$packlist = join '|', map "(?:$_)", keys %packages;
    } else {
	$packlist = join '|', map "\Q$_\E\$", keys %packages;
    }
    my $search = qr/^$field:\s+(?:$packlist)/;

    local $/ = ''; # paragraph mode
    local $_;
    while (<$fh>) {
	if (/$search/m) {
	    next unless /^Package: (.*)/m; # might have been Package|Source
	    my $foundpackage = $1;
	    next unless /^Version: (.*)/m;
	    my $foundversion = $1;
	    my $foundsource;
	    # If the source isn't in our list of packages to search for,
	    # then it doesn't matter for sorting purposes, so just pretend
	    # it's $foundpackage.
	    if (/^Source: (.*)/m and exists $packages{$1}) {
		$foundsource = $1;
	    } else {
		$foundsource = $foundpackage;
	    }
	    if ($is_packages and /^Architecture: all/m) {
		push @results, [$foundsource, $foundpackage, $foundversion, 'all'];
	    } else {
		push @results, [$foundsource, $foundpackage, $foundversion, $arch];
	    }
	}
    }

    return @results;
}

# Search the cache file corresponding to FILENAME for %packages.
sub search_cache ($$) {
    my ($filename, $arch) = @_;
    my $cache_filename = cache_filename $filename;
    return () unless defined $cache_filename;
    my @results;

    my %allpackages = %packages;
    my $pkglist;
    my $match;

    if ($regex) {
	$pkglist = join '|', map "(?:$_)", keys %packages;
    } else {
	$pkglist = join '|', map "\Q$_\E\$", keys %packages;
    }
    $match = qr/^(?:$pkglist)/;

    if ($source_and_binary and open SCACHE, "< $cache_filename.src") {
	# Look for source cache entries, indicating additional packages we
	# need to find.
	local $_;
	while (<SCACHE>) {
	    next if /^\S+: /;
	    my ($key, @values) = split;
	    if ($key =~ /$match/) {
		$allpackages{$_} = $key foreach @values;
	    }
	}
	close SCACHE;
    }

    if ($regex) {
	$pkglist = join '|', map "(?:$_)", keys %allpackages;
    } else {
	$pkglist = join '|', map "\Q$_\E\$", keys %allpackages;
    }
    $match = qr/^(?:$pkglist)/;

    open PCACHE, "< $cache_filename.pkg" or return ();
    local $_;
    while (<PCACHE>) {
	next if /^\S+: /;
	my ($key, $value, $is_all) = split;
	if ($key =~ /$match/) {
	    if (defined $is_all and $is_all eq 'all') {
		push @results, [$allpackages{$key}, $key, $value, 'all'];
	    } else {
		push @results, [$allpackages{$key}, $key, $value, $arch];
	    }
	}
    }
    close PCACHE;

    return @results;
}

# Search the Packages file in a directory, if any, for %packages.
sub search_packages ($$) {
    my ($dir, $arch) = @_;

    if ($caching and
	cache_list_file "$dir/Packages", "Packages list file in '$dir'", 1) {
	return search_cache "$dir/Packages", $arch;
    } else {
	my $fh = open_list_file (find_list_file "$dir/Packages");
	unless (defined $fh) {
	    warn "$0: can't find Packages list file in '$dir'\n";
	    return;
	}

	my $field;
	if ($source_and_binary) {
	    $field = qr/(?:Package|Source)/;
	} else {
	    $field = qr/Package/;
	}

	return search_list_file $fh, $field, 1, $arch;
	# $fh is auto-closed
    }
}

# Search the Sources file in a directory, if any, for %packages.
sub search_sources ($$) {
    my ($dir, $arch) = @_;

    if ($caching and
	cache_list_file "$dir/Sources", "Sources list file in '$dir'", 0) {
	return search_cache "$dir/Sources", $arch;
    } else {
	my $fh = open_list_file (find_list_file "$dir/Sources");
	unless (defined $fh) {
	    warn "$0: can't find Sources list file in '$dir'\n";
	    return;
	}

	my $field = qr/Package/;

	return search_list_file $fh, $field, 0, $arch;
	# $fh is auto-closed
    }
}


############################################################################
# Read configuration
############################################################################

Getopt::Long::Configure qw(no_ignore_case);
my $optresult = GetOptions (
    'help|h|?' => sub { usage *STDOUT, 0 },
    'version' => \&showversion,
    'config-file=s' => \$configfile,
    'mirror=s' => \$simplemirror,
    'cache!' => \$caching,
    'update!' => \$update_cache,
    'source-and-binary|S' => \$source_and_binary,
    'regex|r' => \$regex,
    'architecture|a=s' => \$architectures,
    'component|c=s' => \$components,
    'suite|s=s' => \$suites,
);

if (!$optresult) {
    usage *STDERR, 1;
} elsif (!@ARGV) {
    usage *STDERR, 1;
}

if ($configfile) {
    unless (read_config $configfile) {
	print STDERR "$0: can't find configuration file '$configfile'\n";
    }
} else {
    unless (read_config (USER_CONFIG . '/config')) {
	read_config (SYSTEM_CONFIG . '/config');
    }
}

$config{mirror} = $simplemirror if defined $simplemirror;

# Apply default configuration if necessary.
unless (exists $config{mirror}) {
    $config{mirror} = '.';
}
unless (exists $config{suites}) {
    opendir MIRROR, "$config{mirror}/dists"
	or die "$0: can't open mirror directory '$config{mirror}/dists'\n";
    my @dirents = sort grep { !/^\.\.?$/ } readdir MIRROR;
    for my $dirent (@dirents) {
	# Ignore symlinks to other suites in the same directory (e.g.
	# unstable -> sid).
	if (-l "$config{mirror}/dists/$dirent" and
	    (readlink "$config{mirror}/dists/$dirent") !~ m[/]) {
	    next;
	}
	if (-d "$config{mirror}/dists/$dirent") {
	    $config{suites}{$dirent} = "dists/$dirent";
	    push @{$config{suiteorder}}, $dirent;
	    $config{suitecomponents}{$dirent} = [];
	}
    }
    closedir MIRROR;
    die "$0: no suites found in $config{mirror}/dists\n"
	unless exists $config{suites};
}


############################################################################
# Main search loop
############################################################################

@packages = @ARGV;
%packages = map { $_ => $_ } @packages;

%architectures = map { $_ => 1 } split /[, ]+/, $architectures
    if defined $architectures;
%components = map { $_ => 1 } split /[ ,]+/, $components
    if defined $components;

# Find the list of suites we're looking at.
my @allsuites;
if (defined $suites) {
    @suites = split /[, ]+/, $suites if defined $suites;
    for my $cursuite (@suites) {
	die "$0: unknown suite '$cursuite'\n"
	    unless exists $config{suites}{$cursuite};
    }
} else {
    @suites = @{$config{suiteorder}};
}

# Compare two suite names in configured suite order.
sub suitecmp ($$)
{
    for my $suite (@suites) {
	if ($_[0] eq $suite) {
	    if ($_[1] eq $suite) {
		return 0;
	    } else {
		return -1;
	    }
	} elsif ($_[1] eq $suite) {
	    return 1;
	}
    }
    return $_[0] cmp $_[1];
}

# Search through all Packages and Sources files for %packages.
my %results;
for my $cursuite (@suites) {
    my $cursuitedir = $config{suites}{$cursuite};
    $cursuitedir = "$config{mirror}/$cursuitedir" if $cursuitedir !~ m[^/];
    # e.g. /debian/dists/stable

    # Find the list of components we're looking at; might be listed
    # explicitly in the configuration file and/or on the command line.
    my @components = @{$config{suitecomponents}{$cursuite}};
    unless (@components) {
	unless (opendir SUITE, $cursuitedir) {
	    warn "$0: can't open suite directory '$cursuitedir'\n";
	    next;
	}
	my @dirents = sort grep { !/^\.\.?$/ } readdir SUITE;
	for my $dirent (@dirents) {
	    push @components, $dirent if -d "$cursuitedir/$dirent";
	}
	closedir SUITE;
    }
    @components = grep { $components{$_} } @components if %components;

    for my $curcomp (@components) {
	next if $curcomp =~ /^\.\.?$/;
	# e.g. /debian/dists/stable/main
	my $curcompdir = "$cursuitedir/$curcomp";

	unless (opendir COMPONENT, "$curcompdir") {
	    warn "$0: can't open component directory '$curcompdir'\n";
	    next;
	}
	while (my $curarch = readdir COMPONENT) {
	    my @archresults;
	    my $curarchdir = "$curcompdir/$curarch";
	    if ($curarch =~ /^binary-(.*)$/) {
		# e.g. /debian/dists/stable/main/binary-i386
		$curarch = $1;
		next if defined $architectures and
			not $architectures{$curarch};
		@archresults = search_packages $curarchdir, $curarch;
	    } elsif ($curarch eq 'source') {
		# e.g. /debian/dists/stable/main/source
		next if defined $architectures and
			not $architectures{'source'};
		@archresults = search_sources $curarchdir, $curarch;
	    } else {
		next;
	    }

	    for my $result (@archresults) {
		my ($ressource, $respackage, $resversion, $resarch) = @$result;
		$results{$ressource}{$respackage}{$resversion}{$cursuite}{$curcomp}{$resarch} = 1;
	    }
	}
	closedir COMPONENT;
    }
}

# Print out the results.
for my $package (@packages) {
    next unless exists $results{$package};
    for my $binpkg (sort keys %{$results{$package}}) {
	for my $version (sort vercmp keys %{$results{$package}{$binpkg}}) {
	    for my $suite (sort suitecmp keys %{$results{$package}{$binpkg}{$version}}) {
		for my $comp (sort keys %{$results{$package}{$binpkg}{$version}{$suite}}) {
		    my $dispsuite = $suite;
		    if ($comp ne 'main') {
			$dispsuite = "$suite/$comp";
		    }
		    printf "%10s | %10s | %13s | %s\n",
			$binpkg, $version, $dispsuite,
			(join ', ', sort archcmp keys %{$results{$package}{$binpkg}{$version}{$suite}{$comp}});
		}
	    }
	}
    }
}