Added some code to peer into a data structure in Maemian/Schedule.pm. Also added the
[maemian] / nokia-lintian / collection / debfiles
1 #!/usr/bin/perl -w
2 # debfiles -- lintian collector script
3
4 # Copyright (C) 1999 by Joey Hess
5
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, you can find it on the World Wide
18 # Web at http://www.gnu.org/copyleft/gpl.html, or write to the Free
19 # Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
20 # MA 02110-1301, USA.
21
22 use strict;
23
24 ($#ARGV == 1) or fail("syntax: debfiles <pkg> <type>");
25 my $pkg = shift;
26 my $type = shift;
27
28 -e "unpacked" or fail("debfiles invoked in wrong directory");
29
30 use lib "$ENV{'LINTIAN_ROOT'}/lib";
31 use Pipeline;
32
33 if (-e "debfiles") {
34     spawn('rm', '-rf', 'debfiles') == 0
35         or fail("cannot rm old debfiles directory");
36 }
37
38 mkdir('debfiles', 0777) or fail("cannot mkdir debfiles: $!");
39
40 # Don't copy the whole directory, just all files in it.
41 opendir(DEBIAN, 'unpacked/debian')
42         or fail("cannot open unpacked/debian/ directory: $!");
43 while (my $file=readdir(DEBIAN)) {
44         next if -d $file;
45         spawn('cp', '-a', "unpacked/debian/$file", 'debfiles/') == 0
46                 or fail("cannot copy unpacked/debian/$file: $!");
47 }
48 closedir(DEBIAN);
49
50 exit 0;
51
52 # -----------------------------------
53
54 sub fail {
55     if ($_[0]) {
56         print STDERR "internal error: $_[0]\n";
57     } elsif ($!) {
58         print STDERR "internal error: $!\n";
59     } else {
60         print STDERR "internal error.\n";
61     }
62     exit 1;
63 }