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.3 2005/10/14 00:18:34 gordonr Exp $ |
# $Id: update_rpms_dir,v 1.4 2005/11/10 19:44:12 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 |
|
|
59 |
$name =~ s/\+/\\+/g; # libstdc++ and friends |
$name =~ s/\+/\\+/g; # libstdc++ and friends |
60 |
|
|
61 |
opendir DIR, $dir or die "Couldn't opendir $dir"; |
opendir DIR, $dir or die "Couldn't opendir $dir"; |
62 |
my @rpms = grep { /^${name}-.*.rpm$/ } readdir DIR; |
my @rpms = sort grep { /^${name}-.*.rpm$/ } readdir DIR; |
63 |
closedir DIR; |
closedir DIR; |
64 |
|
|
65 |
my $newest_file = undef; |
my $newest_file = undef; |
71 |
|
|
72 |
if ($candidate->name ne $name) |
if ($candidate->name ne $name) |
73 |
{ |
{ |
74 |
warn "Ignoring $file - name doesn't match\n" if $opt{verbose}; |
warn "Ignoring $file - name doesn't match\n" if $opt{debug}; |
75 |
next; |
next; |
76 |
} |
} |
77 |
|
|
78 |
if ( ($candidate cmp $rpm) <= 0) |
if ( ($candidate cmp $rpm) <= 0) |
79 |
{ |
{ |
80 |
warn "Ignoring $file - older or same version\n" if $opt{verbose}; |
warn "Ignoring $file - older or same version\n" if $opt{debug}; |
81 |
next; |
next; |
82 |
} |
} |
83 |
|
|
84 |
if (not defined $newest_hdr or ($candidate cmp $newest_hdr) < 0) |
if (not defined $newest_hdr or ($candidate cmp $newest_hdr) > 0) |
85 |
{ |
{ |
86 |
warn "Newest is $file\n" if $opt{verbose}; |
warn "Newest is $file\n" if $opt{debug}; |
87 |
$newest_file = $file; |
$newest_file = $file; |
88 |
$newest_hdr = $candidate; |
$newest_hdr = $candidate; |
89 |
} |
} |