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.1.1.1 2005/09/15 23:55:09 gordonr Exp $ |
# $Id: update_rpms_dir,v 1.6 2006/01/12 23:12:35 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"); |
17 |
|
|
18 |
# XXX - FIXME - These will be command line options |
# XXX - FIXME - These will be command line options |
19 |
|
|
22 |
my @repositories = qw( |
my @repositories = qw( |
23 |
/builds/rpms/RPMS/i386/ |
/builds/rpms/RPMS/i386/ |
24 |
/builds/rpms/RPMS/noarch/ |
/builds/rpms/RPMS/noarch/ |
25 |
/mirrors/mitel/devel/repo/RPMS/ |
/mirrors/centos/4.2/updates/i386/RPMS/ |
26 |
/mirrors/centos/4.1/updates/i386/RPMS/ |
/mirrors/centos/4.2/os/i386/CentOS/RPMS/ |
|
/mirrors/centos/4.1/os/i386/CentOS/RPMS/ |
|
27 |
); |
); |
28 |
|
|
29 |
chdir $rpms_dir or die "Couldn't chdir $rpms_dir"; |
chdir $rpms_dir or die "Couldn't chdir $rpms_dir"; |
43 |
if ($newest) |
if ($newest) |
44 |
{ |
{ |
45 |
# XXX - FIXME - Should we try other repos, or stop here? |
# XXX - FIXME - Should we try other repos, or stop here? |
46 |
warn "cd $rpms_dir; rm $file; cp -p $dir/$newest .\n" |
warn "rm $rpms_dir/$file; cp -p $dir/$newest $rpms_dir\n" |
47 |
} |
} |
48 |
} |
} |
49 |
} |
} |
58 |
$name =~ s/\+/\\+/g; # libstdc++ and friends |
$name =~ s/\+/\\+/g; # libstdc++ and friends |
59 |
|
|
60 |
opendir DIR, $dir or die "Couldn't opendir $dir"; |
opendir DIR, $dir or die "Couldn't opendir $dir"; |
61 |
my @rpms = grep { /^${name}-.*.rpm$/ } readdir DIR; |
my @rpms = sort grep { /^${name}-.*.rpm$/ } readdir DIR; |
62 |
closedir DIR; |
closedir DIR; |
63 |
|
|
64 |
my $newest_file = undef; |
my $newest_file = undef; |
66 |
|
|
67 |
for my $file (@rpms) |
for my $file (@rpms) |
68 |
{ |
{ |
69 |
|
warn "\tExamining $dir/$file\n" if $opt{debug}; |
70 |
|
|
71 |
my $candidate = RPM2->open_package("$dir/$file", $rpm_flags); |
my $candidate = RPM2->open_package("$dir/$file", $rpm_flags); |
72 |
|
|
73 |
if ($candidate->name ne $name) |
if ($candidate->name ne $name) |
74 |
{ |
{ |
75 |
warn "Ignoring $file - name doesn't match\n" if $opt{verbose}; |
warn "\tIgnoring $file - name doesn't match\n" if $opt{debug}; |
76 |
next; |
next; |
77 |
} |
} |
78 |
|
|
79 |
if ( ($candidate cmp $rpm) <= 0) |
if ( ($candidate cmp $rpm) <= 0) |
80 |
{ |
{ |
81 |
warn "Ignoring $file - older or same version\n" if $opt{verbose}; |
warn "\tIgnoring $file - older or same version\n" if $opt{debug}; |
82 |
next; |
next; |
83 |
} |
} |
84 |
|
|
85 |
if (not defined $newest_hdr or ($candidate cmp $newest_hdr) < 0) |
if (not defined $newest_hdr or ($candidate cmp $newest_hdr) > 0) |
86 |
{ |
{ |
87 |
warn "Newest is $file\n" if $opt{verbose}; |
warn "\tNewest is $file\n" if $opt{debug}; |
88 |
$newest_file = $file; |
$newest_file = $file; |
89 |
$newest_hdr = $candidate; |
$newest_hdr = $candidate; |
90 |
} |
} |