4 |
# is free software; you can redistribute it and/or modify it under the |
# is free software; you can redistribute it and/or modify it under the |
5 |
# same terms as Perl itself. |
# same terms as Perl itself. |
6 |
# |
# |
7 |
# $Id: update_rpms_dir,v 1.2 2005/10/14 00:14:28 gordonr Exp $ |
# $Id: update_rpms_dir,v 1.10 2006/02/14 04:08:46 gordonr Exp $ |
8 |
# |
# |
9 |
# Update RPMS directory with the latest from a given list of directories |
# Update RPMS directory with the latest from a given list of directories |
10 |
|
|
13 |
|
|
14 |
my $rpm_flags = RPM2->vsf_nodsa; # Deal with missing DSA keys |
my $rpm_flags = RPM2->vsf_nodsa; # Deal with missing DSA keys |
15 |
|
|
16 |
GetOptions(\%opt, "verbose"); |
GetOptions(\%opt, "verbose", "debug", "rpms_dir=s", "target_dir=s"); |
17 |
|
|
18 |
# XXX - FIXME - These will be command line options |
# XXX - FIXME - These will be command line options |
19 |
|
|
20 |
my $rpms_dir = "/builds/RPMS"; |
my $rpms_dir = $opt{rpms_dir} || "/builds/RPMS"; |
21 |
|
|
22 |
|
my $target_dir = $opt{target_dir} || $rpms_dir; |
23 |
|
|
24 |
|
warn "Using $rpms_dir\n" if $opt{verbose}; |
25 |
|
|
26 |
my @repositories = qw( |
my @repositories = qw( |
27 |
/builds/rpms/RPMS/i386/ |
/builds/rpms/RPMS/i386/ |
28 |
/builds/rpms/RPMS/noarch/ |
/builds/rpms/RPMS/noarch/ |
29 |
/mirrors/mitel/devel/repo/RPMS/ |
/mirrors/centos/4.2/updates/i386/RPMS/ |
30 |
/mirrors/centos/4.1/updates/i386/RPMS/ |
/mirrors/centos/4.2/os/i386/CentOS/RPMS/ |
|
/mirrors/centos/4.1/os/i386/CentOS/RPMS/ |
|
31 |
); |
); |
32 |
|
|
33 |
chdir $rpms_dir or die "Couldn't chdir $rpms_dir"; |
chdir $rpms_dir or die "Couldn't chdir $rpms_dir"; |
47 |
if ($newest) |
if ($newest) |
48 |
{ |
{ |
49 |
# XXX - FIXME - Should we try other repos, or stop here? |
# XXX - FIXME - Should we try other repos, or stop here? |
50 |
warn "rm $rpms_dir/$file; cp -p $dir/$newest $rpms_dir\n" |
print "rm $target_dir/$file; cp -p $dir/$newest $target_dir\n" |
51 |
} |
} |
52 |
} |
} |
53 |
} |
} |
62 |
$name =~ s/\+/\\+/g; # libstdc++ and friends |
$name =~ s/\+/\\+/g; # libstdc++ and friends |
63 |
|
|
64 |
opendir DIR, $dir or die "Couldn't opendir $dir"; |
opendir DIR, $dir or die "Couldn't opendir $dir"; |
65 |
my @rpms = grep { /^${name}-.*.rpm$/ } readdir DIR; |
my @rpms = sort grep { /^${name}-.*.rpm$/ } readdir DIR; |
66 |
closedir DIR; |
closedir DIR; |
67 |
|
|
68 |
my $newest_file = undef; |
my $newest_file = undef; |
70 |
|
|
71 |
for my $file (@rpms) |
for my $file (@rpms) |
72 |
{ |
{ |
73 |
|
warn "\tExamining $dir/$file\n" if $opt{debug}; |
74 |
|
|
75 |
my $candidate = RPM2->open_package("$dir/$file", $rpm_flags); |
my $candidate = RPM2->open_package("$dir/$file", $rpm_flags); |
76 |
|
|
77 |
if ($candidate->name ne $name) |
if ($candidate->name ne $name) |
78 |
{ |
{ |
79 |
warn "Ignoring $file - name doesn't match\n" if $opt{verbose}; |
warn "\tIgnoring $file - name doesn't match\n" if $opt{debug}; |
80 |
next; |
next; |
81 |
} |
} |
82 |
|
|
83 |
if ( ($candidate cmp $rpm) <= 0) |
if ( ($candidate cmp $rpm) <= 0) |
84 |
{ |
{ |
85 |
warn "Ignoring $file - older or same version\n" if $opt{verbose}; |
warn "\tIgnoring $file - older or same version\n" if $opt{debug}; |
86 |
next; |
next; |
87 |
} |
} |
88 |
|
|
89 |
if (not defined $newest_hdr or ($candidate cmp $newest_hdr) < 0) |
if (not defined $newest_hdr or ($candidate cmp $newest_hdr) > 0) |
90 |
{ |
{ |
91 |
warn "Newest is $file\n" if $opt{verbose}; |
warn "\tNewest is $file\n" if $opt{debug}; |
92 |
$newest_file = $file; |
$newest_file = $file; |
93 |
$newest_hdr = $candidate; |
$newest_hdr = $candidate; |
94 |
} |
} |