4 |
use warnings; |
use warnings; |
5 |
use RPM2; |
use RPM2; |
6 |
use File::Copy; |
use File::Copy; |
7 |
|
use Getopt::Std; |
8 |
|
|
9 |
|
my %opts; |
10 |
|
getopts( "s:d:", \%opts ); |
11 |
|
my $src = $opts{s} || '/builds/RPMS'; |
12 |
|
my $dest = $opts{d} || '/builds/SRPMS'; |
13 |
|
|
14 |
my $rpm_flags = RPM2->vsf_nodsa; |
my $rpm_flags = RPM2->vsf_nodsa; |
15 |
my @repositories = qw( |
my @repositories = qw( |
16 |
/mirrors/centos/4/updates/SRPMS/ |
/mirrors/centos/4/fasttrack/SRPMS |
17 |
/mirrors/centos/4/os/SRPMS/ |
/mirrors/centos/4/updates/SRPMS |
18 |
/mirrors/centos/4/dag/SRPMS/ |
/mirrors/centos/4/os/SRPMS |
19 |
/mirrors/centos/4/atrpms/SRPMS/SRPMS.stable/ |
/mirrors/centos/4/extras/SRPMS |
20 |
/mirrors/centos/4/dries/SRPMS/ |
/mirrors/rpmforge/dag/source/ |
21 |
/mirrors/fedora/updates/3/SRPMS/ |
/mirrors/atrpms/src/el4-i386/atrpms/stable/ |
22 |
/mirrors/fedora/3/SRPMS/ |
/mirrors/fedora-legacy/fedora/3/updates/SRPMS/ |
23 |
/mirrors/mitel/devel/repo/SRPMS/ |
/mirrors/fedora-legacy/fedora/3/os/SRPMS/ |
24 |
/builds/rpms/SRPMS/ |
/builds/rpms/SRPMS/ |
25 |
); |
); |
26 |
|
|
27 |
opendir RPMS, "/builds/RPMS" or die "Couldn't opendir /builds/RPMS"; |
opendir RPMS, "$src" or die "Couldn't opendir $src"; |
28 |
my %rpms = map { my $x = RPM2->open_package("/builds/RPMS/$_", $rpm_flags); $x->tag('NAME') => $x; } grep { /\.rpm$/ } readdir RPMS; |
my @rpms = map { RPM2->open_package("$src/$_", $rpm_flags) } grep { /\.rpm$/ } readdir RPMS; |
29 |
closedir RPMS; |
closedir RPMS; |
30 |
|
|
31 |
|
opendir SRPMS, "$dest" or die "Couldn't opendir $dest"; |
32 |
|
my %srpms = map { $_ => 0 } grep { /\.rpm$/ } readdir SRPMS; |
33 |
|
closedir SRPMS; |
34 |
|
|
35 |
my %repos; |
my %repos; |
36 |
foreach my $repo (reverse @repositories) |
foreach my $repo (reverse @repositories) |
37 |
{ |
{ |
41 |
%repos = (%repos, %temp_repo); |
%repos = (%repos, %temp_repo); |
42 |
} |
} |
43 |
|
|
44 |
foreach my $rpm ( sort keys %rpms ) |
foreach my $rpm ( sort @rpms ) |
45 |
{ |
{ |
46 |
my (@headers, $header); |
my (@headers, $header); |
47 |
|
|
49 |
$rpmfix =~ s@\+@\\+@g; |
$rpmfix =~ s@\+@\\+@g; |
50 |
|
|
51 |
my @sources; |
my @sources; |
52 |
my $src = $rpms{$rpm}->tag('SOURCERPM'); |
my $src = $rpm->tag('SOURCERPM'); |
53 |
push @sources, $src; |
push @sources, $src; |
54 |
push @sources, $src if ($src =~ s/\.2\.el4\.rf\./\.rf\./); |
push @sources, $src if ($src =~ s/\.2\.el4\.rf\./\.rf\./); |
55 |
|
push @sources, $src if ($src =~ s/\.el4\.rf\./\.rf\./); |
56 |
|
push @sources, $src if ($src =~ s/\.el4\.at\./\.at\./); |
57 |
push @sources, $src if ($src =~ s/\.rf\./\.dag\./); |
push @sources, $src if ($src =~ s/\.rf\./\.dag\./); |
58 |
|
|
59 |
my $found = 0; |
my $found = 0; |
60 |
foreach my $source ( @sources ) |
foreach my $source ( @sources ) |
61 |
{ |
{ |
62 |
if( -f "/builds/SRPMS/$source" ) |
if( -f "$dest/$source" ) |
63 |
{ |
{ |
64 |
$found = 1; |
$found = 1; |
65 |
|
$srpms{$source}++; |
66 |
last; |
last; |
67 |
} else { |
} else { |
68 |
if ($repos{$source}) |
if ($repos{$source}) |
69 |
{ |
{ |
70 |
my $fromfile = $repos{$source} . "/$source"; |
my $fromfile = $repos{$source} . "/$source"; |
71 |
$fromfile =~ s#//#/#g; |
$fromfile =~ s#//#/#g; |
72 |
`ln -s $fromfile /builds/SRPMS/`; |
print "copying $source\n"; |
73 |
|
system(qw(cp --preserve=timestamps), $fromfile, "$dest/"); |
74 |
$found = 1; |
$found = 1; |
75 |
|
$srpms{$source}++; |
76 |
last; |
last; |
77 |
} |
} |
78 |
|
|
79 |
} |
} |
80 |
} |
} |
81 |
print "can't find SRPM ($sources[0]) for $rpm\n" unless $found; |
print "can't find SRPM ($sources[0]) for ", $rpm->as_nvre(), "\n" unless $found; |
82 |
|
} |
83 |
|
|
84 |
|
foreach my $srpm ( grep { $srpms{$_} == 0 } keys %srpms ) { |
85 |
|
print "removing unused SRPM ($srpm)\n"; |
86 |
|
unlink "$dest/$srpm"; |
87 |
} |
} |