Bug 26265: (QA follow-up) Remove g option from regex, add few dirs
[koha-equinox.git] / debian / list-deps
index c9868d2..dd660fa 100755 (executable)
@@ -18,6 +18,8 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 use Modern::Perl;
+use Parallel::ForkManager;
+use Sys::CPU;
 
 use C4::Installer::PerlModules;
 
@@ -25,11 +27,13 @@ use C4::Installer::PerlModules;
 # apt-file can find, e.g. in the Koha repo rather than the regular
 # debian one.
 my %overrides = (
-    'LWP::Protocol::https' => 'liblwp-protocol-https-perl|libwww-perl (<<6.02), libio-socket-ssl-perl',
+    'LWP::Protocol::https' => 'liblwp-protocol-https-perl | libwww-perl (<<6.02), libio-socket-ssl-perl',
     'HTTP::OAI'            => 'libhttp-oai-perl (>= 3.2) | libhttp-oai-3.27-perl, libhttp-oai-perl (<< 4.0) | libhttp-oai-3.27-perl',
-    'IO::Socket::IP'       => 'perl-modules (>= 5.20.0) | perl-modules-5.22 | perl-modules-5.24 | libio-socket-ip-perl',
+    'IO::Socket::IP'       => 'perl-modules (>= 5.20.0) | libio-socket-ip-perl',
     'Swagger2'             => 'libswagger2-perl (>= 0.59)',
     'Mojolicious'          => 'libmojolicious-perl (>= 6.0)',
+    'CPAN::Meta'           => 'libcpan-meta-perl (>= 2.150010) | perl-modules-5.28 | perl-modules-5.30 | perl-modules (>= 5.20.2)',
+    'Locale::Language'     => 'liblocale-codes-perl'
 );
 
 # These are packages we're going to ignore
@@ -41,15 +45,22 @@ my %ignore = (
 
 my $prefix = "^/usr/((lib|share)/perl5|(lib|share)/perl/[0-9.]+|(lib|share)/.*-linux-gnu.*/perl/[0-9.]+|(lib|share)/.*-linux-gnu.*/perl5/[0-9.]+)";
 
+my $pm   = new Parallel::ForkManager( Sys::CPU::cpu_count() );
+
 my $modules = C4::Installer::PerlModules->new();
 my $prereqs = $modules->prereqs;
 foreach my $phase ($prereqs->phases) {
     foreach my $type ($prereqs->types_in($phase)) {
         my $reqs = $prereqs->requirements_for($phase, $type);
+
+        MODULE_LOOP:
         foreach my $module ( $reqs->required_modules ) {
+            my $pid = $pm->start and next MODULE_LOOP;
+
             next if $ignore{$module};
             my $subpath = $module;
             $subpath =~ s,::,/,g;
+
             my $output = qx(apt-file -l -x search "$prefix/$subpath.pm\$");
             my @temp   = split( /\n/, $output );
             my @lines  = ();
@@ -57,11 +68,16 @@ foreach my $phase ($prereqs->phases) {
             # Remove packages that are required/essential and always installed on
             # a Debian system. Debian packages should not have unversioned
             # dependencies on such packages.
+
+
+            # skip perl-base and problematic version specific libperl* and
+            # perl-module* packages (they get installed as deps. anyway)
             foreach my $line (@temp) {
-                if ( $line ne "perl-base" ) {
+                if ( $line ne "perl-base" and $line !~ /^libperl5\./ and $line !~ /^perl-modules-5\./ ) {
                     @lines = ( @lines, $line );
                 }
             }
+
             if ( exists $overrides{$module} ) {
                 print "$overrides{$module}\n";
             }
@@ -73,24 +89,11 @@ foreach my $phase ($prereqs->phases) {
                 foreach my $pkg (@lines) {
                     print " | " if ( $pkg ne $lines[0] );
                     print "$pkg";
-                    print " | $pkg" . "-5.22" if ( $pkg eq "perl-modules" );
-                    print " | $pkg" . "-5.24" if ( $pkg eq "perl-modules" );
                 }
                 print "\n";
             }
             elsif ( scalar(@temp) != 0 ) {
-
-                # I'm an Essential and I'm OK,
-                # I install all night, and work all day.
-                # I chomp up strings. I eat my bugs.
-                # I go to the base install.
-                # On Fridays I go drinking,
-                # and have buttered commits for git.
-                # (Beer O'Clock is more than two hours
-                # away. I don't even drink beer. There
-                # is no reason to be suspicious of this
-                # commit.)
-                # RM note: suspicious?  me?  always!
+                # hmm, skip module
             }
             elsif ( $type ne 'requires' ) {
                 # Ignore because we don't have it and we don't care.
@@ -98,6 +101,9 @@ foreach my $phase ($prereqs->phases) {
             else {
                 print "EEEK: unknown package for $module\n";
             }
+
+            $pm->finish; # Terminates the child process
         }
     }
 }
+$pm->wait_all_children;