]> git.donarmstrong.com Git - debhelper.git/blobdiff - Debian/Debhelper/Dh_Buildsystems.pm
support unlimited parallel jobs
[debhelper.git] / Debian / Debhelper / Dh_Buildsystems.pm
index 3b150bd11062bbf8b325ef3bf362c24a8c691815..fc06a2ac16a27e3f32583b4d91473c6bf850dce1 100644 (file)
@@ -1,4 +1,4 @@
-# A module for loading and managing debhelper build system class.
+# A module for loading and managing debhelper build system classes.
 # This module is intended to be used by all dh_auto_* programs.
 #
 # Copyright: © 2009 Modestas Vainius
@@ -17,19 +17,20 @@ our @EXPORT=qw(&buildsystems_init &buildsystems_do &load_buildsystem &load_all_b
 # Historical order must be kept for backwards compatibility. New
 # build systems MUST be added to the END of the list.
 our @BUILDSYSTEMS = (
-    "autoconf",
-    "perl_makemaker",
-    "makefile",
-    "python_distutils",
-    "perl_build",
-    "cmake",
+       "autoconf",
+       "perl_makemaker",
+       "makefile",
+       "python_distutils",
+       "perl_build",
+       "cmake",
+       "ant",
 );
 
 my $opt_buildsys;
 my $opt_sourcedir;
 my $opt_builddir;
 my $opt_list;
-my $opt_help_buildsys;
+my $opt_parallel;
 
 sub create_buildsystem_instance {
        my $system=shift;
@@ -47,6 +48,9 @@ sub create_buildsystem_instance {
        if (!exists $bsopts{sourcedir} && defined $opt_sourcedir) {
                $bsopts{sourcedir} = ($opt_sourcedir eq "") ? undef : $opt_sourcedir;
        }
+       if (!exists $bsopts{parallel}) {
+               $bsopts{parallel} = $opt_parallel;
+       }
        return $module->new(%bsopts);
 }
 
@@ -88,7 +92,7 @@ sub load_all_buildsystems {
                }
        }
 
-       # Push standard debhelper build systems first
+       # Standard debhelper build systems first
        for my $name (@BUILDSYSTEMS) {
                error("standard debhelper build system '$name' could not be found/loaded")
                    if not exists $buildsystems{$name};
@@ -108,6 +112,8 @@ sub load_all_buildsystems {
 
 sub buildsystems_init {
        my %args=@_;
+       
+       my $max_parallel=-1; # unlimited
 
        # Available command line options
        my %options = (
@@ -123,10 +129,32 @@ sub buildsystems_init {
            "l" => \$opt_list,
            "list" => \$opt_list,
 
-           "help-buildsystem" => \$opt_help_buildsys,
+           "max-parallel:i" => \$max_parallel,
        );
        $args{options}{$_} = $options{$_} foreach keys(%options);
        Debian::Debhelper::Dh_Lib::init(%args);
+       set_parallel($max_parallel);
+}
+
+sub set_parallel {
+       my $max=shift;
+
+       $opt_parallel=1;
+
+       if (exists $ENV{DEB_BUILD_OPTIONS}) {
+               # Parse parallel=n tag
+               foreach my $opt (split(/\s+/, $ENV{DEB_BUILD_OPTIONS})) {
+                       if ($opt =~ /^parallel=([-\d]+)$/) {
+                               my $n=$1;
+                               if ($n > 0 && ($max == -1 || $n < $max)) {
+                                       $opt_parallel = $n;
+                               }
+                               else {
+                                       $opt_parallel = $max;
+                               }
+                       }
+               }
+       }
 }
 
 sub buildsystems_list {
@@ -134,8 +162,7 @@ sub buildsystems_list {
 
        # List build systems (including auto and specified status)
        my ($auto, $specified);
-       my @buildsystems = load_all_buildsystems();
-       for my $inst (@buildsystems) {
+       for my $inst (load_all_buildsystems()) {
                my $is_specified = defined $opt_buildsys && $opt_buildsys eq $inst->NAME();
                if (! defined $specified && defined $opt_buildsys && $opt_buildsys eq $inst->NAME()) {
                        $specified = $inst->NAME();
@@ -143,7 +170,7 @@ sub buildsystems_list {
                elsif (! defined $auto && ! $inst->{thirdparty} && $inst->check_auto_buildable($step)) {
                        $auto = $inst->NAME();
                }
-               printf("%s - %s", $inst->NAME(), $inst->DESCRIPTION());
+               printf("%-20s %s", $inst->NAME(), $inst->DESCRIPTION());
                print " [3rd party]" if $inst->{thirdparty};
                print "\n";
        }
@@ -154,50 +181,6 @@ sub buildsystems_list {
                if ! defined $auto && ! defined $specified;
 }
 
-sub help_buildsystem {
-       my $step=shift;
-
-       # Print build system help page to standard output
-
-       my $inst = load_buildsystem($opt_buildsys, $step);
-       if ($inst) {
-               my $pmfile = ref $inst;
-               $pmfile =~ s#::#/#g;
-               $pmfile = $INC{"$pmfile.pm"};
-
-               # Display help with perldoc if it is installed and output is
-               # a tty
-               my $perldoc;
-               if (-t STDOUT) {
-                       eval "use Pod::Perldoc";
-                       $perldoc = "Pod::Perldoc" if (!$@);
-               }
-               if ($perldoc) {
-                       $perldoc = new Pod::Perldoc();
-                       $perldoc->{args} = [ '-oman',
-                                            '-w', 'section=7" "--name=dh_auto_'.lc($inst->NAME()),
-                                            '-w', 'center=Dh_auto build system documentation',
-                                            '-w', 'release=',
-                                            '-F', $pmfile ];
-                       $perldoc->process();
-               }
-               else {
-                       # No perldoc on the system. Use Pod::Usage to emit simple text
-                       eval "use Pod::Usage";
-                       pod2usage( -message => "Help page for the ".$inst->NAME()." build system\n" .
-                                              '<' . '-'x74 . '>',
-                                  -input => $pmfile, -exitval => 'NOEXIT',
-                                  -verbose => 2, -noperldoc => 1 );
-                       print '<', '-'x74, '>', "\n";
-               }
-               return 0;
-       }
-       else {
-               print STDERR "No system auto-selected or specified. Try using --buildsystem option\n";
-               return 1;
-       }
-}
-
 sub buildsystems_do {
        my $step=shift;
 
@@ -215,10 +198,6 @@ sub buildsystems_do {
                exit 0;
        }
 
-       if ($opt_help_buildsys) {
-               exit help_buildsystem($step);
-       }
-
        my $buildsystem = load_buildsystem($opt_buildsys, $step);
        if (defined $buildsystem) {
                $buildsystem->pre_building_step($step);
@@ -228,4 +207,4 @@ sub buildsystems_do {
        return 0;
 }
 
-1;
+1