Ignore:
Timestamp:
May 10, 2012, 6:07:28 PM (12 years ago)
Author:
Bruno Cornec
Message:

r4765@localhost: bruno | 2012-05-10 17:08:00 +0200

  • pb.conf: centos-5.6 moved python-libs into a separate package. List it or otherwise we can't run yum. Fix the mirror servers for centos-4,5 to just get the latest, and add mirror servers for 6.
  • pb.conf.pod: document addrepo, looked here and didn't find it, accidentally found it in code before adding it myself. Fix pod glitch at the end (missing =over/=back)
  • Distribution.pm: move the code to apply ftp_proxy/http_proxy from the conf files to a sub function since it's now needed in two places. Log the proxy and verify that everything we tried to install succeeded since yum will silently tolerate failing to install things, but rpmbuild will complain about missing dependencies. Tolerate an error from testing install of an rpm in pb_distro_setuprepo_gen.
  • Env.pm: Give an example of multi-line filters and an example of a transform.
  • VE.pm: If the verpmtype isn't defined, error out cleanly. Otherwise we're just going to fail later with lots of noisy output.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • devel/pb-modules/lib/ProjectBuilder/Distribution.pm

    r1516 r1517  
    290290}
    291291
     292# Internal function
     293
     294sub pb_apply_conf_proxy ($) {
     295my ($pbos) = @_;
     296
     297my $ftp_proxy = pb_distro_get_param($pbos,pb_conf_get_if("ftp_proxy"));
     298my $http_proxy = pb_distro_get_param($pbos,pb_conf_get_if("http_proxy"));
     299
     300# We do not overwrite shell settings
     301$ENV{ftp_proxy} ||= $ftp_proxy;
     302$ENV{http_proxy} ||= $http_proxy;
     303}
     304
    292305=item B<pb_distro_installdeps>
    293306
     
    304317my $deps = shift || undef;
    305318
    306 my $ftp_proxy = pb_distro_get_param($pbos,pb_conf_get_if("ftp_proxy"));
    307 my $http_proxy = pb_distro_get_param($pbos,pb_conf_get_if("http_proxy"));
    308 
    309 # We do not overwrite shell settings
    310 $ENV{ftp_proxy} ||= $ftp_proxy;
    311 $ENV{http_proxy} ||= $http_proxy;
    312 
     319pb_apply_conf_proxy($pbos);
    313320# Protection
    314321return if (not defined $pbos->{'install'});
     
    316323# Get dependencies in the build file if not forced
    317324$deps = pb_distro_getdeps($f,$pbos) if (not defined $deps);
     325pb_log(1, "ftp_proxy=$ENV{ftp_proxy} http_proxy=$ENV{http_proxy}\n");
    318326pb_log(2,"deps: $deps\n");
    319327return if ((not defined $deps) || ($deps =~ /^\s*$/));
     
    326334    pb_system($cmd, "Re-trying installing dependencies ($cmd)");
    327335}
     336# Check that all deps have been installed correctly
     337$deps = pb_distro_getdeps($f, $pbos);
     338die "Some dependencies did not install ($deps)" if ((defined $deps) && ($deps =~ /\S/));
    328339}
    329340
     
    520531return if ($param eq "");
    521532
     533pb_apply_conf_proxy($pbos);
     534
    522535# Loop on the list of additional repo
    523536foreach my $i (split(/,/,$param)) {
     
    538551            my $pn = $bn;
    539552            $pn =~ s/\.rpm//;
    540             if (pb_system("rpm -q --quiet $pn","","quiet") != 0) {
     553            if (pb_system("rpm -q --quiet $pn","","quiet",1) != 0) {
    541554                pb_system("sudo rpm -Uvh $ENV{'PBTMP'}/$bn","Adding package to setup repository");
    542555            }
Note: See TracChangeset for help on using the changeset viewer.