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.4 2005/11/10 19:44:12 gordonr Exp $ |
# $Id: update_rpms_dir,v 1.9 2006/02/12 05:06:41 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", "debug"); |
GetOptions(\%opt, "verbose", "debug", "rpms_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 |
|
warn "Using $rpms_dir\n" if $opt{verbose}; |
23 |
|
|
24 |
my @repositories = qw( |
my @repositories = qw( |
25 |
/builds/rpms/RPMS/i386/ |
/builds/rpms/RPMS/i386/ |
26 |
/builds/rpms/RPMS/noarch/ |
/builds/rpms/RPMS/noarch/ |
|
/mirrors/mitel/devel/repo/RPMS/ |
|
27 |
/mirrors/centos/4.2/updates/i386/RPMS/ |
/mirrors/centos/4.2/updates/i386/RPMS/ |
28 |
/mirrors/centos/4.2/os/i386/CentOS/RPMS/ |
/mirrors/centos/4.2/os/i386/CentOS/RPMS/ |
29 |
); |
); |
45 |
if ($newest) |
if ($newest) |
46 |
{ |
{ |
47 |
# XXX - FIXME - Should we try other repos, or stop here? |
# XXX - FIXME - Should we try other repos, or stop here? |
48 |
warn "rm $rpms_dir/$file; cp -p $dir/$newest $rpms_dir\n" |
print "rm $rpms_dir/$file; cp -p $dir/$newest $rpms_dir\n" |
49 |
} |
} |
50 |
} |
} |
51 |
} |
} |
68 |
|
|
69 |
for my $file (@rpms) |
for my $file (@rpms) |
70 |
{ |
{ |
71 |
|
warn "\tExamining $dir/$file\n" if $opt{debug}; |
72 |
|
|
73 |
my $candidate = RPM2->open_package("$dir/$file", $rpm_flags); |
my $candidate = RPM2->open_package("$dir/$file", $rpm_flags); |
74 |
|
|
75 |
if ($candidate->name ne $name) |
if ($candidate->name ne $name) |
76 |
{ |
{ |
77 |
warn "Ignoring $file - name doesn't match\n" if $opt{debug}; |
warn "\tIgnoring $file - name doesn't match\n" if $opt{debug}; |
78 |
next; |
next; |
79 |
} |
} |
80 |
|
|
81 |
if ( ($candidate cmp $rpm) <= 0) |
if ( ($candidate cmp $rpm) <= 0) |
82 |
{ |
{ |
83 |
warn "Ignoring $file - older or same version\n" if $opt{debug}; |
warn "\tIgnoring $file - older or same version\n" if $opt{debug}; |
84 |
next; |
next; |
85 |
} |
} |
86 |
|
|
87 |
if (not defined $newest_hdr or ($candidate cmp $newest_hdr) > 0) |
if (not defined $newest_hdr or ($candidate cmp $newest_hdr) > 0) |
88 |
{ |
{ |
89 |
warn "Newest is $file\n" if $opt{debug}; |
warn "\tNewest is $file\n" if $opt{debug}; |
90 |
$newest_file = $file; |
$newest_file = $file; |
91 |
$newest_hdr = $candidate; |
$newest_hdr = $candidate; |
92 |
} |
} |