/[smeserver]/builds_bin/update_rpms_dir
ViewVC logotype

Diff of /builds_bin/update_rpms_dir

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

Revision 1.4 by gordonr, Thu Nov 10 19:44:12 2005 UTC Revision 1.14 by gordonr, Wed Apr 19 06:25:05 2006 UTC
# Line 4  Line 4 
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.13 2006/03/28 05:34:48 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    
# Line 13  use Getopt::Long; Line 13  use Getopt::Long;
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/i586/
29                    /builds/rpms/RPMS/i686/
30                  /builds/rpms/RPMS/noarch/                  /builds/rpms/RPMS/noarch/
31                  /mirrors/mitel/devel/repo/RPMS/                  /mirrors/centos/4/updates/i386/RPMS/
32                  /mirrors/centos/4.2/updates/i386/RPMS/                  /mirrors/centos/4/os/i386/CentOS/RPMS/
                 /mirrors/centos/4.2/os/i386/CentOS/RPMS/  
33                  );                  );
34    
35  chdir $rpms_dir or die "Couldn't chdir $rpms_dir";  chdir $rpms_dir or die "Couldn't chdir $rpms_dir";
# Line 44  for my $file ( sort grep { /.rpm$/ } rea Line 49  for my $file ( sort grep { /.rpm$/ } rea
49          if ($newest)          if ($newest)
50          {          {
51              # XXX - FIXME - Should we try other repos, or stop here?              # XXX - FIXME - Should we try other repos, or stop here?
52              warn "rm $rpms_dir/$file; cp -p $dir/$newest $rpms_dir\n"              print "rm $target_dir/$file; cp -p $dir/$newest $target_dir\n"
53          }                }      
54      }      }
55  }  }
# Line 59  sub find_newest Line 64  sub find_newest
64      $name =~ s/\+/\\+/g;        # libstdc++ and friends      $name =~ s/\+/\\+/g;        # libstdc++ and friends
65    
66      opendir DIR, $dir or die "Couldn't opendir $dir";      opendir DIR, $dir or die "Couldn't opendir $dir";
67      my @rpms = grep { /^${name}-.*.rpm$/ } readdir DIR;      my @rpms = sort grep { /^${name}-.*.rpm$/ } readdir DIR;
68      closedir DIR;      closedir DIR;
69    
70      my $newest_file = undef;      my $newest_file = undef;
# Line 67  sub find_newest Line 72  sub find_newest
72    
73      for my $file (@rpms)      for my $file (@rpms)
74      {      {
75            warn "\tExamining $dir/$file\n" if $opt{debug};
76    
77          my $candidate = RPM2->open_package("$dir/$file", $rpm_flags);          my $candidate = RPM2->open_package("$dir/$file", $rpm_flags);
78    
79          if ($candidate->name ne $name)          if ($candidate->name ne $name)
80          {          {
81              warn "Ignoring $file - name doesn't match\n" if $opt{verbose};              warn "\tIgnoring $file - name doesn't match\n" if $opt{debug};
82                next;
83            }
84    
85            if ($candidate->arch ne $rpm->arch)
86            {
87                warn "\tIgnoring $file - arch "
88                    . $candidate->arch .  " want " . $rpm->arch . "\n"
89                    if $opt{debug};
90              next;              next;
91          }          }
92    
93          if ( ($candidate cmp $rpm) <= 0)          if ( ($candidate cmp $rpm) <= 0)
94          {          {
95              warn "Ignoring $file - older or same version\n" if $opt{verbose};              warn "\tIgnoring $file - older or same version\n" if $opt{debug};
96              next;              next;
97          }          }
98    
99          if (not defined $newest_hdr or ($candidate cmp $newest_hdr) < 0)          if (not defined $newest_hdr or ($candidate cmp $newest_hdr) > 0)
100          {          {
101              warn "Newest is $file\n" if $opt{verbose};              warn "\tNewest is $file\n" if $opt{debug};
102              $newest_file = $file;              $newest_file = $file;
103              $newest_hdr = $candidate;              $newest_hdr = $candidate;
104          }          }


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed